blob: ba17c614e539289f4ef029684505b24e71d6daa3 [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.
Timothy Pearson9ef07d82016-06-13 13:48:58 -05005 * Copyright (C) 2016 Raptor Engineering, LLC
6 * Copyright (C) 2018 3mdeb Embedded Systems Consulting
Bruce Griffith27ed80b2014-08-15 11:46:25 -06007 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; version 2 of the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Bruce Griffith27ed80b2014-08-15 11:46:25 -060016 */
17
18#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060020#include <arch/acpi.h>
21#include <stdint.h>
22#include <device/device.h>
23#include <device/pci.h>
24#include <device/pci_ids.h>
25#include <device/hypertransport.h>
26#include <stdlib.h>
27#include <string.h>
28#include <lib.h>
29#include <cpu/cpu.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060030#include <Porting.h>
31#include <AGESA.h>
32#include <FieldAccessors.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060033#include <Topology.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020034#include <cpu/x86/lapic.h>
35#include <cpu/amd/msr.h>
36#include <cpu/amd/mtrr.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020037#include <arch/acpigen.h>
Kyösti Mälkkibbd23772019-01-10 05:41:23 +020038#include <northbridge/amd/pi/nb_common.h>
Kyösti Mälkkied8d2772017-07-15 17:12:44 +030039#include <northbridge/amd/agesa/agesa_helper.h>
Julius Wernercd49cce2019-03-05 16:53:33 -080040#if CONFIG(BINARYPI_LEGACY_WRAPPER)
Kyösti Mälkki023ed1f2014-10-22 08:05:36 +030041#include <northbridge/amd/pi/agesawrapper.h>
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +030042#include <northbridge/amd/pi/agesawrapper_call.h>
Kyösti Mälkki903ce252016-11-25 11:21:02 +020043#endif
Bruce Griffith27ed80b2014-08-15 11:46:25 -060044
Kyösti Mälkki113f6702018-05-20 20:12:32 +030045#define MAX_NODE_NUMS MAX_NODES
Bruce Griffith27ed80b2014-08-15 11:46:25 -060046
Bruce Griffith27ed80b2014-08-15 11:46:25 -060047typedef struct dram_base_mask {
48 u32 base; //[47:27] at [28:8]
49 u32 mask; //[47:27] at [28:8] and enable at bit 0
50} dram_base_mask_t;
51
Subrata Banikb1434fc2019-03-15 22:20:41 +053052static unsigned int node_nums;
53static unsigned int sblink;
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030054static struct device *__f0_dev[MAX_NODE_NUMS];
55static struct device *__f1_dev[MAX_NODE_NUMS];
56static struct device *__f2_dev[MAX_NODE_NUMS];
57static struct device *__f4_dev[MAX_NODE_NUMS];
Subrata Banikb1434fc2019-03-15 22:20:41 +053058static unsigned int fx_devs = 0;
Bruce Griffith27ed80b2014-08-15 11:46:25 -060059
60static dram_base_mask_t get_dram_base_mask(u32 nodeid)
61{
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030062 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -060063 dram_base_mask_t d;
64 dev = __f1_dev[0];
65 u32 temp;
66 temp = pci_read_config32(dev, 0x44 + (nodeid << 3)); //[39:24] at [31:16]
67 d.mask = ((temp & 0xfff80000)>>(8+3)); // mask out DramMask [26:24] too
68 temp = pci_read_config32(dev, 0x144 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
69 d.mask |= temp<<21;
70 temp = pci_read_config32(dev, 0x40 + (nodeid << 3)); //[39:24] at [31:16]
71 d.mask |= (temp & 1); // enable bit
72 d.base = ((temp & 0xfff80000)>>(8+3)); // mask out DramBase [26:24) too
73 temp = pci_read_config32(dev, 0x140 + (nodeid <<3)) & 0xff; //[47:40] at [7:0]
74 d.base |= temp<<21;
75 return d;
76}
77
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030078static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
Bruce Griffith27ed80b2014-08-15 11:46:25 -060079 u32 io_min, u32 io_max)
80{
81 u32 i;
82 u32 tempreg;
83 /* io range allocation */
84 tempreg = (nodeid&0xf) | ((nodeid & 0x30)<<(8-4)) | (linkn<<4) | ((io_max&0xf0)<<(12-4)); //limit
Elyes HAOUASa8131602016-09-19 10:27:57 -060085 for (i = 0; i < node_nums; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060086 pci_write_config32(__f1_dev[i], reg+4, tempreg);
Elyes HAOUASa8131602016-09-19 10:27:57 -060087 tempreg = 3 /*| (3<<4)*/ | ((io_min&0xf0)<<(12-4)); //base :ISA and VGA ?
Elyes HAOUASa8131602016-09-19 10:27:57 -060088 for (i = 0; i < node_nums; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060089 pci_write_config32(__f1_dev[i], reg, tempreg);
90}
91
92static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index, u32 mmio_min, u32 mmio_max, u32 nodes)
93{
94 u32 i;
95 u32 tempreg;
96 /* io range allocation */
97 tempreg = (nodeid&0xf) | (linkn<<4) | (mmio_max&0xffffff00); //limit
Elyes HAOUASa8131602016-09-19 10:27:57 -060098 for (i = 0; i < nodes; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060099 pci_write_config32(__f1_dev[i], reg+4, tempreg);
100 tempreg = 3 | (nodeid & 0x30) | (mmio_min&0xffffff00);
Elyes HAOUASa8131602016-09-19 10:27:57 -0600101 for (i = 0; i < node_nums; i++)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600102 pci_write_config32(__f1_dev[i], reg, tempreg);
103}
104
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300105static struct device *get_node_pci(u32 nodeid, u32 fn)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600106{
Kyösti Mälkkibbd23772019-01-10 05:41:23 +0200107 return pcidev_on_root(DEV_CDB + nodeid, fn);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600108}
109
110static void get_fx_devs(void)
111{
112 int i;
113 for (i = 0; i < MAX_NODE_NUMS; i++) {
114 __f0_dev[i] = get_node_pci(i, 0);
115 __f1_dev[i] = get_node_pci(i, 1);
116 __f2_dev[i] = get_node_pci(i, 2);
117 __f4_dev[i] = get_node_pci(i, 4);
118 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
119 fx_devs = i+1;
120 }
121 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
122 die("Cannot find 0:0x18.[0|1]\n");
123 }
Elyes HAOUASa8131602016-09-19 10:27:57 -0600124 printk(BIOS_DEBUG, "fx_devs = 0x%x\n", fx_devs);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600125}
126
Subrata Banikb1434fc2019-03-15 22:20:41 +0530127static u32 f1_read_config32(unsigned int reg)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600128{
129 if (fx_devs == 0)
130 get_fx_devs();
131 return pci_read_config32(__f1_dev[0], reg);
132}
133
Subrata Banikb1434fc2019-03-15 22:20:41 +0530134static void f1_write_config32(unsigned int reg, u32 value)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600135{
136 int i;
137 if (fx_devs == 0)
138 get_fx_devs();
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200139 for (i = 0; i < fx_devs; i++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300140 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600141 dev = __f1_dev[i];
142 if (dev && dev->enabled) {
143 pci_write_config32(dev, reg, value);
144 }
145 }
146}
147
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300148static u32 amdfam16_nodeid(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600149{
Kyösti Mälkkibbd23772019-01-10 05:41:23 +0200150 return (dev->path.pci.devfn >> 3) - DEV_CDB;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600151}
152
153static void set_vga_enable_reg(u32 nodeid, u32 linkn)
154{
155 u32 val;
156
157 val = 1 | (nodeid<<4) | (linkn<<12);
158 /* it will routing
159 * (1)mmio 0xa0000:0xbffff
160 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
161 */
162 f1_write_config32(0xf4, val);
163
164}
165
166/**
167 * @return
168 * @retval 2 resoure does not exist, usable
169 * @retval 0 resource exists, not usable
170 * @retval 1 resource exist, resource has been allocated before
171 */
Subrata Banikb1434fc2019-03-15 22:20:41 +0530172static int reg_useable(unsigned int reg, struct device *goal_dev,
173 unsigned int goal_nodeid, unsigned int goal_link)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600174{
175 struct resource *res;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530176 unsigned int nodeid, link = 0;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600177 int result;
178 res = 0;
179 for (nodeid = 0; !res && (nodeid < fx_devs); nodeid++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300180 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600181 dev = __f0_dev[nodeid];
182 if (!dev)
183 continue;
184 for (link = 0; !res && (link < 8); link++) {
185 res = probe_resource(dev, IOINDEX(0x1000 + reg, link));
186 }
187 }
188 result = 2;
189 if (res) {
190 result = 0;
191 if ((goal_link == (link - 1)) &&
192 (goal_nodeid == (nodeid - 1)) &&
193 (res->flags <= 1)) {
194 result = 1;
195 }
196 }
197 return result;
198}
199
Subrata Banikb1434fc2019-03-15 22:20:41 +0530200static struct resource *amdfam16_find_iopair(struct device *dev,
201 unsigned int nodeid, unsigned int 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 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200313 mmconf_resource(dev, MMIO_CONF_BASE);
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;
Subrata Banikb1434fc2019-03-15 22:20:41 +0530319 unsigned int reg, link_num;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600320 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
Subrata Banikb1434fc2019-03-15 22:20:41 +0530367static void create_vga_resource(struct device *dev, unsigned int 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) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800375#if 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{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530397 unsigned int nodeid;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600398 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
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500440static void add_ivhd_dev_entry(struct device *parent, struct device *dev,
441 unsigned long *current, uint16_t *length,
442 uint8_t type, uint8_t data)
443{
444 uint8_t *p;
445 p = (uint8_t *) *current;
446
447 if (type == 0x2) {
448 /* Entry type */
449 p[0] = type;
450 /* Device */
451 p[1] = dev->path.pci.devfn;
452 /* Bus */
453 p[2] = dev->bus->secondary;
454 /* Data */
455 p[3] = data;
456 /* [4:7] Padding */
457 p[4] = 0x0;
458 p[5] = 0x0;
459 p[6] = 0x0;
460 p[7] = 0x0;
461 *length += 8;
462 *current += 8;
463 } else if (type == 0x42) {
464 /* Entry type */
465 p[0] = type;
466 /* Device */
467 p[1] = dev->path.pci.devfn;
468 /* Bus */
469 p[2] = dev->bus->secondary;
470 /* Data */
471 p[3] = 0x0;
472 /* Reserved */
473 p[4] = 0x0;
474 /* Device */
475 p[5] = parent->path.pci.devfn;
476 /* Bus */
477 p[6] = parent->bus->secondary;
478 /* Reserved */
479 p[7] = 0x0;
480 *length += 8;
481 *current += 8;
482 }
483}
484
485static void add_ivrs_device_entries(struct device *parent, struct device *dev,
486 unsigned int depth, int linknum, int8_t *root_level,
487 unsigned long *current, uint16_t *length)
488{
489 struct device *sibling;
490 struct bus *link;
491 unsigned int header_type;
492 unsigned int is_pcie;
493
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500494 if (dev->path.type == DEVICE_PATH_PCI) {
495
496 if ((dev->bus->secondary == 0x0) &&
497 (dev->path.pci.devfn == 0x0))
498 *root_level = depth;
499
500 if ((*root_level != -1) && (dev->enabled)) {
501 if (depth == *root_level) {
502 if (dev->path.pci.devfn == (0x14 << 3)) {
503 /* SMBUS controller */
504 add_ivhd_dev_entry(parent, dev, current, length, 0x2, 0x97);
505 } else if (dev->path.pci.devfn != 0x2 &&
506 dev->path.pci.devfn < (0x2 << 3)) {
507 /* FCH control device */
508 } else {
509 /* Other devices */
510 add_ivhd_dev_entry(parent, dev, current, length, 0x2, 0x0);
511 }
512 } else {
513 header_type = dev->hdr_type & 0x7f;
514 is_pcie = pci_find_capability(dev, PCI_CAP_ID_PCIE);
515 if (((header_type == PCI_HEADER_TYPE_NORMAL) ||
516 (header_type == PCI_HEADER_TYPE_BRIDGE))
517 && is_pcie) {
518 /* Device or Bridge is PCIe */
519 add_ivhd_dev_entry(parent, dev, current, length, 0x2, 0x0);
520 } else if ((header_type == PCI_HEADER_TYPE_NORMAL) &&
521 !is_pcie) {
522 add_ivhd_dev_entry(parent, dev, current, length, 0x42, 0x0);
523 /* Device is legacy PCI or PCI-X */
524 }
525 }
526 }
527 }
528
529 for (link = dev->link_list; link; link = link->next)
530 for (sibling = link->children; sibling; sibling =
531 sibling->sibling)
532 add_ivrs_device_entries(dev, sibling, depth + 1, depth,
533 root_level, current, length);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500534}
535
536unsigned long acpi_fill_ivrs_ioapic(acpi_ivrs_t *ivrs, unsigned long current)
537{
538 uint8_t *p;
539
540 uint32_t apicid_sb800;
541 uint32_t apicid_northbridge;
542
543 apicid_sb800 = CONFIG_MAX_CPUS;
544 apicid_northbridge = CONFIG_MAX_CPUS + 1;
545
546 /* Describe NB IOAPIC */
547 p = (uint8_t *)current;
548 p[0] = 0x48; /* Entry type */
549 p[1] = 0; /* Device */
550 p[2] = 0; /* Bus */
551 p[3] = 0x0; /* Data */
552 p[4] = apicid_northbridge; /* IOAPIC ID */
553 p[5] = 0x0; /* Device 0 Function 0 */
554 p[6] = 0x0; /* Northbridge bus */
555 p[7] = 0x1; /* Variety */
556 current += 8;
557
558 /* Describe SB IOAPIC */
559 p = (uint8_t *)current;
560 p[0] = 0x48; /* Entry type */
561 p[1] = 0; /* Device */
562 p[2] = 0; /* Bus */
563 p[3] = 0xd7; /* Data */
564 p[4] = apicid_sb800; /* IOAPIC ID */
565 p[5] = 0x14 << 3; /* Device 0x14 Function 0 */
566 p[6] = 0x0; /* Southbridge bus */
567 p[7] = 0x1; /* Variety */
568 current += 8;
569
570 return current;
571}
572
573static unsigned long acpi_fill_ivrs(acpi_ivrs_t *ivrs, unsigned long current)
574{
575 uint8_t *p;
Piotr Król063e1562018-07-22 20:52:26 +0200576 acpi_ivrs_t *ivrs_agesa;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500577
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +0300578 struct device *nb_dev = pcidev_on_root(0x0, 0);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500579 if (!nb_dev) {
580
581 printk(BIOS_WARNING, "%s: G-series northbridge device not present!\n", __func__);
582 printk(BIOS_WARNING, "%s: IVRS table not generated...\n", __func__);
583
584 return (unsigned long)ivrs;
585 }
586
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500587
Piotr Król063e1562018-07-22 20:52:26 +0200588 /* obtain IOMMU base address */
589 ivrs_agesa = agesawrapper_getlateinitptr(PICK_IVRS);
590 if (ivrs_agesa != NULL) {
591 ivrs->iv_info = 0x0;
592 /* Maximum supported virtual address size */
593 ivrs->iv_info |= (0x40 << 15);
594 /* Maximum supported physical address size */
595 ivrs->iv_info |= (0x30 << 8);
596 /* Guest virtual address width */
597 ivrs->iv_info |= (0x2 << 5);
598
599 ivrs->ivhd.type = 0x10;
600 ivrs->ivhd.flags = 0x0e;
601 /* Enable ATS support */
602 ivrs->ivhd.flags |= 0x10;
603 ivrs->ivhd.length = sizeof(struct acpi_ivrs_ivhd);
604 /* BDF <bus>:00.2 */
605 ivrs->ivhd.device_id = 0x2 | (nb_dev->bus->secondary << 8);
606 /* Capability block 0x40 (type 0xf, "Secure device") */
607 ivrs->ivhd.capability_offset = 0x40;
608 ivrs->ivhd.iommu_base_low = ivrs_agesa->ivhd.iommu_base_low;
609 ivrs->ivhd.iommu_base_high = ivrs_agesa->ivhd.iommu_base_high;
610 ivrs->ivhd.pci_segment_group = 0x0;
611 ivrs->ivhd.iommu_info = 0x0;
612 ivrs->ivhd.iommu_info |= (0x13 << 8);
613 /* use only performance counters related bits:
614 * PNCounters[16:13] and
615 * PNBanks[22:17],
616 * otherwise 0 */
617 ivrs->ivhd.iommu_feature_info =
618 ivrs_agesa->ivhd.iommu_feature_info & 0x7fe000;
619 } else {
620 printk(BIOS_WARNING, "%s: AGESA returned NULL IVRS\n", __func__);
621
622 return (unsigned long)ivrs;
623 }
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500624
625 /* Describe HPET */
626 p = (uint8_t *)current;
627 p[0] = 0x48; /* Entry type */
628 p[1] = 0; /* Device */
629 p[2] = 0; /* Bus */
630 p[3] = 0xd7; /* Data */
631 p[4] = 0x0; /* HPET number */
632 p[5] = 0x14 << 3; /* HPET device */
633 p[6] = nb_dev->bus->secondary; /* HPET bus */
634 p[7] = 0x2; /* Variety */
635 ivrs->ivhd.length += 8;
636 current += 8;
637
638 /* Describe PCI devices */
Jacob Garber293e6a92019-07-17 11:47:19 -0600639 int8_t root_level = -1;
640 add_ivrs_device_entries(NULL, all_devices, 0, -1, &root_level, &current,
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500641 &ivrs->ivhd.length);
642
643 /* Describe IOAPICs */
644 unsigned long prev_current = current;
645 current = acpi_fill_ivrs_ioapic(ivrs, current);
646 ivrs->ivhd.length += (current - prev_current);
647
648 return current;
649}
650
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300651static void northbridge_fill_ssdt_generator(struct device *device)
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200652{
653 msr_t msr;
654 char pscope[] = "\\_SB.PCI0";
655
656 acpigen_write_scope(pscope);
657 msr = rdmsr(TOP_MEM);
658 acpigen_write_name_dword("TOM1", msr.lo);
659 msr = rdmsr(TOP_MEM2);
660 /*
661 * Since XP only implements parts of ACPI 2.0, we can't use a qword
662 * here.
663 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
664 * slide 22ff.
665 * Shift value right by 20 bit to make it fit into 32bit,
666 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
667 */
668 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
669 acpigen_pop_len();
670}
671
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300672static unsigned long agesa_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200673 unsigned long current,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200674 acpi_rsdp_t *rsdp)
675{
676 acpi_srat_t *srat;
677 acpi_slit_t *slit;
678 acpi_header_t *ssdt;
679 acpi_header_t *alib;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500680 acpi_ivrs_t *ivrs;
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200681
682 /* HEST */
683 current = ALIGN(current, 8);
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100684 acpi_write_hest((void *)current, acpi_fill_hest);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200685 acpi_add_table(rsdp, (void *)current);
686 current += ((acpi_header_t *)current)->length;
687
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500688 /* IVRS */
689 current = ALIGN(current, 8);
690 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
691 ivrs = (acpi_ivrs_t *) current;
692 acpi_create_ivrs(ivrs, acpi_fill_ivrs);
693 current += ivrs->header.length;
694 acpi_add_table(rsdp, ivrs);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200695
696 /* SRAT */
697 current = ALIGN(current, 8);
698 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
699 srat = (acpi_srat_t *) agesawrapper_getlateinitptr (PICK_SRAT);
700 if (srat != NULL) {
701 memcpy((void *)current, srat, srat->header.length);
702 srat = (acpi_srat_t *) current;
703 current += srat->header.length;
704 acpi_add_table(rsdp, srat);
705 } else {
706 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
707 }
708
709 /* SLIT */
710 current = ALIGN(current, 8);
711 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
712 slit = (acpi_slit_t *) agesawrapper_getlateinitptr (PICK_SLIT);
713 if (slit != NULL) {
714 memcpy((void *)current, slit, slit->header.length);
715 slit = (acpi_slit_t *) current;
716 current += slit->header.length;
717 acpi_add_table(rsdp, slit);
718 } else {
719 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
720 }
721
722 /* ALIB */
723 current = ALIGN(current, 16);
724 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
725 alib = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_ALIB);
726 if (alib != NULL) {
727 memcpy((void *)current, alib, alib->length);
728 alib = (acpi_header_t *) current;
729 current += alib->length;
730 acpi_add_table(rsdp, (void *)alib);
731 }
732 else {
733 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
734 }
735
736 /* this pstate ssdt may cause Blue Screen: Fixed: Keep this comment for a while. */
737 /* SSDT */
738 current = ALIGN(current, 16);
739 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
740 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr (PICK_PSTATE);
741 if (ssdt != NULL) {
742 memcpy((void *)current, ssdt, ssdt->length);
743 ssdt = (acpi_header_t *) current;
744 current += ssdt->length;
745 }
746 else {
747 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
748 }
749 acpi_add_table(rsdp,ssdt);
750
751 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
752 return current;
753}
754
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600755static struct device_operations northbridge_operations = {
756 .read_resources = read_resources,
757 .set_resources = set_resources,
758 .enable_resources = pci_dev_enable_resources,
759 .init = northbridge_init,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200760 .acpi_fill_ssdt_generator = northbridge_fill_ssdt_generator,
761 .write_acpi_tables = agesa_write_acpi_tables,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600762 .enable = 0,
763 .ops_pci = 0,
764};
765
766static const struct pci_driver family16_northbridge __pci_driver = {
767 .ops = &northbridge_operations,
768 .vendor = PCI_VENDOR_ID_AMD,
Marshall Dawson463f46e2016-10-14 20:46:08 -0600769 .device = PCI_DEVICE_ID_AMD_16H_MODEL_303F_NB_HT,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600770};
771
772static const struct pci_driver family10_northbridge __pci_driver = {
773 .ops = &northbridge_operations,
774 .vendor = PCI_VENDOR_ID_AMD,
775 .device = PCI_DEVICE_ID_AMD_10H_NB_HT,
776};
777
Dave Frodin891f71a2015-01-19 15:58:24 -0700778static void fam16_finalize(void *chip_info)
779{
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300780 struct device *dev;
Dave Frodin891f71a2015-01-19 15:58:24 -0700781 u32 value;
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +0300782 dev = pcidev_on_root(0, 0); /* clear IoapicSbFeatureEn */
Dave Frodin891f71a2015-01-19 15:58:24 -0700783 pci_write_config32(dev, 0xF8, 0);
784 pci_write_config32(dev, 0xFC, 5); /* TODO: move it to dsdt.asl */
785
786 /* disable No Snoop */
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +0300787 dev = pcidev_on_root(1, 1);
Kyösti Mälkki69f6fd42019-01-21 14:19:01 +0200788 if (dev != NULL) {
789 value = pci_read_config32(dev, 0x60);
790 value &= ~(1 << 11);
791 pci_write_config32(dev, 0x60, value);
792 }
Dave Frodin891f71a2015-01-19 15:58:24 -0700793}
794
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +0300795struct chip_operations northbridge_amd_pi_00730F01_ops = {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600796 CHIP_NAME("AMD FAM16 Northbridge")
797 .enable_dev = 0,
Dave Frodin891f71a2015-01-19 15:58:24 -0700798 .final = fam16_finalize,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600799};
800
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300801static void domain_read_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600802{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530803 unsigned int reg;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600804
805 /* Find the already assigned resource pairs */
806 get_fx_devs();
807 for (reg = 0x80; reg <= 0xd8; reg+= 0x08) {
808 u32 base, limit;
809 base = f1_read_config32(reg);
810 limit = f1_read_config32(reg + 0x04);
811 /* Is this register allocated? */
812 if ((base & 3) != 0) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530813 unsigned int nodeid, reg_link;
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300814 struct device *reg_dev;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600815 if (reg < 0xc0) { // mmio
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600816 nodeid = (limit & 0xf) + (base&0x30);
817 } else { // io
818 nodeid = (limit & 0xf) + ((base>>4)&0x30);
819 }
820 reg_link = (limit >> 4) & 7;
821 reg_dev = __f0_dev[nodeid];
822 if (reg_dev) {
823 /* Reserve the resource */
824 struct resource *res;
825 res = new_resource(reg_dev, IOINDEX(0x1000 + reg, reg_link));
826 if (res) {
827 res->flags = 1;
828 }
829 }
830 }
831 }
832 /* FIXME: do we need to check extend conf space?
833 I don't believe that much preset value */
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600834 pci_domain_read_resources(dev);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600835}
836
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300837static void domain_enable_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600838{
Julius Wernercd49cce2019-03-05 16:53:33 -0800839#if CONFIG(BINARYPI_LEGACY_WRAPPER)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600840 /* Must be called after PCI enumeration and resource allocation */
841 if (!acpi_is_wakeup_s3())
842 AGESAWRAPPER(amdinitmid);
843
844 printk(BIOS_DEBUG, " ader - leaving domain_enable_resources.\n");
Kyösti Mälkki903ce252016-11-25 11:21:02 +0200845#endif
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600846}
847
848#if CONFIG_HW_MEM_HOLE_SIZEK != 0
849struct hw_mem_hole_info {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530850 unsigned int hole_startk;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600851 int node_id;
852};
853static struct hw_mem_hole_info get_hw_mem_hole_info(void)
854{
855 struct hw_mem_hole_info mem_hole;
856 int i;
857 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
858 mem_hole.node_id = -1;
859 for (i = 0; i < node_nums; i++) {
860 dram_base_mask_t d;
861 u32 hole;
862 d = get_dram_base_mask(i);
863 if (!(d.mask & 1)) continue; // no memory on this node
864 hole = pci_read_config32(__f1_dev[i], 0xf0);
865 if (hole & 2) { // we find the hole
866 mem_hole.hole_startk = (hole & (0xff<<24)) >> 10;
867 mem_hole.node_id = i; // record the node No with hole
868 break; // only one hole
869 }
870 }
871
872 /* We need to double check if there is special set on base reg and limit reg
873 * are not continuous instead of hole, it will find out its hole_startk.
874 */
875 if (mem_hole.node_id == -1) {
876 resource_t limitk_pri = 0;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600877 for (i = 0; i < node_nums; i++) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600878 dram_base_mask_t d;
879 resource_t base_k, limit_k;
880 d = get_dram_base_mask(i);
881 if (!(d.base & 1)) continue;
882 base_k = ((resource_t)(d.base & 0x1fffff00)) <<9;
883 if (base_k > 4 *1024 * 1024) break; // don't need to go to check
884 if (limitk_pri != base_k) { // we find the hole
885 mem_hole.hole_startk = (unsigned)limitk_pri; // must beblow 4G
886 mem_hole.node_id = i;
887 break; //only one hole
888 }
889 limit_k = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
890 limitk_pri = limit_k;
891 }
892 }
893 return mem_hole;
894}
895#endif
896
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300897static void domain_set_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600898{
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600899 unsigned long mmio_basek;
900 u32 pci_tolm;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600901 int i, idx;
902 struct bus *link;
903#if CONFIG_HW_MEM_HOLE_SIZEK != 0
904 struct hw_mem_hole_info mem_hole;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600905#endif
906
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600907 pci_tolm = 0xffffffffUL;
908 for (link = dev->link_list; link; link = link->next) {
909 pci_tolm = find_pci_tolm(link);
910 }
911
912 // FIXME handle interleaved nodes. If you fix this here, please fix
913 // amdk8, too.
914 mmio_basek = pci_tolm >> 10;
915 /* Round mmio_basek to something the processor can support */
916 mmio_basek &= ~((1 << 6) -1);
917
918 // FIXME improve mtrr.c so we don't use up all of the mtrrs with a 64M
919 // MMIO hole. If you fix this here, please fix amdk8, too.
920 /* Round the mmio hole to 64M */
921 mmio_basek &= ~((64*1024) - 1);
922
923#if CONFIG_HW_MEM_HOLE_SIZEK != 0
924 /* if the hw mem hole is already set in raminit stage, here we will compare
925 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
926 * use hole_basek as mmio_basek and we don't need to reset hole.
927 * otherwise We reset the hole to the mmio_basek
928 */
929
930 mem_hole = get_hw_mem_hole_info();
931
932 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
933 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
934 mmio_basek = mem_hole.hole_startk;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600935 }
936#endif
937
938 idx = 0x10;
939 for (i = 0; i < node_nums; i++) {
940 dram_base_mask_t d;
941 resource_t basek, limitk, sizek; // 4 1T
942
943 d = get_dram_base_mask(i);
944
945 if (!(d.mask & 1)) continue;
946 basek = ((resource_t)(d.base & 0x1fffff00)) << 9; // could overflow, we may lost 6 bit here
Elyes HAOUAS7db506c2016-10-02 11:56:39 +0200947 limitk = ((resource_t)(((d.mask & ~1) + 0x000FF) & 0x1fffff00)) << 9;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600948
949 sizek = limitk - basek;
950
951 /* see if we need a hole from 0xa0000 to 0xbffff */
952 if ((basek < ((8*64)+(8*16))) && (sizek > ((8*64)+(16*16)))) {
953 ram_resource(dev, (idx | i), basek, ((8*64)+(8*16)) - basek);
954 idx += 0x10;
955 basek = (8*64)+(16*16);
956 sizek = limitk - ((8*64)+(16*16));
957
958 }
959
960 //printk(BIOS_DEBUG, "node %d : mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n", i, mmio_basek, basek, limitk);
961
962 /* split the region to accommodate pci memory space */
Elyes HAOUASa8131602016-09-19 10:27:57 -0600963 if ((basek < 4*1024*1024) && (limitk > mmio_basek)) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600964 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530965 unsigned int pre_sizek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600966 pre_sizek = mmio_basek - basek;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600967 if (pre_sizek > 0) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600968 ram_resource(dev, (idx | i), basek, pre_sizek);
969 idx += 0x10;
970 sizek -= pre_sizek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600971 }
972 basek = mmio_basek;
973 }
974 if ((basek + sizek) <= 4*1024*1024) {
975 sizek = 0;
976 }
977 else {
978 uint64_t topmem2 = bsp_topmem2();
979 basek = 4*1024*1024;
980 sizek = topmem2/1024 - basek;
981 }
982 }
983
984 ram_resource(dev, (idx | i), basek, sizek);
985 idx += 0x10;
986 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
987 i, mmio_basek, basek, limitk);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600988 }
989
Kyösti Mälkkie87564f2017-04-15 20:07:53 +0300990 add_uma_resource_below_tolm(dev, 7);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600991
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +0200992 for (link = dev->link_list; link; link = link->next) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600993 if (link->children) {
994 assign_resources(link);
995 }
996 }
997}
998
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600999static const char *domain_acpi_name(const struct device *dev)
Philipp Deppenwiese30670122017-03-01 02:24:33 +01001000{
1001 if (dev->path.type == DEVICE_PATH_DOMAIN)
1002 return "PCI0";
1003
1004 return NULL;
1005}
1006
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001007static struct device_operations pci_domain_ops = {
1008 .read_resources = domain_read_resources,
1009 .set_resources = domain_set_resources,
1010 .enable_resources = domain_enable_resources,
1011 .init = NULL,
1012 .scan_bus = pci_domain_scan_bus,
Philipp Deppenwiese30670122017-03-01 02:24:33 +01001013 .acpi_name = domain_acpi_name,
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001014};
1015
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001016static void sysconf_init(struct device *dev) // first node
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001017{
1018 sblink = (pci_read_config32(dev, 0x64)>>8) & 7; // don't forget sublink1
1019 node_nums = ((pci_read_config32(dev, 0x60)>>4) & 7) + 1; //NodeCnt[2:0]
1020}
1021
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001022static void cpu_bus_scan(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001023{
1024 struct bus *cpu_bus;
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001025 struct device *dev_mc;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001026 int i,j;
1027 int coreid_bits;
1028 int core_max = 0;
Subrata Banikb1434fc2019-03-15 22:20:41 +05301029 unsigned int ApicIdCoreIdSize;
1030 unsigned int core_nums;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001031 int siblings = 0;
1032 unsigned int family;
1033 u32 modules = 0;
1034 VOID* modules_ptr = &modules;
1035 BUILD_OPT_CFG* options = NULL;
1036 int ioapic_count = 0;
1037
1038 // TODO Remove the printk's.
1039 printk(BIOS_SPEW, "MullinsPI Debug: Grabbing the AMD Topology Information.\n");
1040 AmdGetValue(AMD_GLOBAL_USER_OPTIONS, (VOID**)&options, sizeof(options));
1041 AmdGetValue(AMD_GLOBAL_NUM_MODULES, &modules_ptr, sizeof(modules));
Alexandru Gagniuc2e0cf142014-12-28 20:38:32 -06001042 modules = *(u32*)modules_ptr;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001043 ASSERT(modules > 0);
1044 ASSERT(options);
1045 ioapic_count = (int)options->CfgPlatNumIoApics;
1046 ASSERT(ioapic_count > 0);
1047 printk(BIOS_SPEW, "MullinsPI Debug: AMD Topology Number of Modules (@0x%p) is %d\n", modules_ptr, modules);
1048 printk(BIOS_SPEW, "MullinsPI Debug: AMD Topology Number of IOAPICs (@0x%p) is %d\n", options, (int)options->CfgPlatNumIoApics);
1049
Kyösti Mälkkibbd23772019-01-10 05:41:23 +02001050 dev_mc = pcidev_on_root(DEV_CDB, 0);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001051 if (!dev_mc) {
Kyösti Mälkkibbd23772019-01-10 05:41:23 +02001052 printk(BIOS_ERR, "0:%02x.0 not found", DEV_CDB);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001053 die("");
1054 }
1055 sysconf_init(dev_mc);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001056
1057 /* Get Max Number of cores(MNC) */
Kyösti Mälkkid41feed2017-09-24 16:23:57 +03001058 coreid_bits = (cpuid_ecx(0x80000008) & 0x0000F000) >> 12;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001059 core_max = 1 << (coreid_bits & 0x000F); //mnc
1060
1061 ApicIdCoreIdSize = ((cpuid_ecx(0x80000008)>>12) & 0xF);
1062 if (ApicIdCoreIdSize) {
1063 core_nums = (1 << ApicIdCoreIdSize) - 1;
1064 } else {
1065 core_nums = 3; //quad core
1066 }
1067
1068 /* Find which cpus are present */
1069 cpu_bus = dev->link_list;
1070 for (i = 0; i < node_nums; i++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001071 struct device *cdb_dev;
Subrata Banikb1434fc2019-03-15 22:20:41 +05301072 unsigned int devn;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001073 struct bus *pbus;
1074
Kyösti Mälkkibbd23772019-01-10 05:41:23 +02001075 devn = DEV_CDB + i;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001076 pbus = dev_mc->bus;
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001077
1078 /* Find the cpu's pci device */
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +03001079 cdb_dev = pcidev_on_root(devn, 0);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001080 if (!cdb_dev) {
1081 /* If I am probing things in a weird order
1082 * ensure all of the cpu's pci devices are found.
1083 */
1084 int fn;
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +02001085 for (fn = 0; fn <= 5; fn++) { //FBDIMM?
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001086 cdb_dev = pci_probe_dev(NULL, pbus,
1087 PCI_DEVFN(devn, fn));
1088 }
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +03001089 cdb_dev = pcidev_on_root(devn, 0);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001090 } else {
1091 /* Ok, We need to set the links for that device.
1092 * otherwise the device under it will not be scanned
1093 */
Kyösti Mälkkic5163ed82015-02-04 13:25:37 +02001094
1095 add_more_links(cdb_dev, 4);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001096 }
1097
1098 family = cpuid_eax(1);
1099 family = (family >> 20) & 0xFF;
1100 if (family == 1) { //f10
1101 u32 dword;
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +03001102 cdb_dev = pcidev_on_root(devn, 3);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001103 dword = pci_read_config32(cdb_dev, 0xe8);
1104 siblings = ((dword & BIT15) >> 13) | ((dword & (BIT13 | BIT12)) >> 12);
1105 } else if (family == 7) {//f16
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +03001106 cdb_dev = pcidev_on_root(devn, 5);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001107 if (cdb_dev && cdb_dev->enabled) {
1108 siblings = pci_read_config32(cdb_dev, 0x84);
1109 siblings &= 0xFF;
1110 }
1111 } else {
1112 siblings = 0; //default one core
1113 }
1114 int enable_node = cdb_dev && cdb_dev->enabled;
Elyes HAOUASa8131602016-09-19 10:27:57 -06001115 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 -06001116 dev_path(cdb_dev), 0x0f + family, core_max, core_nums, siblings);
1117
Elyes HAOUASa8131602016-09-19 10:27:57 -06001118 for (j = 0; j <= siblings; j++) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001119 u32 lapicid_start = 0;
1120
1121 /*
1122 * APIC ID calucation is tightly coupled with AGESA v5 code.
1123 * This calculation MUST match the assignment calculation done
1124 * in LocalApicInitializationAtEarly() function.
1125 * And reference GetLocalApicIdForCore()
1126 *
1127 * Apply apic enumeration rules
1128 * For systems with >= 16 APICs, put the IO-APICs at 0..n and
1129 * put the local-APICs at m..z
1130 *
1131 * This is needed because many IO-APIC devices only have 4 bits
1132 * for their APIC id and therefore must reside at 0..15
Elyes HAOUAS6e8b3c12016-09-02 19:22:00 +02001133 */
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001134 if ((node_nums * core_max) + ioapic_count >= 0x10) {
1135 lapicid_start = (ioapic_count - 1) / core_max;
1136 lapicid_start = (lapicid_start + 1) * core_max;
Elyes HAOUASa8131602016-09-19 10:27:57 -06001137 printk(BIOS_SPEW, "lpaicid_start = 0x%x ", lapicid_start);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001138 }
1139 u32 apic_id = (lapicid_start * (i/modules + 1)) + ((i % modules) ? (j + (siblings + 1)) : j);
Elyes HAOUASa8131602016-09-19 10:27:57 -06001140 printk(BIOS_SPEW, "node 0x%x core 0x%x apicid = 0x%x\n",
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001141 i, j, apic_id);
1142
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001143 struct device *cpu = add_cpu_device(cpu_bus, apic_id, enable_node);
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001144 if (cpu)
1145 amd_cpu_topology(cpu, i, j);
1146 } //j
1147 }
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001148}
1149
Kyösti Mälkki90ac7362018-05-20 20:59:52 +03001150static void cpu_bus_init(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001151{
1152 initialize_cpus(dev->link_list);
1153}
1154
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001155static struct device_operations cpu_bus_ops = {
Kyösti Mälkki48f82a92016-12-02 16:02:30 +02001156 .read_resources = DEVICE_NOOP,
1157 .set_resources = DEVICE_NOOP,
Edward O'Callaghan812d2a42014-10-31 08:17:23 +11001158 .enable_resources = DEVICE_NOOP,
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001159 .init = cpu_bus_init,
1160 .scan_bus = cpu_bus_scan,
1161};
1162
1163static void root_complex_enable_dev(struct device *dev)
1164{
1165 static int done = 0;
1166
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001167 if (!done) {
1168 setup_bsp_ramtop();
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001169 done = 1;
1170 }
1171
1172 /* Set the operations if it is a special bus type */
1173 if (dev->path.type == DEVICE_PATH_DOMAIN) {
1174 dev->ops = &pci_domain_ops;
1175 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
1176 dev->ops = &cpu_bus_ops;
1177 }
1178}
1179
Kyösti Mälkkie4c17ce2014-10-21 18:22:32 +03001180struct chip_operations northbridge_amd_pi_00730F01_root_complex_ops = {
Bruce Griffith27ed80b2014-08-15 11:46:25 -06001181 CHIP_NAME("AMD FAM16 Root Complex")
1182 .enable_dev = root_complex_enable_dev,
1183};
1184
1185/*********************************************************************
1186 * Change the vendor / device IDs to match the generic VBIOS header. *
1187 *********************************************************************/
1188u32 map_oprom_vendev(u32 vendev)
1189{
1190 u32 new_vendev;
1191 new_vendev =
1192 ((0x10029850 <= vendev) && (vendev <= 0x1002986F)) ? 0x10029850 : vendev;
1193
1194 if (vendev != new_vendev)
1195 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n", vendev, new_vendev);
1196
1197 return new_vendev;
1198}