blob: db4c14bb885ac84769a0b943756461e8ce301030 [file] [log] [blame]
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Bruce Griffith27ed80b2014-08-15 11:46:25 -060014 */
15
16#include <console/console.h>
17#include <arch/io.h>
18#include <arch/acpi.h>
19#include <stdint.h>
20#include <device/device.h>
21#include <device/pci.h>
22#include <device/pci_ids.h>
23#include <device/hypertransport.h>
24#include <stdlib.h>
25#include <string.h>
26#include <lib.h>
27#include <cpu/cpu.h>
28#include <cbmem.h>
29
30#include <Porting.h>
31#include <AGESA.h>
32#include <FieldAccessors.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060033#include <Topology.h>
Kyösti Mälkkied8d2772017-07-15 17:12:44 +030034#include <northbridge/amd/agesa/agesa_helper.h>
Kyösti Mälkki903ce252016-11-25 11:21:02 +020035#if IS_ENABLED(CONFIG_BINARYPI_LEGACY_WRAPPER)
Kyösti Mälkki023ed1f2014-10-22 08:05:36 +030036#include <northbridge/amd/pi/agesawrapper.h>
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030037#include <northbridge/amd/pi/agesawrapper_call.h>
Kyösti Mälkki903ce252016-11-25 11:21:02 +020038#endif
Bruce Griffith27ed80b2014-08-15 11:46:25 -060039#include "northbridge.h"
40
41#include <cpu/x86/lapic.h>
42#include <cpu/amd/mtrr.h>
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +020043#include <arch/acpi.h>
44#include <arch/acpigen.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060045
Kyösti Mälkki113f6702018-05-20 20:12:32 +030046#define MAX_NODE_NUMS MAX_NODES
Bruce Griffith27ed80b2014-08-15 11:46:25 -060047
Bruce Griffith27ed80b2014-08-15 11:46:25 -060048typedef struct dram_base_mask {
49 u32 base; //[47:27] at [28:8]
50 u32 mask; //[47:27] at [28:8] and enable at bit 0
51} dram_base_mask_t;
52
53static unsigned node_nums;
54static unsigned sblink;
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030055static struct device *__f0_dev[MAX_NODE_NUMS];
56static struct device *__f1_dev[MAX_NODE_NUMS];
57static struct device *__f2_dev[MAX_NODE_NUMS];
58static struct device *__f4_dev[MAX_NODE_NUMS];
Bruce Griffith27ed80b2014-08-15 11:46:25 -060059static unsigned fx_devs = 0;
60
61static dram_base_mask_t get_dram_base_mask(u32 nodeid)
62{
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030063 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -060064 dram_base_mask_t d;
65 dev = __f1_dev[0];
66 u32 temp;
67 temp = pci_read_config32(dev, 0x44 + (nodeid << 3)); //[39:24] at [31:16]
68 d.mask = ((temp & 0xfff80000)>>(8+3)); // mask out DramMask [26:24] too
69 temp = pci_read_config32(dev, 0x144 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
70 d.mask |= temp<<21;
71 temp = pci_read_config32(dev, 0x40 + (nodeid << 3)); //[39:24] at [31:16]
72 d.mask |= (temp & 1); // enable bit
73 d.base = ((temp & 0xfff80000)>>(8+3)); // mask out DramBase [26:24) too
74 temp = pci_read_config32(dev, 0x140 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
75 d.base |= temp<<21;
76 return d;
77}
78
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030079static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
Bruce Griffith27ed80b2014-08-15 11:46:25 -060080 u32 io_min, u32 io_max)
81{
82 u32 i;
83 u32 tempreg;
84 /* io range allocation */
85 tempreg = (nodeid&0xf) | ((nodeid & 0x30)<<(8-4)) | (linkn<<4) | ((io_max&0xf0)<<(12-4)); //limit
Elyes HAOUASa8131602016-09-19 10:27:57 -060086 for (i = 0; i < node_nums; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060087 pci_write_config32(__f1_dev[i], reg+4, tempreg);
Elyes HAOUASa8131602016-09-19 10:27:57 -060088 tempreg = 3 /*| (3<<4)*/ | ((io_min&0xf0)<<(12-4)); //base :ISA and VGA ?
Elyes HAOUASa8131602016-09-19 10:27:57 -060089 for (i = 0; i < node_nums; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060090 pci_write_config32(__f1_dev[i], reg, tempreg);
91}
92
93static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index, u32 mmio_min, u32 mmio_max, u32 nodes)
94{
95 u32 i;
96 u32 tempreg;
97 /* io range allocation */
98 tempreg = (nodeid&0xf) | (linkn<<4) | (mmio_max&0xffffff00); //limit
Elyes HAOUASa8131602016-09-19 10:27:57 -060099 for (i = 0; i < nodes; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600100 pci_write_config32(__f1_dev[i], reg+4, tempreg);
101 tempreg = 3 | (nodeid & 0x30) | (mmio_min&0xffffff00);
Elyes HAOUASa8131602016-09-19 10:27:57 -0600102 for (i = 0; i < node_nums; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600103 pci_write_config32(__f1_dev[i], reg, tempreg);
104}
105
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300106static struct device *get_node_pci(u32 nodeid, u32 fn)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600107{
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600108 return dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB + nodeid, fn));
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600109}
110
111static void get_fx_devs(void)
112{
113 int i;
114 for (i = 0; i < MAX_NODE_NUMS; i++) {
115 __f0_dev[i] = get_node_pci(i, 0);
116 __f1_dev[i] = get_node_pci(i, 1);
117 __f2_dev[i] = get_node_pci(i, 2);
118 __f4_dev[i] = get_node_pci(i, 4);
119 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
120 fx_devs = i+1;
121 }
122 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
123 die("Cannot find 0:0x18.[0|1]\n");
124 }
Elyes HAOUASa8131602016-09-19 10:27:57 -0600125 printk(BIOS_DEBUG, "fx_devs = 0x%x\n", fx_devs);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600126}
127
128static u32 f1_read_config32(unsigned reg)
129{
130 if (fx_devs == 0)
131 get_fx_devs();
132 return pci_read_config32(__f1_dev[0], reg);
133}
134
135static void f1_write_config32(unsigned reg, u32 value)
136{
137 int i;
138 if (fx_devs == 0)
139 get_fx_devs();
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200140 for (i = 0; i < fx_devs; i++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300141 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600142 dev = __f1_dev[i];
143 if (dev && dev->enabled) {
144 pci_write_config32(dev, reg, value);
145 }
146 }
147}
148
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300149static u32 amdfam16_nodeid(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600150{
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600151 return (dev->path.pci.devfn >> 3) - CONFIG_CDB;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600152}
153
154static void set_vga_enable_reg(u32 nodeid, u32 linkn)
155{
156 u32 val;
157
158 val = 1 | (nodeid<<4) | (linkn<<12);
159 /* it will routing
160 * (1)mmio 0xa0000:0xbffff
161 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
162 */
163 f1_write_config32(0xf4, val);
164
165}
166
167/**
168 * @return
169 * @retval 2 resoure does not exist, usable
170 * @retval 0 resource exists, not usable
171 * @retval 1 resource exist, resource has been allocated before
172 */
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300173static int reg_useable(unsigned reg, struct device *goal_dev, unsigned goal_nodeid,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600174 unsigned goal_link)
175{
176 struct resource *res;
177 unsigned nodeid, link = 0;
178 int result;
179 res = 0;
180 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300181 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600182 dev = __f0_dev[nodeid];
183 if (!dev)
184 continue;
185 for (link = 0; !res && (link < 8); link++) {
186 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
187 }
188 }
189 result = 2;
190 if (res) {
191 result = 0;
192 if ((goal_link == (link - 1)) &&
193 (goal_nodeid == (nodeid - 1)) &&
194 (res->flags <= 1)) {
195 result = 1;
196 }
197 }
198 return result;
199}
200
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300201static struct resource *amdfam16_find_iopair(struct device *dev, unsigned nodeid, unsigned link)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600202{
203 struct resource *resource;
204 u32 free_reg, reg;
205 resource = 0;
206 free_reg = 0;
207 for (reg = 0xc0; reg <= 0xd8; reg += 0x8) {
208 int result;
209 result = reg_useable(reg, dev, nodeid, link);
210 if (result == 1) {
211 /* I have been allocated this one */
212 break;
213 }
214 else if (result > 1) {
215 /* I have a free register pair */
216 free_reg = reg;
217 }
218 }
219 if (reg > 0xd8) {
220 reg = free_reg; // if no free, the free_reg still be 0
221 }
222
223 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
224
225 return resource;
226}
227
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300228static struct resource *amdfam16_find_mempair(struct device *dev, u32 nodeid, u32 link)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600229{
230 struct resource *resource;
231 u32 free_reg, reg;
232 resource = 0;
233 free_reg = 0;
234 for (reg = 0x80; reg <= 0xb8; reg += 0x8) {
235 int result;
236 result = reg_useable(reg, dev, nodeid, link);
237 if (result == 1) {
238 /* I have been allocated this one */
239 break;
240 }
241 else if (result > 1) {
242 /* I have a free register pair */
243 free_reg = reg;
244 }
245 }
246 if (reg > 0xb8) {
247 reg = free_reg;
248 }
249
250 resource = new_resource(dev, IOINDEX(0x1000 + reg, link));
251 return resource;
252}
253
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300254static void amdfam16_link_read_bases(struct device *dev, u32 nodeid, u32 link)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600255{
256 struct resource *resource;
257
258 /* Initialize the io space constraints on the current bus */
259 resource = amdfam16_find_iopair(dev, nodeid, link);
260 if (resource) {
261 u32 align;
262 align = log2(HT_IO_HOST_ALIGN);
263 resource->base = 0;
264 resource->size = 0;
265 resource->align = align;
266 resource->gran = align;
267 resource->limit = 0xffffUL;
268 resource->flags = IORESOURCE_IO | IORESOURCE_BRIDGE;
269 }
270
271 /* Initialize the prefetchable memory constraints on the current bus */
272 resource = amdfam16_find_mempair(dev, nodeid, link);
273 if (resource) {
274 resource->base = 0;
275 resource->size = 0;
276 resource->align = log2(HT_MEM_HOST_ALIGN);
277 resource->gran = log2(HT_MEM_HOST_ALIGN);
278 resource->limit = 0xffffffffffULL;
279 resource->flags = IORESOURCE_MEM | IORESOURCE_PREFETCH;
280 resource->flags |= IORESOURCE_BRIDGE;
281 }
282
283 /* Initialize the memory constraints on the current bus */
284 resource = amdfam16_find_mempair(dev, nodeid, link);
285 if (resource) {
286 resource->base = 0;
287 resource->size = 0;
288 resource->align = log2(HT_MEM_HOST_ALIGN);
289 resource->gran = log2(HT_MEM_HOST_ALIGN);
290 resource->limit = 0xffffffffffULL;
291 resource->flags = IORESOURCE_MEM | IORESOURCE_BRIDGE;
292 }
293
294}
295
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300296static void read_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600297{
298 u32 nodeid;
299 struct bus *link;
300
301 nodeid = amdfam16_nodeid(dev);
302 for (link = dev->link_list; link; link = link->next) {
303 if (link->children) {
304 amdfam16_link_read_bases(dev, nodeid, link->link_num);
305 }
306 }
Kyösti Mälkki5d490382015-05-27 07:58:22 +0300307
308 /*
309 * This MMCONF resource must be reserved in the PCI domain.
310 * It is not honored by the coreboot resource allocator if it is in
311 * the CPU_CLUSTER.
312 */
Kyösti Mälkkie25b5ef2016-12-02 08:56:05 +0200313 mmconf_resource(dev, 0xc0010058);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600314}
315
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300316static void set_resource(struct device *dev, struct resource *resource, u32 nodeid)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600317{
318 resource_t rbase, rend;
319 unsigned reg, link_num;
320 char buf[50];
321
322 /* Make certain the resource has actually been set */
323 if (!(resource->flags & IORESOURCE_ASSIGNED)) {
324 return;
325 }
326
327 /* If I have already stored this resource don't worry about it */
328 if (resource->flags & IORESOURCE_STORED) {
329 return;
330 }
331
332 /* Only handle PCI memory and IO resources */
333 if (!(resource->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
334 return;
335
336 /* Ensure I am actually looking at a resource of function 1 */
337 if ((resource->index & 0xffff) < 0x1000) {
338 return;
339 }
340 /* Get the base address */
341 rbase = resource->base;
342
343 /* Get the limit (rounded up) */
344 rend = resource_end(resource);
345
346 /* Get the register and link */
347 reg = resource->index & 0xfff; // 4k
348 link_num = IOINDEX_LINK(resource->index);
349
350 if (resource->flags & IORESOURCE_IO) {
351 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
352 }
353 else if (resource->flags & IORESOURCE_MEM) {
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200354 set_mmio_addr_reg(nodeid, link_num, reg, (resource->index >>24), rbase>>8, rend>>8, node_nums); // [39:8]
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600355 }
356 resource->flags |= IORESOURCE_STORED;
Elyes HAOUAS0d4b11a2016-10-03 21:57:21 +0200357 snprintf(buf, sizeof(buf), " <node %x link %x>",
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600358 nodeid, link_num);
359 report_resource_stored(dev, resource, buf);
360}
361
362/**
363 * I tried to reuse the resource allocation code in set_resource()
364 * but it is too difficult to deal with the resource allocation magic.
365 */
366
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300367static void create_vga_resource(struct device *dev, unsigned nodeid)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600368{
369 struct bus *link;
370
371 /* find out which link the VGA card is connected,
372 * we only deal with the 'first' vga card */
373 for (link = dev->link_list; link; link = link->next) {
374 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Martin Roth77a58b92017-06-24 14:45:48 -0600375#if IS_ENABLED(CONFIG_MULTIPLE_VGA_ADAPTERS)
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300376 extern struct device *vga_pri; // the primary vga device, defined in device.c
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600377 printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d bus range [%d,%d]\n", vga_pri->bus->secondary,
378 link->secondary,link->subordinate);
379 /* We need to make sure the vga_pri is under the link */
Elyes HAOUASa8131602016-09-19 10:27:57 -0600380 if ((vga_pri->bus->secondary >= link->secondary) &&
381 (vga_pri->bus->secondary <= link->subordinate))
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600382#endif
383 break;
384 }
385 }
386
387 /* no VGA card installed */
388 if (link == NULL)
389 return;
390
391 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, sblink);
392 set_vga_enable_reg(nodeid, sblink);
393}
394
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300395static void set_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600396{
397 unsigned nodeid;
398 struct bus *bus;
399 struct resource *res;
400
401 /* Find the nodeid */
402 nodeid = amdfam16_nodeid(dev);
403
404 create_vga_resource(dev, nodeid); //TODO: do we need this?
405
406 /* Set each resource we have found */
407 for (res = dev->resource_list; res; res = res->next) {
408 set_resource(dev, res, nodeid);
409 }
410
411 for (bus = dev->link_list; bus; bus = bus->next) {
412 if (bus->children) {
413 assign_resources(bus);
414 }
415 }
416}
417
418static void northbridge_init(struct device *dev)
419{
420}
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200421
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100422static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200423{
424 void *addr, *current;
425
426 /* Skip the HEST header. */
427 current = (void *)(hest + 1);
428
429 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
430 if (addr != NULL)
431 current += acpi_create_hest_error_source(hest, current, 0, (void *)((u32)addr + 2), *(UINT16 *)addr - 2);
432
433 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
434 if (addr != NULL)
435 current += acpi_create_hest_error_source(hest, current, 1, (void *)((u32)addr + 2), *(UINT16 *)addr - 2);
436
437 return (unsigned long)current;
438}
439
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300440static void northbridge_fill_ssdt_generator(struct device *device)
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200441{
442 msr_t msr;
443 char pscope[] = "\\_SB.PCI0";
444
445 acpigen_write_scope(pscope);
446 msr = rdmsr(TOP_MEM);
447 acpigen_write_name_dword("TOM1", msr.lo);
448 msr = rdmsr(TOP_MEM2);
449 /*
450 * Since XP only implements parts of ACPI 2.0, we can't use a qword
451 * here.
452 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
453 * slide 22ff.
454 * Shift value right by 20 bit to make it fit into 32bit,
455 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
456 */
457 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
458 acpigen_pop_len();
459}
460
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300461static unsigned long agesa_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200462 unsigned long current,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200463 acpi_rsdp_t *rsdp)
464{
465 acpi_srat_t *srat;
466 acpi_slit_t *slit;
467 acpi_header_t *ssdt;
468 acpi_header_t *alib;
469 acpi_header_t *ivrs;
470 acpi_hest_t *hest;
471
472 /* HEST */
473 current = ALIGN(current, 8);
474 hest = (acpi_hest_t *)current;
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100475 acpi_write_hest((void *)current, acpi_fill_hest);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200476 acpi_add_table(rsdp, (void *)current);
477 current += ((acpi_header_t *)current)->length;
478
479 current = ALIGN(current, 8);
480 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
481 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
482 if (ivrs != NULL) {
483 memcpy((void *)current, ivrs, ivrs->length);
484 ivrs = (acpi_header_t *) current;
485 current += ivrs->length;
486 acpi_add_table(rsdp, ivrs);
487 } else {
488 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
489 }
490
491 /* SRAT */
492 current = ALIGN(current, 8);
493 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
494 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
495 if (srat != NULL) {
496 memcpy((void *)current, srat, srat->header.length);
497 srat = (acpi_srat_t *) current;
498 current += srat->header.length;
499 acpi_add_table(rsdp, srat);
500 } else {
501 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
502 }
503
504 /* SLIT */
505 current = ALIGN(current, 8);
506 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
507 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
508 if (slit != NULL) {
509 memcpy((void *)current, slit, slit->header.length);
510 slit = (acpi_slit_t *) current;
511 current += slit->header.length;
512 acpi_add_table(rsdp, slit);
513 } else {
514 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
515 }
516
517 /* ALIB */
518 current = ALIGN(current, 16);
519 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
520 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
521 if (alib != NULL) {
522 memcpy((void *)current, alib, alib->length);
523 alib = (acpi_header_t *) current;
524 current += alib->length;
525 acpi_add_table(rsdp, (void *)alib);
526 }
527 else {
528 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
529 }
530
531 /* this pstate ssdt may cause Blue Screen: Fixed: Keep this comment for a while. */
532 /* SSDT */
533 current = ALIGN(current, 16);
534 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
535 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
536 if (ssdt != NULL) {
537 memcpy((void *)current, ssdt, ssdt->length);
538 ssdt = (acpi_header_t *) current;
539 current += ssdt->length;
540 }
541 else {
542 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
543 }
544 acpi_add_table(rsdp,ssdt);
545
546 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
547 return current;
548}
549
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600550static struct device_operations northbridge_operations = {
551 .read_resources = read_resources,
552 .set_resources = set_resources,
553 .enable_resources = pci_dev_enable_resources,
554 .init = northbridge_init,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200555 .acpi_fill_ssdt_generator = northbridge_fill_ssdt_generator,
556 .write_acpi_tables = agesa_write_acpi_tables,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600557 .enable = 0,
558 .ops_pci = 0,
559};
560
561static const struct pci_driver family16_northbridge __pci_driver = {
562 .ops = &northbridge_operations,
563 .vendor = PCI_VENDOR_ID_AMD,
Marshall Dawson463f46e2016-10-14 20:46:08 -0600564 .device = PCI_DEVICE_ID_AMD_16H_MODEL_303F_NB_HT,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600565};
566
567static const struct pci_driver family10_northbridge __pci_driver = {
568 .ops = &northbridge_operations,
569 .vendor = PCI_VENDOR_ID_AMD,
570 .device = PCI_DEVICE_ID_AMD_10H_NB_HT,
571};
572
Dave Frodin891f71a2015-01-19 15:58:24 -0700573static void fam16_finalize(void *chip_info)
574{
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300575 struct device *dev;
Dave Frodin891f71a2015-01-19 15:58:24 -0700576 u32 value;
577 dev = dev_find_slot(0, PCI_DEVFN(0, 0)); /* clear IoapicSbFeatureEn */
578 pci_write_config32(dev, 0xF8, 0);
579 pci_write_config32(dev, 0xFC, 5); /* TODO: move it to dsdt.asl */
580
581 /* disable No Snoop */
582 dev = dev_find_slot(0, PCI_DEVFN(1, 1));
583 value = pci_read_config32(dev, 0x60);
584 value &= ~(1 << 11);
585 pci_write_config32(dev, 0x60, value);
586}
587
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +0300588struct chip_operations northbridge_amd_pi_00730F01_ops = {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600589 CHIP_NAME("AMD FAM16 Northbridge")
590 .enable_dev = 0,
Dave Frodin891f71a2015-01-19 15:58:24 -0700591 .final = fam16_finalize,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600592};
593
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300594static void domain_read_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600595{
596 unsigned reg;
597
598 /* Find the already assigned resource pairs */
599 get_fx_devs();
600 for (reg = 0x80; reg <= 0xd8; reg+= 0x08) {
601 u32 base, limit;
602 base = f1_read_config32(reg);
603 limit = f1_read_config32(reg + 0x04);
604 /* Is this register allocated? */
605 if ((base & 3) != 0) {
606 unsigned nodeid, reg_link;
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300607 struct device *reg_dev;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600608 if (reg < 0xc0) { // mmio
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600609 nodeid = (limit & 0xf) + (base&0x30);
610 } else { // io
611 nodeid = (limit & 0xf) + ((base>>4)&0x30);
612 }
613 reg_link = (limit >> 4) & 7;
614 reg_dev = __f0_dev[nodeid];
615 if (reg_dev) {
616 /* Reserve the resource */
617 struct resource *res;
618 res = new_resource(reg_dev, IOINDEX(0x1000 + reg, reg_link));
619 if (res) {
620 res->flags = 1;
621 }
622 }
623 }
624 }
625 /* FIXME: do we need to check extend conf space?
626 I don't believe that much preset value */
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600627 pci_domain_read_resources(dev);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600628}
629
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300630static void domain_enable_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600631{
Kyösti Mälkki903ce252016-11-25 11:21:02 +0200632#if IS_ENABLED(CONFIG_BINARYPI_LEGACY_WRAPPER)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600633 /* Must be called after PCI enumeration and resource allocation */
634 if (!acpi_is_wakeup_s3())
635 AGESAWRAPPER(amdinitmid);
636
637 printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
Kyösti Mälkki903ce252016-11-25 11:21:02 +0200638#endif
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600639}
640
641#if CONFIG_HW_MEM_HOLE_SIZEK != 0
642struct hw_mem_hole_info {
643 unsigned hole_startk;
644 int node_id;
645};
646static struct hw_mem_hole_info get_hw_mem_hole_info(void)
647{
648 struct hw_mem_hole_info mem_hole;
649 int i;
650 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
651 mem_hole.node_id = -1;
652 for (i = 0; i < node_nums; i++) {
653 dram_base_mask_t d;
654 u32 hole;
655 d = get_dram_base_mask(i);
656 if (!(d.mask & 1)) continue; // no memory on this node
657 hole = pci_read_config32(__f1_dev[i], 0xf0);
658 if (hole & 2) { // we find the hole
659 mem_hole.hole_startk = (hole & (0xff<<24)) >> 10;
660 mem_hole.node_id = i; // record the node No with hole
661 break; // only one hole
662 }
663 }
664
665 /* We need to double check if there is special set on base reg and limit reg
666 * are not continuous instead of hole, it will find out its hole_startk.
667 */
668 if (mem_hole.node_id == -1) {
669 resource_t limitk_pri = 0;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600670 for (i = 0; i < node_nums; i++) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600671 dram_base_mask_t d;
672 resource_t base_k, limit_k;
673 d = get_dram_base_mask(i);
674 if (!(d.base & 1)) continue;
675 base_k = ((resource_t)(d.base & 0x1fffff00)) <<9;
676 if (base_k > 4 *1024 * 1024) break; // don't need to go to check
677 if (limitk_pri != base_k) { // we find the hole
678 mem_hole.hole_startk = (unsigned)limitk_pri; // must beblow 4G
679 mem_hole.node_id = i;
680 break; //only one hole
681 }
682 limit_k = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
683 limitk_pri = limit_k;
684 }
685 }
686 return mem_hole;
687}
688#endif
689
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300690static void domain_set_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600691{
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600692 unsigned long mmio_basek;
693 u32 pci_tolm;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600694 int i, idx;
695 struct bus *link;
696#if CONFIG_HW_MEM_HOLE_SIZEK != 0
697 struct hw_mem_hole_info mem_hole;
698 u32 reset_memhole = 1;
699#endif
700
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600701 pci_tolm = 0xffffffffUL;
702 for (link = dev->link_list; link; link = link->next) {
703 pci_tolm = find_pci_tolm(link);
704 }
705
706 // FIXME handle interleaved nodes. If you fix this here, please fix
707 // amdk8, too.
708 mmio_basek = pci_tolm >> 10;
709 /* Round mmio_basek to something the processor can support */
710 mmio_basek &= ~((1 << 6) -1);
711
712 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
713 // MMIO hole. If you fix this here, please fix amdk8, too.
714 /* Round the mmio hole to 64M */
715 mmio_basek &= ~((64*1024) - 1);
716
717#if CONFIG_HW_MEM_HOLE_SIZEK != 0
718 /* if the hw mem hole is already set in raminit stage, here we will compare
719 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
720 * use hole_basek as mmio_basek and we don't need to reset hole.
721 * otherwise We reset the hole to the mmio_basek
722 */
723
724 mem_hole = get_hw_mem_hole_info();
725
726 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
727 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
728 mmio_basek = mem_hole.hole_startk;
729 reset_memhole = 0;
730 }
731#endif
732
733 idx = 0x10;
734 for (i = 0; i < node_nums; i++) {
735 dram_base_mask_t d;
736 resource_t basek, limitk, sizek; // 4 1T
737
738 d = get_dram_base_mask(i);
739
740 if (!(d.mask & 1)) continue;
741 basek = ((resource_t)(d.base & 0x1fffff00)) << 9; // could overflow, we may lost 6 bit here
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200742 limitk = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600743
744 sizek = limitk - basek;
745
746 /* see if we need a hole from 0xa0000 to 0xbffff */
747 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
748 ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
749 idx += 0x10;
750 basek = (8*64)+(16*16);
751 sizek = limitk - ((8*64)+(16*16));
752
753 }
754
755 //printk(BIOS_DEBUG, "node %d : mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", i, mmio_basek, basek, limitk);
756
757 /* split the region to accommodate pci memory space */
Elyes HAOUASa8131602016-09-19 10:27:57 -0600758 if ((basek < 4*1024*1024) && (limitk > mmio_basek)) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600759 if (basek <= mmio_basek) {
760 unsigned pre_sizek;
761 pre_sizek = mmio_basek - basek;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600762 if (pre_sizek > 0) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600763 ram_resource(dev, (idx | i), basek, pre_sizek);
764 idx += 0x10;
765 sizek -= pre_sizek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600766 }
767 basek = mmio_basek;
768 }
769 if ((basek + sizek) <= 4*1024*1024) {
770 sizek = 0;
771 }
772 else {
773 uint64_t topmem2 = bsp_topmem2();
774 basek = 4*1024*1024;
775 sizek = topmem2/1024 - basek;
776 }
777 }
778
779 ram_resource(dev, (idx | i), basek, sizek);
780 idx += 0x10;
781 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
782 i, mmio_basek, basek, limitk);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600783 }
784
Kyösti Mälkkie87564f2017-04-15 20:07:53 +0300785 add_uma_resource_below_tolm(dev, 7);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600786
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200787 for (link = dev->link_list; link; link = link->next) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600788 if (link->children) {
789 assign_resources(link);
790 }
791 }
792}
793
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600794static const char *domain_acpi_name(const struct device *dev)
Philipp Deppenwiese30670122017-03-01 02:24:33 +0100795{
796 if (dev->path.type == DEVICE_PATH_DOMAIN)
797 return "PCI0";
798
799 return NULL;
800}
801
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600802static struct device_operations pci_domain_ops = {
803 .read_resources = domain_read_resources,
804 .set_resources = domain_set_resources,
805 .enable_resources = domain_enable_resources,
806 .init = NULL,
807 .scan_bus = pci_domain_scan_bus,
Philipp Deppenwiese30670122017-03-01 02:24:33 +0100808 .acpi_name = domain_acpi_name,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600809};
810
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300811static void sysconf_init(struct device *dev) // first node
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600812{
813 sblink = (pci_read_config32(dev, 0x64)>>8) & 7; // don't forget sublink1
814 node_nums = ((pci_read_config32(dev, 0x60)>>4) & 7) + 1; //NodeCnt[2:0]
815}
816
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300817static void add_more_links(struct device *dev, unsigned total_links)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600818{
819 struct bus *link, *last = NULL;
820 int link_num;
821
822 for (link = dev->link_list; link; link = link->next)
823 last = link;
824
825 if (last) {
826 int links = total_links - last->link_num;
827 link_num = last->link_num;
828 if (links > 0) {
829 link = malloc(links*sizeof(*link));
830 if (!link)
831 die("Couldn't allocate more links!\n");
832 memset(link, 0, links*sizeof(*link));
833 last->next = link;
834 }
835 }
836 else {
837 link_num = -1;
838 link = malloc(total_links*sizeof(*link));
839 memset(link, 0, total_links*sizeof(*link));
840 dev->link_list = link;
841 }
842
843 for (link_num = link_num + 1; link_num < total_links; link_num++) {
844 link->link_num = link_num;
845 link->dev = dev;
846 link->next = link + 1;
847 last = link;
848 link = link->next;
849 }
850 last->next = NULL;
851}
852
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300853static void cpu_bus_scan(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600854{
855 struct bus *cpu_bus;
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300856 struct device *dev_mc;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600857#if CONFIG_CBB
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300858 struct device *pci_domain;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600859#endif
860 int i,j;
861 int coreid_bits;
862 int core_max = 0;
863 unsigned ApicIdCoreIdSize;
864 unsigned core_nums;
865 int siblings = 0;
866 unsigned int family;
867 u32 modules = 0;
868 VOID* modules_ptr = &modules;
869 BUILD_OPT_CFG* options = NULL;
870 int ioapic_count = 0;
871
872 // TODO Remove the printk's.
873 printk(BIOS_SPEW, "MullinsPI Debug: Grabbing the AMD Topology Information.\n");
874 AmdGetValue(AMD_GLOBAL_USER_OPTIONS, (VOID**)&options, sizeof(options));
875 AmdGetValue(AMD_GLOBAL_NUM_MODULES, &modules_ptr, sizeof(modules));
Alexandru Gagniuc2e0cf142014-12-28 20:38:32 -0600876 modules = *(u32*)modules_ptr;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600877 ASSERT(modules > 0);
878 ASSERT(options);
879 ioapic_count = (int)options->CfgPlatNumIoApics;
880 ASSERT(ioapic_count > 0);
881 printk(BIOS_SPEW, "MullinsPI Debug: AMD Topology Number of Modules (@0x%p) is %d\n", modules_ptr, modules);
882 printk(BIOS_SPEW, "MullinsPI Debug: AMD Topology Number of IOAPICs (@0x%p) is %d\n", options, (int)options->CfgPlatNumIoApics);
883
884#if CONFIG_CBB
885 dev_mc = dev_find_slot(0, PCI_DEVFN(CONFIG_CDB, 0)); //0x00
886 if (dev_mc && dev_mc->bus) {
887 printk(BIOS_DEBUG, "%s found", dev_path(dev_mc));
888 pci_domain = dev_mc->bus->dev;
889 if (pci_domain && (pci_domain->path.type == DEVICE_PATH_DOMAIN)) {
890 printk(BIOS_DEBUG, "\n%s move to ",dev_path(dev_mc));
891 dev_mc->bus->secondary = CONFIG_CBB; // move to 0xff
892 printk(BIOS_DEBUG, "%s",dev_path(dev_mc));
893 } else {
894 printk(BIOS_DEBUG, " but it is not under pci_domain directly ");
895 }
896 printk(BIOS_DEBUG, "\n");
897 }
898 dev_mc = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
899 if (!dev_mc) {
900 dev_mc = dev_find_slot(0, PCI_DEVFN(0x18, 0));
901 if (dev_mc && dev_mc->bus) {
902 printk(BIOS_DEBUG, "%s found\n", dev_path(dev_mc));
903 pci_domain = dev_mc->bus->dev;
904 if (pci_domain && (pci_domain->path.type == DEVICE_PATH_DOMAIN)) {
905 if ((pci_domain->link_list) && (pci_domain->link_list->children == dev_mc)) {
906 printk(BIOS_DEBUG, "%s move to ",dev_path(dev_mc));
907 dev_mc->bus->secondary = CONFIG_CBB; // move to 0xff
908 printk(BIOS_DEBUG, "%s\n",dev_path(dev_mc));
909 while (dev_mc) {
910 printk(BIOS_DEBUG, "%s move to ",dev_path(dev_mc));
911 dev_mc->path.pci.devfn -= PCI_DEVFN(0x18,0);
912 printk(BIOS_DEBUG, "%s\n",dev_path(dev_mc));
913 dev_mc = dev_mc->sibling;
914 }
915 }
916 }
917 }
918 }
919#endif
920 dev_mc = dev_find_slot(CONFIG_CBB, PCI_DEVFN(CONFIG_CDB, 0));
921 if (!dev_mc) {
922 printk(BIOS_ERR, "%02x:%02x.0 not found", CONFIG_CBB, CONFIG_CDB);
923 die("");
924 }
925 sysconf_init(dev_mc);
926#if CONFIG_CBB && (MAX_NODE_NUMS > 32)
Elyes HAOUASa8131602016-09-19 10:27:57 -0600927 if (node_nums > 32) { // need to put node 32 to node 63 to bus 0xfe
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600928 if (pci_domain->link_list && !pci_domain->link_list->next) {
929 struct bus *new_link = new_link(pci_domain);
930 pci_domain->link_list->next = new_link;
931 new_link->link_num = 1;
932 new_link->dev = pci_domain;
933 new_link->children = 0;
934 printk(BIOS_DEBUG, "%s links now 2\n", dev_path(pci_domain));
935 }
936 pci_domain->link_list->next->secondary = CONFIG_CBB - 1;
937 }
938#endif
939
940 /* Get Max Number of cores(MNC) */
Kyösti Mälkkid41feed2017-09-24 16:23:57 +0300941 coreid_bits = (cpuid_ecx(0x80000008) & 0x0000F000) >> 12;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600942 core_max = 1 << (coreid_bits & 0x000F); //mnc
943
944 ApicIdCoreIdSize = ((cpuid_ecx(0x80000008)>>12) & 0xF);
945 if (ApicIdCoreIdSize) {
946 core_nums = (1 << ApicIdCoreIdSize) - 1;
947 } else {
948 core_nums = 3; //quad core
949 }
950
951 /* Find which cpus are present */
952 cpu_bus = dev->link_list;
953 for (i = 0; i < node_nums; i++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300954 struct device *cdb_dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600955 unsigned busn, devn;
956 struct bus *pbus;
957
958 busn = CONFIG_CBB;
959 devn = CONFIG_CDB + i;
960 pbus = dev_mc->bus;
961#if CONFIG_CBB && (MAX_NODE_NUMS > 32)
962 if (i >= 32) {
963 busn--;
964 devn -= 32;
965 pbus = pci_domain->link_list->next;
966 }
967#endif
968
969 /* Find the cpu's pci device */
970 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 0));
971 if (!cdb_dev) {
972 /* If I am probing things in a weird order
973 * ensure all of the cpu's pci devices are found.
974 */
975 int fn;
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200976 for (fn = 0; fn <= 5; fn++) { //FBDIMM?
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600977 cdb_dev = pci_probe_dev(NULL, pbus,
978 PCI_DEVFN(devn, fn));
979 }
980 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 0));
981 } else {
982 /* Ok, We need to set the links for that device.
983 * otherwise the device under it will not be scanned
984 */
Kyösti Mälkkic5163ed82015-02-04 13:25:37 +0200985
986 add_more_links(cdb_dev, 4);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600987 }
988
989 family = cpuid_eax(1);
990 family = (family >> 20) & 0xFF;
991 if (family == 1) { //f10
992 u32 dword;
993 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 3));
994 dword = pci_read_config32(cdb_dev, 0xe8);
995 siblings = ((dword & BIT15) >> 13) | ((dword & (BIT13 | BIT12)) >> 12);
996 } else if (family == 7) {//f16
997 cdb_dev = dev_find_slot(busn, PCI_DEVFN(devn, 5));
998 if (cdb_dev && cdb_dev->enabled) {
999 siblings = pci_read_config32(cdb_dev, 0x84);
1000 siblings &= 0xFF;
1001 }
1002 } else {
1003 siblings = 0; //default one core
1004 }
1005 int enable_node = cdb_dev && cdb_dev->enabled;
Elyes HAOUASa8131602016-09-19 10:27:57 -06001006 printk(BIOS_SPEW, "%s family%xh, core_max = 0x%x, core_nums = 0x%x, siblings = 0x%x\n",
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001007 dev_path(cdb_dev), 0x0f + family, core_max, core_nums, siblings);
1008
Elyes HAOUASa8131602016-09-19 10:27:57 -06001009 for (j = 0; j <= siblings; j++) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001010 u32 lapicid_start = 0;
1011
1012 /*
1013 * APIC ID calucation is tightly coupled with AGESA v5 code.
1014 * This calculation MUST match the assignment calculation done
1015 * in LocalApicInitializationAtEarly() function.
1016 * And reference GetLocalApicIdForCore()
1017 *
1018 * Apply apic enumeration rules
1019 * For systems with >= 16 APICs, put the IO-APICs at 0..n and
1020 * put the local-APICs at m..z
1021 *
1022 * This is needed because many IO-APIC devices only have 4 bits
1023 * for their APIC id and therefore must reside at 0..15
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +02001024 */
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001025 if ((node_nums * core_max) + ioapic_count >= 0x10) {
1026 lapicid_start = (ioapic_count - 1) / core_max;
1027 lapicid_start = (lapicid_start + 1) * core_max;
Elyes HAOUASa8131602016-09-19 10:27:57 -06001028 printk(BIOS_SPEW, "lpaicid_start = 0x%x ", lapicid_start);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001029 }
1030 u32 apic_id = (lapicid_start * (i/modules + 1)) + ((i % modules) ? (j + (siblings + 1)) : j);
Elyes HAOUASa8131602016-09-19 10:27:57 -06001031 printk(BIOS_SPEW, "node 0x%x core 0x%x apicid = 0x%x\n",
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001032 i, j, apic_id);
1033
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001034 struct device *cpu = add_cpu_device(cpu_bus, apic_id, enable_node);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001035 if (cpu)
1036 amd_cpu_topology(cpu, i, j);
1037 } //j
1038 }
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001039}
1040
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001041static void cpu_bus_init(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001042{
1043 initialize_cpus(dev->link_list);
1044}
1045
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001046static struct device_operations cpu_bus_ops = {
Kyösti Mälkki48f82a92016-12-02 16:02:30 +02001047 .read_resources = DEVICE_NOOP,
1048 .set_resources = DEVICE_NOOP,
Edward O'Callaghan812d2a42014-10-31 08:17:23 +11001049 .enable_resources = DEVICE_NOOP,
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001050 .init = cpu_bus_init,
1051 .scan_bus = cpu_bus_scan,
1052};
1053
1054static void root_complex_enable_dev(struct device *dev)
1055{
1056 static int done = 0;
1057
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001058 if (!done) {
1059 setup_bsp_ramtop();
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001060 done = 1;
1061 }
1062
1063 /* Set the operations if it is a special bus type */
1064 if (dev->path.type == DEVICE_PATH_DOMAIN) {
1065 dev->ops = &pci_domain_ops;
1066 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
1067 dev->ops = &cpu_bus_ops;
1068 }
1069}
1070
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +03001071struct chip_operations northbridge_amd_pi_00730F01_root_complex_ops = {
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001072 CHIP_NAME("AMD FAM16 Root Complex")
1073 .enable_dev = root_complex_enable_dev,
1074};
1075
1076/*********************************************************************
1077 * Change the vendor / device IDs to match the generic VBIOS header. *
1078 *********************************************************************/
1079u32 map_oprom_vendev(u32 vendev)
1080{
1081 u32 new_vendev;
1082 new_vendev =
1083 ((0x10029850 <= vendev) && (vendev <= 0x1002986F)) ? 0x10029850 : vendev;
1084
1085 if (vendev != new_vendev)
1086 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n", vendev, new_vendev);
1087
1088 return new_vendev;
1089}