blob: 2911c898dd27624917362ab89689da9e89e365c5 [file] [log] [blame]
Angel Ponsae593872020-04-04 18:50:57 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
Marc Jones1587dc82017-05-15 18:55:11 -06003
Michał Żygowskif65c1e42019-12-01 18:14:39 +01004#include <amdblocks/biosram.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02005#include <device/pci_ops.h>
Marc Jonesd6a82002018-03-31 22:46:57 -06006#include <arch/ioapic.h>
Marc Jones1587dc82017-05-15 18:55:11 -06007#include <arch/acpi.h>
8#include <arch/acpigen.h>
9#include <cbmem.h>
Marc Jones1587dc82017-05-15 18:55:11 -060010#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -060011#include <cpu/amd/mtrr.h>
Marshall Dawson154239a2017-11-02 09:49:30 -060012#include <cpu/x86/lapic_def.h>
Marshall Dawsonf82aa102017-09-20 18:01:41 -060013#include <cpu/x86/msr.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020014#include <cpu/amd/msr.h>
Marc Jones1587dc82017-05-15 18:55:11 -060015#include <device/device.h>
16#include <device/pci.h>
17#include <device/pci_ids.h>
Marshall Dawson8f2a7e02017-11-01 11:44:48 -060018#include <romstage_handoff.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070019#include <amdblocks/agesawrapper.h>
20#include <amdblocks/agesawrapper_call.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070021#include <agesa_headers.h>
Marshall Dawson653f7602018-09-04 13:25:39 -060022#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060023#include <soc/northbridge.h>
Marshall Dawson38bded02017-09-01 09:54:48 -060024#include <soc/pci_devs.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070025#include <soc/iomap.h>
Marc Jones1587dc82017-05-15 18:55:11 -060026#include <stdint.h>
Marc Jones1587dc82017-05-15 18:55:11 -060027#include <string.h>
Marshall Dawson653f7602018-09-04 13:25:39 -060028#include <arch/bert_storage.h>
Marc Jones1587dc82017-05-15 18:55:11 -060029
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
148
149 /* do we need this? */
150 create_vga_resource(dev);
151
152 /* Set each resource we have found */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600153 for (res = dev->resource_list ; res ; res = res->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600154 set_resource(dev, res, 0);
Marc Jones1587dc82017-05-15 18:55:11 -0600155
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600156 for (bus = dev->link_list ; bus ; bus = bus->next)
157 if (bus->children)
Marc Jones1587dc82017-05-15 18:55:11 -0600158 assign_resources(bus);
Marc Jones1587dc82017-05-15 18:55:11 -0600159}
160
161static void northbridge_init(struct device *dev)
162{
Marc Jonesd6a82002018-03-31 22:46:57 -0600163 setup_ioapic((u8 *)IO_APIC2_ADDR, CONFIG_MAX_CPUS+1);
Marc Jones1587dc82017-05-15 18:55:11 -0600164}
165
Marshall Dawsone09caf62019-05-02 17:58:12 -0600166unsigned long acpi_fill_mcfg(unsigned long current)
167{
168
169 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
170 CONFIG_MMCONF_BASE_ADDRESS,
171 0,
172 0,
173 CONFIG_MMCONF_BUS_NUMBER);
174
175 return current;
176}
177
Marc Jones1587dc82017-05-15 18:55:11 -0600178static unsigned long acpi_fill_hest(acpi_hest_t *hest)
179{
180 void *addr, *current;
181
182 /* Skip the HEST header. */
183 current = (void *)(hest + 1);
184
185 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
186 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600187 current += acpi_create_hest_error_source(hest, current, 0,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700188 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600189
190 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
191 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600192 current += acpi_create_hest_error_source(hest, current, 1,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700193 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600194
195 return (unsigned long)current;
196}
197
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200198static void northbridge_fill_ssdt_generator(struct device *device)
Marc Jones1587dc82017-05-15 18:55:11 -0600199{
200 msr_t msr;
201 char pscope[] = "\\_SB.PCI0";
202
203 acpigen_write_scope(pscope);
204 msr = rdmsr(TOP_MEM);
205 acpigen_write_name_dword("TOM1", msr.lo);
206 msr = rdmsr(TOP_MEM2);
207 /*
208 * Since XP only implements parts of ACPI 2.0, we can't use a qword
209 * here.
210 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
211 * slide 22ff.
212 * Shift value right by 20 bit to make it fit into 32bit,
213 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
214 */
215 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
216 acpigen_pop_len();
217}
218
Michał Żygowski9550e972020-03-20 13:56:46 +0100219static void patch_ssdt_processor_scope(acpi_header_t *ssdt)
220{
221 unsigned int len = ssdt->length - sizeof(acpi_header_t);
222 unsigned int i;
223
224 for (i = sizeof(acpi_header_t); i < len; i++) {
225 /* Search for _PR_ scope and replace it with _SB_ */
226 if (*(uint32_t *)((unsigned long)ssdt + i) == 0x5f52505f)
227 *(uint32_t *)((unsigned long)ssdt + i) = 0x5f42535f;
228 }
229 /* Recalculate checksum */
230 ssdt->checksum = 0;
231 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
232}
233
234
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700235static unsigned long agesa_write_acpi_tables(const struct device *device,
Marc Jones1587dc82017-05-15 18:55:11 -0600236 unsigned long current,
237 acpi_rsdp_t *rsdp)
238{
239 acpi_srat_t *srat;
240 acpi_slit_t *slit;
241 acpi_header_t *ssdt;
242 acpi_header_t *alib;
243 acpi_header_t *ivrs;
244 acpi_hest_t *hest;
Marshall Dawson653f7602018-09-04 13:25:39 -0600245 acpi_bert_t *bert;
Marc Jones1587dc82017-05-15 18:55:11 -0600246
247 /* HEST */
248 current = ALIGN(current, 8);
249 hest = (acpi_hest_t *)current;
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700250 acpi_write_hest(hest, acpi_fill_hest);
Marc Jones1587dc82017-05-15 18:55:11 -0600251 acpi_add_table(rsdp, (void *)current);
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700252 current += hest->header.length;
Marc Jones1587dc82017-05-15 18:55:11 -0600253
Marshall Dawson653f7602018-09-04 13:25:39 -0600254 /* BERT */
Julius Wernercd49cce2019-03-05 16:53:33 -0800255 if (CONFIG(ACPI_BERT) && bert_errors_present()) {
Marshall Dawson653f7602018-09-04 13:25:39 -0600256 /* Skip the table if no errors are present. ACPI driver reports
257 * a table with a 0-length region:
258 * BERT: [Firmware Bug]: table invalid.
259 */
260 void *rgn;
261 size_t size;
262 bert_errors_region(&rgn, &size);
263 if (!rgn) {
264 printk(BIOS_ERR, "Error: Can't find BERT storage area\n");
265 } else {
266 current = ALIGN(current, 8);
267 bert = (acpi_bert_t *)current;
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700268 acpi_write_bert(bert, (uintptr_t)rgn, size);
Marshall Dawson653f7602018-09-04 13:25:39 -0600269 acpi_add_table(rsdp, (void *)current);
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700270 current += bert->header.length;
Marshall Dawson653f7602018-09-04 13:25:39 -0600271 }
272 }
273
Marc Jones1587dc82017-05-15 18:55:11 -0600274 current = ALIGN(current, 8);
275 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
276 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
277 if (ivrs != NULL) {
278 memcpy((void *)current, ivrs, ivrs->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600279 ivrs = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600280 current += ivrs->length;
281 acpi_add_table(rsdp, ivrs);
282 } else {
283 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
284 }
285
286 /* SRAT */
287 current = ALIGN(current, 8);
288 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600289 srat = (acpi_srat_t *)agesawrapper_getlateinitptr(PICK_SRAT);
Marc Jones1587dc82017-05-15 18:55:11 -0600290 if (srat != NULL) {
291 memcpy((void *)current, srat, srat->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600292 srat = (acpi_srat_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600293 current += srat->header.length;
294 acpi_add_table(rsdp, srat);
295 } else {
296 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
297 }
298
299 /* SLIT */
300 current = ALIGN(current, 8);
301 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600302 slit = (acpi_slit_t *)agesawrapper_getlateinitptr(PICK_SLIT);
Marc Jones1587dc82017-05-15 18:55:11 -0600303 if (slit != NULL) {
304 memcpy((void *)current, slit, slit->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600305 slit = (acpi_slit_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600306 current += slit->header.length;
307 acpi_add_table(rsdp, slit);
308 } else {
309 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
310 }
311
312 /* ALIB */
313 current = ALIGN(current, 16);
314 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600315 alib = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_ALIB);
Marc Jones1587dc82017-05-15 18:55:11 -0600316 if (alib != NULL) {
317 memcpy((void *)current, alib, alib->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600318 alib = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600319 current += alib->length;
320 acpi_add_table(rsdp, (void *)alib);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600321 } else {
322 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL."
323 " Skipping.\n");
Marc Jones1587dc82017-05-15 18:55:11 -0600324 }
325
Marc Jones1587dc82017-05-15 18:55:11 -0600326 current = ALIGN(current, 16);
327 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600328 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_PSTATE);
Marc Jones1587dc82017-05-15 18:55:11 -0600329 if (ssdt != NULL) {
Michał Żygowski9550e972020-03-20 13:56:46 +0100330 patch_ssdt_processor_scope(ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600331 memcpy((void *)current, ssdt, ssdt->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600332 ssdt = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600333 current += ssdt->length;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600334 } else {
Marc Jones1587dc82017-05-15 18:55:11 -0600335 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
336 }
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600337 acpi_add_table(rsdp, ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600338
339 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
340 return current;
341}
342
343static struct device_operations northbridge_operations = {
344 .read_resources = read_resources,
345 .set_resources = set_resources,
346 .enable_resources = pci_dev_enable_resources,
347 .init = northbridge_init,
Nico Huber68680dd2020-03-31 17:34:52 +0200348 .acpi_fill_ssdt = northbridge_fill_ssdt_generator,
Marc Jones1587dc82017-05-15 18:55:11 -0600349 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones1587dc82017-05-15 18:55:11 -0600350};
351
Richard Spiegel9247e862019-06-28 09:18:47 -0700352static const unsigned short pci_device_ids[] = {
353 PCI_DEVICE_ID_AMD_15H_MODEL_606F_NB_HT,
354 PCI_DEVICE_ID_AMD_15H_MODEL_707F_NB_HT,
355 0 };
356
Marc Jones1587dc82017-05-15 18:55:11 -0600357static const struct pci_driver family15_northbridge __pci_driver = {
358 .ops = &northbridge_operations,
359 .vendor = PCI_VENDOR_ID_AMD,
Richard Spiegel9247e862019-06-28 09:18:47 -0700360 .devices = pci_device_ids,
Marc Jones1587dc82017-05-15 18:55:11 -0600361};
362
Marshall Dawson154239a2017-11-02 09:49:30 -0600363/*
364 * Enable VGA cycles. Set memory ranges of the FCH legacy devices (TPM, HPET,
365 * BIOS RAM, Watchdog Timer, IOAPIC and ACPI) as non-posted. Set remaining
366 * MMIO to posted. Route all I/O to the southbridge.
367 */
368void amd_initcpuio(void)
369{
370 uintptr_t topmem = bsp_topmem();
371 uintptr_t base, limit;
372
373 /* Enable legacy video routing: D18F1xF4 VGA Enable */
374 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
375
376 /* Non-posted: range(HPET-LAPIC) or 0xfed00000 through 0xfee00000-1 */
377 base = (HPET_BASE_ADDRESS >> 8) | MMIO_WE | MMIO_RE;
378 limit = (ALIGN_DOWN(LOCAL_APIC_ADDR - 1, 64 * KiB) >> 8) | MMIO_NP;
379 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(0), limit);
380 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(0), base);
381
382 /* Remaining PCI hole posted MMIO: TOM-HPET (TOM through 0xfed00000-1 */
383 base = (topmem >> 8) | MMIO_WE | MMIO_RE;
384 limit = ALIGN_DOWN(HPET_BASE_ADDRESS - 1, 64 * KiB) >> 8;
385 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(1), limit);
386 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(1), base);
387
388 /* Route all I/O downstream */
389 base = 0 | IO_WE | IO_RE;
390 limit = ALIGN_DOWN(0xffff, 4 * KiB);
391 pci_write_config32(SOC_ADDR_DEV, NB_IO_LIMIT(0), limit);
392 pci_write_config32(SOC_ADDR_DEV, NB_IO_BASE(0), base);
393}
394
Marc Jones1587dc82017-05-15 18:55:11 -0600395void fam15_finalize(void *chip_info)
396{
Marc Jones1587dc82017-05-15 18:55:11 -0600397 u32 value;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700398
399 /* TODO: move IOAPIC code to dsdt.asl */
400 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_INDEX, 0);
401 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_DATA, 5);
Marc Jones1587dc82017-05-15 18:55:11 -0600402
403 /* disable No Snoop */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700404 value = pci_read_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS);
Richard Spiegel3d34ae32018-04-13 13:20:08 -0700405 value &= ~HDA_NO_SNOOP_EN;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700406 pci_write_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS, value);
Marc Jones1587dc82017-05-15 18:55:11 -0600407}
408
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200409void domain_enable_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600410{
Marc Jones1587dc82017-05-15 18:55:11 -0600411 /* Must be called after PCI enumeration and resource allocation */
Marshall Dawson8f2a7e02017-11-01 11:44:48 -0600412 if (!romstage_handoff_is_resume())
Kyösti Mälkki6e512c42018-06-14 06:57:05 +0300413 do_agesawrapper(AMD_INIT_MID, "amdinitmid");
Marc Jones1587dc82017-05-15 18:55:11 -0600414}
415
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200416void domain_set_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600417{
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700418 uint64_t uma_base = get_uma_base();
419 uint32_t uma_size = get_uma_size();
420 uint32_t mem_useable = (uintptr_t)cbmem_top();
421 msr_t tom = rdmsr(TOP_MEM);
422 msr_t high_tom = rdmsr(TOP_MEM2);
423 uint64_t high_mem_useable;
424 int idx = 0x10;
Marc Jones1587dc82017-05-15 18:55:11 -0600425
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700426 /* 0x0 -> 0x9ffff */
427 ram_resource(dev, idx++, 0, 0xa0000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600428
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700429 /* 0xa0000 -> 0xbffff: legacy VGA */
430 mmio_resource(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
431
432 /* 0xc0000 -> 0xfffff: Option ROM */
433 reserved_ram_resource(dev, idx++, 0xc0000 / KiB, 0x40000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600434
Marshall Dawson29f1b742017-09-06 14:59:45 -0600435 /*
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700436 * 0x100000 (1MiB) -> low top useable RAM
437 * cbmem_top() accounts for low UMA and TSEG if they are used.
Marc Jones1587dc82017-05-15 18:55:11 -0600438 */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700439 ram_resource(dev, idx++, (1 * MiB) / KiB,
440 (mem_useable - (1 * MiB)) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600441
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700442 /* Low top useable RAM -> Low top RAM (bottom pci mmio hole) */
443 reserved_ram_resource(dev, idx++, mem_useable / KiB,
444 (tom.lo - mem_useable) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600445
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700446 /* If there is memory above 4GiB */
447 if (high_tom.hi) {
448 /* 4GiB -> high top useable */
449 if (uma_base >= (4ull * GiB))
450 high_mem_useable = uma_base;
451 else
452 high_mem_useable = ((uint64_t)high_tom.lo |
453 ((uint64_t)high_tom.hi << 32));
Marc Jones1587dc82017-05-15 18:55:11 -0600454
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700455 ram_resource(dev, idx++, (4ull * GiB) / KiB,
456 ((high_mem_useable - (4ull * GiB)) / KiB));
Marc Jones1587dc82017-05-15 18:55:11 -0600457
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700458 /* High top useable RAM -> high top RAM */
459 if (uma_base >= (4ull * GiB)) {
460 reserved_ram_resource(dev, idx++, uma_base / KiB,
461 uma_size / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600462 }
Marc Jones1587dc82017-05-15 18:55:11 -0600463 }
464
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700465 assign_resources(dev->link_list);
Marc Jones1587dc82017-05-15 18:55:11 -0600466}
467
Marc Jones1587dc82017-05-15 18:55:11 -0600468/*********************************************************************
469 * Change the vendor / device IDs to match the generic VBIOS header. *
470 *********************************************************************/
471u32 map_oprom_vendev(u32 vendev)
472{
473 u32 new_vendev;
Richard Spiegel9247e862019-06-28 09:18:47 -0700474
475 if ((vendev >= 0x100298e0) && (vendev <= 0x100298ef))
476 new_vendev = 0x100298e0;
477 else if ((vendev >= 0x10029870) && (vendev <= 0x1002987f))
478 new_vendev = 0x10029870;
479 else
480 new_vendev = vendev;
Marc Jones1587dc82017-05-15 18:55:11 -0600481
482 if (vendev != new_vendev)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600483 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n",
484 vendev, new_vendev);
Marc Jones1587dc82017-05-15 18:55:11 -0600485
486 return new_vendev;
487}
Marshall Dawson2942db62017-12-14 10:00:27 -0700488
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700489__weak void set_board_env_params(GNB_ENV_CONFIGURATION *params) { }
490
Marshall Dawson2942db62017-12-14 10:00:27 -0700491void SetNbEnvParams(GNB_ENV_CONFIGURATION *params)
492{
Martin Roth50f2e4c2018-10-29 11:16:53 -0600493 const struct device *dev = SOC_IOMMU_DEV;
494 params->IommuSupport = dev && dev->enabled;
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700495 set_board_env_params(params);
Marshall Dawson2942db62017-12-14 10:00:27 -0700496}
497
498void SetNbMidParams(GNB_MID_CONFIGURATION *params)
499{
500 /* 0=Primary and decode all VGA resources, 1=Secondary - decode none */
501 params->iGpuVgaMode = 0;
502 params->GnbIoapicAddress = IO_APIC2_ADDR;
503}