blob: b57113bed811cfcdee37d96806a6cf49d470ac37 [file] [log] [blame]
Marc Jones1587dc82017-05-15 18:55:11 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2015-2016 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
16
17#include <arch/io.h>
Marc Jonesd6a82002018-03-31 22:46:57 -060018#include <arch/ioapic.h>
Marc Jones1587dc82017-05-15 18:55:11 -060019#include <arch/acpi.h>
20#include <arch/acpigen.h>
21#include <cbmem.h>
22#include <chip.h>
23#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -060024#include <cpu/amd/mtrr.h>
25#include <cpu/cpu.h>
Marshall Dawson154239a2017-11-02 09:49:30 -060026#include <cpu/x86/lapic_def.h>
Marshall Dawsonf82aa102017-09-20 18:01:41 -060027#include <cpu/x86/msr.h>
Elyes HAOUAS400ce552018-10-12 10:54:30 +020028#include <cpu/amd/msr.h>
Marc Jones1587dc82017-05-15 18:55:11 -060029#include <device/device.h>
30#include <device/pci.h>
31#include <device/pci_ids.h>
Marshall Dawson8f2a7e02017-11-01 11:44:48 -060032#include <romstage_handoff.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070033#include <amdblocks/agesawrapper.h>
34#include <amdblocks/agesawrapper_call.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070035#include <agesa_headers.h>
Marshall Dawson653f7602018-09-04 13:25:39 -060036#include <soc/cpu.h>
Marc Jones1587dc82017-05-15 18:55:11 -060037#include <soc/northbridge.h>
Marshall Dawson154239a2017-11-02 09:49:30 -060038#include <soc/southbridge.h>
Marshall Dawson38bded02017-09-01 09:54:48 -060039#include <soc/pci_devs.h>
Marshall Dawson2942db62017-12-14 10:00:27 -070040#include <soc/iomap.h>
Marc Jones1587dc82017-05-15 18:55:11 -060041#include <stdint.h>
42#include <stdlib.h>
43#include <string.h>
Marshall Dawson653f7602018-09-04 13:25:39 -060044#include <arch/bert_storage.h>
Marc Jones1587dc82017-05-15 18:55:11 -060045
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020046static void set_io_addr_reg(struct device *dev, u32 nodeid, u32 linkn, u32 reg,
Marc Jones1587dc82017-05-15 18:55:11 -060047 u32 io_min, u32 io_max)
48{
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) | ((nodeid & 0x30) << (8 - 4)) | (linkn << 4)
53 | ((io_max & 0xf0) << (12 - 4));
Richard Spiegel41baf0c2018-10-22 13:57:18 -070054 pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg);
Marshall Dawson4e101ad2017-06-15 12:17:38 -060055 tempreg = 3 | ((io_min & 0xf0) << (12 - 4)); /* base: ISA and VGA ? */
Richard Spiegel41baf0c2018-10-22 13:57:18 -070056 pci_write_config32(SOC_ADDR_DEV, reg, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060057}
58
Marshall Dawson4e101ad2017-06-15 12:17:38 -060059static void set_mmio_addr_reg(u32 nodeid, u32 linkn, u32 reg, u32 index,
60 u32 mmio_min, u32 mmio_max)
Marc Jones1587dc82017-05-15 18:55:11 -060061{
62 u32 tempreg;
Marshall Dawson38bded02017-09-01 09:54:48 -060063
Marshall Dawson4e101ad2017-06-15 12:17:38 -060064 /* io range allocation. Limit */
65 tempreg = (nodeid & 0xf) | (linkn << 4) | (mmio_max & 0xffffff00);
Richard Spiegel41baf0c2018-10-22 13:57:18 -070066 pci_write_config32(SOC_ADDR_DEV, reg + 4, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060067 tempreg = 3 | (nodeid & 0x30) | (mmio_min & 0xffffff00);
Richard Spiegel41baf0c2018-10-22 13:57:18 -070068 pci_write_config32(SOC_ADDR_DEV, reg, tempreg);
Marc Jones1587dc82017-05-15 18:55:11 -060069}
70
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020071static void read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -060072{
Marc Jonesd6a82002018-03-31 22:46:57 -060073 struct resource *res;
74
Marc Jones1587dc82017-05-15 18:55:11 -060075 /*
76 * This MMCONF resource must be reserved in the PCI domain.
77 * It is not honored by the coreboot resource allocator if it is in
78 * the CPU_CLUSTER.
79 */
Aaron Durbin3173d442017-11-03 12:14:25 -060080 mmconf_resource(dev, MMIO_CONF_BASE);
Marc Jonesd6a82002018-03-31 22:46:57 -060081
82 /* NB IOAPIC2 resource */
83 res = new_resource(dev, IO_APIC2_ADDR); /* IOAPIC2 */
84 res->base = IO_APIC2_ADDR;
85 res->size = 0x00001000;
86 res->flags = IORESOURCE_MEM | IORESOURCE_ASSIGNED | IORESOURCE_FIXED;
Marc Jones1587dc82017-05-15 18:55:11 -060087}
88
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070089static void set_resource(struct device *dev, struct resource *res, u32 nodeid)
Marc Jones1587dc82017-05-15 18:55:11 -060090{
91 resource_t rbase, rend;
Marshall Dawson4e101ad2017-06-15 12:17:38 -060092 unsigned int reg, link_num;
Marc Jones1587dc82017-05-15 18:55:11 -060093 char buf[50];
94
95 /* Make certain the resource has actually been set */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -070096 if (!(res->flags & IORESOURCE_ASSIGNED))
Marc Jones1587dc82017-05-15 18:55:11 -060097 return;
98
99 /* If I have already stored this resource don't worry about it */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700100 if (res->flags & IORESOURCE_STORED)
Marc Jones1587dc82017-05-15 18:55:11 -0600101 return;
102
103 /* Only handle PCI memory and IO resources */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700104 if (!(res->flags & (IORESOURCE_MEM | IORESOURCE_IO)))
Marc Jones1587dc82017-05-15 18:55:11 -0600105 return;
106
107 /* Ensure I am actually looking at a resource of function 1 */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700108 if ((res->index & 0xffff) < 0x1000)
Marc Jones1587dc82017-05-15 18:55:11 -0600109 return;
110
111 /* Get the base address */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700112 rbase = res->base;
Marc Jones1587dc82017-05-15 18:55:11 -0600113
114 /* Get the limit (rounded up) */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700115 rend = resource_end(res);
Marc Jones1587dc82017-05-15 18:55:11 -0600116
117 /* Get the register and link */
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700118 reg = res->index & 0xfff; /* 4k */
119 link_num = IOINDEX_LINK(res->index);
Marc Jones1587dc82017-05-15 18:55:11 -0600120
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700121 if (res->flags & IORESOURCE_IO)
Marc Jones1587dc82017-05-15 18:55:11 -0600122 set_io_addr_reg(dev, nodeid, link_num, reg, rbase>>8, rend>>8);
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700123 else if (res->flags & IORESOURCE_MEM)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600124 set_mmio_addr_reg(nodeid, link_num, reg,
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700125 (res->index >> 24), rbase >> 8, rend >> 8);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600126
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700127 res->flags |= IORESOURCE_STORED;
Marc Jones1587dc82017-05-15 18:55:11 -0600128 snprintf(buf, sizeof(buf), " <node %x link %x>",
129 nodeid, link_num);
Richard Spiegel2b7cd1d2018-10-22 14:39:37 -0700130 report_resource_stored(dev, res, buf);
Marc Jones1587dc82017-05-15 18:55:11 -0600131}
132
133/**
134 * I tried to reuse the resource allocation code in set_resource()
135 * but it is too difficult to deal with the resource allocation magic.
136 */
137
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200138static void create_vga_resource(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600139{
140 struct bus *link;
141
142 /* find out which link the VGA card is connected,
143 * we only deal with the 'first' vga card */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600144 for (link = dev->link_list ; link ; link = link->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600145 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
146 break;
Marc Jones1587dc82017-05-15 18:55:11 -0600147
148 /* no VGA card installed */
149 if (link == NULL)
150 return;
151
Marshall Dawsone2697de2017-09-06 10:46:36 -0600152 printk(BIOS_DEBUG, "VGA: %s has VGA device\n", dev_path(dev));
Marshall Dawson38bded02017-09-01 09:54:48 -0600153 /* Route A0000-BFFFF, IO 3B0-3BB 3C0-3DF */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700154 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
Marc Jones1587dc82017-05-15 18:55:11 -0600155}
156
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200157static void set_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600158{
159 struct bus *bus;
160 struct resource *res;
161
162
163 /* do we need this? */
164 create_vga_resource(dev);
165
166 /* Set each resource we have found */
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600167 for (res = dev->resource_list ; res ; res = res->next)
Marc Jones1587dc82017-05-15 18:55:11 -0600168 set_resource(dev, res, 0);
Marc Jones1587dc82017-05-15 18:55:11 -0600169
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600170 for (bus = dev->link_list ; bus ; bus = bus->next)
171 if (bus->children)
Marc Jones1587dc82017-05-15 18:55:11 -0600172 assign_resources(bus);
Marc Jones1587dc82017-05-15 18:55:11 -0600173}
174
175static void northbridge_init(struct device *dev)
176{
Marc Jonesd6a82002018-03-31 22:46:57 -0600177 setup_ioapic((u8 *)IO_APIC2_ADDR, CONFIG_MAX_CPUS+1);
Marc Jones1587dc82017-05-15 18:55:11 -0600178}
179
180static unsigned long acpi_fill_hest(acpi_hest_t *hest)
181{
182 void *addr, *current;
183
184 /* Skip the HEST header. */
185 current = (void *)(hest + 1);
186
187 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
188 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600189 current += acpi_create_hest_error_source(hest, current, 0,
190 (void *)((u32)addr + 2), *(UINT16 *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600191
192 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
193 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600194 current += acpi_create_hest_error_source(hest, current, 1,
195 (void *)((u32)addr + 2), *(UINT16 *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600196
197 return (unsigned long)current;
198}
199
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200200static void northbridge_fill_ssdt_generator(struct device *device)
Marc Jones1587dc82017-05-15 18:55:11 -0600201{
202 msr_t msr;
203 char pscope[] = "\\_SB.PCI0";
204
205 acpigen_write_scope(pscope);
206 msr = rdmsr(TOP_MEM);
207 acpigen_write_name_dword("TOM1", msr.lo);
208 msr = rdmsr(TOP_MEM2);
209 /*
210 * Since XP only implements parts of ACPI 2.0, we can't use a qword
211 * here.
212 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
213 * slide 22ff.
214 * Shift value right by 20 bit to make it fit into 32bit,
215 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
216 */
217 acpigen_write_name_dword("TOM2", (msr.hi << 12) | msr.lo >> 20);
218 acpigen_pop_len();
219}
220
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200221static unsigned long agesa_write_acpi_tables(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;
Marshall Dawson653f7602018-09-04 13:25:39 -0600231 acpi_bert_t *bert;
Marc Jones1587dc82017-05-15 18:55:11 -0600232
233 /* HEST */
234 current = ALIGN(current, 8);
235 hest = (acpi_hest_t *)current;
236 acpi_write_hest((void *)current, acpi_fill_hest);
237 acpi_add_table(rsdp, (void *)current);
238 current += ((acpi_header_t *)current)->length;
239
Marshall Dawson653f7602018-09-04 13:25:39 -0600240 /* BERT */
241 if (IS_ENABLED(CONFIG_ACPI_BERT) && bert_errors_present()) {
242 /* Skip the table if no errors are present. ACPI driver reports
243 * a table with a 0-length region:
244 * BERT: [Firmware Bug]: table invalid.
245 */
246 void *rgn;
247 size_t size;
248 bert_errors_region(&rgn, &size);
249 if (!rgn) {
250 printk(BIOS_ERR, "Error: Can't find BERT storage area\n");
251 } else {
252 current = ALIGN(current, 8);
253 bert = (acpi_bert_t *)current;
254 acpi_write_bert((void *)current, (uintptr_t)rgn, size);
255 acpi_add_table(rsdp, (void *)current);
256 current += ((acpi_header_t *)current)->length;
257 }
258 }
259
Marc Jones1587dc82017-05-15 18:55:11 -0600260 current = ALIGN(current, 8);
261 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
262 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
263 if (ivrs != NULL) {
264 memcpy((void *)current, ivrs, ivrs->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600265 ivrs = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600266 current += ivrs->length;
267 acpi_add_table(rsdp, ivrs);
268 } else {
269 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
270 }
271
272 /* SRAT */
273 current = ALIGN(current, 8);
274 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600275 srat = (acpi_srat_t *)agesawrapper_getlateinitptr(PICK_SRAT);
Marc Jones1587dc82017-05-15 18:55:11 -0600276 if (srat != NULL) {
277 memcpy((void *)current, srat, srat->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600278 srat = (acpi_srat_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600279 current += srat->header.length;
280 acpi_add_table(rsdp, srat);
281 } else {
282 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
283 }
284
285 /* SLIT */
286 current = ALIGN(current, 8);
287 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600288 slit = (acpi_slit_t *)agesawrapper_getlateinitptr(PICK_SLIT);
Marc Jones1587dc82017-05-15 18:55:11 -0600289 if (slit != NULL) {
290 memcpy((void *)current, slit, slit->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600291 slit = (acpi_slit_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600292 current += slit->header.length;
293 acpi_add_table(rsdp, slit);
294 } else {
295 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
296 }
297
298 /* ALIB */
299 current = ALIGN(current, 16);
300 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600301 alib = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_ALIB);
Marc Jones1587dc82017-05-15 18:55:11 -0600302 if (alib != NULL) {
303 memcpy((void *)current, alib, alib->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600304 alib = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600305 current += alib->length;
306 acpi_add_table(rsdp, (void *)alib);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600307 } else {
308 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL."
309 " Skipping.\n");
Marc Jones1587dc82017-05-15 18:55:11 -0600310 }
311
Marc Jones1587dc82017-05-15 18:55:11 -0600312 current = ALIGN(current, 16);
313 printk(BIOS_DEBUG, "ACPI: * SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600314 ssdt = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_PSTATE);
Marc Jones1587dc82017-05-15 18:55:11 -0600315 if (ssdt != NULL) {
316 memcpy((void *)current, ssdt, ssdt->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600317 ssdt = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600318 current += ssdt->length;
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600319 } else {
Marc Jones1587dc82017-05-15 18:55:11 -0600320 printk(BIOS_DEBUG, " AGESA PState table NULL. Skipping.\n");
321 }
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600322 acpi_add_table(rsdp, ssdt);
Marc Jones1587dc82017-05-15 18:55:11 -0600323
324 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
325 return current;
326}
327
328static struct device_operations northbridge_operations = {
329 .read_resources = read_resources,
330 .set_resources = set_resources,
331 .enable_resources = pci_dev_enable_resources,
332 .init = northbridge_init,
333 .acpi_fill_ssdt_generator = northbridge_fill_ssdt_generator,
334 .write_acpi_tables = agesa_write_acpi_tables,
335 .enable = 0,
336 .ops_pci = 0,
337};
338
339static const struct pci_driver family15_northbridge __pci_driver = {
340 .ops = &northbridge_operations,
341 .vendor = PCI_VENDOR_ID_AMD,
342 .device = PCI_DEVICE_ID_AMD_15H_MODEL_707F_NB_HT,
343};
344
Marshall Dawson154239a2017-11-02 09:49:30 -0600345/*
346 * Enable VGA cycles. Set memory ranges of the FCH legacy devices (TPM, HPET,
347 * BIOS RAM, Watchdog Timer, IOAPIC and ACPI) as non-posted. Set remaining
348 * MMIO to posted. Route all I/O to the southbridge.
349 */
350void amd_initcpuio(void)
351{
352 uintptr_t topmem = bsp_topmem();
353 uintptr_t base, limit;
354
355 /* Enable legacy video routing: D18F1xF4 VGA Enable */
356 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
357
358 /* Non-posted: range(HPET-LAPIC) or 0xfed00000 through 0xfee00000-1 */
359 base = (HPET_BASE_ADDRESS >> 8) | MMIO_WE | MMIO_RE;
360 limit = (ALIGN_DOWN(LOCAL_APIC_ADDR - 1, 64 * KiB) >> 8) | MMIO_NP;
361 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(0), limit);
362 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(0), base);
363
364 /* Remaining PCI hole posted MMIO: TOM-HPET (TOM through 0xfed00000-1 */
365 base = (topmem >> 8) | MMIO_WE | MMIO_RE;
366 limit = ALIGN_DOWN(HPET_BASE_ADDRESS - 1, 64 * KiB) >> 8;
367 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(1), limit);
368 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(1), base);
369
370 /* Route all I/O downstream */
371 base = 0 | IO_WE | IO_RE;
372 limit = ALIGN_DOWN(0xffff, 4 * KiB);
373 pci_write_config32(SOC_ADDR_DEV, NB_IO_LIMIT(0), limit);
374 pci_write_config32(SOC_ADDR_DEV, NB_IO_BASE(0), base);
375}
376
Marc Jones1587dc82017-05-15 18:55:11 -0600377void fam15_finalize(void *chip_info)
378{
Marc Jones1587dc82017-05-15 18:55:11 -0600379 u32 value;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700380
381 /* TODO: move IOAPIC code to dsdt.asl */
382 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_INDEX, 0);
383 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_DATA, 5);
Marc Jones1587dc82017-05-15 18:55:11 -0600384
385 /* disable No Snoop */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700386 value = pci_read_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS);
Richard Spiegel3d34ae32018-04-13 13:20:08 -0700387 value &= ~HDA_NO_SNOOP_EN;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700388 pci_write_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS, value);
Marc Jones1587dc82017-05-15 18:55:11 -0600389}
390
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200391void domain_enable_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600392{
Marc Jones1587dc82017-05-15 18:55:11 -0600393 /* Must be called after PCI enumeration and resource allocation */
Marshall Dawson8f2a7e02017-11-01 11:44:48 -0600394 if (!romstage_handoff_is_resume())
Richard Spiegel138a1d22017-12-13 13:26:21 -0700395 do_agesawrapper(agesawrapper_amdinitmid, "amdinitmid");
Marc Jones1587dc82017-05-15 18:55:11 -0600396}
397
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200398void domain_set_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600399{
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700400 uint64_t uma_base = get_uma_base();
401 uint32_t uma_size = get_uma_size();
402 uint32_t mem_useable = (uintptr_t)cbmem_top();
403 msr_t tom = rdmsr(TOP_MEM);
404 msr_t high_tom = rdmsr(TOP_MEM2);
405 uint64_t high_mem_useable;
406 int idx = 0x10;
Marc Jones1587dc82017-05-15 18:55:11 -0600407
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700408 /* 0x0 -> 0x9ffff */
409 ram_resource(dev, idx++, 0, 0xa0000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600410
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700411 /* 0xa0000 -> 0xbffff: legacy VGA */
412 mmio_resource(dev, idx++, 0xa0000 / KiB, 0x20000 / KiB);
413
414 /* 0xc0000 -> 0xfffff: Option ROM */
415 reserved_ram_resource(dev, idx++, 0xc0000 / KiB, 0x40000 / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600416
Marshall Dawson29f1b742017-09-06 14:59:45 -0600417 /*
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700418 * 0x100000 (1MiB) -> low top useable RAM
419 * cbmem_top() accounts for low UMA and TSEG if they are used.
Marc Jones1587dc82017-05-15 18:55:11 -0600420 */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700421 ram_resource(dev, idx++, (1 * MiB) / KiB,
422 (mem_useable - (1 * MiB)) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600423
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700424 /* Low top useable RAM -> Low top RAM (bottom pci mmio hole) */
425 reserved_ram_resource(dev, idx++, mem_useable / KiB,
426 (tom.lo - mem_useable) / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600427
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700428 /* If there is memory above 4GiB */
429 if (high_tom.hi) {
430 /* 4GiB -> high top useable */
431 if (uma_base >= (4ull * GiB))
432 high_mem_useable = uma_base;
433 else
434 high_mem_useable = ((uint64_t)high_tom.lo |
435 ((uint64_t)high_tom.hi << 32));
Marc Jones1587dc82017-05-15 18:55:11 -0600436
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700437 ram_resource(dev, idx++, (4ull * GiB) / KiB,
438 ((high_mem_useable - (4ull * GiB)) / KiB));
Marc Jones1587dc82017-05-15 18:55:11 -0600439
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700440 /* High top useable RAM -> high top RAM */
441 if (uma_base >= (4ull * GiB)) {
442 reserved_ram_resource(dev, idx++, uma_base / KiB,
443 uma_size / KiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600444 }
Marc Jones1587dc82017-05-15 18:55:11 -0600445 }
446
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700447 assign_resources(dev->link_list);
Marc Jones1587dc82017-05-15 18:55:11 -0600448}
449
Marc Jones1587dc82017-05-15 18:55:11 -0600450/*********************************************************************
451 * Change the vendor / device IDs to match the generic VBIOS header. *
452 *********************************************************************/
453u32 map_oprom_vendev(u32 vendev)
454{
455 u32 new_vendev;
456 new_vendev =
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600457 ((vendev >= 0x100298e0) && (vendev <= 0x100298ef)) ?
458 0x100298e0 : vendev;
Marc Jones1587dc82017-05-15 18:55:11 -0600459
460 if (vendev != new_vendev)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600461 printk(BIOS_NOTICE, "Mapping PCI device %8x to %8x\n",
462 vendev, new_vendev);
Marc Jones1587dc82017-05-15 18:55:11 -0600463
464 return new_vendev;
465}
Marshall Dawson2942db62017-12-14 10:00:27 -0700466
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700467__weak void set_board_env_params(GNB_ENV_CONFIGURATION *params) { }
468
Marshall Dawson2942db62017-12-14 10:00:27 -0700469void SetNbEnvParams(GNB_ENV_CONFIGURATION *params)
470{
Martin Roth50f2e4c2018-10-29 11:16:53 -0600471 const struct device *dev = SOC_IOMMU_DEV;
472 params->IommuSupport = dev && dev->enabled;
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700473 set_board_env_params(params);
Marshall Dawson2942db62017-12-14 10:00:27 -0700474}
475
476void SetNbMidParams(GNB_MID_CONFIGURATION *params)
477{
478 /* 0=Primary and decode all VGA resources, 1=Secondary - decode none */
479 params->iGpuVgaMode = 0;
480 params->GnbIoapicAddress = IO_APIC2_ADDR;
481}