blob: 5d5ed7a38abed39aae91fe8e4ccffd5fbcd887e3 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Marc Jones1587dc82017-05-15 18:55:11 -06002
Furquan Shaikh91a7abf2020-04-27 18:48:48 -07003#include <assert.h>
Michał Żygowskif65c1e42019-12-01 18:14:39 +01004#include <amdblocks/biosram.h>
Furquan Shaikh91a7abf2020-04-27 18:48:48 -07005#include <amdblocks/hda.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Marc Jonesd6a82002018-03-31 22:46:57 -06007#include <arch/ioapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07008#include <acpi/acpi.h>
9#include <acpi/acpigen.h>
Marc Jones1587dc82017-05-15 18:55:11 -060010#include <cbmem.h>
Marc Jones1587dc82017-05-15 18:55:11 -060011#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -060012#include <cpu/amd/mtrr.h>
Marshall Dawson154239a2017-11-02 09:49:30 -060013#include <cpu/x86/lapic_def.h>
Marshall Dawsonf82aa102017-09-20 18:01:41 -060014#include <cpu/x86/msr.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020015#include <cpu/amd/msr.h>
Marc Jones1587dc82017-05-15 18:55:11 -060016#include <device/device.h>
17#include <device/pci.h>
18#include <device/pci_ids.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070019#include <amdblocks/agesawrapper.h>
20#include <amdblocks/agesawrapper_call.h>
Felix Held604ffa62021-02-12 00:43:20 +010021#include <amdblocks/ioapic.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070022#include <agesa_headers.h>
Marshall Dawson653f7602018-09-04 13:25:39 -060023#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060024#include <soc/northbridge.h>
Marshall Dawson38bded02017-09-01 09:54:48 -060025#include <soc/pci_devs.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070026#include <soc/iomap.h>
Marc Jones1587dc82017-05-15 18:55:11 -060027#include <stdint.h>
Marc Jones1587dc82017-05-15 18:55:11 -060028#include <string.h>
29
Elyes HAOUASc3385072019-03-21 15:38:06 +010030#include "chip.h"
31
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020032static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
Marc Jones1587dc82017-05-15 18:55:11 -060033 u32 io_min, u32 io_max)
34{
35 u32 tempreg;
Marshall Dawson38bded02017-09-01 09:54:48 -060036
Marshall Dawson4e101ad2017-06-15 12:17:38 -060037 /* io range allocation. Limit */
38 tempreg = (nodeid & 0xf) | ((nodeid & 0x30) << (8 - 4)) | (linkn << 4)
39 | ((io_max & 0xf0) << (12 - 4));
Richard Spiegel41baf0c2018-10-22 13:57:18 -070040 pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg);
Marshall Dawson4e101ad2017-06-15 12:17:38 -060041 tempreg = 3 | ((io_min & 0xf0) << (12 - 4)); /* base: ISA and VGA ? */
Richard Spiegel41baf0c2018-10-22 13:57:18 -070042 pci_write_config32(SOC_ADDR_DEV, reg, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060043}
44
Marshall Dawson4e101ad2017-06-15 12:17:38 -060045static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index,
46 u32 mmio_min, u32 mmio_max)
Marc Jones1587dc82017-05-15 18:55:11 -060047{
48 u32 tempreg;
Marshall Dawson38bded02017-09-01 09:54:48 -060049
Marshall Dawson4e101ad2017-06-15 12:17:38 -060050 /* io range allocation. Limit */
51 tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00);
Richard Spiegel41baf0c2018-10-22 13:57:18 -070052 pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060053 tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00);
Richard Spiegel41baf0c2018-10-22 13:57:18 -070054 pci_write_config32(SOC_ADDR_DEV, reg, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060055}
56
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020057static void read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -060058{
Marc Jonesd6a82002018-03-31 22:46:57 -060059 struct resource *res;
60
Marc Jones1587dc82017-05-15 18:55:11 -060061 /*
62 * This MMCONF resource must be reserved in the PCI domain.
63 * It is not honored by the coreboot resource allocator if it is in
64 * the CPU_CLUSTER.
65 */
Aaron Durbin3173d442017-11-03 12:14:25 -060066 mmconf_resource(dev, MMIO_CONF_BASE);
Marc Jonesd6a82002018-03-31 22:46:57 -060067
68 /* NB IOAPIC2 resource */
69 res = new_resource(dev, IO_APIC2_ADDR); /* IOAPIC2 */
70 res->base = IO_APIC2_ADDR;
71 res->size = 0x00001000;
72 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Marc Jones1587dc82017-05-15 18:55:11 -060073}
74
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070075static void set_resource(struct device *dev, struct resource *res, u32 nodeid)
Marc Jones1587dc82017-05-15 18:55:11 -060076{
77 resource_t rbase, rend;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060078 unsigned int reg, link_num;
Marc Jones1587dc82017-05-15 18:55:11 -060079 char buf[50];
80
81 /* Make certain the resource has actually been set */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070082 if (!(res->flags & IORESOURCE_ASSIGNED))
Marc Jones1587dc82017-05-15 18:55:11 -060083 return;
84
85 /* If I have already stored this resource don't worry about it */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070086 if (res->flags & IORESOURCE_STORED)
Marc Jones1587dc82017-05-15 18:55:11 -060087 return;
88
89 /* Only handle PCI memory and IO resources */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070090 if (!(res->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Marc Jones1587dc82017-05-15 18:55:11 -060091 return;
92
93 /* Ensure I am actually looking at a resource of function 1 */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070094 if ((res->index & 0xffff) < 0x1000)
Marc Jones1587dc82017-05-15 18:55:11 -060095 return;
96
97 /* Get the base address */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070098 rbase = res->base;
Marc Jones1587dc82017-05-15 18:55:11 -060099
100 /* Get the limit (rounded up) */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700101 rend = resource_end(res);
Marc Jones1587dc82017-05-15 18:55:11 -0600102
103 /* Get the register and link */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700104 reg = res->index & 0xfff; /* 4k */
105 link_num = IOINDEX_LINK(res->index);
Marc Jones1587dc82017-05-15 18:55:11 -0600106
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700107 if (res->flags & IORESOURCE_IO)
Marc Jones1587dc82017-05-15 18:55:11 -0600108 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700109 else if (res->flags & IORESOURCE_MEM)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600110 set_mmio_addr_reg(nodeid, link_num, reg,
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700111 (res->index >> 24), rbase >> 8, rend >> 8);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600112
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700113 res->flags |= IORESOURCE_STORED;
Marc Jones1587dc82017-05-15 18:55:11 -0600114 snprintf(buf, sizeof(buf), " <node %x link %x>",
115 nodeid, link_num);
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700116 report_resource_stored(dev, res, buf);
Marc Jones1587dc82017-05-15 18:55:11 -0600117}
118
119/**
120 * I tried to reuse the resource allocation code in set_resource()
121 * but it is too difficult to deal with the resource allocation magic.
122 */
123
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200124static void create_vga_resource(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600125{
126 struct bus *link;
127
128 /* find out which link the VGA card is connected,
129 * we only deal with the 'first' vga card */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600130 for (link = dev->link_list ; link ; link = link->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600131 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
132 break;
Marc Jones1587dc82017-05-15 18:55:11 -0600133
134 /* no VGA card installed */
135 if (link == NULL)
136 return;
137
Marshall Dawsone2697de2017-09-06 10:46:36 -0600138 printk(BIOS_DEBUG, "VGA: %s has VGA device\n", dev_path(dev));
Marshall Dawson38bded02017-09-01 09:54:48 -0600139 /* Route A0000-BFFFF, IO 3B0-3BB 3C0-3DF */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700140 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
Marc Jones1587dc82017-05-15 18:55:11 -0600141}
142
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200143static void set_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600144{
145 struct bus *bus;
146 struct resource *res;
147
Marc Jones1587dc82017-05-15 18:55:11 -0600148 /* do we need this? */
149 create_vga_resource(dev);
150
151 /* Set each resource we have found */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600152 for (res = dev->resource_list ; res ; res = res->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600153 set_resource(dev, res, 0);
Marc Jones1587dc82017-05-15 18:55:11 -0600154
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600155 for (bus = dev->link_list ; bus ; bus = bus->next)
156 if (bus->children)
Marc Jones1587dc82017-05-15 18:55:11 -0600157 assign_resources(bus);
Marc Jones1587dc82017-05-15 18:55:11 -0600158}
159
160static void northbridge_init(struct device *dev)
161{
Felix Held604ffa62021-02-12 00:43:20 +0100162 setup_ioapic((u8 *)IO_APIC2_ADDR, GNB_IOAPIC_ID);
Marc Jones1587dc82017-05-15 18:55:11 -0600163}
164
165static unsigned long acpi_fill_hest(acpi_hest_t *hest)
166{
167 void *addr, *current;
168
169 /* Skip the HEST header. */
170 current = (void *)(hest + 1);
171
172 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
173 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600174 current += acpi_create_hest_error_source(hest, current, 0,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700175 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600176
177 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
178 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600179 current += acpi_create_hest_error_source(hest, current, 1,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700180 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600181
182 return (unsigned long)current;
183}
184
Furquan Shaikh7536a392020-04-24 21:59:21 -0700185static void northbridge_fill_ssdt_generator(const struct device *device)
Marc Jones1587dc82017-05-15 18:55:11 -0600186{
187 msr_t msr;
188 char pscope[] = "\\_SB.PCI0";
189
190 acpigen_write_scope(pscope);
191 msr = rdmsr(TOP_MEM);
192 acpigen_write_name_dword("TOM1", msr.lo);
193 msr = rdmsr(TOP_MEM2);
194 /*
195 * Since XP only implements parts of ACPI 2.0, we can't use a qword
196 * here.
197 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
198 * slide 22ff.
199 * Shift value right by 20 bit to make it fit into 32bit,
200 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
201 */
202 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
203 acpigen_pop_len();
204}
205
Michał Żygowski9550e972020-03-20 13:56:46 +0100206static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
207{
208 unsigned int len = ssdt->length - sizeof(acpi_header_t);
209 unsigned int i;
210
211 for (i = sizeof(acpi_header_t); i < len; i++) {
212 /* Search for _PR_ scope and replace it with _SB_ */
213 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
214 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
215 }
216 /* Recalculate checksum */
217 ssdt->checksum = 0;
218 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
219}
220
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700221static unsigned long agesa_write_acpi_tables(const struct device *device,
Marc Jones1587dc82017-05-15 18:55:11 -0600222 unsigned long current,
223 acpi_rsdp_t *rsdp)
224{
225 acpi_srat_t *srat;
226 acpi_slit_t *slit;
227 acpi_header_t *ssdt;
228 acpi_header_t *alib;
229 acpi_header_t *ivrs;
230 acpi_hest_t *hest;
231
232 /* HEST */
233 current = ALIGN(current, 8);
234 hest = (acpi_hest_t *)current;
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700235 acpi_write_hest(hest, acpi_fill_hest);
Marc Jones1587dc82017-05-15 18:55:11 -0600236 acpi_add_table(rsdp, (void *)current);
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700237 current += hest->header.length;
Marc Jones1587dc82017-05-15 18:55:11 -0600238
239 current = ALIGN(current, 8);
240 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
241 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
242 if (ivrs != NULL) {
243 memcpy((void *)current, ivrs, ivrs->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600244 ivrs = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600245 current += ivrs->length;
246 acpi_add_table(rsdp, ivrs);
247 } else {
248 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
249 }
250
251 /* SRAT */
252 current = ALIGN(current, 8);
253 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600254 srat = (acpi_srat_t *)agesawrapper_getlateinitptr(PICK_SRAT);
Marc Jones1587dc82017-05-15 18:55:11 -0600255 if (srat != NULL) {
256 memcpy((void *)current, srat, srat->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600257 srat = (acpi_srat_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600258 current += srat->header.length;
259 acpi_add_table(rsdp, srat);
260 } else {
261 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
262 }
263
264 /* SLIT */
265 current = ALIGN(current, 8);
266 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600267 slit = (acpi_slit_t *)agesawrapper_getlateinitptr(PICK_SLIT);
Marc Jones1587dc82017-05-15 18:55:11 -0600268 if (slit != NULL) {
269 memcpy((void *)current, slit, slit->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600270 slit = (acpi_slit_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600271 current += slit->header.length;
272 acpi_add_table(rsdp, slit);
273 } else {
274 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
275 }
276
277 /* ALIB */
278 current = ALIGN(current, 16);
279 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600280 alib = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_ALIB);
Marc Jones1587dc82017-05-15 18:55:11 -0600281 if (alib != NULL) {
282 memcpy((void *)current, alib, alib->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600283 alib = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600284 current += alib->length;
285 acpi_add_table(rsdp, (void *)alib);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600286 } else {
287 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL."
288 " Skipping.\n");
Marc Jones1587dc82017-05-15 18:55:11 -0600289 }
290
Marc Jones1587dc82017-05-15 18:55:11 -0600291 current = ALIGN(current, 16);
292 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600293 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_PSTATE);
Marc Jones1587dc82017-05-15 18:55:11 -0600294 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100295 patch_ssdt_processor_scope(ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600296 memcpy((void *)current, ssdt, ssdt->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600297 ssdt = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600298 current += ssdt->length;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600299 } else {
Marc Jones1587dc82017-05-15 18:55:11 -0600300 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
301 }
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600302 acpi_add_table(rsdp, ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600303
304 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
305 return current;
306}
307
308static struct device_operations northbridge_operations = {
309 .read_resources = read_resources,
310 .set_resources = set_resources,
311 .enable_resources = pci_dev_enable_resources,
312 .init = northbridge_init,
Nico Huber68680dd2020-03-31 17:34:52 +0200313 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Marc Jones1587dc82017-05-15 18:55:11 -0600314 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones1587dc82017-05-15 18:55:11 -0600315};
316
Richard Spiegel9247e862019-06-28 09:18:47 -0700317static const unsigned short pci_device_ids[] = {
318 PCI_DEVICE_ID_AMD_15H_MODEL_606F_NB_HT,
319 PCI_DEVICE_ID_AMD_15H_MODEL_707F_NB_HT,
320 0 };
321
Marc Jones1587dc82017-05-15 18:55:11 -0600322static const struct pci_driver family15_northbridge __pci_driver = {
323 .ops = &northbridge_operations,
324 .vendor = PCI_VENDOR_ID_AMD,
Richard Spiegel9247e862019-06-28 09:18:47 -0700325 .devices = pci_device_ids,
Marc Jones1587dc82017-05-15 18:55:11 -0600326};
327
Marshall Dawson154239a2017-11-02 09:49:30 -0600328/*
329 * Enable VGA cycles. Set memory ranges of the FCH legacy devices (TPM, HPET,
330 * BIOS RAM, Watchdog Timer, IOAPIC and ACPI) as non-posted. Set remaining
331 * MMIO to posted. Route all I/O to the southbridge.
332 */
333void amd_initcpuio(void)
334{
Arthur Heymansc4350382021-10-28 12:35:39 +0200335 uintptr_t topmem = amd_topmem();
Marshall Dawson154239a2017-11-02 09:49:30 -0600336 uintptr_t base, limit;
337
338 /* Enable legacy video routing: D18F1xF4 VGA Enable */
339 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
340
341 /* Non-posted: range(HPET-LAPIC) or 0xfed00000 through 0xfee00000-1 */
342 base = (HPET_BASE_ADDRESS >> 8) | MMIO_WE | MMIO_RE;
Kyösti Mälkkidea42e02021-05-31 20:26:16 +0300343 limit = (ALIGN_DOWN(LAPIC_DEFAULT_BASE - 1, 64 * KiB) >> 8) | MMIO_NP;
Marshall Dawson154239a2017-11-02 09:49:30 -0600344 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(0), limit);
345 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(0), base);
346
347 /* Remaining PCI hole posted MMIO: TOM-HPET (TOM through 0xfed00000-1 */
348 base = (topmem >> 8) | MMIO_WE | MMIO_RE;
349 limit = ALIGN_DOWN(HPET_BASE_ADDRESS - 1, 64 * KiB) >> 8;
350 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(1), limit);
351 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(1), base);
352
353 /* Route all I/O downstream */
354 base = 0 | IO_WE | IO_RE;
355 limit = ALIGN_DOWN(0xffff, 4 * KiB);
356 pci_write_config32(SOC_ADDR_DEV, NB_IO_LIMIT(0), limit);
357 pci_write_config32(SOC_ADDR_DEV, NB_IO_BASE(0), base);
358}
359
Marc Jones1587dc82017-05-15 18:55:11 -0600360void fam15_finalize(void *chip_info)
361{
Marc Jones1587dc82017-05-15 18:55:11 -0600362 u32 value;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700363
364 /* TODO: move IOAPIC code to dsdt.asl */
365 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_INDEX, 0);
366 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_DATA, 5);
Marc Jones1587dc82017-05-15 18:55:11 -0600367
368 /* disable No Snoop */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700369 value = pci_read_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS);
Richard Spiegel3d34ae32018-04-13 13:20:08 -0700370 value &= ~HDA_NO_SNOOP_EN;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700371 pci_write_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS, value);
Marc Jones1587dc82017-05-15 18:55:11 -0600372}
373
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200374void domain_enable_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600375{
Marc Jones1587dc82017-05-15 18:55:11 -0600376 /* Must be called after PCI enumeration and resource allocation */
Kyösti Mälkki9e591c42021-01-09 12:37:25 +0200377 if (!acpi_is_wakeup_s3())
Kyösti Mälkki6e512c42018-06-14 06:57:05 +0300378 do_agesawrapper(AMD_INIT_MID, "amdinitmid");
Marc Jones1587dc82017-05-15 18:55:11 -0600379}
380
Furquan Shaikhfc752b62020-05-13 12:14:11 -0700381void domain_read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600382{
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700383 uint64_t uma_base = get_uma_base();
384 uint32_t uma_size = get_uma_size();
385 uint32_t mem_useable = (uintptr_t)cbmem_top();
386 msr_t tom = rdmsr(TOP_MEM);
387 msr_t high_tom = rdmsr(TOP_MEM2);
388 uint64_t high_mem_useable;
389 int idx = 0x10;
Marc Jones1587dc82017-05-15 18:55:11 -0600390
Furquan Shaikhfc752b62020-05-13 12:14:11 -0700391 pci_domain_read_resources(dev);
392
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700393 /* 0x0 -> 0x9ffff */
394 ram_resource(dev, idx++, 0, 0xa0000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600395
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700396 /* 0xa0000 -> 0xbffff: legacy VGA */
397 mmio_resource(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
398
399 /* 0xc0000 -> 0xfffff: Option ROM */
400 reserved_ram_resource(dev, idx++, 0xc0000 / KiB, 0x40000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600401
Marshall Dawson29f1b742017-09-06 14:59:45 -0600402 /*
Martin Roth26f97f92021-10-01 14:53:22 -0600403 * 0x100000 (1MiB) -> low top usable RAM
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700404 * cbmem_top() accounts for low UMA and TSEG if they are used.
Marc Jones1587dc82017-05-15 18:55:11 -0600405 */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700406 ram_resource(dev, idx++, (1 * MiB) / KiB,
407 (mem_useable - (1 * MiB)) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600408
Martin Roth26f97f92021-10-01 14:53:22 -0600409 /* Low top usable RAM -> Low top RAM (bottom pci mmio hole) */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700410 reserved_ram_resource(dev, idx++, mem_useable / KiB,
411 (tom.lo - mem_useable) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600412
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700413 /* If there is memory above 4GiB */
414 if (high_tom.hi) {
Martin Roth26f97f92021-10-01 14:53:22 -0600415 /* 4GiB -> high top usable */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700416 if (uma_base >= (4ull * GiB))
417 high_mem_useable = uma_base;
418 else
419 high_mem_useable = ((uint64_t)high_tom.lo |
420 ((uint64_t)high_tom.hi << 32));
Marc Jones1587dc82017-05-15 18:55:11 -0600421
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700422 ram_resource(dev, idx++, (4ull * GiB) / KiB,
423 ((high_mem_useable - (4ull * GiB)) / KiB));
Marc Jones1587dc82017-05-15 18:55:11 -0600424
Martin Roth26f97f92021-10-01 14:53:22 -0600425 /* High top usable RAM -> high top RAM */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700426 if (uma_base >= (4ull * GiB)) {
427 reserved_ram_resource(dev, idx++, uma_base / KiB,
428 uma_size / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600429 }
Marc Jones1587dc82017-05-15 18:55:11 -0600430 }
Marc Jones1587dc82017-05-15 18:55:11 -0600431}
432
Marc Jones1587dc82017-05-15 18:55:11 -0600433/*********************************************************************
434 * Change the vendor / device IDs to match the generic VBIOS header. *
435 *********************************************************************/
436u32 map_oprom_vendev(u32 vendev)
437{
438 u32 new_vendev;
Richard Spiegel9247e862019-06-28 09:18:47 -0700439
440 if ((vendev >= 0x100298e0) && (vendev <= 0x100298ef))
441 new_vendev = 0x100298e0;
442 else if ((vendev >= 0x10029870) && (vendev <= 0x1002987f))
443 new_vendev = 0x10029870;
444 else
445 new_vendev = vendev;
Marc Jones1587dc82017-05-15 18:55:11 -0600446
447 if (vendev != new_vendev)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600448 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n",
449 vendev, new_vendev);
Marc Jones1587dc82017-05-15 18:55:11 -0600450
451 return new_vendev;
452}
Marshall Dawson2942db62017-12-14 10:00:27 -0700453
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700454__weak void set_board_env_params(GNB_ENV_CONFIGURATION *params) { }
455
Marshall Dawson2942db62017-12-14 10:00:27 -0700456void SetNbEnvParams(GNB_ENV_CONFIGURATION *params)
457{
Martin Roth50f2e4c2018-10-29 11:16:53 -0600458 const struct device *dev = SOC_IOMMU_DEV;
459 params->IommuSupport = dev && dev->enabled;
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700460 set_board_env_params(params);
Marshall Dawson2942db62017-12-14 10:00:27 -0700461}
462
463void SetNbMidParams(GNB_MID_CONFIGURATION *params)
464{
465 /* 0=Primary and decode all VGA resources, 1=Secondary - decode none */
466 params->iGpuVgaMode = 0;
467 params->GnbIoapicAddress = IO_APIC2_ADDR;
468}
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700469
470void hda_soc_ssdt_quirks(const struct device *dev)
471{
472 const char *scope = acpi_device_path(dev);
473 static const struct fieldlist list[] = {
474 FIELDLIST_OFFSET(0x42),
475 FIELDLIST_NAMESTR("NSDI", 1),
476 FIELDLIST_NAMESTR("NSDO", 1),
477 FIELDLIST_NAMESTR("NSEN", 1),
478 };
479 struct opregion opreg = OPREGION("AZPD", PCI_CONFIG, 0x0, 0x100);
480
481 assert(scope);
482
483 acpigen_write_scope(scope);
484
485 /*
486 * OperationRegion(AZPD, PCI_Config, 0x00, 0x100)
487 * Field (AZPD, AnyAcc, NoLock, Preserve) {
488 * Offset (0x42),
489 * NSDI, 1,
490 * NSDO, 1,
491 * NSEN, 1,
492 * }
493 */
494 acpigen_write_opregion(&opreg);
495 acpigen_write_field(opreg.name, list, ARRAY_SIZE(list),
496 FIELD_ANYACC | FIELD_NOLOCK | FIELD_PRESERVE);
497
498 /*
499 * Method (_INI, 0, NotSerialized) {
Kyösti Mälkkiff9ba542021-02-09 17:38:23 +0200500 * Store (Zero, NSEN)
501 * Store (One, NSDO)
502 * Store (One, NSDI)
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700503 * }
504 */
505 acpigen_write_method("_INI", 0);
506
Furquan Shaikhac204ba2021-02-19 10:23:17 -0800507 acpigen_write_store_op_to_namestr(ZERO_OP, "NSEN");
508 acpigen_write_store_op_to_namestr(ONE_OP, "NSDO");
509 acpigen_write_store_op_to_namestr(ONE_OP, "NSDI");
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700510
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700511 acpigen_pop_len(); /* Method _INI */
512
513 acpigen_pop_len(); /* Scope */
514}