blob: 6994781407bdebdeed43050dfd76c13c94e88bd3 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
zbao2c08f6a2012-07-02 15:32:58 +08002
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>
zbao2c08f6a2012-07-02 15:32:58 +08007#include <stdint.h>
8#include <device/device.h>
9#include <device/pci.h>
10#include <device/pci_ids.h>
zbao2c08f6a2012-07-02 15:32:58 +080011#include <string.h>
Ronald G. Minnich5079a0d2012-11-27 11:32:38 -080012#include <lib.h>
zbao2c08f6a2012-07-02 15:32:58 +080013#include <cpu/cpu.h>
Martin Roth73e86a82013-01-17 16:28:30 -070014#include <AGESA.h>
zbao2c08f6a2012-07-02 15:32:58 +080015#include <cpu/x86/lapic.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020016#include <cpu/amd/msr.h>
Kyösti Mälkkidbc47392012-08-05 12:11:40 +030017#include <cpu/amd/mtrr.h>
zbao2c08f6a2012-07-02 15:32:58 +080018#include <Porting.h>
zbao2c08f6a2012-07-02 15:32:58 +080019#include <Options.h>
20#include <Topology.h>
Angel Ponsec5cf152020-11-10 20:42:07 +010021#include <northbridge/amd/nb_common.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020022#include <northbridge/amd/agesa/state_machine.h>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020023#include <northbridge/amd/agesa/agesa_helper.h>
zbao2c08f6a2012-07-02 15:32:58 +080024
Kyösti Mälkki113f6702018-05-20 20:12:32 +030025#define MAX_NODE_NUMS MAX_NODES
zbao2c08f6a2012-07-02 15:32:58 +080026
Subrata Banikb1434fc2019-03-15 22:20:41 +053027static unsigned int node_nums;
28static unsigned int sblink;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030029static struct device *__f0_dev[MAX_NODE_NUMS];
30static struct device *__f1_dev[MAX_NODE_NUMS];
31static struct device *__f2_dev[MAX_NODE_NUMS];
32static struct device *__f4_dev[MAX_NODE_NUMS];
Subrata Banikb1434fc2019-03-15 22:20:41 +053033static unsigned int fx_devs = 0;
zbao2c08f6a2012-07-02 15:32:58 +080034
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030035static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
zbao2c08f6a2012-07-02 15:32:58 +080036 u32 io_min, u32 io_max)
37{
38 u32 i;
39 u32 tempreg;
40 /* io range allocation */
Elyes HAOUAS27e18012017-06-27 23:14:51 +020041 tempreg = (nodeid&0xf) | ((nodeid & 0x30)<<(8-4)) | (linkn << 4) | ((io_max&0xf0)<<(12-4)); //limit
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020042 for (i = 0; i < node_nums; i++)
zbao2c08f6a2012-07-02 15:32:58 +080043 pci_write_config32(__f1_dev[i], reg+4, tempreg);
Elyes HAOUAS27e18012017-06-27 23:14:51 +020044 tempreg = 3 /*| (3 << 4)*/ | ((io_min&0xf0)<<(12-4)); //base :ISA and VGA ?
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020045 for (i = 0; i < node_nums; i++)
zbao2c08f6a2012-07-02 15:32:58 +080046 pci_write_config32(__f1_dev[i], reg, tempreg);
47}
48
49static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index, u32 mmio_min, u32 mmio_max, u32 nodes)
50{
51 u32 i;
52 u32 tempreg;
53 /* io range allocation */
Elyes HAOUAS27e18012017-06-27 23:14:51 +020054 tempreg = (nodeid&0xf) | (linkn << 4) | (mmio_max&0xffffff00); //limit
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020055 for (i = 0; i < nodes; i++)
zbao2c08f6a2012-07-02 15:32:58 +080056 pci_write_config32(__f1_dev[i], reg+4, tempreg);
57 tempreg = 3 | (nodeid & 0x30) | (mmio_min&0xffffff00);
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020058 for (i = 0; i < node_nums; i++)
zbao2c08f6a2012-07-02 15:32:58 +080059 pci_write_config32(__f1_dev[i], reg, tempreg);
60}
61
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030062static struct device *get_node_pci(u32 nodeid, u32 fn)
zbao2c08f6a2012-07-02 15:32:58 +080063{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020064 return pcidev_on_root(DEV_CDB + nodeid, fn);
zbao2c08f6a2012-07-02 15:32:58 +080065}
66
67static void get_fx_devs(void)
68{
69 int i;
70 for (i = 0; i < MAX_NODE_NUMS; i++) {
71 __f0_dev[i] = get_node_pci(i, 0);
72 __f1_dev[i] = get_node_pci(i, 1);
73 __f2_dev[i] = get_node_pci(i, 2);
74 __f4_dev[i] = get_node_pci(i, 4);
75 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
76 fx_devs = i+1;
77 }
78 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
79 die("Cannot find 0:0x18.[0|1]\n");
80 }
81 printk(BIOS_DEBUG, "fx_devs=0x%x\n", fx_devs);
82}
83
Subrata Banikb1434fc2019-03-15 22:20:41 +053084static u32 f1_read_config32(unsigned int reg)
zbao2c08f6a2012-07-02 15:32:58 +080085{
86 if (fx_devs == 0)
87 get_fx_devs();
88 return pci_read_config32(__f1_dev[0], reg);
89}
90
Subrata Banikb1434fc2019-03-15 22:20:41 +053091static void f1_write_config32(unsigned int reg, u32 value)
zbao2c08f6a2012-07-02 15:32:58 +080092{
93 int i;
94 if (fx_devs == 0)
95 get_fx_devs();
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +020096 for (i = 0; i < fx_devs; i++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030097 struct device *dev;
zbao2c08f6a2012-07-02 15:32:58 +080098 dev = __f1_dev[i];
99 if (dev && dev->enabled) {
100 pci_write_config32(dev, reg, value);
101 }
102 }
103}
104
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200105static int get_dram_base_limit(u32 nodeid, resource_t *basek, resource_t *limitk)
106{
107 u32 temp;
108
109 if (fx_devs == 0)
110 get_fx_devs();
111
112
113 temp = pci_read_config32(__f1_dev[nodeid], 0x40 + (nodeid << 3)); //[39:24] at [31:16]
114 if (!(temp & 1))
115 return 0; // this memory range is not enabled
116 /*
117 * BKDG: {DramBase[47:24], 00_0000h} <= address[47:0] so shift left by 8 bits
118 * for physical address and the convert to KiB by shifting 10 bits left
119 */
120 *basek = ((temp & 0xffff0000)) >> (10 - 8);
121 /* Now high bits [47:40] */
122 temp = pci_read_config32(__f1_dev[nodeid], 0x140 + (nodeid << 3)); //[47:40] at [7:0]
123 *basek = *basek | ((resource_t)temp << (40 - 10));
124 /*
125 * BKDG address[39:0] <= {DramLimit[47:24], FF_FFFFh} converted as above but
126 * ORed with 0xffff to get real limit before shifting.
127 */
128 temp = pci_read_config32(__f1_dev[nodeid], 0x44 + (nodeid << 3)); //[39:24] at [31:16]
129 *limitk = ((temp & 0xffff0000) | 0xffff) >> (10 - 8);
130 /* Now high bits [47:40] */
131 temp = pci_read_config32(__f1_dev[nodeid], 0x144 + (nodeid << 3)); //[47:40] at [7:0]
132 *limitk = *limitk | ((resource_t)temp << (40 - 10));
133 *limitk += 1; // round up last byte
134
135 return 1;
136}
137
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300138static u32 amdfam15_nodeid(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800139{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200140 return (dev->path.pci.devfn >> 3) - DEV_CDB;
zbao2c08f6a2012-07-02 15:32:58 +0800141}
142
143static void set_vga_enable_reg(u32 nodeid, u32 linkn)
144{
145 u32 val;
146
Elyes HAOUAS27e18012017-06-27 23:14:51 +0200147 val = 1 | (nodeid << 4) | (linkn << 12);
zbao2c08f6a2012-07-02 15:32:58 +0800148 /* it will routing
149 * (1)mmio 0xa0000:0xbffff
150 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
151 */
152 f1_write_config32(0xf4, val);
153
154}
155
156/**
157 * @return
Elyes HAOUAS99b075a2019-12-30 14:29:31 +0100158 * @retval 2 resource does not exist, usable
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100159 * @retval 0 resource exists, not usable
zbao2c08f6a2012-07-02 15:32:58 +0800160 * @retval 1 resource exist, resource has been allocated before
161 */
Subrata Banikb1434fc2019-03-15 22:20:41 +0530162static int reg_useable(unsigned int reg, struct device *goal_dev,
163 unsigned int goal_nodeid, unsigned int goal_link)
zbao2c08f6a2012-07-02 15:32:58 +0800164{
165 struct resource *res;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530166 unsigned int nodeid, link = 0;
zbao2c08f6a2012-07-02 15:32:58 +0800167 int result;
168 res = 0;
169 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300170 struct device *dev;
zbao2c08f6a2012-07-02 15:32:58 +0800171 dev = __f0_dev[nodeid];
172 if (!dev)
173 continue;
174 for (link = 0; !res && (link < 8); link++) {
175 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
176 }
177 }
178 result = 2;
179 if (res) {
180 result = 0;
181 if ((goal_link == (link - 1)) &&
182 (goal_nodeid == (nodeid - 1)) &&
183 (res->flags <= 1)) {
184 result = 1;
185 }
186 }
187 return result;
188}
189
Subrata Banikb1434fc2019-03-15 22:20:41 +0530190static struct resource *amdfam15_find_iopair(struct device *dev,
191 unsigned int nodeid, unsigned int link)
zbao2c08f6a2012-07-02 15:32:58 +0800192{
193 struct resource *resource;
194 u32 free_reg, reg;
195 resource = 0;
196 free_reg = 0;
197 for (reg = 0xc0; reg <= 0xd8; reg += 0x8) {
198 int result;
199 result = reg_useable(reg, dev, nodeid, link);
200 if (result == 1) {
201 /* I have been allocated this one */
202 break;
203 }
204 else if (result > 1) {
205 /* I have a free register pair */
206 free_reg = reg;
207 }
208 }
209 if (reg > 0xd8) {
210 reg = free_reg; // if no free, the free_reg still be 0
211 }
212
213 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
214
215 return resource;
216}
217
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300218static struct resource *amdfam15_find_mempair(struct device *dev, u32 nodeid, u32 link)
zbao2c08f6a2012-07-02 15:32:58 +0800219{
220 struct resource *resource;
221 u32 free_reg, reg;
222 resource = 0;
223 free_reg = 0;
224 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
225 int result;
226 result = reg_useable(reg, dev, nodeid, link);
227 if (result == 1) {
228 /* I have been allocated this one */
229 break;
230 }
231 else if (result > 1) {
232 /* I have a free register pair */
233 free_reg = reg;
234 }
235 }
236 if (reg > 0xb8) {
237 reg = free_reg;
238 }
239
240 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
241 return resource;
242}
243
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300244static void amdfam15_link_read_bases(struct device *dev, u32 nodeid, u32 link)
zbao2c08f6a2012-07-02 15:32:58 +0800245{
246 struct resource *resource;
247
248 /* Initialize the io space constraints on the current bus */
249 resource = amdfam15_find_iopair(dev, nodeid, link);
250 if (resource) {
251 u32 align;
252 align = log2(HT_IO_HOST_ALIGN);
253 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 }
260
261 /* Initialize the prefetchable memory constraints on the current bus */
262 resource = amdfam15_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;
271 }
272
273 /* Initialize the memory constraints on the current bus */
274 resource = amdfam15_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;
282 }
283
284}
285
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300286static void nb_read_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800287{
288 u32 nodeid;
289 struct bus *link;
290
291 nodeid = amdfam15_nodeid(dev);
292 for (link = dev->link_list; link; link = link->next) {
293 if (link->children) {
294 amdfam15_link_read_bases(dev, nodeid, link->link_num);
295 }
296 }
Steven Sherk1cbabb02013-02-01 09:22:35 -0700297
298 /*
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800299 * This MMCONF resource must be reserved in the PCI domain.
Steven Sherk1cbabb02013-02-01 09:22:35 -0700300 * It is not honored by the coreboot resource allocator if it is in
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800301 * the CPU_CLUSTER.
Steven Sherk1cbabb02013-02-01 09:22:35 -0700302 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200303 mmconf_resource(dev, MMIO_CONF_BASE);
zbao2c08f6a2012-07-02 15:32:58 +0800304}
305
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300306static void set_resource(struct device *dev, struct resource *resource, u32 nodeid)
zbao2c08f6a2012-07-02 15:32:58 +0800307{
308 resource_t rbase, rend;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530309 unsigned int reg, link_num;
zbao2c08f6a2012-07-02 15:32:58 +0800310 char buf[50];
311
312 /* Make certain the resource has actually been set */
313 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
314 return;
315 }
316
317 /* If I have already stored this resource don't worry about it */
318 if (resource->flags & IORESOURCE_STORED) {
319 return;
320 }
321
322 /* Only handle PCI memory and IO resources */
323 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
324 return;
325
326 /* Ensure I am actually looking at a resource of function 1 */
327 if ((resource->index & 0xffff) < 0x1000) {
328 return;
329 }
330 /* Get the base address */
331 rbase = resource->base;
332
333 /* Get the limit (rounded up) */
334 rend = resource_end(resource);
335
336 /* Get the register and link */
337 reg = resource->index & 0xfff; // 4k
338 link_num = IOINDEX_LINK(resource->index);
339
340 if (resource->flags & IORESOURCE_IO) {
341 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
342 }
343 else if (resource->flags & IORESOURCE_MEM) {
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100344 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >>24), rbase>>8, rend>>8, node_nums);// [39:8]
zbao2c08f6a2012-07-02 15:32:58 +0800345 }
346 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200347 snprintf(buf, sizeof(buf), " <node %x link %x>",
zbao2c08f6a2012-07-02 15:32:58 +0800348 nodeid, link_num);
349 report_resource_stored(dev, resource, buf);
350}
351
352/**
353 * I tried to reuse the resource allocation code in set_resource()
354 * but it is too difficult to deal with the resource allocation magic.
355 */
356
Subrata Banikb1434fc2019-03-15 22:20:41 +0530357static void create_vga_resource(struct device *dev, unsigned int nodeid)
zbao2c08f6a2012-07-02 15:32:58 +0800358{
359 struct bus *link;
360
361 /* find out which link the VGA card is connected,
362 * we only deal with the 'first' vga card */
363 for (link = dev->link_list; link; link = link->next) {
364 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800365#if CONFIG(MULTIPLE_VGA_ADAPTERS)
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300366 extern struct device *vga_pri; // the primary vga device, defined in device.c
zbao2c08f6a2012-07-02 15:32:58 +0800367 printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d bus range [%d,%d]\n", vga_pri->bus->secondary,
368 link->secondary,link->subordinate);
369 /* We need to make sure the vga_pri is under the link */
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200370 if ((vga_pri->bus->secondary >= link->secondary) &&
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300371 (vga_pri->bus->secondary <= link->subordinate))
zbao2c08f6a2012-07-02 15:32:58 +0800372#endif
373 break;
374 }
375 }
376
377 /* no VGA card installed */
378 if (link == NULL)
379 return;
380
381 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, sblink);
382 set_vga_enable_reg(nodeid, sblink);
383}
384
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300385static void nb_set_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800386{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530387 unsigned int nodeid;
zbao2c08f6a2012-07-02 15:32:58 +0800388 struct bus *bus;
389 struct resource *res;
390
391 /* Find the nodeid */
392 nodeid = amdfam15_nodeid(dev);
393
394 create_vga_resource(dev, nodeid); //TODO: do we need this?
395
396 /* Set each resource we have found */
397 for (res = dev->resource_list; res; res = res->next) {
398 set_resource(dev, res, nodeid);
399 }
400
401 for (bus = dev->link_list; bus; bus = bus->next) {
402 if (bus->children) {
403 assign_resources(bus);
404 }
405 }
406}
407
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100408static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200409{
410 void *addr, *current;
411
412 /* Skip the HEST header. */
413 current = (void *)(hest + 1);
414
415 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
416 if (addr != NULL)
Stefan Reinauer77a1d1a2015-07-21 12:48:17 -0700417 current += acpi_create_hest_error_source(hest, current, 0,
418 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200419
420 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
421 if (addr != NULL)
Stefan Reinauer77a1d1a2015-07-21 12:48:17 -0700422 current += acpi_create_hest_error_source(hest, current, 1,
423 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200424
425 return (unsigned long)current;
426}
427
Furquan Shaikh7536a392020-04-24 21:59:21 -0700428static void northbridge_fill_ssdt_generator(const struct device *device)
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200429{
430 msr_t msr;
431 char pscope[] = "\\_SB.PCI0";
432
433 acpigen_write_scope(pscope);
434 msr = rdmsr(TOP_MEM);
435 acpigen_write_name_dword("TOM1", msr.lo);
436 msr = rdmsr(TOP_MEM2);
437 /*
438 * Since XP only implements parts of ACPI 2.0, we can't use a qword
439 * here.
440 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
441 * slide 22ff.
442 * Shift value right by 20 bit to make it fit into 32bit,
443 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
444 */
445 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
446 acpigen_pop_len();
447}
448
Michał Żygowski9550e972020-03-20 13:56:46 +0100449static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
450{
451 unsigned int len = ssdt->length - sizeof(acpi_header_t);
452 unsigned int i;
453
454 for (i = sizeof(acpi_header_t); i < len; i++) {
455 /* Search for _PR_ scope and replace it with _SB_ */
456 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
457 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
458 }
459 /* Recalculate checksum */
460 ssdt->checksum = 0;
461 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
462}
463
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700464static unsigned long agesa_write_acpi_tables(const struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200465 unsigned long current,
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200466 acpi_rsdp_t *rsdp)
467{
468 acpi_srat_t *srat;
469 acpi_slit_t *slit;
470 acpi_header_t *ssdt;
471 acpi_header_t *alib;
472 acpi_header_t *ivrs;
473 acpi_hest_t *hest;
474
475 /* HEST */
476 current = ALIGN(current, 8);
477 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100478 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200479 acpi_add_table(rsdp, (void *)current);
480 current += ((acpi_header_t *)current)->length;
481
482 current = ALIGN(current, 8);
483 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
484 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
485 if (ivrs != NULL) {
486 memcpy((void *)current, ivrs, ivrs->length);
487 ivrs = (acpi_header_t *) current;
488 current += ivrs->length;
489 acpi_add_table(rsdp, ivrs);
490 } else {
491 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
492 }
493
494 /* SRAT */
495 current = ALIGN(current, 8);
496 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
497 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
498 if (srat != NULL) {
499 memcpy((void *)current, srat, srat->header.length);
500 srat = (acpi_srat_t *) current;
501 current += srat->header.length;
502 acpi_add_table(rsdp, srat);
503 } else {
504 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
505 }
506
507 /* SLIT */
508 current = ALIGN(current, 8);
509 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
510 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
511 if (slit != NULL) {
512 memcpy((void *)current, slit, slit->header.length);
513 slit = (acpi_slit_t *) current;
514 current += slit->header.length;
515 acpi_add_table(rsdp, slit);
516 } else {
517 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
518 }
519
520 /* ALIB */
521 current = ALIGN(current, 16);
522 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
523 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
524 if (alib != NULL) {
525 memcpy((void *)current, alib, alib->length);
526 alib = (acpi_header_t *) current;
527 current += alib->length;
528 acpi_add_table(rsdp, (void *)alib);
529 }
530 else {
531 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
532 }
533
534 /* this pstate ssdt may cause Blue Screen: Fixed: Keep this comment for a while. */
535 /* SSDT */
536 current = ALIGN(current, 16);
537 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
538 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
539 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100540 patch_ssdt_processor_scope(ssdt);
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200541 memcpy((void *)current, ssdt, ssdt->length);
542 ssdt = (acpi_header_t *) current;
543 current += ssdt->length;
544 }
545 else {
546 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
547 }
548 acpi_add_table(rsdp,ssdt);
549
550 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
551
552 return current;
553}
554
zbao2c08f6a2012-07-02 15:32:58 +0800555static struct device_operations northbridge_operations = {
Steven Sherkf4340582013-01-29 16:13:35 -0700556 .read_resources = nb_read_resources,
557 .set_resources = nb_set_resources,
zbao2c08f6a2012-07-02 15:32:58 +0800558 .enable_resources = pci_dev_enable_resources,
Nico Huber68680dd2020-03-31 17:34:52 +0200559 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Vladimir Serbinenko56f46d82014-10-08 22:06:27 +0200560 .write_acpi_tables = agesa_write_acpi_tables,
zbao2c08f6a2012-07-02 15:32:58 +0800561};
562
563static const struct pci_driver family15_northbridge __pci_driver = {
564 .ops = &northbridge_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100565 .vendor = PCI_VID_AMD,
566 .device = PCI_DID_AMD_15H_MODEL_101F_NB_HT,
zbao2c08f6a2012-07-02 15:32:58 +0800567};
568
569static const struct pci_driver family10_northbridge __pci_driver = {
570 .ops = &northbridge_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100571 .vendor = PCI_VID_AMD,
572 .device = PCI_DID_AMD_10H_NB_HT,
zbao2c08f6a2012-07-02 15:32:58 +0800573};
574
575struct chip_operations northbridge_amd_agesa_family15tn_ops = {
576 CHIP_NAME("AMD FAM15 Northbridge")
577 .enable_dev = 0,
578};
579
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300580static void domain_read_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800581{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530582 unsigned int reg;
zbao2c08f6a2012-07-02 15:32:58 +0800583
584 /* Find the already assigned resource pairs */
585 get_fx_devs();
586 for (reg = 0x80; reg <= 0xd8; reg+= 0x08) {
587 u32 base, limit;
588 base = f1_read_config32(reg);
589 limit = f1_read_config32(reg + 0x04);
590 /* Is this register allocated? */
591 if ((base & 3) != 0) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530592 unsigned int nodeid, reg_link;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300593 struct device *reg_dev;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200594 if (reg < 0xc0) { // mmio
zbao2c08f6a2012-07-02 15:32:58 +0800595 nodeid = (limit & 0xf) + (base&0x30);
596 } else { // io
597 nodeid = (limit & 0xf) + ((base>>4)&0x30);
598 }
599 reg_link = (limit >> 4) & 7;
600 reg_dev = __f0_dev[nodeid];
601 if (reg_dev) {
602 /* Reserve the resource */
603 struct resource *res;
604 res = new_resource(reg_dev, IOINDEX(0x1000 + reg, reg_link));
605 if (res) {
606 res->flags = 1;
607 }
608 }
609 }
610 }
611 /* FIXME: do we need to check extend conf space?
612 I don't believe that much preset value */
613
zbao2c08f6a2012-07-02 15:32:58 +0800614 pci_domain_read_resources(dev);
zbao2c08f6a2012-07-02 15:32:58 +0800615}
616
zbao2c08f6a2012-07-02 15:32:58 +0800617#if CONFIG_HW_MEM_HOLE_SIZEK != 0
618struct hw_mem_hole_info {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530619 unsigned int hole_startk;
zbao2c08f6a2012-07-02 15:32:58 +0800620 int node_id;
621};
622static struct hw_mem_hole_info get_hw_mem_hole_info(void)
623{
624 struct hw_mem_hole_info mem_hole;
625 int i;
626 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
627 mem_hole.node_id = -1;
628 for (i = 0; i < node_nums; i++) {
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200629 resource_t basek, limitk;
zbao2c08f6a2012-07-02 15:32:58 +0800630 u32 hole;
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200631 if (!get_dram_base_limit(i, &basek, &limitk))
632 continue; // no memory on this node
zbao2c08f6a2012-07-02 15:32:58 +0800633 hole = pci_read_config32(__f1_dev[i], 0xf0);
634 if (hole & 1) { // we find the hole
Elyes HAOUAS27e18012017-06-27 23:14:51 +0200635 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
zbao2c08f6a2012-07-02 15:32:58 +0800636 mem_hole.node_id = i; // record the node No with hole
637 break; // only one hole
638 }
639 }
Kyösti Mälkki2f9b3af2014-06-26 05:30:54 +0300640
641 /* We need to double check if there is special set on base reg and limit reg
642 * are not continuous instead of hole, it will find out its hole_startk.
643 */
zbao2c08f6a2012-07-02 15:32:58 +0800644 if (mem_hole.node_id == -1) {
645 resource_t limitk_pri = 0;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200646 for (i = 0; i < node_nums; i++) {
zbao2c08f6a2012-07-02 15:32:58 +0800647 resource_t base_k, limit_k;
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200648 if (!get_dram_base_limit(i, &base_k, &limit_k))
649 continue; // no memory on this node
zbao2c08f6a2012-07-02 15:32:58 +0800650 if (base_k > 4 *1024 * 1024) break; // don't need to go to check
651 if (limitk_pri != base_k) { // we find the hole
Martin Roth468d02c2019-10-23 21:44:42 -0600652 mem_hole.hole_startk = (unsigned int)limitk_pri; // must beblow 4G
zbao2c08f6a2012-07-02 15:32:58 +0800653 mem_hole.node_id = i;
654 break; //only one hole
655 }
zbao2c08f6a2012-07-02 15:32:58 +0800656 limitk_pri = limit_k;
657 }
658 }
659 return mem_hole;
660}
661#endif
662
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300663static void domain_set_resources(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800664{
zbao2c08f6a2012-07-02 15:32:58 +0800665 unsigned long mmio_basek;
666 u32 pci_tolm;
667 int i, idx;
668 struct bus *link;
669#if CONFIG_HW_MEM_HOLE_SIZEK != 0
670 struct hw_mem_hole_info mem_hole;
671 u32 reset_memhole = 1;
672#endif
673
zbao2c08f6a2012-07-02 15:32:58 +0800674 pci_tolm = 0xffffffffUL;
675 for (link = dev->link_list; link; link = link->next) {
676 pci_tolm = find_pci_tolm(link);
677 }
678
679 // FIXME handle interleaved nodes. If you fix this here, please fix
680 // amdk8, too.
681 mmio_basek = pci_tolm >> 10;
682 /* Round mmio_basek to something the processor can support */
683 mmio_basek &= ~((1 << 6) -1);
684
685 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
686 // MMIO hole. If you fix this here, please fix amdk8, too.
687 /* Round the mmio hole to 64M */
688 mmio_basek &= ~((64*1024) - 1);
689
690#if CONFIG_HW_MEM_HOLE_SIZEK != 0
691 /* if the hw mem hole is already set in raminit stage, here we will compare
692 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
693 * use hole_basek as mmio_basek and we don't need to reset hole.
694 * otherwise We reset the hole to the mmio_basek
695 */
696
697 mem_hole = get_hw_mem_hole_info();
698
699 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
700 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
701 mmio_basek = mem_hole.hole_startk;
702 reset_memhole = 0;
703 }
704#endif
705
706 idx = 0x10;
707 for (i = 0; i < node_nums; i++) {
zbao2c08f6a2012-07-02 15:32:58 +0800708 resource_t basek, limitk, sizek; // 4 1T
709
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200710 if (!get_dram_base_limit(i, &basek, &limitk))
711 continue; // no memory on this node
zbao2c08f6a2012-07-02 15:32:58 +0800712
713 sizek = limitk - basek;
714
715 /* see if we need a hole from 0xa0000 to 0xbffff */
716 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
717 ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
718 idx += 0x10;
719 basek = (8*64)+(16*16);
720 sizek = limitk - ((8*64)+(16*16));
721
722 }
723
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300724 /* split the region to accommodate pci memory space */
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200725 if ((basek < 4*1024*1024) && (limitk > mmio_basek)) {
zbao2c08f6a2012-07-02 15:32:58 +0800726 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530727 unsigned int pre_sizek;
zbao2c08f6a2012-07-02 15:32:58 +0800728 pre_sizek = mmio_basek - basek;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200729 if (pre_sizek > 0) {
zbao2c08f6a2012-07-02 15:32:58 +0800730 ram_resource(dev, (idx | i), basek, pre_sizek);
731 idx += 0x10;
732 sizek -= pre_sizek;
zbao2c08f6a2012-07-02 15:32:58 +0800733 }
734 basek = mmio_basek;
735 }
736 if ((basek + sizek) <= 4*1024*1024) {
737 sizek = 0;
738 }
739 else {
Arthur Heymansc4350382021-10-28 12:35:39 +0200740 uint64_t topmem2 = amd_topmem2();
zbao2c08f6a2012-07-02 15:32:58 +0800741 basek = 4*1024*1024;
Siyuan Wang29840e22013-06-04 19:56:22 +0800742 sizek = topmem2/1024 - basek;
zbao2c08f6a2012-07-02 15:32:58 +0800743 }
744 }
745
zbao2c08f6a2012-07-02 15:32:58 +0800746 ram_resource(dev, (idx | i), basek, sizek);
747 idx += 0x10;
zbao2c08f6a2012-07-02 15:32:58 +0800748 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
749 i, mmio_basek, basek, limitk);
zbao2c08f6a2012-07-02 15:32:58 +0800750 }
751
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300752 add_uma_resource_below_tolm(dev, 7);
zbao2c08f6a2012-07-02 15:32:58 +0800753
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200754 for (link = dev->link_list; link; link = link->next) {
zbao2c08f6a2012-07-02 15:32:58 +0800755 if (link->children) {
756 assign_resources(link);
757 }
758 }
759}
760
761static struct device_operations pci_domain_ops = {
762 .read_resources = domain_read_resources,
763 .set_resources = domain_set_resources,
zbao2c08f6a2012-07-02 15:32:58 +0800764 .scan_bus = pci_domain_scan_bus,
zbao2c08f6a2012-07-02 15:32:58 +0800765};
766
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300767static void sysconf_init(struct device *dev) // first node
zbao2c08f6a2012-07-02 15:32:58 +0800768{
769 sblink = (pci_read_config32(dev, 0x64)>>8) & 7; // don't forget sublink1
770 node_nums = ((pci_read_config32(dev, 0x60)>>4) & 7) + 1; //NodeCnt[2:0]
771}
772
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300773static void cpu_bus_scan(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800774{
775 struct bus *cpu_bus;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300776 struct device *dev_mc;
zbao2c08f6a2012-07-02 15:32:58 +0800777 int i,j;
778 int coreid_bits;
779 int core_max = 0;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530780 unsigned int ApicIdCoreIdSize;
781 unsigned int core_nums;
zbao2c08f6a2012-07-02 15:32:58 +0800782 int siblings = 0;
783 unsigned int family;
784
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200785 dev_mc = pcidev_on_root(DEV_CDB, 0);
zbao2c08f6a2012-07-02 15:32:58 +0800786 if (!dev_mc) {
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200787 printk(BIOS_ERR, "0:%02x.0 not found", DEV_CDB);
zbao2c08f6a2012-07-02 15:32:58 +0800788 die("");
789 }
790 sysconf_init(dev_mc);
zbao2c08f6a2012-07-02 15:32:58 +0800791
792 /* Get Max Number of cores(MNC) */
Kyösti Mälkkid41feed2017-09-24 16:23:57 +0300793 coreid_bits = (cpuid_ecx(0x80000008) & 0x0000F000) >> 12;
zbao2c08f6a2012-07-02 15:32:58 +0800794 core_max = 1 << (coreid_bits & 0x000F); //mnc
795
796 ApicIdCoreIdSize = ((cpuid_ecx(0x80000008)>>12) & 0xF);
797 if (ApicIdCoreIdSize) {
798 core_nums = (1 << ApicIdCoreIdSize) - 1;
799 } else {
800 core_nums = 3; //quad core
801 }
802
803 /* Find which cpus are present */
804 cpu_bus = dev->link_list;
805 for (i = 0; i < node_nums; i++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300806 struct device *cdb_dev;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530807 unsigned int devn;
zbao2c08f6a2012-07-02 15:32:58 +0800808 struct bus *pbus;
809
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200810 devn = DEV_CDB + i;
zbao2c08f6a2012-07-02 15:32:58 +0800811 pbus = dev_mc->bus;
zbao2c08f6a2012-07-02 15:32:58 +0800812
813 /* Find the cpu's pci device */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300814 cdb_dev = pcidev_on_root(devn, 0);
zbao2c08f6a2012-07-02 15:32:58 +0800815 if (!cdb_dev) {
816 /* If I am probing things in a weird order
817 * ensure all of the cpu's pci devices are found.
818 */
819 int fn;
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200820 for (fn = 0; fn <= 5; fn++) { //FBDIMM?
zbao2c08f6a2012-07-02 15:32:58 +0800821 cdb_dev = pci_probe_dev(NULL, pbus,
822 PCI_DEVFN(devn, fn));
823 }
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300824 cdb_dev = pcidev_on_root(devn, 0);
zbao2c08f6a2012-07-02 15:32:58 +0800825 } else {
826 /* Ok, We need to set the links for that device.
827 * otherwise the device under it will not be scanned
828 */
Kyösti Mälkki2a2d6132015-02-04 13:25:37 +0200829 add_more_links(cdb_dev, 4);
zbao2c08f6a2012-07-02 15:32:58 +0800830 }
831
832 family = cpuid_eax(1);
833 family = (family >> 20) & 0xFF;
834 if (family == 1) { //f10
835 u32 dword;
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300836 cdb_dev = pcidev_on_root(devn, 3);
zbao2c08f6a2012-07-02 15:32:58 +0800837 dword = pci_read_config32(cdb_dev, 0xe8);
838 siblings = ((dword & BIT15) >> 13) | ((dword & (BIT13 | BIT12)) >> 12);
839 } else if (family == 6) {//f15
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300840 cdb_dev = pcidev_on_root(devn, 5);
zbao2c08f6a2012-07-02 15:32:58 +0800841 if (cdb_dev && cdb_dev->enabled) {
842 siblings = pci_read_config32(cdb_dev, 0x84);
843 siblings &= 0xFF;
844 }
845 } else {
846 siblings = 0; //default one core
847 }
Kyösti Mälkkicd9fc1a2012-07-06 19:02:56 +0300848 int enable_node = cdb_dev && cdb_dev->enabled;
zbao2c08f6a2012-07-02 15:32:58 +0800849 printk(BIOS_SPEW, "%s family%xh, core_max=0x%x, core_nums=0x%x, siblings=0x%x\n",
850 dev_path(cdb_dev), 0x0f + family, core_max, core_nums, siblings);
851
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200852 for (j = 0; j <= siblings; j++) {
zbao2c08f6a2012-07-02 15:32:58 +0800853 extern CONST OPTIONS_CONFIG_TOPOLOGY ROMDATA TopologyConfiguration;
854 u32 modules = TopologyConfiguration.PlatformNumberOfModules;
855 u32 lapicid_start = 0;
856
zbao2c08f6a2012-07-02 15:32:58 +0800857 /*
858 * APIC ID calucation is tightly coupled with AGESA v5 code.
859 * This calculation MUST match the assignment calculation done
860 * in LocalApicInitializationAtEarly() function.
861 * And reference GetLocalApicIdForCore()
862 *
Elyes HAOUASa5b0bc42020-02-20 20:04:29 +0100863 * Apply APIC enumeration rules
zbao2c08f6a2012-07-02 15:32:58 +0800864 * For systems with >= 16 APICs, put the IO-APICs at 0..n and
865 * put the local-APICs at m..z
866 *
867 * This is needed because many IO-APIC devices only have 4 bits
868 * for their APIC id and therefore must reside at 0..15
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200869 */
Kyösti Mälkki50036322016-05-18 13:35:21 +0300870
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200871 u8 plat_num_io_apics = 3; /* FIXME */
Kyösti Mälkki50036322016-05-18 13:35:21 +0300872
873 if ((node_nums * core_max) + plat_num_io_apics >= 0x10) {
874 lapicid_start = (plat_num_io_apics - 1) / core_max;
zbao2c08f6a2012-07-02 15:32:58 +0800875 lapicid_start = (lapicid_start + 1) * core_max;
876 printk(BIOS_SPEW, "lpaicid_start=0x%x ", lapicid_start);
877 }
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300878 u32 apic_id = (lapicid_start * (i/modules + 1)) + ((i % modules) ? (j + (siblings + 1)) : j);
zbao2c08f6a2012-07-02 15:32:58 +0800879 printk(BIOS_SPEW, "node 0x%x core 0x%x apicid=0x%x\n",
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300880 i, j, apic_id);
zbao2c08f6a2012-07-02 15:32:58 +0800881
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300882 struct device *cpu = add_cpu_device(cpu_bus, apic_id, enable_node);
Kyösti Mälkkic33f1e92012-08-07 17:12:11 +0300883 if (cpu)
884 amd_cpu_topology(cpu, i, j);
zbao2c08f6a2012-07-02 15:32:58 +0800885 } //j
886 }
zbao2c08f6a2012-07-02 15:32:58 +0800887}
888
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300889static void cpu_bus_init(struct device *dev)
zbao2c08f6a2012-07-02 15:32:58 +0800890{
891 initialize_cpus(dev->link_list);
892}
893
zbao2c08f6a2012-07-02 15:32:58 +0800894static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +0200895 .read_resources = noop_read_resources,
896 .set_resources = noop_set_resources,
zbao2c08f6a2012-07-02 15:32:58 +0800897 .init = cpu_bus_init,
898 .scan_bus = cpu_bus_scan,
899};
900
901static void root_complex_enable_dev(struct device *dev)
902{
zbao2c08f6a2012-07-02 15:32:58 +0800903 /* Set the operations if it is a special bus type */
Stefan Reinauer4aff4452013-02-12 14:17:15 -0800904 if (dev->path.type == DEVICE_PATH_DOMAIN) {
zbao2c08f6a2012-07-02 15:32:58 +0800905 dev->ops = &pci_domain_ops;
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800906 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
zbao2c08f6a2012-07-02 15:32:58 +0800907 dev->ops = &cpu_bus_ops;
908 }
909}
910
911struct chip_operations northbridge_amd_agesa_family15tn_root_complex_ops = {
Kyösti Mälkki2900d4b2017-07-25 14:55:29 +0300912 CHIP_NAME("AMD Family 15tn Root Complex")
zbao2c08f6a2012-07-02 15:32:58 +0800913 .enable_dev = root_complex_enable_dev,
914};
Dave Frodincbf3d402012-12-05 08:20:12 -0700915
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100916/*********************************************************************
917 * Change the vendor / device IDs to match the generic VBIOS header. *
918 *********************************************************************/
Dave Frodincbf3d402012-12-05 08:20:12 -0700919u32 map_oprom_vendev(u32 vendev)
920{
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100921 u32 new_vendev = vendev;
Dave Frodincbf3d402012-12-05 08:20:12 -0700922
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +0100923 switch (vendev) {
Bruce Griffith42e11f52013-07-08 18:19:08 -0600924 case 0x10029900: /* AMD Radeon HD 7660G (Trinity) */
925 case 0x10029901: /* AMD Radeon HD 7660D (Trinity) */
926 case 0x10029903: /* AMD Radeon HD 7640G (Trinity) */
927 case 0x10029904: /* AMD Radeon HD 7560D (Trinity) */
928 case 0x10029907: /* AMD Radeon HD 7620G (Trinity) */
929 case 0x10029908: /* AMD Radeon HD 7600G (Trinity) */
930 case 0x1002990A: /* AMD Radeon HD 7500G (Trinity) */
931 case 0x1002990B: /* AMD Radeon HD 8650G (Richland) */
932 case 0x1002990C: /* AMD Radeon HD 8670D (Richland) */
933 case 0x1002990D: /* AMD Radeon HD 8550G (Richland) */
934 case 0x1002990E: /* AMD Radeon HD 8570D (Richland) */
935 case 0x1002990F: /* AMD Radeon HD 8610G (Richland) */
936 case 0x10029910: /* AMD Radeon HD 7660G (Trinity) */
937 case 0x10029913: /* AMD Radeon HD 7640G (Trinity) */
938 case 0x10029917: /* AMD Radeon HD 7620G (Trinity) */
939 case 0x10029918: /* AMD Radeon HD 7600G (Trinity) */
940 case 0x10029919: /* AMD Radeon HD 7500G (Trinity) */
941 case 0x10029990: /* AMD Radeon HD 7520G (Trinity) */
942 case 0x10029991: /* AMD Radeon HD 7540D (Trinity) */
943 case 0x10029992: /* AMD Radeon HD 7420G (Trinity) */
944 case 0x10029993: /* AMD Radeon HD 7480D (Trinity) */
945 case 0x10029994: /* AMD Radeon HD 7400G (Trinity) */
946 case 0x10029995: /* AMD Radeon HD 8450G (Richland) */
947 case 0x10029996: /* AMD Radeon HD 8470D (Richland) */
948 case 0x10029997: /* AMD Radeon HD 8350G (Richland) */
949 case 0x10029998: /* AMD Radeon HD 8370D (Richland) */
950 case 0x10029999: /* AMD Radeon HD 8510G (Richland) */
951 case 0x1002999A: /* AMD Radeon HD 8410G (Richland) */
952 case 0x1002999B: /* AMD Radeon HD 8310G (Richland) */
953 case 0x1002999C: /* AMD Radeon HD 8650D (Richland) */
954 case 0x1002999D: /* AMD Radeon HD 8550D (Richland) */
955 case 0x100299A0: /* AMD Radeon HD 7520G (Trinity) */
956 case 0x100299A2: /* AMD Radeon HD 7420G (Trinity) */
957 case 0x100299A4: /* AMD Radeon HD 7400G (Trinity) */
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100958 new_vendev = 0x10029901;
Dave Frodincbf3d402012-12-05 08:20:12 -0700959 break;
960 }
961
962 return new_vendev;
963}