blob: bacab24e27ba9125491b8233a6fd30b3401883aa [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;
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
Arthur Heymans99eab342022-03-23 21:34:20 +0100541 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk))
Marc Jones8d595692012-03-15 12:55:26 -0600542 mmio_basek = mem_hole.hole_startk;
Frank Vibrans39fca802011-02-14 18:35:15 +0000543#endif
544
Marc Jones8d595692012-03-15 12:55:26 -0600545 idx = 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600546 resource_t basek, limitk, sizek; // 4 1T
Frank Vibrans39fca802011-02-14 18:35:15 +0000547
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200548 if (get_dram_base_limit(0, &basek, &limitk)) {
549 sizek = limitk - basek;
Frank Vibrans39fca802011-02-14 18:35:15 +0000550
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200551 printk(BIOS_DEBUG, "adsr: basek = %llx, limitk = %llx, sizek = %llx.\n",
552 basek, limitk, sizek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000553
Elyes Haouas5213b192022-02-25 18:13:03 +0100554 /* See if we need a hole from 0xa0000 (640K) to 0xbffff (768K) */
Elyes Haouas9d8df302022-02-25 18:23:01 +0100555 if (basek < 640 && sizek > 768) {
Marc Jones8d595692012-03-15 12:55:26 -0600556 printk(BIOS_DEBUG,"adsr - 0xa0000 to 0xbffff resource.\n");
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300557 ram_resource_kb(dev, (idx | 0), basek, 640 - basek);
Marc Jones8d595692012-03-15 12:55:26 -0600558 idx += 0x10;
559 basek = 768;
Elyes Haouas9d8df302022-02-25 18:23:01 +0100560 sizek = limitk - basek;
Marc Jones8d595692012-03-15 12:55:26 -0600561 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000562
Marc Jones8d595692012-03-15 12:55:26 -0600563 printk(BIOS_DEBUG,
564 "adsr: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
565 mmio_basek, basek, limitk);
Frank Vibrans39fca802011-02-14 18:35:15 +0000566
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300567 /* split the region to accommodate pci memory space */
Marc Jones8d595692012-03-15 12:55:26 -0600568 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
569 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530570 unsigned int pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600571 pre_sizek = mmio_basek - basek;
572 if (pre_sizek > 0) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300573 ram_resource_kb(dev, idx, basek,
Marc Jones8d595692012-03-15 12:55:26 -0600574 pre_sizek);
575 idx += 0x10;
576 sizek -= pre_sizek;
Marc Jones8d595692012-03-15 12:55:26 -0600577 }
Marc Jones8d595692012-03-15 12:55:26 -0600578 basek = mmio_basek;
579 }
580 if ((basek + sizek) <= 4 * 1024 * 1024) {
581 sizek = 0;
582 } else {
583 basek = 4 * 1024 * 1024;
584 sizek -= (4 * 1024 * 1024 - mmio_basek);
585 }
586 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000587
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300588 ram_resource_kb(dev, (idx | 0), basek, sizek);
Marc Jones8d595692012-03-15 12:55:26 -0600589 idx += 0x10;
Marc Jones8d595692012-03-15 12:55:26 -0600590 printk(BIOS_DEBUG,
591 "%d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", 0,
592 mmio_basek, basek, limitk);
Marc Jones8d595692012-03-15 12:55:26 -0600593 }
594 printk(BIOS_DEBUG, " adsr - mmio_basek = %lx.\n", mmio_basek);
Frank Vibrans39fca802011-02-14 18:35:15 +0000595
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300596 add_uma_resource_below_tolm(dev, 7);
Frank Vibrans39fca802011-02-14 18:35:15 +0000597
Marc Jones8d595692012-03-15 12:55:26 -0600598 for (link = dev->link_list; link; link = link->next) {
599 if (link->children) {
600 assign_resources(link);
601 }
602 }
603 printk(BIOS_DEBUG, " adsr - leaving this lovely routine.\n");
Frank Vibrans39fca802011-02-14 18:35:15 +0000604}
605
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600606static const char *domain_acpi_name(const struct device *dev)
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100607{
608 if (dev->path.type == DEVICE_PATH_DOMAIN)
609 return "PCI0";
610
611 return NULL;
612}
613
Frank Vibrans39fca802011-02-14 18:35:15 +0000614/* Bus related code */
615
Kyösti Mälkki580e7222015-03-19 21:04:23 +0200616static void cpu_bus_scan(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800617{
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300618 struct bus *cpu_bus = dev->link_list;
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200619 struct device *cpu;
zbaof7223732012-04-13 13:42:15 +0800620 int apic_id, cores_found;
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000621
zbaof7223732012-04-13 13:42:15 +0800622 /* There is only one node for fam14, but there may be multiple cores. */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300623 cpu = pcidev_on_root(0x18, 0);
zbaof7223732012-04-13 13:42:15 +0800624 if (!cpu)
Julius Wernere9665952022-01-21 17:06:20 -0800625 printk(BIOS_ERR, "%02x:%02x.0 not found", 0, 0x18);
Scott Duplichan9ab3c6c2011-05-15 21:45:46 +0000626
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300627 cores_found = (pci_read_config32(pcidev_on_root(0x18, 0x3),
628 0xe8) >> 12) & 3;
zbaof7223732012-04-13 13:42:15 +0800629 printk(BIOS_DEBUG, " AP siblings=%d\n", cores_found);
630
zbaof7223732012-04-13 13:42:15 +0800631 for (apic_id = 0; apic_id <= cores_found; apic_id++) {
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300632 cpu = add_cpu_device(cpu_bus, apic_id, 1);
633 if (cpu)
634 amd_cpu_topology(cpu, 0, apic_id);
Marc Jones8d595692012-03-15 12:55:26 -0600635 }
zbaof7223732012-04-13 13:42:15 +0800636}
637
Elyes HAOUAS0d7c7a82018-05-09 17:58:33 +0200638static void cpu_bus_init(struct device *dev)
zbaof7223732012-04-13 13:42:15 +0800639{
640 initialize_cpus(dev->link_list);
Frank Vibrans39fca802011-02-14 18:35:15 +0000641}
642
Frank Vibrans39fca802011-02-14 18:35:15 +0000643/* North Bridge Structures */
644
Furquan Shaikh7536a392020-04-24 21:59:21 -0700645static void northbridge_fill_ssdt_generator(const struct device *device)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200646{
647 msr_t msr;
648 char pscope[] = "\\_SB.PCI0";
649
650 acpigen_write_scope(pscope);
651 msr = rdmsr(TOP_MEM);
652 acpigen_write_name_dword("TOM1", msr.lo);
653 msr = rdmsr(TOP_MEM2);
654 /*
655 * Since XP only implements parts of ACPI 2.0, we can't use a qword
656 * here.
657 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
658 * slide 22ff.
659 * Shift value right by 20 bit to make it fit into 32bit,
660 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
661 */
662 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
663 acpigen_pop_len();
664}
665
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100666static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200667{
668 void *addr, *current;
669
670 /* Skip the HEST header. */
671 current = (void *)(hest + 1);
672
673 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
674 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700675 current += acpi_create_hest_error_source(hest, current, 0,
676 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200677
678 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
679 if (addr != NULL)
Stefan Reinauer29e65482015-06-18 01:18:09 -0700680 current += acpi_create_hest_error_source(hest, current, 1,
681 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200682
683 return (unsigned long)current;
684}
685
Michał Żygowski9550e972020-03-20 13:56:46 +0100686static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
687{
688 unsigned int len = ssdt->length - sizeof(acpi_header_t);
689 unsigned int i;
690
691 for (i = sizeof(acpi_header_t); i < len; i++) {
692 /* Search for _PR_ scope and replace it with _SB_ */
693 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
694 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
695 }
696 /* Recalculate checksum */
697 ssdt->checksum = 0;
698 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
699}
700
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700701static unsigned long agesa_write_acpi_tables(const struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200702 unsigned long current,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200703 acpi_rsdp_t *rsdp)
704{
705 acpi_srat_t *srat;
706 acpi_slit_t *slit;
707 acpi_header_t *ssdt;
708 acpi_header_t *alib;
709 acpi_hest_t *hest;
710
711 /* HEST */
712 current = ALIGN(current, 8);
713 hest = (acpi_hest_t *)current;
Arthur Heymanscc66ff32022-03-23 21:33:15 +0100714 acpi_write_hest(hest, acpi_fill_hest);
715 acpi_add_table(rsdp, hest);
716 current += hest->header.length;
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200717
718 /* SRAT */
719 current = ALIGN(current, 8);
720 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
721 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
722 if (srat != NULL) {
723 memcpy((void *)current, srat, srat->header.length);
724 srat = (acpi_srat_t *) current;
725 current += srat->header.length;
726 acpi_add_table(rsdp, srat);
727 }
728 else {
729 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
730 }
731
732 /* SLIT */
733 current = ALIGN(current, 8);
734 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
735 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
736 if (slit != NULL) {
737 memcpy((void *)current, slit, slit->header.length);
738 slit = (acpi_slit_t *) current;
739 current += slit->header.length;
740 acpi_add_table(rsdp, slit);
741 }
742 else {
743 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
744 }
745
746 /* SSDT */
747 current = ALIGN(current, 16);
748 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
749 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
750 if (alib != NULL) {
751 memcpy((void *)current, alib, alib->length);
752 alib = (acpi_header_t *) current;
753 current += alib->length;
754 acpi_add_table(rsdp, (void *)alib);
755 } else {
756 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
757 }
758
759 /* The DSDT needs additional work for the AGESA SSDT Pstate table */
760 /* Keep the comment for a while. */
761 current = ALIGN(current, 16);
762 printk(BIOS_DEBUG, "ACPI: * AGESA SSDT Pstate at %lx\n", current);
763 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
764 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100765 hexdump(ssdt, ssdt->length);
766 patch_ssdt_processor_scope(ssdt);
767 hexdump(ssdt, ssdt->length);
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200768 memcpy((void *)current, ssdt, ssdt->length);
769 ssdt = (acpi_header_t *) current;
770 current += ssdt->length;
771 acpi_add_table(rsdp,ssdt);
772 } else {
773 printk(BIOS_DEBUG, " AGESA SSDT Pstate table NULL. Skipping.\n");
774 }
775
776 return current;
777}
778
Frank Vibrans39fca802011-02-14 18:35:15 +0000779static struct device_operations northbridge_operations = {
Marc Jones8a49ac72013-01-16 17:02:20 -0700780 .read_resources = nb_read_resources,
781 .set_resources = nb_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600782 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200783 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Vladimir Serbinenko4ab588b2014-10-08 21:18:31 +0200784 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones8d595692012-03-15 12:55:26 -0600785 .init = northbridge_init,
786 .enable = 0,.ops_pci = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000787};
788
Frank Vibrans39fca802011-02-14 18:35:15 +0000789static const struct pci_driver northbridge_driver __pci_driver = {
Marc Jones8d595692012-03-15 12:55:26 -0600790 .ops = &northbridge_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100791 .vendor = PCI_VID_AMD,
Marc Jones8d595692012-03-15 12:55:26 -0600792 .device = 0x1510,
Frank Vibrans39fca802011-02-14 18:35:15 +0000793};
794
efdesign9805a89ab2011-06-20 17:38:49 -0700795struct chip_operations northbridge_amd_agesa_family14_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600796 CHIP_NAME("AMD Family 14h Northbridge")
797 .enable_dev = 0,
Frank Vibrans39fca802011-02-14 18:35:15 +0000798};
799
Frank Vibrans39fca802011-02-14 18:35:15 +0000800/* Root Complex Structures */
801
Frank Vibrans39fca802011-02-14 18:35:15 +0000802static struct device_operations pci_domain_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600803 .read_resources = domain_read_resources,
804 .set_resources = domain_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600805 .scan_bus = pci_domain_scan_bus,
Tobias Diedrichd8a2c1f2017-02-20 02:46:19 +0100806 .acpi_name = domain_acpi_name,
Frank Vibrans39fca802011-02-14 18:35:15 +0000807};
808
Frank Vibrans39fca802011-02-14 18:35:15 +0000809static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200810 .read_resources = noop_read_resources,
811 .set_resources = noop_set_resources,
Marc Jones8d595692012-03-15 12:55:26 -0600812 .init = cpu_bus_init,
zbaof7223732012-04-13 13:42:15 +0800813 .scan_bus = cpu_bus_scan,
Frank Vibrans39fca802011-02-14 18:35:15 +0000814};
815
Kyösti Mälkki87213b62012-08-27 20:00:33 +0300816static void root_complex_enable_dev(struct device *dev)
817{
Marc Jones8d595692012-03-15 12:55:26 -0600818 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800819 if (dev->path.type == DEVICE_PATH_DOMAIN) {
Marc Jones8d595692012-03-15 12:55:26 -0600820 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800821 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
Marc Jones8d595692012-03-15 12:55:26 -0600822 dev->ops = &cpu_bus_ops;
823 }
Frank Vibrans39fca802011-02-14 18:35:15 +0000824}
825
efdesign9805a89ab2011-06-20 17:38:49 -0700826struct chip_operations northbridge_amd_agesa_family14_root_complex_ops = {
Marc Jones8d595692012-03-15 12:55:26 -0600827 CHIP_NAME("AMD Family 14h Root Complex")
828 .enable_dev = root_complex_enable_dev,
Frank Vibrans39fca802011-02-14 18:35:15 +0000829};
Kyösti Mälkki2b218e32019-01-15 11:14:28 +0200830
831/********************************************************************
832* Change the vendor / device IDs to match the generic VBIOS header.
833********************************************************************/
834u32 map_oprom_vendev(u32 vendev)
835{
836 u32 new_vendev = vendev;
837
838 switch (vendev) {
839 case 0x10029809:
840 case 0x10029808:
841 case 0x10029807:
842 case 0x10029806:
843 case 0x10029805:
844 case 0x10029804:
845 case 0x10029803:
846 new_vendev = 0x10029802;
847 break;
848 }
849
850 return new_vendev;
851}