blob: 38f3dad86421a1089aacdf1766b0eff3a198015d [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Siyuan Wang3e32cc02013-07-09 17:16:20 +08003
4#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Kyösti Mälkki8ae16a42014-06-19 20:44:34 +03006#include <arch/acpi.h>
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +02007#include <arch/acpigen.h>
Siyuan Wang3e32cc02013-07-09 17:16:20 +08008#include <stdint.h>
9#include <device/device.h>
10#include <device/pci.h>
11#include <device/pci_ids.h>
12#include <device/hypertransport.h>
Siyuan Wang3e32cc02013-07-09 17:16:20 +080013#include <string.h>
14#include <lib.h>
15#include <cpu/cpu.h>
Siyuan Wang3e32cc02013-07-09 17:16:20 +080016#include <cpu/x86/lapic.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020017#include <cpu/amd/msr.h>
Siyuan Wang3e32cc02013-07-09 17:16:20 +080018#include <cpu/amd/mtrr.h>
Siyuan Wang3e32cc02013-07-09 17:16:20 +080019#include <Porting.h>
20#include <AGESA.h>
21#include <Options.h>
22#include <Topology.h>
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020023#include <northbridge/amd/agesa/nb_common.h>
Kyösti Mälkki28c4d2f2016-11-25 11:21:02 +020024#include <northbridge/amd/agesa/state_machine.h>
Kyösti Mälkkid610c582017-03-05 06:28:18 +020025#include <northbridge/amd/agesa/agesa_helper.h>
Siyuan Wang3e32cc02013-07-09 17:16:20 +080026
Kyösti Mälkki113f6702018-05-20 20:12:32 +030027#define MAX_NODE_NUMS MAX_NODES
Siyuan Wang3e32cc02013-07-09 17:16:20 +080028
Siyuan Wang3e32cc02013-07-09 17:16:20 +080029typedef struct dram_base_mask {
30 u32 base; //[47:27] at [28:8]
31 u32 mask; //[47:27] at [28:8] and enable at bit 0
32} dram_base_mask_t;
33
Subrata Banikb1434fc2019-03-15 22:20:41 +053034static unsigned int node_nums;
35static unsigned int sblink;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030036static struct device *__f0_dev[MAX_NODE_NUMS];
37static struct device *__f1_dev[MAX_NODE_NUMS];
38static struct device *__f2_dev[MAX_NODE_NUMS];
39static struct device *__f4_dev[MAX_NODE_NUMS];
Subrata Banikb1434fc2019-03-15 22:20:41 +053040static unsigned int fx_devs = 0;
Siyuan Wang3e32cc02013-07-09 17:16:20 +080041
42static dram_base_mask_t get_dram_base_mask(u32 nodeid)
43{
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030044 struct device *dev;
Siyuan Wang3e32cc02013-07-09 17:16:20 +080045 dram_base_mask_t d;
46 dev = __f1_dev[0];
47 u32 temp;
48 temp = pci_read_config32(dev, 0x44 + (nodeid << 3)); //[39:24] at [31:16]
49 d.mask = ((temp & 0xfff80000)>>(8+3)); // mask out DramMask [26:24] too
50 temp = pci_read_config32(dev, 0x144 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
Elyes HAOUAS27e18012017-06-27 23:14:51 +020051 d.mask |= temp << 21;
Siyuan Wang3e32cc02013-07-09 17:16:20 +080052 temp = pci_read_config32(dev, 0x40 + (nodeid << 3)); //[39:24] at [31:16]
53 d.mask |= (temp & 1); // enable bit
54 d.base = ((temp & 0xfff80000)>>(8+3)); // mask out DramBase [26:24) too
55 temp = pci_read_config32(dev, 0x140 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
Elyes HAOUAS27e18012017-06-27 23:14:51 +020056 d.base |= temp << 21;
Siyuan Wang3e32cc02013-07-09 17:16:20 +080057 return d;
58}
59
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030060static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
Siyuan Wang3e32cc02013-07-09 17:16:20 +080061 u32 io_min, u32 io_max)
62{
63 u32 i;
64 u32 tempreg;
65 /* io range allocation */
Elyes HAOUAS27e18012017-06-27 23:14:51 +020066 tempreg = (nodeid&0xf) | ((nodeid & 0x30)<<(8-4)) | (linkn << 4) | ((io_max&0xf0)<<(12-4)); //limit
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020067 for (i = 0; i < node_nums; i++)
Siyuan Wang3e32cc02013-07-09 17:16:20 +080068 pci_write_config32(__f1_dev[i], reg+4, tempreg);
Elyes HAOUAS27e18012017-06-27 23:14:51 +020069 tempreg = 3 /*| (3 << 4)*/ | ((io_min&0xf0)<<(12-4)); //base :ISA and VGA ?
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020070 for (i = 0; i < node_nums; i++)
Siyuan Wang3e32cc02013-07-09 17:16:20 +080071 pci_write_config32(__f1_dev[i], reg, tempreg);
72}
73
74static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index, u32 mmio_min, u32 mmio_max, u32 nodes)
75{
76 u32 i;
77 u32 tempreg;
78 /* io range allocation */
Elyes HAOUAS27e18012017-06-27 23:14:51 +020079 tempreg = (nodeid&0xf) | (linkn << 4) | (mmio_max&0xffffff00); //limit
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020080 for (i = 0; i < nodes; i++)
Siyuan Wang3e32cc02013-07-09 17:16:20 +080081 pci_write_config32(__f1_dev[i], reg+4, tempreg);
82 tempreg = 3 | (nodeid & 0x30) | (mmio_min&0xffffff00);
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +020083 for (i = 0; i < node_nums; i++)
Siyuan Wang3e32cc02013-07-09 17:16:20 +080084 pci_write_config32(__f1_dev[i], reg, tempreg);
85}
86
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +030087static struct device *get_node_pci(u32 nodeid, u32 fn)
Siyuan Wang3e32cc02013-07-09 17:16:20 +080088{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +020089 return pcidev_on_root(DEV_CDB + nodeid, fn);
Siyuan Wang3e32cc02013-07-09 17:16:20 +080090}
91
92static void get_fx_devs(void)
93{
94 int i;
95 for (i = 0; i < MAX_NODE_NUMS; i++) {
96 __f0_dev[i] = get_node_pci(i, 0);
97 __f1_dev[i] = get_node_pci(i, 1);
98 __f2_dev[i] = get_node_pci(i, 2);
99 __f4_dev[i] = get_node_pci(i, 4);
100 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
101 fx_devs = i+1;
102 }
103 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
104 die("Cannot find 0:0x18.[0|1]\n");
105 }
106 printk(BIOS_DEBUG, "fx_devs=0x%x\n", fx_devs);
107}
108
Subrata Banikb1434fc2019-03-15 22:20:41 +0530109static u32 f1_read_config32(unsigned int reg)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800110{
111 if (fx_devs == 0)
112 get_fx_devs();
113 return pci_read_config32(__f1_dev[0], reg);
114}
115
Subrata Banikb1434fc2019-03-15 22:20:41 +0530116static void f1_write_config32(unsigned int reg, u32 value)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800117{
118 int i;
119 if (fx_devs == 0)
120 get_fx_devs();
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200121 for (i = 0; i < fx_devs; i++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300122 struct device *dev;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800123 dev = __f1_dev[i];
124 if (dev && dev->enabled) {
125 pci_write_config32(dev, reg, value);
126 }
127 }
128}
129
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300130static u32 amdfam16_nodeid(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800131{
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200132 return (dev->path.pci.devfn >> 3) - DEV_CDB;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800133}
134
135static void set_vga_enable_reg(u32 nodeid, u32 linkn)
136{
137 u32 val;
138
Elyes HAOUAS27e18012017-06-27 23:14:51 +0200139 val = 1 | (nodeid << 4) | (linkn << 12);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800140 /* it will routing
141 * (1)mmio 0xa0000:0xbffff
142 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
143 */
144 f1_write_config32(0xf4, val);
145
146}
147
148/**
149 * @return
Elyes HAOUAS99b075a2019-12-30 14:29:31 +0100150 * @retval 2 resource does not exist, usable
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800151 * @retval 0 resource exists, not usable
152 * @retval 1 resource exist, resource has been allocated before
153 */
Subrata Banikb1434fc2019-03-15 22:20:41 +0530154static int reg_useable(unsigned int reg, struct device *goal_dev,
155 unsigned int goal_nodeid, unsigned int goal_link)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800156{
157 struct resource *res;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530158 unsigned int nodeid, link = 0;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800159 int result;
160 res = 0;
161 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300162 struct device *dev;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800163 dev = __f0_dev[nodeid];
164 if (!dev)
165 continue;
166 for (link = 0; !res && (link < 8); link++) {
167 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
168 }
169 }
170 result = 2;
171 if (res) {
172 result = 0;
173 if ((goal_link == (link - 1)) &&
174 (goal_nodeid == (nodeid - 1)) &&
175 (res->flags <= 1)) {
176 result = 1;
177 }
178 }
179 return result;
180}
181
Subrata Banikb1434fc2019-03-15 22:20:41 +0530182static struct resource *amdfam16_find_iopair(struct device *dev,
183 unsigned int nodeid, unsigned int link)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800184{
185 struct resource *resource;
186 u32 free_reg, reg;
187 resource = 0;
188 free_reg = 0;
189 for (reg = 0xc0; reg <= 0xd8; reg += 0x8) {
190 int result;
191 result = reg_useable(reg, dev, nodeid, link);
192 if (result == 1) {
193 /* I have been allocated this one */
194 break;
195 }
196 else if (result > 1) {
197 /* I have a free register pair */
198 free_reg = reg;
199 }
200 }
201 if (reg > 0xd8) {
202 reg = free_reg; // if no free, the free_reg still be 0
203 }
204
205 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
206
207 return resource;
208}
209
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300210static struct resource *amdfam16_find_mempair(struct device *dev, u32 nodeid, u32 link)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800211{
212 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 }
223 else if (result > 1) {
224 /* I have a free register pair */
225 free_reg = reg;
226 }
227 }
228 if (reg > 0xb8) {
229 reg = free_reg;
230 }
231
232 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
233 return resource;
234}
235
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300236static void amdfam16_link_read_bases(struct device *dev, u32 nodeid, u32 link)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800237{
238 struct resource *resource;
239
240 /* Initialize the io space constraints on the current bus */
241 resource = amdfam16_find_iopair(dev, nodeid, link);
242 if (resource) {
243 u32 align;
244 align = log2(HT_IO_HOST_ALIGN);
245 resource->base = 0;
246 resource->size = 0;
247 resource->align = align;
248 resource->gran = align;
249 resource->limit = 0xffffUL;
250 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
251 }
252
253 /* Initialize the prefetchable memory constraints on the current bus */
254 resource = amdfam16_find_mempair(dev, nodeid, link);
255 if (resource) {
256 resource->base = 0;
257 resource->size = 0;
258 resource->align = log2(HT_MEM_HOST_ALIGN);
259 resource->gran = log2(HT_MEM_HOST_ALIGN);
260 resource->limit = 0xffffffffffULL;
261 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
262 resource->flags |= IORESOURCE_BRIDGE;
263 }
264
265 /* Initialize the memory constraints on the current bus */
266 resource = amdfam16_find_mempair(dev, nodeid, link);
267 if (resource) {
268 resource->base = 0;
269 resource->size = 0;
270 resource->align = log2(HT_MEM_HOST_ALIGN);
271 resource->gran = log2(HT_MEM_HOST_ALIGN);
272 resource->limit = 0xffffffffffULL;
273 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
274 }
275
276}
277
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300278static void read_resources(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800279{
280 u32 nodeid;
281 struct bus *link;
282
283 nodeid = amdfam16_nodeid(dev);
284 for (link = dev->link_list; link; link = link->next) {
285 if (link->children) {
286 amdfam16_link_read_bases(dev, nodeid, link->link_num);
287 }
288 }
Edward O'Callaghan66c65322014-11-21 01:43:38 +1100289
290 /*
291 * This MMCONF resource must be reserved in the PCI_DOMAIN.
292 * It is not honored by the coreboot resource allocator if it is in
293 * the APIC_CLUSTER.
294 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200295 mmconf_resource(dev, MMIO_CONF_BASE);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800296}
297
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300298static void set_resource(struct device *dev, struct resource *resource, u32 nodeid)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800299{
300 resource_t rbase, rend;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530301 unsigned int reg, link_num;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800302 char buf[50];
303
304 /* Make certain the resource has actually been set */
305 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
306 return;
307 }
308
309 /* If I have already stored this resource don't worry about it */
310 if (resource->flags & IORESOURCE_STORED) {
311 return;
312 }
313
314 /* Only handle PCI memory and IO resources */
315 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
316 return;
317
318 /* Ensure I am actually looking at a resource of function 1 */
319 if ((resource->index & 0xffff) < 0x1000) {
320 return;
321 }
322 /* Get the base address */
323 rbase = resource->base;
324
325 /* Get the limit (rounded up) */
326 rend = resource_end(resource);
327
328 /* Get the register and link */
329 reg = resource->index & 0xfff; // 4k
330 link_num = IOINDEX_LINK(resource->index);
331
332 if (resource->flags & IORESOURCE_IO) {
333 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
334 }
335 else if (resource->flags & IORESOURCE_MEM) {
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100336 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >>24), rbase>>8, rend>>8, node_nums);// [39:8]
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800337 }
338 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200339 snprintf(buf, sizeof(buf), " <node %x link %x>",
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800340 nodeid, link_num);
341 report_resource_stored(dev, resource, buf);
342}
343
344/**
345 * I tried to reuse the resource allocation code in set_resource()
346 * but it is too difficult to deal with the resource allocation magic.
347 */
348
Subrata Banikb1434fc2019-03-15 22:20:41 +0530349static void create_vga_resource(struct device *dev, unsigned int nodeid)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800350{
351 struct bus *link;
352
353 /* find out which link the VGA card is connected,
354 * we only deal with the 'first' vga card */
355 for (link = dev->link_list; link; link = link->next) {
356 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800357#if CONFIG(MULTIPLE_VGA_ADAPTERS)
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300358 extern struct device *vga_pri; // the primary vga device, defined in device.c
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800359 printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d bus range [%d,%d]\n", vga_pri->bus->secondary,
360 link->secondary,link->subordinate);
361 /* We need to make sure the vga_pri is under the link */
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200362 if ((vga_pri->bus->secondary >= link->secondary) &&
363 (vga_pri->bus->secondary <= link->subordinate))
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800364#endif
365 break;
366 }
367 }
368
369 /* no VGA card installed */
370 if (link == NULL)
371 return;
372
373 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, sblink);
374 set_vga_enable_reg(nodeid, sblink);
375}
376
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300377static void set_resources(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800378{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530379 unsigned int nodeid;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800380 struct bus *bus;
381 struct resource *res;
382
383 /* Find the nodeid */
384 nodeid = amdfam16_nodeid(dev);
385
386 create_vga_resource(dev, nodeid); //TODO: do we need this?
387
388 /* Set each resource we have found */
389 for (res = dev->resource_list; res; res = res->next) {
390 set_resource(dev, res, nodeid);
391 }
392
393 for (bus = dev->link_list; bus; bus = bus->next) {
394 if (bus->children) {
395 assign_resources(bus);
396 }
397 }
398}
399
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100400static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200401{
402 void *addr, *current;
403
404 /* Skip the HEST header. */
405 current = (void *)(hest + 1);
406
407 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
408 if (addr != NULL)
Stefan Reinauer77a1d1a2015-07-21 12:48:17 -0700409 current += acpi_create_hest_error_source(hest, current, 0,
410 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200411
412 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
413 if (addr != NULL)
Stefan Reinauer77a1d1a2015-07-21 12:48:17 -0700414 current += acpi_create_hest_error_source(hest, current, 1,
415 addr + 2, *(UINT16 *)addr - 2);
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200416
417 return (unsigned long)current;
418}
419
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300420static void northbridge_fill_ssdt_generator(struct device *device)
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200421{
422 msr_t msr;
423 char pscope[] = "\\_SB.PCI0";
424
425 acpigen_write_scope(pscope);
426 msr = rdmsr(TOP_MEM);
427 acpigen_write_name_dword("TOM1", msr.lo);
428 msr = rdmsr(TOP_MEM2);
429 /*
430 * Since XP only implements parts of ACPI 2.0, we can't use a qword
431 * here.
432 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
433 * slide 22ff.
434 * Shift value right by 20 bit to make it fit into 32bit,
435 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
436 */
437 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
438 acpigen_pop_len();
439}
440
Michał Żygowski9550e972020-03-20 13:56:46 +0100441static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
442{
443 unsigned int len = ssdt->length - sizeof(acpi_header_t);
444 unsigned int i;
445
446 for (i = sizeof(acpi_header_t); i < len; i++) {
447 /* Search for _PR_ scope and replace it with _SB_ */
448 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
449 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
450 }
451 /* Recalculate checksum */
452 ssdt->checksum = 0;
453 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
454}
455
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300456static unsigned long agesa_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200457 unsigned long current,
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200458 acpi_rsdp_t *rsdp)
459{
460 acpi_srat_t *srat;
461 acpi_slit_t *slit;
462 acpi_header_t *ssdt;
463 acpi_header_t *alib;
464 acpi_header_t *ivrs;
465 acpi_hest_t *hest;
466
467 /* HEST */
468 current = ALIGN(current, 8);
469 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100470 acpi_write_hest((void *)current, acpi_fill_hest);
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200471 acpi_add_table(rsdp, (void *)current);
472 current += ((acpi_header_t *)current)->length;
473
474 current = ALIGN(current, 8);
475 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
476 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
477 if (ivrs != NULL) {
478 memcpy((void *)current, ivrs, ivrs->length);
479 ivrs = (acpi_header_t *) current;
480 current += ivrs->length;
481 acpi_add_table(rsdp, ivrs);
482 } else {
483 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
484 }
485
486 /* SRAT */
487 current = ALIGN(current, 8);
488 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
489 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
490 if (srat != NULL) {
491 memcpy((void *)current, srat, srat->header.length);
492 srat = (acpi_srat_t *) current;
493 current += srat->header.length;
494 acpi_add_table(rsdp, srat);
495 } else {
496 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
497 }
498
499 /* SLIT */
500 current = ALIGN(current, 8);
501 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
502 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
503 if (slit != NULL) {
504 memcpy((void *)current, slit, slit->header.length);
505 slit = (acpi_slit_t *) current;
506 current += slit->header.length;
507 acpi_add_table(rsdp, slit);
508 } else {
509 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
510 }
511
512 /* ALIB */
513 current = ALIGN(current, 16);
514 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
515 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
516 if (alib != NULL) {
517 memcpy((void *)current, alib, alib->length);
518 alib = (acpi_header_t *) current;
519 current += alib->length;
520 acpi_add_table(rsdp, (void *)alib);
521 }
522 else {
523 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
524 }
525
526 /* this pstate ssdt may cause Blue Screen: Fixed: Keep this comment for a while. */
527 /* SSDT */
528 current = ALIGN(current, 16);
529 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
530 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
531 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100532 patch_ssdt_processor_scope(ssdt);
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200533 memcpy((void *)current, ssdt, ssdt->length);
534 ssdt = (acpi_header_t *) current;
535 current += ssdt->length;
536 }
537 else {
538 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
539 }
540 acpi_add_table(rsdp,ssdt);
541
542 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
543
544 return current;
545}
546
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800547static struct device_operations northbridge_operations = {
548 .read_resources = read_resources,
549 .set_resources = set_resources,
550 .enable_resources = pci_dev_enable_resources,
Edward O'Callaghand994ef12014-11-21 02:22:33 +1100551 .init = DEVICE_NOOP,
Nico Huber68680dd2020-03-31 17:34:52 +0200552 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Vladimir Serbinenkodb09b0622014-10-08 22:15:17 +0200553 .write_acpi_tables = agesa_write_acpi_tables,
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800554};
555
556static const struct pci_driver family16_northbridge __pci_driver = {
557 .ops = &northbridge_operations,
558 .vendor = PCI_VENDOR_ID_AMD,
559 .device = PCI_DEVICE_ID_AMD_16H_MODEL_000F_NB_HT,
560};
561
562static const struct pci_driver family10_northbridge __pci_driver = {
563 .ops = &northbridge_operations,
564 .vendor = PCI_VENDOR_ID_AMD,
565 .device = PCI_DEVICE_ID_AMD_10H_NB_HT,
566};
567
Kyösti Mälkki4ee82c62014-11-25 16:03:12 +0200568static void fam16_finalize(void *chip_info)
569{
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300570 struct device *dev;
Kyösti Mälkki4ee82c62014-11-25 16:03:12 +0200571 u32 value;
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300572 dev = pcidev_on_root(0, 0); /* clear IoapicSbFeatureEn */
Kyösti Mälkki4ee82c62014-11-25 16:03:12 +0200573 pci_write_config32(dev, 0xF8, 0);
574 pci_write_config32(dev, 0xFC, 5); /* TODO: move it to dsdt.asl */
575
576 /* disable No Snoop */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300577 dev = pcidev_on_root(1, 1);
Kyösti Mälkki69f6fd42019-01-21 14:19:01 +0200578 if (dev != NULL) {
579 value = pci_read_config32(dev, 0x60);
580 value &= ~(1 << 11);
581 pci_write_config32(dev, 0x60, value);
582 }
Kyösti Mälkki4ee82c62014-11-25 16:03:12 +0200583}
584
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800585struct chip_operations northbridge_amd_agesa_family16kb_ops = {
586 CHIP_NAME("AMD FAM16 Northbridge")
587 .enable_dev = 0,
Kyösti Mälkki4ee82c62014-11-25 16:03:12 +0200588 .final = fam16_finalize,
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800589};
590
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300591static void domain_read_resources(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800592{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530593 unsigned int reg;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800594
595 /* Find the already assigned resource pairs */
596 get_fx_devs();
597 for (reg = 0x80; reg <= 0xd8; reg+= 0x08) {
598 u32 base, limit;
599 base = f1_read_config32(reg);
600 limit = f1_read_config32(reg + 0x04);
601 /* Is this register allocated? */
602 if ((base & 3) != 0) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530603 unsigned int nodeid, reg_link;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300604 struct device *reg_dev;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200605 if (reg < 0xc0) { // mmio
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800606 nodeid = (limit & 0xf) + (base&0x30);
607 } else { // io
608 nodeid = (limit & 0xf) + ((base>>4)&0x30);
609 }
610 reg_link = (limit >> 4) & 7;
611 reg_dev = __f0_dev[nodeid];
612 if (reg_dev) {
613 /* Reserve the resource */
614 struct resource *res;
615 res = new_resource(reg_dev, IOINDEX(0x1000 + reg, reg_link));
616 if (res) {
617 res->flags = 1;
618 }
619 }
620 }
621 }
622 /* FIXME: do we need to check extend conf space?
623 I don't believe that much preset value */
624
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800625 pci_domain_read_resources(dev);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800626}
627
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800628#if CONFIG_HW_MEM_HOLE_SIZEK != 0
629struct hw_mem_hole_info {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530630 unsigned int hole_startk;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800631 int node_id;
632};
633static struct hw_mem_hole_info get_hw_mem_hole_info(void)
634{
635 struct hw_mem_hole_info mem_hole;
636 int i;
637 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
638 mem_hole.node_id = -1;
639 for (i = 0; i < node_nums; i++) {
640 dram_base_mask_t d;
641 u32 hole;
642 d = get_dram_base_mask(i);
643 if (!(d.mask & 1)) continue; // no memory on this node
644 hole = pci_read_config32(__f1_dev[i], 0xf0);
645 if (hole & 2) { // we find the hole
Elyes HAOUAS27e18012017-06-27 23:14:51 +0200646 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800647 mem_hole.node_id = i; // record the node No with hole
648 break; // only one hole
649 }
650 }
Kyösti Mälkki2f9b3af2014-06-26 05:30:54 +0300651
652 /* We need to double check if there is special set on base reg and limit reg
653 * are not continuous instead of hole, it will find out its hole_startk.
654 */
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800655 if (mem_hole.node_id == -1) {
656 resource_t limitk_pri = 0;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200657 for (i = 0; i < node_nums; i++) {
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800658 dram_base_mask_t d;
659 resource_t base_k, limit_k;
660 d = get_dram_base_mask(i);
661 if (!(d.base & 1)) continue;
662 base_k = ((resource_t)(d.base & 0x1fffff00)) <<9;
663 if (base_k > 4 *1024 * 1024) break; // don't need to go to check
664 if (limitk_pri != base_k) { // we find the hole
Martin Roth468d02c2019-10-23 21:44:42 -0600665 mem_hole.hole_startk = (unsigned int)limitk_pri; // must beblow 4G
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800666 mem_hole.node_id = i;
667 break; //only one hole
668 }
669 limit_k = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
670 limitk_pri = limit_k;
671 }
672 }
673 return mem_hole;
674}
675#endif
676
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300677static void domain_set_resources(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800678{
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800679 unsigned long mmio_basek;
680 u32 pci_tolm;
681 int i, idx;
682 struct bus *link;
683#if CONFIG_HW_MEM_HOLE_SIZEK != 0
684 struct hw_mem_hole_info mem_hole;
685 u32 reset_memhole = 1;
686#endif
687
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800688 pci_tolm = 0xffffffffUL;
689 for (link = dev->link_list; link; link = link->next) {
690 pci_tolm = find_pci_tolm(link);
691 }
692
693 // FIXME handle interleaved nodes. If you fix this here, please fix
694 // amdk8, too.
695 mmio_basek = pci_tolm >> 10;
696 /* Round mmio_basek to something the processor can support */
697 mmio_basek &= ~((1 << 6) -1);
698
699 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
700 // MMIO hole. If you fix this here, please fix amdk8, too.
701 /* Round the mmio hole to 64M */
702 mmio_basek &= ~((64*1024) - 1);
703
704#if CONFIG_HW_MEM_HOLE_SIZEK != 0
705 /* if the hw mem hole is already set in raminit stage, here we will compare
706 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
707 * use hole_basek as mmio_basek and we don't need to reset hole.
708 * otherwise We reset the hole to the mmio_basek
709 */
710
711 mem_hole = get_hw_mem_hole_info();
712
713 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
714 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
715 mmio_basek = mem_hole.hole_startk;
716 reset_memhole = 0;
717 }
718#endif
719
720 idx = 0x10;
721 for (i = 0; i < node_nums; i++) {
722 dram_base_mask_t d;
723 resource_t basek, limitk, sizek; // 4 1T
724
725 d = get_dram_base_mask(i);
726
727 if (!(d.mask & 1)) continue;
728 basek = ((resource_t)(d.base & 0x1fffff00)) << 9; // could overflow, we may lost 6 bit here
Edward O'Callaghanae5fd342014-11-20 19:58:09 +1100729 limitk = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800730
731 sizek = limitk - basek;
732
733 /* see if we need a hole from 0xa0000 to 0xbffff */
734 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
735 ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
736 idx += 0x10;
737 basek = (8*64)+(16*16);
738 sizek = limitk - ((8*64)+(16*16));
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800739 }
740
741 //printk(BIOS_DEBUG, "node %d : mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", i, mmio_basek, basek, limitk);
742
Kyösti Mälkki26c65432014-06-26 05:30:54 +0300743 /* split the region to accommodate pci memory space */
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200744 if ((basek < 4*1024*1024) && (limitk > mmio_basek)) {
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800745 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530746 unsigned int pre_sizek;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800747 pre_sizek = mmio_basek - basek;
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200748 if (pre_sizek > 0) {
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800749 ram_resource(dev, (idx | i), basek, pre_sizek);
750 idx += 0x10;
751 sizek -= pre_sizek;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800752 }
753 basek = mmio_basek;
754 }
755 if ((basek + sizek) <= 4*1024*1024) {
756 sizek = 0;
757 }
758 else {
759 uint64_t topmem2 = bsp_topmem2();
760 basek = 4*1024*1024;
761 sizek = topmem2/1024 - basek;
762 }
763 }
764
765 ram_resource(dev, (idx | i), basek, sizek);
766 idx += 0x10;
767 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
768 i, mmio_basek, basek, limitk);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800769 }
770
Kyösti Mälkki61be3602017-04-15 20:07:53 +0300771 add_uma_resource_below_tolm(dev, 7);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800772
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200773 for (link = dev->link_list; link; link = link->next) {
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800774 if (link->children) {
775 assign_resources(link);
776 }
777 }
778}
779
Kevin Cody-Little06d23232018-05-09 14:22:15 -0400780static const char *domain_acpi_name(const struct device *dev)
781{
782 if (dev->path.type == DEVICE_PATH_DOMAIN)
783 return "PCI0";
784
785 return NULL;
786}
787
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800788static struct device_operations pci_domain_ops = {
789 .read_resources = domain_read_resources,
790 .set_resources = domain_set_resources,
Edward O'Callaghane9e1d7a2015-01-02 15:11:49 +1100791 .init = DEVICE_NOOP,
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800792 .scan_bus = pci_domain_scan_bus,
Kevin Cody-Little06d23232018-05-09 14:22:15 -0400793 .acpi_name = domain_acpi_name,
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800794};
795
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300796static void sysconf_init(struct device *dev) // first node
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800797{
798 sblink = (pci_read_config32(dev, 0x64)>>8) & 7; // don't forget sublink1
799 node_nums = ((pci_read_config32(dev, 0x60)>>4) & 7) + 1; //NodeCnt[2:0]
800}
801
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300802static void cpu_bus_scan(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800803{
804 struct bus *cpu_bus;
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300805 struct device *dev_mc;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800806 int i,j;
807 int coreid_bits;
808 int core_max = 0;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530809 unsigned int ApicIdCoreIdSize;
810 unsigned int core_nums;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800811 int siblings = 0;
812 unsigned int family;
813
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200814 dev_mc = pcidev_on_root(DEV_CDB, 0);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800815 if (!dev_mc) {
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200816 printk(BIOS_ERR, "0:%02x.0 not found", DEV_CDB);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800817 die("");
818 }
819 sysconf_init(dev_mc);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800820
821 /* Get Max Number of cores(MNC) */
Kyösti Mälkkid41feed2017-09-24 16:23:57 +0300822 coreid_bits = (cpuid_ecx(0x80000008) & 0x0000F000) >> 12;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800823 core_max = 1 << (coreid_bits & 0x000F); //mnc
824
825 ApicIdCoreIdSize = ((cpuid_ecx(0x80000008)>>12) & 0xF);
826 if (ApicIdCoreIdSize) {
827 core_nums = (1 << ApicIdCoreIdSize) - 1;
828 } else {
829 core_nums = 3; //quad core
830 }
831
832 /* Find which cpus are present */
833 cpu_bus = dev->link_list;
834 for (i = 0; i < node_nums; i++) {
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300835 struct device *cdb_dev;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530836 unsigned int devn;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800837 struct bus *pbus;
838
Kyösti Mälkki3d3152e2019-01-10 09:05:30 +0200839 devn = DEV_CDB + i;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800840 pbus = dev_mc->bus;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800841
842 /* Find the cpu's pci device */
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300843 cdb_dev = pcidev_on_root(devn, 0);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800844 if (!cdb_dev) {
845 /* If I am probing things in a weird order
846 * ensure all of the cpu's pci devices are found.
847 */
848 int fn;
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200849 for (fn = 0; fn <= 5; fn++) { //FBDIMM?
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800850 cdb_dev = pci_probe_dev(NULL, pbus,
851 PCI_DEVFN(devn, fn));
852 }
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300853 cdb_dev = pcidev_on_root(devn, 0);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800854 } else {
855 /* Ok, We need to set the links for that device.
856 * otherwise the device under it will not be scanned
857 */
Kyösti Mälkki2a2d6132015-02-04 13:25:37 +0200858 add_more_links(cdb_dev, 4);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800859 }
860
861 family = cpuid_eax(1);
862 family = (family >> 20) & 0xFF;
863 if (family == 1) { //f10
864 u32 dword;
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300865 cdb_dev = pcidev_on_root(devn, 3);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800866 dword = pci_read_config32(cdb_dev, 0xe8);
867 siblings = ((dword & BIT15) >> 13) | ((dword & (BIT13 | BIT12)) >> 12);
868 } else if (family == 7) {//f16
Kyösti Mälkki4ad7f5b2018-05-22 01:15:17 +0300869 cdb_dev = pcidev_on_root(devn, 5);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800870 if (cdb_dev && cdb_dev->enabled) {
871 siblings = pci_read_config32(cdb_dev, 0x84);
872 siblings &= 0xFF;
873 }
874 } else {
875 siblings = 0; //default one core
876 }
877 int enable_node = cdb_dev && cdb_dev->enabled;
878 printk(BIOS_SPEW, "%s family%xh, core_max=0x%x, core_nums=0x%x, siblings=0x%x\n",
879 dev_path(cdb_dev), 0x0f + family, core_max, core_nums, siblings);
880
Elyes HAOUAS1d8daa62016-09-18 08:50:54 +0200881 for (j = 0; j <= siblings; j++) {
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800882 extern CONST OPTIONS_CONFIG_TOPOLOGY ROMDATA TopologyConfiguration;
883 u32 modules = TopologyConfiguration.PlatformNumberOfModules;
884 u32 lapicid_start = 0;
885
886 /*
887 * APIC ID calucation is tightly coupled with AGESA v5 code.
888 * This calculation MUST match the assignment calculation done
889 * in LocalApicInitializationAtEarly() function.
890 * And reference GetLocalApicIdForCore()
891 *
Elyes HAOUASa5b0bc42020-02-20 20:04:29 +0100892 * Apply APIC enumeration rules
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800893 * For systems with >= 16 APICs, put the IO-APICs at 0..n and
894 * put the local-APICs at m..z
895 *
896 * This is needed because many IO-APIC devices only have 4 bits
897 * for their APIC id and therefore must reside at 0..15
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200898 */
Kyösti Mälkki50036322016-05-18 13:35:21 +0300899
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +0200900 u8 plat_num_io_apics = 3; /* FIXME */
Kyösti Mälkki50036322016-05-18 13:35:21 +0300901
902 if ((node_nums * core_max) + plat_num_io_apics >= 0x10) {
903 lapicid_start = (plat_num_io_apics - 1) / core_max;
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800904 lapicid_start = (lapicid_start + 1) * core_max;
905 printk(BIOS_SPEW, "lpaicid_start=0x%x ", lapicid_start);
906 }
907 u32 apic_id = (lapicid_start * (i/modules + 1)) + ((i % modules) ? (j + (siblings + 1)) : j);
908 printk(BIOS_SPEW, "node 0x%x core 0x%x apicid=0x%x\n",
909 i, j, apic_id);
910
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300911 struct device *cpu = add_cpu_device(cpu_bus, apic_id, enable_node);
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800912 if (cpu)
913 amd_cpu_topology(cpu, i, j);
914 } //j
915 }
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800916}
917
Kyösti Mälkkie2c2a4c2018-05-20 20:59:52 +0300918static void cpu_bus_init(struct device *dev)
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800919{
920 initialize_cpus(dev->link_list);
921}
922
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800923static struct device_operations cpu_bus_ops = {
Edward O'Callaghan66c65322014-11-21 01:43:38 +1100924 .read_resources = DEVICE_NOOP,
925 .set_resources = DEVICE_NOOP,
Edward O'Callaghan812d2a42014-10-31 08:17:23 +1100926 .enable_resources = DEVICE_NOOP,
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800927 .init = cpu_bus_init,
928 .scan_bus = cpu_bus_scan,
929};
930
931static void root_complex_enable_dev(struct device *dev)
932{
933 static int done = 0;
934
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800935 if (!done) {
936 setup_bsp_ramtop();
Siyuan Wang3e32cc02013-07-09 17:16:20 +0800937 done = 1;
938 }
939
940 /* Set the operations if it is a special bus type */
941 if (dev->path.type == DEVICE_PATH_DOMAIN) {
942 dev->ops = &pci_domain_ops;
943 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
944 dev->ops = &cpu_bus_ops;
945 }
946}
947
948struct chip_operations northbridge_amd_agesa_family16kb_root_complex_ops = {
949 CHIP_NAME("AMD FAM16 Root Complex")
950 .enable_dev = root_complex_enable_dev,
951};
Bruce Griffith76db07e2013-07-07 02:06:53 -0600952
953/*********************************************************************
954 * Change the vendor / device IDs to match the generic VBIOS header. *
955 *********************************************************************/
956u32 map_oprom_vendev(u32 vendev)
957{
958 u32 new_vendev = vendev;
959
Elyes HAOUAS0ce41f12018-11-13 10:03:31 +0100960 switch (vendev) {
Bruce Griffith76db07e2013-07-07 02:06:53 -0600961 case 0x10029830:
962 case 0x10029831:
963 case 0x10029832:
964 case 0x10029833:
965 case 0x10029834:
966 case 0x10029835:
967 case 0x10029836:
968 case 0x10029837:
969 case 0x10029838:
970 case 0x10029839:
971 case 0x1002983A:
972 case 0x1002983D:
973 new_vendev = 0x10029830; // This is the default value in AMD-generated VBIOS
974 break;
975 default:
976 break;
977 }
978
979 if (vendev != new_vendev)
980 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n", vendev, new_vendev);
981
982 return new_vendev;
983}