blob: 78c3fd3b90674dff6d2ed80a3bfe60dfd62cd0aa [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>
Nico Huberd5811372021-07-12 18:11:58 +020029#include <pc80/mc146818rtc.h>
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000030
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +020031static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp);
32
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000033u8 acpi_checksum(u8 *table, u32 length)
Stefan Reinauer688b3852004-01-28 16:56:14 +000034{
Uwe Hermann622824c2010-11-19 15:14:42 +000035 u8 ret = 0;
Stefan Reinauer688b3852004-01-28 16:56:14 +000036 while (length--) {
37 ret += *table;
38 table++;
39 }
Stefan Reinauera7648c22004-01-29 17:31:34 +000040 return -ret;
Stefan Reinauer688b3852004-01-28 16:56:14 +000041}
42
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000043/**
Uwe Hermann622824c2010-11-19 15:14:42 +000044 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
45 * and checksum.
Stefan Reinauer06feb882004-02-03 16:11:35 +000046 */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000047void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
Stefan Reinauer688b3852004-01-28 16:56:14 +000048{
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000049 int i, entries_num;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000050 acpi_rsdt_t *rsdt;
51 acpi_xsdt_t *xsdt = NULL;
52
Uwe Hermann622824c2010-11-19 15:14:42 +000053 /* The RSDT is mandatory... */
Stefan Reinauerdefee172015-06-18 01:11:19 -070054 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000055
Uwe Hermann622824c2010-11-19 15:14:42 +000056 /* ...while the XSDT is not. */
57 if (rsdp->xsdt_address)
Stefan Reinauerdefee172015-06-18 01:11:19 -070058 xsdt = (acpi_xsdt_t *)((uintptr_t)rsdp->xsdt_address);
Stefan Reinauer14e22772010-04-27 06:56:47 +000059
Uwe Hermann622824c2010-11-19 15:14:42 +000060 /* This should always be MAX_ACPI_TABLES. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000061 entries_num = ARRAY_SIZE(rsdt->entry);
Stefan Reinauer14e22772010-04-27 06:56:47 +000062
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000063 for (i = 0; i < entries_num; i++) {
Uwe Hermann622824c2010-11-19 15:14:42 +000064 if (rsdt->entry[i] == 0)
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000065 break;
Stefan Reinauer688b3852004-01-28 16:56:14 +000066 }
67
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000068 if (i >= entries_num) {
Uwe Hermann622824c2010-11-19 15:14:42 +000069 printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030070 "too many tables.\n");
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000071 return;
72 }
73
Uwe Hermann622824c2010-11-19 15:14:42 +000074 /* Add table to the RSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070075 rsdt->entry[i] = (uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000076
Uwe Hermann622824c2010-11-19 15:14:42 +000077 /* Fix RSDT length or the kernel will assume invalid entries. */
78 rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000079
Uwe Hermann622824c2010-11-19 15:14:42 +000080 /* Re-calculate checksum. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000081 rsdt->header.checksum = 0; /* Hope this won't get optimized away */
Uwe Hermann622824c2010-11-19 15:14:42 +000082 rsdt->header.checksum = acpi_checksum((u8 *)rsdt, rsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000083
Uwe Hermann622824c2010-11-19 15:14:42 +000084 /*
85 * And now the same thing for the XSDT. We use the same index as for
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000086 * now we want the XSDT and RSDT to always be in sync in coreboot.
87 */
88 if (xsdt) {
Uwe Hermann622824c2010-11-19 15:14:42 +000089 /* Add table to the XSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070090 xsdt->entry[i] = (u64)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000091
Uwe Hermann622824c2010-11-19 15:14:42 +000092 /* Fix XSDT length. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000093 xsdt->header.length = sizeof(acpi_header_t) +
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030094 (sizeof(u64) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000095
Uwe Hermann622824c2010-11-19 15:14:42 +000096 /* Re-calculate checksum. */
97 xsdt->header.checksum = 0;
98 xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030099 xsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000100 }
101
Uwe Hermann622824c2010-11-19 15:14:42 +0000102 printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300103 i + 1, entries_num, rsdt->header.length);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000104}
105
Uwe Hermann622824c2010-11-19 15:14:42 +0000106int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300107 u16 seg_nr, u8 start, u8 end)
Stefan Reinauer26d431a2009-01-20 19:17:51 +0000108{
Vladimir Serbinenko60fccdc2014-10-05 11:05:16 +0200109 memset(mmconfig, 0, sizeof(*mmconfig));
Rudolf Mareke6409f22007-11-03 12:50:26 +0000110 mmconfig->base_address = base;
111 mmconfig->base_reserved = 0;
112 mmconfig->pci_segment_group_number = seg_nr;
113 mmconfig->start_bus_number = start;
114 mmconfig->end_bus_number = end;
Uwe Hermann622824c2010-11-19 15:14:42 +0000115
116 return sizeof(acpi_mcfg_mmconfig_t);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000117}
118
Stefan Reinauer777224c2005-01-19 14:06:41 +0000119int acpi_create_madt_lapic(acpi_madt_lapic_t *lapic, u8 cpu, u8 apic)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000120{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530121 lapic->type = LOCAL_APIC; /* Local APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000122 lapic->length = sizeof(acpi_madt_lapic_t);
123 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
124 lapic->processor_id = cpu;
125 lapic->apic_id = apic;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000126
Uwe Hermann622824c2010-11-19 15:14:42 +0000127 return lapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000128}
129
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100130int acpi_create_madt_lx2apic(acpi_madt_lx2apic_t *lapic, u32 cpu, u32 apic)
131{
132 lapic->type = LOCAL_X2APIC; /* Local APIC structure */
133 lapic->reserved = 0;
134 lapic->length = sizeof(acpi_madt_lx2apic_t);
135 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
136 lapic->processor_id = cpu;
137 lapic->x2apic_id = apic;
138
139 return lapic->length;
140}
141
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000142unsigned long acpi_create_madt_lapics(unsigned long current)
143{
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100144 struct device *cpu;
Werner Zeh423adfb2019-03-06 09:31:02 +0100145 int index, apic_ids[CONFIG_MAX_CPUS] = {0}, num_cpus = 0;
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000146
Uwe Hermann622824c2010-11-19 15:14:42 +0000147 for (cpu = all_devices; cpu; cpu = cpu->next) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000148 if ((cpu->path.type != DEVICE_PATH_APIC) ||
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800149 (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER)) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000150 continue;
151 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000152 if (!cpu->enabled)
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000153 continue;
Werner Zehdb561e62019-02-19 13:39:56 +0100154 if (num_cpus >= ARRAY_SIZE(apic_ids))
155 break;
156 apic_ids[num_cpus++] = cpu->path.apic.apic_id;
157 }
Werner Zehfedb36e2019-03-12 07:07:50 +0100158 if (num_cpus > 1)
159 bubblesort(apic_ids, num_cpus, NUM_ASCENDING);
Werner Zehdb561e62019-02-19 13:39:56 +0100160 for (index = 0; index < num_cpus; index++) {
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100161 if (apic_ids[index] < 0xff)
162 current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current,
163 index, apic_ids[index]);
164 else
165 current += acpi_create_madt_lx2apic((acpi_madt_lx2apic_t *)current,
166 index, apic_ids[index]);
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000167 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000168
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000169 return current;
170}
171
Uwe Hermann622824c2010-11-19 15:14:42 +0000172int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300173 u32 gsi_base)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000174{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530175 ioapic->type = IO_APIC; /* I/O APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000176 ioapic->length = sizeof(acpi_madt_ioapic_t);
177 ioapic->reserved = 0x00;
178 ioapic->gsi_base = gsi_base;
179 ioapic->ioapic_id = id;
180 ioapic->ioapic_addr = addr;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000181
Uwe Hermann622824c2010-11-19 15:14:42 +0000182 return ioapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000183}
184
Stefan Reinauer777224c2005-01-19 14:06:41 +0000185int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
Stefan Reinauer06feb882004-02-03 16:11:35 +0000186 u8 bus, u8 source, u32 gsirq, u16 flags)
187{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530188 irqoverride->type = IRQ_SOURCE_OVERRIDE; /* Interrupt source override */
Uwe Hermann622824c2010-11-19 15:14:42 +0000189 irqoverride->length = sizeof(acpi_madt_irqoverride_t);
190 irqoverride->bus = bus;
191 irqoverride->source = source;
192 irqoverride->gsirq = gsirq;
193 irqoverride->flags = flags;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000194
Uwe Hermann622824c2010-11-19 15:14:42 +0000195 return irqoverride->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000196}
197
Stefan Reinauer777224c2005-01-19 14:06:41 +0000198int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300199 u16 flags, u8 lint)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000200{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530201 lapic_nmi->type = LOCAL_APIC_NMI; /* Local APIC NMI structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000202 lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
203 lapic_nmi->flags = flags;
204 lapic_nmi->processor_id = cpu;
205 lapic_nmi->lint = lint;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000206
Uwe Hermann622824c2010-11-19 15:14:42 +0000207 return lapic_nmi->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000208}
209
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100210int acpi_create_madt_lx2apic_nmi(acpi_madt_lx2apic_nmi_t *lapic_nmi, u32 cpu,
211 u16 flags, u8 lint)
212{
213 lapic_nmi->type = LOCAL_X2APIC_NMI; /* Local APIC NMI structure */
214 lapic_nmi->length = sizeof(acpi_madt_lx2apic_nmi_t);
215 lapic_nmi->flags = flags;
216 lapic_nmi->processor_id = cpu;
217 lapic_nmi->lint = lint;
218 lapic_nmi->reserved[0] = 0;
219 lapic_nmi->reserved[1] = 0;
220 lapic_nmi->reserved[2] = 0;
221
222 return lapic_nmi->length;
223}
224
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700225__weak uintptr_t cpu_get_lapic_addr(void)
226{
227 /*
228 * If an architecture does not support LAPIC, this weak implementation returns LAPIC
229 * addr as 0.
230 */
231 return 0;
232}
233
Stefan Reinauer777224c2005-01-19 14:06:41 +0000234void acpi_create_madt(acpi_madt_t *madt)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000235{
Uwe Hermann622824c2010-11-19 15:14:42 +0000236 acpi_header_t *header = &(madt->header);
237 unsigned long current = (unsigned long)madt + sizeof(acpi_madt_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000238
Stefan Reinauer06feb882004-02-03 16:11:35 +0000239 memset((void *)madt, 0, sizeof(acpi_madt_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000240
John Zhao2ba303e2019-05-28 16:48:14 -0700241 if (!header)
242 return;
243
Uwe Hermann622824c2010-11-19 15:14:42 +0000244 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000245 memcpy(header->signature, "APIC", 4);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000246 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000247 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000248 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000249
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100250 header->asl_compiler_revision = asl_revision;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000251 header->length = sizeof(acpi_madt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600252 header->revision = get_acpi_table_revision(MADT);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000253
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700254 madt->lapic_addr = cpu_get_lapic_addr();
Nico Huber9df72e02018-11-24 18:25:50 +0100255 if (CONFIG(ACPI_HAVE_PCAT_8259))
256 madt->flags |= 1;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000257
Stefan Reinauerf622d592005-11-26 16:56:05 +0000258 current = acpi_fill_madt(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000259
Uwe Hermann622824c2010-11-19 15:14:42 +0000260 /* (Re)calculate length and checksum. */
261 header->length = current - (unsigned long)madt;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000262
Uwe Hermann622824c2010-11-19 15:14:42 +0000263 header->checksum = acpi_checksum((void *)madt, header->length);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000264}
265
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200266static unsigned long acpi_fill_mcfg(unsigned long current)
267{
268 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
Shelley Chen4e9bb332021-10-20 15:43:45 -0700269 CONFIG_ECAM_MMCONF_BASE_ADDRESS, 0, 0,
270 CONFIG_ECAM_MMCONF_BUS_NUMBER - 1);
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200271 return current;
272}
273
Uwe Hermann622824c2010-11-19 15:14:42 +0000274/* MCFG is defined in the PCI Firmware Specification 3.0. */
Rudolf Mareke6409f22007-11-03 12:50:26 +0000275void acpi_create_mcfg(acpi_mcfg_t *mcfg)
276{
Uwe Hermann622824c2010-11-19 15:14:42 +0000277 acpi_header_t *header = &(mcfg->header);
278 unsigned long current = (unsigned long)mcfg + sizeof(acpi_mcfg_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000279
Rudolf Mareke6409f22007-11-03 12:50:26 +0000280 memset((void *)mcfg, 0, sizeof(acpi_mcfg_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000281
John Zhao2ba303e2019-05-28 16:48:14 -0700282 if (!header)
283 return;
284
Uwe Hermann622824c2010-11-19 15:14:42 +0000285 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000286 memcpy(header->signature, "MCFG", 4);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000287 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000288 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000289 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000290
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100291 header->asl_compiler_revision = asl_revision;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000292 header->length = sizeof(acpi_mcfg_t);
Marc Jones93a51762018-08-22 18:57:24 -0600293 header->revision = get_acpi_table_revision(MCFG);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000294
Shelley Chen4e9bb332021-10-20 15:43:45 -0700295 if (CONFIG(ECAM_MMCONF_SUPPORT))
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200296 current = acpi_fill_mcfg(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000297
Uwe Hermann622824c2010-11-19 15:14:42 +0000298 /* (Re)calculate length and checksum. */
299 header->length = current - (unsigned long)mcfg;
300 header->checksum = acpi_checksum((void *)mcfg, header->length);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000301}
302
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200303static void *get_tcpa_log(u32 *size)
304{
305 const struct cbmem_entry *ce;
306 const u32 tcpa_default_log_len = 0x10000;
307 void *lasa;
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200308 ce = cbmem_entry_find(CBMEM_ID_TCPA_TCG_LOG);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200309 if (ce) {
310 lasa = cbmem_entry_start(ce);
311 *size = cbmem_entry_size(ce);
312 printk(BIOS_DEBUG, "TCPA log found at %p\n", lasa);
313 return lasa;
314 }
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200315 lasa = cbmem_add(CBMEM_ID_TCPA_TCG_LOG, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200316 if (!lasa) {
317 printk(BIOS_ERR, "TCPA log creation failed\n");
318 return NULL;
319 }
320
321 printk(BIOS_DEBUG, "TCPA log created at %p\n", lasa);
Lee Leahy024b13d2017-03-16 13:41:11 -0700322 memset(lasa, 0, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200323
324 *size = tcpa_default_log_len;
325 return lasa;
326}
327
328static void acpi_create_tcpa(acpi_tcpa_t *tcpa)
329{
330 acpi_header_t *header = &(tcpa->header);
331 u32 tcpa_log_len;
332 void *lasa;
333
334 memset((void *)tcpa, 0, sizeof(acpi_tcpa_t));
335
336 lasa = get_tcpa_log(&tcpa_log_len);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700337 if (!lasa)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200338 return;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200339
John Zhao2ba303e2019-05-28 16:48:14 -0700340 if (!header)
341 return;
342
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200343 /* Fill out header fields. */
344 memcpy(header->signature, "TCPA", 4);
345 memcpy(header->oem_id, OEM_ID, 6);
346 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
347 memcpy(header->asl_compiler_id, ASLC, 4);
348
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100349 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200350 header->length = sizeof(acpi_tcpa_t);
Marc Jones93a51762018-08-22 18:57:24 -0600351 header->revision = get_acpi_table_revision(TCPA);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200352
353 tcpa->platform_class = 0;
354 tcpa->laml = tcpa_log_len;
Stefan Reinauerdefee172015-06-18 01:11:19 -0700355 tcpa->lasa = (uintptr_t) lasa;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200356
357 /* Calculate checksum. */
358 header->checksum = acpi_checksum((void *)tcpa, header->length);
359}
360
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100361static void *get_tpm2_log(u32 *size)
362{
363 const struct cbmem_entry *ce;
364 const u32 tpm2_default_log_len = 0x10000;
365 void *lasa;
366 ce = cbmem_entry_find(CBMEM_ID_TPM2_TCG_LOG);
367 if (ce) {
368 lasa = cbmem_entry_start(ce);
369 *size = cbmem_entry_size(ce);
370 printk(BIOS_DEBUG, "TPM2 log found at %p\n", lasa);
371 return lasa;
372 }
373 lasa = cbmem_add(CBMEM_ID_TPM2_TCG_LOG, tpm2_default_log_len);
374 if (!lasa) {
375 printk(BIOS_ERR, "TPM2 log creation failed\n");
376 return NULL;
377 }
378
379 printk(BIOS_DEBUG, "TPM2 log created at %p\n", lasa);
380 memset(lasa, 0, tpm2_default_log_len);
381
382 *size = tpm2_default_log_len;
383 return lasa;
384}
385
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200386static void acpi_create_tpm2(acpi_tpm2_t *tpm2)
387{
388 acpi_header_t *header = &(tpm2->header);
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100389 u32 tpm2_log_len;
390 void *lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200391
392 memset((void *)tpm2, 0, sizeof(acpi_tpm2_t));
393
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100394 /*
395 * Some payloads like SeaBIOS depend on log area to use TPM2.
396 * Get the memory size and address of TPM2 log area or initialize it.
397 */
398 lasa = get_tpm2_log(&tpm2_log_len);
399 if (!lasa)
400 tpm2_log_len = 0;
401
John Zhao2ba303e2019-05-28 16:48:14 -0700402 if (!header)
403 return;
404
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200405 /* Fill out header fields. */
406 memcpy(header->signature, "TPM2", 4);
407 memcpy(header->oem_id, OEM_ID, 6);
408 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
409 memcpy(header->asl_compiler_id, ASLC, 4);
410
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100411 header->asl_compiler_revision = asl_revision;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200412 header->length = sizeof(acpi_tpm2_t);
413 header->revision = get_acpi_table_revision(TPM2);
414
415 /* Hard to detect for coreboot. Just set it to 0 */
416 tpm2->platform_class = 0;
Christian Walter26e0d4c2019-07-14 15:47:23 +0200417 if (CONFIG(CRB_TPM)) {
418 /* Must be set to 7 for CRB Support */
419 tpm2->control_area = CONFIG_CRB_TPM_BASE_ADDRESS + 0x40;
420 tpm2->start_method = 7;
421 } else {
422 /* Must be set to 0 for FIFO interface support */
423 tpm2->control_area = 0;
424 tpm2->start_method = 6;
425 }
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200426 memset(tpm2->msp, 0, sizeof(tpm2->msp));
427
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100428 /* Fill the log area size and start address fields. */
429 tpm2->laml = tpm2_log_len;
430 tpm2->lasa = (uintptr_t) lasa;
431
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200432 /* Calculate checksum. */
433 header->checksum = acpi_checksum((void *)tpm2, header->length);
434}
435
Duncan Laurie37319032016-05-26 12:47:05 -0700436static void acpi_ssdt_write_cbtable(void)
437{
438 const struct cbmem_entry *cbtable;
439 uintptr_t base;
440 uint32_t size;
441
442 cbtable = cbmem_entry_find(CBMEM_ID_CBTABLE);
443 if (!cbtable)
444 return;
445 base = (uintptr_t)cbmem_entry_start(cbtable);
446 size = cbmem_entry_size(cbtable);
447
448 acpigen_write_device("CTBL");
449 acpigen_write_coreboot_hid(COREBOOT_ACPI_ID_CBTABLE);
450 acpigen_write_name_integer("_UID", 0);
David Wu5dff3962018-03-21 16:48:53 +0800451 acpigen_write_STA(ACPI_STATUS_DEVICE_HIDDEN_ON);
Duncan Laurie37319032016-05-26 12:47:05 -0700452 acpigen_write_name("_CRS");
453 acpigen_write_resourcetemplate_header();
454 acpigen_write_mem32fixed(0, base, size);
455 acpigen_write_resourcetemplate_footer();
456 acpigen_pop_len();
457}
458
Myles Watson3fe6b702009-10-09 20:13:43 +0000459void acpi_create_ssdt_generator(acpi_header_t *ssdt, const char *oem_table_id)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000460{
Uwe Hermann622824c2010-11-19 15:14:42 +0000461 unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
462
Rudolf Marek293b5f52009-02-01 18:35:15 +0000463 memset((void *)ssdt, 0, sizeof(acpi_header_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000464
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000465 memcpy(&ssdt->signature, "SSDT", 4);
Marc Jones93a51762018-08-22 18:57:24 -0600466 ssdt->revision = get_acpi_table_revision(SSDT);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000467 memcpy(&ssdt->oem_id, OEM_ID, 6);
468 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
469 ssdt->oem_revision = 42;
Uwe Hermann622824c2010-11-19 15:14:42 +0000470 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +0100471 ssdt->asl_compiler_revision = asl_revision;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000472 ssdt->length = sizeof(acpi_header_t);
473
Stefan Reinauer8dcd50b2009-03-06 17:24:29 +0000474 acpigen_set_current((char *) current);
Duncan Laurie37319032016-05-26 12:47:05 -0700475
476 /* Write object to declare coreboot tables */
477 acpi_ssdt_write_cbtable();
478
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200479 {
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100480 struct device *dev;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200481 for (dev = all_devices; dev; dev = dev->next)
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -0700482 if (dev->enabled && dev->ops && dev->ops->acpi_fill_ssdt)
Nico Huber68680dd2020-03-31 17:34:52 +0200483 dev->ops->acpi_fill_ssdt(dev);
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200484 current = (unsigned long) acpigen_get_current();
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200485 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000486
Uwe Hermann622824c2010-11-19 15:14:42 +0000487 /* (Re)calculate length and checksum. */
Rudolf Marek293b5f52009-02-01 18:35:15 +0000488 ssdt->length = current - (unsigned long)ssdt;
489 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
490}
491
Stefan Reinauerf622d592005-11-26 16:56:05 +0000492int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
493{
Myles Watson0b4c9f02009-03-10 18:06:47 +0000494 memset((void *)lapic, 0, sizeof(acpi_srat_lapic_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000495
Uwe Hermann622824c2010-11-19 15:14:42 +0000496 lapic->type = 0; /* Processor local APIC/SAPIC affinity structure */
497 lapic->length = sizeof(acpi_srat_lapic_t);
498 lapic->flags = (1 << 0); /* Enabled (the use of this structure). */
499 lapic->proximity_domain_7_0 = node;
500 /* TODO: proximity_domain_31_8, local SAPIC EID, clock domain. */
501 lapic->apic_id = apic;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000502
Uwe Hermann622824c2010-11-19 15:14:42 +0000503 return lapic->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000504}
505
Uwe Hermann622824c2010-11-19 15:14:42 +0000506int 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 +0300507 u32 flags)
Stefan Reinauerf622d592005-11-26 16:56:05 +0000508{
Uwe Hermann622824c2010-11-19 15:14:42 +0000509 mem->type = 1; /* Memory affinity structure */
510 mem->length = sizeof(acpi_srat_mem_t);
511 mem->base_address_low = (basek << 10);
512 mem->base_address_high = (basek >> (32 - 10));
513 mem->length_low = (sizek << 10);
514 mem->length_high = (sizek >> (32 - 10));
515 mem->proximity_domain = node;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000516 mem->flags = flags;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000517
Uwe Hermann622824c2010-11-19 15:14:42 +0000518 return mem->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000519}
520
Jonathan Zhang3164b642021-04-21 17:51:31 -0700521int acpi_create_srat_gia_pci(acpi_srat_gia_t *gia, u32 proximity_domain,
522 u16 seg, u8 bus, u8 dev, u8 func, u32 flags)
523{
524 gia->type = ACPI_SRAT_STRUCTURE_GIA;
525 gia->length = sizeof(acpi_srat_gia_t);
526 gia->proximity_domain = proximity_domain;
527 gia->dev_handle_type = ACPI_SRAT_GIA_DEV_HANDLE_PCI;
528 /* First two bytes has segment number */
529 memcpy(gia->dev_handle, &seg, 2);
530 gia->dev_handle[2] = bus; /* Byte 2 has bus number */
531 /* Byte 3 has bits 7:3 for dev, bits 2:0 for func */
532 gia->dev_handle[3] = PCI_SLOT(dev) | PCI_FUNC(func);
533 gia->flags = flags;
534
535 return gia->length;
536}
537
Uwe Hermann622824c2010-11-19 15:14:42 +0000538/* http://www.microsoft.com/whdc/system/sysinternals/sratdwn.mspx */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200539void acpi_create_srat(acpi_srat_t *srat,
540 unsigned long (*acpi_fill_srat)(unsigned long current))
Stefan Reinauerf622d592005-11-26 16:56:05 +0000541{
Uwe Hermann622824c2010-11-19 15:14:42 +0000542 acpi_header_t *header = &(srat->header);
543 unsigned long current = (unsigned long)srat + sizeof(acpi_srat_t);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000544
Uwe Hermann622824c2010-11-19 15:14:42 +0000545 memset((void *)srat, 0, sizeof(acpi_srat_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000546
John Zhao2ba303e2019-05-28 16:48:14 -0700547 if (!header)
548 return;
549
Uwe Hermann622824c2010-11-19 15:14:42 +0000550 /* Fill out header fields. */
551 memcpy(header->signature, "SRAT", 4);
552 memcpy(header->oem_id, OEM_ID, 6);
553 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
554 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000555
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100556 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000557 header->length = sizeof(acpi_srat_t);
Marc Jones93a51762018-08-22 18:57:24 -0600558 header->revision = get_acpi_table_revision(SRAT);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000559
Uwe Hermann622824c2010-11-19 15:14:42 +0000560 srat->resv = 1; /* Spec: Reserved to 1 for backwards compatibility. */
Stefan Reinauerf622d592005-11-26 16:56:05 +0000561
Uwe Hermann622824c2010-11-19 15:14:42 +0000562 current = acpi_fill_srat(current);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000563
Uwe Hermann622824c2010-11-19 15:14:42 +0000564 /* (Re)calculate length and checksum. */
565 header->length = current - (unsigned long)srat;
566 header->checksum = acpi_checksum((void *)srat, header->length);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000567}
568
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700569int acpi_create_hmat_mpda(acpi_hmat_mpda_t *mpda, u32 initiator, u32 memory)
570{
571 memset((void *)mpda, 0, sizeof(acpi_hmat_mpda_t));
572
573 mpda->type = 0; /* Memory Proximity Domain Attributes structure */
574 mpda->length = sizeof(acpi_hmat_mpda_t);
575 /*
576 * Proximity Domain for Attached Initiator field is valid.
577 * Bit 1 and bit 2 are reserved since HMAT revision 2.
578 */
579 mpda->flags = (1 << 0);
580 mpda->proximity_domain_initiator = initiator;
581 mpda->proximity_domain_memory = memory;
582
583 return mpda->length;
584}
585
586void acpi_create_hmat(acpi_hmat_t *hmat,
587 unsigned long (*acpi_fill_hmat)(unsigned long current))
588{
589 acpi_header_t *header = &(hmat->header);
590 unsigned long current = (unsigned long)hmat + sizeof(acpi_hmat_t);
591
592 memset((void *)hmat, 0, sizeof(acpi_hmat_t));
593
594 if (!header)
595 return;
596
597 /* Fill out header fields. */
598 memcpy(header->signature, "HMAT", 4);
599 memcpy(header->oem_id, OEM_ID, 6);
600 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
601 memcpy(header->asl_compiler_id, ASLC, 4);
602
603 header->asl_compiler_revision = asl_revision;
604 header->length = sizeof(acpi_hmat_t);
605 header->revision = get_acpi_table_revision(HMAT);
606
607 current = acpi_fill_hmat(current);
608
609 /* (Re)calculate length and checksum. */
610 header->length = current - (unsigned long)hmat;
611 header->checksum = acpi_checksum((void *)hmat, header->length);
612}
613
Nico Hubere561f352015-10-26 11:51:25 +0100614void acpi_create_dmar(acpi_dmar_t *dmar, enum dmar_flags flags,
Lee Leahy024b13d2017-03-16 13:41:11 -0700615 unsigned long (*acpi_fill_dmar)(unsigned long))
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200616{
617 acpi_header_t *header = &(dmar->header);
618 unsigned long current = (unsigned long)dmar + sizeof(acpi_dmar_t);
619
620 memset((void *)dmar, 0, sizeof(acpi_dmar_t));
621
John Zhao2ba303e2019-05-28 16:48:14 -0700622 if (!header)
623 return;
624
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200625 /* Fill out header fields. */
626 memcpy(header->signature, "DMAR", 4);
627 memcpy(header->oem_id, OEM_ID, 6);
628 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
629 memcpy(header->asl_compiler_id, ASLC, 4);
630
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100631 header->asl_compiler_revision = asl_revision;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200632 header->length = sizeof(acpi_dmar_t);
Marc Jones93a51762018-08-22 18:57:24 -0600633 header->revision = get_acpi_table_revision(DMAR);
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200634
Jacob Laskaf3f654d2016-03-15 21:53:27 -0500635 dmar->host_address_width = cpu_phys_address_size() - 1;
Nico Hubere561f352015-10-26 11:51:25 +0100636 dmar->flags = flags;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200637
638 current = acpi_fill_dmar(current);
639
640 /* (Re)calculate length and checksum. */
641 header->length = current - (unsigned long)dmar;
642 header->checksum = acpi_checksum((void *)dmar, header->length);
643}
644
645unsigned long acpi_create_dmar_drhd(unsigned long current, u8 flags,
Matt DeVillier7866d492018-03-29 14:59:57 +0200646 u16 segment, u64 bar)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200647{
648 dmar_entry_t *drhd = (dmar_entry_t *)current;
649 memset(drhd, 0, sizeof(*drhd));
650 drhd->type = DMAR_DRHD;
651 drhd->length = sizeof(*drhd); /* will be fixed up later */
652 drhd->flags = flags;
653 drhd->segment = segment;
654 drhd->bar = bar;
655
656 return drhd->length;
657}
658
Matt DeVillier7866d492018-03-29 14:59:57 +0200659unsigned long acpi_create_dmar_rmrr(unsigned long current, u16 segment,
660 u64 bar, u64 limit)
661{
662 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)current;
663 memset(rmrr, 0, sizeof(*rmrr));
664 rmrr->type = DMAR_RMRR;
665 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
666 rmrr->segment = segment;
667 rmrr->bar = bar;
668 rmrr->limit = limit;
669
670 return rmrr->length;
671}
672
Werner Zehd4d76952016-07-27 06:56:36 +0200673unsigned long acpi_create_dmar_atsr(unsigned long current, u8 flags,
674 u16 segment)
675{
676 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)current;
677 memset(atsr, 0, sizeof(*atsr));
678 atsr->type = DMAR_ATSR;
679 atsr->length = sizeof(*atsr); /* will be fixed up later */
680 atsr->flags = flags;
681 atsr->segment = segment;
682
683 return atsr->length;
684}
685
John Zhao76e70672019-04-04 11:03:28 -0700686unsigned long acpi_create_dmar_rhsa(unsigned long current, u64 base_addr,
687 u32 proximity_domain)
688{
689 dmar_rhsa_entry_t *rhsa = (dmar_rhsa_entry_t *)current;
690 memset(rhsa, 0, sizeof(*rhsa));
691 rhsa->type = DMAR_RHSA;
692 rhsa->length = sizeof(*rhsa);
693 rhsa->base_address = base_addr;
694 rhsa->proximity_domain = proximity_domain;
695
696 return rhsa->length;
697}
698
699unsigned long acpi_create_dmar_andd(unsigned long current, u8 device_number,
700 const char *device_name)
701{
702 dmar_andd_entry_t *andd = (dmar_andd_entry_t *)current;
703 int andd_len = sizeof(dmar_andd_entry_t) + strlen(device_name) + 1;
704 memset(andd, 0, andd_len);
705 andd->type = DMAR_ANDD;
706 andd->length = andd_len;
707 andd->device_number = device_number;
708 memcpy(&andd->device_name, device_name, strlen(device_name));
709
710 return andd->length;
711}
712
John Zhao091532d2021-04-17 16:03:21 -0700713unsigned long acpi_create_dmar_satc(unsigned long current, u8 flags, u16 segment)
John Zhao6edbb182021-03-24 11:55:09 -0700714{
715 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)current;
John Zhao091532d2021-04-17 16:03:21 -0700716 int satc_len = sizeof(dmar_satc_entry_t);
John Zhao6edbb182021-03-24 11:55:09 -0700717 memset(satc, 0, satc_len);
718 satc->type = DMAR_SATC;
719 satc->length = satc_len;
720 satc->flags = flags;
721 satc->segment_number = segment;
John Zhao6edbb182021-03-24 11:55:09 -0700722
723 return satc->length;
724}
725
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200726void acpi_dmar_drhd_fixup(unsigned long base, unsigned long current)
727{
728 dmar_entry_t *drhd = (dmar_entry_t *)base;
729 drhd->length = current - base;
730}
731
Matt DeVillier7866d492018-03-29 14:59:57 +0200732void acpi_dmar_rmrr_fixup(unsigned long base, unsigned long current)
733{
734 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)base;
735 rmrr->length = current - base;
736}
737
Werner Zehd4d76952016-07-27 06:56:36 +0200738void acpi_dmar_atsr_fixup(unsigned long base, unsigned long current)
739{
740 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)base;
741 atsr->length = current - base;
742}
743
John Zhao6edbb182021-03-24 11:55:09 -0700744void acpi_dmar_satc_fixup(unsigned long base, unsigned long current)
745{
746 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)base;
747 satc->length = current - base;
748}
749
Matt DeVillier7866d492018-03-29 14:59:57 +0200750static unsigned long acpi_create_dmar_ds(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100751 enum dev_scope_type type, u8 enumeration_id, u8 bus, u8 dev, u8 fn)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200752{
Nico Huber6c4751d2015-10-26 12:03:54 +0100753 /* we don't support longer paths yet */
754 const size_t dev_scope_length = sizeof(dev_scope_t) + 2;
755
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200756 dev_scope_t *ds = (dev_scope_t *)current;
Nico Huber6c4751d2015-10-26 12:03:54 +0100757 memset(ds, 0, dev_scope_length);
758 ds->type = type;
759 ds->length = dev_scope_length;
760 ds->enumeration = enumeration_id;
761 ds->start_bus = bus;
762 ds->path[0].dev = dev;
763 ds->path[0].fn = fn;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200764
765 return ds->length;
766}
767
Matt DeVillier7866d492018-03-29 14:59:57 +0200768unsigned long acpi_create_dmar_ds_pci_br(unsigned long current, u8 bus,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200769 u8 dev, u8 fn)
770{
Matt DeVillier7866d492018-03-29 14:59:57 +0200771 return acpi_create_dmar_ds(current,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200772 SCOPE_PCI_SUB, 0, bus, dev, fn);
773}
774
Matt DeVillier7866d492018-03-29 14:59:57 +0200775unsigned long acpi_create_dmar_ds_pci(unsigned long current, u8 bus,
Nico Huber6c4751d2015-10-26 12:03:54 +0100776 u8 dev, u8 fn)
777{
Matt DeVillier7866d492018-03-29 14:59:57 +0200778 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100779 SCOPE_PCI_ENDPOINT, 0, bus, dev, fn);
780}
781
Matt DeVillier7866d492018-03-29 14:59:57 +0200782unsigned long acpi_create_dmar_ds_ioapic(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100783 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
784{
Matt DeVillier7866d492018-03-29 14:59:57 +0200785 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100786 SCOPE_IOAPIC, enumeration_id, bus, dev, fn);
787}
788
Matt DeVillier7866d492018-03-29 14:59:57 +0200789unsigned long acpi_create_dmar_ds_msi_hpet(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100790 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
791{
Matt DeVillier7866d492018-03-29 14:59:57 +0200792 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100793 SCOPE_MSI_HPET, enumeration_id, bus, dev, fn);
794}
795
Uwe Hermann622824c2010-11-19 15:14:42 +0000796/* http://h21007.www2.hp.com/portal/download/files/unprot/Itanium/slit.pdf */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200797void acpi_create_slit(acpi_slit_t *slit,
798 unsigned long (*acpi_fill_slit)(unsigned long current))
Yinghai Lud4b278c2006-10-04 20:46:15 +0000799{
Uwe Hermann622824c2010-11-19 15:14:42 +0000800 acpi_header_t *header = &(slit->header);
801 unsigned long current = (unsigned long)slit + sizeof(acpi_slit_t);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000802
Uwe Hermann622824c2010-11-19 15:14:42 +0000803 memset((void *)slit, 0, sizeof(acpi_slit_t));
Yinghai Lud4b278c2006-10-04 20:46:15 +0000804
John Zhao2ba303e2019-05-28 16:48:14 -0700805 if (!header)
806 return;
807
Uwe Hermann622824c2010-11-19 15:14:42 +0000808 /* Fill out header fields. */
809 memcpy(header->signature, "SLIT", 4);
810 memcpy(header->oem_id, OEM_ID, 6);
811 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
812 memcpy(header->asl_compiler_id, ASLC, 4);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000813
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100814 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000815 header->length = sizeof(acpi_slit_t);
Marc Jones93a51762018-08-22 18:57:24 -0600816 header->revision = get_acpi_table_revision(SLIT);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000817
Uwe Hermann622824c2010-11-19 15:14:42 +0000818 current = acpi_fill_slit(current);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000819
Uwe Hermann622824c2010-11-19 15:14:42 +0000820 /* (Re)calculate length and checksum. */
821 header->length = current - (unsigned long)slit;
822 header->checksum = acpi_checksum((void *)slit, header->length);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000823}
824
Uwe Hermann622824c2010-11-19 15:14:42 +0000825/* http://www.intel.com/hardwaredesign/hpetspec_1.pdf */
Stefan Reinauer777224c2005-01-19 14:06:41 +0000826void acpi_create_hpet(acpi_hpet_t *hpet)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000827{
Uwe Hermann622824c2010-11-19 15:14:42 +0000828 acpi_header_t *header = &(hpet->header);
829 acpi_addr_t *addr = &(hpet->addr);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000830
Stefan Reinauera7648c22004-01-29 17:31:34 +0000831 memset((void *)hpet, 0, sizeof(acpi_hpet_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000832
John Zhao2ba303e2019-05-28 16:48:14 -0700833 if (!header)
834 return;
835
Uwe Hermann622824c2010-11-19 15:14:42 +0000836 /* Fill out header fields. */
Stefan Reinauer4704dc52009-07-22 01:11:37 +0000837 memcpy(header->signature, "HPET", 4);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000838 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000839 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000840 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000841
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100842 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000843 header->length = sizeof(acpi_hpet_t);
Marc Jones93a51762018-08-22 18:57:24 -0600844 header->revision = get_acpi_table_revision(HPET);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000845
Uwe Hermann622824c2010-11-19 15:14:42 +0000846 /* Fill out HPET address. */
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200847 addr->space_id = ACPI_ADDRESS_SPACE_MEMORY;
Uwe Hermann622824c2010-11-19 15:14:42 +0000848 addr->bit_width = 64;
849 addr->bit_offset = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200850 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
851 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000852
Lee Leahy024b13d2017-03-16 13:41:11 -0700853 hpet->id = *(unsigned int *)CONFIG_HPET_ADDRESS;
Uwe Hermann622824c2010-11-19 15:14:42 +0000854 hpet->number = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200855 hpet->min_tick = CONFIG_HPET_MIN_TICKS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000856
Uwe Hermann622824c2010-11-19 15:14:42 +0000857 header->checksum = acpi_checksum((void *)hpet, sizeof(acpi_hpet_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000858}
Uwe Hermann622824c2010-11-19 15:14:42 +0000859
Rocky Phaguraeff07132021-01-10 15:42:50 -0800860/*
861 * This method adds the ACPI error injection capability. It fills the default information.
862 * HW dependent code (caller) can modify the defaults upon return. If no changes are necessary
863 * and the defaults are acceptable then caller can simply add the table (acpi_add_table).
864 * INPUTS:
865 * einj - ptr to the starting location of EINJ table
866 * actions - number of actions to trigger an error (HW dependent)
867 * addr - address of trigger action table. This should be ACPI reserved memory and it will be
868 * shared between OS and FW.
869 */
870void acpi_create_einj(acpi_einj_t *einj, uintptr_t addr, u8 actions)
871{
872 int i;
873 acpi_header_t *header = &(einj->header);
874 acpi_injection_header_t *inj_header = &(einj->inj_header);
875 acpi_einj_smi_t *einj_smi = (acpi_einj_smi_t *)addr;
876 acpi_einj_trigger_table_t *tat;
877 if (!header)
878 return;
879
880 printk(BIOS_DEBUG, "%s einj_smi = %p\n", __func__, einj_smi);
881 memset(einj_smi, 0, sizeof(acpi_einj_smi_t));
882 tat = (acpi_einj_trigger_table_t *)(einj_smi + sizeof(acpi_einj_smi_t));
883 tat->header_size = 16;
884 tat->revision = 0;
885 tat->table_size = sizeof(acpi_einj_trigger_table_t) +
886 sizeof(acpi_einj_action_table_t) * actions - 1;
887 tat->entry_count = actions;
888 printk(BIOS_DEBUG, "%s trigger_action_table = %p\n", __func__, tat);
889
890 for (i = 0; i < actions; i++) {
891 tat->trigger_action[i].action = TRIGGER_ERROR;
892 tat->trigger_action[i].instruction = NO_OP;
893 tat->trigger_action[i].flags = FLAG_IGNORE;
894 tat->trigger_action[i].reg.space_id = ACPI_ADDRESS_SPACE_MEMORY;
895 tat->trigger_action[i].reg.bit_width = 64;
896 tat->trigger_action[i].reg.bit_offset = 0;
897 tat->trigger_action[i].reg.access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
898 tat->trigger_action[i].reg.addr = 0;
899 tat->trigger_action[i].value = 0;
900 tat->trigger_action[i].mask = 0xFFFFFFFF;
901 }
902
903 acpi_einj_action_table_t default_actions[ACTION_COUNT] = {
904 [0] = {
905 .action = BEGIN_INJECT_OP,
906 .instruction = WRITE_REGISTER_VALUE,
907 .flags = FLAG_PRESERVE,
908 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
909 .value = 0,
910 .mask = 0xFFFFFFFF
911 },
912 [1] = {
913 .action = GET_TRIGGER_ACTION_TABLE,
914 .instruction = READ_REGISTER,
915 .flags = FLAG_IGNORE,
916 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->trigger_action_table),
917 .value = 0,
918 .mask = 0xFFFFFFFFFFFFFFFF
919 },
920 [2] = {
921 .action = SET_ERROR_TYPE,
922 .instruction = WRITE_REGISTER,
923 .flags = FLAG_PRESERVE,
924 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inject[0]),
925 .value = 0,
926 .mask = 0xFFFFFFFF
927 },
928 [3] = {
929 .action = GET_ERROR_TYPE,
930 .instruction = READ_REGISTER,
931 .flags = FLAG_IGNORE,
932 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inj_cap),
933 .value = 0,
934 .mask = 0xFFFFFFFF
935 },
936 [4] = {
937 .action = END_INJECT_OP,
938 .instruction = WRITE_REGISTER_VALUE,
939 .flags = FLAG_PRESERVE,
940 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
941 .value = 0,
942 .mask = 0xFFFFFFFF
943
944 },
945 [5] = {
946 .action = EXECUTE_INJECT_OP,
947 .instruction = WRITE_REGISTER_VALUE,
948 .flags = FLAG_PRESERVE,
949 .reg = EINJ_REG_IO(),
950 .value = 0x9a,
951 .mask = 0xFFFF,
952 },
953 [6] = {
954 .action = CHECK_BUSY_STATUS,
955 .instruction = READ_REGISTER_VALUE,
956 .flags = FLAG_IGNORE,
957 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_status),
958 .value = 1,
959 .mask = 1,
960 },
961 [7] = {
962 .action = GET_CMD_STATUS,
963 .instruction = READ_REGISTER,
964 .flags = FLAG_PRESERVE,
965 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->cmd_sts),
966 .value = 0,
967 .mask = 0x1fe,
968 },
969 [8] = {
970 .action = SET_ERROR_TYPE_WITH_ADDRESS,
971 .instruction = WRITE_REGISTER,
972 .flags = FLAG_PRESERVE,
973 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->setaddrtable),
974 .value = 1,
975 .mask = 0xffffffff
976 }
977 };
978
979 einj_smi->err_inj_cap = ACPI_EINJ_DEFAULT_CAP;
980 einj_smi->trigger_action_table = (u64) (uintptr_t)tat;
981
982 for (i = 0; i < ACTION_COUNT; i++)
983 printk(BIOS_DEBUG, "default_actions[%d].reg.addr is %llx\n", i,
984 default_actions[i].reg.addr);
985
Rocky Phagurab46a9e52021-05-21 13:34:03 -0700986 memset((void *)einj, 0, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800987
988 /* Fill out header fields. */
989 memcpy(header->signature, "EINJ", 4);
990 memcpy(header->oem_id, OEM_ID, 6);
991 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
992 memcpy(header->asl_compiler_id, ASLC, 4);
993
994 header->asl_compiler_revision = asl_revision;
995 header->length = sizeof(acpi_einj_t);
996 header->revision = 1;
997 inj_header->einj_header_size = sizeof(acpi_injection_header_t);
998 inj_header->entry_count = ACTION_COUNT;
999
1000 printk(BIOS_DEBUG, "%s einj->action_table = %p\n",
1001 __func__, einj->action_table);
1002 memcpy((void *)einj->action_table, (void *)default_actions, sizeof(einj->action_table));
Rocky Phagurab46a9e52021-05-21 13:34:03 -07001003 header->checksum = acpi_checksum((void *)einj, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -08001004}
1005
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001006void acpi_create_vfct(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301007 acpi_vfct_t *vfct,
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001008 unsigned long (*acpi_fill_vfct)(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301009 acpi_vfct_t *vfct_struct, unsigned long current))
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001010{
1011 acpi_header_t *header = &(vfct->header);
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301012 unsigned long current = (unsigned long)vfct + sizeof(acpi_vfct_t);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001013
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301014 memset((void *)vfct, 0, sizeof(acpi_vfct_t));
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001015
John Zhao2ba303e2019-05-28 16:48:14 -07001016 if (!header)
1017 return;
1018
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001019 /* Fill out header fields. */
1020 memcpy(header->signature, "VFCT", 4);
1021 memcpy(header->oem_id, OEM_ID, 6);
1022 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1023 memcpy(header->asl_compiler_id, ASLC, 4);
1024
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001025 header->asl_compiler_revision = asl_revision;
Marc Jones93a51762018-08-22 18:57:24 -06001026 header->revision = get_acpi_table_revision(VFCT);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001027
1028 current = acpi_fill_vfct(device, vfct, current);
1029
Kyösti Mälkkifb493792019-06-30 06:29:52 +03001030 /* If no BIOS image, return with header->length == 0. */
1031 if (!vfct->VBIOSImageOffset)
1032 return;
1033
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001034 /* (Re)calculate length and checksum. */
1035 header->length = current - (unsigned long)vfct;
1036 header->checksum = acpi_checksum((void *)vfct, header->length);
1037}
1038
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001039void acpi_create_ipmi(const struct device *device,
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001040 struct acpi_spmi *spmi,
1041 const u16 ipmi_revision,
1042 const acpi_addr_t *addr,
1043 const enum acpi_ipmi_interface_type type,
1044 const s8 gpe_interrupt,
1045 const u32 apic_interrupt,
1046 const u32 uid)
1047{
1048 acpi_header_t *header = &(spmi->header);
1049 memset((void *)spmi, 0, sizeof(struct acpi_spmi));
1050
1051 /* Fill out header fields. */
1052 memcpy(header->signature, "SPMI", 4);
1053 memcpy(header->oem_id, OEM_ID, 6);
1054 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1055 memcpy(header->asl_compiler_id, ASLC, 4);
1056
1057 header->asl_compiler_revision = asl_revision;
1058 header->length = sizeof(struct acpi_spmi);
1059 header->revision = get_acpi_table_revision(SPMI);
1060
1061 spmi->reserved = 1;
1062
1063 if (device->path.type == DEVICE_PATH_PCI) {
1064 spmi->pci_device_flag = ACPI_IPMI_PCI_DEVICE_FLAG;
1065 spmi->pci_bus = device->bus->secondary;
1066 spmi->pci_device = device->path.pci.devfn >> 3;
1067 spmi->pci_function = device->path.pci.devfn & 0x7;
1068 } else if (type != IPMI_INTERFACE_SSIF) {
1069 memcpy(spmi->uid, &uid, sizeof(spmi->uid));
1070 }
1071
1072 spmi->base_address = *addr;
1073 spmi->specification_revision = ipmi_revision;
1074
1075 spmi->interface_type = type;
1076
1077 if (gpe_interrupt >= 0 && gpe_interrupt < 32) {
1078 spmi->gpe = gpe_interrupt;
1079 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_SCI;
1080 }
1081 if (apic_interrupt > 0) {
1082 spmi->global_system_interrupt = apic_interrupt;
1083 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_APIC;
1084 }
1085
1086 /* Calculate checksum. */
1087 header->checksum = acpi_checksum((void *)spmi, header->length);
1088}
1089
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001090void acpi_create_ivrs(acpi_ivrs_t *ivrs,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001091 unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t *ivrs_struct,
1092 unsigned long current))
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001093{
1094 acpi_header_t *header = &(ivrs->header);
1095 unsigned long current = (unsigned long)ivrs + sizeof(acpi_ivrs_t);
1096
1097 memset((void *)ivrs, 0, sizeof(acpi_ivrs_t));
1098
John Zhao2ba303e2019-05-28 16:48:14 -07001099 if (!header)
1100 return;
1101
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001102 /* Fill out header fields. */
1103 memcpy(header->signature, "IVRS", 4);
1104 memcpy(header->oem_id, OEM_ID, 6);
1105 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1106 memcpy(header->asl_compiler_id, ASLC, 4);
1107
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001108 header->asl_compiler_revision = asl_revision;
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001109 header->length = sizeof(acpi_ivrs_t);
Marc Jones93a51762018-08-22 18:57:24 -06001110 header->revision = get_acpi_table_revision(IVRS);
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001111
1112 current = acpi_fill_ivrs(ivrs, current);
1113
1114 /* (Re)calculate length and checksum. */
1115 header->length = current - (unsigned long)ivrs;
1116 header->checksum = acpi_checksum((void *)ivrs, header->length);
1117}
1118
Jason Glenesk61624b22020-11-02 20:06:23 -08001119void acpi_create_crat(struct acpi_crat_header *crat,
1120 unsigned long (*acpi_fill_crat)(struct acpi_crat_header *crat_struct,
1121 unsigned long current))
1122{
1123 acpi_header_t *header = &(crat->header);
1124 unsigned long current = (unsigned long)crat + sizeof(struct acpi_crat_header);
1125
1126 memset((void *)crat, 0, sizeof(struct acpi_crat_header));
1127
1128 if (!header)
1129 return;
1130
1131 /* Fill out header fields. */
1132 memcpy(header->signature, "CRAT", 4);
1133 memcpy(header->oem_id, OEM_ID, 6);
1134 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1135 memcpy(header->asl_compiler_id, ASLC, 4);
1136
1137 header->asl_compiler_revision = asl_revision;
1138 header->length = sizeof(struct acpi_crat_header);
1139 header->revision = get_acpi_table_revision(CRAT);
1140
1141 current = acpi_fill_crat(crat, current);
1142
1143 /* (Re)calculate length and checksum. */
1144 header->length = current - (unsigned long)crat;
1145 header->checksum = acpi_checksum((void *)crat, header->length);
1146}
1147
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001148unsigned long acpi_write_hpet(const struct device *device, unsigned long current,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001149 acpi_rsdp_t *rsdp)
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001150{
1151 acpi_hpet_t *hpet;
1152
1153 /*
1154 * We explicitly add these tables later on:
1155 */
1156 printk(BIOS_DEBUG, "ACPI: * HPET\n");
1157
1158 hpet = (acpi_hpet_t *) current;
1159 current += sizeof(acpi_hpet_t);
Felix Heldc4697122019-06-20 13:50:17 +02001160 current = ALIGN_UP(current, 16);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001161 acpi_create_hpet(hpet);
1162 acpi_add_table(rsdp, hpet);
1163
1164 return current;
1165}
1166
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001167void acpi_create_dbg2(acpi_dbg2_header_t *dbg2,
1168 int port_type, int port_subtype,
1169 acpi_addr_t *address, uint32_t address_size,
1170 const char *device_path)
1171{
1172 uintptr_t current;
1173 acpi_dbg2_device_t *device;
1174 uint32_t *dbg2_addr_size;
1175 acpi_header_t *header;
1176 size_t path_len;
1177 const char *path;
1178 char *namespace;
1179
1180 /* Fill out header fields. */
1181 current = (uintptr_t)dbg2;
1182 memset(dbg2, 0, sizeof(acpi_dbg2_header_t));
1183 header = &(dbg2->header);
John Zhao2ba303e2019-05-28 16:48:14 -07001184
1185 if (!header)
1186 return;
1187
Marc Jones93a51762018-08-22 18:57:24 -06001188 header->revision = get_acpi_table_revision(DBG2);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001189 memcpy(header->signature, "DBG2", 4);
1190 memcpy(header->oem_id, OEM_ID, 6);
1191 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1192 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001193 header->asl_compiler_revision = asl_revision;
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001194
1195 /* One debug device defined */
1196 dbg2->devices_offset = sizeof(acpi_dbg2_header_t);
1197 dbg2->devices_count = 1;
1198 current += sizeof(acpi_dbg2_header_t);
1199
1200 /* Device comes after the header */
1201 device = (acpi_dbg2_device_t *)current;
1202 memset(device, 0, sizeof(acpi_dbg2_device_t));
1203 current += sizeof(acpi_dbg2_device_t);
1204
1205 device->revision = 0;
1206 device->address_count = 1;
1207 device->port_type = port_type;
1208 device->port_subtype = port_subtype;
1209
1210 /* Base Address comes after device structure */
1211 memcpy((void *)current, address, sizeof(acpi_addr_t));
1212 device->base_address_offset = current - (uintptr_t)device;
1213 current += sizeof(acpi_addr_t);
1214
1215 /* Address Size comes after address structure */
1216 dbg2_addr_size = (uint32_t *)current;
1217 device->address_size_offset = current - (uintptr_t)device;
1218 *dbg2_addr_size = address_size;
1219 current += sizeof(uint32_t);
1220
1221 /* Namespace string comes last, use '.' if not provided */
1222 path = device_path ? : ".";
1223 /* Namespace string length includes NULL terminator */
1224 path_len = strlen(path) + 1;
1225 namespace = (char *)current;
1226 device->namespace_string_length = path_len;
1227 device->namespace_string_offset = current - (uintptr_t)device;
1228 strncpy(namespace, path, path_len);
1229 current += path_len;
1230
1231 /* Update structure lengths and checksum */
1232 device->length = current - (uintptr_t)device;
1233 header->length = current - (uintptr_t)dbg2;
1234 header->checksum = acpi_checksum((uint8_t *)dbg2, header->length);
1235}
1236
1237unsigned long acpi_write_dbg2_pci_uart(acpi_rsdp_t *rsdp, unsigned long current,
Aamir Bohrae825d3f2019-07-30 10:11:41 +05301238 const struct device *dev, uint8_t access_size)
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001239{
1240 acpi_dbg2_header_t *dbg2 = (acpi_dbg2_header_t *)current;
1241 struct resource *res;
1242 acpi_addr_t address;
1243
1244 if (!dev) {
Wim Vervoorn6cd52432020-02-03 14:41:46 +01001245 printk(BIOS_DEBUG, "%s: Device not found\n", __func__);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001246 return current;
1247 }
Mario Scheithauerf1eb0ea2017-11-21 13:52:53 +01001248 if (!dev->enabled) {
1249 printk(BIOS_INFO, "%s: Device not enabled\n", __func__);
1250 return current;
1251 }
Angel Pons32d09be2021-11-03 13:27:45 +01001252 res = probe_resource(dev, PCI_BASE_ADDRESS_0);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001253 if (!res) {
1254 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
1255 __func__, dev_path(dev));
1256 return current;
1257 }
1258
1259 memset(&address, 0, sizeof(address));
1260 if (res->flags & IORESOURCE_IO)
1261 address.space_id = ACPI_ADDRESS_SPACE_IO;
1262 else if (res->flags & IORESOURCE_MEM)
1263 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
1264 else {
1265 printk(BIOS_ERR, "%s: Unknown address space type\n", __func__);
1266 return current;
1267 }
1268
1269 address.addrl = (uint32_t)res->base;
1270 address.addrh = (uint32_t)((res->base >> 32) & 0xffffffff);
1271 address.access_size = access_size;
1272
1273 acpi_create_dbg2(dbg2,
1274 ACPI_DBG2_PORT_SERIAL,
1275 ACPI_DBG2_PORT_SERIAL_16550,
1276 &address, res->size,
1277 acpi_device_path(dev));
1278
1279 if (dbg2->header.length) {
1280 current += dbg2->header.length;
1281 current = acpi_align_current(current);
1282 acpi_add_table(rsdp, dbg2);
1283 }
1284
1285 return current;
1286}
1287
Stefan Reinauer777224c2005-01-19 14:06:41 +00001288void acpi_create_facs(acpi_facs_t *facs)
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001289{
Uwe Hermann622824c2010-11-19 15:14:42 +00001290 memset((void *)facs, 0, sizeof(acpi_facs_t));
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001291
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001292 memcpy(facs->signature, "FACS", 4);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001293 facs->length = sizeof(acpi_facs_t);
1294 facs->hardware_signature = 0;
1295 facs->firmware_waking_vector = 0;
1296 facs->global_lock = 0;
1297 facs->flags = 0;
1298 facs->x_firmware_waking_vector_l = 0;
1299 facs->x_firmware_waking_vector_h = 0;
Marc Jones93a51762018-08-22 18:57:24 -06001300 facs->version = get_acpi_table_revision(FACS);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001301}
Stefan Reinauer777224c2005-01-19 14:06:41 +00001302
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001303static void acpi_write_rsdt(acpi_rsdt_t *rsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001304{
Uwe Hermann622824c2010-11-19 15:14:42 +00001305 acpi_header_t *header = &(rsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001306
John Zhao2ba303e2019-05-28 16:48:14 -07001307 if (!header)
1308 return;
1309
Uwe Hermann622824c2010-11-19 15:14:42 +00001310 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001311 memcpy(header->signature, "RSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001312 memcpy(header->oem_id, oem_id, 6);
1313 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +00001314 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001315
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001316 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +00001317 header->length = sizeof(acpi_rsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001318 header->revision = get_acpi_table_revision(RSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001319
Uwe Hermann622824c2010-11-19 15:14:42 +00001320 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauer688b3852004-01-28 16:56:14 +00001321
Uwe Hermann622824c2010-11-19 15:14:42 +00001322 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001323 header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001324}
1325
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001326static void acpi_write_xsdt(acpi_xsdt_t *xsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001327{
Uwe Hermann622824c2010-11-19 15:14:42 +00001328 acpi_header_t *header = &(xsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001329
John Zhao2ba303e2019-05-28 16:48:14 -07001330 if (!header)
1331 return;
1332
Uwe Hermann622824c2010-11-19 15:14:42 +00001333 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001334 memcpy(header->signature, "XSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001335 memcpy(header->oem_id, oem_id, 6);
1336 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001337 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001338
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001339 header->asl_compiler_revision = asl_revision;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001340 header->length = sizeof(acpi_xsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001341 header->revision = get_acpi_table_revision(XSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001342
Uwe Hermann622824c2010-11-19 15:14:42 +00001343 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001344
Uwe Hermann622824c2010-11-19 15:14:42 +00001345 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001346 header->checksum = acpi_checksum((void *)xsdt, sizeof(acpi_xsdt_t));
1347}
1348
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001349static void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt,
1350 acpi_xsdt_t *xsdt, char *oem_id)
Stefan Reinauer688b3852004-01-28 16:56:14 +00001351{
Stefan Reinauerd18faac2009-11-05 18:06:43 +00001352 memset(rsdp, 0, sizeof(acpi_rsdp_t));
Uwe Hermann622824c2010-11-19 15:14:42 +00001353
Stefan Reinauer688b3852004-01-28 16:56:14 +00001354 memcpy(rsdp->signature, RSDP_SIG, 8);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001355 memcpy(rsdp->oem_id, oem_id, 6);
Uwe Hermann622824c2010-11-19 15:14:42 +00001356
1357 rsdp->length = sizeof(acpi_rsdp_t);
Stefan Reinauerdefee172015-06-18 01:11:19 -07001358 rsdp->rsdt_address = (uintptr_t)rsdt;
Uwe Hermann622824c2010-11-19 15:14:42 +00001359
1360 /*
1361 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2.
1362 *
1363 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
1364 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
1365 * revision 0).
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001366 */
1367 if (xsdt == NULL) {
Uwe Hermann622824c2010-11-19 15:14:42 +00001368 rsdp->revision = 0;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001369 } else {
Stefan Reinauerdefee172015-06-18 01:11:19 -07001370 rsdp->xsdt_address = (u64)(uintptr_t)xsdt;
Marc Jones93a51762018-08-22 18:57:24 -06001371 rsdp->revision = get_acpi_table_revision(RSDP);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001372 }
Uwe Hermann622824c2010-11-19 15:14:42 +00001373
1374 /* Calculate checksums. */
1375 rsdp->checksum = acpi_checksum((void *)rsdp, 20);
1376 rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001377}
1378
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001379unsigned long acpi_create_hest_error_source(acpi_hest_t *hest,
1380 acpi_hest_esd_t *esd, u16 type, void *data, u16 data_len)
zbaocaf494c82012-04-13 13:57:14 +08001381{
1382 acpi_header_t *header = &(hest->header);
1383 acpi_hest_hen_t *hen;
1384 void *pos;
1385 u16 len;
1386
1387 pos = esd;
1388 memset(pos, 0, sizeof(acpi_hest_esd_t));
1389 len = 0;
1390 esd->type = type; /* MCE */
1391 esd->source_id = hest->error_source_count;
1392 esd->flags = 0; /* FIRMWARE_FIRST */
1393 esd->enabled = 1;
1394 esd->prealloc_erecords = 1;
1395 esd->max_section_per_record = 0x1;
1396
1397 len += sizeof(acpi_hest_esd_t);
1398 pos = esd + 1;
1399
1400 switch (type) {
1401 case 0: /* MCE */
1402 break;
1403 case 1: /* CMC */
1404 hen = (acpi_hest_hen_t *) (pos);
1405 memset(pos, 0, sizeof(acpi_hest_hen_t));
1406 hen->type = 3; /* SCI? */
1407 hen->length = sizeof(acpi_hest_hen_t);
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001408 hen->conf_we = 0; /* Configuration Write Enable. */
zbaocaf494c82012-04-13 13:57:14 +08001409 hen->poll_interval = 0;
1410 hen->vector = 0;
1411 hen->sw2poll_threshold_val = 0;
1412 hen->sw2poll_threshold_win = 0;
1413 hen->error_threshold_val = 0;
1414 hen->error_threshold_win = 0;
1415 len += sizeof(acpi_hest_hen_t);
1416 pos = hen + 1;
1417 break;
1418 case 2: /* NMI */
1419 case 6: /* AER Root Port */
1420 case 7: /* AER Endpoint */
1421 case 8: /* AER Bridge */
1422 case 9: /* Generic Hardware Error Source. */
1423 /* TODO: */
1424 break;
1425 default:
1426 printk(BIOS_DEBUG, "Invalid type of Error Source.");
1427 break;
1428 }
Lee Leahy024b13d2017-03-16 13:41:11 -07001429 hest->error_source_count++;
zbaocaf494c82012-04-13 13:57:14 +08001430
1431 memcpy(pos, data, data_len);
1432 len += data_len;
John Zhao2ba303e2019-05-28 16:48:14 -07001433 if (header)
1434 header->length += len;
zbaocaf494c82012-04-13 13:57:14 +08001435
1436 return len;
1437}
1438
1439/* ACPI 4.0 */
Vladimir Serbinenko807127f2014-11-09 13:36:18 +01001440void acpi_write_hest(acpi_hest_t *hest,
1441 unsigned long (*acpi_fill_hest)(acpi_hest_t *hest))
zbaocaf494c82012-04-13 13:57:14 +08001442{
1443 acpi_header_t *header = &(hest->header);
1444
1445 memset(hest, 0, sizeof(acpi_hest_t));
1446
John Zhao2ba303e2019-05-28 16:48:14 -07001447 if (!header)
1448 return;
1449
zbaocaf494c82012-04-13 13:57:14 +08001450 memcpy(header->signature, "HEST", 4);
1451 memcpy(header->oem_id, OEM_ID, 6);
1452 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1453 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001454 header->asl_compiler_revision = asl_revision;
zbaocaf494c82012-04-13 13:57:14 +08001455 header->length += sizeof(acpi_hest_t);
Marc Jones93a51762018-08-22 18:57:24 -06001456 header->revision = get_acpi_table_revision(HEST);
zbaocaf494c82012-04-13 13:57:14 +08001457
1458 acpi_fill_hest(hest);
1459
1460 /* Calculate checksums. */
1461 header->checksum = acpi_checksum((void *)hest, header->length);
1462}
1463
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001464/* ACPI 3.0b */
1465void acpi_write_bert(acpi_bert_t *bert, uintptr_t region, size_t length)
1466{
1467 acpi_header_t *header = &(bert->header);
1468
1469 memset(bert, 0, sizeof(acpi_bert_t));
1470
John Zhao2ba303e2019-05-28 16:48:14 -07001471 if (!header)
1472 return;
1473
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001474 memcpy(header->signature, "BERT", 4);
1475 memcpy(header->oem_id, OEM_ID, 6);
1476 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1477 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001478 header->asl_compiler_revision = asl_revision;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001479 header->length += sizeof(acpi_bert_t);
1480 header->revision = get_acpi_table_revision(BERT);
1481
1482 bert->error_region = region;
1483 bert->region_length = length;
1484
1485 /* Calculate checksums. */
1486 header->checksum = acpi_checksum((void *)bert, header->length);
1487}
1488
Angel Pons79572e42020-07-13 00:17:43 +02001489__weak void arch_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001490__weak void soc_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001491__weak void mainboard_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001492
Lee Leahy024b13d2017-03-16 13:41:11 -07001493void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001494{
1495 acpi_header_t *header = &(fadt->header);
1496
1497 memset((void *) fadt, 0, sizeof(acpi_fadt_t));
John Zhao2ba303e2019-05-28 16:48:14 -07001498
1499 if (!header)
1500 return;
1501
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001502 memcpy(header->signature, "FACP", 4);
1503 header->length = sizeof(acpi_fadt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001504 header->revision = get_acpi_table_revision(FADT);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001505 memcpy(header->oem_id, OEM_ID, 6);
1506 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1507 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +01001508 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001509
1510 fadt->firmware_ctrl = (unsigned long) facs;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001511 fadt->x_firmware_ctl_l = (unsigned long)facs;
1512 fadt->x_firmware_ctl_h = 0;
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001513
1514 fadt->dsdt = (unsigned long) dsdt;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001515 fadt->x_dsdt_l = (unsigned long)dsdt;
1516 fadt->x_dsdt_h = 0;
1517
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001518 /* should be 0 ACPI 3.0 */
1519 fadt->reserved = 0;
1520
Kyösti Mälkkie0d38682020-06-07 12:01:58 +03001521 fadt->preferred_pm_profile = acpi_get_preferred_pm_profile();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001522
Nico Huberd5811372021-07-12 18:11:58 +02001523 if (CONFIG(USE_PC_CMOS_ALTCENTURY))
1524 fadt->century = RTC_CLK_ALTCENTURY;
1525
Angel Pons79572e42020-07-13 00:17:43 +02001526 arch_fill_fadt(fadt);
1527
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +02001528 acpi_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001529
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001530 soc_fill_fadt(fadt);
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001531 mainboard_fill_fadt(fadt);
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001532
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001533 header->checksum =
1534 acpi_checksum((void *) fadt, header->length);
1535}
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001536
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001537void acpi_create_lpit(acpi_lpit_t *lpit)
1538{
1539 acpi_header_t *header = &(lpit->header);
1540 unsigned long current = (unsigned long)lpit + sizeof(acpi_lpit_t);
1541
1542 memset((void *)lpit, 0, sizeof(acpi_lpit_t));
1543
1544 if (!header)
1545 return;
1546
1547 /* Fill out header fields. */
1548 memcpy(header->signature, "LPIT", 4);
1549 memcpy(header->oem_id, OEM_ID, 6);
1550 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1551 memcpy(header->asl_compiler_id, ASLC, 4);
1552
1553 header->asl_compiler_revision = asl_revision;
1554 header->revision = get_acpi_table_revision(LPIT);
1555 header->oem_revision = 42;
1556 header->length = sizeof(acpi_lpit_t);
1557
1558 current = acpi_fill_lpit(current);
1559
1560 /* (Re)calculate length and checksum. */
1561 header->length = current - (unsigned long)lpit;
1562 header->checksum = acpi_checksum((void *)lpit, header->length);
1563}
1564
1565unsigned long acpi_create_lpi_desc_ncst(acpi_lpi_desc_ncst_t *lpi_desc, uint16_t uid)
1566{
1567 memset(lpi_desc, 0, sizeof(acpi_lpi_desc_ncst_t));
1568 lpi_desc->header.length = sizeof(acpi_lpi_desc_ncst_t);
1569 lpi_desc->header.type = ACPI_LPI_DESC_TYPE_NATIVE_CSTATE;
1570 lpi_desc->header.uid = uid;
1571
1572 return lpi_desc->header.length;
1573}
1574
Aaron Durbin64031672018-04-21 14:45:32 -06001575unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001576{
1577 return 0;
1578}
1579
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001580unsigned long write_acpi_tables(unsigned long start)
1581{
1582 unsigned long current;
1583 acpi_rsdp_t *rsdp;
1584 acpi_rsdt_t *rsdt;
1585 acpi_xsdt_t *xsdt;
1586 acpi_fadt_t *fadt;
1587 acpi_facs_t *facs;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001588 acpi_header_t *slic_file, *slic;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001589 acpi_header_t *ssdt;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001590 acpi_header_t *dsdt_file, *dsdt;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001591 acpi_mcfg_t *mcfg;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001592 acpi_tcpa_t *tcpa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001593 acpi_tpm2_t *tpm2;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001594 acpi_madt_t *madt;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001595 acpi_lpit_t *lpit;
Francois Toguo522e0db2021-01-21 09:55:19 -08001596 acpi_bert_t *bert;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +11001597 struct device *dev;
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001598 unsigned long fw;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001599 size_t slic_size, dsdt_size;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001600 char oem_id[6], oem_table_id[8];
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001601
1602 current = start;
1603
1604 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -06001605 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001606
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001607 /* Special case for qemu */
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001608 fw = fw_cfg_acpi_tables(current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001609 if (fw) {
1610 rsdp = NULL;
1611 /* Find RSDP. */
1612 for (void *p = (void *)current; p < (void *)fw; p += 16) {
1613 if (valid_rsdp((acpi_rsdp_t *)p)) {
1614 rsdp = p;
1615 break;
1616 }
1617 }
1618 if (!rsdp)
1619 return fw;
1620
1621 /* Add BOOT0000 for Linux google firmware driver */
1622 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1623 ssdt = (acpi_header_t *)fw;
1624 current = (unsigned long)ssdt + sizeof(acpi_header_t);
1625
1626 memset((void *)ssdt, 0, sizeof(acpi_header_t));
1627
1628 memcpy(&ssdt->signature, "SSDT", 4);
1629 ssdt->revision = get_acpi_table_revision(SSDT);
1630 memcpy(&ssdt->oem_id, OEM_ID, 6);
1631 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
1632 ssdt->oem_revision = 42;
1633 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
1634 ssdt->asl_compiler_revision = asl_revision;
1635 ssdt->length = sizeof(acpi_header_t);
1636
1637 acpigen_set_current((char *) current);
1638
1639 /* Write object to declare coreboot tables */
1640 acpi_ssdt_write_cbtable();
1641
1642 /* (Re)calculate length and checksum. */
1643 ssdt->length = current - (unsigned long)ssdt;
1644 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
1645
1646 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
1647
1648 acpi_add_table(rsdp, ssdt);
1649
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001650 return fw;
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001651 }
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001652
Julius Werner834b3ec2020-03-04 16:52:08 -08001653 dsdt_file = cbfs_map(CONFIG_CBFS_PREFIX "/dsdt.aml", &dsdt_size);
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001654 if (!dsdt_file) {
1655 printk(BIOS_ERR, "No DSDT file, skipping ACPI tables\n");
1656 return current;
1657 }
1658
1659 if (dsdt_file->length > dsdt_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001660 || dsdt_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001661 || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
1662 printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
1663 return current;
1664 }
1665
Julius Werner834b3ec2020-03-04 16:52:08 -08001666 slic_file = cbfs_map(CONFIG_CBFS_PREFIX "/slic", &slic_size);
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001667 if (slic_file
1668 && (slic_file->length > slic_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001669 || slic_file->length < sizeof(acpi_header_t)
Benjamin Doron2b2dc0c2020-09-12 02:55:57 +00001670 || (memcmp(slic_file->signature, "SLIC", 4) != 0
1671 && memcmp(slic_file->signature, "MSDM", 4) != 0))) {
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001672 slic_file = 0;
1673 }
1674
1675 if (slic_file) {
1676 memcpy(oem_id, slic_file->oem_id, 6);
1677 memcpy(oem_table_id, slic_file->oem_table_id, 8);
1678 } else {
1679 memcpy(oem_id, OEM_ID, 6);
1680 memcpy(oem_table_id, ACPI_TABLE_CREATOR, 8);
1681 }
1682
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001683 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
1684
1685 /* We need at least an RSDP and an RSDT Table */
1686 rsdp = (acpi_rsdp_t *) current;
1687 current += sizeof(acpi_rsdp_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001688 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001689 rsdt = (acpi_rsdt_t *) current;
1690 current += sizeof(acpi_rsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001691 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001692 xsdt = (acpi_xsdt_t *) current;
1693 current += sizeof(acpi_xsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001694 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001695
1696 /* clear all table memory */
1697 memset((void *) start, 0, current - start);
1698
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001699 acpi_write_rsdp(rsdp, rsdt, xsdt, oem_id);
1700 acpi_write_rsdt(rsdt, oem_id, oem_table_id);
1701 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001702
1703 printk(BIOS_DEBUG, "ACPI: * FACS\n");
Felix Heldc4697122019-06-20 13:50:17 +02001704 current = ALIGN_UP(current, 64);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001705 facs = (acpi_facs_t *) current;
1706 current += sizeof(acpi_facs_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001707 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001708 acpi_create_facs(facs);
1709
1710 printk(BIOS_DEBUG, "ACPI: * DSDT\n");
1711 dsdt = (acpi_header_t *) current;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001712 memcpy(dsdt, dsdt_file, sizeof(acpi_header_t));
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001713 if (dsdt->length >= sizeof(acpi_header_t)) {
1714 current += sizeof(acpi_header_t);
1715
1716 acpigen_set_current((char *) current);
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001717
Kyösti Mälkki37eb24b2021-01-11 18:40:37 +02001718 if (CONFIG(ACPI_SOC_NVS))
1719 acpi_fill_gnvs();
Kyösti Mälkki3dc17922021-03-16 19:01:48 +02001720 if (CONFIG(CHROMEOS_NVS))
1721 acpi_fill_cnvs();
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001722
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001723 for (dev = all_devices; dev; dev = dev->next)
Nico Huber68680dd2020-03-31 17:34:52 +02001724 if (dev->ops && dev->ops->acpi_inject_dsdt)
1725 dev->ops->acpi_inject_dsdt(dev);
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001726 current = (unsigned long) acpigen_get_current();
1727 memcpy((char *)current,
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001728 (char *)dsdt_file + sizeof(acpi_header_t),
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001729 dsdt->length - sizeof(acpi_header_t));
1730 current += dsdt->length - sizeof(acpi_header_t);
1731
1732 /* (Re)calculate length and checksum. */
1733 dsdt->length = current - (unsigned long)dsdt;
1734 dsdt->checksum = 0;
1735 dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
1736 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001737
Aaron Durbin07a1b282015-12-10 17:07:38 -06001738 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001739
1740 printk(BIOS_DEBUG, "ACPI: * FADT\n");
1741 fadt = (acpi_fadt_t *) current;
1742 current += sizeof(acpi_fadt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001743 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001744
1745 acpi_create_fadt(fadt, facs, dsdt);
1746 acpi_add_table(rsdp, fadt);
1747
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001748 if (slic_file) {
1749 printk(BIOS_DEBUG, "ACPI: * SLIC\n");
1750 slic = (acpi_header_t *)current;
1751 memcpy(slic, slic_file, slic_file->length);
1752 current += slic_file->length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001753 current = acpi_align_current(current);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001754 acpi_add_table(rsdp, slic);
1755 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001756
1757 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1758 ssdt = (acpi_header_t *)current;
1759 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001760 if (ssdt->length > sizeof(acpi_header_t)) {
1761 current += ssdt->length;
1762 acpi_add_table(rsdp, ssdt);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001763 current = acpi_align_current(current);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001764 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001765
1766 printk(BIOS_DEBUG, "ACPI: * MCFG\n");
1767 mcfg = (acpi_mcfg_t *) current;
1768 acpi_create_mcfg(mcfg);
1769 if (mcfg->header.length > sizeof(acpi_mcfg_t)) {
1770 current += mcfg->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001771 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001772 acpi_add_table(rsdp, mcfg);
1773 }
1774
Julius Wernercd49cce2019-03-05 16:53:33 -08001775 if (CONFIG(TPM1)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001776 printk(BIOS_DEBUG, "ACPI: * TCPA\n");
1777 tcpa = (acpi_tcpa_t *) current;
1778 acpi_create_tcpa(tcpa);
1779 if (tcpa->header.length >= sizeof(acpi_tcpa_t)) {
1780 current += tcpa->header.length;
1781 current = acpi_align_current(current);
1782 acpi_add_table(rsdp, tcpa);
1783 }
1784 }
1785
Julius Wernercd49cce2019-03-05 16:53:33 -08001786 if (CONFIG(TPM2)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001787 printk(BIOS_DEBUG, "ACPI: * TPM2\n");
1788 tpm2 = (acpi_tpm2_t *) current;
1789 acpi_create_tpm2(tpm2);
1790 if (tpm2->header.length >= sizeof(acpi_tpm2_t)) {
1791 current += tpm2->header.length;
1792 current = acpi_align_current(current);
1793 acpi_add_table(rsdp, tpm2);
1794 }
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001795 }
1796
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001797 if (CONFIG(ACPI_LPIT)) {
1798 printk(BIOS_DEBUG, "ACPI: * LPIT\n");
1799
1800 lpit = (acpi_lpit_t *)current;
1801 acpi_create_lpit(lpit);
1802 if (lpit->header.length >= sizeof(acpi_lpit_t)) {
1803 current += lpit->header.length;
1804 current = acpi_align_current(current);
1805 acpi_add_table(rsdp, lpit);
1806 }
1807 }
1808
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001809 printk(BIOS_DEBUG, "ACPI: * MADT\n");
1810
1811 madt = (acpi_madt_t *) current;
1812 acpi_create_madt(madt);
1813 if (madt->header.length > sizeof(acpi_madt_t)) {
Lee Leahy024b13d2017-03-16 13:41:11 -07001814 current += madt->header.length;
1815 acpi_add_table(rsdp, madt);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001816 }
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001817
Aaron Durbin07a1b282015-12-10 17:07:38 -06001818 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001819
Felix Heldfba479262021-05-28 16:11:43 +02001820 if (CONFIG(ACPI_BERT)) {
Francois Toguo522e0db2021-01-21 09:55:19 -08001821 void *region;
1822 size_t size;
Francois Toguo522e0db2021-01-21 09:55:19 -08001823 bert = (acpi_bert_t *) current;
Felix Heldfba479262021-05-28 16:11:43 +02001824 if (acpi_soc_get_bert_region(&region, &size) == CB_SUCCESS) {
1825 printk(BIOS_DEBUG, "ACPI: * BERT\n");
1826 acpi_write_bert(bert, (uintptr_t)region, size);
1827 if (bert->header.length >= sizeof(acpi_bert_t)) {
1828 current += bert->header.length;
1829 acpi_add_table(rsdp, bert);
1830 }
1831 current = acpi_align_current(current);
Francois Toguo522e0db2021-01-21 09:55:19 -08001832 }
Francois Toguo522e0db2021-01-21 09:55:19 -08001833 }
1834
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001835 printk(BIOS_DEBUG, "current = %lx\n", current);
1836
1837 for (dev = all_devices; dev; dev = dev->next) {
1838 if (dev->ops && dev->ops->write_acpi_tables) {
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001839 current = dev->ops->write_acpi_tables(dev, current,
1840 rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001841 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001842 }
1843 }
1844
1845 printk(BIOS_INFO, "ACPI: done.\n");
1846 return current;
1847}
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001848
Rudolf Marek33cafe52009-04-13 18:07:02 +00001849static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
1850{
1851 if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0)
1852 return NULL;
1853
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001854 printk(BIOS_DEBUG, "Looking on %p for valid checksum\n", rsdp);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001855
1856 if (acpi_checksum((void *)rsdp, 20) != 0)
1857 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001858 printk(BIOS_DEBUG, "Checksum 1 passed\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001859
1860 if ((rsdp->revision > 1) && (acpi_checksum((void *)rsdp,
1861 rsdp->length) != 0))
1862 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001863 printk(BIOS_DEBUG, "Checksum 2 passed all OK\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001864
1865 return rsdp;
1866}
1867
Rudolf Marek33cafe52009-04-13 18:07:02 +00001868void *acpi_find_wakeup_vector(void)
1869{
1870 char *p, *end;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001871 acpi_rsdt_t *rsdt;
1872 acpi_facs_t *facs;
Martin Rothc5f49262012-12-14 19:17:55 -07001873 acpi_fadt_t *fadt = NULL;
Kyösti Mälkki072d436b2016-06-17 08:44:40 +03001874 acpi_rsdp_t *rsdp = NULL;
Uwe Hermann622824c2010-11-19 15:14:42 +00001875 void *wake_vec;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001876 int i;
1877
Kyösti Mälkkib8c7ea02020-11-17 16:41:38 +02001878 if (!acpi_is_wakeup_s3())
Rudolf Marek33cafe52009-04-13 18:07:02 +00001879 return NULL;
1880
Uwe Hermann622824c2010-11-19 15:14:42 +00001881 printk(BIOS_DEBUG, "Trying to find the wakeup vector...\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001882
Uwe Hermann622824c2010-11-19 15:14:42 +00001883 /* Find RSDP. */
1884 for (p = (char *)0xe0000; p < (char *)0xfffff; p += 16) {
Lee Leahy0b5678f2017-03-16 16:01:40 -07001885 rsdp = valid_rsdp((acpi_rsdp_t *)p);
1886 if (rsdp)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001887 break;
1888 }
1889
Angel Pons98a68ad2018-11-04 12:25:25 +01001890 if (rsdp == NULL) {
1891 printk(BIOS_ALERT,
1892 "No RSDP found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001893 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001894 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001895
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001896 printk(BIOS_DEBUG, "RSDP found at %p\n", rsdp);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001897 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +00001898
Uwe Hermann622824c2010-11-19 15:14:42 +00001899 end = (char *)rsdt + rsdt->header.length;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001900 printk(BIOS_DEBUG, "RSDT found at %p ends at %p\n", rsdt, end);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001901
Uwe Hermann622824c2010-11-19 15:14:42 +00001902 for (i = 0; ((char *)&rsdt->entry[i]) < end; i++) {
Stefan Reinauer71a30182015-07-30 16:28:13 -07001903 fadt = (acpi_fadt_t *)(uintptr_t)rsdt->entry[i];
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001904 if (strncmp((char *)fadt, "FACP", 4) == 0)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001905 break;
1906 fadt = NULL;
1907 }
1908
Angel Pons98a68ad2018-11-04 12:25:25 +01001909 if (fadt == NULL) {
1910 printk(BIOS_ALERT,
1911 "No FADT found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001912 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001913 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001914
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001915 printk(BIOS_DEBUG, "FADT found at %p\n", fadt);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001916 facs = (acpi_facs_t *)(uintptr_t)fadt->firmware_ctrl;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001917
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001918 if (facs == NULL) {
Angel Pons98a68ad2018-11-04 12:25:25 +01001919 printk(BIOS_ALERT,
1920 "No FACS found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001921 return NULL;
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001922 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001923
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001924 printk(BIOS_DEBUG, "FACS found at %p\n", facs);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001925 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001926 printk(BIOS_DEBUG, "OS waking vector is %p\n", wake_vec);
Uwe Hermann622824c2010-11-19 15:14:42 +00001927
Rudolf Marek33cafe52009-04-13 18:07:02 +00001928 return wake_vec;
1929}
1930
Aaron Durbin64031672018-04-21 14:45:32 -06001931__weak int acpi_get_gpe(int gpe)
Duncan Laurie1f6e6812016-09-19 12:04:19 -07001932{
1933 return -1; /* implemented by SOC */
1934}
Marc Jones93a51762018-08-22 18:57:24 -06001935
1936int get_acpi_table_revision(enum acpi_tables table)
1937{
1938 switch (table) {
1939 case FADT:
Patrick Rudolphc02bda02020-02-28 10:19:41 +01001940 return ACPI_FADT_REV_ACPI_6_0;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001941 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 +01001942 return 3;
Marc Jones93a51762018-08-22 18:57:24 -06001943 case MCFG:
1944 return 1;
1945 case TCPA:
1946 return 2;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001947 case TPM2:
1948 return 4;
Martin Roth0949e732021-10-01 14:28:22 -06001949 case SSDT: /* ACPI 3.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001950 return 2;
Martin Roth0949e732021-10-01 14:28:22 -06001951 case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 up to 6.3: 3 */
Marc Jones93a51762018-08-22 18:57:24 -06001952 return 1; /* TODO Should probably be upgraded to 2 */
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -07001953 case HMAT: /* ACPI 6.4: 2 */
1954 return 2;
Marc Jones93a51762018-08-22 18:57:24 -06001955 case DMAR:
1956 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001957 case SLIT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001958 return 1;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001959 case SPMI: /* IMPI 2.0 */
1960 return 5;
Marc Jones93a51762018-08-22 18:57:24 -06001961 case HPET: /* Currently 1. Table added in ACPI 2.0. */
1962 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001963 case VFCT: /* ACPI 2.0/3.0/4.0: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001964 return 1;
1965 case IVRS:
Jason Glenesk1916f892020-07-24 02:51:30 -07001966 return IVRS_FORMAT_MIXED;
Marc Jones93a51762018-08-22 18:57:24 -06001967 case DBG2:
1968 return 0;
Martin Roth0949e732021-10-01 14:28:22 -06001969 case FACS: /* ACPI 2.0/3.0: 1, ACPI 4.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001970 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001971 case RSDT: /* ACPI 1.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001972 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001973 case XSDT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001974 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001975 case RSDP: /* ACPI 2.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001976 return 2;
Rocky Phaguraeff07132021-01-10 15:42:50 -08001977 case EINJ:
1978 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06001979 case HEST:
1980 return 1;
1981 case NHLT:
1982 return 5;
Marshall Dawson44705c62018-09-04 13:47:15 -06001983 case BERT:
1984 return 1;
Jason Glenesk61624b22020-11-02 20:06:23 -08001985 case CRAT:
1986 return 1;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001987 case LPIT: /* ACPI 5.1 up to 6.3: 0 */
1988 return 0;
Marc Jones93a51762018-08-22 18:57:24 -06001989 default:
1990 return -1;
1991 }
1992 return -1;
1993}