blob: a47ef25e728b77978f269438a9caf1a298372562 [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>
Felix Held4b2464f2022-02-23 17:54:20 +01007#include <arch/hpet.h>
Marc Jonesd6a82002018-03-31 22:46:57 -06008#include <arch/ioapic.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -07009#include <acpi/acpi.h>
10#include <acpi/acpigen.h>
Marc Jones1587dc82017-05-15 18:55:11 -060011#include <cbmem.h>
Marc Jones1587dc82017-05-15 18:55:11 -060012#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -060013#include <cpu/amd/mtrr.h>
Marshall Dawson154239a2017-11-02 09:49:30 -060014#include <cpu/x86/lapic_def.h>
Marshall Dawsonf82aa102017-09-20 18:01:41 -060015#include <cpu/x86/msr.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020016#include <cpu/amd/msr.h>
Marc Jones1587dc82017-05-15 18:55:11 -060017#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070020#include <amdblocks/agesawrapper.h>
21#include <amdblocks/agesawrapper_call.h>
Felix Held604ffa62021-02-12 00:43:20 +010022#include <amdblocks/ioapic.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070023#include <agesa_headers.h>
Marshall Dawson653f7602018-09-04 13:25:39 -060024#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060025#include <soc/northbridge.h>
Marshall Dawson38bded02017-09-01 09:54:48 -060026#include <soc/pci_devs.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070027#include <soc/iomap.h>
Marc Jones1587dc82017-05-15 18:55:11 -060028#include <stdint.h>
Marc Jones1587dc82017-05-15 18:55:11 -060029#include <string.h>
30
Elyes HAOUASc3385072019-03-21 15:38:06 +010031#include "chip.h"
32
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020033static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
Marc Jones1587dc82017-05-15 18:55:11 -060034 u32 io_min, u32 io_max)
35{
36 u32 tempreg;
Marshall Dawson38bded02017-09-01 09:54:48 -060037
Marshall Dawson4e101ad2017-06-15 12:17:38 -060038 /* io range allocation. Limit */
39 tempreg = (nodeid & 0xf) | ((nodeid & 0x30) << (8 - 4)) | (linkn << 4)
40 | ((io_max & 0xf0) << (12 - 4));
Richard Spiegel41baf0c2018-10-22 13:57:18 -070041 pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg);
Marshall Dawson4e101ad2017-06-15 12:17:38 -060042 tempreg = 3 | ((io_min & 0xf0) << (12 - 4)); /* base: ISA and VGA ? */
Richard Spiegel41baf0c2018-10-22 13:57:18 -070043 pci_write_config32(SOC_ADDR_DEV, reg, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060044}
45
Marshall Dawson4e101ad2017-06-15 12:17:38 -060046static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index,
47 u32 mmio_min, u32 mmio_max)
Marc Jones1587dc82017-05-15 18:55:11 -060048{
49 u32 tempreg;
Marshall Dawson38bded02017-09-01 09:54:48 -060050
Marshall Dawson4e101ad2017-06-15 12:17:38 -060051 /* io range allocation. Limit */
52 tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00);
Richard Spiegel41baf0c2018-10-22 13:57:18 -070053 pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060054 tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00);
Richard Spiegel41baf0c2018-10-22 13:57:18 -070055 pci_write_config32(SOC_ADDR_DEV, reg, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060056}
57
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020058static void read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -060059{
Felix Held56b037b2022-03-02 22:57:01 +010060 unsigned int idx = 0;
Marc Jonesd6a82002018-03-31 22:46:57 -060061 struct resource *res;
62
Felix Heldaf17f0b2022-03-02 23:36:55 +010063 /* The northbridge has no PCI BARs implemented, so there's no need to call
64 pci_dev_read_resources for it */
65
Marc Jones1587dc82017-05-15 18:55:11 -060066 /*
67 * This MMCONF resource must be reserved in the PCI domain.
68 * It is not honored by the coreboot resource allocator if it is in
69 * the CPU_CLUSTER.
70 */
Felix Held56b037b2022-03-02 22:57:01 +010071 mmconf_resource(dev, idx++);
Marc Jonesd6a82002018-03-31 22:46:57 -060072
73 /* NB IOAPIC2 resource */
Felix Heldb1197af2022-03-02 23:02:31 +010074 res = new_resource(dev, idx++); /* IOAPIC2 */
Marc Jonesd6a82002018-03-31 22:46:57 -060075 res->base = IO_APIC2_ADDR;
76 res->size = 0x00001000;
77 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Marc Jones1587dc82017-05-15 18:55:11 -060078}
79
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070080static void set_resource(struct device *dev, struct resource *res, u32 nodeid)
Marc Jones1587dc82017-05-15 18:55:11 -060081{
82 resource_t rbase, rend;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060083 unsigned int reg, link_num;
Marc Jones1587dc82017-05-15 18:55:11 -060084 char buf[50];
85
86 /* Make certain the resource has actually been set */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070087 if (!(res->flags & IORESOURCE_ASSIGNED))
Marc Jones1587dc82017-05-15 18:55:11 -060088 return;
89
90 /* If I have already stored this resource don't worry about it */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070091 if (res->flags & IORESOURCE_STORED)
Marc Jones1587dc82017-05-15 18:55:11 -060092 return;
93
94 /* Only handle PCI memory and IO resources */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070095 if (!(res->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Marc Jones1587dc82017-05-15 18:55:11 -060096 return;
97
98 /* Ensure I am actually looking at a resource of function 1 */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070099 if ((res->index & 0xffff) < 0x1000)
Marc Jones1587dc82017-05-15 18:55:11 -0600100 return;
101
102 /* Get the base address */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700103 rbase = res->base;
Marc Jones1587dc82017-05-15 18:55:11 -0600104
105 /* Get the limit (rounded up) */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700106 rend = resource_end(res);
Marc Jones1587dc82017-05-15 18:55:11 -0600107
108 /* Get the register and link */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700109 reg = res->index & 0xfff; /* 4k */
110 link_num = IOINDEX_LINK(res->index);
Marc Jones1587dc82017-05-15 18:55:11 -0600111
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700112 if (res->flags & IORESOURCE_IO)
Marc Jones1587dc82017-05-15 18:55:11 -0600113 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700114 else if (res->flags & IORESOURCE_MEM)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600115 set_mmio_addr_reg(nodeid, link_num, reg,
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700116 (res->index >> 24), rbase >> 8, rend >> 8);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600117
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700118 res->flags |= IORESOURCE_STORED;
Marc Jones1587dc82017-05-15 18:55:11 -0600119 snprintf(buf, sizeof(buf), " <node %x link %x>",
120 nodeid, link_num);
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700121 report_resource_stored(dev, res, buf);
Marc Jones1587dc82017-05-15 18:55:11 -0600122}
123
124/**
125 * I tried to reuse the resource allocation code in set_resource()
126 * but it is too difficult to deal with the resource allocation magic.
127 */
128
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200129static void create_vga_resource(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600130{
131 struct bus *link;
132
133 /* find out which link the VGA card is connected,
134 * we only deal with the 'first' vga card */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600135 for (link = dev->link_list ; link ; link = link->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600136 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
137 break;
Marc Jones1587dc82017-05-15 18:55:11 -0600138
139 /* no VGA card installed */
140 if (link == NULL)
141 return;
142
Marshall Dawsone2697de2017-09-06 10:46:36 -0600143 printk(BIOS_DEBUG, "VGA: %s has VGA device\n", dev_path(dev));
Marshall Dawson38bded02017-09-01 09:54:48 -0600144 /* Route A0000-BFFFF, IO 3B0-3BB 3C0-3DF */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700145 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
Marc Jones1587dc82017-05-15 18:55:11 -0600146}
147
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200148static void set_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600149{
150 struct bus *bus;
151 struct resource *res;
152
Marc Jones1587dc82017-05-15 18:55:11 -0600153 /* do we need this? */
154 create_vga_resource(dev);
155
156 /* Set each resource we have found */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600157 for (res = dev->resource_list ; res ; res = res->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600158 set_resource(dev, res, 0);
Marc Jones1587dc82017-05-15 18:55:11 -0600159
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600160 for (bus = dev->link_list ; bus ; bus = bus->next)
161 if (bus->children)
Marc Jones1587dc82017-05-15 18:55:11 -0600162 assign_resources(bus);
Marc Jones1587dc82017-05-15 18:55:11 -0600163}
164
165static void northbridge_init(struct device *dev)
166{
Felix Held604ffa62021-02-12 00:43:20 +0100167 setup_ioapic((u8 *)IO_APIC2_ADDR, GNB_IOAPIC_ID);
Marc Jones1587dc82017-05-15 18:55:11 -0600168}
169
170static unsigned long acpi_fill_hest(acpi_hest_t *hest)
171{
172 void *addr, *current;
173
174 /* Skip the HEST header. */
175 current = (void *)(hest + 1);
176
177 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
178 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600179 current += acpi_create_hest_error_source(hest, current, 0,
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 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
183 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600184 current += acpi_create_hest_error_source(hest, current, 1,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700185 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600186
187 return (unsigned long)current;
188}
189
Furquan Shaikh7536a392020-04-24 21:59:21 -0700190static void northbridge_fill_ssdt_generator(const struct device *device)
Marc Jones1587dc82017-05-15 18:55:11 -0600191{
192 msr_t msr;
193 char pscope[] = "\\_SB.PCI0";
194
195 acpigen_write_scope(pscope);
196 msr = rdmsr(TOP_MEM);
197 acpigen_write_name_dword("TOM1", msr.lo);
198 msr = rdmsr(TOP_MEM2);
199 /*
200 * Since XP only implements parts of ACPI 2.0, we can't use a qword
201 * here.
202 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
203 * slide 22ff.
204 * Shift value right by 20 bit to make it fit into 32bit,
205 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
206 */
207 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
208 acpigen_pop_len();
209}
210
Michał Żygowski9550e972020-03-20 13:56:46 +0100211static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
212{
213 unsigned int len = ssdt->length - sizeof(acpi_header_t);
214 unsigned int i;
215
216 for (i = sizeof(acpi_header_t); i < len; i++) {
217 /* Search for _PR_ scope and replace it with _SB_ */
218 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
219 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
220 }
221 /* Recalculate checksum */
222 ssdt->checksum = 0;
223 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
224}
225
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700226static unsigned long agesa_write_acpi_tables(const struct device *device,
Marc Jones1587dc82017-05-15 18:55:11 -0600227 unsigned long current,
228 acpi_rsdp_t *rsdp)
229{
230 acpi_srat_t *srat;
231 acpi_slit_t *slit;
232 acpi_header_t *ssdt;
233 acpi_header_t *alib;
234 acpi_header_t *ivrs;
235 acpi_hest_t *hest;
236
237 /* HEST */
238 current = ALIGN(current, 8);
239 hest = (acpi_hest_t *)current;
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700240 acpi_write_hest(hest, acpi_fill_hest);
Marc Jones1587dc82017-05-15 18:55:11 -0600241 acpi_add_table(rsdp, (void *)current);
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700242 current += hest->header.length;
Marc Jones1587dc82017-05-15 18:55:11 -0600243
244 current = ALIGN(current, 8);
245 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
246 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
247 if (ivrs != NULL) {
248 memcpy((void *)current, ivrs, ivrs->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600249 ivrs = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600250 current += ivrs->length;
251 acpi_add_table(rsdp, ivrs);
252 } else {
253 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
254 }
255
256 /* SRAT */
257 current = ALIGN(current, 8);
258 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600259 srat = (acpi_srat_t *)agesawrapper_getlateinitptr(PICK_SRAT);
Marc Jones1587dc82017-05-15 18:55:11 -0600260 if (srat != NULL) {
261 memcpy((void *)current, srat, srat->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600262 srat = (acpi_srat_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600263 current += srat->header.length;
264 acpi_add_table(rsdp, srat);
265 } else {
266 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
267 }
268
269 /* SLIT */
270 current = ALIGN(current, 8);
271 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600272 slit = (acpi_slit_t *)agesawrapper_getlateinitptr(PICK_SLIT);
Marc Jones1587dc82017-05-15 18:55:11 -0600273 if (slit != NULL) {
274 memcpy((void *)current, slit, slit->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600275 slit = (acpi_slit_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600276 current += slit->header.length;
277 acpi_add_table(rsdp, slit);
278 } else {
279 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
280 }
281
282 /* ALIB */
283 current = ALIGN(current, 16);
284 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600285 alib = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_ALIB);
Marc Jones1587dc82017-05-15 18:55:11 -0600286 if (alib != NULL) {
287 memcpy((void *)current, alib, alib->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600288 alib = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600289 current += alib->length;
290 acpi_add_table(rsdp, (void *)alib);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600291 } else {
292 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL."
293 " Skipping.\n");
Marc Jones1587dc82017-05-15 18:55:11 -0600294 }
295
Marc Jones1587dc82017-05-15 18:55:11 -0600296 current = ALIGN(current, 16);
297 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600298 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_PSTATE);
Marc Jones1587dc82017-05-15 18:55:11 -0600299 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100300 patch_ssdt_processor_scope(ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600301 memcpy((void *)current, ssdt, ssdt->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600302 ssdt = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600303 current += ssdt->length;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600304 } else {
Marc Jones1587dc82017-05-15 18:55:11 -0600305 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
306 }
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600307 acpi_add_table(rsdp, ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600308
309 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
310 return current;
311}
312
313static struct device_operations northbridge_operations = {
314 .read_resources = read_resources,
315 .set_resources = set_resources,
316 .enable_resources = pci_dev_enable_resources,
317 .init = northbridge_init,
Nico Huber68680dd2020-03-31 17:34:52 +0200318 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Marc Jones1587dc82017-05-15 18:55:11 -0600319 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones1587dc82017-05-15 18:55:11 -0600320};
321
Richard Spiegel9247e862019-06-28 09:18:47 -0700322static const unsigned short pci_device_ids[] = {
Felix Singer43b7f412022-03-07 04:34:52 +0100323 PCI_DID_AMD_15H_MODEL_606F_NB_HT,
324 PCI_DID_AMD_15H_MODEL_707F_NB_HT,
Richard Spiegel9247e862019-06-28 09:18:47 -0700325 0 };
326
Marc Jones1587dc82017-05-15 18:55:11 -0600327static const struct pci_driver family15_northbridge __pci_driver = {
328 .ops = &northbridge_operations,
Felix Singer43b7f412022-03-07 04:34:52 +0100329 .vendor = PCI_VID_AMD,
Richard Spiegel9247e862019-06-28 09:18:47 -0700330 .devices = pci_device_ids,
Marc Jones1587dc82017-05-15 18:55:11 -0600331};
332
Marshall Dawson154239a2017-11-02 09:49:30 -0600333/*
334 * Enable VGA cycles. Set memory ranges of the FCH legacy devices (TPM, HPET,
335 * BIOS RAM, Watchdog Timer, IOAPIC and ACPI) as non-posted. Set remaining
336 * MMIO to posted. Route all I/O to the southbridge.
337 */
338void amd_initcpuio(void)
339{
Arthur Heymansc4350382021-10-28 12:35:39 +0200340 uintptr_t topmem = amd_topmem();
Marshall Dawson154239a2017-11-02 09:49:30 -0600341 uintptr_t base, limit;
342
343 /* Enable legacy video routing: D18F1xF4 VGA Enable */
344 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
345
346 /* Non-posted: range(HPET-LAPIC) or 0xfed00000 through 0xfee00000-1 */
347 base = (HPET_BASE_ADDRESS >> 8) | MMIO_WE | MMIO_RE;
Kyösti Mälkkidea42e02021-05-31 20:26:16 +0300348 limit = (ALIGN_DOWN(LAPIC_DEFAULT_BASE - 1, 64 * KiB) >> 8) | MMIO_NP;
Marshall Dawson154239a2017-11-02 09:49:30 -0600349 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(0), limit);
350 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(0), base);
351
352 /* Remaining PCI hole posted MMIO: TOM-HPET (TOM through 0xfed00000-1 */
353 base = (topmem >> 8) | MMIO_WE | MMIO_RE;
354 limit = ALIGN_DOWN(HPET_BASE_ADDRESS - 1, 64 * KiB) >> 8;
355 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(1), limit);
356 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(1), base);
357
358 /* Route all I/O downstream */
359 base = 0 | IO_WE | IO_RE;
360 limit = ALIGN_DOWN(0xffff, 4 * KiB);
361 pci_write_config32(SOC_ADDR_DEV, NB_IO_LIMIT(0), limit);
362 pci_write_config32(SOC_ADDR_DEV, NB_IO_BASE(0), base);
363}
364
Marc Jones1587dc82017-05-15 18:55:11 -0600365void fam15_finalize(void *chip_info)
366{
Marc Jones1587dc82017-05-15 18:55:11 -0600367 u32 value;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700368
369 /* TODO: move IOAPIC code to dsdt.asl */
370 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_INDEX, 0);
371 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_DATA, 5);
Marc Jones1587dc82017-05-15 18:55:11 -0600372
373 /* disable No Snoop */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700374 value = pci_read_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS);
Richard Spiegel3d34ae32018-04-13 13:20:08 -0700375 value &= ~HDA_NO_SNOOP_EN;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700376 pci_write_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS, value);
Marc Jones1587dc82017-05-15 18:55:11 -0600377}
378
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200379void domain_enable_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600380{
Marc Jones1587dc82017-05-15 18:55:11 -0600381 /* Must be called after PCI enumeration and resource allocation */
Kyösti Mälkki9e591c42021-01-09 12:37:25 +0200382 if (!acpi_is_wakeup_s3())
Kyösti Mälkki6e512c42018-06-14 06:57:05 +0300383 do_agesawrapper(AMD_INIT_MID, "amdinitmid");
Marc Jones1587dc82017-05-15 18:55:11 -0600384}
385
Furquan Shaikhfc752b62020-05-13 12:14:11 -0700386void domain_read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600387{
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700388 uint64_t uma_base = get_uma_base();
389 uint32_t uma_size = get_uma_size();
390 uint32_t mem_useable = (uintptr_t)cbmem_top();
391 msr_t tom = rdmsr(TOP_MEM);
392 msr_t high_tom = rdmsr(TOP_MEM2);
393 uint64_t high_mem_useable;
394 int idx = 0x10;
Marc Jones1587dc82017-05-15 18:55:11 -0600395
Furquan Shaikhfc752b62020-05-13 12:14:11 -0700396 pci_domain_read_resources(dev);
397
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700398 /* 0x0 -> 0x9ffff */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300399 ram_resource_kb(dev, idx++, 0, 0xa0000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600400
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700401 /* 0xa0000 -> 0xbffff: legacy VGA */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300402 mmio_resource_kb(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700403
404 /* 0xc0000 -> 0xfffff: Option ROM */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300405 reserved_ram_resource_kb(dev, idx++, 0xc0000 / KiB, 0x40000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600406
Marshall Dawson29f1b742017-09-06 14:59:45 -0600407 /*
Martin Roth26f97f92021-10-01 14:53:22 -0600408 * 0x100000 (1MiB) -> low top usable RAM
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700409 * cbmem_top() accounts for low UMA and TSEG if they are used.
Marc Jones1587dc82017-05-15 18:55:11 -0600410 */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300411 ram_resource_kb(dev, idx++, (1 * MiB) / KiB,
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700412 (mem_useable - (1 * MiB)) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600413
Martin Roth26f97f92021-10-01 14:53:22 -0600414 /* Low top usable RAM -> Low top RAM (bottom pci mmio hole) */
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300415 reserved_ram_resource_kb(dev, idx++, mem_useable / KiB,
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700416 (tom.lo - mem_useable) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600417
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700418 /* If there is memory above 4GiB */
419 if (high_tom.hi) {
Martin Roth26f97f92021-10-01 14:53:22 -0600420 /* 4GiB -> high top usable */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700421 if (uma_base >= (4ull * GiB))
422 high_mem_useable = uma_base;
423 else
424 high_mem_useable = ((uint64_t)high_tom.lo |
425 ((uint64_t)high_tom.hi << 32));
Marc Jones1587dc82017-05-15 18:55:11 -0600426
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300427 ram_resource_kb(dev, idx++, (4ull * GiB) / KiB,
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700428 ((high_mem_useable - (4ull * GiB)) / KiB));
Marc Jones1587dc82017-05-15 18:55:11 -0600429
Martin Roth26f97f92021-10-01 14:53:22 -0600430 /* High top usable RAM -> high top RAM */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700431 if (uma_base >= (4ull * GiB)) {
Kyösti Mälkki27d62992022-05-24 20:25:58 +0300432 reserved_ram_resource_kb(dev, idx++, uma_base / KiB,
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700433 uma_size / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600434 }
Marc Jones1587dc82017-05-15 18:55:11 -0600435 }
Marc Jones1587dc82017-05-15 18:55:11 -0600436}
437
Marc Jones1587dc82017-05-15 18:55:11 -0600438/*********************************************************************
439 * Change the vendor / device IDs to match the generic VBIOS header. *
440 *********************************************************************/
441u32 map_oprom_vendev(u32 vendev)
442{
443 u32 new_vendev;
Richard Spiegel9247e862019-06-28 09:18:47 -0700444
445 if ((vendev >= 0x100298e0) && (vendev <= 0x100298ef))
446 new_vendev = 0x100298e0;
447 else if ((vendev >= 0x10029870) && (vendev <= 0x1002987f))
448 new_vendev = 0x10029870;
449 else
450 new_vendev = vendev;
Marc Jones1587dc82017-05-15 18:55:11 -0600451
452 if (vendev != new_vendev)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600453 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n",
454 vendev, new_vendev);
Marc Jones1587dc82017-05-15 18:55:11 -0600455
456 return new_vendev;
457}
Marshall Dawson2942db62017-12-14 10:00:27 -0700458
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700459__weak void set_board_env_params(GNB_ENV_CONFIGURATION *params) { }
460
Marshall Dawson2942db62017-12-14 10:00:27 -0700461void SetNbEnvParams(GNB_ENV_CONFIGURATION *params)
462{
Martin Roth50f2e4c2018-10-29 11:16:53 -0600463 const struct device *dev = SOC_IOMMU_DEV;
464 params->IommuSupport = dev && dev->enabled;
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700465 set_board_env_params(params);
Marshall Dawson2942db62017-12-14 10:00:27 -0700466}
467
468void SetNbMidParams(GNB_MID_CONFIGURATION *params)
469{
470 /* 0=Primary and decode all VGA resources, 1=Secondary - decode none */
471 params->iGpuVgaMode = 0;
472 params->GnbIoapicAddress = IO_APIC2_ADDR;
473}
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700474
475void hda_soc_ssdt_quirks(const struct device *dev)
476{
477 const char *scope = acpi_device_path(dev);
478 static const struct fieldlist list[] = {
479 FIELDLIST_OFFSET(0x42),
480 FIELDLIST_NAMESTR("NSDI", 1),
481 FIELDLIST_NAMESTR("NSDO", 1),
482 FIELDLIST_NAMESTR("NSEN", 1),
483 };
484 struct opregion opreg = OPREGION("AZPD", PCI_CONFIG, 0x0, 0x100);
485
486 assert(scope);
487
488 acpigen_write_scope(scope);
489
490 /*
491 * OperationRegion(AZPD, PCI_Config, 0x00, 0x100)
492 * Field (AZPD, AnyAcc, NoLock, Preserve) {
493 * Offset (0x42),
494 * NSDI, 1,
495 * NSDO, 1,
496 * NSEN, 1,
497 * }
498 */
499 acpigen_write_opregion(&opreg);
500 acpigen_write_field(opreg.name, list, ARRAY_SIZE(list),
501 FIELD_ANYACC | FIELD_NOLOCK | FIELD_PRESERVE);
502
503 /*
504 * Method (_INI, 0, NotSerialized) {
Kyösti Mälkkiff9ba542021-02-09 17:38:23 +0200505 * Store (Zero, NSEN)
506 * Store (One, NSDO)
507 * Store (One, NSDI)
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700508 * }
509 */
510 acpigen_write_method("_INI", 0);
511
Furquan Shaikhac204ba2021-02-19 10:23:17 -0800512 acpigen_write_store_op_to_namestr(ZERO_OP, "NSEN");
513 acpigen_write_store_op_to_namestr(ONE_OP, "NSDO");
514 acpigen_write_store_op_to_namestr(ONE_OP, "NSDI");
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700515
Furquan Shaikh91a7abf2020-04-27 18:48:48 -0700516 acpigen_pop_len(); /* Method _INI */
517
518 acpigen_pop_len(); /* Scope */
519}