blob: 5a8b24d0bb898fa432b6fd62a1f88554e6bfaa7c [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Frank Vibrans39fca802011-02-14 18:35:15 +00002
3#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07005#include <acpi/acpi.h>
6#include <acpi/acpigen.h>
Frank Vibrans39fca802011-02-14 18:35:15 +00007#include <stdint.h>
8#include <device/device.h>
9#include <device/pci.h>
10#include <device/pci_ids.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000011#include <string.h>
Ronald G. Minnich5079a0d2012-11-27 11:32:38 -080012#include <lib.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000013#include <cpu/cpu.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020014#include <cpu/amd/msr.h>
Kyösti Mälkki55fff9302012-07-11 08:02:39 +030015#include <cpu/amd/mtrr.h>
Angel Ponsec5cf152020-11-10 20:42:07 +010016#include <northbridge/amd/nb_common.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020017#include <northbridge/amd/agesa/state_machine.h>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020018#include <northbridge/amd/agesa/agesa_helper.h>
Kerry Shefeed3292011-08-18 18:03:44 +080019#include <sb_cimx.h>
Frank Vibrans39fca802011-02-14 18:35:15 +000020
Frank Vibrans39fca802011-02-14 18:35:15 +000021#define FX_DEVS 1
22
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030023static struct device *__f0_dev[FX_DEVS];
24static struct device *__f1_dev[FX_DEVS];
25static struct device *__f2_dev[FX_DEVS];
26static struct device *__f4_dev[FX_DEVS];
Subrata Banikb1434fc2019-03-15 22:20:41 +053027static unsigned int fx_devs = 0;
Frank Vibrans39fca802011-02-14 18:35:15 +000028
Kyösti Mälkki2b218e32019-01-15 11:14:28 +020029static u32 get_io_addr_index(u32 nodeid, u32 linkn)
30{
31 return 0;
32}
33
34static u32 get_mmio_addr_index(u32 nodeid, u32 linkn)
35{
36 return 0;
37}
38
39static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
40 u32 io_min, u32 io_max)
41{
42
43 u32 tempreg;
44 /* io range allocation */
45 tempreg = (nodeid & 0xf) | ((nodeid & 0x30) << (8 - 4)) | (linkn << 4) |
46 ((io_max & 0xf0) << (12 - 4)); //limit
47 pci_write_config32(__f1_dev[0], reg+4, tempreg);
48
49 tempreg = 3 | ((io_min & 0xf0) << (12 - 4)); //base :ISA and VGA ?
50 pci_write_config32(__f1_dev[0], reg, tempreg);
51}
52
53static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index,
54 u32 mmio_min, u32 mmio_max, u32 nodes)
55{
56
57 u32 tempreg;
58 /* io range allocation */
59 tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00);
60 pci_write_config32(__f1_dev[0], reg + 4, tempreg);
61 tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00);
62 pci_write_config32(__f1_dev[0], reg, tempreg);
63}
64
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030065static struct device *get_node_pci(u32 nodeid, u32 fn)
Frank Vibrans39fca802011-02-14 18:35:15 +000066{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020067 return pcidev_on_root(DEV_CDB + nodeid, fn);
Frank Vibrans39fca802011-02-14 18:35:15 +000068}
69
Frank Vibrans39fca802011-02-14 18:35:15 +000070static void get_fx_devs(void)
71{
Marc Jones8d595692012-03-15 12:55:26 -060072 int i;
73 for (i = 0; i < FX_DEVS; i++) {
74 __f0_dev[i] = get_node_pci(i, 0);
75 __f1_dev[i] = get_node_pci(i, 1);
76 __f2_dev[i] = get_node_pci(i, 2);
77 __f4_dev[i] = get_node_pci(i, 4);
78 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
79 fx_devs = i + 1;
80 }
81 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
82 die("Cannot find 0:0x18.[0|1]\n");
83 }
Frank Vibrans39fca802011-02-14 18:35:15 +000084}
85
Subrata Banikb1434fc2019-03-15 22:20:41 +053086static u32 f1_read_config32(unsigned int reg)
Frank Vibrans39fca802011-02-14 18:35:15 +000087{
Marc Jones8d595692012-03-15 12:55:26 -060088 if (fx_devs == 0)
89 get_fx_devs();
90 return pci_read_config32(__f1_dev[0], reg);
Frank Vibrans39fca802011-02-14 18:35:15 +000091}
92
Subrata Banikb1434fc2019-03-15 22:20:41 +053093static void f1_write_config32(unsigned int reg, u32 value)
Frank Vibrans39fca802011-02-14 18:35:15 +000094{
Marc Jones8d595692012-03-15 12:55:26 -060095 int i;
96 if (fx_devs == 0)
97 get_fx_devs();
98 for (i = 0; i < fx_devs; i++) {
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +020099 struct device *dev;
Marc Jones8d595692012-03-15 12:55:26 -0600100 dev = __f1_dev[i];
101 if (dev && dev->enabled) {
102 pci_write_config32(dev, reg, value);
103 }
104 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000105}
106
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200107static int get_dram_base_limit(u32 nodeid, resource_t *basek, resource_t *limitk)
108{
109 u32 temp;
110
111 if (fx_devs == 0)
112 get_fx_devs();
113
114
115 temp = pci_read_config32(__f1_dev[nodeid], 0x40 + (nodeid << 3)); //[39:24] at [31:16]
116 if (!(temp & 1))
117 return 0; // this memory range is not enabled
118 /*
119 * BKDG: {DramBase[35:24], 00_0000h} <= address[35:0] so shift left by 8 bits
120 * for physical address and the convert to KiB by shifting 10 bits left
121 */
122 *basek = ((temp & 0x0fff0000)) >> (10 - 8);
123 /*
124 * BKDG address[35:0] <= {DramLimit[35:24], FF_FFFFh} converted as above but
125 * ORed with 0xffff to get real limit before shifting.
126 */
127 temp = pci_read_config32(__f1_dev[nodeid], 0x44 + (nodeid << 3)); //[39:24] at [31:16]
128 *limitk = ((temp & 0x0fff0000) | 0xffff) >> (10 - 8);
129 *limitk += 1; // round up last byte
130
131 return 1;
132}
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;
Furquan Shaikhafaae8a2020-05-18 16:00:53 -0700288 unsigned long mask_match = IORESOURCE_MEM | IORESOURCE_ASSIGNED;
Marc Jones8d595692012-03-15 12:55:26 -0600289 min = 0;
Furquan Shaikhafaae8a2020-05-18 16:00:53 -0700290 search_bus_resources(bus, mask_match, mask_match, tolm_test,
Marc Jones8d595692012-03-15 12:55:26 -0600291 &min);
292 if (min && tolm > min->base) {
293 tolm = min->base;
294 }
295 return tolm;
Frank Vibrans39fca802011-02-14 18:35:15 +0000296}
297
298#if CONFIG_HW_MEM_HOLE_SIZEK != 0
299
300struct hw_mem_hole_info {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530301 unsigned int hole_startk;
Marc Jones8d595692012-03-15 12:55:26 -0600302 int node_id;
Frank Vibrans39fca802011-02-14 18:35:15 +0000303};
304
305static struct hw_mem_hole_info get_hw_mem_hole_info(void)
306{
Marc Jones8d595692012-03-15 12:55:26 -0600307 struct hw_mem_hole_info mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000308
Marc Jones8d595692012-03-15 12:55:26 -0600309 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
310 mem_hole.node_id = -1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000311
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200312 resource_t basek, limitk;
Marc Jones8d595692012-03-15 12:55:26 -0600313 u32 hole;
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200314
315 if (get_dram_base_limit(0, &basek, &limitk)) {
Marc Jones8d595692012-03-15 12:55:26 -0600316 hole = pci_read_config32(__f1_dev[0], 0xf0);
317 if (hole & 1) { // we find the hole
318 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
319 mem_hole.node_id = 0; // record the node No with hole
320 }
321 }
Marc Jones8d595692012-03-15 12:55:26 -0600322 return mem_hole;
Frank Vibrans39fca802011-02-14 18:35:15 +0000323}
324#endif
325
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200326static void nb_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000327{
Marc Jones8d595692012-03-15 12:55:26 -0600328 u32 nodeid;
329 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000330
Mike Loptien58089e82013-01-29 15:45:09 -0700331 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000332
Marc Jones8d595692012-03-15 12:55:26 -0600333 nodeid = amdfam14_nodeid(dev);
334 for (link = dev->link_list; link; link = link->next) {
335 if (link->children) {
336 amdfam14_link_read_bases(dev, nodeid, link->link_num);
337 }
338 }
Marc Jonesd5c998b2013-01-16 17:14:24 -0700339
340 /*
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800341 * This MMCONF resource must be reserved in the PCI domain.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700342 * It is not honored by the coreboot resource allocator if it is in
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800343 * the CPU_CLUSTER.
Marc Jonesd5c998b2013-01-16 17:14:24 -0700344 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200345 mmconf_resource(dev, MMIO_CONF_BASE);
Frank Vibrans39fca802011-02-14 18:35:15 +0000346}
347
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200348static void set_resource(struct device *dev, struct resource *resource,
349 u32 nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000350{
Marc Jones8d595692012-03-15 12:55:26 -0600351 resource_t rbase, rend;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530352 unsigned int reg, link_num;
Marc Jones8d595692012-03-15 12:55:26 -0600353 char buf[50];
Frank Vibrans39fca802011-02-14 18:35:15 +0000354
Mike Loptien58089e82013-01-29 15:45:09 -0700355 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000356
Marc Jones8d595692012-03-15 12:55:26 -0600357 /* Make certain the resource has actually been set */
358 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
359 return;
360 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000361
Marc Jones8d595692012-03-15 12:55:26 -0600362 /* If I have already stored this resource don't worry about it */
363 if (resource->flags & IORESOURCE_STORED) {
364 return;
365 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000366
Marc Jones8d595692012-03-15 12:55:26 -0600367 /* Only handle PCI memory and IO resources */
368 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
369 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000370
Marc Jones8d595692012-03-15 12:55:26 -0600371 /* Ensure I am actually looking at a resource of function 1 */
372 if ((resource->index & 0xffff) < 0x1000) {
373 return;
374 }
375 /* Get the base address */
376 rbase = resource->base;
Frank Vibrans39fca802011-02-14 18:35:15 +0000377
Marc Jones8d595692012-03-15 12:55:26 -0600378 /* Get the limit (rounded up) */
379 rend = resource_end(resource);
Frank Vibrans39fca802011-02-14 18:35:15 +0000380
Marc Jones8d595692012-03-15 12:55:26 -0600381 /* Get the register and link */
382 reg = resource->index & 0xfff; // 4k
383 link_num = IOINDEX_LINK(resource->index);
Frank Vibrans39fca802011-02-14 18:35:15 +0000384
Marc Jones8d595692012-03-15 12:55:26 -0600385 if (resource->flags & IORESOURCE_IO) {
386 set_io_addr_reg(dev, nodeid, link_num, reg, rbase >> 8,
387 rend >> 8);
388 } else if (resource->flags & IORESOURCE_MEM) {
389 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >> 24),
390 rbase >> 8, rend >> 8, 1); // [39:8]
391 }
392 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200393 snprintf(buf, sizeof(buf), " <node %x link %x>", nodeid, link_num);
Marc Jones8d595692012-03-15 12:55:26 -0600394 report_resource_stored(dev, resource, buf);
Frank Vibrans39fca802011-02-14 18:35:15 +0000395}
396
Julius Wernercd49cce2019-03-05 16:53:33 -0800397#if CONFIG(CONSOLE_VGA_MULTI)
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300398extern struct device *vga_pri; // the primary vga device, defined in device.c
Frank Vibrans39fca802011-02-14 18:35:15 +0000399#endif
400
Subrata Banikb1434fc2019-03-15 22:20:41 +0530401static void create_vga_resource(struct device *dev, unsigned int nodeid)
Frank Vibrans39fca802011-02-14 18:35:15 +0000402{
Marc Jones8d595692012-03-15 12:55:26 -0600403 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000404
Mike Loptien58089e82013-01-29 15:45:09 -0700405 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000406
Marc Jones8d595692012-03-15 12:55:26 -0600407 /* find out which link the VGA card is connected,
408 * we only deal with the 'first' vga card */
409 for (link = dev->link_list; link; link = link->next) {
410 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800411#if CONFIG(CONSOLE_VGA_MULTI)
Marc Jones8d595692012-03-15 12:55:26 -0600412 printk(BIOS_DEBUG,
413 "VGA: vga_pri bus num = %d bus range [%d,%d]\n",
414 vga_pri->bus->secondary, link->secondary,
415 link->subordinate);
416 /* We need to make sure the vga_pri is under the link */
417 if ((vga_pri->bus->secondary >= link->secondary) &&
418 (vga_pri->bus->secondary <= link->subordinate))
Frank Vibrans39fca802011-02-14 18:35:15 +0000419#endif
Marc Jones8d595692012-03-15 12:55:26 -0600420 break;
421 }
422 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000423
Marc Jones8d595692012-03-15 12:55:26 -0600424 /* no VGA card installed */
425 if (link == NULL)
426 return;
Frank Vibrans39fca802011-02-14 18:35:15 +0000427
Marc Jones8d595692012-03-15 12:55:26 -0600428 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n",
429 dev_path(dev), nodeid, link->link_num);
430 set_vga_enable_reg(nodeid, link->link_num);
Frank Vibrans39fca802011-02-14 18:35:15 +0000431}
432
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200433static void nb_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000434{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530435 unsigned int nodeid;
Marc Jones8d595692012-03-15 12:55:26 -0600436 struct bus *bus;
437 struct resource *res;
Frank Vibrans39fca802011-02-14 18:35:15 +0000438
Mike Loptien58089e82013-01-29 15:45:09 -0700439 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
efdesign9805a89ab2011-06-20 17:38:49 -0700440
Marc Jones8d595692012-03-15 12:55:26 -0600441 /* Find the nodeid */
442 nodeid = amdfam14_nodeid(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000443
Marc Jones8d595692012-03-15 12:55:26 -0600444 create_vga_resource(dev, nodeid);
Frank Vibrans39fca802011-02-14 18:35:15 +0000445
Marc Jones8d595692012-03-15 12:55:26 -0600446 /* Set each resource we have found */
447 for (res = dev->resource_list; res; res = res->next) {
448 set_resource(dev, res, nodeid);
449 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000450
Marc Jones8d595692012-03-15 12:55:26 -0600451 for (bus = dev->link_list; bus; bus = bus->next) {
452 if (bus->children) {
453 assign_resources(bus);
454 }
455 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000456}
457
Frank Vibrans39fca802011-02-14 18:35:15 +0000458/* Domain/Root Complex related code */
459
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200460static void domain_read_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000461{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530462 unsigned int reg;
Frank Vibrans39fca802011-02-14 18:35:15 +0000463
Mike Loptien58089e82013-01-29 15:45:09 -0700464 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Frank Vibrans39fca802011-02-14 18:35:15 +0000465
Marc Jones8d595692012-03-15 12:55:26 -0600466 /* Find the already assigned resource pairs */
467 get_fx_devs();
468 for (reg = 0x80; reg <= 0xc0; reg += 0x08) {
469 u32 base, limit;
470 base = f1_read_config32(reg);
471 limit = f1_read_config32(reg + 0x04);
472 /* Is this register allocated? */
473 if ((base & 3) != 0) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530474 unsigned int nodeid, reg_link;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200475 struct device *reg_dev;
Marc Jones8d595692012-03-15 12:55:26 -0600476 if (reg < 0xc0) { // mmio
477 nodeid = (limit & 0xf) + (base & 0x30);
478 } else { // io
479 nodeid = (limit & 0xf) + ((base >> 4) & 0x30);
480 }
481 reg_link = (limit >> 4) & 7;
482 reg_dev = __f0_dev[nodeid];
483 if (reg_dev) {
484 /* Reserve the resource */
485 struct resource *res;
486 res =
487 new_resource(reg_dev,
488 IOINDEX(0x1000 + reg,
489 reg_link));
490 if (res) {
491 res->flags = 1;
492 }
493 }
494 }
495 }
496 /* FIXME: do we need to check extend conf space?
497 I don't believe that much preset value */
Frank Vibrans39fca802011-02-14 18:35:15 +0000498
Marc Jones8d595692012-03-15 12:55:26 -0600499 pci_domain_read_resources(dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000500}
501
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200502static void domain_set_resources(struct device *dev)
Frank Vibrans39fca802011-02-14 18:35:15 +0000503{
Mike Loptien58089e82013-01-29 15:45:09 -0700504 printk(BIOS_DEBUG, "\nFam14h - %s\n", __func__);
Stefan Reinauer29e65482015-06-18 01:18:09 -0700505 printk(BIOS_DEBUG, " amsr - incoming dev = %p\n", dev);
Frank Vibrans39fca802011-02-14 18:35:15 +0000506
Marc Jones8d595692012-03-15 12:55:26 -0600507 unsigned long mmio_basek;
508 u32 pci_tolm;
509 int idx;
510 struct bus *link;
Frank Vibrans39fca802011-02-14 18:35:15 +0000511#if CONFIG_HW_MEM_HOLE_SIZEK != 0
Marc Jones8d595692012-03-15 12:55:26 -0600512 struct hw_mem_hole_info mem_hole;
513 u32 reset_memhole = 1;
Frank Vibrans39fca802011-02-14 18:35:15 +0000514#endif
515
Marc Jones8d595692012-03-15 12:55:26 -0600516 pci_tolm = 0xffffffffUL;
517 for (link = dev->link_list; link; link = link->next) {
518 pci_tolm = my_find_pci_tolm(link, pci_tolm);
519 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000520
Marc Jones8d595692012-03-15 12:55:26 -0600521 // FIXME handle interleaved nodes. If you fix this here, please fix
522 // amdk8, too.
523 mmio_basek = pci_tolm >> 10;
524 /* Round mmio_basek to something the processor can support */
525 mmio_basek &= ~((1 << 6) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000526
Marc Jones8d595692012-03-15 12:55:26 -0600527 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
528 // MMIO hole. If you fix this here, please fix amdk8, too.
529 /* Round the mmio hole to 64M */
530 mmio_basek &= ~((64 * 1024) - 1);
Frank Vibrans39fca802011-02-14 18:35:15 +0000531
532#if CONFIG_HW_MEM_HOLE_SIZEK != 0
533/* if the hw mem hole is already set in raminit stage, here we will compare
534 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
535 * use hole_basek as mmio_basek and we don't need to reset hole.
536 * otherwise We reset the hole to the mmio_basek
537 */
538
Marc Jones8d595692012-03-15 12:55:26 -0600539 mem_hole = get_hw_mem_hole_info();
Frank Vibrans39fca802011-02-14 18:35:15 +0000540
Marc Jones8d595692012-03-15 12:55:26 -0600541 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
542 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
543 mmio_basek = mem_hole.hole_startk;
544 reset_memhole = 0;
545 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000546#endif
547
Marc Jones8d595692012-03-15 12:55:26 -0600548 idx = 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600549 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000550
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200551 if (get_dram_base_limit(0, &basek, &limitk)) {
552 sizek = limitk - basek;
Frank Vibrans39fca802011-02-14 18:35:15 +0000553
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200554 printk(BIOS_DEBUG, "adsr: basek = %llx, limitk = %llx, sizek = %llx.\n",
555 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000556
Marc Jones8d595692012-03-15 12:55:26 -0600557 /* see if we need a hole from 0xa0000 to 0xbffff */
558 if ((basek < 640) && (sizek > 768)) {
559 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
560 ram_resource(dev, (idx | 0), basek, 640 - basek);
561 idx += 0x10;
562 basek = 768;
563 sizek = limitk - 768;
564 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000565
Marc Jones8d595692012-03-15 12:55:26 -0600566 printk(BIOS_DEBUG,
567 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
568 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000569
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300570 /* split the region to accommodate pci memory space */
Marc Jones8d595692012-03-15 12:55:26 -0600571 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
572 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530573 unsigned int pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600574 pre_sizek = mmio_basek - basek;
575 if (pre_sizek > 0) {
576 ram_resource(dev, idx, basek,
577 pre_sizek);
578 idx += 0x10;
579 sizek -= pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600580 }
Marc Jones8d595692012-03-15 12:55:26 -0600581 basek = mmio_basek;
582 }
583 if ((basek + sizek) <= 4 * 1024 * 1024) {
584 sizek = 0;
585 } else {
586 basek = 4 * 1024 * 1024;
587 sizek -= (4 * 1024 * 1024 - mmio_basek);
588 }
589 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000590
Marc Jones8d595692012-03-15 12:55:26 -0600591 ram_resource(dev, (idx | 0), basek, sizek);
592 idx += 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600593 printk(BIOS_DEBUG,
594 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
595 mmio_basek, basek, limitk);
Marc Jones8d595692012-03-15 12:55:26 -0600596 }
597 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000598
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300599 add_uma_resource_below_tolm(dev, 7);
Frank Vibrans39fca802011-02-14 18:35:15 +0000600
Marc Jones8d595692012-03-15 12:55:26 -0600601 for (link = dev->link_list; link; link = link->next) {
602 if (link->children) {
603 assign_resources(link);
604 }
605 }
606 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000607}
608
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600609static const char *domain_acpi_name(const struct device *dev)
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100610{
611 if (dev->path.type == DEVICE_PATH_DOMAIN)
612 return "PCI0";
613
614 return NULL;
615}
616
Frank Vibrans39fca802011-02-14 18:35:15 +0000617/* Bus related code */
618
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200619static void cpu_bus_scan(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800620{
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300621 struct bus *cpu_bus = dev->link_list;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200622 struct device *cpu;
zbaof7223732012-04-13 13:42:15 +0800623 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000624
zbaof7223732012-04-13 13:42:15 +0800625 /* There is only one node for fam14, but there may be multiple cores. */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300626 cpu = pcidev_on_root(0x18, 0);
zbaof7223732012-04-13 13:42:15 +0800627 if (!cpu)
Julius Wernere9665952022-01-21 17:06:20 -0800628 printk(BIOS_ERR, "%02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000629
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300630 cores_found = (pci_read_config32(pcidev_on_root(0x18, 0x3),
631 0xe8) >> 12) & 3;
zbaof7223732012-04-13 13:42:15 +0800632 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
633
zbaof7223732012-04-13 13:42:15 +0800634 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300635 cpu = add_cpu_device(cpu_bus, apic_id, 1);
636 if (cpu)
637 amd_cpu_topology(cpu, 0, apic_id);
Marc Jones8d595692012-03-15 12:55:26 -0600638 }
zbaof7223732012-04-13 13:42:15 +0800639}
640
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200641static void cpu_bus_init(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800642{
643 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000644}
645
Frank Vibrans39fca802011-02-14 18:35:15 +0000646/* North Bridge Structures */
647
Furquan Shaikh7536a392020-04-24 21:59:21 -0700648static void northbridge_fill_ssdt_generator(const struct device *device)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200649{
650 msr_t msr;
651 char pscope[] = "\\_SB.PCI0";
652
653 acpigen_write_scope(pscope);
654 msr = rdmsr(TOP_MEM);
655 acpigen_write_name_dword("TOM1", msr.lo);
656 msr = rdmsr(TOP_MEM2);
657 /*
658 * Since XP only implements parts of ACPI 2.0, we can't use a qword
659 * here.
660 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
661 * slide 22ff.
662 * Shift value right by 20 bit to make it fit into 32bit,
663 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
664 */
665 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
666 acpigen_pop_len();
667}
668
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100669static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200670{
671 void *addr, *current;
672
673 /* Skip the HEST header. */
674 current = (void *)(hest + 1);
675
676 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
677 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700678 current += acpi_create_hest_error_source(hest, current, 0,
679 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200680
681 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
682 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700683 current += acpi_create_hest_error_source(hest, current, 1,
684 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200685
686 return (unsigned long)current;
687}
688
Michał Żygowski9550e972020-03-20 13:56:46 +0100689static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
690{
691 unsigned int len = ssdt->length - sizeof(acpi_header_t);
692 unsigned int i;
693
694 for (i = sizeof(acpi_header_t); i < len; i++) {
695 /* Search for _PR_ scope and replace it with _SB_ */
696 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
697 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
698 }
699 /* Recalculate checksum */
700 ssdt->checksum = 0;
701 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
702}
703
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700704static unsigned long agesa_write_acpi_tables(const struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200705 unsigned long current,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200706 acpi_rsdp_t *rsdp)
707{
708 acpi_srat_t *srat;
709 acpi_slit_t *slit;
710 acpi_header_t *ssdt;
711 acpi_header_t *alib;
712 acpi_hest_t *hest;
713
714 /* HEST */
715 current = ALIGN(current, 8);
716 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100717 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200718 acpi_add_table(rsdp, (void *)current);
719 current += ((acpi_header_t *)current)->length;
720
721 /* SRAT */
722 current = ALIGN(current, 8);
723 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
724 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
725 if (srat != NULL) {
726 memcpy((void *)current, srat, srat->header.length);
727 srat = (acpi_srat_t *) current;
728 current += srat->header.length;
729 acpi_add_table(rsdp, srat);
730 }
731 else {
732 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
733 }
734
735 /* SLIT */
736 current = ALIGN(current, 8);
737 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
738 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
739 if (slit != NULL) {
740 memcpy((void *)current, slit, slit->header.length);
741 slit = (acpi_slit_t *) current;
742 current += slit->header.length;
743 acpi_add_table(rsdp, slit);
744 }
745 else {
746 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
747 }
748
749 /* SSDT */
750 current = ALIGN(current, 16);
751 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
752 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
753 if (alib != NULL) {
754 memcpy((void *)current, alib, alib->length);
755 alib = (acpi_header_t *) current;
756 current += alib->length;
757 acpi_add_table(rsdp, (void *)alib);
758 } else {
759 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
760 }
761
762 /* The DSDT needs additional work for the AGESA SSDT Pstate table */
763 /* Keep the comment for a while. */
764 current = ALIGN(current, 16);
765 printk(BIOS_DEBUG, "ACPI: * AGESA SSDT Pstate at %lx\n", current);
766 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
767 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100768 hexdump(ssdt, ssdt->length);
769 patch_ssdt_processor_scope(ssdt);
770 hexdump(ssdt, ssdt->length);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200771 memcpy((void *)current, ssdt, ssdt->length);
772 ssdt = (acpi_header_t *) current;
773 current += ssdt->length;
774 acpi_add_table(rsdp,ssdt);
775 } else {
776 printk(BIOS_DEBUG, " AGESA SSDT Pstate table NULL. Skipping.\n");
777 }
778
779 return current;
780}
781
Frank Vibrans39fca802011-02-14 18:35:15 +0000782static struct device_operations northbridge_operations = {
Marc Jones8a49ac72013-01-16 17:02:20 -0700783 .read_resources = nb_read_resources,
784 .set_resources = nb_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600785 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200786 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200787 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones8d595692012-03-15 12:55:26 -0600788 .init = northbridge_init,
789 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000790};
791
Frank Vibrans39fca802011-02-14 18:35:15 +0000792static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600793 .ops = &northbridge_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100794 .vendor = PCI_VID_AMD,
Marc Jones8d595692012-03-15 12:55:26 -0600795 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000796};
797
efdesign9805a89ab2011-06-20 17:38:49 -0700798struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600799 CHIP_NAME("AMD Family 14h Northbridge")
800 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000801};
802
Frank Vibrans39fca802011-02-14 18:35:15 +0000803/* Root Complex Structures */
804
Frank Vibrans39fca802011-02-14 18:35:15 +0000805static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600806 .read_resources = domain_read_resources,
807 .set_resources = domain_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600808 .scan_bus = pci_domain_scan_bus,
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100809 .acpi_name = domain_acpi_name,
Frank Vibrans39fca802011-02-14 18:35:15 +0000810};
811
Frank Vibrans39fca802011-02-14 18:35:15 +0000812static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200813 .read_resources = noop_read_resources,
814 .set_resources = noop_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600815 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800816 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000817};
818
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300819static void root_complex_enable_dev(struct device *dev)
820{
Marc Jones8d595692012-03-15 12:55:26 -0600821 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800822 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Marc Jones8d595692012-03-15 12:55:26 -0600823 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800824 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Marc Jones8d595692012-03-15 12:55:26 -0600825 dev->ops = &cpu_bus_ops;
826 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000827}
828
efdesign9805a89ab2011-06-20 17:38:49 -0700829struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600830 CHIP_NAME("AMD Family 14h Root Complex")
831 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000832};
Kyösti Mälkki2b218e32019-01-15 11:14:28 +0200833
834/********************************************************************
835* Change the vendor / device IDs to match the generic VBIOS header.
836********************************************************************/
837u32 map_oprom_vendev(u32 vendev)
838{
839 u32 new_vendev = vendev;
840
841 switch (vendev) {
842 case 0x10029809:
843 case 0x10029808:
844 case 0x10029807:
845 case 0x10029806:
846 case 0x10029805:
847 case 0x10029804:
848 case 0x10029803:
849 new_vendev = 0x10029802;
850 break;
851 }
852
853 return new_vendev;
854}