blob: bcfb4da92d75fb592b8ca6e9efeb2b0752d781c1 [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>
Naresh Solanki559f9ed2023-01-20 19:38:07 +01007#include <cpu/x86/lapic.h>
Arthur Heymans36e6f9b2022-10-27 15:11:05 +02008#include <commonlib/sort.h>
Marc Jones97321db2020-09-28 23:35:08 -06009#include <device/mmio.h>
10#include <device/pci.h>
Tim Chu5c196402022-12-13 12:09:44 +000011#include <device/pciexp.h>
Patrick Rudolph425e4212024-02-15 16:30:16 +010012#include <device/pci_ids.h>
Marc Jones97321db2020-09-28 23:35:08 -060013#include <soc/acpi.h>
Patrick Rudolph425e4212024-02-15 16:30:16 +010014#include <soc/chip_common.h>
Rocky Phagurad4db36e2021-04-03 08:49:32 -070015#include <soc/hest.h>
Marc Jones97321db2020-09-28 23:35:08 -060016#include <soc/iomap.h>
Tim Chu5c196402022-12-13 12:09:44 +000017#include <soc/numa.h>
Marc Jones97321db2020-09-28 23:35:08 -060018#include <soc/pci_devs.h>
19#include <soc/soc_util.h>
Marc Jones18960ce2020-11-02 12:41:12 -070020#include <soc/util.h>
Arthur Heymans695dd292020-11-12 21:05:09 +010021#include <intelblocks/p2sb.h>
Marc Jones97321db2020-09-28 23:35:08 -060022#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,
Shuo Liua5bdf8e2024-02-20 01:06:10 +0800101 is_memtype_reserved(mem_element->Type));
Marc Jones97321db2020-09-28 23:35:08 -0600102
103 assert(mmap_index < MAX_ACPI_MEMORY_AFFINITY_COUNT);
104
105 /* skip reserved memory region */
Shuo Liua5bdf8e2024-02-20 01:06:10 +0800106 if (is_memtype_reserved(mem_element->Type))
Marc Jones97321db2020-09-28 23:35:08 -0600107 continue;
Shuo Liua5bdf8e2024-02-20 01:06:10 +0800108 /* skip all non processor attached memory regions */
109 if (CONFIG(SOC_INTEL_HAS_CXL) &&
110 (!is_memtype_processor_attached(mem_element->Type)))
Tim Chu5c196402022-12-13 12:09:44 +0000111 continue;
Marc Jones97321db2020-09-28 23:35:08 -0600112
113 /* skip if this address is already added */
114 bool skip = false;
115 for (int idx = 0; idx < mmap_index; ++idx) {
116 uint64_t base_addr = ((uint64_t)srat_mem[idx].base_address_high << 32) +
117 srat_mem[idx].base_address_low;
118 if (addr == base_addr) {
119 skip = true;
120 break;
121 }
122 }
123 if (skip)
124 continue;
125
126 srat_mem[mmap_index].type = 1; /* Memory affinity structure */
127 srat_mem[mmap_index].length = sizeof(acpi_srat_mem_t);
Elyes Haouas9018dee2022-11-18 15:07:33 +0100128 srat_mem[mmap_index].base_address_low = (uint32_t)(addr & 0xffffffff);
129 srat_mem[mmap_index].base_address_high = (uint32_t)(addr >> 32);
130 srat_mem[mmap_index].length_low = (uint32_t)(size & 0xffffffff);
131 srat_mem[mmap_index].length_high = (uint32_t)(size >> 32);
Marc Jones97321db2020-09-28 23:35:08 -0600132 srat_mem[mmap_index].proximity_domain = mem_element->SocketId;
Shuo Liu3108ba52022-07-05 22:56:28 +0800133 srat_mem[mmap_index].flags = ACPI_SRAT_MEMORY_ENABLED;
Shuo Liua5bdf8e2024-02-20 01:06:10 +0800134 if (is_memtype_non_volatile(mem_element->Type))
Shuo Liu3108ba52022-07-05 22:56:28 +0800135 srat_mem[mmap_index].flags |= ACPI_SRAT_MEMORY_NONVOLATILE;
Marc Jones97321db2020-09-28 23:35:08 -0600136 ++mmap_index;
137 }
138
139 return mmap_index;
140}
141
142static unsigned long acpi_fill_srat(unsigned long current)
143{
144 acpi_srat_mem_t srat_mem[MAX_ACPI_MEMORY_AFFINITY_COUNT];
145 unsigned int mem_count;
146
147 /* create all subtables for processors */
148 current = acpi_create_srat_lapics(current);
149
Naresh Solanki9fd5c692023-05-22 16:47:47 +0200150 memset(srat_mem, 0, sizeof(srat_mem));
Marc Jones97321db2020-09-28 23:35:08 -0600151 mem_count = get_srat_memory_entries(srat_mem);
152 for (int i = 0; i < mem_count; ++i) {
153 printk(BIOS_DEBUG, "adding srat memory %d entry length: %d, addr: 0x%x%x, "
154 "length: 0x%x%x, proximity_domain: %d, flags: %x\n",
155 i, srat_mem[i].length,
156 srat_mem[i].base_address_high, srat_mem[i].base_address_low,
157 srat_mem[i].length_high, srat_mem[i].length_low,
158 srat_mem[i].proximity_domain, srat_mem[i].flags);
159 memcpy((acpi_srat_mem_t *)current, &srat_mem[i], sizeof(srat_mem[i]));
160 current += srat_mem[i].length;
161 }
162
Tim Chu5c196402022-12-13 12:09:44 +0000163 if (CONFIG(SOC_INTEL_HAS_CXL))
164 current = cxl_fill_srat(current);
165
Marc Jones97321db2020-09-28 23:35:08 -0600166 return current;
167}
168
Tim Chu5c196402022-12-13 12:09:44 +0000169#if CONFIG(SOC_INTEL_SAPPHIRERAPIDS_SP)
170/*
171Because pds.num_pds comes from spr/numa.c function fill_pds().
172pds.num_pds = soc_get_num_cpus() + get_cxl_node_count().
173*/
174/* SPR-SP platform has Generic Initiator domain in addition to processor domain */
175static unsigned long acpi_fill_slit(unsigned long current)
176{
177 uint8_t *p = (uint8_t *)current;
178 /* According to table 5.60 of ACPI 6.4 spec, "Number of System Localities" field takes
179 up 8 bytes. Following that, each matrix entry takes up 1 byte. */
180 memset(p, 0, 8 + pds.num_pds * pds.num_pds);
181 *p = (uint8_t)pds.num_pds;
182 p += 8;
183
184 for (int i = 0; i < pds.num_pds; i++) {
185 for (int j = 0; j < pds.num_pds; j++)
186 p[i * pds.num_pds + j] = pds.pds[i].distances[j];
187 }
188
189 current += 8 + pds.num_pds * pds.num_pds;
190 return current;
191}
192#else
Marc Jones97321db2020-09-28 23:35:08 -0600193static unsigned long acpi_fill_slit(unsigned long current)
194{
Marc Jones70907b02020-10-28 17:00:31 -0600195 unsigned int nodes = soc_get_num_cpus();
Marc Jones97321db2020-09-28 23:35:08 -0600196
197 uint8_t *p = (uint8_t *)current;
198 memset(p, 0, 8 + nodes * nodes);
199 *p = (uint8_t)nodes;
200 p += 8;
201
202 /* this assumes fully connected socket topology */
203 for (int i = 0; i < nodes; i++) {
204 for (int j = 0; j < nodes; j++) {
205 if (i == j)
206 p[i*nodes+j] = 10;
207 else
208 p[i*nodes+j] = 16;
209 }
210 }
211
212 current += 8 + nodes * nodes;
213 return current;
214}
Tim Chu5c196402022-12-13 12:09:44 +0000215#endif
Marc Jones97321db2020-09-28 23:35:08 -0600216
217/*
Marc Jones97321db2020-09-28 23:35:08 -0600218 * This function adds PCIe bridge device entry in DMAR table. If it is called
219 * in the context of ATSR subtable, it adds ATSR subtable when it is first called.
220 */
221static unsigned long acpi_create_dmar_ds_pci_br_for_port(unsigned long current,
Tim Chu5c196402022-12-13 12:09:44 +0000222 const struct device *bridge_dev,
223 uint32_t pcie_seg,
224 bool is_atsr, bool *first)
Marc Jones97321db2020-09-28 23:35:08 -0600225{
Arthur Heymans7fcd4d52023-08-24 15:12:19 +0200226 const uint32_t bus = bridge_dev->upstream->secondary;
Tim Chu5c196402022-12-13 12:09:44 +0000227 const uint32_t dev = PCI_SLOT(bridge_dev->path.pci.devfn);
228 const uint32_t func = PCI_FUNC(bridge_dev->path.pci.devfn);
Marc Jones97321db2020-09-28 23:35:08 -0600229
Tim Chu5c196402022-12-13 12:09:44 +0000230 if (bus == 0)
231 return current;
Marc Jones97321db2020-09-28 23:35:08 -0600232
233 unsigned long atsr_size = 0;
234 unsigned long pci_br_size = 0;
Tim Chu5c196402022-12-13 12:09:44 +0000235 if (is_atsr == true && first && *first == true) {
Marc Jones97321db2020-09-28 23:35:08 -0600236 printk(BIOS_DEBUG, "[Root Port ATS Capability] Flags: 0x%x, "
237 "PCI Segment Number: 0x%x\n", 0, pcie_seg);
238 atsr_size = acpi_create_dmar_atsr(current, 0, pcie_seg);
239 *first = false;
240 }
241
Patrick Rudolph686d8102024-03-12 19:34:27 +0100242 printk(BIOS_DEBUG, " [PCI Bridge Device] %s\n", dev_path(bridge_dev));
Marc Jones97321db2020-09-28 23:35:08 -0600243 pci_br_size = acpi_create_dmar_ds_pci_br(current + atsr_size, bus, dev, func);
244
245 return (atsr_size + pci_br_size);
246}
247
Shuo Liu86271122024-03-12 02:02:05 +0800248static unsigned long acpi_create_drhd(unsigned long current, struct device *iommu,
249 const IIO_UDS *hob)
Marc Jones97321db2020-09-28 23:35:08 -0600250{
Marc Jones97321db2020-09-28 23:35:08 -0600251 unsigned long tmp = current;
Shuo Liu6995efb2024-03-08 19:15:28 +0800252
Shuo Liu6747acb2024-03-08 19:15:28 +0800253 struct resource *resource;
254 resource = probe_resource(iommu, VTD_BAR_CSR);
255 if (!resource)
256 return current;
257
258 uint32_t reg_base = resource->base;
Martin L Roth092a1392024-03-13 17:03:13 +0000259 if (!reg_base)
260 return current;
261
Shuo Liu6747acb2024-03-08 19:15:28 +0800262 const uint32_t bus = iommu->upstream->secondary;
263 uint32_t pcie_seg = iommu->upstream->segment_group;
Shuo Liu86271122024-03-12 02:02:05 +0800264 int socket = iio_pci_domain_socket_from_dev(iommu);
265 int stack = iio_pci_domain_stack_from_dev(iommu);
Shuo Liu6747acb2024-03-08 19:15:28 +0800266
267 printk(BIOS_SPEW, "%s socket: %d, stack: %d, bus: 0x%x, pcie_seg: 0x%x, reg_base: 0x%x\n",
268 __func__, socket, stack, bus, pcie_seg, reg_base);
269
Arthur Heymansa1c4ad32021-05-04 18:40:28 +0200270 // Add DRHD Hardware Unit
Tim Chu5c196402022-12-13 12:09:44 +0000271
Shuo Liu86271122024-03-12 02:02:05 +0800272 if (is_dev_on_domain0(iommu)) {
Arthur Heymansa1c4ad32021-05-04 18:40:28 +0200273 printk(BIOS_DEBUG, "[Hardware Unit Definition] Flags: 0x%x, PCI Segment Number: 0x%x, "
274 "Register Base Address: 0x%x\n",
275 DRHD_INCLUDE_PCI_ALL, pcie_seg, reg_base);
276 current += acpi_create_dmar_drhd(current, DRHD_INCLUDE_PCI_ALL,
277 pcie_seg, reg_base);
278 } else {
279 printk(BIOS_DEBUG, "[Hardware Unit Definition] Flags: 0x%x, PCI Segment Number: 0x%x, "
280 "Register Base Address: 0x%x\n", 0, pcie_seg, reg_base);
281 current += acpi_create_dmar_drhd(current, 0, pcie_seg, reg_base);
282 }
283
Marc Jones97321db2020-09-28 23:35:08 -0600284 // Add PCH IOAPIC
Shuo Liu86271122024-03-12 02:02:05 +0800285 if (is_dev_on_domain0(iommu)) {
Arthur Heymans6e425e12020-11-12 21:12:05 +0100286 union p2sb_bdf ioapic_bdf = p2sb_get_ioapic_bdf();
Marc Jones97321db2020-09-28 23:35:08 -0600287 printk(BIOS_DEBUG, " [IOAPIC Device] Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
Felix Held0d192892024-02-06 16:55:29 +0100288 "PCI Path: 0x%x, 0x%x\n", get_ioapic_id(IO_APIC_ADDR), ioapic_bdf.bus,
Patrick Rudolph57ddd682023-02-28 09:17:40 +0100289 ioapic_bdf.dev, ioapic_bdf.fn);
290 current += acpi_create_dmar_ds_ioapic_from_hw(current,
291 IO_APIC_ADDR, ioapic_bdf.bus, ioapic_bdf.dev, ioapic_bdf.fn);
Marc Jones97321db2020-09-28 23:35:08 -0600292 }
293
Tim Chu5c196402022-12-13 12:09:44 +0000294/* SPR has no per stack IOAPIC or CBDMA devices */
295#if CONFIG(SOC_INTEL_SKYLAKE_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
296 uint32_t enum_id;
Marc Jones97321db2020-09-28 23:35:08 -0600297 // Add IOAPIC entry
Arthur Heymansa1cc5572020-11-06 12:53:33 +0100298 enum_id = soc_get_iio_ioapicid(socket, stack);
Marc Jones97321db2020-09-28 23:35:08 -0600299 printk(BIOS_DEBUG, " [IOAPIC Device] Enumeration ID: 0x%x, PCI Bus Number: 0x%x, "
300 "PCI Path: 0x%x, 0x%x\n", enum_id, bus, APIC_DEV_NUM, APIC_FUNC_NUM);
301 current += acpi_create_dmar_ds_ioapic(current, enum_id, bus,
302 APIC_DEV_NUM, APIC_FUNC_NUM);
303
304 // Add CBDMA devices for CSTACK
305 if (socket != 0 && stack == CSTACK) {
306 for (int cbdma_func_id = 0; cbdma_func_id < 8; ++cbdma_func_id) {
Patrick Rudolph686d8102024-03-12 19:34:27 +0100307 printk(BIOS_DEBUG, " [PCI Endpoint Device] "
Marc Jones97321db2020-09-28 23:35:08 -0600308 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
Patrick Rudolph686d8102024-03-12 19:34:27 +0100309 bus, CBDMA_DEV_NUM, cbdma_func_id);
Marc Jones97321db2020-09-28 23:35:08 -0600310 current += acpi_create_dmar_ds_pci(current,
311 bus, CBDMA_DEV_NUM, cbdma_func_id);
312 }
313 }
Tim Chu5c196402022-12-13 12:09:44 +0000314#endif
Marc Jones97321db2020-09-28 23:35:08 -0600315
316 // Add PCIe Ports
Shuo Liu86271122024-03-12 02:02:05 +0800317 if (!is_dev_on_domain0(iommu)) {
Shuo Liu271ee072024-03-29 00:42:28 +0800318 const struct device *domain = dev_get_domain(iommu);
Shuo Liu6747acb2024-03-08 19:15:28 +0800319 struct device *dev = NULL;
320 while ((dev = dev_bus_each_child(domain->downstream, dev)))
Tim Chu5c196402022-12-13 12:09:44 +0000321 if ((dev->hdr_type & 0x7f) == PCI_HEADER_TYPE_BRIDGE)
322 current +=
323 acpi_create_dmar_ds_pci_br_for_port(
324 current, dev, pcie_seg, false, NULL);
Marc Jones97321db2020-09-28 23:35:08 -0600325
Tim Chu5c196402022-12-13 12:09:44 +0000326#if CONFIG(SOC_INTEL_SKYLAKE_SP) || CONFIG(SOC_INTEL_COOPERLAKE_SP)
Marc Jones97321db2020-09-28 23:35:08 -0600327 // Add VMD
328 if (hob->PlatformData.VMDStackEnable[socket][stack] &&
329 stack >= PSTACK0 && stack <= PSTACK2) {
Patrick Rudolph686d8102024-03-12 19:34:27 +0100330 printk(BIOS_DEBUG, " [PCI Endpoint Device] "
Marc Jones97321db2020-09-28 23:35:08 -0600331 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
Patrick Rudolph686d8102024-03-12 19:34:27 +0100332 bus, VMD_DEV_NUM, VMD_FUNC_NUM);
Marc Jones97321db2020-09-28 23:35:08 -0600333 current += acpi_create_dmar_ds_pci(current,
334 bus, VMD_DEV_NUM, VMD_FUNC_NUM);
335 }
Tim Chu5c196402022-12-13 12:09:44 +0000336#endif
Marc Jones97321db2020-09-28 23:35:08 -0600337 }
338
Shuo Liu08f1f052024-01-20 02:52:17 +0800339 // Add IOAT End Points (with memory resources. We don't report every End Point device.)
Shuo Liu6747acb2024-03-08 19:15:28 +0800340 if (CONFIG(HAVE_IOAT_DOMAINS) && is_dev_on_ioat_domain(iommu)) {
341 struct device *dev = NULL;
342 while ((dev = dev_find_all_devices_on_stack(socket, stack,
343 XEONSP_VENDOR_MAX, XEONSP_DEVICE_MAX, 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 b = dev->upstream->secondary;
350 const uint32_t d = PCI_SLOT(dev->path.pci.devfn);
351 const uint32_t f = PCI_FUNC(dev->path.pci.devfn);
Patrick Rudolph686d8102024-03-12 19:34:27 +0100352 printk(BIOS_DEBUG, " [PCIE Endpoint Device] %s\n", dev_path(dev));
Shuo Liu6747acb2024-03-08 19:15:28 +0800353 current += acpi_create_dmar_ds_pci(current, b, d, f);
Tim Chu5c196402022-12-13 12:09:44 +0000354 }
Tim Chu5c196402022-12-13 12:09:44 +0000355 }
Tim Chu5c196402022-12-13 12:09:44 +0000356
Marc Jones97321db2020-09-28 23:35:08 -0600357 // Add HPET
Shuo Liu86271122024-03-12 02:02:05 +0800358 if (is_dev_on_domain0(iommu)) {
Elyes Haouas167b7fcd2022-12-11 10:38:35 +0100359 uint16_t hpet_capid = read16p(HPET_BASE_ADDRESS);
Marc Jones97321db2020-09-28 23:35:08 -0600360 uint16_t num_hpets = (hpet_capid >> 0x08) & 0x1F; // Bits [8:12] has hpet count
361 printk(BIOS_SPEW, "%s hpet_capid: 0x%x, num_hpets: 0x%x\n",
362 __func__, hpet_capid, num_hpets);
363 //BIT 15
364 if (num_hpets && (num_hpets != 0x1f) &&
Elyes Haouas167b7fcd2022-12-11 10:38:35 +0100365 (read32p(HPET_BASE_ADDRESS + 0x100) & (0x00008000))) {
Arthur Heymans695dd292020-11-12 21:05:09 +0100366 union p2sb_bdf hpet_bdf = p2sb_get_hpet_bdf();
Marc Jones97321db2020-09-28 23:35:08 -0600367 printk(BIOS_DEBUG, " [Message-capable HPET Device] Enumeration ID: 0x%x, "
368 "PCI Bus Number: 0x%x, PCI Path: 0x%x, 0x%x\n",
Arthur Heymans695dd292020-11-12 21:05:09 +0100369 0, hpet_bdf.bus, hpet_bdf.dev, hpet_bdf.fn);
370 current += acpi_create_dmar_ds_msi_hpet(current, 0, hpet_bdf.bus,
371 hpet_bdf.dev, hpet_bdf.fn);
Marc Jones97321db2020-09-28 23:35:08 -0600372 }
373 }
374
375 acpi_dmar_drhd_fixup(tmp, current);
376
377 return current;
378}
379
Patrick Rudolphabc27442024-03-12 14:48:16 +0100380static unsigned long acpi_create_atsr(unsigned long current)
Marc Jones97321db2020-09-28 23:35:08 -0600381{
Patrick Rudolph425e4212024-02-15 16:30:16 +0100382 struct device *child, *dev;
383 struct resource *resource;
384
385 /*
386 * The assumption made here is that the host bridges on a socket share the
387 * PCI segment group and thus only one ATSR header needs to be emitted for
388 * a single socket.
389 * This is easier than to sort the host bridges by PCI segment group first
390 * and then generate one ATSR header for every new segment.
391 */
Patrick Rudolphabc27442024-03-12 14:48:16 +0100392 for (int socket = 0; socket < CONFIG_MAX_SOCKET; ++socket) {
Patrick Rudolphac028572023-07-14 17:44:33 +0200393 if (!soc_cpu_is_enabled(socket))
394 continue;
Marc Jones97321db2020-09-28 23:35:08 -0600395 unsigned long tmp = current;
396 bool first = true;
Marc Jones97321db2020-09-28 23:35:08 -0600397
Patrick Rudolph425e4212024-02-15 16:30:16 +0100398 dev = NULL;
399 while ((dev = dev_find_device(PCI_VID_INTEL, MMAP_VTD_CFG_REG_DEVID, dev))) {
400 /* Only add devices for the current socket */
401 if (iio_pci_domain_socket_from_dev(dev) != socket)
Marc Jones97321db2020-09-28 23:35:08 -0600402 continue;
Patrick Rudolph425e4212024-02-15 16:30:16 +0100403 /* See if there is a resource with the appropriate index. */
404 resource = probe_resource(dev, VTD_BAR_CSR);
405 if (!resource)
406 continue;
407 int stack = iio_pci_domain_stack_from_dev(dev);
408
409 uint64_t vtd_mmio_cap = read64(res2mmio(resource, VTD_EXT_CAP_LOW, 0));
410 printk(BIOS_SPEW, "%s socket: %d, stack: %d, bus: 0x%x, vtd_base: %p, "
Marc Jones97321db2020-09-28 23:35:08 -0600411 "vtd_mmio_cap: 0x%llx\n",
Patrick Rudolph425e4212024-02-15 16:30:16 +0100412 __func__, socket, stack, dev->upstream->secondary,
413 res2mmio(resource, 0, 0), vtd_mmio_cap);
Marc Jones97321db2020-09-28 23:35:08 -0600414
415 // ATSR is applicable only for platform supporting device IOTLBs
416 // through the VT-d extended capability register
417 assert(vtd_mmio_cap != 0xffffffffffffffff);
418 if ((vtd_mmio_cap & 0x4) == 0) // BIT 2
419 continue;
420
Patrick Rudolph425e4212024-02-15 16:30:16 +0100421 if (dev->upstream->secondary == 0 && dev->upstream->segment_group == 0)
Tim Chu5c196402022-12-13 12:09:44 +0000422 continue;
423
Patrick Rudolph425e4212024-02-15 16:30:16 +0100424 for (child = dev->upstream->children; child; child = child->sibling) {
425 if ((child->hdr_type & 0x7f) != PCI_HEADER_TYPE_BRIDGE)
426 continue;
427 current +=
Tim Chu5c196402022-12-13 12:09:44 +0000428 acpi_create_dmar_ds_pci_br_for_port(
Patrick Rudolph425e4212024-02-15 16:30:16 +0100429 current, child, child->upstream->segment_group, true, &first);
Marc Jones97321db2020-09-28 23:35:08 -0600430 }
431 }
432 if (tmp != current)
433 acpi_dmar_atsr_fixup(tmp, current);
434 }
435
436 return current;
437}
438
439static unsigned long acpi_create_rmrr(unsigned long current)
440{
Marc Jones97321db2020-09-28 23:35:08 -0600441 return current;
442}
443
444static unsigned long acpi_create_rhsa(unsigned long current)
445{
Patrick Rudolph425e4212024-02-15 16:30:16 +0100446 struct device *dev = NULL;
447 struct resource *resource;
448 int socket;
Marc Jones97321db2020-09-28 23:35:08 -0600449
Patrick Rudolph425e4212024-02-15 16:30:16 +0100450 while ((dev = dev_find_device(PCI_VID_INTEL, MMAP_VTD_CFG_REG_DEVID, dev))) {
451 /* See if there is a resource with the appropriate index. */
452 resource = probe_resource(dev, VTD_BAR_CSR);
453 if (!resource)
Patrick Rudolphac028572023-07-14 17:44:33 +0200454 continue;
Patrick Rudolphac028572023-07-14 17:44:33 +0200455
Patrick Rudolph425e4212024-02-15 16:30:16 +0100456 socket = iio_pci_domain_socket_from_dev(dev);
Marc Jones97321db2020-09-28 23:35:08 -0600457
Patrick Rudolph425e4212024-02-15 16:30:16 +0100458 printk(BIOS_DEBUG, "[Remapping Hardware Static Affinity] Base Address: %p, "
459 "Proximity Domain: 0x%x\n", res2mmio(resource, 0, 0), socket);
460 current += acpi_create_dmar_rhsa(current, (uintptr_t)res2mmio(resource, 0, 0), socket);
Marc Jones97321db2020-09-28 23:35:08 -0600461 }
462
463 return current;
464}
465
Shuo Liua0b7c062024-03-06 00:24:02 +0800466static unsigned long xeonsp_create_satc(unsigned long current, struct device *domain)
Tim Chu5c196402022-12-13 12:09:44 +0000467{
Shuo Liua0b7c062024-03-06 00:24:02 +0800468 struct device *dev = NULL;
469 while ((dev = dev_bus_each_child(domain->downstream, dev))) {
470 if (pciexp_find_extended_cap(dev, PCIE_EXT_CAP_ID_ATS, 0)) {
471 const uint32_t b = domain->downstream->secondary;
472 const uint32_t d = PCI_SLOT(dev->path.pci.devfn);
473 const uint32_t f = PCI_FUNC(dev->path.pci.devfn);
Patrick Rudolph686d8102024-03-12 19:34:27 +0100474 printk(BIOS_DEBUG, " [SATC Endpoint Device] %s\n", dev_path(dev));
Shuo Liua0b7c062024-03-06 00:24:02 +0800475 current += acpi_create_dmar_ds_pci(current, b, d, f);
Tim Chu5c196402022-12-13 12:09:44 +0000476 }
477 }
478 return current;
479}
480
481/* SoC Integrated Address Translation Cache */
Shuo Liua0b7c062024-03-06 00:24:02 +0800482static unsigned long acpi_create_satc(unsigned long current)
Tim Chu5c196402022-12-13 12:09:44 +0000483{
Patrick Rudolphd425e882024-03-08 09:49:15 +0100484 unsigned long tmp = current, seg = ~0;
485 struct device *dev;
Tim Chu5c196402022-12-13 12:09:44 +0000486
Patrick Rudolphd425e882024-03-08 09:49:15 +0100487 /*
488 * Best case only PCI segment group count SATC headers are emitted, worst
489 * case for every SATC entry a new SATC header is being generated.
490 *
491 * The assumption made here is that the host bridges on a socket share the
492 * PCI segment group and thus only one SATC header needs to be emitted for
493 * a single socket.
494 * This is easier than to sort the host bridges by PCI segment group first
495 * and then generate one SATC header for every new segment.
496 *
497 * With this assumption the best case scenario should always be used.
498 */
499 for (int socket = 0; socket < CONFIG_MAX_SOCKET; ++socket) {
500 if (!soc_cpu_is_enabled(socket))
501 continue;
Tim Chu5c196402022-12-13 12:09:44 +0000502
Patrick Rudolphd425e882024-03-08 09:49:15 +0100503 dev = NULL;
504 while ((dev = dev_find_path(dev, DEVICE_PATH_DOMAIN))) {
505 /* Only add devices for the current socket */
506 if (iio_pci_domain_socket_from_dev(dev) != socket)
507 continue;
Tim Chu5c196402022-12-13 12:09:44 +0000508
Patrick Rudolphd425e882024-03-08 09:49:15 +0100509 if (seg != dev->downstream->segment_group) {
510 // Close previous header
511 if (tmp != current)
512 acpi_dmar_satc_fixup(tmp, current);
513
514 seg = dev->downstream->segment_group;
515 tmp = current;
516 printk(BIOS_DEBUG, "[SATC Segment Header] "
517 "Flags: 0x%x, PCI segment group: %lx\n", 0, seg);
518 // Add the SATC header
519 current += acpi_create_dmar_satc(current, 0, seg);
520 }
521 current = xeonsp_create_satc(current, dev);
522 }
523 }
524 if (tmp != current)
525 acpi_dmar_satc_fixup(tmp, current);
526
Tim Chu5c196402022-12-13 12:09:44 +0000527 return current;
528}
Tim Chu5c196402022-12-13 12:09:44 +0000529
Marc Jones97321db2020-09-28 23:35:08 -0600530static unsigned long acpi_fill_dmar(unsigned long current)
531{
Arthur Heymans83b26222020-11-06 11:50:55 +0100532 const IIO_UDS *hob = get_iio_uds();
Marc Jones97321db2020-09-28 23:35:08 -0600533
Shuo Liu86271122024-03-12 02:02:05 +0800534 // DRHD - iommu0 must be the last DRHD entry.
535 struct device *dev = NULL;
536 struct device *iommu0 = NULL;
537 while ((dev = dev_find_device(PCI_VID_INTEL, MMAP_VTD_CFG_REG_DEVID, dev))) {
Shuo Liu271ee072024-03-29 00:42:28 +0800538 if (is_domain0(dev_get_domain(dev))) {
Shuo Liu86271122024-03-12 02:02:05 +0800539 iommu0 = dev;
Patrick Rudolphac028572023-07-14 17:44:33 +0200540 continue;
Shuo Liu86271122024-03-12 02:02:05 +0800541 }
542 current = acpi_create_drhd(current, dev, hob);
Marc Jones97321db2020-09-28 23:35:08 -0600543 }
Shuo Liu86271122024-03-12 02:02:05 +0800544 assert(iommu0);
545 current = acpi_create_drhd(current, iommu0, hob);
Marc Jones97321db2020-09-28 23:35:08 -0600546
547 // RMRR
548 current = acpi_create_rmrr(current);
549
550 // Root Port ATS Capability
Patrick Rudolphabc27442024-03-12 14:48:16 +0100551 current = acpi_create_atsr(current);
Marc Jones97321db2020-09-28 23:35:08 -0600552
553 // RHSA
554 current = acpi_create_rhsa(current);
555
Tim Chu5c196402022-12-13 12:09:44 +0000556 // SATC
Shuo Liua0b7c062024-03-06 00:24:02 +0800557 current = acpi_create_satc(current);
Tim Chu5c196402022-12-13 12:09:44 +0000558
Marc Jones97321db2020-09-28 23:35:08 -0600559 return current;
560}
561
Tim Chu5c196402022-12-13 12:09:44 +0000562unsigned long northbridge_write_acpi_tables(const struct device *device, unsigned long current,
Marc Jones97321db2020-09-28 23:35:08 -0600563 struct acpi_rsdp *rsdp)
564{
Shuo Liu255f9272023-03-29 20:14:11 +0800565 /* Only write uncore ACPI tables for domain0 */
566 if (device->path.domain.domain != 0)
567 return current;
568
Marc Jones97321db2020-09-28 23:35:08 -0600569 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}