blob: be4e75adef3d7b08f9eb850f186a5890189aeaf6 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Bruce Griffith27ed80b2014-08-15 11:46:25 -06002
Michał Żygowski2f399b72020-04-02 19:51:37 +02003#include <commonlib/helpers.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -06004#include <console/console.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07006#include <acpi/acpi.h>
7#include <acpi/acpi_ivrs.h>
Michał Żygowski208318c2020-03-20 15:54:27 +01008#include <arch/ioapic.h>
Felix Held61dd31c2023-06-05 19:38:36 +02009#include <arch/vga.h>
Elyes HAOUAS146d0c22020-07-22 11:47:08 +020010#include <types.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060011#include <device/device.h>
12#include <device/pci.h>
13#include <device/pci_ids.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060014#include <string.h>
Michał Żygowski2f399b72020-04-02 19:51:37 +020015#include <stdlib.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060016#include <lib.h>
Michał Kopećdc35d2a2021-11-30 17:40:52 +010017#include <cpu/x86/mp.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060018#include <Porting.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060019#include <Topology.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020020#include <cpu/amd/msr.h>
21#include <cpu/amd/mtrr.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070022#include <acpi/acpigen.h>
Angel Ponsec5cf152020-11-10 20:42:07 +010023#include <northbridge/amd/nb_common.h>
Kyösti Mälkkied8d2772017-07-15 17:12:44 +030024#include <northbridge/amd/agesa/agesa_helper.h>
Michał Żygowski2f399b72020-04-02 19:51:37 +020025#include <southbridge/amd/pi/hudson/pci_devs.h>
Arthur Heymans44807ac2022-09-13 12:43:37 +020026#include <amdblocks/cpu.h>
Bruce Griffith27ed80b2014-08-15 11:46:25 -060027
Kyösti Mälkki113f6702018-05-20 20:12:32 +030028#define MAX_NODE_NUMS MAX_NODES
Michał Żygowski6ca5b472019-09-10 15:10:22 +020029#define PCIE_CAP_AER BIT(5)
30#define PCIE_CAP_ACS BIT(6)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060031
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030032static struct device *__f0_dev[MAX_NODE_NUMS];
33static struct device *__f1_dev[MAX_NODE_NUMS];
34static struct device *__f2_dev[MAX_NODE_NUMS];
35static struct device *__f4_dev[MAX_NODE_NUMS];
Subrata Banikb1434fc2019-03-15 22:20:41 +053036static unsigned int fx_devs = 0;
Bruce Griffith27ed80b2014-08-15 11:46:25 -060037
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030038static struct device *get_node_pci(u32 nodeid, u32 fn)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060039{
Kyösti Mälkkibbd23772019-01-10 05:41:23 +020040 return pcidev_on_root(DEV_CDB + nodeid, fn);
Bruce Griffith27ed80b2014-08-15 11:46:25 -060041}
42
Michał Kopećca1e8aa2021-12-03 15:17:46 +010043static struct device *get_mc_dev(void)
44{
45 return pcidev_on_root(DEV_CDB, 0);
46}
47
48static unsigned int get_node_nums(void)
49{
50 static unsigned int node_nums;
51
52 if (node_nums)
53 return node_nums;
54
Elyes Haouasf9b535e2022-07-16 09:47:42 +020055 node_nums = ((pci_read_config32(get_mc_dev(), 0x60) >> 4) & 7) + 1; //NodeCnt[2:0]
Michał Kopećca1e8aa2021-12-03 15:17:46 +010056
57 return node_nums;
58}
59
Bruce Griffith27ed80b2014-08-15 11:46:25 -060060static void get_fx_devs(void)
61{
62 int i;
63 for (i = 0; i < MAX_NODE_NUMS; i++) {
64 __f0_dev[i] = get_node_pci(i, 0);
65 __f1_dev[i] = get_node_pci(i, 1);
66 __f2_dev[i] = get_node_pci(i, 2);
67 __f4_dev[i] = get_node_pci(i, 4);
68 if (__f0_dev[i] != NULL && __f1_dev[i] != NULL)
Elyes Haouasf9b535e2022-07-16 09:47:42 +020069 fx_devs = i + 1;
Bruce Griffith27ed80b2014-08-15 11:46:25 -060070 }
71 if (__f1_dev[0] == NULL || __f0_dev[0] == NULL || fx_devs == 0) {
72 die("Cannot find 0:0x18.[0|1]\n");
73 }
Elyes HAOUASa8131602016-09-19 10:27:57 -060074 printk(BIOS_DEBUG, "fx_devs = 0x%x\n", fx_devs);
Bruce Griffith27ed80b2014-08-15 11:46:25 -060075}
76
Subrata Banikb1434fc2019-03-15 22:20:41 +053077static void f1_write_config32(unsigned int reg, u32 value)
Bruce Griffith27ed80b2014-08-15 11:46:25 -060078{
79 int i;
80 if (fx_devs == 0)
81 get_fx_devs();
Elyes HAOUAS5a7e72f2016-08-23 21:36:02 +020082 for (i = 0; i < fx_devs; i++) {
Kyösti Mälkki90ac7362018-05-20 20:59:52 +030083 struct device *dev;
Bruce Griffith27ed80b2014-08-15 11:46:25 -060084 dev = __f1_dev[i];
85 if (dev && dev->enabled) {
86 pci_write_config32(dev, reg, value);
87 }
88 }
89}
90
Michał Żygowski88a0ce62021-05-05 09:52:59 +020091static int get_dram_base_limit(u32 nodeid, resource_t *basek, resource_t *limitk)
92{
93 u32 temp;
94
95 if (fx_devs == 0)
96 get_fx_devs();
97
98
99 temp = pci_read_config32(__f1_dev[nodeid], 0x40 + (nodeid << 3)); //[39:24] at [31:16]
100 if (!(temp & 1))
101 return 0; // this memory range is not enabled
102 /*
103 * BKDG: {DramBase[39:24], 00_0000h} <= address[39:0] so shift left by 8 bits
104 * for physical address and the convert to KiB by shifting 10 bits left
105 */
106 *basek = ((temp & 0xffff0000)) >> (10 - 8);
107 /*
108 * BKDG address[39:0] <= {DramLimit[39:24], FF_FFFFh} converted as above but
109 * ORed with 0xffff to get real limit before shifting.
110 */
111 temp = pci_read_config32(__f1_dev[nodeid], 0x44 + (nodeid << 3)); //[39:24] at [31:16]
112 *limitk = ((temp & 0xffff0000) | 0xffff) >> (10 - 8);
113 *limitk += 1; // round up last byte
114
115 return 1;
116}
117
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300118static u32 amdfam16_nodeid(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600119{
Kyösti Mälkkibbd23772019-01-10 05:41:23 +0200120 return (dev->path.pci.devfn >> 3) - DEV_CDB;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600121}
122
123static void set_vga_enable_reg(u32 nodeid, u32 linkn)
124{
125 u32 val;
126
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200127 val = 1 | (nodeid << 4) | (linkn << 12);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600128 /* it will routing
129 * (1)mmio 0xa0000:0xbffff
130 * (2)io 0x3b0:0x3bb, 0x3c0:0x3df
131 */
132 f1_write_config32(0xf4, val);
133
134}
135
Michał Żygowski58d6f962021-05-05 10:52:08 +0200136static void add_fixed_resources(struct device *dev, int index)
137{
138 /* Reserve everything between A segment and 1MB:
139 *
140 * 0xa0000 - 0xbffff: legacy VGA
141 * 0xc0000 - 0xfffff: option ROMs and SeaBIOS (if used)
142 */
Felix Held61dd31c2023-06-05 19:38:36 +0200143 mmio_resource_kb(dev, index++, VGA_MMIO_BASE >> 10, VGA_MMIO_SIZE >> 10);
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300144 reserved_ram_resource_kb(dev, index++, 0xc0000 >> 10, (0x100000 - 0xc0000) >> 10);
Michał Żygowski58d6f962021-05-05 10:52:08 +0200145
146 if (fx_devs == 0)
147 get_fx_devs();
148
149 /* Check if CC6 save area is enabled (bit 18 CC6SaveEn) */
150 if (pci_read_config32(__f2_dev[0], 0x118) & (1 << 18)) {
151 /* Add CC6 DRAM UC resource residing at DRAM Limit of size 16MB as per BKDG */
152 resource_t basek, limitk;
153 if (!get_dram_base_limit(0, &basek, &limitk))
154 return;
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200155 mmio_resource_kb(dev, index++, limitk, 16 * 1024);
Michał Żygowski58d6f962021-05-05 10:52:08 +0200156 }
157}
158
Michał Żygowskifb198c62021-05-09 13:54:09 +0200159static void nb_read_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600160{
Kyösti Mälkki5d490382015-05-27 07:58:22 +0300161 /*
162 * This MMCONF resource must be reserved in the PCI domain.
163 * It is not honored by the coreboot resource allocator if it is in
164 * the CPU_CLUSTER.
165 */
Elyes HAOUAS400ce552018-10-12 10:54:30 +0200166 mmconf_resource(dev, MMIO_CONF_BASE);
Michał Żygowski208318c2020-03-20 15:54:27 +0100167
168 /* NB IOAPIC2 resource */
Felix Held8f0075c2023-08-09 19:28:39 +0200169 mmio_range(dev, IO_APIC2_ADDR, IO_APIC2_ADDR, 0x1000);
Michał Żygowski58d6f962021-05-05 10:52:08 +0200170
171 add_fixed_resources(dev, 0);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600172}
173
Subrata Banikb1434fc2019-03-15 22:20:41 +0530174static void create_vga_resource(struct device *dev, unsigned int nodeid)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600175{
176 struct bus *link;
Michał Kopećca1e8aa2021-12-03 15:17:46 +0100177 unsigned int sblink;
178
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200179 sblink = (pci_read_config32(get_mc_dev(), 0x64) >> 8) & 7; // don't forget sublink1
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600180
181 /* find out which link the VGA card is connected,
182 * we only deal with the 'first' vga card */
183 for (link = dev->link_list; link; link = link->next) {
184 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA) {
Julius Wernercd49cce2019-03-05 16:53:33 -0800185#if CONFIG(MULTIPLE_VGA_ADAPTERS)
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300186 extern struct device *vga_pri; // the primary vga device, defined in device.c
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600187 printk(BIOS_DEBUG, "VGA: vga_pri bus num = %d bus range [%d,%d]\n", vga_pri->bus->secondary,
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200188 link->secondary, link->subordinate);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600189 /* We need to make sure the vga_pri is under the link */
Elyes HAOUASa8131602016-09-19 10:27:57 -0600190 if ((vga_pri->bus->secondary >= link->secondary) &&
191 (vga_pri->bus->secondary <= link->subordinate))
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600192#endif
193 break;
194 }
195 }
196
197 /* no VGA card installed */
198 if (link == NULL)
199 return;
200
201 printk(BIOS_DEBUG, "VGA: %s (aka node %d) link %d has VGA device\n", dev_path(dev), nodeid, sblink);
202 set_vga_enable_reg(nodeid, sblink);
203}
204
Michał Żygowskifb198c62021-05-09 13:54:09 +0200205static void nb_set_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600206{
Subrata Banikb1434fc2019-03-15 22:20:41 +0530207 unsigned int nodeid;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600208
209 /* Find the nodeid */
210 nodeid = amdfam16_nodeid(dev);
211
212 create_vga_resource(dev, nodeid); //TODO: do we need this?
213
Michał Żygowskifb198c62021-05-09 13:54:09 +0200214 pci_dev_set_resources(dev);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600215}
216
217static void northbridge_init(struct device *dev)
218{
Kyösti Mälkkid1534e42023-04-09 10:01:58 +0300219 register_new_ioapic((u8 *)IO_APIC2_ADDR);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600220}
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200221
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100222static unsigned long acpi_fill_hest(acpi_hest_t *hest)
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200223{
224 void *addr, *current;
225
226 /* Skip the HEST header. */
227 current = (void *)(hest + 1);
228
229 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
230 if (addr != NULL)
231 current += acpi_create_hest_error_source(hest, current, 0, (void *)((u32)addr + 2), *(UINT16 *)addr - 2);
232
233 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
234 if (addr != NULL)
235 current += acpi_create_hest_error_source(hest, current, 1, (void *)((u32)addr + 2), *(UINT16 *)addr - 2);
236
237 return (unsigned long)current;
238}
239
Arthur Heymansf9ee87f2023-06-07 15:29:02 +0200240static unsigned long acpi_fill_ivrs_ioapic(acpi_ivrs_t *ivrs, unsigned long current)
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500241{
Michał Żygowski2f399b72020-04-02 19:51:37 +0200242 /* 8-byte IVHD structures must be aligned to the 8-byte boundary. */
243 current = ALIGN_UP(current, 8);
244 ivrs_ivhd_special_t *ivhd_ioapic = (ivrs_ivhd_special_t *)current;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500245
Michał Żygowski2f399b72020-04-02 19:51:37 +0200246 ivhd_ioapic->type = IVHD_DEV_8_BYTE_EXT_SPECIAL_DEV;
247 ivhd_ioapic->reserved = 0x0000;
248 ivhd_ioapic->dte_setting = IVHD_DTE_LINT_1_PASS | IVHD_DTE_LINT_0_PASS |
249 IVHD_DTE_SYS_MGT_NO_TRANS | IVHD_DTE_NMI_PASS |
250 IVHD_DTE_EXT_INT_PASS | IVHD_DTE_INIT_PASS;
Kyösti Mälkkid1534e42023-04-09 10:01:58 +0300251 ivhd_ioapic->handle = get_ioapic_id(VIO_APIC_VADDR);
Michał Żygowski2f399b72020-04-02 19:51:37 +0200252 ivhd_ioapic->source_dev_id = PCI_DEVFN(SMBUS_DEV, SMBUS_FUNC);
253 ivhd_ioapic->variety = IVHD_SPECIAL_DEV_IOAPIC;
254 current += sizeof(ivrs_ivhd_special_t);
255
256 ivhd_ioapic = (ivrs_ivhd_special_t *)current;
Michał Żygowski2f399b72020-04-02 19:51:37 +0200257 ivhd_ioapic->type = IVHD_DEV_8_BYTE_EXT_SPECIAL_DEV;
258 ivhd_ioapic->reserved = 0x0000;
259 ivhd_ioapic->dte_setting = 0x00;
Kyösti Mälkkid1534e42023-04-09 10:01:58 +0300260 ivhd_ioapic->handle = get_ioapic_id((u8 *)IO_APIC2_ADDR);
Michał Żygowski2f399b72020-04-02 19:51:37 +0200261 ivhd_ioapic->source_dev_id = PCI_DEVFN(0, 1);
262 ivhd_ioapic->variety = IVHD_SPECIAL_DEV_IOAPIC;
263 current += sizeof(ivrs_ivhd_special_t);
264
265 return current;
266}
267
268static unsigned long ivhd_describe_hpet(unsigned long current)
269{
270 /* 8-byte IVHD structures must be aligned to the 8-byte boundary. */
271 current = ALIGN_UP(current, 8);
272 ivrs_ivhd_special_t *ivhd_hpet = (ivrs_ivhd_special_t *)current;
273
274 ivhd_hpet->type = IVHD_DEV_8_BYTE_EXT_SPECIAL_DEV;
275 ivhd_hpet->reserved = 0x0000;
276 ivhd_hpet->dte_setting = 0x00;
277 ivhd_hpet->handle = 0x00;
278 ivhd_hpet->source_dev_id = PCI_DEVFN(SMBUS_DEV, SMBUS_FUNC);
279 ivhd_hpet->variety = IVHD_SPECIAL_DEV_HPET;
280 current += sizeof(ivrs_ivhd_special_t);
281
282 return current;
283}
284
285static unsigned long ivhd_dev_range(unsigned long current, uint16_t start_devid,
286 uint16_t end_devid, uint8_t setting)
287{
288 /* 4-byte IVHD structures must be aligned to the 4-byte boundary. */
289 current = ALIGN_UP(current, 4);
290 ivrs_ivhd_generic_t *ivhd_range = (ivrs_ivhd_generic_t *)current;
291
292 /* Create the start range IVHD entry */
293 ivhd_range->type = IVHD_DEV_4_BYTE_START_RANGE;
294 ivhd_range->dev_id = start_devid;
295 ivhd_range->dte_setting = setting;
296 current += sizeof(ivrs_ivhd_generic_t);
297
298 /* Create the end range IVHD entry */
299 ivhd_range = (ivrs_ivhd_generic_t *)current;
300 ivhd_range->type = IVHD_DEV_4_BYTE_END_RANGE;
301 ivhd_range->dev_id = end_devid;
302 ivhd_range->dte_setting = setting;
303 current += sizeof(ivrs_ivhd_generic_t);
304
305 return current;
306}
307
308static unsigned long add_ivhd_dev_entry(struct device *parent, struct device *dev,
309 unsigned long *current, uint8_t type, uint8_t data)
310{
311 if (type == IVHD_DEV_4_BYTE_SELECT) {
312 /* 4-byte IVHD structures must be aligned to the 4-byte boundary. */
313 *current = ALIGN_UP(*current, 4);
314 ivrs_ivhd_generic_t *ivhd_entry = (ivrs_ivhd_generic_t *)*current;
315
316 ivhd_entry->type = type;
317 ivhd_entry->dev_id = dev->path.pci.devfn | (dev->bus->secondary << 8);
318 ivhd_entry->dte_setting = data;
319 *current += sizeof(ivrs_ivhd_generic_t);
320 } else if (type == IVHD_DEV_8_BYTE_ALIAS_SELECT) {
321 /* 8-byte IVHD structures must be aligned to the 8-byte boundary. */
322 *current = ALIGN_UP(*current, 8);
323 ivrs_ivhd_alias_t *ivhd_entry = (ivrs_ivhd_alias_t *)*current;
324
325 ivhd_entry->type = type;
326 ivhd_entry->dev_id = dev->path.pci.devfn | (dev->bus->secondary << 8);
327 ivhd_entry->dte_setting = data;
328 ivhd_entry->reserved1 = 0;
329 ivhd_entry->reserved2 = 0;
330 ivhd_entry->source_dev_id = parent->path.pci.devfn |
331 (parent->bus->secondary << 8);
332 *current += sizeof(ivrs_ivhd_alias_t);
333 }
334
335 return *current;
336}
337
338static void ivrs_add_device_or_bridge(struct device *parent, struct device *dev,
339 unsigned long *current, uint16_t *ivhd_length)
340{
341 unsigned int header_type, is_pcie;
342 unsigned long current_backup;
343
344 header_type = dev->hdr_type & 0x7f;
345 is_pcie = pci_find_capability(dev, PCI_CAP_ID_PCIE);
346
347 if (((header_type == PCI_HEADER_TYPE_NORMAL) ||
348 (header_type == PCI_HEADER_TYPE_BRIDGE)) && is_pcie) {
349 /* Device or Bridge is PCIe */
350 current_backup = *current;
351 add_ivhd_dev_entry(parent, dev, current, IVHD_DEV_4_BYTE_SELECT, 0x0);
352 *ivhd_length += (*current - current_backup);
353 } else if ((header_type == PCI_HEADER_TYPE_NORMAL) && !is_pcie) {
354 /* Device is legacy PCI or PCI-X */
355 current_backup = *current;
356 add_ivhd_dev_entry(parent, dev, current, IVHD_DEV_8_BYTE_ALIAS_SELECT, 0x0);
357 *ivhd_length += (*current - current_backup);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500358 }
359}
360
Michał Żygowski2f399b72020-04-02 19:51:37 +0200361static void add_ivhd_device_entries(struct device *parent, struct device *dev,
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500362 unsigned int depth, int linknum, int8_t *root_level,
Michał Żygowski2f399b72020-04-02 19:51:37 +0200363 unsigned long *current, uint16_t *ivhd_length)
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500364{
365 struct device *sibling;
366 struct bus *link;
Michał Żygowski2f399b72020-04-02 19:51:37 +0200367
368 if (!root_level) {
369 root_level = malloc(sizeof(int8_t));
370 *root_level = -1;
371 }
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500372
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500373 if (dev->path.type == DEVICE_PATH_PCI) {
374
375 if ((dev->bus->secondary == 0x0) &&
376 (dev->path.pci.devfn == 0x0))
377 *root_level = depth;
378
379 if ((*root_level != -1) && (dev->enabled)) {
Michał Żygowski2f399b72020-04-02 19:51:37 +0200380 if (depth != *root_level)
381 ivrs_add_device_or_bridge(parent, dev, current, ivhd_length);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500382 }
383 }
384
385 for (link = dev->link_list; link; link = link->next)
386 for (sibling = link->children; sibling; sibling =
387 sibling->sibling)
Michał Żygowski2f399b72020-04-02 19:51:37 +0200388 add_ivhd_device_entries(dev, sibling, depth + 1, depth, root_level,
389 current, ivhd_length);
390
391 free(root_level);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500392}
393
Michał Żygowski2f399b72020-04-02 19:51:37 +0200394#define IOMMU_MMIO32(x) (*((volatile uint32_t *)(x)))
395#define EFR_SUPPORT BIT(27)
396
397static unsigned long acpi_fill_ivrs11(unsigned long current, acpi_ivrs_t *ivrs_agesa)
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500398{
Michał Żygowski2f399b72020-04-02 19:51:37 +0200399 acpi_ivrs_ivhd11_t *ivhd_11;
400 unsigned long current_backup;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500401
Michał Żygowski2f399b72020-04-02 19:51:37 +0200402 /*
403 * These devices should be already found by previous function.
404 * Do not perform NULL checks.
405 */
406 struct device *nb_dev = pcidev_on_root(0, 0);
407 struct device *iommu_dev = pcidev_on_root(0, 2);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500408
Michał Żygowski2f399b72020-04-02 19:51:37 +0200409 /*
410 * In order to utilize all features, firmware should expose type 11h
411 * IVHD which supersedes the type 10h.
412 */
413 memset((void *)current, 0, sizeof(acpi_ivrs_ivhd11_t));
414 ivhd_11 = (acpi_ivrs_ivhd11_t *)current;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500415
Michał Żygowski2f399b72020-04-02 19:51:37 +0200416 /* Enable EFR */
417 ivhd_11->type = IVHD_BLOCK_TYPE_FULL__FIXED;
418 /* For type 11h bits 6 and 7 are reserved */
419 ivhd_11->flags = ivrs_agesa->ivhd.flags & 0x3f;
420 ivhd_11->length = sizeof(struct acpi_ivrs_ivhd_11);
421 /* BDF <bus>:00.2 */
422 ivhd_11->device_id = 0x02 | (nb_dev->bus->secondary << 8);
423 /* PCI Capability block 0x40 (type 0xf, "Secure device") */
424 ivhd_11->capability_offset = 0x40;
425 ivhd_11->iommu_base_low = ivrs_agesa->ivhd.iommu_base_low;
426 ivhd_11->iommu_base_high = ivrs_agesa->ivhd.iommu_base_high;
427 ivhd_11->pci_segment_group = 0x0000;
428 ivhd_11->iommu_info = ivrs_agesa->ivhd.iommu_info;
429 ivhd_11->iommu_attributes.perf_counters =
430 (IOMMU_MMIO32(ivhd_11->iommu_base_low + 0x4000) >> 7) & 0xf;
431 ivhd_11->iommu_attributes.perf_counter_banks =
432 (IOMMU_MMIO32(ivhd_11->iommu_base_low + 0x4000) >> 12) & 0x3f;
433 ivhd_11->iommu_attributes.msi_num_ppr =
434 (pci_read_config32(iommu_dev, ivhd_11->capability_offset + 0x10) >> 27) & 0x1f;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500435
Michał Żygowski2f399b72020-04-02 19:51:37 +0200436 if (pci_read_config32(iommu_dev, ivhd_11->capability_offset) & EFR_SUPPORT) {
437 ivhd_11->efr_reg_image_low = IOMMU_MMIO32(ivhd_11->iommu_base_low + 0x30);
438 ivhd_11->efr_reg_image_high = IOMMU_MMIO32(ivhd_11->iommu_base_low + 0x34);
439 }
440
441 current += sizeof(acpi_ivrs_ivhd11_t);
442
443 /* Now repeat all the device entries from type 10h */
444 current_backup = current;
445 current = ivhd_dev_range(current, PCI_DEVFN(1, 0), PCI_DEVFN(0x1f, 6), 0);
446 ivhd_11->length += (current - current_backup);
447 add_ivhd_device_entries(NULL, all_devices, 0, -1, NULL, &current, &ivhd_11->length);
448
449 /* Describe HPET */
450 current_backup = current;
451 current = ivhd_describe_hpet(current);
452 ivhd_11->length += (current - current_backup);
453
454 /* Describe IOAPICs */
455 current_backup = current;
456 current = acpi_fill_ivrs_ioapic(ivrs_agesa, current);
457 ivhd_11->length += (current - current_backup);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500458
459 return current;
460}
461
462static unsigned long acpi_fill_ivrs(acpi_ivrs_t *ivrs, unsigned long current)
463{
Piotr Król063e1562018-07-22 20:52:26 +0200464 acpi_ivrs_t *ivrs_agesa;
Michał Żygowski2f399b72020-04-02 19:51:37 +0200465 unsigned long current_backup;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500466
Michał Żygowski2f399b72020-04-02 19:51:37 +0200467 struct device *nb_dev = pcidev_on_root(0, 0);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500468 if (!nb_dev) {
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500469 printk(BIOS_WARNING, "%s: G-series northbridge device not present!\n", __func__);
470 printk(BIOS_WARNING, "%s: IVRS table not generated...\n", __func__);
471
472 return (unsigned long)ivrs;
473 }
474
Michał Żygowski2f399b72020-04-02 19:51:37 +0200475 struct device *iommu_dev = pcidev_on_root(0, 2);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500476
Michał Żygowski2f399b72020-04-02 19:51:37 +0200477 if (!iommu_dev) {
478 printk(BIOS_WARNING, "%s: IOMMU device not found\n", __func__);
479
480 return (unsigned long)ivrs;
481 }
482
Piotr Król063e1562018-07-22 20:52:26 +0200483 ivrs_agesa = agesawrapper_getlateinitptr(PICK_IVRS);
484 if (ivrs_agesa != NULL) {
Michał Żygowski2f399b72020-04-02 19:51:37 +0200485 ivrs->iv_info = ivrs_agesa->iv_info;
486 ivrs->ivhd.type = IVHD_BLOCK_TYPE_LEGACY__FIXED;
487 ivrs->ivhd.flags = ivrs_agesa->ivhd.flags;
Piotr Król063e1562018-07-22 20:52:26 +0200488 ivrs->ivhd.length = sizeof(struct acpi_ivrs_ivhd);
489 /* BDF <bus>:00.2 */
Michał Żygowski2f399b72020-04-02 19:51:37 +0200490 ivrs->ivhd.device_id = 0x02 | (nb_dev->bus->secondary << 8);
491 /* PCI Capability block 0x40 (type 0xf, "Secure device") */
Piotr Król063e1562018-07-22 20:52:26 +0200492 ivrs->ivhd.capability_offset = 0x40;
493 ivrs->ivhd.iommu_base_low = ivrs_agesa->ivhd.iommu_base_low;
494 ivrs->ivhd.iommu_base_high = ivrs_agesa->ivhd.iommu_base_high;
Michał Żygowski2f399b72020-04-02 19:51:37 +0200495 ivrs->ivhd.pci_segment_group = 0x0000;
496 ivrs->ivhd.iommu_info = ivrs_agesa->ivhd.iommu_info;
497 ivrs->ivhd.iommu_feature_info = ivrs_agesa->ivhd.iommu_feature_info;
498 /* Enable EFR if supported */
499 if (pci_read_config32(iommu_dev, ivrs->ivhd.capability_offset) & EFR_SUPPORT)
500 ivrs->iv_info |= IVINFO_EFR_SUPPORTED;
Piotr Król063e1562018-07-22 20:52:26 +0200501 } else {
502 printk(BIOS_WARNING, "%s: AGESA returned NULL IVRS\n", __func__);
503
504 return (unsigned long)ivrs;
505 }
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500506
Michał Żygowski2f399b72020-04-02 19:51:37 +0200507 /*
508 * Add all possible PCI devices on bus 0 that can generate transactions
509 * processed by IOMMU. Start with device 00:01.0 since IOMMU does not
510 * translate transactions generated by itself.
511 */
512 current_backup = current;
513 current = ivhd_dev_range(current, PCI_DEVFN(1, 0), PCI_DEVFN(0x1f, 6), 0);
514 ivrs->ivhd.length += (current - current_backup);
515 add_ivhd_device_entries(NULL, all_devices, 0, -1, NULL, &current, &ivrs->ivhd.length);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500516
Michał Żygowski2f399b72020-04-02 19:51:37 +0200517 /* Describe HPET */
518 current_backup = current;
519 current = ivhd_describe_hpet(current);
520 ivrs->ivhd.length += (current - current_backup);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500521
522 /* Describe IOAPICs */
Michał Żygowski2f399b72020-04-02 19:51:37 +0200523 current_backup = current;
524 current = acpi_fill_ivrs_ioapic(ivrs_agesa, current);
525 ivrs->ivhd.length += (current - current_backup);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500526
Michał Żygowski2f399b72020-04-02 19:51:37 +0200527 /* If EFR is not supported, IVHD type 11h is reserved */
528 if (!(ivrs->iv_info & IVINFO_EFR_SUPPORTED))
529 return current;
530
531 return acpi_fill_ivrs11(current, ivrs_agesa);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500532}
533
Furquan Shaikh7536a392020-04-24 21:59:21 -0700534static void northbridge_fill_ssdt_generator(const struct device *device)
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200535{
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200536 char pscope[] = "\\_SB.PCI0";
537
538 acpigen_write_scope(pscope);
Felix Helde3453782023-04-20 13:06:08 +0200539 acpigen_write_name_dword("TOM1", get_top_of_mem_below_4gb());
540
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200541 /*
542 * Since XP only implements parts of ACPI 2.0, we can't use a qword
543 * here.
544 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
545 * slide 22ff.
546 * Shift value right by 20 bit to make it fit into 32bit,
547 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
548 */
Felix Held27af3e62023-04-22 05:59:52 +0200549 acpigen_write_name_dword("TOM2", get_top_of_mem_above_4gb() >> 20);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200550 acpigen_pop_len();
551}
552
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700553static unsigned long agesa_write_acpi_tables(const struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200554 unsigned long current,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200555 acpi_rsdp_t *rsdp)
556{
557 acpi_srat_t *srat;
558 acpi_slit_t *slit;
559 acpi_header_t *ssdt;
560 acpi_header_t *alib;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500561 acpi_ivrs_t *ivrs;
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200562
563 /* HEST */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200564 current = ALIGN_UP(current, 8);
Vladimir Serbinenko807127f2014-11-09 13:36:18 +0100565 acpi_write_hest((void *)current, acpi_fill_hest);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200566 acpi_add_table(rsdp, (void *)current);
567 current += ((acpi_header_t *)current)->length;
568
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500569 /* IVRS */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200570 current = ALIGN_UP(current, 8);
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500571 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200572 ivrs = (acpi_ivrs_t *)current;
Timothy Pearson9ef07d82016-06-13 13:48:58 -0500573 acpi_create_ivrs(ivrs, acpi_fill_ivrs);
574 current += ivrs->header.length;
575 acpi_add_table(rsdp, ivrs);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200576
577 /* SRAT */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200578 current = ALIGN_UP(current, 8);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200579 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200580 srat = (acpi_srat_t *)agesawrapper_getlateinitptr(PICK_SRAT);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200581 if (srat != NULL) {
582 memcpy((void *)current, srat, srat->header.length);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200583 srat = (acpi_srat_t *)current;
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200584 current += srat->header.length;
585 acpi_add_table(rsdp, srat);
586 } else {
587 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
588 }
589
590 /* SLIT */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200591 current = ALIGN_UP(current, 8);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200592 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200593 slit = (acpi_slit_t *)agesawrapper_getlateinitptr(PICK_SLIT);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200594 if (slit != NULL) {
595 memcpy((void *)current, slit, slit->header.length);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200596 slit = (acpi_slit_t *)current;
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200597 current += slit->header.length;
598 acpi_add_table(rsdp, slit);
599 } else {
600 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
601 }
602
603 /* ALIB */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200604 current = ALIGN_UP(current, 16);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200605 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200606 alib = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_ALIB);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200607 if (alib != NULL) {
608 memcpy((void *)current, alib, alib->length);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200609 alib = (acpi_header_t *)current;
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200610 current += alib->length;
611 acpi_add_table(rsdp, (void *)alib);
612 }
613 else {
614 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL. Skipping.\n");
615 }
616
617 /* this pstate ssdt may cause Blue Screen: Fixed: Keep this comment for a while. */
618 /* SSDT */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200619 current = ALIGN_UP(current, 16);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200620 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200621 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_PSTATE);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200622 if (ssdt != NULL) {
623 memcpy((void *)current, ssdt, ssdt->length);
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200624 ssdt = (acpi_header_t *)current;
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200625 current += ssdt->length;
626 }
627 else {
628 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
629 }
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200630 acpi_add_table(rsdp, ssdt);
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200631
632 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
633 return current;
634}
635
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600636static struct device_operations northbridge_operations = {
Michał Żygowskifb198c62021-05-09 13:54:09 +0200637 .read_resources = nb_read_resources,
638 .set_resources = nb_set_resources,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600639 .enable_resources = pci_dev_enable_resources,
640 .init = northbridge_init,
Michał Żygowskifb198c62021-05-09 13:54:09 +0200641 .ops_pci = &pci_dev_ops_pci,
Nico Huber68680dd2020-03-31 17:34:52 +0200642 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Kyösti Mälkki0b5b5412014-11-26 08:11:07 +0200643 .write_acpi_tables = agesa_write_acpi_tables,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600644};
645
646static const struct pci_driver family16_northbridge __pci_driver = {
647 .ops = &northbridge_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100648 .vendor = PCI_VID_AMD,
649 .device = PCI_DID_AMD_16H_MODEL_303F_NB_HT,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600650};
651
Dave Frodin891f71a2015-01-19 15:58:24 -0700652static void fam16_finalize(void *chip_info)
653{
Kyösti Mälkki90ac7362018-05-20 20:59:52 +0300654 struct device *dev;
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +0300655 dev = pcidev_on_root(0, 0); /* clear IoapicSbFeatureEn */
Elyes Haouasa1f5ad02022-02-17 18:14:08 +0100656
Dave Frodin891f71a2015-01-19 15:58:24 -0700657 pci_write_config32(dev, 0xF8, 0);
658 pci_write_config32(dev, 0xFC, 5); /* TODO: move it to dsdt.asl */
659
Michał Żygowski6ca5b472019-09-10 15:10:22 +0200660 /*
661 * Currently it is impossible to enable ACS with AGESA by setting the
662 * correct bit for AmdInitMid phase. AGESA code path does not call the
663 * right function that enables these functionalities. Disabled ACS
664 * result in multiple PCIe devices to be assigned to the same IOMMU
665 * group. Without IOMMU group separation the devices cannot be passed
666 * through independently.
667 */
668
669 /* Select GPP link core IO Link Strap Control register 0xB0 */
670 pci_write_config32(dev, 0xE0, 0x014000B0);
Michał Żygowski6ca5b472019-09-10 15:10:22 +0200671
672 /* Enable AER (bit 5) and ACS (bit 6 undocumented) */
Elyes Haouasa1f5ad02022-02-17 18:14:08 +0100673 pci_or_config32(dev, 0xE4, PCIE_CAP_AER | PCIE_CAP_ACS);
Michał Żygowski6ca5b472019-09-10 15:10:22 +0200674
675 /* Select GPP link core Wrapper register 0x00 (undocumented) */
676 pci_write_config32(dev, 0xE0, 0x01300000);
Michał Żygowski6ca5b472019-09-10 15:10:22 +0200677
678 /*
679 * Enable ACS capabilities straps including sub-items. From lspci it
680 * looks like these bits enable: Source Validation and Translation
681 * Blocking
682 */
Elyes Haouasa1f5ad02022-02-17 18:14:08 +0100683 pci_or_config32(dev, 0xE4, (BIT(24) | BIT(25) | BIT(26)));
Michał Żygowski6ca5b472019-09-10 15:10:22 +0200684
Dave Frodin891f71a2015-01-19 15:58:24 -0700685 /* disable No Snoop */
Kyösti Mälkki33ff44c2018-05-22 01:15:22 +0300686 dev = pcidev_on_root(1, 1);
Kyösti Mälkki69f6fd42019-01-21 14:19:01 +0200687 if (dev != NULL) {
Elyes Haouasa1f5ad02022-02-17 18:14:08 +0100688 pci_and_config32(dev, 0x60, ~(1 << 11));
Kyösti Mälkki69f6fd42019-01-21 14:19:01 +0200689 }
Dave Frodin891f71a2015-01-19 15:58:24 -0700690}
691
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600692#if CONFIG_HW_MEM_HOLE_SIZEK != 0
693struct hw_mem_hole_info {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530694 unsigned int hole_startk;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600695 int node_id;
696};
697static struct hw_mem_hole_info get_hw_mem_hole_info(void)
698{
699 struct hw_mem_hole_info mem_hole;
700 int i;
701 mem_hole.hole_startk = CONFIG_HW_MEM_HOLE_SIZEK;
702 mem_hole.node_id = -1;
Michał Kopećca1e8aa2021-12-03 15:17:46 +0100703 for (i = 0; i < get_node_nums(); i++) {
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200704 resource_t basek, limitk;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600705 u32 hole;
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200706 if (!get_dram_base_limit(i, &basek, &limitk))
707 continue; // no memory on this node
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600708 hole = pci_read_config32(__f1_dev[i], 0xf0);
709 if (hole & 2) { // we find the hole
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200710 mem_hole.hole_startk = (hole & (0xff << 24)) >> 10;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600711 mem_hole.node_id = i; // record the node No with hole
712 break; // only one hole
713 }
714 }
715
716 /* We need to double check if there is special set on base reg and limit reg
717 * are not continuous instead of hole, it will find out its hole_startk.
718 */
719 if (mem_hole.node_id == -1) {
720 resource_t limitk_pri = 0;
Michał Kopećca1e8aa2021-12-03 15:17:46 +0100721 for (i = 0; i < get_node_nums(); i++) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600722 resource_t base_k, limit_k;
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200723 if (!get_dram_base_limit(i, &base_k, &limit_k))
724 continue; // no memory on this node
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200725 if (base_k > 4 * 1024 * 1024) break; // don't need to go to check
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600726 if (limitk_pri != base_k) { // we find the hole
Elyes HAOUAS38a4f2a92020-01-07 19:53:36 +0100727 mem_hole.hole_startk = (unsigned int)limitk_pri; // must be below 4G
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600728 mem_hole.node_id = i;
729 break; //only one hole
730 }
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600731 limitk_pri = limit_k;
732 }
733 }
734 return mem_hole;
735}
736#endif
737
Michał Żygowskif5d457d2021-05-09 13:58:04 +0200738static void domain_read_resources(struct device *dev)
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600739{
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600740 unsigned long mmio_basek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600741 int i, idx;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600742#if CONFIG_HW_MEM_HOLE_SIZEK != 0
743 struct hw_mem_hole_info mem_hole;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600744#endif
745
Michał Żygowskif5d457d2021-05-09 13:58:04 +0200746 pci_domain_read_resources(dev);
747
Michał Żygowski58d6f962021-05-05 10:52:08 +0200748 /* TOP_MEM MSR is our boundary between DRAM and MMIO under 4G */
Felix Held5e9afe72023-04-20 12:55:55 +0200749 mmio_basek = get_top_of_mem_below_4gb() >> 10;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600750
751#if CONFIG_HW_MEM_HOLE_SIZEK != 0
752 /* if the hw mem hole is already set in raminit stage, here we will compare
753 * mmio_basek and hole_basek. if mmio_basek is bigger that hole_basek and will
754 * use hole_basek as mmio_basek and we don't need to reset hole.
755 * otherwise We reset the hole to the mmio_basek
756 */
757
758 mem_hole = get_hw_mem_hole_info();
759
760 // Use hole_basek as mmio_basek, and we don't need to reset hole anymore
761 if ((mem_hole.node_id != -1) && (mmio_basek > mem_hole.hole_startk)) {
762 mmio_basek = mem_hole.hole_startk;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600763 }
764#endif
765
766 idx = 0x10;
Michał Kopećca1e8aa2021-12-03 15:17:46 +0100767 for (i = 0; i < get_node_nums(); i++) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600768 resource_t basek, limitk, sizek; // 4 1T
769
Michał Żygowski88a0ce62021-05-05 09:52:59 +0200770 if (!get_dram_base_limit(i, &basek, &limitk))
771 continue; // no memory on this node
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600772
773 sizek = limitk - basek;
774
Michał Żygowski58d6f962021-05-05 10:52:08 +0200775 printk(BIOS_DEBUG, "node %d: basek=%08llx, limitk=%08llx, sizek=%08llx,\n",
776 i, basek, limitk, sizek);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600777
Elyes Haouas5213b192022-02-25 18:13:03 +0100778 /* See if we need a hole from 0xa0000 (640K) to 0xfffff (1024K) */
Elyes Haouas9d8df302022-02-25 18:23:01 +0100779 if (basek < 640 && sizek > 1024) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300780 ram_resource_kb(dev, (idx | i), basek, 640 - basek);
Michał Żygowski58d6f962021-05-05 10:52:08 +0200781 idx += 0x10;
Elyes Haouas9d8df302022-02-25 18:23:01 +0100782 basek = 1024;
Michał Żygowski58d6f962021-05-05 10:52:08 +0200783 sizek = limitk - basek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600784 }
785
Michał Żygowski58d6f962021-05-05 10:52:08 +0200786 printk(BIOS_DEBUG, "node %d: basek=%08llx, limitk=%08llx, sizek=%08llx,\n",
787 i, basek, limitk, sizek);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600788
789 /* split the region to accommodate pci memory space */
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200790 if ((basek < 4 * 1024 * 1024) && (limitk > mmio_basek)) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600791 if (basek <= mmio_basek) {
Subrata Banikb1434fc2019-03-15 22:20:41 +0530792 unsigned int pre_sizek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600793 pre_sizek = mmio_basek - basek;
Elyes HAOUASa8131602016-09-19 10:27:57 -0600794 if (pre_sizek > 0) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300795 ram_resource_kb(dev, (idx | i), basek, pre_sizek);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600796 idx += 0x10;
797 sizek -= pre_sizek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600798 }
799 basek = mmio_basek;
800 }
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200801 if ((basek + sizek) <= 4 * 1024 * 1024) {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600802 sizek = 0;
803 }
804 else {
Felix Held27af3e62023-04-22 05:59:52 +0200805 uint64_t topmem2 = get_top_of_mem_above_4gb();
Elyes Haouasf9b535e2022-07-16 09:47:42 +0200806 basek = 4 * 1024 * 1024;
807 sizek = topmem2 / 1024 - basek;
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600808 }
809 }
810
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300811 ram_resource_kb(dev, (idx | i), basek, sizek);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600812 idx += 0x10;
813 printk(BIOS_DEBUG, "node %d: mmio_basek=%08lx, basek=%08llx, limitk=%08llx\n",
814 i, mmio_basek, basek, limitk);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600815 }
816
Kyösti Mälkkie87564f2017-04-15 20:07:53 +0300817 add_uma_resource_below_tolm(dev, 7);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600818}
819
Aaron Durbinaa090cb2017-09-13 16:01:52 -0600820static const char *domain_acpi_name(const struct device *dev)
Philipp Deppenwiese30670122017-03-01 02:24:33 +0100821{
822 if (dev->path.type == DEVICE_PATH_DOMAIN)
823 return "PCI0";
824
825 return NULL;
826}
827
Felix Held8ccd3142023-11-16 00:58:30 +0100828struct device_operations amd_fam16_mod30_pci_domain_ops = {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600829 .read_resources = domain_read_resources,
Michał Żygowskif5d457d2021-05-09 13:58:04 +0200830 .set_resources = pci_domain_set_resources,
Arthur Heymans0b0113f2023-08-31 17:09:28 +0200831 .scan_bus = pci_host_bridge_scan_bus,
Philipp Deppenwiese30670122017-03-01 02:24:33 +0100832 .acpi_name = domain_acpi_name,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600833};
834
Michał Kopećdc35d2a2021-11-30 17:40:52 +0100835void mp_init_cpus(struct bus *cpu_bus)
836{
Arthur Heymans4fcaccf2022-06-02 13:17:37 +0200837 extern const struct mp_ops amd_mp_ops_no_smm;
Michał Kopećdc35d2a2021-11-30 17:40:52 +0100838 /* TODO: Handle mp_init_with_smm failure? */
Arthur Heymans4fcaccf2022-06-02 13:17:37 +0200839 mp_init_with_smm(cpu_bus, &amd_mp_ops_no_smm);
Michał Kopećdc35d2a2021-11-30 17:40:52 +0100840
841 /* The flash is now no longer cacheable. Reset to WP for performance. */
842 mtrr_use_temp_range(OPTIMAL_CACHE_ROM_BASE, OPTIMAL_CACHE_ROM_SIZE,
843 MTRR_TYPE_WRPROT);
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600844}
845
Felix Heldc391bff2023-02-16 19:38:49 +0100846void generate_cpu_entries(const struct device *device)
847{
848 int cpu;
849 const int cores = get_cpu_count();
850
851 printk(BIOS_DEBUG, "ACPI \\_SB report %d core(s)\n", cores);
852
853 /* Generate \_SB.Pxxx */
854 for (cpu = 0; cpu < cores; cpu++) {
855 acpigen_write_processor_device(cpu);
856 acpigen_write_processor_device_end();
857 }
858}
859
Felix Held8ccd3142023-11-16 00:58:30 +0100860struct device_operations amd_fam16_mod30_cpu_bus_ops = {
Felix Heldc391bff2023-02-16 19:38:49 +0100861 .read_resources = noop_read_resources,
862 .set_resources = noop_set_resources,
863 .init = mp_cpu_bus_init,
864 .acpi_fill_ssdt = generate_cpu_entries,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600865};
866
Felix Held1952d132023-11-16 00:54:30 +0100867struct chip_operations northbridge_amd_pi_00730F01_ops = {
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600868 CHIP_NAME("AMD FAM16 Root Complex")
Felix Held1952d132023-11-16 00:54:30 +0100869 .final = fam16_finalize,
Bruce Griffith27ed80b2014-08-15 11:46:25 -0600870};
871
872/*********************************************************************
873 * Change the vendor / device IDs to match the generic VBIOS header. *
874 *********************************************************************/
875u32 map_oprom_vendev(u32 vendev)
876{
877 u32 new_vendev;
878 new_vendev =
879 ((0x10029850 <= vendev) && (vendev <= 0x1002986F)) ? 0x10029850 : vendev;
880
881 if (vendev != new_vendev)
882 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n", vendev, new_vendev);
883
884 return new_vendev;
885}