blob: 6c1828aba4c3aa48018eed87f8191ef5bf8ea0aa [file] [log] [blame]
Patrick Georgi11f00792020-03-04 15:10:45 +01001/* SPDX-License-Identifier: GPL-2.0-only */
Stefan Reinauer688b3852004-01-28 16:56:14 +00002/*
Martin Roth20bbd812019-08-30 21:09:37 -06003 * coreboot ACPI Table support
Stefan Reinauer777224c2005-01-19 14:06:41 +00004 */
5
Stefan Reinauer14e22772010-04-27 06:56:47 +00006/*
Stefan Reinauer777224c2005-01-19 14:06:41 +00007 * Each system port implementing ACPI has to provide two functions:
Stefan Reinauer14e22772010-04-27 06:56:47 +00008 *
Stefan Reinauer777224c2005-01-19 14:06:41 +00009 * write_acpi_tables()
10 * acpi_dump_apics()
Stefan Reinauer14e22772010-04-27 06:56:47 +000011 *
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000012 * See Kontron 986LCD-M port for a good example of an ACPI implementation
13 * in coreboot.
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000014 */
Stefan Reinauer688b3852004-01-28 16:56:14 +000015
16#include <console/console.h>
17#include <string.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070018#include <acpi/acpi.h>
19#include <acpi/acpi_ivrs.h>
20#include <acpi/acpigen.h>
Stefan Reinauer777224c2005-01-19 14:06:41 +000021#include <device/pci.h>
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000022#include <cbmem.h>
Elyes HAOUASe2d152c2019-06-21 07:06:50 +020023#include <commonlib/helpers.h>
Duncan Laurie11290c42012-10-03 19:07:05 -070024#include <cpu/cpu.h>
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +010025#include <cbfs.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010026#include <types.h>
Elyes HAOUAS26071aa2019-02-15 08:21:33 +010027#include <version.h>
Werner Zehdb561e62019-02-19 13:39:56 +010028#include <commonlib/sort.h>
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000029
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +020030static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp);
31
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000032u8 acpi_checksum(u8 *table, u32 length)
Stefan Reinauer688b3852004-01-28 16:56:14 +000033{
Uwe Hermann622824c2010-11-19 15:14:42 +000034 u8 ret = 0;
Stefan Reinauer688b3852004-01-28 16:56:14 +000035 while (length--) {
36 ret += *table;
37 table++;
38 }
Stefan Reinauera7648c22004-01-29 17:31:34 +000039 return -ret;
Stefan Reinauer688b3852004-01-28 16:56:14 +000040}
41
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000042/**
Uwe Hermann622824c2010-11-19 15:14:42 +000043 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
44 * and checksum.
Stefan Reinauer06feb882004-02-03 16:11:35 +000045 */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000046void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
Stefan Reinauer688b3852004-01-28 16:56:14 +000047{
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000048 int i, entries_num;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000049 acpi_rsdt_t *rsdt;
50 acpi_xsdt_t *xsdt = NULL;
51
Uwe Hermann622824c2010-11-19 15:14:42 +000052 /* The RSDT is mandatory... */
Stefan Reinauerdefee172015-06-18 01:11:19 -070053 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000054
Uwe Hermann622824c2010-11-19 15:14:42 +000055 /* ...while the XSDT is not. */
56 if (rsdp->xsdt_address)
Stefan Reinauerdefee172015-06-18 01:11:19 -070057 xsdt = (acpi_xsdt_t *)((uintptr_t)rsdp->xsdt_address);
Stefan Reinauer14e22772010-04-27 06:56:47 +000058
Uwe Hermann622824c2010-11-19 15:14:42 +000059 /* This should always be MAX_ACPI_TABLES. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000060 entries_num = ARRAY_SIZE(rsdt->entry);
Stefan Reinauer14e22772010-04-27 06:56:47 +000061
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000062 for (i = 0; i < entries_num; i++) {
Uwe Hermann622824c2010-11-19 15:14:42 +000063 if (rsdt->entry[i] == 0)
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000064 break;
Stefan Reinauer688b3852004-01-28 16:56:14 +000065 }
66
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000067 if (i >= entries_num) {
Uwe Hermann622824c2010-11-19 15:14:42 +000068 printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030069 "too many tables.\n");
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000070 return;
71 }
72
Uwe Hermann622824c2010-11-19 15:14:42 +000073 /* Add table to the RSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070074 rsdt->entry[i] = (uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000075
Uwe Hermann622824c2010-11-19 15:14:42 +000076 /* Fix RSDT length or the kernel will assume invalid entries. */
77 rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000078
Uwe Hermann622824c2010-11-19 15:14:42 +000079 /* Re-calculate checksum. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000080 rsdt->header.checksum = 0; /* Hope this won't get optimized away */
Uwe Hermann622824c2010-11-19 15:14:42 +000081 rsdt->header.checksum = acpi_checksum((u8 *)rsdt, rsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000082
Uwe Hermann622824c2010-11-19 15:14:42 +000083 /*
84 * And now the same thing for the XSDT. We use the same index as for
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000085 * now we want the XSDT and RSDT to always be in sync in coreboot.
86 */
87 if (xsdt) {
Uwe Hermann622824c2010-11-19 15:14:42 +000088 /* Add table to the XSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070089 xsdt->entry[i] = (u64)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000090
Uwe Hermann622824c2010-11-19 15:14:42 +000091 /* Fix XSDT length. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000092 xsdt->header.length = sizeof(acpi_header_t) +
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030093 (sizeof(u64) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000094
Uwe Hermann622824c2010-11-19 15:14:42 +000095 /* Re-calculate checksum. */
96 xsdt->header.checksum = 0;
97 xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030098 xsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000099 }
100
Uwe Hermann622824c2010-11-19 15:14:42 +0000101 printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300102 i + 1, entries_num, rsdt->header.length);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000103}
104
Uwe Hermann622824c2010-11-19 15:14:42 +0000105int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300106 u16 seg_nr, u8 start, u8 end)
Stefan Reinauer26d431a2009-01-20 19:17:51 +0000107{
Vladimir Serbinenko60fccdc2014-10-05 11:05:16 +0200108 memset(mmconfig, 0, sizeof(*mmconfig));
Rudolf Mareke6409f22007-11-03 12:50:26 +0000109 mmconfig->base_address = base;
110 mmconfig->base_reserved = 0;
111 mmconfig->pci_segment_group_number = seg_nr;
112 mmconfig->start_bus_number = start;
113 mmconfig->end_bus_number = end;
Uwe Hermann622824c2010-11-19 15:14:42 +0000114
115 return sizeof(acpi_mcfg_mmconfig_t);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000116}
117
Stefan Reinauer777224c2005-01-19 14:06:41 +0000118int acpi_create_madt_lapic(acpi_madt_lapic_t *lapic, u8 cpu, u8 apic)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000119{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530120 lapic->type = LOCAL_APIC; /* Local APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000121 lapic->length = sizeof(acpi_madt_lapic_t);
122 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
123 lapic->processor_id = cpu;
124 lapic->apic_id = apic;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000125
Uwe Hermann622824c2010-11-19 15:14:42 +0000126 return lapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000127}
128
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100129int acpi_create_madt_lx2apic(acpi_madt_lx2apic_t *lapic, u32 cpu, u32 apic)
130{
131 lapic->type = LOCAL_X2APIC; /* Local APIC structure */
132 lapic->reserved = 0;
133 lapic->length = sizeof(acpi_madt_lx2apic_t);
134 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
135 lapic->processor_id = cpu;
136 lapic->x2apic_id = apic;
137
138 return lapic->length;
139}
140
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000141unsigned long acpi_create_madt_lapics(unsigned long current)
142{
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100143 struct device *cpu;
Werner Zeh423adfb2019-03-06 09:31:02 +0100144 int index, apic_ids[CONFIG_MAX_CPUS] = {0}, num_cpus = 0;
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000145
Uwe Hermann622824c2010-11-19 15:14:42 +0000146 for (cpu = all_devices; cpu; cpu = cpu->next) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000147 if ((cpu->path.type != DEVICE_PATH_APIC) ||
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800148 (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER)) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000149 continue;
150 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000151 if (!cpu->enabled)
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000152 continue;
Werner Zehdb561e62019-02-19 13:39:56 +0100153 if (num_cpus >= ARRAY_SIZE(apic_ids))
154 break;
155 apic_ids[num_cpus++] = cpu->path.apic.apic_id;
156 }
Werner Zehfedb36e2019-03-12 07:07:50 +0100157 if (num_cpus > 1)
158 bubblesort(apic_ids, num_cpus, NUM_ASCENDING);
Werner Zehdb561e62019-02-19 13:39:56 +0100159 for (index = 0; index < num_cpus; index++) {
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100160 if (apic_ids[index] < 0xff)
161 current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current,
162 index, apic_ids[index]);
163 else
164 current += acpi_create_madt_lx2apic((acpi_madt_lx2apic_t *)current,
165 index, apic_ids[index]);
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000166 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000167
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000168 return current;
169}
170
Uwe Hermann622824c2010-11-19 15:14:42 +0000171int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300172 u32 gsi_base)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000173{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530174 ioapic->type = IO_APIC; /* I/O APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000175 ioapic->length = sizeof(acpi_madt_ioapic_t);
176 ioapic->reserved = 0x00;
177 ioapic->gsi_base = gsi_base;
178 ioapic->ioapic_id = id;
179 ioapic->ioapic_addr = addr;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000180
Uwe Hermann622824c2010-11-19 15:14:42 +0000181 return ioapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000182}
183
Stefan Reinauer777224c2005-01-19 14:06:41 +0000184int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
Stefan Reinauer06feb882004-02-03 16:11:35 +0000185 u8 bus, u8 source, u32 gsirq, u16 flags)
186{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530187 irqoverride->type = IRQ_SOURCE_OVERRIDE; /* Interrupt source override */
Uwe Hermann622824c2010-11-19 15:14:42 +0000188 irqoverride->length = sizeof(acpi_madt_irqoverride_t);
189 irqoverride->bus = bus;
190 irqoverride->source = source;
191 irqoverride->gsirq = gsirq;
192 irqoverride->flags = flags;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000193
Uwe Hermann622824c2010-11-19 15:14:42 +0000194 return irqoverride->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000195}
196
Stefan Reinauer777224c2005-01-19 14:06:41 +0000197int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300198 u16 flags, u8 lint)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000199{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530200 lapic_nmi->type = LOCAL_APIC_NMI; /* Local APIC NMI structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000201 lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
202 lapic_nmi->flags = flags;
203 lapic_nmi->processor_id = cpu;
204 lapic_nmi->lint = lint;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000205
Uwe Hermann622824c2010-11-19 15:14:42 +0000206 return lapic_nmi->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000207}
208
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100209int acpi_create_madt_lx2apic_nmi(acpi_madt_lx2apic_nmi_t *lapic_nmi, u32 cpu,
210 u16 flags, u8 lint)
211{
212 lapic_nmi->type = LOCAL_X2APIC_NMI; /* Local APIC NMI structure */
213 lapic_nmi->length = sizeof(acpi_madt_lx2apic_nmi_t);
214 lapic_nmi->flags = flags;
215 lapic_nmi->processor_id = cpu;
216 lapic_nmi->lint = lint;
217 lapic_nmi->reserved[0] = 0;
218 lapic_nmi->reserved[1] = 0;
219 lapic_nmi->reserved[2] = 0;
220
221 return lapic_nmi->length;
222}
223
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700224__weak uintptr_t cpu_get_lapic_addr(void)
225{
226 /*
227 * If an architecture does not support LAPIC, this weak implementation returns LAPIC
228 * addr as 0.
229 */
230 return 0;
231}
232
Stefan Reinauer777224c2005-01-19 14:06:41 +0000233void acpi_create_madt(acpi_madt_t *madt)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000234{
Uwe Hermann622824c2010-11-19 15:14:42 +0000235 acpi_header_t *header = &(madt->header);
236 unsigned long current = (unsigned long)madt + sizeof(acpi_madt_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000237
Stefan Reinauer06feb882004-02-03 16:11:35 +0000238 memset((void *)madt, 0, sizeof(acpi_madt_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000239
John Zhao2ba303e2019-05-28 16:48:14 -0700240 if (!header)
241 return;
242
Uwe Hermann622824c2010-11-19 15:14:42 +0000243 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000244 memcpy(header->signature, "APIC", 4);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000245 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000246 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000247 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000248
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100249 header->asl_compiler_revision = asl_revision;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000250 header->length = sizeof(acpi_madt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600251 header->revision = get_acpi_table_revision(MADT);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000252
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700253 madt->lapic_addr = cpu_get_lapic_addr();
Nico Huber9df72e02018-11-24 18:25:50 +0100254 if (CONFIG(ACPI_HAVE_PCAT_8259))
255 madt->flags |= 1;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000256
Stefan Reinauerf622d592005-11-26 16:56:05 +0000257 current = acpi_fill_madt(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000258
Uwe Hermann622824c2010-11-19 15:14:42 +0000259 /* (Re)calculate length and checksum. */
260 header->length = current - (unsigned long)madt;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000261
Uwe Hermann622824c2010-11-19 15:14:42 +0000262 header->checksum = acpi_checksum((void *)madt, header->length);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000263}
264
Uwe Hermann622824c2010-11-19 15:14:42 +0000265/* MCFG is defined in the PCI Firmware Specification 3.0. */
Rudolf Mareke6409f22007-11-03 12:50:26 +0000266void acpi_create_mcfg(acpi_mcfg_t *mcfg)
267{
Uwe Hermann622824c2010-11-19 15:14:42 +0000268 acpi_header_t *header = &(mcfg->header);
269 unsigned long current = (unsigned long)mcfg + sizeof(acpi_mcfg_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000270
Rudolf Mareke6409f22007-11-03 12:50:26 +0000271 memset((void *)mcfg, 0, sizeof(acpi_mcfg_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000272
John Zhao2ba303e2019-05-28 16:48:14 -0700273 if (!header)
274 return;
275
Uwe Hermann622824c2010-11-19 15:14:42 +0000276 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000277 memcpy(header->signature, "MCFG", 4);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000278 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000279 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000280 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000281
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100282 header->asl_compiler_revision = asl_revision;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000283 header->length = sizeof(acpi_mcfg_t);
Marc Jones93a51762018-08-22 18:57:24 -0600284 header->revision = get_acpi_table_revision(MCFG);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000285
286 current = acpi_fill_mcfg(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000287
Uwe Hermann622824c2010-11-19 15:14:42 +0000288 /* (Re)calculate length and checksum. */
289 header->length = current - (unsigned long)mcfg;
290 header->checksum = acpi_checksum((void *)mcfg, header->length);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000291}
292
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200293static void *get_tcpa_log(u32 *size)
294{
295 const struct cbmem_entry *ce;
296 const u32 tcpa_default_log_len = 0x10000;
297 void *lasa;
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200298 ce = cbmem_entry_find(CBMEM_ID_TCPA_TCG_LOG);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200299 if (ce) {
300 lasa = cbmem_entry_start(ce);
301 *size = cbmem_entry_size(ce);
302 printk(BIOS_DEBUG, "TCPA log found at %p\n", lasa);
303 return lasa;
304 }
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200305 lasa = cbmem_add(CBMEM_ID_TCPA_TCG_LOG, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200306 if (!lasa) {
307 printk(BIOS_ERR, "TCPA log creation failed\n");
308 return NULL;
309 }
310
311 printk(BIOS_DEBUG, "TCPA log created at %p\n", lasa);
Lee Leahy024b13d2017-03-16 13:41:11 -0700312 memset(lasa, 0, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200313
314 *size = tcpa_default_log_len;
315 return lasa;
316}
317
318static void acpi_create_tcpa(acpi_tcpa_t *tcpa)
319{
320 acpi_header_t *header = &(tcpa->header);
321 u32 tcpa_log_len;
322 void *lasa;
323
324 memset((void *)tcpa, 0, sizeof(acpi_tcpa_t));
325
326 lasa = get_tcpa_log(&tcpa_log_len);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700327 if (!lasa)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200328 return;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200329
John Zhao2ba303e2019-05-28 16:48:14 -0700330 if (!header)
331 return;
332
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200333 /* Fill out header fields. */
334 memcpy(header->signature, "TCPA", 4);
335 memcpy(header->oem_id, OEM_ID, 6);
336 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
337 memcpy(header->asl_compiler_id, ASLC, 4);
338
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100339 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200340 header->length = sizeof(acpi_tcpa_t);
Marc Jones93a51762018-08-22 18:57:24 -0600341 header->revision = get_acpi_table_revision(TCPA);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200342
343 tcpa->platform_class = 0;
344 tcpa->laml = tcpa_log_len;
Stefan Reinauerdefee172015-06-18 01:11:19 -0700345 tcpa->lasa = (uintptr_t) lasa;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200346
347 /* Calculate checksum. */
348 header->checksum = acpi_checksum((void *)tcpa, header->length);
349}
350
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100351static void *get_tpm2_log(u32 *size)
352{
353 const struct cbmem_entry *ce;
354 const u32 tpm2_default_log_len = 0x10000;
355 void *lasa;
356 ce = cbmem_entry_find(CBMEM_ID_TPM2_TCG_LOG);
357 if (ce) {
358 lasa = cbmem_entry_start(ce);
359 *size = cbmem_entry_size(ce);
360 printk(BIOS_DEBUG, "TPM2 log found at %p\n", lasa);
361 return lasa;
362 }
363 lasa = cbmem_add(CBMEM_ID_TPM2_TCG_LOG, tpm2_default_log_len);
364 if (!lasa) {
365 printk(BIOS_ERR, "TPM2 log creation failed\n");
366 return NULL;
367 }
368
369 printk(BIOS_DEBUG, "TPM2 log created at %p\n", lasa);
370 memset(lasa, 0, tpm2_default_log_len);
371
372 *size = tpm2_default_log_len;
373 return lasa;
374}
375
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200376static void acpi_create_tpm2(acpi_tpm2_t *tpm2)
377{
378 acpi_header_t *header = &(tpm2->header);
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100379 u32 tpm2_log_len;
380 void *lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200381
382 memset((void *)tpm2, 0, sizeof(acpi_tpm2_t));
383
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100384 /*
385 * Some payloads like SeaBIOS depend on log area to use TPM2.
386 * Get the memory size and address of TPM2 log area or initialize it.
387 */
388 lasa = get_tpm2_log(&tpm2_log_len);
389 if (!lasa)
390 tpm2_log_len = 0;
391
John Zhao2ba303e2019-05-28 16:48:14 -0700392 if (!header)
393 return;
394
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200395 /* Fill out header fields. */
396 memcpy(header->signature, "TPM2", 4);
397 memcpy(header->oem_id, OEM_ID, 6);
398 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
399 memcpy(header->asl_compiler_id, ASLC, 4);
400
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100401 header->asl_compiler_revision = asl_revision;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200402 header->length = sizeof(acpi_tpm2_t);
403 header->revision = get_acpi_table_revision(TPM2);
404
405 /* Hard to detect for coreboot. Just set it to 0 */
406 tpm2->platform_class = 0;
Christian Walter26e0d4c2019-07-14 15:47:23 +0200407 if (CONFIG(CRB_TPM)) {
408 /* Must be set to 7 for CRB Support */
409 tpm2->control_area = CONFIG_CRB_TPM_BASE_ADDRESS + 0x40;
410 tpm2->start_method = 7;
411 } else {
412 /* Must be set to 0 for FIFO interface support */
413 tpm2->control_area = 0;
414 tpm2->start_method = 6;
415 }
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200416 memset(tpm2->msp, 0, sizeof(tpm2->msp));
417
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100418 /* Fill the log area size and start address fields. */
419 tpm2->laml = tpm2_log_len;
420 tpm2->lasa = (uintptr_t) lasa;
421
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200422 /* Calculate checksum. */
423 header->checksum = acpi_checksum((void *)tpm2, header->length);
424}
425
Duncan Laurie37319032016-05-26 12:47:05 -0700426static void acpi_ssdt_write_cbtable(void)
427{
428 const struct cbmem_entry *cbtable;
429 uintptr_t base;
430 uint32_t size;
431
432 cbtable = cbmem_entry_find(CBMEM_ID_CBTABLE);
433 if (!cbtable)
434 return;
435 base = (uintptr_t)cbmem_entry_start(cbtable);
436 size = cbmem_entry_size(cbtable);
437
438 acpigen_write_device("CTBL");
439 acpigen_write_coreboot_hid(COREBOOT_ACPI_ID_CBTABLE);
440 acpigen_write_name_integer("_UID", 0);
David Wu5dff3962018-03-21 16:48:53 +0800441 acpigen_write_STA(ACPI_STATUS_DEVICE_HIDDEN_ON);
Duncan Laurie37319032016-05-26 12:47:05 -0700442 acpigen_write_name("_CRS");
443 acpigen_write_resourcetemplate_header();
444 acpigen_write_mem32fixed(0, base, size);
445 acpigen_write_resourcetemplate_footer();
446 acpigen_pop_len();
447}
448
Myles Watson3fe6b702009-10-09 20:13:43 +0000449void acpi_create_ssdt_generator(acpi_header_t *ssdt, const char *oem_table_id)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000450{
Uwe Hermann622824c2010-11-19 15:14:42 +0000451 unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
452
Rudolf Marek293b5f52009-02-01 18:35:15 +0000453 memset((void *)ssdt, 0, sizeof(acpi_header_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000454
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000455 memcpy(&ssdt->signature, "SSDT", 4);
Marc Jones93a51762018-08-22 18:57:24 -0600456 ssdt->revision = get_acpi_table_revision(SSDT);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000457 memcpy(&ssdt->oem_id, OEM_ID, 6);
458 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
459 ssdt->oem_revision = 42;
Uwe Hermann622824c2010-11-19 15:14:42 +0000460 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +0100461 ssdt->asl_compiler_revision = asl_revision;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000462 ssdt->length = sizeof(acpi_header_t);
463
Stefan Reinauer8dcd50b2009-03-06 17:24:29 +0000464 acpigen_set_current((char *) current);
Duncan Laurie37319032016-05-26 12:47:05 -0700465
466 /* Write object to declare coreboot tables */
467 acpi_ssdt_write_cbtable();
468
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200469 {
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100470 struct device *dev;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200471 for (dev = all_devices; dev; dev = dev->next)
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -0700472 if (dev->enabled && dev->ops && dev->ops->acpi_fill_ssdt)
Nico Huber68680dd2020-03-31 17:34:52 +0200473 dev->ops->acpi_fill_ssdt(dev);
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200474 current = (unsigned long) acpigen_get_current();
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200475 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000476
Uwe Hermann622824c2010-11-19 15:14:42 +0000477 /* (Re)calculate length and checksum. */
Rudolf Marek293b5f52009-02-01 18:35:15 +0000478 ssdt->length = current - (unsigned long)ssdt;
479 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
480}
481
Stefan Reinauerf622d592005-11-26 16:56:05 +0000482int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
483{
Myles Watson0b4c9f02009-03-10 18:06:47 +0000484 memset((void *)lapic, 0, sizeof(acpi_srat_lapic_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000485
Uwe Hermann622824c2010-11-19 15:14:42 +0000486 lapic->type = 0; /* Processor local APIC/SAPIC affinity structure */
487 lapic->length = sizeof(acpi_srat_lapic_t);
488 lapic->flags = (1 << 0); /* Enabled (the use of this structure). */
489 lapic->proximity_domain_7_0 = node;
490 /* TODO: proximity_domain_31_8, local SAPIC EID, clock domain. */
491 lapic->apic_id = apic;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000492
Uwe Hermann622824c2010-11-19 15:14:42 +0000493 return lapic->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000494}
495
Uwe Hermann622824c2010-11-19 15:14:42 +0000496int acpi_create_srat_mem(acpi_srat_mem_t *mem, u8 node, u32 basek, u32 sizek,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300497 u32 flags)
Stefan Reinauerf622d592005-11-26 16:56:05 +0000498{
Uwe Hermann622824c2010-11-19 15:14:42 +0000499 mem->type = 1; /* Memory affinity structure */
500 mem->length = sizeof(acpi_srat_mem_t);
501 mem->base_address_low = (basek << 10);
502 mem->base_address_high = (basek >> (32 - 10));
503 mem->length_low = (sizek << 10);
504 mem->length_high = (sizek >> (32 - 10));
505 mem->proximity_domain = node;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000506 mem->flags = flags;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000507
Uwe Hermann622824c2010-11-19 15:14:42 +0000508 return mem->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000509}
510
Uwe Hermann622824c2010-11-19 15:14:42 +0000511/* http://www.microsoft.com/whdc/system/sysinternals/sratdwn.mspx */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200512void acpi_create_srat(acpi_srat_t *srat,
513 unsigned long (*acpi_fill_srat)(unsigned long current))
Stefan Reinauerf622d592005-11-26 16:56:05 +0000514{
Uwe Hermann622824c2010-11-19 15:14:42 +0000515 acpi_header_t *header = &(srat->header);
516 unsigned long current = (unsigned long)srat + sizeof(acpi_srat_t);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000517
Uwe Hermann622824c2010-11-19 15:14:42 +0000518 memset((void *)srat, 0, sizeof(acpi_srat_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000519
John Zhao2ba303e2019-05-28 16:48:14 -0700520 if (!header)
521 return;
522
Uwe Hermann622824c2010-11-19 15:14:42 +0000523 /* Fill out header fields. */
524 memcpy(header->signature, "SRAT", 4);
525 memcpy(header->oem_id, OEM_ID, 6);
526 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
527 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000528
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100529 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000530 header->length = sizeof(acpi_srat_t);
Marc Jones93a51762018-08-22 18:57:24 -0600531 header->revision = get_acpi_table_revision(SRAT);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000532
Uwe Hermann622824c2010-11-19 15:14:42 +0000533 srat->resv = 1; /* Spec: Reserved to 1 for backwards compatibility. */
Stefan Reinauerf622d592005-11-26 16:56:05 +0000534
Uwe Hermann622824c2010-11-19 15:14:42 +0000535 current = acpi_fill_srat(current);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000536
Uwe Hermann622824c2010-11-19 15:14:42 +0000537 /* (Re)calculate length and checksum. */
538 header->length = current - (unsigned long)srat;
539 header->checksum = acpi_checksum((void *)srat, header->length);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000540}
541
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700542int acpi_create_hmat_mpda(acpi_hmat_mpda_t *mpda, u32 initiator, u32 memory)
543{
544 memset((void *)mpda, 0, sizeof(acpi_hmat_mpda_t));
545
546 mpda->type = 0; /* Memory Proximity Domain Attributes structure */
547 mpda->length = sizeof(acpi_hmat_mpda_t);
548 /*
549 * Proximity Domain for Attached Initiator field is valid.
550 * Bit 1 and bit 2 are reserved since HMAT revision 2.
551 */
552 mpda->flags = (1 << 0);
553 mpda->proximity_domain_initiator = initiator;
554 mpda->proximity_domain_memory = memory;
555
556 return mpda->length;
557}
558
559void acpi_create_hmat(acpi_hmat_t *hmat,
560 unsigned long (*acpi_fill_hmat)(unsigned long current))
561{
562 acpi_header_t *header = &(hmat->header);
563 unsigned long current = (unsigned long)hmat + sizeof(acpi_hmat_t);
564
565 memset((void *)hmat, 0, sizeof(acpi_hmat_t));
566
567 if (!header)
568 return;
569
570 /* Fill out header fields. */
571 memcpy(header->signature, "HMAT", 4);
572 memcpy(header->oem_id, OEM_ID, 6);
573 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
574 memcpy(header->asl_compiler_id, ASLC, 4);
575
576 header->asl_compiler_revision = asl_revision;
577 header->length = sizeof(acpi_hmat_t);
578 header->revision = get_acpi_table_revision(HMAT);
579
580 current = acpi_fill_hmat(current);
581
582 /* (Re)calculate length and checksum. */
583 header->length = current - (unsigned long)hmat;
584 header->checksum = acpi_checksum((void *)hmat, header->length);
585}
586
Nico Hubere561f352015-10-26 11:51:25 +0100587void acpi_create_dmar(acpi_dmar_t *dmar, enum dmar_flags flags,
Lee Leahy024b13d2017-03-16 13:41:11 -0700588 unsigned long (*acpi_fill_dmar)(unsigned long))
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200589{
590 acpi_header_t *header = &(dmar->header);
591 unsigned long current = (unsigned long)dmar + sizeof(acpi_dmar_t);
592
593 memset((void *)dmar, 0, sizeof(acpi_dmar_t));
594
John Zhao2ba303e2019-05-28 16:48:14 -0700595 if (!header)
596 return;
597
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200598 /* Fill out header fields. */
599 memcpy(header->signature, "DMAR", 4);
600 memcpy(header->oem_id, OEM_ID, 6);
601 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
602 memcpy(header->asl_compiler_id, ASLC, 4);
603
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100604 header->asl_compiler_revision = asl_revision;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200605 header->length = sizeof(acpi_dmar_t);
Marc Jones93a51762018-08-22 18:57:24 -0600606 header->revision = get_acpi_table_revision(DMAR);
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200607
Jacob Laskaf3f654d2016-03-15 21:53:27 -0500608 dmar->host_address_width = cpu_phys_address_size() - 1;
Nico Hubere561f352015-10-26 11:51:25 +0100609 dmar->flags = flags;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200610
611 current = acpi_fill_dmar(current);
612
613 /* (Re)calculate length and checksum. */
614 header->length = current - (unsigned long)dmar;
615 header->checksum = acpi_checksum((void *)dmar, header->length);
616}
617
618unsigned long acpi_create_dmar_drhd(unsigned long current, u8 flags,
Matt DeVillier7866d492018-03-29 14:59:57 +0200619 u16 segment, u64 bar)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200620{
621 dmar_entry_t *drhd = (dmar_entry_t *)current;
622 memset(drhd, 0, sizeof(*drhd));
623 drhd->type = DMAR_DRHD;
624 drhd->length = sizeof(*drhd); /* will be fixed up later */
625 drhd->flags = flags;
626 drhd->segment = segment;
627 drhd->bar = bar;
628
629 return drhd->length;
630}
631
Matt DeVillier7866d492018-03-29 14:59:57 +0200632unsigned long acpi_create_dmar_rmrr(unsigned long current, u16 segment,
633 u64 bar, u64 limit)
634{
635 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)current;
636 memset(rmrr, 0, sizeof(*rmrr));
637 rmrr->type = DMAR_RMRR;
638 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
639 rmrr->segment = segment;
640 rmrr->bar = bar;
641 rmrr->limit = limit;
642
643 return rmrr->length;
644}
645
Werner Zehd4d76952016-07-27 06:56:36 +0200646unsigned long acpi_create_dmar_atsr(unsigned long current, u8 flags,
647 u16 segment)
648{
649 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)current;
650 memset(atsr, 0, sizeof(*atsr));
651 atsr->type = DMAR_ATSR;
652 atsr->length = sizeof(*atsr); /* will be fixed up later */
653 atsr->flags = flags;
654 atsr->segment = segment;
655
656 return atsr->length;
657}
658
John Zhao76e70672019-04-04 11:03:28 -0700659unsigned long acpi_create_dmar_rhsa(unsigned long current, u64 base_addr,
660 u32 proximity_domain)
661{
662 dmar_rhsa_entry_t *rhsa = (dmar_rhsa_entry_t *)current;
663 memset(rhsa, 0, sizeof(*rhsa));
664 rhsa->type = DMAR_RHSA;
665 rhsa->length = sizeof(*rhsa);
666 rhsa->base_address = base_addr;
667 rhsa->proximity_domain = proximity_domain;
668
669 return rhsa->length;
670}
671
672unsigned long acpi_create_dmar_andd(unsigned long current, u8 device_number,
673 const char *device_name)
674{
675 dmar_andd_entry_t *andd = (dmar_andd_entry_t *)current;
676 int andd_len = sizeof(dmar_andd_entry_t) + strlen(device_name) + 1;
677 memset(andd, 0, andd_len);
678 andd->type = DMAR_ANDD;
679 andd->length = andd_len;
680 andd->device_number = device_number;
681 memcpy(&andd->device_name, device_name, strlen(device_name));
682
683 return andd->length;
684}
685
John Zhao091532d2021-04-17 16:03:21 -0700686unsigned long acpi_create_dmar_satc(unsigned long current, u8 flags, u16 segment)
John Zhao6edbb182021-03-24 11:55:09 -0700687{
688 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)current;
John Zhao091532d2021-04-17 16:03:21 -0700689 int satc_len = sizeof(dmar_satc_entry_t);
John Zhao6edbb182021-03-24 11:55:09 -0700690 memset(satc, 0, satc_len);
691 satc->type = DMAR_SATC;
692 satc->length = satc_len;
693 satc->flags = flags;
694 satc->segment_number = segment;
John Zhao6edbb182021-03-24 11:55:09 -0700695
696 return satc->length;
697}
698
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200699void acpi_dmar_drhd_fixup(unsigned long base, unsigned long current)
700{
701 dmar_entry_t *drhd = (dmar_entry_t *)base;
702 drhd->length = current - base;
703}
704
Matt DeVillier7866d492018-03-29 14:59:57 +0200705void acpi_dmar_rmrr_fixup(unsigned long base, unsigned long current)
706{
707 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)base;
708 rmrr->length = current - base;
709}
710
Werner Zehd4d76952016-07-27 06:56:36 +0200711void acpi_dmar_atsr_fixup(unsigned long base, unsigned long current)
712{
713 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)base;
714 atsr->length = current - base;
715}
716
John Zhao6edbb182021-03-24 11:55:09 -0700717void acpi_dmar_satc_fixup(unsigned long base, unsigned long current)
718{
719 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)base;
720 satc->length = current - base;
721}
722
Matt DeVillier7866d492018-03-29 14:59:57 +0200723static unsigned long acpi_create_dmar_ds(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100724 enum dev_scope_type type, u8 enumeration_id, u8 bus, u8 dev, u8 fn)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200725{
Nico Huber6c4751d2015-10-26 12:03:54 +0100726 /* we don't support longer paths yet */
727 const size_t dev_scope_length = sizeof(dev_scope_t) + 2;
728
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200729 dev_scope_t *ds = (dev_scope_t *)current;
Nico Huber6c4751d2015-10-26 12:03:54 +0100730 memset(ds, 0, dev_scope_length);
731 ds->type = type;
732 ds->length = dev_scope_length;
733 ds->enumeration = enumeration_id;
734 ds->start_bus = bus;
735 ds->path[0].dev = dev;
736 ds->path[0].fn = fn;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200737
738 return ds->length;
739}
740
Matt DeVillier7866d492018-03-29 14:59:57 +0200741unsigned long acpi_create_dmar_ds_pci_br(unsigned long current, u8 bus,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200742 u8 dev, u8 fn)
743{
Matt DeVillier7866d492018-03-29 14:59:57 +0200744 return acpi_create_dmar_ds(current,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200745 SCOPE_PCI_SUB, 0, bus, dev, fn);
746}
747
Matt DeVillier7866d492018-03-29 14:59:57 +0200748unsigned long acpi_create_dmar_ds_pci(unsigned long current, u8 bus,
Nico Huber6c4751d2015-10-26 12:03:54 +0100749 u8 dev, u8 fn)
750{
Matt DeVillier7866d492018-03-29 14:59:57 +0200751 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100752 SCOPE_PCI_ENDPOINT, 0, bus, dev, fn);
753}
754
Matt DeVillier7866d492018-03-29 14:59:57 +0200755unsigned long acpi_create_dmar_ds_ioapic(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100756 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
757{
Matt DeVillier7866d492018-03-29 14:59:57 +0200758 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100759 SCOPE_IOAPIC, enumeration_id, bus, dev, fn);
760}
761
Matt DeVillier7866d492018-03-29 14:59:57 +0200762unsigned long acpi_create_dmar_ds_msi_hpet(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100763 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
764{
Matt DeVillier7866d492018-03-29 14:59:57 +0200765 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100766 SCOPE_MSI_HPET, enumeration_id, bus, dev, fn);
767}
768
Uwe Hermann622824c2010-11-19 15:14:42 +0000769/* http://h21007.www2.hp.com/portal/download/files/unprot/Itanium/slit.pdf */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200770void acpi_create_slit(acpi_slit_t *slit,
771 unsigned long (*acpi_fill_slit)(unsigned long current))
Yinghai Lud4b278c2006-10-04 20:46:15 +0000772{
Uwe Hermann622824c2010-11-19 15:14:42 +0000773 acpi_header_t *header = &(slit->header);
774 unsigned long current = (unsigned long)slit + sizeof(acpi_slit_t);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000775
Uwe Hermann622824c2010-11-19 15:14:42 +0000776 memset((void *)slit, 0, sizeof(acpi_slit_t));
Yinghai Lud4b278c2006-10-04 20:46:15 +0000777
John Zhao2ba303e2019-05-28 16:48:14 -0700778 if (!header)
779 return;
780
Uwe Hermann622824c2010-11-19 15:14:42 +0000781 /* Fill out header fields. */
782 memcpy(header->signature, "SLIT", 4);
783 memcpy(header->oem_id, OEM_ID, 6);
784 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
785 memcpy(header->asl_compiler_id, ASLC, 4);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000786
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100787 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000788 header->length = sizeof(acpi_slit_t);
Marc Jones93a51762018-08-22 18:57:24 -0600789 header->revision = get_acpi_table_revision(SLIT);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000790
Uwe Hermann622824c2010-11-19 15:14:42 +0000791 current = acpi_fill_slit(current);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000792
Uwe Hermann622824c2010-11-19 15:14:42 +0000793 /* (Re)calculate length and checksum. */
794 header->length = current - (unsigned long)slit;
795 header->checksum = acpi_checksum((void *)slit, header->length);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000796}
797
Uwe Hermann622824c2010-11-19 15:14:42 +0000798/* http://www.intel.com/hardwaredesign/hpetspec_1.pdf */
Stefan Reinauer777224c2005-01-19 14:06:41 +0000799void acpi_create_hpet(acpi_hpet_t *hpet)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000800{
Uwe Hermann622824c2010-11-19 15:14:42 +0000801 acpi_header_t *header = &(hpet->header);
802 acpi_addr_t *addr = &(hpet->addr);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000803
Stefan Reinauera7648c22004-01-29 17:31:34 +0000804 memset((void *)hpet, 0, sizeof(acpi_hpet_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000805
John Zhao2ba303e2019-05-28 16:48:14 -0700806 if (!header)
807 return;
808
Uwe Hermann622824c2010-11-19 15:14:42 +0000809 /* Fill out header fields. */
Stefan Reinauer4704dc52009-07-22 01:11:37 +0000810 memcpy(header->signature, "HPET", 4);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000811 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000812 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000813 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000814
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100815 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000816 header->length = sizeof(acpi_hpet_t);
Marc Jones93a51762018-08-22 18:57:24 -0600817 header->revision = get_acpi_table_revision(HPET);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000818
Uwe Hermann622824c2010-11-19 15:14:42 +0000819 /* Fill out HPET address. */
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200820 addr->space_id = ACPI_ADDRESS_SPACE_MEMORY;
Uwe Hermann622824c2010-11-19 15:14:42 +0000821 addr->bit_width = 64;
822 addr->bit_offset = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200823 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
824 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000825
Lee Leahy024b13d2017-03-16 13:41:11 -0700826 hpet->id = *(unsigned int *)CONFIG_HPET_ADDRESS;
Uwe Hermann622824c2010-11-19 15:14:42 +0000827 hpet->number = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200828 hpet->min_tick = CONFIG_HPET_MIN_TICKS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000829
Uwe Hermann622824c2010-11-19 15:14:42 +0000830 header->checksum = acpi_checksum((void *)hpet, sizeof(acpi_hpet_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000831}
Uwe Hermann622824c2010-11-19 15:14:42 +0000832
Rocky Phaguraeff07132021-01-10 15:42:50 -0800833/*
834 * This method adds the ACPI error injection capability. It fills the default information.
835 * HW dependent code (caller) can modify the defaults upon return. If no changes are necessary
836 * and the defaults are acceptable then caller can simply add the table (acpi_add_table).
837 * INPUTS:
838 * einj - ptr to the starting location of EINJ table
839 * actions - number of actions to trigger an error (HW dependent)
840 * addr - address of trigger action table. This should be ACPI reserved memory and it will be
841 * shared between OS and FW.
842 */
843void acpi_create_einj(acpi_einj_t *einj, uintptr_t addr, u8 actions)
844{
845 int i;
846 acpi_header_t *header = &(einj->header);
847 acpi_injection_header_t *inj_header = &(einj->inj_header);
848 acpi_einj_smi_t *einj_smi = (acpi_einj_smi_t *)addr;
849 acpi_einj_trigger_table_t *tat;
850 if (!header)
851 return;
852
853 printk(BIOS_DEBUG, "%s einj_smi = %p\n", __func__, einj_smi);
854 memset(einj_smi, 0, sizeof(acpi_einj_smi_t));
855 tat = (acpi_einj_trigger_table_t *)(einj_smi + sizeof(acpi_einj_smi_t));
856 tat->header_size = 16;
857 tat->revision = 0;
858 tat->table_size = sizeof(acpi_einj_trigger_table_t) +
859 sizeof(acpi_einj_action_table_t) * actions - 1;
860 tat->entry_count = actions;
861 printk(BIOS_DEBUG, "%s trigger_action_table = %p\n", __func__, tat);
862
863 for (i = 0; i < actions; i++) {
864 tat->trigger_action[i].action = TRIGGER_ERROR;
865 tat->trigger_action[i].instruction = NO_OP;
866 tat->trigger_action[i].flags = FLAG_IGNORE;
867 tat->trigger_action[i].reg.space_id = ACPI_ADDRESS_SPACE_MEMORY;
868 tat->trigger_action[i].reg.bit_width = 64;
869 tat->trigger_action[i].reg.bit_offset = 0;
870 tat->trigger_action[i].reg.access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
871 tat->trigger_action[i].reg.addr = 0;
872 tat->trigger_action[i].value = 0;
873 tat->trigger_action[i].mask = 0xFFFFFFFF;
874 }
875
876 acpi_einj_action_table_t default_actions[ACTION_COUNT] = {
877 [0] = {
878 .action = BEGIN_INJECT_OP,
879 .instruction = WRITE_REGISTER_VALUE,
880 .flags = FLAG_PRESERVE,
881 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
882 .value = 0,
883 .mask = 0xFFFFFFFF
884 },
885 [1] = {
886 .action = GET_TRIGGER_ACTION_TABLE,
887 .instruction = READ_REGISTER,
888 .flags = FLAG_IGNORE,
889 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->trigger_action_table),
890 .value = 0,
891 .mask = 0xFFFFFFFFFFFFFFFF
892 },
893 [2] = {
894 .action = SET_ERROR_TYPE,
895 .instruction = WRITE_REGISTER,
896 .flags = FLAG_PRESERVE,
897 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inject[0]),
898 .value = 0,
899 .mask = 0xFFFFFFFF
900 },
901 [3] = {
902 .action = GET_ERROR_TYPE,
903 .instruction = READ_REGISTER,
904 .flags = FLAG_IGNORE,
905 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inj_cap),
906 .value = 0,
907 .mask = 0xFFFFFFFF
908 },
909 [4] = {
910 .action = END_INJECT_OP,
911 .instruction = WRITE_REGISTER_VALUE,
912 .flags = FLAG_PRESERVE,
913 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
914 .value = 0,
915 .mask = 0xFFFFFFFF
916
917 },
918 [5] = {
919 .action = EXECUTE_INJECT_OP,
920 .instruction = WRITE_REGISTER_VALUE,
921 .flags = FLAG_PRESERVE,
922 .reg = EINJ_REG_IO(),
923 .value = 0x9a,
924 .mask = 0xFFFF,
925 },
926 [6] = {
927 .action = CHECK_BUSY_STATUS,
928 .instruction = READ_REGISTER_VALUE,
929 .flags = FLAG_IGNORE,
930 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_status),
931 .value = 1,
932 .mask = 1,
933 },
934 [7] = {
935 .action = GET_CMD_STATUS,
936 .instruction = READ_REGISTER,
937 .flags = FLAG_PRESERVE,
938 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->cmd_sts),
939 .value = 0,
940 .mask = 0x1fe,
941 },
942 [8] = {
943 .action = SET_ERROR_TYPE_WITH_ADDRESS,
944 .instruction = WRITE_REGISTER,
945 .flags = FLAG_PRESERVE,
946 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->setaddrtable),
947 .value = 1,
948 .mask = 0xffffffff
949 }
950 };
951
952 einj_smi->err_inj_cap = ACPI_EINJ_DEFAULT_CAP;
953 einj_smi->trigger_action_table = (u64) (uintptr_t)tat;
954
955 for (i = 0; i < ACTION_COUNT; i++)
956 printk(BIOS_DEBUG, "default_actions[%d].reg.addr is %llx\n", i,
957 default_actions[i].reg.addr);
958
Rocky Phagurab46a9e52021-05-21 13:34:03 -0700959 memset((void *)einj, 0, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800960
961 /* Fill out header fields. */
962 memcpy(header->signature, "EINJ", 4);
963 memcpy(header->oem_id, OEM_ID, 6);
964 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
965 memcpy(header->asl_compiler_id, ASLC, 4);
966
967 header->asl_compiler_revision = asl_revision;
968 header->length = sizeof(acpi_einj_t);
969 header->revision = 1;
970 inj_header->einj_header_size = sizeof(acpi_injection_header_t);
971 inj_header->entry_count = ACTION_COUNT;
972
973 printk(BIOS_DEBUG, "%s einj->action_table = %p\n",
974 __func__, einj->action_table);
975 memcpy((void *)einj->action_table, (void *)default_actions, sizeof(einj->action_table));
Rocky Phagurab46a9e52021-05-21 13:34:03 -0700976 header->checksum = acpi_checksum((void *)einj, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800977}
978
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700979void acpi_create_vfct(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530980 acpi_vfct_t *vfct,
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700981 unsigned long (*acpi_fill_vfct)(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530982 acpi_vfct_t *vfct_struct, unsigned long current))
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200983{
984 acpi_header_t *header = &(vfct->header);
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530985 unsigned long current = (unsigned long)vfct + sizeof(acpi_vfct_t);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200986
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530987 memset((void *)vfct, 0, sizeof(acpi_vfct_t));
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200988
John Zhao2ba303e2019-05-28 16:48:14 -0700989 if (!header)
990 return;
991
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200992 /* Fill out header fields. */
993 memcpy(header->signature, "VFCT", 4);
994 memcpy(header->oem_id, OEM_ID, 6);
995 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
996 memcpy(header->asl_compiler_id, ASLC, 4);
997
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100998 header->asl_compiler_revision = asl_revision;
Marc Jones93a51762018-08-22 18:57:24 -0600999 header->revision = get_acpi_table_revision(VFCT);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001000
1001 current = acpi_fill_vfct(device, vfct, current);
1002
Kyösti Mälkkifb493792019-06-30 06:29:52 +03001003 /* If no BIOS image, return with header->length == 0. */
1004 if (!vfct->VBIOSImageOffset)
1005 return;
1006
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001007 /* (Re)calculate length and checksum. */
1008 header->length = current - (unsigned long)vfct;
1009 header->checksum = acpi_checksum((void *)vfct, header->length);
1010}
1011
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001012void acpi_create_ipmi(const struct device *device,
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001013 struct acpi_spmi *spmi,
1014 const u16 ipmi_revision,
1015 const acpi_addr_t *addr,
1016 const enum acpi_ipmi_interface_type type,
1017 const s8 gpe_interrupt,
1018 const u32 apic_interrupt,
1019 const u32 uid)
1020{
1021 acpi_header_t *header = &(spmi->header);
1022 memset((void *)spmi, 0, sizeof(struct acpi_spmi));
1023
1024 /* Fill out header fields. */
1025 memcpy(header->signature, "SPMI", 4);
1026 memcpy(header->oem_id, OEM_ID, 6);
1027 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1028 memcpy(header->asl_compiler_id, ASLC, 4);
1029
1030 header->asl_compiler_revision = asl_revision;
1031 header->length = sizeof(struct acpi_spmi);
1032 header->revision = get_acpi_table_revision(SPMI);
1033
1034 spmi->reserved = 1;
1035
1036 if (device->path.type == DEVICE_PATH_PCI) {
1037 spmi->pci_device_flag = ACPI_IPMI_PCI_DEVICE_FLAG;
1038 spmi->pci_bus = device->bus->secondary;
1039 spmi->pci_device = device->path.pci.devfn >> 3;
1040 spmi->pci_function = device->path.pci.devfn & 0x7;
1041 } else if (type != IPMI_INTERFACE_SSIF) {
1042 memcpy(spmi->uid, &uid, sizeof(spmi->uid));
1043 }
1044
1045 spmi->base_address = *addr;
1046 spmi->specification_revision = ipmi_revision;
1047
1048 spmi->interface_type = type;
1049
1050 if (gpe_interrupt >= 0 && gpe_interrupt < 32) {
1051 spmi->gpe = gpe_interrupt;
1052 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_SCI;
1053 }
1054 if (apic_interrupt > 0) {
1055 spmi->global_system_interrupt = apic_interrupt;
1056 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_APIC;
1057 }
1058
1059 /* Calculate checksum. */
1060 header->checksum = acpi_checksum((void *)spmi, header->length);
1061}
1062
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001063void acpi_create_ivrs(acpi_ivrs_t *ivrs,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001064 unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t *ivrs_struct,
1065 unsigned long current))
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001066{
1067 acpi_header_t *header = &(ivrs->header);
1068 unsigned long current = (unsigned long)ivrs + sizeof(acpi_ivrs_t);
1069
1070 memset((void *)ivrs, 0, sizeof(acpi_ivrs_t));
1071
John Zhao2ba303e2019-05-28 16:48:14 -07001072 if (!header)
1073 return;
1074
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001075 /* Fill out header fields. */
1076 memcpy(header->signature, "IVRS", 4);
1077 memcpy(header->oem_id, OEM_ID, 6);
1078 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1079 memcpy(header->asl_compiler_id, ASLC, 4);
1080
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001081 header->asl_compiler_revision = asl_revision;
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001082 header->length = sizeof(acpi_ivrs_t);
Marc Jones93a51762018-08-22 18:57:24 -06001083 header->revision = get_acpi_table_revision(IVRS);
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001084
1085 current = acpi_fill_ivrs(ivrs, current);
1086
1087 /* (Re)calculate length and checksum. */
1088 header->length = current - (unsigned long)ivrs;
1089 header->checksum = acpi_checksum((void *)ivrs, header->length);
1090}
1091
Jason Glenesk61624b22020-11-02 20:06:23 -08001092void acpi_create_crat(struct acpi_crat_header *crat,
1093 unsigned long (*acpi_fill_crat)(struct acpi_crat_header *crat_struct,
1094 unsigned long current))
1095{
1096 acpi_header_t *header = &(crat->header);
1097 unsigned long current = (unsigned long)crat + sizeof(struct acpi_crat_header);
1098
1099 memset((void *)crat, 0, sizeof(struct acpi_crat_header));
1100
1101 if (!header)
1102 return;
1103
1104 /* Fill out header fields. */
1105 memcpy(header->signature, "CRAT", 4);
1106 memcpy(header->oem_id, OEM_ID, 6);
1107 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1108 memcpy(header->asl_compiler_id, ASLC, 4);
1109
1110 header->asl_compiler_revision = asl_revision;
1111 header->length = sizeof(struct acpi_crat_header);
1112 header->revision = get_acpi_table_revision(CRAT);
1113
1114 current = acpi_fill_crat(crat, current);
1115
1116 /* (Re)calculate length and checksum. */
1117 header->length = current - (unsigned long)crat;
1118 header->checksum = acpi_checksum((void *)crat, header->length);
1119}
1120
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001121unsigned long acpi_write_hpet(const struct device *device, unsigned long current,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001122 acpi_rsdp_t *rsdp)
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001123{
1124 acpi_hpet_t *hpet;
1125
1126 /*
1127 * We explicitly add these tables later on:
1128 */
1129 printk(BIOS_DEBUG, "ACPI: * HPET\n");
1130
1131 hpet = (acpi_hpet_t *) current;
1132 current += sizeof(acpi_hpet_t);
Felix Heldc4697122019-06-20 13:50:17 +02001133 current = ALIGN_UP(current, 16);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001134 acpi_create_hpet(hpet);
1135 acpi_add_table(rsdp, hpet);
1136
1137 return current;
1138}
1139
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001140void acpi_create_dbg2(acpi_dbg2_header_t *dbg2,
1141 int port_type, int port_subtype,
1142 acpi_addr_t *address, uint32_t address_size,
1143 const char *device_path)
1144{
1145 uintptr_t current;
1146 acpi_dbg2_device_t *device;
1147 uint32_t *dbg2_addr_size;
1148 acpi_header_t *header;
1149 size_t path_len;
1150 const char *path;
1151 char *namespace;
1152
1153 /* Fill out header fields. */
1154 current = (uintptr_t)dbg2;
1155 memset(dbg2, 0, sizeof(acpi_dbg2_header_t));
1156 header = &(dbg2->header);
John Zhao2ba303e2019-05-28 16:48:14 -07001157
1158 if (!header)
1159 return;
1160
Marc Jones93a51762018-08-22 18:57:24 -06001161 header->revision = get_acpi_table_revision(DBG2);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001162 memcpy(header->signature, "DBG2", 4);
1163 memcpy(header->oem_id, OEM_ID, 6);
1164 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1165 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001166 header->asl_compiler_revision = asl_revision;
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001167
1168 /* One debug device defined */
1169 dbg2->devices_offset = sizeof(acpi_dbg2_header_t);
1170 dbg2->devices_count = 1;
1171 current += sizeof(acpi_dbg2_header_t);
1172
1173 /* Device comes after the header */
1174 device = (acpi_dbg2_device_t *)current;
1175 memset(device, 0, sizeof(acpi_dbg2_device_t));
1176 current += sizeof(acpi_dbg2_device_t);
1177
1178 device->revision = 0;
1179 device->address_count = 1;
1180 device->port_type = port_type;
1181 device->port_subtype = port_subtype;
1182
1183 /* Base Address comes after device structure */
1184 memcpy((void *)current, address, sizeof(acpi_addr_t));
1185 device->base_address_offset = current - (uintptr_t)device;
1186 current += sizeof(acpi_addr_t);
1187
1188 /* Address Size comes after address structure */
1189 dbg2_addr_size = (uint32_t *)current;
1190 device->address_size_offset = current - (uintptr_t)device;
1191 *dbg2_addr_size = address_size;
1192 current += sizeof(uint32_t);
1193
1194 /* Namespace string comes last, use '.' if not provided */
1195 path = device_path ? : ".";
1196 /* Namespace string length includes NULL terminator */
1197 path_len = strlen(path) + 1;
1198 namespace = (char *)current;
1199 device->namespace_string_length = path_len;
1200 device->namespace_string_offset = current - (uintptr_t)device;
1201 strncpy(namespace, path, path_len);
1202 current += path_len;
1203
1204 /* Update structure lengths and checksum */
1205 device->length = current - (uintptr_t)device;
1206 header->length = current - (uintptr_t)dbg2;
1207 header->checksum = acpi_checksum((uint8_t *)dbg2, header->length);
1208}
1209
1210unsigned long acpi_write_dbg2_pci_uart(acpi_rsdp_t *rsdp, unsigned long current,
Aamir Bohrae825d3f2019-07-30 10:11:41 +05301211 const struct device *dev, uint8_t access_size)
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001212{
1213 acpi_dbg2_header_t *dbg2 = (acpi_dbg2_header_t *)current;
1214 struct resource *res;
1215 acpi_addr_t address;
1216
1217 if (!dev) {
Wim Vervoorn6cd52432020-02-03 14:41:46 +01001218 printk(BIOS_DEBUG, "%s: Device not found\n", __func__);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001219 return current;
1220 }
Mario Scheithauerf1eb0ea2017-11-21 13:52:53 +01001221 if (!dev->enabled) {
1222 printk(BIOS_INFO, "%s: Device not enabled\n", __func__);
1223 return current;
1224 }
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001225 res = find_resource(dev, PCI_BASE_ADDRESS_0);
1226 if (!res) {
1227 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
1228 __func__, dev_path(dev));
1229 return current;
1230 }
1231
1232 memset(&address, 0, sizeof(address));
1233 if (res->flags & IORESOURCE_IO)
1234 address.space_id = ACPI_ADDRESS_SPACE_IO;
1235 else if (res->flags & IORESOURCE_MEM)
1236 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
1237 else {
1238 printk(BIOS_ERR, "%s: Unknown address space type\n", __func__);
1239 return current;
1240 }
1241
1242 address.addrl = (uint32_t)res->base;
1243 address.addrh = (uint32_t)((res->base >> 32) & 0xffffffff);
1244 address.access_size = access_size;
1245
1246 acpi_create_dbg2(dbg2,
1247 ACPI_DBG2_PORT_SERIAL,
1248 ACPI_DBG2_PORT_SERIAL_16550,
1249 &address, res->size,
1250 acpi_device_path(dev));
1251
1252 if (dbg2->header.length) {
1253 current += dbg2->header.length;
1254 current = acpi_align_current(current);
1255 acpi_add_table(rsdp, dbg2);
1256 }
1257
1258 return current;
1259}
1260
Stefan Reinauer777224c2005-01-19 14:06:41 +00001261void acpi_create_facs(acpi_facs_t *facs)
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001262{
Uwe Hermann622824c2010-11-19 15:14:42 +00001263 memset((void *)facs, 0, sizeof(acpi_facs_t));
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001264
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001265 memcpy(facs->signature, "FACS", 4);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001266 facs->length = sizeof(acpi_facs_t);
1267 facs->hardware_signature = 0;
1268 facs->firmware_waking_vector = 0;
1269 facs->global_lock = 0;
1270 facs->flags = 0;
1271 facs->x_firmware_waking_vector_l = 0;
1272 facs->x_firmware_waking_vector_h = 0;
Marc Jones93a51762018-08-22 18:57:24 -06001273 facs->version = get_acpi_table_revision(FACS);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001274}
Stefan Reinauer777224c2005-01-19 14:06:41 +00001275
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001276static void acpi_write_rsdt(acpi_rsdt_t *rsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001277{
Uwe Hermann622824c2010-11-19 15:14:42 +00001278 acpi_header_t *header = &(rsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001279
John Zhao2ba303e2019-05-28 16:48:14 -07001280 if (!header)
1281 return;
1282
Uwe Hermann622824c2010-11-19 15:14:42 +00001283 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001284 memcpy(header->signature, "RSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001285 memcpy(header->oem_id, oem_id, 6);
1286 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +00001287 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001288
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001289 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +00001290 header->length = sizeof(acpi_rsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001291 header->revision = get_acpi_table_revision(RSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001292
Uwe Hermann622824c2010-11-19 15:14:42 +00001293 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauer688b3852004-01-28 16:56:14 +00001294
Uwe Hermann622824c2010-11-19 15:14:42 +00001295 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001296 header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001297}
1298
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001299static void acpi_write_xsdt(acpi_xsdt_t *xsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001300{
Uwe Hermann622824c2010-11-19 15:14:42 +00001301 acpi_header_t *header = &(xsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001302
John Zhao2ba303e2019-05-28 16:48:14 -07001303 if (!header)
1304 return;
1305
Uwe Hermann622824c2010-11-19 15:14:42 +00001306 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001307 memcpy(header->signature, "XSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001308 memcpy(header->oem_id, oem_id, 6);
1309 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001310 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001311
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001312 header->asl_compiler_revision = asl_revision;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001313 header->length = sizeof(acpi_xsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001314 header->revision = get_acpi_table_revision(XSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001315
Uwe Hermann622824c2010-11-19 15:14:42 +00001316 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001317
Uwe Hermann622824c2010-11-19 15:14:42 +00001318 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001319 header->checksum = acpi_checksum((void *)xsdt, sizeof(acpi_xsdt_t));
1320}
1321
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001322static void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt,
1323 acpi_xsdt_t *xsdt, char *oem_id)
Stefan Reinauer688b3852004-01-28 16:56:14 +00001324{
Stefan Reinauerd18faac2009-11-05 18:06:43 +00001325 memset(rsdp, 0, sizeof(acpi_rsdp_t));
Uwe Hermann622824c2010-11-19 15:14:42 +00001326
Stefan Reinauer688b3852004-01-28 16:56:14 +00001327 memcpy(rsdp->signature, RSDP_SIG, 8);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001328 memcpy(rsdp->oem_id, oem_id, 6);
Uwe Hermann622824c2010-11-19 15:14:42 +00001329
1330 rsdp->length = sizeof(acpi_rsdp_t);
Stefan Reinauerdefee172015-06-18 01:11:19 -07001331 rsdp->rsdt_address = (uintptr_t)rsdt;
Uwe Hermann622824c2010-11-19 15:14:42 +00001332
1333 /*
1334 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2.
1335 *
1336 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
1337 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
1338 * revision 0).
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001339 */
1340 if (xsdt == NULL) {
Uwe Hermann622824c2010-11-19 15:14:42 +00001341 rsdp->revision = 0;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001342 } else {
Stefan Reinauerdefee172015-06-18 01:11:19 -07001343 rsdp->xsdt_address = (u64)(uintptr_t)xsdt;
Marc Jones93a51762018-08-22 18:57:24 -06001344 rsdp->revision = get_acpi_table_revision(RSDP);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001345 }
Uwe Hermann622824c2010-11-19 15:14:42 +00001346
1347 /* Calculate checksums. */
1348 rsdp->checksum = acpi_checksum((void *)rsdp, 20);
1349 rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001350}
1351
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001352unsigned long acpi_create_hest_error_source(acpi_hest_t *hest,
1353 acpi_hest_esd_t *esd, u16 type, void *data, u16 data_len)
zbaocaf494c82012-04-13 13:57:14 +08001354{
1355 acpi_header_t *header = &(hest->header);
1356 acpi_hest_hen_t *hen;
1357 void *pos;
1358 u16 len;
1359
1360 pos = esd;
1361 memset(pos, 0, sizeof(acpi_hest_esd_t));
1362 len = 0;
1363 esd->type = type; /* MCE */
1364 esd->source_id = hest->error_source_count;
1365 esd->flags = 0; /* FIRMWARE_FIRST */
1366 esd->enabled = 1;
1367 esd->prealloc_erecords = 1;
1368 esd->max_section_per_record = 0x1;
1369
1370 len += sizeof(acpi_hest_esd_t);
1371 pos = esd + 1;
1372
1373 switch (type) {
1374 case 0: /* MCE */
1375 break;
1376 case 1: /* CMC */
1377 hen = (acpi_hest_hen_t *) (pos);
1378 memset(pos, 0, sizeof(acpi_hest_hen_t));
1379 hen->type = 3; /* SCI? */
1380 hen->length = sizeof(acpi_hest_hen_t);
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001381 hen->conf_we = 0; /* Configuration Write Enable. */
zbaocaf494c82012-04-13 13:57:14 +08001382 hen->poll_interval = 0;
1383 hen->vector = 0;
1384 hen->sw2poll_threshold_val = 0;
1385 hen->sw2poll_threshold_win = 0;
1386 hen->error_threshold_val = 0;
1387 hen->error_threshold_win = 0;
1388 len += sizeof(acpi_hest_hen_t);
1389 pos = hen + 1;
1390 break;
1391 case 2: /* NMI */
1392 case 6: /* AER Root Port */
1393 case 7: /* AER Endpoint */
1394 case 8: /* AER Bridge */
1395 case 9: /* Generic Hardware Error Source. */
1396 /* TODO: */
1397 break;
1398 default:
1399 printk(BIOS_DEBUG, "Invalid type of Error Source.");
1400 break;
1401 }
Lee Leahy024b13d2017-03-16 13:41:11 -07001402 hest->error_source_count++;
zbaocaf494c82012-04-13 13:57:14 +08001403
1404 memcpy(pos, data, data_len);
1405 len += data_len;
John Zhao2ba303e2019-05-28 16:48:14 -07001406 if (header)
1407 header->length += len;
zbaocaf494c82012-04-13 13:57:14 +08001408
1409 return len;
1410}
1411
1412/* ACPI 4.0 */
Vladimir Serbinenko807127f2014-11-09 13:36:18 +01001413void acpi_write_hest(acpi_hest_t *hest,
1414 unsigned long (*acpi_fill_hest)(acpi_hest_t *hest))
zbaocaf494c82012-04-13 13:57:14 +08001415{
1416 acpi_header_t *header = &(hest->header);
1417
1418 memset(hest, 0, sizeof(acpi_hest_t));
1419
John Zhao2ba303e2019-05-28 16:48:14 -07001420 if (!header)
1421 return;
1422
zbaocaf494c82012-04-13 13:57:14 +08001423 memcpy(header->signature, "HEST", 4);
1424 memcpy(header->oem_id, OEM_ID, 6);
1425 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1426 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001427 header->asl_compiler_revision = asl_revision;
zbaocaf494c82012-04-13 13:57:14 +08001428 header->length += sizeof(acpi_hest_t);
Marc Jones93a51762018-08-22 18:57:24 -06001429 header->revision = get_acpi_table_revision(HEST);
zbaocaf494c82012-04-13 13:57:14 +08001430
1431 acpi_fill_hest(hest);
1432
1433 /* Calculate checksums. */
1434 header->checksum = acpi_checksum((void *)hest, header->length);
1435}
1436
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001437/* ACPI 3.0b */
1438void acpi_write_bert(acpi_bert_t *bert, uintptr_t region, size_t length)
1439{
1440 acpi_header_t *header = &(bert->header);
1441
1442 memset(bert, 0, sizeof(acpi_bert_t));
1443
John Zhao2ba303e2019-05-28 16:48:14 -07001444 if (!header)
1445 return;
1446
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001447 memcpy(header->signature, "BERT", 4);
1448 memcpy(header->oem_id, OEM_ID, 6);
1449 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1450 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001451 header->asl_compiler_revision = asl_revision;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001452 header->length += sizeof(acpi_bert_t);
1453 header->revision = get_acpi_table_revision(BERT);
1454
1455 bert->error_region = region;
1456 bert->region_length = length;
1457
1458 /* Calculate checksums. */
1459 header->checksum = acpi_checksum((void *)bert, header->length);
1460}
1461
Angel Pons79572e42020-07-13 00:17:43 +02001462__weak void arch_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001463__weak void soc_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001464__weak void mainboard_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001465
Lee Leahy024b13d2017-03-16 13:41:11 -07001466void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001467{
1468 acpi_header_t *header = &(fadt->header);
1469
1470 memset((void *) fadt, 0, sizeof(acpi_fadt_t));
John Zhao2ba303e2019-05-28 16:48:14 -07001471
1472 if (!header)
1473 return;
1474
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001475 memcpy(header->signature, "FACP", 4);
1476 header->length = sizeof(acpi_fadt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001477 header->revision = get_acpi_table_revision(FADT);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001478 memcpy(header->oem_id, OEM_ID, 6);
1479 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1480 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +01001481 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001482
1483 fadt->firmware_ctrl = (unsigned long) facs;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001484 fadt->x_firmware_ctl_l = (unsigned long)facs;
1485 fadt->x_firmware_ctl_h = 0;
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001486
1487 fadt->dsdt = (unsigned long) dsdt;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001488 fadt->x_dsdt_l = (unsigned long)dsdt;
1489 fadt->x_dsdt_h = 0;
1490
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001491 /* should be 0 ACPI 3.0 */
1492 fadt->reserved = 0;
1493
Kyösti Mälkkie0d38682020-06-07 12:01:58 +03001494 fadt->preferred_pm_profile = acpi_get_preferred_pm_profile();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001495
Angel Pons79572e42020-07-13 00:17:43 +02001496 arch_fill_fadt(fadt);
1497
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +02001498 acpi_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001499
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001500 soc_fill_fadt(fadt);
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001501 mainboard_fill_fadt(fadt);
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001502
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001503 header->checksum =
1504 acpi_checksum((void *) fadt, header->length);
1505}
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001506
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001507void acpi_create_lpit(acpi_lpit_t *lpit)
1508{
1509 acpi_header_t *header = &(lpit->header);
1510 unsigned long current = (unsigned long)lpit + sizeof(acpi_lpit_t);
1511
1512 memset((void *)lpit, 0, sizeof(acpi_lpit_t));
1513
1514 if (!header)
1515 return;
1516
1517 /* Fill out header fields. */
1518 memcpy(header->signature, "LPIT", 4);
1519 memcpy(header->oem_id, OEM_ID, 6);
1520 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1521 memcpy(header->asl_compiler_id, ASLC, 4);
1522
1523 header->asl_compiler_revision = asl_revision;
1524 header->revision = get_acpi_table_revision(LPIT);
1525 header->oem_revision = 42;
1526 header->length = sizeof(acpi_lpit_t);
1527
1528 current = acpi_fill_lpit(current);
1529
1530 /* (Re)calculate length and checksum. */
1531 header->length = current - (unsigned long)lpit;
1532 header->checksum = acpi_checksum((void *)lpit, header->length);
1533}
1534
1535unsigned long acpi_create_lpi_desc_ncst(acpi_lpi_desc_ncst_t *lpi_desc, uint16_t uid)
1536{
1537 memset(lpi_desc, 0, sizeof(acpi_lpi_desc_ncst_t));
1538 lpi_desc->header.length = sizeof(acpi_lpi_desc_ncst_t);
1539 lpi_desc->header.type = ACPI_LPI_DESC_TYPE_NATIVE_CSTATE;
1540 lpi_desc->header.uid = uid;
1541
1542 return lpi_desc->header.length;
1543}
1544
Francois Toguo522e0db2021-01-21 09:55:19 -08001545/* BERT helpers */
1546bool __weak acpi_is_boot_error_src_present(void)
1547{
1548 return false;
1549}
1550
1551__weak void acpi_soc_fill_bert(acpi_bert_t *bert, void **region, size_t *length) {}
1552
Aaron Durbin64031672018-04-21 14:45:32 -06001553unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001554{
1555 return 0;
1556}
1557
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001558unsigned long write_acpi_tables(unsigned long start)
1559{
1560 unsigned long current;
1561 acpi_rsdp_t *rsdp;
1562 acpi_rsdt_t *rsdt;
1563 acpi_xsdt_t *xsdt;
1564 acpi_fadt_t *fadt;
1565 acpi_facs_t *facs;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001566 acpi_header_t *slic_file, *slic;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001567 acpi_header_t *ssdt;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001568 acpi_header_t *dsdt_file, *dsdt;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001569 acpi_mcfg_t *mcfg;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001570 acpi_tcpa_t *tcpa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001571 acpi_tpm2_t *tpm2;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001572 acpi_madt_t *madt;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001573 acpi_lpit_t *lpit;
Francois Toguo522e0db2021-01-21 09:55:19 -08001574 acpi_bert_t *bert;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +11001575 struct device *dev;
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001576 unsigned long fw;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001577 size_t slic_size, dsdt_size;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001578 char oem_id[6], oem_table_id[8];
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001579
1580 current = start;
1581
1582 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -06001583 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001584
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001585 /* Special case for qemu */
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001586 fw = fw_cfg_acpi_tables(current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001587 if (fw) {
1588 rsdp = NULL;
1589 /* Find RSDP. */
1590 for (void *p = (void *)current; p < (void *)fw; p += 16) {
1591 if (valid_rsdp((acpi_rsdp_t *)p)) {
1592 rsdp = p;
1593 break;
1594 }
1595 }
1596 if (!rsdp)
1597 return fw;
1598
1599 /* Add BOOT0000 for Linux google firmware driver */
1600 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1601 ssdt = (acpi_header_t *)fw;
1602 current = (unsigned long)ssdt + sizeof(acpi_header_t);
1603
1604 memset((void *)ssdt, 0, sizeof(acpi_header_t));
1605
1606 memcpy(&ssdt->signature, "SSDT", 4);
1607 ssdt->revision = get_acpi_table_revision(SSDT);
1608 memcpy(&ssdt->oem_id, OEM_ID, 6);
1609 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
1610 ssdt->oem_revision = 42;
1611 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
1612 ssdt->asl_compiler_revision = asl_revision;
1613 ssdt->length = sizeof(acpi_header_t);
1614
1615 acpigen_set_current((char *) current);
1616
1617 /* Write object to declare coreboot tables */
1618 acpi_ssdt_write_cbtable();
1619
1620 /* (Re)calculate length and checksum. */
1621 ssdt->length = current - (unsigned long)ssdt;
1622 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
1623
1624 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
1625
1626 acpi_add_table(rsdp, ssdt);
1627
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001628 return fw;
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001629 }
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001630
Julius Werner834b3ec2020-03-04 16:52:08 -08001631 dsdt_file = cbfs_map(CONFIG_CBFS_PREFIX "/dsdt.aml", &dsdt_size);
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001632 if (!dsdt_file) {
1633 printk(BIOS_ERR, "No DSDT file, skipping ACPI tables\n");
1634 return current;
1635 }
1636
1637 if (dsdt_file->length > dsdt_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001638 || dsdt_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001639 || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
1640 printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
1641 return current;
1642 }
1643
Julius Werner834b3ec2020-03-04 16:52:08 -08001644 slic_file = cbfs_map(CONFIG_CBFS_PREFIX "/slic", &slic_size);
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001645 if (slic_file
1646 && (slic_file->length > slic_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001647 || slic_file->length < sizeof(acpi_header_t)
Benjamin Doron2b2dc0c2020-09-12 02:55:57 +00001648 || (memcmp(slic_file->signature, "SLIC", 4) != 0
1649 && memcmp(slic_file->signature, "MSDM", 4) != 0))) {
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001650 slic_file = 0;
1651 }
1652
1653 if (slic_file) {
1654 memcpy(oem_id, slic_file->oem_id, 6);
1655 memcpy(oem_table_id, slic_file->oem_table_id, 8);
1656 } else {
1657 memcpy(oem_id, OEM_ID, 6);
1658 memcpy(oem_table_id, ACPI_TABLE_CREATOR, 8);
1659 }
1660
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001661 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
1662
1663 /* We need at least an RSDP and an RSDT Table */
1664 rsdp = (acpi_rsdp_t *) current;
1665 current += sizeof(acpi_rsdp_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001666 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001667 rsdt = (acpi_rsdt_t *) current;
1668 current += sizeof(acpi_rsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001669 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001670 xsdt = (acpi_xsdt_t *) current;
1671 current += sizeof(acpi_xsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001672 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001673
1674 /* clear all table memory */
1675 memset((void *) start, 0, current - start);
1676
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001677 acpi_write_rsdp(rsdp, rsdt, xsdt, oem_id);
1678 acpi_write_rsdt(rsdt, oem_id, oem_table_id);
1679 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001680
1681 printk(BIOS_DEBUG, "ACPI: * FACS\n");
Felix Heldc4697122019-06-20 13:50:17 +02001682 current = ALIGN_UP(current, 64);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001683 facs = (acpi_facs_t *) current;
1684 current += sizeof(acpi_facs_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001685 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001686 acpi_create_facs(facs);
1687
1688 printk(BIOS_DEBUG, "ACPI: * DSDT\n");
1689 dsdt = (acpi_header_t *) current;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001690 memcpy(dsdt, dsdt_file, sizeof(acpi_header_t));
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001691 if (dsdt->length >= sizeof(acpi_header_t)) {
1692 current += sizeof(acpi_header_t);
1693
1694 acpigen_set_current((char *) current);
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001695
Kyösti Mälkki37eb24b2021-01-11 18:40:37 +02001696 if (CONFIG(ACPI_SOC_NVS))
1697 acpi_fill_gnvs();
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001698
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001699 for (dev = all_devices; dev; dev = dev->next)
Nico Huber68680dd2020-03-31 17:34:52 +02001700 if (dev->ops && dev->ops->acpi_inject_dsdt)
1701 dev->ops->acpi_inject_dsdt(dev);
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001702 current = (unsigned long) acpigen_get_current();
1703 memcpy((char *)current,
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001704 (char *)dsdt_file + sizeof(acpi_header_t),
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001705 dsdt->length - sizeof(acpi_header_t));
1706 current += dsdt->length - sizeof(acpi_header_t);
1707
1708 /* (Re)calculate length and checksum. */
1709 dsdt->length = current - (unsigned long)dsdt;
1710 dsdt->checksum = 0;
1711 dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
1712 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001713
Aaron Durbin07a1b282015-12-10 17:07:38 -06001714 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001715
1716 printk(BIOS_DEBUG, "ACPI: * FADT\n");
1717 fadt = (acpi_fadt_t *) current;
1718 current += sizeof(acpi_fadt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001719 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001720
1721 acpi_create_fadt(fadt, facs, dsdt);
1722 acpi_add_table(rsdp, fadt);
1723
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001724 if (slic_file) {
1725 printk(BIOS_DEBUG, "ACPI: * SLIC\n");
1726 slic = (acpi_header_t *)current;
1727 memcpy(slic, slic_file, slic_file->length);
1728 current += slic_file->length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001729 current = acpi_align_current(current);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001730 acpi_add_table(rsdp, slic);
1731 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001732
1733 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1734 ssdt = (acpi_header_t *)current;
1735 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001736 if (ssdt->length > sizeof(acpi_header_t)) {
1737 current += ssdt->length;
1738 acpi_add_table(rsdp, ssdt);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001739 current = acpi_align_current(current);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001740 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001741
1742 printk(BIOS_DEBUG, "ACPI: * MCFG\n");
1743 mcfg = (acpi_mcfg_t *) current;
1744 acpi_create_mcfg(mcfg);
1745 if (mcfg->header.length > sizeof(acpi_mcfg_t)) {
1746 current += mcfg->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001747 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001748 acpi_add_table(rsdp, mcfg);
1749 }
1750
Julius Wernercd49cce2019-03-05 16:53:33 -08001751 if (CONFIG(TPM1)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001752 printk(BIOS_DEBUG, "ACPI: * TCPA\n");
1753 tcpa = (acpi_tcpa_t *) current;
1754 acpi_create_tcpa(tcpa);
1755 if (tcpa->header.length >= sizeof(acpi_tcpa_t)) {
1756 current += tcpa->header.length;
1757 current = acpi_align_current(current);
1758 acpi_add_table(rsdp, tcpa);
1759 }
1760 }
1761
Julius Wernercd49cce2019-03-05 16:53:33 -08001762 if (CONFIG(TPM2)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001763 printk(BIOS_DEBUG, "ACPI: * TPM2\n");
1764 tpm2 = (acpi_tpm2_t *) current;
1765 acpi_create_tpm2(tpm2);
1766 if (tpm2->header.length >= sizeof(acpi_tpm2_t)) {
1767 current += tpm2->header.length;
1768 current = acpi_align_current(current);
1769 acpi_add_table(rsdp, tpm2);
1770 }
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001771 }
1772
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001773 if (CONFIG(ACPI_LPIT)) {
1774 printk(BIOS_DEBUG, "ACPI: * LPIT\n");
1775
1776 lpit = (acpi_lpit_t *)current;
1777 acpi_create_lpit(lpit);
1778 if (lpit->header.length >= sizeof(acpi_lpit_t)) {
1779 current += lpit->header.length;
1780 current = acpi_align_current(current);
1781 acpi_add_table(rsdp, lpit);
1782 }
1783 }
1784
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001785 printk(BIOS_DEBUG, "ACPI: * MADT\n");
1786
1787 madt = (acpi_madt_t *) current;
1788 acpi_create_madt(madt);
1789 if (madt->header.length > sizeof(acpi_madt_t)) {
Lee Leahy024b13d2017-03-16 13:41:11 -07001790 current += madt->header.length;
1791 acpi_add_table(rsdp, madt);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001792 }
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001793
Aaron Durbin07a1b282015-12-10 17:07:38 -06001794 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001795
Francois Toguo522e0db2021-01-21 09:55:19 -08001796 if (acpi_is_boot_error_src_present()) {
1797 void *region;
1798 size_t size;
1799 printk(BIOS_DEBUG, "ACPI: * BERT\n");
1800 bert = (acpi_bert_t *) current;
1801 acpi_soc_fill_bert(bert, &region, &size);
1802 acpi_write_bert(bert, (uintptr_t)region, size);
1803 if (bert->header.length >= sizeof(acpi_bert_t)) {
1804 current += bert->header.length;
1805 acpi_add_table(rsdp, bert);
1806 }
1807 current = acpi_align_current(current);
1808 }
1809
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001810 printk(BIOS_DEBUG, "current = %lx\n", current);
1811
1812 for (dev = all_devices; dev; dev = dev->next) {
1813 if (dev->ops && dev->ops->write_acpi_tables) {
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001814 current = dev->ops->write_acpi_tables(dev, current,
1815 rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001816 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001817 }
1818 }
1819
1820 printk(BIOS_INFO, "ACPI: done.\n");
1821 return current;
1822}
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001823
Rudolf Marek33cafe52009-04-13 18:07:02 +00001824static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
1825{
1826 if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0)
1827 return NULL;
1828
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001829 printk(BIOS_DEBUG, "Looking on %p for valid checksum\n", rsdp);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001830
1831 if (acpi_checksum((void *)rsdp, 20) != 0)
1832 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001833 printk(BIOS_DEBUG, "Checksum 1 passed\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001834
1835 if ((rsdp->revision > 1) && (acpi_checksum((void *)rsdp,
1836 rsdp->length) != 0))
1837 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001838 printk(BIOS_DEBUG, "Checksum 2 passed all OK\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001839
1840 return rsdp;
1841}
1842
Rudolf Marek33cafe52009-04-13 18:07:02 +00001843void *acpi_find_wakeup_vector(void)
1844{
1845 char *p, *end;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001846 acpi_rsdt_t *rsdt;
1847 acpi_facs_t *facs;
Martin Rothc5f49262012-12-14 19:17:55 -07001848 acpi_fadt_t *fadt = NULL;
Kyösti Mälkki072d436b2016-06-17 08:44:40 +03001849 acpi_rsdp_t *rsdp = NULL;
Uwe Hermann622824c2010-11-19 15:14:42 +00001850 void *wake_vec;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001851 int i;
1852
Kyösti Mälkkib8c7ea02020-11-17 16:41:38 +02001853 if (!acpi_is_wakeup_s3())
Rudolf Marek33cafe52009-04-13 18:07:02 +00001854 return NULL;
1855
Uwe Hermann622824c2010-11-19 15:14:42 +00001856 printk(BIOS_DEBUG, "Trying to find the wakeup vector...\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001857
Uwe Hermann622824c2010-11-19 15:14:42 +00001858 /* Find RSDP. */
1859 for (p = (char *)0xe0000; p < (char *)0xfffff; p += 16) {
Lee Leahy0b5678f2017-03-16 16:01:40 -07001860 rsdp = valid_rsdp((acpi_rsdp_t *)p);
1861 if (rsdp)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001862 break;
1863 }
1864
Angel Pons98a68ad2018-11-04 12:25:25 +01001865 if (rsdp == NULL) {
1866 printk(BIOS_ALERT,
1867 "No RSDP found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001868 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001869 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001870
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001871 printk(BIOS_DEBUG, "RSDP found at %p\n", rsdp);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001872 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +00001873
Uwe Hermann622824c2010-11-19 15:14:42 +00001874 end = (char *)rsdt + rsdt->header.length;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001875 printk(BIOS_DEBUG, "RSDT found at %p ends at %p\n", rsdt, end);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001876
Uwe Hermann622824c2010-11-19 15:14:42 +00001877 for (i = 0; ((char *)&rsdt->entry[i]) < end; i++) {
Stefan Reinauer71a30182015-07-30 16:28:13 -07001878 fadt = (acpi_fadt_t *)(uintptr_t)rsdt->entry[i];
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001879 if (strncmp((char *)fadt, "FACP", 4) == 0)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001880 break;
1881 fadt = NULL;
1882 }
1883
Angel Pons98a68ad2018-11-04 12:25:25 +01001884 if (fadt == NULL) {
1885 printk(BIOS_ALERT,
1886 "No FADT found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001887 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001888 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001889
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001890 printk(BIOS_DEBUG, "FADT found at %p\n", fadt);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001891 facs = (acpi_facs_t *)(uintptr_t)fadt->firmware_ctrl;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001892
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001893 if (facs == NULL) {
Angel Pons98a68ad2018-11-04 12:25:25 +01001894 printk(BIOS_ALERT,
1895 "No FACS found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001896 return NULL;
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001897 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001898
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001899 printk(BIOS_DEBUG, "FACS found at %p\n", facs);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001900 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001901 printk(BIOS_DEBUG, "OS waking vector is %p\n", wake_vec);
Uwe Hermann622824c2010-11-19 15:14:42 +00001902
Rudolf Marek33cafe52009-04-13 18:07:02 +00001903 return wake_vec;
1904}
1905
Aaron Durbin64031672018-04-21 14:45:32 -06001906__weak int acpi_get_gpe(int gpe)
Duncan Laurie1f6e6812016-09-19 12:04:19 -07001907{
1908 return -1; /* implemented by SOC */
1909}
Marc Jones93a51762018-08-22 18:57:24 -06001910
1911int get_acpi_table_revision(enum acpi_tables table)
1912{
1913 switch (table) {
1914 case FADT:
Patrick Rudolphc02bda02020-02-28 10:19:41 +01001915 return ACPI_FADT_REV_ACPI_6_0;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001916 case MADT: /* ACPI 3.0: 2, ACPI 4.0/5.0: 3, ACPI 6.2b/6.3: 5 */
Patrick Rudolph56a3ef22020-03-24 17:29:49 +01001917 return 3;
Marc Jones93a51762018-08-22 18:57:24 -06001918 case MCFG:
1919 return 1;
1920 case TCPA:
1921 return 2;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001922 case TPM2:
1923 return 4;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001924 case SSDT: /* ACPI 3.0 upto 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001925 return 2;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001926 case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 upto 6.3: 3 */
Marc Jones93a51762018-08-22 18:57:24 -06001927 return 1; /* TODO Should probably be upgraded to 2 */
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -07001928 case HMAT: /* ACPI 6.4: 2 */
1929 return 2;
Marc Jones93a51762018-08-22 18:57:24 -06001930 case DMAR:
1931 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001932 case SLIT: /* ACPI 2.0 upto 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001933 return 1;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001934 case SPMI: /* IMPI 2.0 */
1935 return 5;
Marc Jones93a51762018-08-22 18:57:24 -06001936 case HPET: /* Currently 1. Table added in ACPI 2.0. */
1937 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001938 case VFCT: /* ACPI 2.0/3.0/4.0: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001939 return 1;
1940 case IVRS:
Jason Glenesk1916f892020-07-24 02:51:30 -07001941 return IVRS_FORMAT_MIXED;
Marc Jones93a51762018-08-22 18:57:24 -06001942 case DBG2:
1943 return 0;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001944 case FACS: /* ACPI 2.0/3.0: 1, ACPI 4.0 upto 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001945 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001946 case RSDT: /* ACPI 1.0 upto 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001947 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001948 case XSDT: /* ACPI 2.0 upto 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001949 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001950 case RSDP: /* ACPI 2.0 upto 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001951 return 2;
Rocky Phaguraeff07132021-01-10 15:42:50 -08001952 case EINJ:
1953 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06001954 case HEST:
1955 return 1;
1956 case NHLT:
1957 return 5;
Marshall Dawson44705c62018-09-04 13:47:15 -06001958 case BERT:
1959 return 1;
Jason Glenesk61624b22020-11-02 20:06:23 -08001960 case CRAT:
1961 return 1;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001962 case LPIT: /* ACPI 5.1 up to 6.3: 0 */
1963 return 0;
Marc Jones93a51762018-08-22 18:57:24 -06001964 default:
1965 return -1;
1966 }
1967 return -1;
1968}