blob: 75b281bd8d5dc1198e2de9449f707e25c081758f [file] [log] [blame]
Marc Jones97321db2020-09-28 23:35:08 -06001/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3#include <acpi/acpigen.h>
Felix Held4b2464f2022-02-23 17:54:20 +01004#include <arch/hpet.h>
Patrick Rudolph57ddd682023-02-28 09:17:40 +01005#include <arch/ioapic.h>
Marc Jones97321db2020-09-28 23:35:08 -06006#include <assert.h>
7#include <cbmem.h>
Naresh Solanki559f9ed2023-01-20 19:38:07 +01008#include <cpu/x86/lapic.h>
Arthur Heymans36e6f9b2022-10-27 15:11:05 +02009#include <commonlib/sort.h>
Marc Jones97321db2020-09-28 23:35:08 -060010#include <device/mmio.h>
11#include <device/pci.h>
Tim Chu5c196402022-12-13 12:09:44 +000012#include <device/pciexp.h>
Marc Jones97321db2020-09-28 23:35:08 -060013#include <soc/acpi.h>
Rocky Phagurad4db36e2021-04-03 08:49:32 -070014#include <soc/hest.h>
Marc Jones97321db2020-09-28 23:35:08 -060015#include <soc/iomap.h>
Tim Chu5c196402022-12-13 12:09:44 +000016#include <soc/numa.h>
Marc Jones97321db2020-09-28 23:35:08 -060017#include <soc/pci_devs.h>
18#include <soc/soc_util.h>
Marc Jones18960ce2020-11-02 12:41:12 -070019#include <soc/util.h>
Arthur Heymans695dd292020-11-12 21:05:09 +010020#include <intelblocks/p2sb.h>
Marc Jones97321db2020-09-28 23:35:08 -060021
22#include "chip.h"
23
Tim Chu5c196402022-12-13 12:09:44 +000024/* NUMA related ACPI table generation. SRAT, SLIT, etc */
Marc Jones97321db2020-09-28 23:35:08 -060025
Arthur Heymans36e6f9b2022-10-27 15:11:05 +020026/* Increase if necessary. Currently all x86 CPUs only have 2 SMP threads */
27#define MAX_THREAD 2
28
Marc Jones97321db2020-09-28 23:35:08 -060029unsigned long acpi_create_srat_lapics(unsigned long current)
30{
31 struct device *cpu;
Arthur Heymans36e6f9b2022-10-27 15:11:05 +020032 unsigned int num_cpus = 0;
33 int apic_ids[CONFIG_MAX_CPUS] = {};
Marc Jones97321db2020-09-28 23:35:08 -060034
Arthur Heymans36e6f9b2022-10-27 15:11:05 +020035 unsigned int sort_start = 0;
36 for (unsigned int thread_id = 0; thread_id < MAX_THREAD; thread_id++) {
37 for (cpu = all_devices; cpu; cpu = cpu->next) {
38 if (!is_enabled_cpu(cpu))
39 continue;
40 if (num_cpus >= ARRAY_SIZE(apic_ids))
41 break;
42 if (cpu->path.apic.thread_id != thread_id)
43 continue;
44 apic_ids[num_cpus++] = cpu->path.apic.apic_id;
45 }
46 bubblesort(&apic_ids[sort_start], num_cpus - sort_start, NUM_ASCENDING);
47 sort_start = num_cpus;
48 }
49
50 for (unsigned int i = 0; i < num_cpus; i++) {
51 /* Match the sorted apic_ids to a struct device */
52 for (cpu = all_devices; cpu; cpu = cpu->next) {
53 if (!is_enabled_cpu(cpu))
54 continue;
55 if (cpu->path.apic.apic_id == apic_ids[i])
56 break;
57 }
58 if (!cpu)
Marc Jones97321db2020-09-28 23:35:08 -060059 continue;
Naresh Solanki559f9ed2023-01-20 19:38:07 +010060
61 if (is_x2apic_mode()) {
Arthur Heymans36e6f9b2022-10-27 15:11:05 +020062 printk(BIOS_DEBUG, "SRAT: x2apic cpu_index=%04x, node_id=%02x, apic_id=%08x\n",
63 i, cpu->path.apic.node_id, cpu->path.apic.apic_id);
Naresh Solanki559f9ed2023-01-20 19:38:07 +010064
65 current += acpi_create_srat_x2apic((acpi_srat_x2apic_t *)current,
66 cpu->path.apic.node_id, cpu->path.apic.apic_id);
67 } else {
68 printk(BIOS_DEBUG, "SRAT: lapic cpu_index=%02x, node_id=%02x, apic_id=%02x\n",
Arthur Heymans36e6f9b2022-10-27 15:11:05 +020069 i, cpu->path.apic.node_id, cpu->path.apic.apic_id);
Naresh Solanki559f9ed2023-01-20 19:38:07 +010070
71 current += acpi_create_srat_lapic((acpi_srat_lapic_t *)current,
72 cpu->path.apic.node_id, cpu->path.apic.apic_id);
73 }
Marc Jones97321db2020-09-28 23:35:08 -060074 }
75 return current;
76}
77
78static unsigned int get_srat_memory_entries(acpi_srat_mem_t *srat_mem)
79{
80 const struct SystemMemoryMapHob *memory_map;
81 unsigned int mmap_index;
82
83 memory_map = get_system_memory_map();
Elyes Haouasf1ba7d62022-09-13 10:03:44 +020084 assert(memory_map);
Marc Jones97321db2020-09-28 23:35:08 -060085 printk(BIOS_DEBUG, "memory_map: %p\n", memory_map);
86
87 mmap_index = 0;
88 for (int e = 0; e < memory_map->numberEntries; ++e) {
89 const struct SystemMemoryMapElement *mem_element = &memory_map->Element[e];
90 uint64_t addr =
Elyes Haouas9018dee2022-11-18 15:07:33 +010091 (uint64_t)((uint64_t)mem_element->BaseAddress <<
Marc Jones97321db2020-09-28 23:35:08 -060092 MEM_ADDR_64MB_SHIFT_BITS);
93 uint64_t size =
Elyes Haouas9018dee2022-11-18 15:07:33 +010094 (uint64_t)((uint64_t)mem_element->ElementSize <<
Marc Jones97321db2020-09-28 23:35:08 -060095 MEM_ADDR_64MB_SHIFT_BITS);
96
97 printk(BIOS_DEBUG, "memory_map %d addr: 0x%llx, BaseAddress: 0x%x, size: 0x%llx, "
Tim Chu5c196402022-12-13 12:09:44 +000098 "ElementSize: 0x%x, type: %d, reserved: %d\n",
Marc Jones97321db2020-09-28 23:35:08 -060099 e, addr, mem_element->BaseAddress, size,
Tim Chu5c196402022-12-13 12:09:44 +0000100 mem_element->ElementSize, mem_element->Type,
101 (mem_element->Type & MEM_TYPE_RESERVED));
Marc Jones97321db2020-09-28 23:35:08 -0600102
103 assert(mmap_index < MAX_ACPI_MEMORY_AFFINITY_COUNT);
104
105 /* skip reserved memory region */
106 if (mem_element->Type & MEM_TYPE_RESERVED)
107 continue;
Tim Chu5c196402022-12-13 12:09:44 +0000108#if CONFIG(SOC_INTEL_SAPPHIRERAPIDS_SP)
109 /* Skip all non processor attached memory regions */
110 /* In other words, skip all the types >= MemTypeCxlAccVolatileMem */
111 if (mem_element->Type >= MemTypeCxlAccVolatileMem)
112 continue;
113#endif
Marc Jones97321db2020-09-28 23:35:08 -0600114
115 /* skip if this address is already added */
116 bool skip = false;
117 for (int idx = 0; idx < mmap_index; ++idx) {
118 uint64_t base_addr = ((uint64_t)srat_mem[idx].base_address_high << 32) +
119 srat_mem[idx].base_address_low;
120 if (addr == base_addr) {
121 skip = true;
122 break;
123 }
124 }
125 if (skip)
126 continue;
127
128 srat_mem[mmap_index].type = 1; /* Memory affinity structure */
129 srat_mem[mmap_index].length = sizeof(acpi_srat_mem_t);
Elyes Haouas9018dee2022-11-18 15:07:33 +0100130 srat_mem[mmap_index].base_address_low = (uint32_t)(addr & 0xffffffff);
131 srat_mem[mmap_index].base_address_high = (uint32_t)(addr >> 32);
132 srat_mem[mmap_index].length_low = (uint32_t)(size & 0xffffffff);
133 srat_mem[mmap_index].length_high = (uint32_t)(size >> 32);
Marc Jones97321db2020-09-28 23:35:08 -0600134 srat_mem[mmap_index].proximity_domain = mem_element->SocketId;
135 srat_mem[mmap_index].flags = SRAT_ACPI_MEMORY_ENABLED;
136 if ((mem_element->Type & MEMTYPE_VOLATILE_MASK) == 0)
137 srat_mem[mmap_index].flags |= SRAT_ACPI_MEMORY_NONVOLATILE;
138 ++mmap_index;
139 }
140
141 return mmap_index;
142}
143
144static unsigned long acpi_fill_srat(unsigned long current)
145{
146 acpi_srat_mem_t srat_mem[MAX_ACPI_MEMORY_AFFINITY_COUNT];
147 unsigned int mem_count;
148
149 /* create all subtables for processors */
150 current = acpi_create_srat_lapics(current);
151
Naresh Solanki9fd5c692023-05-22 16:47:47 +0200152 memset(srat_mem, 0, sizeof(srat_mem));
Marc Jones97321db2020-09-28 23:35:08 -0600153 mem_count = get_srat_memory_entries(srat_mem);
154 for (int i = 0; i < mem_count; ++i) {
155 printk(BIOS_DEBUG, "adding srat memory %d entry length: %d, addr: 0x%x%x, "
156 "length: 0x%x%x, proximity_domain: %d, flags: %x\n",
157 i, srat_mem[i].length,
158 srat_mem[i].base_address_high, srat_mem[i].base_address_low,
159 srat_mem[i].length_high, srat_mem[i].length_low,
160 srat_mem[i].proximity_domain, srat_mem[i].flags);
161 memcpy((acpi_srat_mem_t *)current, &srat_mem[i], sizeof(srat_mem[i]));
162 current += srat_mem[i].length;
163 }
164
Tim Chu5c196402022-12-13 12:09:44 +0000165 if (CONFIG(SOC_INTEL_HAS_CXL))
166 current = cxl_fill_srat(current);
167
Marc Jones97321db2020-09-28 23:35:08 -0600168 return current;
169}
170
Tim Chu5c196402022-12-13 12:09:44 +0000171#if CONFIG(SOC_INTEL_SAPPHIRERAPIDS_SP)
172/*
173Because pds.num_pds comes from spr/numa.c function fill_pds().
174pds.num_pds = soc_get_num_cpus() + get_cxl_node_count().
175*/
176/* SPR-SP platform has Generic Initiator domain in addition to processor domain */
177static unsigned long acpi_fill_slit(unsigned long current)
178{
179 uint8_t *p = (uint8_t *)current;
180 /* According to table 5.60 of ACPI 6.4 spec, "Number of System Localities" field takes
181 up 8 bytes. Following that, each matrix entry takes up 1 byte. */
182 memset(p, 0, 8 + pds.num_pds * pds.num_pds);
183 *p = (uint8_t)pds.num_pds;
184 p += 8;
185
186 for (int i = 0; i < pds.num_pds; i++) {
187 for (int j = 0; j < pds.num_pds; j++)
188 p[i * pds.num_pds + j] = pds.pds[i].distances[j];
189 }
190
191 current += 8 + pds.num_pds * pds.num_pds;
192 return current;
193}
194#else
Marc Jones97321db2020-09-28 23:35:08 -0600195static unsigned long acpi_fill_slit(unsigned long current)
196{
Marc Jones70907b02020-10-28 17:00:31 -0600197 unsigned int nodes = soc_get_num_cpus();
Marc Jones97321db2020-09-28 23:35:08 -0600198
199 uint8_t *p = (uint8_t *)current;
200 memset(p, 0, 8 + nodes * nodes);
201 *p = (uint8_t)nodes;
202 p += 8;
203
204 /* this assumes fully connected socket topology */
205 for (int i = 0; i < nodes; i++) {
206 for (int j = 0; j < nodes; j++) {
207 if (i == j)
208 p[i*nodes+j] = 10;
209 else
210 p[i*nodes+j] = 16;
211 }
212 }
213
214 current += 8 + nodes * nodes;
215 return current;
216}
Tim Chu5c196402022-12-13 12:09:44 +0000217#endif
Marc Jones97321db2020-09-28 23:35:08 -0600218
219/*
Marc Jones97321db2020-09-28 23:35:08 -0600220 * This function adds PCIe bridge device entry in DMAR table. If it is called
221 * in the context of ATSR subtable, it adds ATSR subtable when it is first called.
222 */
223static unsigned long acpi_create_dmar_ds_pci_br_for_port(unsigned long current,
Tim Chu5c196402022-12-13 12:09:44 +0000224 const struct device *bridge_dev,
225 uint32_t pcie_seg,
226 bool is_atsr, bool *first)
Marc Jones97321db2020-09-28 23:35:08 -0600227{
Arthur Heymans7fcd4d52023-08-24 15:12:19 +0200228 const uint32_t bus = bridge_dev->upstream->secondary;
Tim Chu5c196402022-12-13 12:09:44 +0000229 const uint32_t dev = PCI_SLOT(bridge_dev->path.pci.devfn);
230 const uint32_t func = PCI_FUNC(bridge_dev->path.pci.devfn);
Marc Jones97321db2020-09-28 23:35:08 -0600231
Tim Chu5c196402022-12-13 12:09:44 +0000232 if (bus == 0)
233 return current;
Marc Jones97321db2020-09-28 23:35:08 -0600234
235 unsigned long atsr_size = 0;
236 unsigned long pci_br_size = 0;
Tim Chu5c196402022-12-13 12:09:44 +0000237 if (is_atsr == true && first && *first == true) {
Marc Jones97321db2020-09-28 23:35:08 -0600238 printk(BIOS_DEBUG, "[Root Port ATS Capability] Flags: 0x%x, "
239 "PCI Segment Number: 0x%x\n", 0, pcie_seg);
240 atsr_size = acpi_create_dmar_atsr(current, 0, pcie_seg);
241 *first = false;
242 }
243
244 printk(BIOS_DEBUG, " [PCI Bridge Device] Enumeration ID: 0x%x, "
245 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
246 0, bus, dev, func);
247 pci_br_size = acpi_create_dmar_ds_pci_br(current + atsr_size, bus, dev, func);
248
249 return (atsr_size + pci_br_size);
250}
251
252static unsigned long acpi_create_drhd(unsigned long current, int socket,
253 int stack, const IIO_UDS *hob)
254{
Marc Jones97321db2020-09-28 23:35:08 -0600255 unsigned long tmp = current;
Tim Chu5c196402022-12-13 12:09:44 +0000256 const STACK_RES *ri = &hob->PlatformData.IIO_resource[socket].StackRes[stack];
257 const uint32_t bus = ri->BusBase;
258 const uint32_t pcie_seg = hob->PlatformData.CpuQpiInfo[socket].PcieSegment;
259 const uint32_t reg_base = ri->VtdBarAddress;
Marc Jones97321db2020-09-28 23:35:08 -0600260 printk(BIOS_SPEW, "%s socket: %d, stack: %d, bus: 0x%x, pcie_seg: 0x%x, reg_base: 0x%x\n",
261 __func__, socket, stack, bus, pcie_seg, reg_base);
262
263 /* Do not generate DRHD for non-PCIe stack */
264 if (!reg_base)
265 return current;
266
Arthur Heymansa1c4ad32021-05-04 18:40:28 +0200267 // Add DRHD Hardware Unit
Tim Chu5c196402022-12-13 12:09:44 +0000268
269 if (socket == 0 && stack == IioStack0) {
Arthur Heymansa1c4ad32021-05-04 18:40:28 +0200270 printk(BIOS_DEBUG, "[Hardware Unit Definition] Flags: 0x%x, PCI Segment Number: 0x%x, "
271 "Register Base Address: 0x%x\n",
272 DRHD_INCLUDE_PCI_ALL, pcie_seg, reg_base);
273 current += acpi_create_dmar_drhd(current, DRHD_INCLUDE_PCI_ALL,
274 pcie_seg, reg_base);
275 } else {
276 printk(BIOS_DEBUG, "[Hardware Unit Definition] Flags: 0x%x, PCI Segment Number: 0x%x, "
277 "Register Base Address: 0x%x\n", 0, pcie_seg, reg_base);
278 current += acpi_create_dmar_drhd(current, 0, pcie_seg, reg_base);
279 }
280
Marc Jones97321db2020-09-28 23:35:08 -0600281 // Add PCH IOAPIC
Tim Chu5c196402022-12-13 12:09:44 +0000282 if (socket == 0 && stack == IioStack0) {
Arthur Heymans6e425e12020-11-12 21:12:05 +0100283 union p2sb_bdf ioapic_bdf = p2sb_get_ioapic_bdf();
Marc Jones97321db2020-09-28 23:35:08 -0600284 printk(BIOS_DEBUG, " [IOAPIC Device] Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
Patrick Rudolph57ddd682023-02-28 09:17:40 +0100285 "PCI Path: 0x%x, 0x%x\n", get_ioapic_id(VIO_APIC_VADDR), ioapic_bdf.bus,
286 ioapic_bdf.dev, ioapic_bdf.fn);
287 current += acpi_create_dmar_ds_ioapic_from_hw(current,
288 IO_APIC_ADDR, ioapic_bdf.bus, ioapic_bdf.dev, ioapic_bdf.fn);
Marc Jones97321db2020-09-28 23:35:08 -0600289 }
290
Tim Chu5c196402022-12-13 12:09:44 +0000291/* SPR has no per stack IOAPIC or CBDMA devices */
292#if CONFIG(SOC_INTEL_SKYLAKE_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
293 uint32_t enum_id;
Marc Jones97321db2020-09-28 23:35:08 -0600294 // Add IOAPIC entry
Arthur Heymansa1cc5572020-11-06 12:53:33 +0100295 enum_id = soc_get_iio_ioapicid(socket, stack);
Marc Jones97321db2020-09-28 23:35:08 -0600296 printk(BIOS_DEBUG, " [IOAPIC Device] Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
297 "PCI Path: 0x%x, 0x%x\n", enum_id, bus, APIC_DEV_NUM, APIC_FUNC_NUM);
298 current += acpi_create_dmar_ds_ioapic(current, enum_id, bus,
299 APIC_DEV_NUM, APIC_FUNC_NUM);
300
301 // Add CBDMA devices for CSTACK
302 if (socket != 0 && stack == CSTACK) {
303 for (int cbdma_func_id = 0; cbdma_func_id < 8; ++cbdma_func_id) {
304 printk(BIOS_DEBUG, " [PCI Endpoint Device] Enumeration ID: 0x%x, "
305 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
306 0, bus, CBDMA_DEV_NUM, cbdma_func_id);
307 current += acpi_create_dmar_ds_pci(current,
308 bus, CBDMA_DEV_NUM, cbdma_func_id);
309 }
310 }
Tim Chu5c196402022-12-13 12:09:44 +0000311#endif
Marc Jones97321db2020-09-28 23:35:08 -0600312
313 // Add PCIe Ports
Tim Chu5c196402022-12-13 12:09:44 +0000314 if (socket != 0 || stack != IioStack0) {
315 struct device *dev = pcidev_path_on_bus(bus, PCI_DEVFN(0, 0));
316 while (dev) {
317 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
318 current +=
319 acpi_create_dmar_ds_pci_br_for_port(
320 current, dev, pcie_seg, false, NULL);
Marc Jones97321db2020-09-28 23:35:08 -0600321
Tim Chu5c196402022-12-13 12:09:44 +0000322 dev = dev->sibling;
323 }
324
325#if CONFIG(SOC_INTEL_SKYLAKE_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
Marc Jones97321db2020-09-28 23:35:08 -0600326 // Add VMD
327 if (hob->PlatformData.VMDStackEnable[socket][stack] &&
328 stack >= PSTACK0 && stack <= PSTACK2) {
329 printk(BIOS_DEBUG, " [PCI Endpoint Device] Enumeration ID: 0x%x, "
330 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
331 0, bus, VMD_DEV_NUM, VMD_FUNC_NUM);
332 current += acpi_create_dmar_ds_pci(current,
333 bus, VMD_DEV_NUM, VMD_FUNC_NUM);
334 }
Tim Chu5c196402022-12-13 12:09:44 +0000335#endif
Marc Jones97321db2020-09-28 23:35:08 -0600336 }
337
Tim Chu5c196402022-12-13 12:09:44 +0000338#if CONFIG(SOC_INTEL_SAPPHIRERAPIDS_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
339 // Add DINO End Points (with memory resources. We don't report every End Point device.)
340 if (ri->Personality == TYPE_DINO) {
341 for (int b = ri->BusBase; b <= ri->BusLimit; ++b) {
342 struct device *dev = pcidev_path_on_bus(b, PCI_DEVFN(0, 0));
343 while (dev) {
344 /* This may also require a check for IORESOURCE_PREFETCH,
345 * but that would not include the FPU (4942/0) */
346 if ((dev->resource_list->flags &
347 (IORESOURCE_MEM | IORESOURCE_PCI64 | IORESOURCE_ASSIGNED)) ==
348 (IORESOURCE_MEM | IORESOURCE_PCI64 | IORESOURCE_ASSIGNED)) {
349 const uint32_t d = PCI_SLOT(dev->path.pci.devfn);
350 const uint32_t f = PCI_FUNC(dev->path.pci.devfn);
351 printk(BIOS_DEBUG, " [PCIE Endpoint Device] "
352 "Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
353 " PCI Path: 0x%x, 0x%x\n", 0, b, d, f);
354 current += acpi_create_dmar_ds_pci(current, b, d, f);
355 }
356 dev = dev->sibling;
357 }
358 }
359 }
360#endif
361
Marc Jones97321db2020-09-28 23:35:08 -0600362 // Add HPET
Tim Chu5c196402022-12-13 12:09:44 +0000363 if (socket == 0 && stack == IioStack0) {
Elyes Haouas167b7fcd2022-12-11 10:38:35 +0100364 uint16_t hpet_capid = read16p(HPET_BASE_ADDRESS);
Marc Jones97321db2020-09-28 23:35:08 -0600365 uint16_t num_hpets = (hpet_capid >> 0x08) & 0x1F; // Bits [8:12] has hpet count
366 printk(BIOS_SPEW, "%s hpet_capid: 0x%x, num_hpets: 0x%x\n",
367 __func__, hpet_capid, num_hpets);
368 //BIT 15
369 if (num_hpets && (num_hpets != 0x1f) &&
Elyes Haouas167b7fcd2022-12-11 10:38:35 +0100370 (read32p(HPET_BASE_ADDRESS + 0x100) & (0x00008000))) {
Arthur Heymans695dd292020-11-12 21:05:09 +0100371 union p2sb_bdf hpet_bdf = p2sb_get_hpet_bdf();
Marc Jones97321db2020-09-28 23:35:08 -0600372 printk(BIOS_DEBUG, " [Message-capable HPET Device] Enumeration ID: 0x%x, "
373 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
Arthur Heymans695dd292020-11-12 21:05:09 +0100374 0, hpet_bdf.bus, hpet_bdf.dev, hpet_bdf.fn);
375 current += acpi_create_dmar_ds_msi_hpet(current, 0, hpet_bdf.bus,
376 hpet_bdf.dev, hpet_bdf.fn);
Marc Jones97321db2020-09-28 23:35:08 -0600377 }
378 }
379
380 acpi_dmar_drhd_fixup(tmp, current);
381
382 return current;
383}
384
385static unsigned long acpi_create_atsr(unsigned long current, const IIO_UDS *hob)
386{
Patrick Rudolphac028572023-07-14 17:44:33 +0200387 for (int socket = 0, iio = 0; iio < hob->PlatformData.numofIIO; ++socket) {
388 if (!soc_cpu_is_enabled(socket))
389 continue;
390 iio++;
391
Marc Jones97321db2020-09-28 23:35:08 -0600392 uint32_t pcie_seg = hob->PlatformData.CpuQpiInfo[socket].PcieSegment;
393 unsigned long tmp = current;
394 bool first = true;
395 IIO_RESOURCE_INSTANCE iio_resource =
396 hob->PlatformData.IIO_resource[socket];
397
Tim Chu5c196402022-12-13 12:09:44 +0000398 for (int stack = 0; stack < MAX_LOGIC_IIO_STACK; ++stack) {
Marc Jones97321db2020-09-28 23:35:08 -0600399 uint32_t bus = iio_resource.StackRes[stack].BusBase;
400 uint32_t vtd_base = iio_resource.StackRes[stack].VtdBarAddress;
401 if (!vtd_base)
402 continue;
Elyes Haouas167b7fcd2022-12-11 10:38:35 +0100403 uint64_t vtd_mmio_cap = read64p(vtd_base + VTD_EXT_CAP_LOW);
Marc Jones97321db2020-09-28 23:35:08 -0600404 printk(BIOS_SPEW, "%s socket: %d, stack: %d, bus: 0x%x, vtd_base: 0x%x, "
405 "vtd_mmio_cap: 0x%llx\n",
406 __func__, socket, stack, bus, vtd_base, vtd_mmio_cap);
407
408 // ATSR is applicable only for platform supporting device IOTLBs
409 // through the VT-d extended capability register
410 assert(vtd_mmio_cap != 0xffffffffffffffff);
411 if ((vtd_mmio_cap & 0x4) == 0) // BIT 2
412 continue;
413
Tim Chu5c196402022-12-13 12:09:44 +0000414 if (bus == 0)
415 continue;
416
417 struct device *dev = pcidev_path_on_bus(bus, PCI_DEVFN(0, 0));
418 while (dev) {
419 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
420 current +=
421 acpi_create_dmar_ds_pci_br_for_port(
422 current, dev, pcie_seg, true, &first);
423
424 dev = dev->sibling;
Marc Jones97321db2020-09-28 23:35:08 -0600425 }
426 }
427 if (tmp != current)
428 acpi_dmar_atsr_fixup(tmp, current);
429 }
430
431 return current;
432}
433
434static unsigned long acpi_create_rmrr(unsigned long current)
435{
436 uint32_t size = ALIGN_UP(MEM_BLK_COUNT * sizeof(MEM_BLK), 0x1000);
437
438 uint32_t *ptr;
439
440 // reserve memory
441 ptr = cbmem_find(CBMEM_ID_STORAGE_DATA);
442 if (!ptr) {
443 ptr = cbmem_add(CBMEM_ID_STORAGE_DATA, size);
Elyes Haouasf1ba7d62022-09-13 10:03:44 +0200444 assert(ptr);
Marc Jones97321db2020-09-28 23:35:08 -0600445 memset(ptr, 0, size);
446 }
447
448 unsigned long tmp = current;
449 printk(BIOS_DEBUG, "[Reserved Memory Region] PCI Segment Number: 0x%x, Base Address: 0x%x, "
450 "End Address (limit): 0x%x\n",
Elyes Haouas9018dee2022-11-18 15:07:33 +0100451 0, (uint32_t)ptr, (uint32_t)((uint32_t)ptr + size - 1));
452 current += acpi_create_dmar_rmrr(current, 0, (uint32_t)ptr,
453 (uint32_t)((uint32_t)ptr + size - 1));
Marc Jones97321db2020-09-28 23:35:08 -0600454
455 printk(BIOS_DEBUG, " [PCI Endpoint Device] Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
456 "PCI Path: 0x%x, 0x%x\n",
457 0, XHCI_BUS_NUMBER, PCH_DEV_SLOT_XHCI, XHCI_FUNC_NUM);
458 current += acpi_create_dmar_ds_pci(current, XHCI_BUS_NUMBER,
459 PCH_DEV_SLOT_XHCI, XHCI_FUNC_NUM);
460
461 acpi_dmar_rmrr_fixup(tmp, current);
462
463 return current;
464}
465
466static unsigned long acpi_create_rhsa(unsigned long current)
467{
Arthur Heymans83b26222020-11-06 11:50:55 +0100468 const IIO_UDS *hob = get_iio_uds();
Marc Jones97321db2020-09-28 23:35:08 -0600469
Patrick Rudolphac028572023-07-14 17:44:33 +0200470 for (int socket = 0, iio = 0; iio < hob->PlatformData.numofIIO; ++socket) {
471 if (!soc_cpu_is_enabled(socket))
472 continue;
473 iio++;
474
Marc Jones97321db2020-09-28 23:35:08 -0600475 IIO_RESOURCE_INSTANCE iio_resource =
476 hob->PlatformData.IIO_resource[socket];
Tim Chu5c196402022-12-13 12:09:44 +0000477 for (int stack = 0; stack < MAX_LOGIC_IIO_STACK; ++stack) {
Marc Jones97321db2020-09-28 23:35:08 -0600478 uint32_t vtd_base = iio_resource.StackRes[stack].VtdBarAddress;
479 if (!vtd_base)
480 continue;
481
482 printk(BIOS_DEBUG, "[Remapping Hardware Static Affinity] Base Address: 0x%x, "
483 "Proximity Domain: 0x%x\n", vtd_base, socket);
484 current += acpi_create_dmar_rhsa(current, vtd_base, socket);
485 }
486 }
487
488 return current;
489}
490
Tim Chu5c196402022-12-13 12:09:44 +0000491/* Skylake-SP doesn't have DINO but not sure how to verify this on CPX */
492#if CONFIG(SOC_INTEL_SAPPHIRERAPIDS_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
493static unsigned long xeonsp_create_satc_dino(unsigned long current, const STACK_RES *ri)
494{
495 for (int b = ri->BusBase; b <= ri->BusLimit; ++b) {
496 struct device *dev = pcidev_path_on_bus(b, PCI_DEVFN(0, 0));
497 while (dev) {
498 if (pciexp_find_extended_cap(dev, PCIE_EXT_CAP_ID_ATS, 0)) {
499 const uint32_t d = PCI_SLOT(dev->path.pci.devfn);
500 const uint32_t f = PCI_FUNC(dev->path.pci.devfn);
501 printk(BIOS_DEBUG, " [SATC Endpoint Device] "
502 "Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
503 " PCI Path: 0x%x, 0x%x\n", 0, b, d, f);
504 current += acpi_create_dmar_ds_pci(current, b, d, f);
505 }
506 dev = dev->sibling;
507 }
508 }
509 return current;
510}
511
512/* SoC Integrated Address Translation Cache */
513static unsigned long acpi_create_satc(unsigned long current, const IIO_UDS *hob)
514{
Tim Chu5c196402022-12-13 12:09:44 +0000515 const unsigned long tmp = current;
516
517 // Add the SATC header
518 current += acpi_create_dmar_satc(current, 0, 0);
519
520 // Find the DINO devices on each socket
Patrick Rudolphac028572023-07-14 17:44:33 +0200521 for (int socket = CONFIG_MAX_SOCKET - 1; socket >= 0; --socket) {
522 if (!soc_cpu_is_enabled(socket))
523 continue;
Tim Chu5c196402022-12-13 12:09:44 +0000524 for (int stack = (MAX_LOGIC_IIO_STACK - 1); stack >= 0; --stack) {
525 const STACK_RES *ri = &hob->PlatformData.IIO_resource[socket].StackRes[stack];
526 // Add the DINO ATS devices to the SATC
527 if (ri->Personality == TYPE_DINO)
528 current = xeonsp_create_satc_dino(current, ri);
529 }
530 }
531
532 acpi_dmar_satc_fixup(tmp, current);
533 return current;
534}
535#endif
536
Marc Jones97321db2020-09-28 23:35:08 -0600537static unsigned long acpi_fill_dmar(unsigned long current)
538{
Arthur Heymans83b26222020-11-06 11:50:55 +0100539 const IIO_UDS *hob = get_iio_uds();
Marc Jones97321db2020-09-28 23:35:08 -0600540
Tim Chu5c196402022-12-13 12:09:44 +0000541 // DRHD - socket 0 stack 0 must be the last DRHD entry.
Patrick Rudolphac028572023-07-14 17:44:33 +0200542 for (int socket = (CONFIG_MAX_SOCKET - 1); socket >= 0; --socket) {
543 if (!soc_cpu_is_enabled(socket))
544 continue;
Tim Chu5c196402022-12-13 12:09:44 +0000545 for (int stack = (MAX_LOGIC_IIO_STACK - 1); stack >= 0; --stack)
546 current = acpi_create_drhd(current, socket, stack, hob);
Marc Jones97321db2020-09-28 23:35:08 -0600547 }
548
549 // RMRR
550 current = acpi_create_rmrr(current);
551
552 // Root Port ATS Capability
553 current = acpi_create_atsr(current, hob);
554
555 // RHSA
556 current = acpi_create_rhsa(current);
557
Tim Chu5c196402022-12-13 12:09:44 +0000558#if CONFIG(SOC_INTEL_SAPPHIRERAPIDS_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
559 // SATC
560 current = acpi_create_satc(current, hob);
561#endif
562
Marc Jones97321db2020-09-28 23:35:08 -0600563 return current;
564}
565
Tim Chu5c196402022-12-13 12:09:44 +0000566unsigned long northbridge_write_acpi_tables(const struct device *device, unsigned long current,
Marc Jones97321db2020-09-28 23:35:08 -0600567 struct acpi_rsdp *rsdp)
568{
569 acpi_srat_t *srat;
570 acpi_slit_t *slit;
571 acpi_dmar_t *dmar;
Tim Chu5c196402022-12-13 12:09:44 +0000572 acpi_hmat_t *hmat;
573 acpi_cedt_t *cedt;
Marc Jones97321db2020-09-28 23:35:08 -0600574
575 const config_t *const config = config_of(device);
576
577 /* SRAT */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200578 current = ALIGN_UP(current, 8);
Marc Jones97321db2020-09-28 23:35:08 -0600579 printk(BIOS_DEBUG, "ACPI: * SRAT at %lx\n", current);
Elyes Haouas9018dee2022-11-18 15:07:33 +0100580 srat = (acpi_srat_t *)current;
Marc Jones97321db2020-09-28 23:35:08 -0600581 acpi_create_srat(srat, acpi_fill_srat);
582 current += srat->header.length;
583 acpi_add_table(rsdp, srat);
584
585 /* SLIT */
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200586 current = ALIGN_UP(current, 8);
Marc Jones97321db2020-09-28 23:35:08 -0600587 printk(BIOS_DEBUG, "ACPI: * SLIT at %lx\n", current);
Elyes Haouas9018dee2022-11-18 15:07:33 +0100588 slit = (acpi_slit_t *)current;
Marc Jones97321db2020-09-28 23:35:08 -0600589 acpi_create_slit(slit, acpi_fill_slit);
590 current += slit->header.length;
591 acpi_add_table(rsdp, slit);
592
Tim Chu5c196402022-12-13 12:09:44 +0000593 if (CONFIG(SOC_INTEL_HAS_CXL)) {
594 /* HMAT*/
595 current = ALIGN_UP(current, 8);
596 printk(BIOS_DEBUG, "ACPI: * HMAT at %lx\n", current);
597 hmat = (acpi_hmat_t *)current;
598 acpi_create_hmat(hmat, acpi_fill_hmat);
599 current += hmat->header.length;
600 acpi_add_table(rsdp, hmat);
601 }
602
Marc Jones97321db2020-09-28 23:35:08 -0600603 /* DMAR */
604 if (config->vtd_support) {
Elyes Haouasd6b6b222022-10-10 12:34:21 +0200605 current = ALIGN_UP(current, 8);
Marc Jones97321db2020-09-28 23:35:08 -0600606 dmar = (acpi_dmar_t *)current;
Marc Jonesb7e591e2020-11-13 15:55:31 -0700607 enum dmar_flags flags = DMAR_INTR_REMAP;
608
609 /* SKX FSP doesn't support X2APIC, but CPX FSP does */
610 if (CONFIG(SOC_INTEL_SKYLAKE_SP))
611 flags |= DMAR_X2APIC_OPT_OUT;
612
Tim Chu5c196402022-12-13 12:09:44 +0000613 printk(BIOS_DEBUG, "ACPI: * DMAR at %lx\n", current);
Marc Jonesb7e591e2020-11-13 15:55:31 -0700614 printk(BIOS_DEBUG, "[DMA Remapping table] Flags: 0x%x\n", flags);
615 acpi_create_dmar(dmar, flags, acpi_fill_dmar);
Marc Jones97321db2020-09-28 23:35:08 -0600616 current += dmar->header.length;
617 current = acpi_align_current(current);
618 acpi_add_table(rsdp, dmar);
619 }
620
Tim Chu5c196402022-12-13 12:09:44 +0000621 if (CONFIG(SOC_INTEL_HAS_CXL)) {
622 /* CEDT: CXL Early Discovery Table */
623 if (get_cxl_node_count() > 0) {
624 current = ALIGN_UP(current, 8);
625 printk(BIOS_DEBUG, "ACPI: * CEDT at %lx\n", current);
626 cedt = (acpi_cedt_t *)current;
627 acpi_create_cedt(cedt, acpi_fill_cedt);
628 current += cedt->header.length;
629 acpi_add_table(rsdp, cedt);
630 }
631 }
632
633 if (CONFIG(SOC_ACPI_HEST)) {
634 printk(BIOS_DEBUG, "ACPI: * HEST at %lx\n", current);
Rocky Phagurad4db36e2021-04-03 08:49:32 -0700635 current = hest_create(current, rsdp);
Tim Chu5c196402022-12-13 12:09:44 +0000636 }
Rocky Phagurad4db36e2021-04-03 08:49:32 -0700637
Marc Jones97321db2020-09-28 23:35:08 -0600638 return current;
639}