blob: 2b6ba45bff15f4367729755bec4fa3bc37a4319a [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>
Felix Held915c3872023-04-11 21:21:35 +02004#include <amdblocks/acpi.h>
Michał Żygowskif65c1e42019-12-01 18:14:39 +01005#include <amdblocks/biosram.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>
Felix Helda8da0702023-06-05 21:19:27 +02009#include <arch/vga.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070010#include <acpi/acpi.h>
11#include <acpi/acpigen.h>
Marc Jones1587dc82017-05-15 18:55:11 -060012#include <cbmem.h>
Marc Jones1587dc82017-05-15 18:55:11 -060013#include <console/console.h>
Marc Jones1587dc82017-05-15 18:55:11 -060014#include <cpu/amd/mtrr.h>
Marshall Dawson154239a2017-11-02 09:49:30 -060015#include <cpu/x86/lapic_def.h>
Marshall Dawsonf82aa102017-09-20 18:01:41 -060016#include <cpu/x86/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 read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -060034{
Felix Held56b037b2022-03-02 22:57:01 +010035 unsigned int idx = 0;
Marc Jonesd6a82002018-03-31 22:46:57 -060036
Felix Heldaf17f0b2022-03-02 23:36:55 +010037 /* The northbridge has no PCI BARs implemented, so there's no need to call
38 pci_dev_read_resources for it */
39
Marc Jones1587dc82017-05-15 18:55:11 -060040 /*
41 * This MMCONF resource must be reserved in the PCI domain.
42 * It is not honored by the coreboot resource allocator if it is in
43 * the CPU_CLUSTER.
44 */
Felix Held56b037b2022-03-02 22:57:01 +010045 mmconf_resource(dev, idx++);
Marc Jones1587dc82017-05-15 18:55:11 -060046}
47
Marc Jones1587dc82017-05-15 18:55:11 -060048/**
49 * I tried to reuse the resource allocation code in set_resource()
50 * but it is too difficult to deal with the resource allocation magic.
51 */
52
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020053static void create_vga_resource(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -060054{
55 struct bus *link;
56
57 /* find out which link the VGA card is connected,
58 * we only deal with the 'first' vga card */
Marshall Dawson4e101ad2017-06-15 12:17:38 -060059 for (link = dev->link_list ; link ; link = link->next)
Marc Jones1587dc82017-05-15 18:55:11 -060060 if (link->bridge_ctrl & PCI_BRIDGE_CTL_VGA)
61 break;
Marc Jones1587dc82017-05-15 18:55:11 -060062
63 /* no VGA card installed */
64 if (link == NULL)
65 return;
66
Marshall Dawsone2697de2017-09-06 10:46:36 -060067 printk(BIOS_DEBUG, "VGA: %s has VGA device\n", dev_path(dev));
Marshall Dawson38bded02017-09-01 09:54:48 -060068 /* Route A0000-BFFFF, IO 3B0-3BB 3C0-3DF */
Richard Spiegel41baf0c2018-10-22 13:57:18 -070069 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
Marc Jones1587dc82017-05-15 18:55:11 -060070}
71
Elyes HAOUAS777ccd42018-05-22 10:52:05 +020072static void set_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -060073{
74 struct bus *bus;
Marc Jones1587dc82017-05-15 18:55:11 -060075
Marc Jones1587dc82017-05-15 18:55:11 -060076 /* do we need this? */
77 create_vga_resource(dev);
78
Marshall Dawson4e101ad2017-06-15 12:17:38 -060079 for (bus = dev->link_list ; bus ; bus = bus->next)
80 if (bus->children)
Marc Jones1587dc82017-05-15 18:55:11 -060081 assign_resources(bus);
Marc Jones1587dc82017-05-15 18:55:11 -060082}
83
84static void northbridge_init(struct device *dev)
85{
Kyösti Mälkki2e65e9c2021-06-16 11:00:40 +030086 register_new_ioapic((u8 *)IO_APIC2_ADDR);
Marc Jones1587dc82017-05-15 18:55:11 -060087}
88
Felix Held8cab80c2023-05-05 15:20:15 +020089/* Used by \_SB.PCI0._CRS */
90static void acpi_fill_root_complex_tom(const struct device *device)
91{
92 const char *scope;
93
94 assert(device);
95
96 scope = acpi_device_scope(device);
97 assert(scope);
98 acpigen_write_scope(scope);
99
100 acpigen_write_name_dword("TOM1", get_top_of_mem_below_4gb());
101
102 /*
103 * Since XP only implements parts of ACPI 2.0, we can't use a qword
104 * here.
105 * See http://www.acpi.info/presentations/S01USMOBS169_OS%2520new.ppt
106 * slide 22ff.
107 * Shift value right by 20 bit to make it fit into 32bit,
108 * giving us 1MB granularity and a limit of almost 4Exabyte of memory.
109 */
110 acpigen_write_name_dword("TOM2", get_top_of_mem_above_4gb() >> 20);
111 acpigen_pop_len();
112}
113
Marc Jones1587dc82017-05-15 18:55:11 -0600114static unsigned long acpi_fill_hest(acpi_hest_t *hest)
115{
116 void *addr, *current;
117
118 /* Skip the HEST header. */
119 current = (void *)(hest + 1);
120
121 addr = agesawrapper_getlateinitptr(PICK_WHEA_MCE);
122 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600123 current += acpi_create_hest_error_source(hest, current, 0,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700124 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600125
126 addr = agesawrapper_getlateinitptr(PICK_WHEA_CMC);
127 if (addr != NULL)
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600128 current += acpi_create_hest_error_source(hest, current, 1,
Richard Spiegel271b8a52018-11-06 16:32:28 -0700129 (void *)((u32)addr + 2), *(uint16_t *)addr - 2);
Marc Jones1587dc82017-05-15 18:55:11 -0600130
131 return (unsigned long)current;
132}
133
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700134static unsigned long agesa_write_acpi_tables(const struct device *device,
Marc Jones1587dc82017-05-15 18:55:11 -0600135 unsigned long current,
136 acpi_rsdp_t *rsdp)
137{
138 acpi_srat_t *srat;
139 acpi_slit_t *slit;
Marc Jones1587dc82017-05-15 18:55:11 -0600140 acpi_header_t *alib;
141 acpi_header_t *ivrs;
142 acpi_hest_t *hest;
143
144 /* HEST */
Felix Held9abc4112023-01-18 15:47:39 +0100145 current = acpi_align_current(current);
Marc Jones1587dc82017-05-15 18:55:11 -0600146 hest = (acpi_hest_t *)current;
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700147 acpi_write_hest(hest, acpi_fill_hest);
Marc Jones1587dc82017-05-15 18:55:11 -0600148 acpi_add_table(rsdp, (void *)current);
Richard Spiegel6a9e6cd2018-11-30 10:53:40 -0700149 current += hest->header.length;
Marc Jones1587dc82017-05-15 18:55:11 -0600150
Felix Held9abc4112023-01-18 15:47:39 +0100151 current = acpi_align_current(current);
Marc Jones1587dc82017-05-15 18:55:11 -0600152 printk(BIOS_DEBUG, "ACPI: * IVRS at %lx\n", current);
153 ivrs = agesawrapper_getlateinitptr(PICK_IVRS);
154 if (ivrs != NULL) {
155 memcpy((void *)current, ivrs, ivrs->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600156 ivrs = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600157 current += ivrs->length;
158 acpi_add_table(rsdp, ivrs);
159 } else {
160 printk(BIOS_DEBUG, " AGESA IVRS table NULL. Skipping.\n");
161 }
162
163 /* SRAT */
Felix Held9abc4112023-01-18 15:47:39 +0100164 current = acpi_align_current(current);
Marc Jones1587dc82017-05-15 18:55:11 -0600165 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600166 srat = (acpi_srat_t *)agesawrapper_getlateinitptr(PICK_SRAT);
Marc Jones1587dc82017-05-15 18:55:11 -0600167 if (srat != NULL) {
168 memcpy((void *)current, srat, srat->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600169 srat = (acpi_srat_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600170 current += srat->header.length;
171 acpi_add_table(rsdp, srat);
172 } else {
173 printk(BIOS_DEBUG, " AGESA SRAT table NULL. Skipping.\n");
174 }
175
176 /* SLIT */
Felix Held9abc4112023-01-18 15:47:39 +0100177 current = acpi_align_current(current);
Marc Jones1587dc82017-05-15 18:55:11 -0600178 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600179 slit = (acpi_slit_t *)agesawrapper_getlateinitptr(PICK_SLIT);
Marc Jones1587dc82017-05-15 18:55:11 -0600180 if (slit != NULL) {
181 memcpy((void *)current, slit, slit->header.length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600182 slit = (acpi_slit_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600183 current += slit->header.length;
184 acpi_add_table(rsdp, slit);
185 } else {
186 printk(BIOS_DEBUG, " AGESA SLIT table NULL. Skipping.\n");
187 }
188
189 /* ALIB */
Felix Held9abc4112023-01-18 15:47:39 +0100190 current = acpi_align_current(current);
Marc Jones1587dc82017-05-15 18:55:11 -0600191 printk(BIOS_DEBUG, "ACPI: * AGESA ALIB SSDT at %lx\n", current);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600192 alib = (acpi_header_t *)agesawrapper_getlateinitptr(PICK_ALIB);
Marc Jones1587dc82017-05-15 18:55:11 -0600193 if (alib != NULL) {
194 memcpy((void *)current, alib, alib->length);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600195 alib = (acpi_header_t *)current;
Marc Jones1587dc82017-05-15 18:55:11 -0600196 current += alib->length;
197 acpi_add_table(rsdp, (void *)alib);
Marshall Dawson4e101ad2017-06-15 12:17:38 -0600198 } else {
199 printk(BIOS_DEBUG, " AGESA ALIB SSDT table NULL."
200 " Skipping.\n");
Marc Jones1587dc82017-05-15 18:55:11 -0600201 }
202
Marc Jones1587dc82017-05-15 18:55:11 -0600203 printk(BIOS_DEBUG, "ACPI: * SSDT for PState at %lx\n", current);
204 return current;
205}
206
Felix Held26651c82022-10-13 16:12:40 +0200207struct device_operations stoneyridge_northbridge_operations = {
Marc Jones1587dc82017-05-15 18:55:11 -0600208 .read_resources = read_resources,
209 .set_resources = set_resources,
210 .enable_resources = pci_dev_enable_resources,
211 .init = northbridge_init,
Felix Held915c3872023-04-11 21:21:35 +0200212 .acpi_fill_ssdt = acpi_fill_root_complex_tom,
Marc Jones1587dc82017-05-15 18:55:11 -0600213 .write_acpi_tables = agesa_write_acpi_tables,
Marc Jones1587dc82017-05-15 18:55:11 -0600214};
215
Marshall Dawson154239a2017-11-02 09:49:30 -0600216/*
217 * Enable VGA cycles. Set memory ranges of the FCH legacy devices (TPM, HPET,
218 * BIOS RAM, Watchdog Timer, IOAPIC and ACPI) as non-posted. Set remaining
219 * MMIO to posted. Route all I/O to the southbridge.
220 */
221void amd_initcpuio(void)
222{
Felix Held5e9afe72023-04-20 12:55:55 +0200223 uintptr_t topmem = get_top_of_mem_below_4gb();
Marshall Dawson154239a2017-11-02 09:49:30 -0600224 uintptr_t base, limit;
225
226 /* Enable legacy video routing: D18F1xF4 VGA Enable */
227 pci_write_config32(SOC_ADDR_DEV, D18F1_VGAEN, VGA_ADDR_ENABLE);
228
229 /* Non-posted: range(HPET-LAPIC) or 0xfed00000 through 0xfee00000-1 */
230 base = (HPET_BASE_ADDRESS >> 8) | MMIO_WE | MMIO_RE;
Kyösti Mälkkidea42e02021-05-31 20:26:16 +0300231 limit = (ALIGN_DOWN(LAPIC_DEFAULT_BASE - 1, 64 * KiB) >> 8) | MMIO_NP;
Marshall Dawson154239a2017-11-02 09:49:30 -0600232 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(0), limit);
233 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(0), base);
234
235 /* Remaining PCI hole posted MMIO: TOM-HPET (TOM through 0xfed00000-1 */
236 base = (topmem >> 8) | MMIO_WE | MMIO_RE;
237 limit = ALIGN_DOWN(HPET_BASE_ADDRESS - 1, 64 * KiB) >> 8;
238 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_LIMIT_LO(1), limit);
239 pci_write_config32(SOC_ADDR_DEV, NB_MMIO_BASE_LO(1), base);
240
241 /* Route all I/O downstream */
242 base = 0 | IO_WE | IO_RE;
243 limit = ALIGN_DOWN(0xffff, 4 * KiB);
244 pci_write_config32(SOC_ADDR_DEV, NB_IO_LIMIT(0), limit);
245 pci_write_config32(SOC_ADDR_DEV, NB_IO_BASE(0), base);
246}
247
Marc Jones1587dc82017-05-15 18:55:11 -0600248void fam15_finalize(void *chip_info)
249{
Marc Jones1587dc82017-05-15 18:55:11 -0600250 u32 value;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700251
252 /* TODO: move IOAPIC code to dsdt.asl */
253 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_INDEX, 0);
254 pci_write_config32(SOC_GNB_DEV, NB_IOAPIC_DATA, 5);
Marc Jones1587dc82017-05-15 18:55:11 -0600255
256 /* disable No Snoop */
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700257 value = pci_read_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS);
Richard Spiegel3d34ae32018-04-13 13:20:08 -0700258 value &= ~HDA_NO_SNOOP_EN;
Richard Spiegel41baf0c2018-10-22 13:57:18 -0700259 pci_write_config32(SOC_HDA0_DEV, HDA_DEV_CTRL_STATUS, value);
Marc Jones1587dc82017-05-15 18:55:11 -0600260}
261
Elyes HAOUAS777ccd42018-05-22 10:52:05 +0200262void domain_enable_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600263{
Marc Jones1587dc82017-05-15 18:55:11 -0600264 /* Must be called after PCI enumeration and resource allocation */
Kyösti Mälkki9e591c42021-01-09 12:37:25 +0200265 if (!acpi_is_wakeup_s3())
Kyösti Mälkki6e512c42018-06-14 06:57:05 +0300266 do_agesawrapper(AMD_INIT_MID, "amdinitmid");
Marc Jones1587dc82017-05-15 18:55:11 -0600267}
268
Furquan Shaikhfc752b62020-05-13 12:14:11 -0700269void domain_read_resources(struct device *dev)
Marc Jones1587dc82017-05-15 18:55:11 -0600270{
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700271 uint64_t uma_base = get_uma_base();
272 uint32_t uma_size = get_uma_size();
273 uint32_t mem_useable = (uintptr_t)cbmem_top();
Felix Held392cf2f2023-04-20 13:23:23 +0200274 uint32_t tom = get_top_of_mem_below_4gb();
Felix Held27af3e62023-04-22 05:59:52 +0200275 uint64_t high_tom = get_top_of_mem_above_4gb();
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700276 uint64_t high_mem_useable;
277 int idx = 0x10;
Marc Jones1587dc82017-05-15 18:55:11 -0600278
Furquan Shaikhfc752b62020-05-13 12:14:11 -0700279 pci_domain_read_resources(dev);
280
Felix Heldd7ad1402023-06-05 15:30:10 +0200281 fixed_io_range_reserved(dev, idx++, PCI_IO_CONFIG_INDEX, PCI_IO_CONFIG_PORT_COUNT);
282
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700283 /* 0x0 -> 0x9ffff */
Arthur Heymans885efa12023-07-05 12:11:12 +0200284 ram_range(dev, idx++, 0, 0xa0000);
Marc Jones1587dc82017-05-15 18:55:11 -0600285
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700286 /* 0xa0000 -> 0xbffff: legacy VGA */
Arthur Heymans885efa12023-07-05 12:11:12 +0200287 mmio_range(dev, idx++, VGA_MMIO_BASE, VGA_MMIO_SIZE);
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700288
289 /* 0xc0000 -> 0xfffff: Option ROM */
Arthur Heymans885efa12023-07-05 12:11:12 +0200290 reserved_ram_from_to(dev, idx++, 0xc0000, 1 * MiB);
Marc Jones1587dc82017-05-15 18:55:11 -0600291
Marshall Dawson29f1b742017-09-06 14:59:45 -0600292 /*
Martin Roth26f97f92021-10-01 14:53:22 -0600293 * 0x100000 (1MiB) -> low top usable RAM
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700294 * cbmem_top() accounts for low UMA and TSEG if they are used.
Marc Jones1587dc82017-05-15 18:55:11 -0600295 */
Arthur Heymans885efa12023-07-05 12:11:12 +0200296 ram_from_to(dev, idx++, 1 * MiB, mem_useable);
Marc Jones1587dc82017-05-15 18:55:11 -0600297
Martin Roth26f97f92021-10-01 14:53:22 -0600298 /* Low top usable RAM -> Low top RAM (bottom pci mmio hole) */
Arthur Heymans885efa12023-07-05 12:11:12 +0200299 reserved_ram_from_to(dev, idx++, mem_useable, tom);
Marc Jones1587dc82017-05-15 18:55:11 -0600300
Felix Held5913a542024-01-09 16:59:37 +0100301 /* NB IOAPIC2 resource. IOMMU_IOAPIC_IDX is used as index, so that the common AMD MADT
302 code can find this resource */
303 mmio_range(dev, IOMMU_IOAPIC_IDX, IO_APIC2_ADDR, 0x1000);
304
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700305 /* If there is memory above 4GiB */
Felix Held392cf2f2023-04-20 13:23:23 +0200306 if (high_tom >> 32) {
Martin Roth26f97f92021-10-01 14:53:22 -0600307 /* 4GiB -> high top usable */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700308 if (uma_base >= (4ull * GiB))
309 high_mem_useable = uma_base;
310 else
Felix Held392cf2f2023-04-20 13:23:23 +0200311 high_mem_useable = high_tom;
Marc Jones1587dc82017-05-15 18:55:11 -0600312
Arthur Heymans885efa12023-07-05 12:11:12 +0200313 ram_from_to(dev, idx++, 4ull * GiB, high_mem_useable);
Marc Jones1587dc82017-05-15 18:55:11 -0600314
Martin Roth26f97f92021-10-01 14:53:22 -0600315 /* High top usable RAM -> high top RAM */
Marc Jones5fd1d5a2018-02-08 15:41:54 -0700316 if (uma_base >= (4ull * GiB)) {
Arthur Heymans885efa12023-07-05 12:11:12 +0200317 reserved_ram_range(dev, idx++, uma_base, uma_size);
Marc Jones1587dc82017-05-15 18:55:11 -0600318 }
Marc Jones1587dc82017-05-15 18:55:11 -0600319 }
Marc Jones1587dc82017-05-15 18:55:11 -0600320}
321
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700322__weak void set_board_env_params(GNB_ENV_CONFIGURATION *params) { }
323
Marshall Dawson2942db62017-12-14 10:00:27 -0700324void SetNbEnvParams(GNB_ENV_CONFIGURATION *params)
325{
Felix Held727ee6672023-12-20 22:47:03 +0100326 params->IommuSupport = is_dev_enabled(DEV_PTR(iommu));
Richard Spiegel2e90ee32018-07-24 12:08:22 -0700327 set_board_env_params(params);
Marshall Dawson2942db62017-12-14 10:00:27 -0700328}
329
330void SetNbMidParams(GNB_MID_CONFIGURATION *params)
331{
332 /* 0=Primary and decode all VGA resources, 1=Secondary - decode none */
333 params->iGpuVgaMode = 0;
334 params->GnbIoapicAddress = IO_APIC2_ADDR;
335}