blob: 32d1ad86551ac0b060fd3ebbb5df834b96bf145d [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Frank Vibrans39fca802011-02-14 18:35:15 +00003
4#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Kyösti Mälkki8ae16a42014-06-19 20:44:34 +03006#include <arch/acpi.h>
Kyösti Mälkki68a83df2014-11-26 09:51:14 +02007#include <arch/acpigen.h>
Frank Vibrans39fca802011-02-14 18:35:15 +00008#include <stdint.h>
9#include <device/device.h>
10#include <device/pci.h>
11#include <device/pci_ids.h>
12#include <device/hypertransport.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000013#include <string.h>
Ronald G. Minnich5079a0d2012-11-27 11:32:38 -080014#include <lib.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000015#include <cpu/cpu.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000016#include <cpu/x86/lapic.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020017#include <cpu/amd/msr.h>
Kyösti Mälkki55fff9302012-07-11 08:02:39 +030018#include <cpu/amd/mtrr.h>
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020019#include <northbridge/amd/agesa/nb_common.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020020#include <northbridge/amd/agesa/state_machine.h>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020021#include <northbridge/amd/agesa/agesa_helper.h>
Kerry Shefeed3292011-08-18 18:03:44 +080022#include <sb_cimx.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000023
Frank Vibrans39fca802011-02-14 18:35:15 +000024#define FX_DEVS 1
25
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030026static struct device *__f0_dev[FX_DEVS];
27static struct device *__f1_dev[FX_DEVS];
28static struct device *__f2_dev[FX_DEVS];
29static struct device *__f4_dev[FX_DEVS];
Subrata Banikb1434fc2019-03-15 22:20:41 +053030static unsigned int fx_devs = 0;
Frank Vibrans39fca802011-02-14 18:35:15 +000031
Kyösti Mälkki2b218e32019-01-15 11:14:28 +020032
33struct dram_base_mask_t {
34 u32 base; //[47:27] at [28:8]
35 u32 mask; //[47:27] at [28:8] and enable at bit 0
36};
37
38static struct dram_base_mask_t get_dram_base_mask(u32 nodeid)
39{
40 struct device *dev;
41 struct dram_base_mask_t d;
Kyösti Mälkki2b218e32019-01-15 11:14:28 +020042 dev = __f1_dev[0];
Kyösti Mälkki2b218e32019-01-15 11:14:28 +020043
44 u32 temp;
45 temp = pci_read_config32(dev, 0x44); //[39:24] at [31:16]
46 d.mask = (temp & 0xffff0000); // mask out DramMask [26:24] too
47
48 temp = pci_read_config32(dev, 0x40); //[35:24] at [27:16]
49 d.mask |= (temp & 1); // read enable bit
50
51 d.base = (temp & 0x0fff0000); // mask out DramBase [26:24) too
52
53 return d;
54}
55
56static u32 get_io_addr_index(u32 nodeid, u32 linkn)
57{
58 return 0;
59}
60
61static u32 get_mmio_addr_index(u32 nodeid, u32 linkn)
62{
63 return 0;
64}
65
66static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
67 u32 io_min, u32 io_max)
68{
69
70 u32 tempreg;
71 /* io range allocation */
72 tempreg = (nodeid & 0xf) | ((nodeid & 0x30) << (8 - 4)) | (linkn << 4) |
73 ((io_max & 0xf0) << (12 - 4)); //limit
74 pci_write_config32(__f1_dev[0], reg+4, tempreg);
75
76 tempreg = 3 | ((io_min & 0xf0) << (12 - 4)); //base :ISA and VGA ?
77 pci_write_config32(__f1_dev[0], reg, tempreg);
78}
79
80static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index,
81 u32 mmio_min, u32 mmio_max, u32 nodes)
82{
83
84 u32 tempreg;
85 /* io range allocation */
86 tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00);
87 pci_write_config32(__f1_dev[0], reg + 4, tempreg);
88 tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00);
89 pci_write_config32(__f1_dev[0], reg, tempreg);
90}
91
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030092static struct device *get_node_pci(u32 nodeid, u32 fn)
Frank Vibrans39fca802011-02-14 18:35:15 +000093{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020094 return pcidev_on_root(DEV_CDB + nodeid, fn);
Frank Vibrans39fca802011-02-14 18:35:15 +000095}
96
Frank Vibrans39fca802011-02-14 18:35:15 +000097static void get_fx_devs(void)
98{
Marc Jones8d595692012-03-15 12:55:26 -060099 int i;
100 for (i = 0; i < FX_DEVS; i++) {
101 __f0_dev[i] = get_node_pci(i, 0);
102 __f1_dev[i] = get_node_pci(i, 1);
103 __f2_dev[i] = get_node_pci(i, 2);
104 __f4_dev[i] = get_node_pci(i, 4);
105 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
106 fx_devs = i + 1;
107 }
108 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
109 die("Cannot find 0:0x18.[0|1]\n");
110 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000111}
112
Subrata Banikb1434fc2019-03-15 22:20:41 +0530113static u32 f1_read_config32(unsigned int reg)
Frank Vibrans39fca802011-02-14 18:35:15 +0000114{
Marc Jones8d595692012-03-15 12:55:26 -0600115 if (fx_devs == 0)
116 get_fx_devs();
117 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +0000118}
119
Subrata Banikb1434fc2019-03-15 22:20:41 +0530120static void f1_write_config32(unsigned int reg, u32 value)
Frank Vibrans39fca802011-02-14 18:35:15 +0000121{
Marc Jones8d595692012-03-15 12:55:26 -0600122 int i;
123 if (fx_devs == 0)
124 get_fx_devs();
125 for (i = 0; i < fx_devs; i++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200126 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -0600127 dev = __f1_dev[i];
128 if (dev && dev->enabled) {
129 pci_write_config32(dev, reg, value);
130 }
131 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000132}
133
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200134static u32 amdfam14_nodeid(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000135{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200136 return (dev->path.pci.devfn >> 3) - DEV_CDB;
Frank Vibrans39fca802011-02-14 18:35:15 +0000137}
138
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200139static void northbridge_init(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000140{
Marc Jones8d595692012-03-15 12:55:26 -0600141 printk(BIOS_DEBUG, "Northbridge init\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000142}
143
Frank Vibrans39fca802011-02-14 18:35:15 +0000144static void set_vga_enable_reg(u32 nodeid, u32 linkn)
145{
Marc Jones8d595692012-03-15 12:55:26 -0600146 u32 val;
Frank Vibrans39fca802011-02-14 18:35:15 +0000147
Marc Jones8d595692012-03-15 12:55:26 -0600148 val = 1 | (nodeid << 4) | (linkn << 12);
149 /* it will routing (1)mmio 0xa0000:0xbffff (2) io 0x3b0:0x3bb,
150 0x3c0:0x3df */
151 f1_write_config32(0xf4, val);
Frank Vibrans39fca802011-02-14 18:35:15 +0000152
153}
154
Subrata Banikb1434fc2019-03-15 22:20:41 +0530155static int reg_useable(unsigned int reg, struct device *goal_dev,
156 unsigned int goal_nodeid, unsigned int goal_link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000157{
Marc Jones8d595692012-03-15 12:55:26 -0600158 struct resource *res;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530159 unsigned int nodeid, link = 0;
Marc Jones8d595692012-03-15 12:55:26 -0600160 int result;
161 res = 0;
162 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200163 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -0600164 dev = __f0_dev[nodeid];
165 if (!dev)
166 continue;
167 for (link = 0; !res && (link < 8); link++) {
168 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
169 }
170 }
171 result = 2;
172 if (res) {
173 result = 0;
174 if ((goal_link == (link - 1)) &&
175 (goal_nodeid == (nodeid - 1)) && (res->flags <= 1)) {
176 result = 1;
177 }
178 }
179 return result;
Frank Vibrans39fca802011-02-14 18:35:15 +0000180}
181
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200182static struct resource *amdfam14_find_iopair(struct device *dev,
Subrata Banikb1434fc2019-03-15 22:20:41 +0530183 unsigned int nodeid, unsigned int link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000184{
Marc Jones8d595692012-03-15 12:55:26 -0600185 struct resource *resource;
186 u32 result, reg;
187 resource = 0;
188 reg = 0;
189 result = reg_useable(0xc0, dev, nodeid, link);
190 if (result >= 1) {
191 /* I have been allocated this one */
192 reg = 0xc0;
193 }
194 /* Ext conf space */
195 if (!reg) {
196 /* Because of Extend conf space, we will never run out of reg,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200197 * but we need one index to differ them. So,same node and same
Marc Jones8d595692012-03-15 12:55:26 -0600198 * link can have multi range
199 */
200 u32 index = get_io_addr_index(nodeid, link);
201 reg = 0x110 + (index << 24) + (4 << 20); // index could be 0, 255
202 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000203
Marc Jones8d595692012-03-15 12:55:26 -0600204 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
Frank Vibrans39fca802011-02-14 18:35:15 +0000205
Marc Jones8d595692012-03-15 12:55:26 -0600206 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000207}
208
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200209static struct resource *amdfam14_find_mempair(struct device *dev, u32 nodeid,
Marc Jones8d595692012-03-15 12:55:26 -0600210 u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000211{
Marc Jones8d595692012-03-15 12:55:26 -0600212 struct resource *resource;
213 u32 free_reg, reg;
214 resource = 0;
215 free_reg = 0;
216 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
217 int result;
218 result = reg_useable(reg, dev, nodeid, link);
219 if (result == 1) {
220 /* I have been allocated this one */
221 break;
222 } else if (result > 1) {
223 /* I have a free register pair */
224 free_reg = reg;
225 }
226 }
227 if (reg > 0xb8) {
228 reg = free_reg;
229 }
230 /* Ext conf space */
231 if (!reg) {
232 /* Because of Extend conf space, we will never run out of reg,
Elyes HAOUASa342f392018-10-17 10:56:26 +0200233 * but we need one index to differ them. So,same node and same
Marc Jones8d595692012-03-15 12:55:26 -0600234 * link can have multi range
235 */
236 u32 index = get_mmio_addr_index(nodeid, link);
237 reg = 0x110 + (index << 24) + (6 << 20); // index could be 0, 63
Frank Vibrans39fca802011-02-14 18:35:15 +0000238
Marc Jones8d595692012-03-15 12:55:26 -0600239 }
240 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
241 return resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000242}
243
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200244static void amdfam14_link_read_bases(struct device *dev, u32 nodeid, u32 link)
Frank Vibrans39fca802011-02-14 18:35:15 +0000245{
Marc Jones8d595692012-03-15 12:55:26 -0600246 struct resource *resource;
Frank Vibrans39fca802011-02-14 18:35:15 +0000247
Marc Jones8d595692012-03-15 12:55:26 -0600248 /* Initialize the io space constraints on the current bus */
249 resource = amdfam14_find_iopair(dev, nodeid, link);
250 if (resource) {
251 u32 align;
Kyösti Mälkkiac7402d2014-12-14 08:30:17 +0200252 align = log2(HT_IO_HOST_ALIGN);
Marc Jones8d595692012-03-15 12:55:26 -0600253 resource->base = 0;
254 resource->size = 0;
255 resource->align = align;
256 resource->gran = align;
257 resource->limit = 0xffffUL;
258 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
259 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000260
Marc Jones8d595692012-03-15 12:55:26 -0600261 /* Initialize the prefetchable memory constraints on the current bus */
262 resource = amdfam14_find_mempair(dev, nodeid, link);
263 if (resource) {
264 resource->base = 0;
265 resource->size = 0;
266 resource->align = log2(HT_MEM_HOST_ALIGN);
267 resource->gran = log2(HT_MEM_HOST_ALIGN);
268 resource->limit = 0xffffffffffULL;
269 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
270 resource->flags |= IORESOURCE_BRIDGE;
Marc Jones8d595692012-03-15 12:55:26 -0600271 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000272
Marc Jones8d595692012-03-15 12:55:26 -0600273 /* Initialize the memory constraints on the current bus */
274 resource = amdfam14_find_mempair(dev, nodeid, link);
275 if (resource) {
276 resource->base = 0;
277 resource->size = 0;
278 resource->align = log2(HT_MEM_HOST_ALIGN);
279 resource->gran = log2(HT_MEM_HOST_ALIGN);
280 resource->limit = 0xffffffffffULL;
281 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
Marc Jones8d595692012-03-15 12:55:26 -0600282 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000283}
284
285static u32 my_find_pci_tolm(struct bus *bus, u32 tolm)
286{
Marc Jones8d595692012-03-15 12:55:26 -0600287 struct resource *min;
288 min = 0;
289 search_bus_resources(bus, IORESOURCE_MEM, IORESOURCE_MEM, tolm_test,
290 &min);
291 if (min && tolm > min->base) {
292 tolm = min->base;
293 }
294 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000295}
296
297#if CONFIG_HW_MEM_HOLE_SIZEK != 0
298
299struct hw_mem_hole_info {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530300 unsigned int hole_startk;
Marc Jones8d595692012-03-15 12:55:26 -0600301 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000302};
303
304static struct hw_mem_hole_info get_hw_mem_hole_info(void)
305{
Marc Jones8d595692012-03-15 12:55:26 -0600306 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000307
Marc Jones8d595692012-03-15 12:55:26 -0600308 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
309 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000310
Marc Jones8d595692012-03-15 12:55:26 -0600311 struct dram_base_mask_t d;
312 u32 hole;
313 d = get_dram_base_mask(0);
314 if (d.mask & 1) {
315 hole = pci_read_config32(__f1_dev[0], 0xf0);
316 if (hole & 1) { // we find the hole
317 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
318 mem_hole.node_id = 0; // record the node No with hole
319 }
320 }
Marc Jones8d595692012-03-15 12:55:26 -0600321 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000322}
323#endif
324
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200325static void nb_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000326{
Marc Jones8d595692012-03-15 12:55:26 -0600327 u32 nodeid;
328 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000329
Mike Loptien58089e82013-01-29 15:45:09 -0700330 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000331
Marc Jones8d595692012-03-15 12:55:26 -0600332 nodeid = amdfam14_nodeid(dev);
333 for (link = dev->link_list; link; link = link->next) {
334 if (link->children) {
335 amdfam14_link_read_bases(dev, nodeid, link->link_num);
336 }
337 }
Marc Jonesd5c998b2013-01-16 17:14:24 -0700338
339 /*
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800340 * This MMCONF resource must be reserved in the PCI domain.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700341 * It is not honored by the coreboot resource allocator if it is in
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800342 * the CPU_CLUSTER.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700343 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200344 mmconf_resource(dev, MMIO_CONF_BASE);
Frank Vibrans39fca802011-02-14 18:35:15 +0000345}
346
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200347static void set_resource(struct device *dev, struct resource *resource,
348 u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000349{
Marc Jones8d595692012-03-15 12:55:26 -0600350 resource_t rbase, rend;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530351 unsigned int reg, link_num;
Marc Jones8d595692012-03-15 12:55:26 -0600352 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000353
Mike Loptien58089e82013-01-29 15:45:09 -0700354 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000355
Marc Jones8d595692012-03-15 12:55:26 -0600356 /* Make certain the resource has actually been set */
357 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
358 return;
359 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000360
Marc Jones8d595692012-03-15 12:55:26 -0600361 /* If I have already stored this resource don't worry about it */
362 if (resource->flags & IORESOURCE_STORED) {
363 return;
364 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000365
Marc Jones8d595692012-03-15 12:55:26 -0600366 /* Only handle PCI memory and IO resources */
367 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
368 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000369
Marc Jones8d595692012-03-15 12:55:26 -0600370 /* Ensure I am actually looking at a resource of function 1 */
371 if ((resource->index & 0xffff) < 0x1000) {
372 return;
373 }
374 /* Get the base address */
375 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000376
Marc Jones8d595692012-03-15 12:55:26 -0600377 /* Get the limit (rounded up) */
378 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000379
Marc Jones8d595692012-03-15 12:55:26 -0600380 /* Get the register and link */
381 reg = resource->index & 0xfff; // 4k
382 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000383
Marc Jones8d595692012-03-15 12:55:26 -0600384 if (resource->flags & IORESOURCE_IO) {
385 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
386 rend >> 8);
387 } else if (resource->flags & IORESOURCE_MEM) {
388 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
389 rbase >> 8, rend >> 8, 1); // [39:8]
390 }
391 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200392 snprintf(buf, sizeof(buf), " <node %x link %x>", nodeid, link_num);
Marc Jones8d595692012-03-15 12:55:26 -0600393 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000394}
395
Julius Wernercd49cce2019-03-05 16:53:33 -0800396#if CONFIG(CONSOLE_VGA_MULTI)
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300397extern struct device *vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000398#endif
399
Subrata Banikb1434fc2019-03-15 22:20:41 +0530400static void create_vga_resource(struct device *dev, unsigned int nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000401{
Marc Jones8d595692012-03-15 12:55:26 -0600402 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000403
Mike Loptien58089e82013-01-29 15:45:09 -0700404 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000405
Marc Jones8d595692012-03-15 12:55:26 -0600406 /* find out which link the VGA card is connected,
407 * we only deal with the 'first' vga card */
408 for (link = dev->link_list; link; link = link->next) {
409 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800410#if CONFIG(CONSOLE_VGA_MULTI)
Marc Jones8d595692012-03-15 12:55:26 -0600411 printk(BIOS_DEBUG,
412 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
413 vga_pri->bus->secondary, link->secondary,
414 link->subordinate);
415 /* We need to make sure the vga_pri is under the link */
416 if ((vga_pri->bus->secondary >= link->secondary) &&
417 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000418#endif
Marc Jones8d595692012-03-15 12:55:26 -0600419 break;
420 }
421 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000422
Marc Jones8d595692012-03-15 12:55:26 -0600423 /* no VGA card installed */
424 if (link == NULL)
425 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000426
Marc Jones8d595692012-03-15 12:55:26 -0600427 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
428 dev_path(dev), nodeid, link->link_num);
429 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000430}
431
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200432static void nb_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000433{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530434 unsigned int nodeid;
Marc Jones8d595692012-03-15 12:55:26 -0600435 struct bus *bus;
436 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000437
Mike Loptien58089e82013-01-29 15:45:09 -0700438 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
efdesign9805a89ab2011-06-20 17:38:49 -0700439
Marc Jones8d595692012-03-15 12:55:26 -0600440 /* Find the nodeid */
441 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000442
Marc Jones8d595692012-03-15 12:55:26 -0600443 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000444
Marc Jones8d595692012-03-15 12:55:26 -0600445 /* Set each resource we have found */
446 for (res = dev->resource_list; res; res = res->next) {
447 set_resource(dev, res, nodeid);
448 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000449
Marc Jones8d595692012-03-15 12:55:26 -0600450 for (bus = dev->link_list; bus; bus = bus->next) {
451 if (bus->children) {
452 assign_resources(bus);
453 }
454 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000455}
456
Frank Vibrans39fca802011-02-14 18:35:15 +0000457/* Domain/Root Complex related code */
458
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200459static void domain_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000460{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530461 unsigned int reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000462
Mike Loptien58089e82013-01-29 15:45:09 -0700463 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000464
Marc Jones8d595692012-03-15 12:55:26 -0600465 /* Find the already assigned resource pairs */
466 get_fx_devs();
467 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
468 u32 base, limit;
469 base = f1_read_config32(reg);
470 limit = f1_read_config32(reg + 0x04);
471 /* Is this register allocated? */
472 if ((base & 3) != 0) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530473 unsigned int nodeid, reg_link;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200474 struct device *reg_dev;
Marc Jones8d595692012-03-15 12:55:26 -0600475 if (reg < 0xc0) { // mmio
476 nodeid = (limit & 0xf) + (base & 0x30);
477 } else { // io
478 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
479 }
480 reg_link = (limit >> 4) & 7;
481 reg_dev = __f0_dev[nodeid];
482 if (reg_dev) {
483 /* Reserve the resource */
484 struct resource *res;
485 res =
486 new_resource(reg_dev,
487 IOINDEX(0x1000 + reg,
488 reg_link));
489 if (res) {
490 res->flags = 1;
491 }
492 }
493 }
494 }
495 /* FIXME: do we need to check extend conf space?
496 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000497
Marc Jones8d595692012-03-15 12:55:26 -0600498 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000499}
500
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200501static void domain_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000502{
Mike Loptien58089e82013-01-29 15:45:09 -0700503 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Stefan Reinauer29e65482015-06-18 01:18:09 -0700504 printk(BIOS_DEBUG, " amsr - incoming dev = %p\n", dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000505
Marc Jones8d595692012-03-15 12:55:26 -0600506 unsigned long mmio_basek;
507 u32 pci_tolm;
508 int idx;
509 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000510#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600511 struct hw_mem_hole_info mem_hole;
512 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000513#endif
514
Marc Jones8d595692012-03-15 12:55:26 -0600515 pci_tolm = 0xffffffffUL;
516 for (link = dev->link_list; link; link = link->next) {
517 pci_tolm = my_find_pci_tolm(link, pci_tolm);
518 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000519
Marc Jones8d595692012-03-15 12:55:26 -0600520 // FIXME handle interleaved nodes. If you fix this here, please fix
521 // amdk8, too.
522 mmio_basek = pci_tolm >> 10;
523 /* Round mmio_basek to something the processor can support */
524 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000525
Marc Jones8d595692012-03-15 12:55:26 -0600526 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
527 // MMIO hole. If you fix this here, please fix amdk8, too.
528 /* Round the mmio hole to 64M */
529 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000530
531#if CONFIG_HW_MEM_HOLE_SIZEK != 0
532/* if the hw mem hole is already set in raminit stage, here we will compare
533 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
534 * use hole_basek as mmio_basek and we don't need to reset hole.
535 * otherwise We reset the hole to the mmio_basek
536 */
537
Marc Jones8d595692012-03-15 12:55:26 -0600538 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000539
Marc Jones8d595692012-03-15 12:55:26 -0600540 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
541 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
542 mmio_basek = mem_hole.hole_startk;
543 reset_memhole = 0;
544 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000545#endif
546
Marc Jones8d595692012-03-15 12:55:26 -0600547 idx = 0x10;
Frank Vibrans39fca802011-02-14 18:35:15 +0000548
Marc Jones8d595692012-03-15 12:55:26 -0600549 struct dram_base_mask_t d;
550 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000551
Marc Jones8d595692012-03-15 12:55:26 -0600552 d = get_dram_base_mask(0);
Frank Vibrans39fca802011-02-14 18:35:15 +0000553
Marc Jones8d595692012-03-15 12:55:26 -0600554 if (d.mask & 1) {
555 basek = ((resource_t) ((u64) d.base)) << 8;
556 limitk = (resource_t) (((u64) d.mask << 8) | 0xFFFFFF);
557 printk(BIOS_DEBUG,
558 "adsr: (before) basek = %llx, limitk = %llx.\n", basek,
559 limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000560
Marc Jones8d595692012-03-15 12:55:26 -0600561 /* Convert these values to multiples of 1K for ease of math. */
562 basek >>= 10;
563 limitk >>= 10;
564 sizek = limitk - basek + 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000565
Marc Jones8d595692012-03-15 12:55:26 -0600566 printk(BIOS_DEBUG,
567 "adsr: (after) basek = %llx, limitk = %llx, sizek = %llx.\n",
568 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000569
Marc Jones8d595692012-03-15 12:55:26 -0600570 /* see if we need a hole from 0xa0000 to 0xbffff */
571 if ((basek < 640) && (sizek > 768)) {
572 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
573 ram_resource(dev, (idx | 0), basek, 640 - basek);
574 idx += 0x10;
575 basek = 768;
576 sizek = limitk - 768;
577 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000578
Marc Jones8d595692012-03-15 12:55:26 -0600579 printk(BIOS_DEBUG,
580 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
581 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000582
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300583 /* split the region to accommodate pci memory space */
Marc Jones8d595692012-03-15 12:55:26 -0600584 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
585 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530586 unsigned int pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600587 pre_sizek = mmio_basek - basek;
588 if (pre_sizek > 0) {
589 ram_resource(dev, idx, basek,
590 pre_sizek);
591 idx += 0x10;
592 sizek -= pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600593 }
Marc Jones8d595692012-03-15 12:55:26 -0600594 basek = mmio_basek;
595 }
596 if ((basek + sizek) <= 4 * 1024 * 1024) {
597 sizek = 0;
598 } else {
599 basek = 4 * 1024 * 1024;
600 sizek -= (4 * 1024 * 1024 - mmio_basek);
601 }
602 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000603
Marc Jones8d595692012-03-15 12:55:26 -0600604 ram_resource(dev, (idx | 0), basek, sizek);
605 idx += 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600606 printk(BIOS_DEBUG,
607 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
608 mmio_basek, basek, limitk);
Marc Jones8d595692012-03-15 12:55:26 -0600609 }
610 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000611
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300612 add_uma_resource_below_tolm(dev, 7);
Frank Vibrans39fca802011-02-14 18:35:15 +0000613
Marc Jones8d595692012-03-15 12:55:26 -0600614 for (link = dev->link_list; link; link = link->next) {
615 if (link->children) {
616 assign_resources(link);
617 }
618 }
619 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000620}
621
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600622static const char *domain_acpi_name(const struct device *dev)
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100623{
624 if (dev->path.type == DEVICE_PATH_DOMAIN)
625 return "PCI0";
626
627 return NULL;
628}
629
Frank Vibrans39fca802011-02-14 18:35:15 +0000630/* Bus related code */
631
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200632static void cpu_bus_scan(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800633{
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300634 struct bus *cpu_bus = dev->link_list;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200635 struct device *cpu;
zbaof7223732012-04-13 13:42:15 +0800636 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000637
zbaof7223732012-04-13 13:42:15 +0800638 /* There is only one node for fam14, but there may be multiple cores. */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300639 cpu = pcidev_on_root(0x18, 0);
zbaof7223732012-04-13 13:42:15 +0800640 if (!cpu)
641 printk(BIOS_ERR, "ERROR: %02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000642
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300643 cores_found = (pci_read_config32(pcidev_on_root(0x18, 0x3),
644 0xe8) >> 12) & 3;
zbaof7223732012-04-13 13:42:15 +0800645 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
646
zbaof7223732012-04-13 13:42:15 +0800647 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300648 cpu = add_cpu_device(cpu_bus, apic_id, 1);
649 if (cpu)
650 amd_cpu_topology(cpu, 0, apic_id);
Marc Jones8d595692012-03-15 12:55:26 -0600651 }
zbaof7223732012-04-13 13:42:15 +0800652}
653
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200654static void cpu_bus_init(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800655{
656 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000657}
658
Frank Vibrans39fca802011-02-14 18:35:15 +0000659/* North Bridge Structures */
660
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300661static void northbridge_fill_ssdt_generator(struct device *device)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200662{
663 msr_t msr;
664 char pscope[] = "\\_SB.PCI0";
665
666 acpigen_write_scope(pscope);
667 msr = rdmsr(TOP_MEM);
668 acpigen_write_name_dword("TOM1", msr.lo);
669 msr = rdmsr(TOP_MEM2);
670 /*
671 * Since XP only implements parts of ACPI 2.0, we can't use a qword
672 * here.
673 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
674 * slide 22ff.
675 * Shift value right by 20 bit to make it fit into 32bit,
676 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
677 */
678 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
679 acpigen_pop_len();
680}
681
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100682static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200683{
684 void *addr, *current;
685
686 /* Skip the HEST header. */
687 current = (void *)(hest + 1);
688
689 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
690 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700691 current += acpi_create_hest_error_source(hest, current, 0,
692 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200693
694 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
695 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700696 current += acpi_create_hest_error_source(hest, current, 1,
697 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200698
699 return (unsigned long)current;
700}
701
Michał Żygowski9550e972020-03-20 13:56:46 +0100702static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
703{
704 unsigned int len = ssdt->length - sizeof(acpi_header_t);
705 unsigned int i;
706
707 for (i = sizeof(acpi_header_t); i < len; i++) {
708 /* Search for _PR_ scope and replace it with _SB_ */
709 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
710 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
711 }
712 /* Recalculate checksum */
713 ssdt->checksum = 0;
714 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
715}
716
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700717static unsigned long agesa_write_acpi_tables(const struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200718 unsigned long current,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200719 acpi_rsdp_t *rsdp)
720{
721 acpi_srat_t *srat;
722 acpi_slit_t *slit;
723 acpi_header_t *ssdt;
724 acpi_header_t *alib;
725 acpi_hest_t *hest;
726
727 /* HEST */
728 current = ALIGN(current, 8);
729 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100730 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200731 acpi_add_table(rsdp, (void *)current);
732 current += ((acpi_header_t *)current)->length;
733
734 /* SRAT */
735 current = ALIGN(current, 8);
736 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
737 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
738 if (srat != NULL) {
739 memcpy((void *)current, srat, srat->header.length);
740 srat = (acpi_srat_t *) current;
741 current += srat->header.length;
742 acpi_add_table(rsdp, srat);
743 }
744 else {
745 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
746 }
747
748 /* SLIT */
749 current = ALIGN(current, 8);
750 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
751 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
752 if (slit != NULL) {
753 memcpy((void *)current, slit, slit->header.length);
754 slit = (acpi_slit_t *) current;
755 current += slit->header.length;
756 acpi_add_table(rsdp, slit);
757 }
758 else {
759 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
760 }
761
762 /* SSDT */
763 current = ALIGN(current, 16);
764 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
765 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
766 if (alib != NULL) {
767 memcpy((void *)current, alib, alib->length);
768 alib = (acpi_header_t *) current;
769 current += alib->length;
770 acpi_add_table(rsdp, (void *)alib);
771 } else {
772 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
773 }
774
775 /* The DSDT needs additional work for the AGESA SSDT Pstate table */
776 /* Keep the comment for a while. */
777 current = ALIGN(current, 16);
778 printk(BIOS_DEBUG, "ACPI: * AGESA SSDT Pstate at %lx\n", current);
779 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
780 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100781 hexdump(ssdt, ssdt->length);
782 patch_ssdt_processor_scope(ssdt);
783 hexdump(ssdt, ssdt->length);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200784 memcpy((void *)current, ssdt, ssdt->length);
785 ssdt = (acpi_header_t *) current;
786 current += ssdt->length;
787 acpi_add_table(rsdp,ssdt);
788 } else {
789 printk(BIOS_DEBUG, " AGESA SSDT Pstate table NULL. Skipping.\n");
790 }
791
792 return current;
793}
794
Frank Vibrans39fca802011-02-14 18:35:15 +0000795static struct device_operations northbridge_operations = {
Marc Jones8a49ac72013-01-16 17:02:20 -0700796 .read_resources = nb_read_resources,
797 .set_resources = nb_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600798 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200799 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200800 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones8d595692012-03-15 12:55:26 -0600801 .init = northbridge_init,
802 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000803};
804
Frank Vibrans39fca802011-02-14 18:35:15 +0000805static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600806 .ops = &northbridge_operations,
807 .vendor = PCI_VENDOR_ID_AMD,
808 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000809};
810
efdesign9805a89ab2011-06-20 17:38:49 -0700811struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600812 CHIP_NAME("AMD Family 14h Northbridge")
813 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000814};
815
Frank Vibrans39fca802011-02-14 18:35:15 +0000816/* Root Complex Structures */
817
Frank Vibrans39fca802011-02-14 18:35:15 +0000818static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600819 .read_resources = domain_read_resources,
820 .set_resources = domain_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600821 .scan_bus = pci_domain_scan_bus,
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100822 .acpi_name = domain_acpi_name,
Frank Vibrans39fca802011-02-14 18:35:15 +0000823};
824
Frank Vibrans39fca802011-02-14 18:35:15 +0000825static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200826 .read_resources = noop_read_resources,
827 .set_resources = noop_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600828 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800829 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000830};
831
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300832static void root_complex_enable_dev(struct device *dev)
833{
834 static int done = 0;
835
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300836 if (!done) {
837 setup_bsp_ramtop();
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300838 done = 1;
839 }
840
Marc Jones8d595692012-03-15 12:55:26 -0600841 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800842 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Marc Jones8d595692012-03-15 12:55:26 -0600843 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800844 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Marc Jones8d595692012-03-15 12:55:26 -0600845 dev->ops = &cpu_bus_ops;
846 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000847}
848
efdesign9805a89ab2011-06-20 17:38:49 -0700849struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600850 CHIP_NAME("AMD Family 14h Root Complex")
851 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000852};
Kyösti Mälkki2b218e32019-01-15 11:14:28 +0200853
854/********************************************************************
855* Change the vendor / device IDs to match the generic VBIOS header.
856********************************************************************/
857u32 map_oprom_vendev(u32 vendev)
858{
859 u32 new_vendev = vendev;
860
861 switch (vendev) {
862 case 0x10029809:
863 case 0x10029808:
864 case 0x10029807:
865 case 0x10029806:
866 case 0x10029805:
867 case 0x10029804:
868 case 0x10029803:
869 new_vendev = 0x10029802;
870 break;
871 }
872
873 return new_vendev;
874}