blob: 26552982e28b3378274aa0b0ad98eb808c12bf9e [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>
Felix Held7f8c7372022-02-23 17:37:27 +010021#include <arch/mmio.h>
Stefan Reinauer777224c2005-01-19 14:06:41 +000022#include <device/pci.h>
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000023#include <cbmem.h>
Elyes HAOUASe2d152c2019-06-21 07:06:50 +020024#include <commonlib/helpers.h>
Duncan Laurie11290c42012-10-03 19:07:05 -070025#include <cpu/cpu.h>
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +010026#include <cbfs.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010027#include <types.h>
Elyes HAOUAS26071aa2019-02-15 08:21:33 +010028#include <version.h>
Werner Zehdb561e62019-02-19 13:39:56 +010029#include <commonlib/sort.h>
Nico Huberd5811372021-07-12 18:11:58 +020030#include <pc80/mc146818rtc.h>
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000031
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +020032static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp);
33
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000034u8 acpi_checksum(u8 *table, u32 length)
Stefan Reinauer688b3852004-01-28 16:56:14 +000035{
Uwe Hermann622824c2010-11-19 15:14:42 +000036 u8 ret = 0;
Stefan Reinauer688b3852004-01-28 16:56:14 +000037 while (length--) {
38 ret += *table;
39 table++;
40 }
Stefan Reinauera7648c22004-01-29 17:31:34 +000041 return -ret;
Stefan Reinauer688b3852004-01-28 16:56:14 +000042}
43
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000044/**
Uwe Hermann622824c2010-11-19 15:14:42 +000045 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
46 * and checksum.
Stefan Reinauer06feb882004-02-03 16:11:35 +000047 */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000048void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
Stefan Reinauer688b3852004-01-28 16:56:14 +000049{
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000050 int i, entries_num;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000051 acpi_rsdt_t *rsdt;
52 acpi_xsdt_t *xsdt = NULL;
53
Uwe Hermann622824c2010-11-19 15:14:42 +000054 /* The RSDT is mandatory... */
Stefan Reinauerdefee172015-06-18 01:11:19 -070055 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000056
Uwe Hermann622824c2010-11-19 15:14:42 +000057 /* ...while the XSDT is not. */
58 if (rsdp->xsdt_address)
Stefan Reinauerdefee172015-06-18 01:11:19 -070059 xsdt = (acpi_xsdt_t *)((uintptr_t)rsdp->xsdt_address);
Stefan Reinauer14e22772010-04-27 06:56:47 +000060
Uwe Hermann622824c2010-11-19 15:14:42 +000061 /* This should always be MAX_ACPI_TABLES. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000062 entries_num = ARRAY_SIZE(rsdt->entry);
Stefan Reinauer14e22772010-04-27 06:56:47 +000063
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000064 for (i = 0; i < entries_num; i++) {
Uwe Hermann622824c2010-11-19 15:14:42 +000065 if (rsdt->entry[i] == 0)
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000066 break;
Stefan Reinauer688b3852004-01-28 16:56:14 +000067 }
68
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000069 if (i >= entries_num) {
Uwe Hermann622824c2010-11-19 15:14:42 +000070 printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030071 "too many tables.\n");
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000072 return;
73 }
74
Uwe Hermann622824c2010-11-19 15:14:42 +000075 /* Add table to the RSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070076 rsdt->entry[i] = (uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000077
Uwe Hermann622824c2010-11-19 15:14:42 +000078 /* Fix RSDT length or the kernel will assume invalid entries. */
79 rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000080
Uwe Hermann622824c2010-11-19 15:14:42 +000081 /* Re-calculate checksum. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000082 rsdt->header.checksum = 0; /* Hope this won't get optimized away */
Uwe Hermann622824c2010-11-19 15:14:42 +000083 rsdt->header.checksum = acpi_checksum((u8 *)rsdt, rsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000084
Uwe Hermann622824c2010-11-19 15:14:42 +000085 /*
86 * And now the same thing for the XSDT. We use the same index as for
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000087 * now we want the XSDT and RSDT to always be in sync in coreboot.
88 */
89 if (xsdt) {
Uwe Hermann622824c2010-11-19 15:14:42 +000090 /* Add table to the XSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070091 xsdt->entry[i] = (u64)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000092
Uwe Hermann622824c2010-11-19 15:14:42 +000093 /* Fix XSDT length. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000094 xsdt->header.length = sizeof(acpi_header_t) +
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030095 (sizeof(u64) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000096
Uwe Hermann622824c2010-11-19 15:14:42 +000097 /* Re-calculate checksum. */
98 xsdt->header.checksum = 0;
99 xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300100 xsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000101 }
102
Uwe Hermann622824c2010-11-19 15:14:42 +0000103 printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300104 i + 1, entries_num, rsdt->header.length);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000105}
106
Uwe Hermann622824c2010-11-19 15:14:42 +0000107int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300108 u16 seg_nr, u8 start, u8 end)
Stefan Reinauer26d431a2009-01-20 19:17:51 +0000109{
Vladimir Serbinenko60fccdc2014-10-05 11:05:16 +0200110 memset(mmconfig, 0, sizeof(*mmconfig));
Rudolf Mareke6409f22007-11-03 12:50:26 +0000111 mmconfig->base_address = base;
112 mmconfig->base_reserved = 0;
113 mmconfig->pci_segment_group_number = seg_nr;
114 mmconfig->start_bus_number = start;
115 mmconfig->end_bus_number = end;
Uwe Hermann622824c2010-11-19 15:14:42 +0000116
117 return sizeof(acpi_mcfg_mmconfig_t);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000118}
119
Stefan Reinauer777224c2005-01-19 14:06:41 +0000120int acpi_create_madt_lapic(acpi_madt_lapic_t *lapic, u8 cpu, u8 apic)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000121{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530122 lapic->type = LOCAL_APIC; /* Local APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000123 lapic->length = sizeof(acpi_madt_lapic_t);
124 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
125 lapic->processor_id = cpu;
126 lapic->apic_id = apic;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000127
Uwe Hermann622824c2010-11-19 15:14:42 +0000128 return lapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000129}
130
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100131int acpi_create_madt_lx2apic(acpi_madt_lx2apic_t *lapic, u32 cpu, u32 apic)
132{
133 lapic->type = LOCAL_X2APIC; /* Local APIC structure */
134 lapic->reserved = 0;
135 lapic->length = sizeof(acpi_madt_lx2apic_t);
136 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
137 lapic->processor_id = cpu;
138 lapic->x2apic_id = apic;
139
140 return lapic->length;
141}
142
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000143unsigned long acpi_create_madt_lapics(unsigned long current)
144{
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100145 struct device *cpu;
Werner Zeh423adfb2019-03-06 09:31:02 +0100146 int index, apic_ids[CONFIG_MAX_CPUS] = {0}, num_cpus = 0;
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000147
Uwe Hermann622824c2010-11-19 15:14:42 +0000148 for (cpu = all_devices; cpu; cpu = cpu->next) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000149 if ((cpu->path.type != DEVICE_PATH_APIC) ||
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800150 (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER)) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000151 continue;
152 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000153 if (!cpu->enabled)
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000154 continue;
Werner Zehdb561e62019-02-19 13:39:56 +0100155 if (num_cpus >= ARRAY_SIZE(apic_ids))
156 break;
157 apic_ids[num_cpus++] = cpu->path.apic.apic_id;
158 }
Werner Zehfedb36e2019-03-12 07:07:50 +0100159 if (num_cpus > 1)
160 bubblesort(apic_ids, num_cpus, NUM_ASCENDING);
Werner Zehdb561e62019-02-19 13:39:56 +0100161 for (index = 0; index < num_cpus; index++) {
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100162 if (apic_ids[index] < 0xff)
163 current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current,
164 index, apic_ids[index]);
165 else
166 current += acpi_create_madt_lx2apic((acpi_madt_lx2apic_t *)current,
167 index, apic_ids[index]);
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000168 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000169
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000170 return current;
171}
172
Uwe Hermann622824c2010-11-19 15:14:42 +0000173int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300174 u32 gsi_base)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000175{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530176 ioapic->type = IO_APIC; /* I/O APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000177 ioapic->length = sizeof(acpi_madt_ioapic_t);
178 ioapic->reserved = 0x00;
179 ioapic->gsi_base = gsi_base;
180 ioapic->ioapic_id = id;
181 ioapic->ioapic_addr = addr;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000182
Uwe Hermann622824c2010-11-19 15:14:42 +0000183 return ioapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000184}
185
Stefan Reinauer777224c2005-01-19 14:06:41 +0000186int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
Stefan Reinauer06feb882004-02-03 16:11:35 +0000187 u8 bus, u8 source, u32 gsirq, u16 flags)
188{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530189 irqoverride->type = IRQ_SOURCE_OVERRIDE; /* Interrupt source override */
Uwe Hermann622824c2010-11-19 15:14:42 +0000190 irqoverride->length = sizeof(acpi_madt_irqoverride_t);
191 irqoverride->bus = bus;
192 irqoverride->source = source;
193 irqoverride->gsirq = gsirq;
194 irqoverride->flags = flags;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000195
Uwe Hermann622824c2010-11-19 15:14:42 +0000196 return irqoverride->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000197}
198
Stefan Reinauer777224c2005-01-19 14:06:41 +0000199int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300200 u16 flags, u8 lint)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000201{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530202 lapic_nmi->type = LOCAL_APIC_NMI; /* Local APIC NMI structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000203 lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
204 lapic_nmi->flags = flags;
205 lapic_nmi->processor_id = cpu;
206 lapic_nmi->lint = lint;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000207
Uwe Hermann622824c2010-11-19 15:14:42 +0000208 return lapic_nmi->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000209}
210
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100211int acpi_create_madt_lx2apic_nmi(acpi_madt_lx2apic_nmi_t *lapic_nmi, u32 cpu,
212 u16 flags, u8 lint)
213{
214 lapic_nmi->type = LOCAL_X2APIC_NMI; /* Local APIC NMI structure */
215 lapic_nmi->length = sizeof(acpi_madt_lx2apic_nmi_t);
216 lapic_nmi->flags = flags;
217 lapic_nmi->processor_id = cpu;
218 lapic_nmi->lint = lint;
219 lapic_nmi->reserved[0] = 0;
220 lapic_nmi->reserved[1] = 0;
221 lapic_nmi->reserved[2] = 0;
222
223 return lapic_nmi->length;
224}
225
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700226__weak uintptr_t cpu_get_lapic_addr(void)
227{
228 /*
229 * If an architecture does not support LAPIC, this weak implementation returns LAPIC
230 * addr as 0.
231 */
232 return 0;
233}
234
Stefan Reinauer777224c2005-01-19 14:06:41 +0000235void acpi_create_madt(acpi_madt_t *madt)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000236{
Uwe Hermann622824c2010-11-19 15:14:42 +0000237 acpi_header_t *header = &(madt->header);
238 unsigned long current = (unsigned long)madt + sizeof(acpi_madt_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000239
Stefan Reinauer06feb882004-02-03 16:11:35 +0000240 memset((void *)madt, 0, sizeof(acpi_madt_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000241
John Zhao2ba303e2019-05-28 16:48:14 -0700242 if (!header)
243 return;
244
Uwe Hermann622824c2010-11-19 15:14:42 +0000245 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000246 memcpy(header->signature, "APIC", 4);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000247 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000248 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000249 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000250
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100251 header->asl_compiler_revision = asl_revision;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000252 header->length = sizeof(acpi_madt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600253 header->revision = get_acpi_table_revision(MADT);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000254
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700255 madt->lapic_addr = cpu_get_lapic_addr();
Nico Huber9df72e02018-11-24 18:25:50 +0100256 if (CONFIG(ACPI_HAVE_PCAT_8259))
257 madt->flags |= 1;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000258
Stefan Reinauerf622d592005-11-26 16:56:05 +0000259 current = acpi_fill_madt(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000260
Uwe Hermann622824c2010-11-19 15:14:42 +0000261 /* (Re)calculate length and checksum. */
262 header->length = current - (unsigned long)madt;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000263
Uwe Hermann622824c2010-11-19 15:14:42 +0000264 header->checksum = acpi_checksum((void *)madt, header->length);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000265}
266
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200267static unsigned long acpi_fill_mcfg(unsigned long current)
268{
269 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
Shelley Chen4e9bb332021-10-20 15:43:45 -0700270 CONFIG_ECAM_MMCONF_BASE_ADDRESS, 0, 0,
271 CONFIG_ECAM_MMCONF_BUS_NUMBER - 1);
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200272 return current;
273}
274
Uwe Hermann622824c2010-11-19 15:14:42 +0000275/* MCFG is defined in the PCI Firmware Specification 3.0. */
Rudolf Mareke6409f22007-11-03 12:50:26 +0000276void acpi_create_mcfg(acpi_mcfg_t *mcfg)
277{
Uwe Hermann622824c2010-11-19 15:14:42 +0000278 acpi_header_t *header = &(mcfg->header);
279 unsigned long current = (unsigned long)mcfg + sizeof(acpi_mcfg_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000280
Rudolf Mareke6409f22007-11-03 12:50:26 +0000281 memset((void *)mcfg, 0, sizeof(acpi_mcfg_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000282
John Zhao2ba303e2019-05-28 16:48:14 -0700283 if (!header)
284 return;
285
Uwe Hermann622824c2010-11-19 15:14:42 +0000286 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000287 memcpy(header->signature, "MCFG", 4);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000288 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000289 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000290 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000291
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100292 header->asl_compiler_revision = asl_revision;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000293 header->length = sizeof(acpi_mcfg_t);
Marc Jones93a51762018-08-22 18:57:24 -0600294 header->revision = get_acpi_table_revision(MCFG);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000295
Shelley Chen4e9bb332021-10-20 15:43:45 -0700296 if (CONFIG(ECAM_MMCONF_SUPPORT))
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200297 current = acpi_fill_mcfg(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000298
Uwe Hermann622824c2010-11-19 15:14:42 +0000299 /* (Re)calculate length and checksum. */
300 header->length = current - (unsigned long)mcfg;
301 header->checksum = acpi_checksum((void *)mcfg, header->length);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000302}
303
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200304static void *get_tcpa_log(u32 *size)
305{
306 const struct cbmem_entry *ce;
307 const u32 tcpa_default_log_len = 0x10000;
308 void *lasa;
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200309 ce = cbmem_entry_find(CBMEM_ID_TCPA_TCG_LOG);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200310 if (ce) {
311 lasa = cbmem_entry_start(ce);
312 *size = cbmem_entry_size(ce);
313 printk(BIOS_DEBUG, "TCPA log found at %p\n", lasa);
314 return lasa;
315 }
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200316 lasa = cbmem_add(CBMEM_ID_TCPA_TCG_LOG, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200317 if (!lasa) {
318 printk(BIOS_ERR, "TCPA log creation failed\n");
319 return NULL;
320 }
321
322 printk(BIOS_DEBUG, "TCPA log created at %p\n", lasa);
Lee Leahy024b13d2017-03-16 13:41:11 -0700323 memset(lasa, 0, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200324
325 *size = tcpa_default_log_len;
326 return lasa;
327}
328
329static void acpi_create_tcpa(acpi_tcpa_t *tcpa)
330{
331 acpi_header_t *header = &(tcpa->header);
332 u32 tcpa_log_len;
333 void *lasa;
334
335 memset((void *)tcpa, 0, sizeof(acpi_tcpa_t));
336
337 lasa = get_tcpa_log(&tcpa_log_len);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700338 if (!lasa)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200339 return;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200340
John Zhao2ba303e2019-05-28 16:48:14 -0700341 if (!header)
342 return;
343
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200344 /* Fill out header fields. */
345 memcpy(header->signature, "TCPA", 4);
346 memcpy(header->oem_id, OEM_ID, 6);
347 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
348 memcpy(header->asl_compiler_id, ASLC, 4);
349
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100350 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200351 header->length = sizeof(acpi_tcpa_t);
Marc Jones93a51762018-08-22 18:57:24 -0600352 header->revision = get_acpi_table_revision(TCPA);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200353
354 tcpa->platform_class = 0;
355 tcpa->laml = tcpa_log_len;
Stefan Reinauerdefee172015-06-18 01:11:19 -0700356 tcpa->lasa = (uintptr_t) lasa;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200357
358 /* Calculate checksum. */
359 header->checksum = acpi_checksum((void *)tcpa, header->length);
360}
361
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100362static void *get_tpm2_log(u32 *size)
363{
364 const struct cbmem_entry *ce;
365 const u32 tpm2_default_log_len = 0x10000;
366 void *lasa;
367 ce = cbmem_entry_find(CBMEM_ID_TPM2_TCG_LOG);
368 if (ce) {
369 lasa = cbmem_entry_start(ce);
370 *size = cbmem_entry_size(ce);
371 printk(BIOS_DEBUG, "TPM2 log found at %p\n", lasa);
372 return lasa;
373 }
374 lasa = cbmem_add(CBMEM_ID_TPM2_TCG_LOG, tpm2_default_log_len);
375 if (!lasa) {
376 printk(BIOS_ERR, "TPM2 log creation failed\n");
377 return NULL;
378 }
379
380 printk(BIOS_DEBUG, "TPM2 log created at %p\n", lasa);
381 memset(lasa, 0, tpm2_default_log_len);
382
383 *size = tpm2_default_log_len;
384 return lasa;
385}
386
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200387static void acpi_create_tpm2(acpi_tpm2_t *tpm2)
388{
389 acpi_header_t *header = &(tpm2->header);
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100390 u32 tpm2_log_len;
391 void *lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200392
393 memset((void *)tpm2, 0, sizeof(acpi_tpm2_t));
394
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100395 /*
396 * Some payloads like SeaBIOS depend on log area to use TPM2.
397 * Get the memory size and address of TPM2 log area or initialize it.
398 */
399 lasa = get_tpm2_log(&tpm2_log_len);
400 if (!lasa)
401 tpm2_log_len = 0;
402
John Zhao2ba303e2019-05-28 16:48:14 -0700403 if (!header)
404 return;
405
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200406 /* Fill out header fields. */
407 memcpy(header->signature, "TPM2", 4);
408 memcpy(header->oem_id, OEM_ID, 6);
409 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
410 memcpy(header->asl_compiler_id, ASLC, 4);
411
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100412 header->asl_compiler_revision = asl_revision;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200413 header->length = sizeof(acpi_tpm2_t);
414 header->revision = get_acpi_table_revision(TPM2);
415
416 /* Hard to detect for coreboot. Just set it to 0 */
417 tpm2->platform_class = 0;
Christian Walter26e0d4c2019-07-14 15:47:23 +0200418 if (CONFIG(CRB_TPM)) {
419 /* Must be set to 7 for CRB Support */
420 tpm2->control_area = CONFIG_CRB_TPM_BASE_ADDRESS + 0x40;
421 tpm2->start_method = 7;
422 } else {
423 /* Must be set to 0 for FIFO interface support */
424 tpm2->control_area = 0;
425 tpm2->start_method = 6;
426 }
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200427 memset(tpm2->msp, 0, sizeof(tpm2->msp));
428
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100429 /* Fill the log area size and start address fields. */
430 tpm2->laml = tpm2_log_len;
431 tpm2->lasa = (uintptr_t) lasa;
432
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200433 /* Calculate checksum. */
434 header->checksum = acpi_checksum((void *)tpm2, header->length);
435}
436
Duncan Laurie37319032016-05-26 12:47:05 -0700437static void acpi_ssdt_write_cbtable(void)
438{
439 const struct cbmem_entry *cbtable;
440 uintptr_t base;
441 uint32_t size;
442
443 cbtable = cbmem_entry_find(CBMEM_ID_CBTABLE);
444 if (!cbtable)
445 return;
446 base = (uintptr_t)cbmem_entry_start(cbtable);
447 size = cbmem_entry_size(cbtable);
448
449 acpigen_write_device("CTBL");
450 acpigen_write_coreboot_hid(COREBOOT_ACPI_ID_CBTABLE);
451 acpigen_write_name_integer("_UID", 0);
David Wu5dff3962018-03-21 16:48:53 +0800452 acpigen_write_STA(ACPI_STATUS_DEVICE_HIDDEN_ON);
Duncan Laurie37319032016-05-26 12:47:05 -0700453 acpigen_write_name("_CRS");
454 acpigen_write_resourcetemplate_header();
455 acpigen_write_mem32fixed(0, base, size);
456 acpigen_write_resourcetemplate_footer();
457 acpigen_pop_len();
458}
459
Myles Watson3fe6b702009-10-09 20:13:43 +0000460void acpi_create_ssdt_generator(acpi_header_t *ssdt, const char *oem_table_id)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000461{
Uwe Hermann622824c2010-11-19 15:14:42 +0000462 unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
463
Rudolf Marek293b5f52009-02-01 18:35:15 +0000464 memset((void *)ssdt, 0, sizeof(acpi_header_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000465
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000466 memcpy(&ssdt->signature, "SSDT", 4);
Marc Jones93a51762018-08-22 18:57:24 -0600467 ssdt->revision = get_acpi_table_revision(SSDT);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000468 memcpy(&ssdt->oem_id, OEM_ID, 6);
469 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
470 ssdt->oem_revision = 42;
Uwe Hermann622824c2010-11-19 15:14:42 +0000471 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +0100472 ssdt->asl_compiler_revision = asl_revision;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000473 ssdt->length = sizeof(acpi_header_t);
474
Stefan Reinauer8dcd50b2009-03-06 17:24:29 +0000475 acpigen_set_current((char *) current);
Duncan Laurie37319032016-05-26 12:47:05 -0700476
477 /* Write object to declare coreboot tables */
478 acpi_ssdt_write_cbtable();
479
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200480 {
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100481 struct device *dev;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200482 for (dev = all_devices; dev; dev = dev->next)
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -0700483 if (dev->enabled && dev->ops && dev->ops->acpi_fill_ssdt)
Nico Huber68680dd2020-03-31 17:34:52 +0200484 dev->ops->acpi_fill_ssdt(dev);
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200485 current = (unsigned long) acpigen_get_current();
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200486 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000487
Uwe Hermann622824c2010-11-19 15:14:42 +0000488 /* (Re)calculate length and checksum. */
Rudolf Marek293b5f52009-02-01 18:35:15 +0000489 ssdt->length = current - (unsigned long)ssdt;
490 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
491}
492
Stefan Reinauerf622d592005-11-26 16:56:05 +0000493int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
494{
Myles Watson0b4c9f02009-03-10 18:06:47 +0000495 memset((void *)lapic, 0, sizeof(acpi_srat_lapic_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000496
Uwe Hermann622824c2010-11-19 15:14:42 +0000497 lapic->type = 0; /* Processor local APIC/SAPIC affinity structure */
498 lapic->length = sizeof(acpi_srat_lapic_t);
499 lapic->flags = (1 << 0); /* Enabled (the use of this structure). */
500 lapic->proximity_domain_7_0 = node;
501 /* TODO: proximity_domain_31_8, local SAPIC EID, clock domain. */
502 lapic->apic_id = apic;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000503
Uwe Hermann622824c2010-11-19 15:14:42 +0000504 return lapic->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000505}
506
Uwe Hermann622824c2010-11-19 15:14:42 +0000507int 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 +0300508 u32 flags)
Stefan Reinauerf622d592005-11-26 16:56:05 +0000509{
Uwe Hermann622824c2010-11-19 15:14:42 +0000510 mem->type = 1; /* Memory affinity structure */
511 mem->length = sizeof(acpi_srat_mem_t);
512 mem->base_address_low = (basek << 10);
513 mem->base_address_high = (basek >> (32 - 10));
514 mem->length_low = (sizek << 10);
515 mem->length_high = (sizek >> (32 - 10));
516 mem->proximity_domain = node;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000517 mem->flags = flags;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000518
Uwe Hermann622824c2010-11-19 15:14:42 +0000519 return mem->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000520}
521
Jonathan Zhang3164b642021-04-21 17:51:31 -0700522int acpi_create_srat_gia_pci(acpi_srat_gia_t *gia, u32 proximity_domain,
523 u16 seg, u8 bus, u8 dev, u8 func, u32 flags)
524{
525 gia->type = ACPI_SRAT_STRUCTURE_GIA;
526 gia->length = sizeof(acpi_srat_gia_t);
527 gia->proximity_domain = proximity_domain;
528 gia->dev_handle_type = ACPI_SRAT_GIA_DEV_HANDLE_PCI;
529 /* First two bytes has segment number */
530 memcpy(gia->dev_handle, &seg, 2);
531 gia->dev_handle[2] = bus; /* Byte 2 has bus number */
532 /* Byte 3 has bits 7:3 for dev, bits 2:0 for func */
533 gia->dev_handle[3] = PCI_SLOT(dev) | PCI_FUNC(func);
534 gia->flags = flags;
535
536 return gia->length;
537}
538
Uwe Hermann622824c2010-11-19 15:14:42 +0000539/* http://www.microsoft.com/whdc/system/sysinternals/sratdwn.mspx */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200540void acpi_create_srat(acpi_srat_t *srat,
541 unsigned long (*acpi_fill_srat)(unsigned long current))
Stefan Reinauerf622d592005-11-26 16:56:05 +0000542{
Uwe Hermann622824c2010-11-19 15:14:42 +0000543 acpi_header_t *header = &(srat->header);
544 unsigned long current = (unsigned long)srat + sizeof(acpi_srat_t);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000545
Uwe Hermann622824c2010-11-19 15:14:42 +0000546 memset((void *)srat, 0, sizeof(acpi_srat_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000547
John Zhao2ba303e2019-05-28 16:48:14 -0700548 if (!header)
549 return;
550
Uwe Hermann622824c2010-11-19 15:14:42 +0000551 /* Fill out header fields. */
552 memcpy(header->signature, "SRAT", 4);
553 memcpy(header->oem_id, OEM_ID, 6);
554 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
555 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000556
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100557 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000558 header->length = sizeof(acpi_srat_t);
Marc Jones93a51762018-08-22 18:57:24 -0600559 header->revision = get_acpi_table_revision(SRAT);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000560
Uwe Hermann622824c2010-11-19 15:14:42 +0000561 srat->resv = 1; /* Spec: Reserved to 1 for backwards compatibility. */
Stefan Reinauerf622d592005-11-26 16:56:05 +0000562
Uwe Hermann622824c2010-11-19 15:14:42 +0000563 current = acpi_fill_srat(current);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000564
Uwe Hermann622824c2010-11-19 15:14:42 +0000565 /* (Re)calculate length and checksum. */
566 header->length = current - (unsigned long)srat;
567 header->checksum = acpi_checksum((void *)srat, header->length);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000568}
569
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700570int acpi_create_hmat_mpda(acpi_hmat_mpda_t *mpda, u32 initiator, u32 memory)
571{
572 memset((void *)mpda, 0, sizeof(acpi_hmat_mpda_t));
573
574 mpda->type = 0; /* Memory Proximity Domain Attributes structure */
575 mpda->length = sizeof(acpi_hmat_mpda_t);
576 /*
577 * Proximity Domain for Attached Initiator field is valid.
578 * Bit 1 and bit 2 are reserved since HMAT revision 2.
579 */
580 mpda->flags = (1 << 0);
581 mpda->proximity_domain_initiator = initiator;
582 mpda->proximity_domain_memory = memory;
583
584 return mpda->length;
585}
586
587void acpi_create_hmat(acpi_hmat_t *hmat,
588 unsigned long (*acpi_fill_hmat)(unsigned long current))
589{
590 acpi_header_t *header = &(hmat->header);
591 unsigned long current = (unsigned long)hmat + sizeof(acpi_hmat_t);
592
593 memset((void *)hmat, 0, sizeof(acpi_hmat_t));
594
595 if (!header)
596 return;
597
598 /* Fill out header fields. */
599 memcpy(header->signature, "HMAT", 4);
600 memcpy(header->oem_id, OEM_ID, 6);
601 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
602 memcpy(header->asl_compiler_id, ASLC, 4);
603
604 header->asl_compiler_revision = asl_revision;
605 header->length = sizeof(acpi_hmat_t);
606 header->revision = get_acpi_table_revision(HMAT);
607
608 current = acpi_fill_hmat(current);
609
610 /* (Re)calculate length and checksum. */
611 header->length = current - (unsigned long)hmat;
612 header->checksum = acpi_checksum((void *)hmat, header->length);
613}
614
Nico Hubere561f352015-10-26 11:51:25 +0100615void acpi_create_dmar(acpi_dmar_t *dmar, enum dmar_flags flags,
Lee Leahy024b13d2017-03-16 13:41:11 -0700616 unsigned long (*acpi_fill_dmar)(unsigned long))
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200617{
618 acpi_header_t *header = &(dmar->header);
619 unsigned long current = (unsigned long)dmar + sizeof(acpi_dmar_t);
620
621 memset((void *)dmar, 0, sizeof(acpi_dmar_t));
622
John Zhao2ba303e2019-05-28 16:48:14 -0700623 if (!header)
624 return;
625
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200626 /* Fill out header fields. */
627 memcpy(header->signature, "DMAR", 4);
628 memcpy(header->oem_id, OEM_ID, 6);
629 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
630 memcpy(header->asl_compiler_id, ASLC, 4);
631
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100632 header->asl_compiler_revision = asl_revision;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200633 header->length = sizeof(acpi_dmar_t);
Marc Jones93a51762018-08-22 18:57:24 -0600634 header->revision = get_acpi_table_revision(DMAR);
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200635
Jacob Laskaf3f654d2016-03-15 21:53:27 -0500636 dmar->host_address_width = cpu_phys_address_size() - 1;
Nico Hubere561f352015-10-26 11:51:25 +0100637 dmar->flags = flags;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200638
639 current = acpi_fill_dmar(current);
640
641 /* (Re)calculate length and checksum. */
642 header->length = current - (unsigned long)dmar;
643 header->checksum = acpi_checksum((void *)dmar, header->length);
644}
645
646unsigned long acpi_create_dmar_drhd(unsigned long current, u8 flags,
Matt DeVillier7866d492018-03-29 14:59:57 +0200647 u16 segment, u64 bar)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200648{
649 dmar_entry_t *drhd = (dmar_entry_t *)current;
650 memset(drhd, 0, sizeof(*drhd));
651 drhd->type = DMAR_DRHD;
652 drhd->length = sizeof(*drhd); /* will be fixed up later */
653 drhd->flags = flags;
654 drhd->segment = segment;
655 drhd->bar = bar;
656
657 return drhd->length;
658}
659
Matt DeVillier7866d492018-03-29 14:59:57 +0200660unsigned long acpi_create_dmar_rmrr(unsigned long current, u16 segment,
661 u64 bar, u64 limit)
662{
663 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)current;
664 memset(rmrr, 0, sizeof(*rmrr));
665 rmrr->type = DMAR_RMRR;
666 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
667 rmrr->segment = segment;
668 rmrr->bar = bar;
669 rmrr->limit = limit;
670
671 return rmrr->length;
672}
673
Werner Zehd4d76952016-07-27 06:56:36 +0200674unsigned long acpi_create_dmar_atsr(unsigned long current, u8 flags,
675 u16 segment)
676{
677 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)current;
678 memset(atsr, 0, sizeof(*atsr));
679 atsr->type = DMAR_ATSR;
680 atsr->length = sizeof(*atsr); /* will be fixed up later */
681 atsr->flags = flags;
682 atsr->segment = segment;
683
684 return atsr->length;
685}
686
John Zhao76e70672019-04-04 11:03:28 -0700687unsigned long acpi_create_dmar_rhsa(unsigned long current, u64 base_addr,
688 u32 proximity_domain)
689{
690 dmar_rhsa_entry_t *rhsa = (dmar_rhsa_entry_t *)current;
691 memset(rhsa, 0, sizeof(*rhsa));
692 rhsa->type = DMAR_RHSA;
693 rhsa->length = sizeof(*rhsa);
694 rhsa->base_address = base_addr;
695 rhsa->proximity_domain = proximity_domain;
696
697 return rhsa->length;
698}
699
700unsigned long acpi_create_dmar_andd(unsigned long current, u8 device_number,
701 const char *device_name)
702{
703 dmar_andd_entry_t *andd = (dmar_andd_entry_t *)current;
704 int andd_len = sizeof(dmar_andd_entry_t) + strlen(device_name) + 1;
705 memset(andd, 0, andd_len);
706 andd->type = DMAR_ANDD;
707 andd->length = andd_len;
708 andd->device_number = device_number;
709 memcpy(&andd->device_name, device_name, strlen(device_name));
710
711 return andd->length;
712}
713
John Zhao091532d2021-04-17 16:03:21 -0700714unsigned long acpi_create_dmar_satc(unsigned long current, u8 flags, u16 segment)
John Zhao6edbb182021-03-24 11:55:09 -0700715{
716 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)current;
John Zhao091532d2021-04-17 16:03:21 -0700717 int satc_len = sizeof(dmar_satc_entry_t);
John Zhao6edbb182021-03-24 11:55:09 -0700718 memset(satc, 0, satc_len);
719 satc->type = DMAR_SATC;
720 satc->length = satc_len;
721 satc->flags = flags;
722 satc->segment_number = segment;
John Zhao6edbb182021-03-24 11:55:09 -0700723
724 return satc->length;
725}
726
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200727void acpi_dmar_drhd_fixup(unsigned long base, unsigned long current)
728{
729 dmar_entry_t *drhd = (dmar_entry_t *)base;
730 drhd->length = current - base;
731}
732
Matt DeVillier7866d492018-03-29 14:59:57 +0200733void acpi_dmar_rmrr_fixup(unsigned long base, unsigned long current)
734{
735 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)base;
736 rmrr->length = current - base;
737}
738
Werner Zehd4d76952016-07-27 06:56:36 +0200739void acpi_dmar_atsr_fixup(unsigned long base, unsigned long current)
740{
741 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)base;
742 atsr->length = current - base;
743}
744
John Zhao6edbb182021-03-24 11:55:09 -0700745void acpi_dmar_satc_fixup(unsigned long base, unsigned long current)
746{
747 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)base;
748 satc->length = current - base;
749}
750
Matt DeVillier7866d492018-03-29 14:59:57 +0200751static unsigned long acpi_create_dmar_ds(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100752 enum dev_scope_type type, u8 enumeration_id, u8 bus, u8 dev, u8 fn)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200753{
Nico Huber6c4751d2015-10-26 12:03:54 +0100754 /* we don't support longer paths yet */
755 const size_t dev_scope_length = sizeof(dev_scope_t) + 2;
756
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200757 dev_scope_t *ds = (dev_scope_t *)current;
Nico Huber6c4751d2015-10-26 12:03:54 +0100758 memset(ds, 0, dev_scope_length);
759 ds->type = type;
760 ds->length = dev_scope_length;
761 ds->enumeration = enumeration_id;
762 ds->start_bus = bus;
763 ds->path[0].dev = dev;
764 ds->path[0].fn = fn;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200765
766 return ds->length;
767}
768
Matt DeVillier7866d492018-03-29 14:59:57 +0200769unsigned long acpi_create_dmar_ds_pci_br(unsigned long current, u8 bus,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200770 u8 dev, u8 fn)
771{
Matt DeVillier7866d492018-03-29 14:59:57 +0200772 return acpi_create_dmar_ds(current,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200773 SCOPE_PCI_SUB, 0, bus, dev, fn);
774}
775
Matt DeVillier7866d492018-03-29 14:59:57 +0200776unsigned long acpi_create_dmar_ds_pci(unsigned long current, u8 bus,
Nico Huber6c4751d2015-10-26 12:03:54 +0100777 u8 dev, u8 fn)
778{
Matt DeVillier7866d492018-03-29 14:59:57 +0200779 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100780 SCOPE_PCI_ENDPOINT, 0, bus, dev, fn);
781}
782
Matt DeVillier7866d492018-03-29 14:59:57 +0200783unsigned long acpi_create_dmar_ds_ioapic(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100784 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
785{
Matt DeVillier7866d492018-03-29 14:59:57 +0200786 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100787 SCOPE_IOAPIC, enumeration_id, bus, dev, fn);
788}
789
Matt DeVillier7866d492018-03-29 14:59:57 +0200790unsigned long acpi_create_dmar_ds_msi_hpet(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100791 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
792{
Matt DeVillier7866d492018-03-29 14:59:57 +0200793 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100794 SCOPE_MSI_HPET, enumeration_id, bus, dev, fn);
795}
796
Uwe Hermann622824c2010-11-19 15:14:42 +0000797/* http://h21007.www2.hp.com/portal/download/files/unprot/Itanium/slit.pdf */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200798void acpi_create_slit(acpi_slit_t *slit,
799 unsigned long (*acpi_fill_slit)(unsigned long current))
Yinghai Lud4b278c2006-10-04 20:46:15 +0000800{
Uwe Hermann622824c2010-11-19 15:14:42 +0000801 acpi_header_t *header = &(slit->header);
802 unsigned long current = (unsigned long)slit + sizeof(acpi_slit_t);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000803
Uwe Hermann622824c2010-11-19 15:14:42 +0000804 memset((void *)slit, 0, sizeof(acpi_slit_t));
Yinghai Lud4b278c2006-10-04 20:46:15 +0000805
John Zhao2ba303e2019-05-28 16:48:14 -0700806 if (!header)
807 return;
808
Uwe Hermann622824c2010-11-19 15:14:42 +0000809 /* Fill out header fields. */
810 memcpy(header->signature, "SLIT", 4);
811 memcpy(header->oem_id, OEM_ID, 6);
812 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
813 memcpy(header->asl_compiler_id, ASLC, 4);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000814
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100815 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000816 header->length = sizeof(acpi_slit_t);
Marc Jones93a51762018-08-22 18:57:24 -0600817 header->revision = get_acpi_table_revision(SLIT);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000818
Uwe Hermann622824c2010-11-19 15:14:42 +0000819 current = acpi_fill_slit(current);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000820
Uwe Hermann622824c2010-11-19 15:14:42 +0000821 /* (Re)calculate length and checksum. */
822 header->length = current - (unsigned long)slit;
823 header->checksum = acpi_checksum((void *)slit, header->length);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000824}
825
Uwe Hermann622824c2010-11-19 15:14:42 +0000826/* http://www.intel.com/hardwaredesign/hpetspec_1.pdf */
Stefan Reinauer777224c2005-01-19 14:06:41 +0000827void acpi_create_hpet(acpi_hpet_t *hpet)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000828{
Uwe Hermann622824c2010-11-19 15:14:42 +0000829 acpi_header_t *header = &(hpet->header);
830 acpi_addr_t *addr = &(hpet->addr);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000831
Stefan Reinauera7648c22004-01-29 17:31:34 +0000832 memset((void *)hpet, 0, sizeof(acpi_hpet_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000833
John Zhao2ba303e2019-05-28 16:48:14 -0700834 if (!header)
835 return;
836
Uwe Hermann622824c2010-11-19 15:14:42 +0000837 /* Fill out header fields. */
Stefan Reinauer4704dc52009-07-22 01:11:37 +0000838 memcpy(header->signature, "HPET", 4);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000839 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000840 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000841 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000842
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100843 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000844 header->length = sizeof(acpi_hpet_t);
Marc Jones93a51762018-08-22 18:57:24 -0600845 header->revision = get_acpi_table_revision(HPET);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000846
Uwe Hermann622824c2010-11-19 15:14:42 +0000847 /* Fill out HPET address. */
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200848 addr->space_id = ACPI_ADDRESS_SPACE_MEMORY;
Uwe Hermann622824c2010-11-19 15:14:42 +0000849 addr->bit_width = 64;
850 addr->bit_offset = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200851 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
852 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000853
Felix Held7f8c7372022-02-23 17:37:27 +0100854 hpet->id = read32p(CONFIG_HPET_ADDRESS);
Uwe Hermann622824c2010-11-19 15:14:42 +0000855 hpet->number = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200856 hpet->min_tick = CONFIG_HPET_MIN_TICKS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000857
Uwe Hermann622824c2010-11-19 15:14:42 +0000858 header->checksum = acpi_checksum((void *)hpet, sizeof(acpi_hpet_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000859}
Uwe Hermann622824c2010-11-19 15:14:42 +0000860
Rocky Phaguraeff07132021-01-10 15:42:50 -0800861/*
862 * This method adds the ACPI error injection capability. It fills the default information.
863 * HW dependent code (caller) can modify the defaults upon return. If no changes are necessary
864 * and the defaults are acceptable then caller can simply add the table (acpi_add_table).
865 * INPUTS:
866 * einj - ptr to the starting location of EINJ table
867 * actions - number of actions to trigger an error (HW dependent)
868 * addr - address of trigger action table. This should be ACPI reserved memory and it will be
869 * shared between OS and FW.
870 */
871void acpi_create_einj(acpi_einj_t *einj, uintptr_t addr, u8 actions)
872{
873 int i;
874 acpi_header_t *header = &(einj->header);
875 acpi_injection_header_t *inj_header = &(einj->inj_header);
876 acpi_einj_smi_t *einj_smi = (acpi_einj_smi_t *)addr;
877 acpi_einj_trigger_table_t *tat;
878 if (!header)
879 return;
880
881 printk(BIOS_DEBUG, "%s einj_smi = %p\n", __func__, einj_smi);
882 memset(einj_smi, 0, sizeof(acpi_einj_smi_t));
883 tat = (acpi_einj_trigger_table_t *)(einj_smi + sizeof(acpi_einj_smi_t));
884 tat->header_size = 16;
885 tat->revision = 0;
886 tat->table_size = sizeof(acpi_einj_trigger_table_t) +
887 sizeof(acpi_einj_action_table_t) * actions - 1;
888 tat->entry_count = actions;
889 printk(BIOS_DEBUG, "%s trigger_action_table = %p\n", __func__, tat);
890
891 for (i = 0; i < actions; i++) {
892 tat->trigger_action[i].action = TRIGGER_ERROR;
893 tat->trigger_action[i].instruction = NO_OP;
894 tat->trigger_action[i].flags = FLAG_IGNORE;
895 tat->trigger_action[i].reg.space_id = ACPI_ADDRESS_SPACE_MEMORY;
896 tat->trigger_action[i].reg.bit_width = 64;
897 tat->trigger_action[i].reg.bit_offset = 0;
898 tat->trigger_action[i].reg.access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
899 tat->trigger_action[i].reg.addr = 0;
900 tat->trigger_action[i].value = 0;
901 tat->trigger_action[i].mask = 0xFFFFFFFF;
902 }
903
904 acpi_einj_action_table_t default_actions[ACTION_COUNT] = {
905 [0] = {
906 .action = BEGIN_INJECT_OP,
907 .instruction = WRITE_REGISTER_VALUE,
908 .flags = FLAG_PRESERVE,
909 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
910 .value = 0,
911 .mask = 0xFFFFFFFF
912 },
913 [1] = {
914 .action = GET_TRIGGER_ACTION_TABLE,
915 .instruction = READ_REGISTER,
916 .flags = FLAG_IGNORE,
917 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->trigger_action_table),
918 .value = 0,
919 .mask = 0xFFFFFFFFFFFFFFFF
920 },
921 [2] = {
922 .action = SET_ERROR_TYPE,
923 .instruction = WRITE_REGISTER,
924 .flags = FLAG_PRESERVE,
925 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inject[0]),
926 .value = 0,
927 .mask = 0xFFFFFFFF
928 },
929 [3] = {
930 .action = GET_ERROR_TYPE,
931 .instruction = READ_REGISTER,
932 .flags = FLAG_IGNORE,
933 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inj_cap),
934 .value = 0,
935 .mask = 0xFFFFFFFF
936 },
937 [4] = {
938 .action = END_INJECT_OP,
939 .instruction = WRITE_REGISTER_VALUE,
940 .flags = FLAG_PRESERVE,
941 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
942 .value = 0,
943 .mask = 0xFFFFFFFF
944
945 },
946 [5] = {
947 .action = EXECUTE_INJECT_OP,
948 .instruction = WRITE_REGISTER_VALUE,
949 .flags = FLAG_PRESERVE,
950 .reg = EINJ_REG_IO(),
951 .value = 0x9a,
952 .mask = 0xFFFF,
953 },
954 [6] = {
955 .action = CHECK_BUSY_STATUS,
956 .instruction = READ_REGISTER_VALUE,
957 .flags = FLAG_IGNORE,
958 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_status),
959 .value = 1,
960 .mask = 1,
961 },
962 [7] = {
963 .action = GET_CMD_STATUS,
964 .instruction = READ_REGISTER,
965 .flags = FLAG_PRESERVE,
966 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->cmd_sts),
967 .value = 0,
968 .mask = 0x1fe,
969 },
970 [8] = {
971 .action = SET_ERROR_TYPE_WITH_ADDRESS,
972 .instruction = WRITE_REGISTER,
973 .flags = FLAG_PRESERVE,
974 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->setaddrtable),
975 .value = 1,
976 .mask = 0xffffffff
977 }
978 };
979
980 einj_smi->err_inj_cap = ACPI_EINJ_DEFAULT_CAP;
981 einj_smi->trigger_action_table = (u64) (uintptr_t)tat;
982
983 for (i = 0; i < ACTION_COUNT; i++)
984 printk(BIOS_DEBUG, "default_actions[%d].reg.addr is %llx\n", i,
985 default_actions[i].reg.addr);
986
Rocky Phagurab46a9e52021-05-21 13:34:03 -0700987 memset((void *)einj, 0, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800988
989 /* Fill out header fields. */
990 memcpy(header->signature, "EINJ", 4);
991 memcpy(header->oem_id, OEM_ID, 6);
992 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
993 memcpy(header->asl_compiler_id, ASLC, 4);
994
995 header->asl_compiler_revision = asl_revision;
996 header->length = sizeof(acpi_einj_t);
997 header->revision = 1;
998 inj_header->einj_header_size = sizeof(acpi_injection_header_t);
999 inj_header->entry_count = ACTION_COUNT;
1000
1001 printk(BIOS_DEBUG, "%s einj->action_table = %p\n",
1002 __func__, einj->action_table);
1003 memcpy((void *)einj->action_table, (void *)default_actions, sizeof(einj->action_table));
Rocky Phagurab46a9e52021-05-21 13:34:03 -07001004 header->checksum = acpi_checksum((void *)einj, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -08001005}
1006
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001007void acpi_create_vfct(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301008 acpi_vfct_t *vfct,
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001009 unsigned long (*acpi_fill_vfct)(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301010 acpi_vfct_t *vfct_struct, unsigned long current))
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001011{
1012 acpi_header_t *header = &(vfct->header);
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301013 unsigned long current = (unsigned long)vfct + sizeof(acpi_vfct_t);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001014
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301015 memset((void *)vfct, 0, sizeof(acpi_vfct_t));
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001016
John Zhao2ba303e2019-05-28 16:48:14 -07001017 if (!header)
1018 return;
1019
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001020 /* Fill out header fields. */
1021 memcpy(header->signature, "VFCT", 4);
1022 memcpy(header->oem_id, OEM_ID, 6);
1023 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1024 memcpy(header->asl_compiler_id, ASLC, 4);
1025
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001026 header->asl_compiler_revision = asl_revision;
Marc Jones93a51762018-08-22 18:57:24 -06001027 header->revision = get_acpi_table_revision(VFCT);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001028
1029 current = acpi_fill_vfct(device, vfct, current);
1030
Kyösti Mälkkifb493792019-06-30 06:29:52 +03001031 /* If no BIOS image, return with header->length == 0. */
1032 if (!vfct->VBIOSImageOffset)
1033 return;
1034
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001035 /* (Re)calculate length and checksum. */
1036 header->length = current - (unsigned long)vfct;
1037 header->checksum = acpi_checksum((void *)vfct, header->length);
1038}
1039
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001040void acpi_create_ipmi(const struct device *device,
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001041 struct acpi_spmi *spmi,
1042 const u16 ipmi_revision,
1043 const acpi_addr_t *addr,
1044 const enum acpi_ipmi_interface_type type,
1045 const s8 gpe_interrupt,
1046 const u32 apic_interrupt,
1047 const u32 uid)
1048{
1049 acpi_header_t *header = &(spmi->header);
1050 memset((void *)spmi, 0, sizeof(struct acpi_spmi));
1051
1052 /* Fill out header fields. */
1053 memcpy(header->signature, "SPMI", 4);
1054 memcpy(header->oem_id, OEM_ID, 6);
1055 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1056 memcpy(header->asl_compiler_id, ASLC, 4);
1057
1058 header->asl_compiler_revision = asl_revision;
1059 header->length = sizeof(struct acpi_spmi);
1060 header->revision = get_acpi_table_revision(SPMI);
1061
1062 spmi->reserved = 1;
1063
1064 if (device->path.type == DEVICE_PATH_PCI) {
1065 spmi->pci_device_flag = ACPI_IPMI_PCI_DEVICE_FLAG;
1066 spmi->pci_bus = device->bus->secondary;
1067 spmi->pci_device = device->path.pci.devfn >> 3;
1068 spmi->pci_function = device->path.pci.devfn & 0x7;
1069 } else if (type != IPMI_INTERFACE_SSIF) {
1070 memcpy(spmi->uid, &uid, sizeof(spmi->uid));
1071 }
1072
1073 spmi->base_address = *addr;
1074 spmi->specification_revision = ipmi_revision;
1075
1076 spmi->interface_type = type;
1077
1078 if (gpe_interrupt >= 0 && gpe_interrupt < 32) {
1079 spmi->gpe = gpe_interrupt;
1080 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_SCI;
1081 }
1082 if (apic_interrupt > 0) {
1083 spmi->global_system_interrupt = apic_interrupt;
1084 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_APIC;
1085 }
1086
1087 /* Calculate checksum. */
1088 header->checksum = acpi_checksum((void *)spmi, header->length);
1089}
1090
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001091void acpi_create_ivrs(acpi_ivrs_t *ivrs,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001092 unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t *ivrs_struct,
1093 unsigned long current))
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001094{
1095 acpi_header_t *header = &(ivrs->header);
1096 unsigned long current = (unsigned long)ivrs + sizeof(acpi_ivrs_t);
1097
1098 memset((void *)ivrs, 0, sizeof(acpi_ivrs_t));
1099
John Zhao2ba303e2019-05-28 16:48:14 -07001100 if (!header)
1101 return;
1102
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001103 /* Fill out header fields. */
1104 memcpy(header->signature, "IVRS", 4);
1105 memcpy(header->oem_id, OEM_ID, 6);
1106 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1107 memcpy(header->asl_compiler_id, ASLC, 4);
1108
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001109 header->asl_compiler_revision = asl_revision;
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001110 header->length = sizeof(acpi_ivrs_t);
Marc Jones93a51762018-08-22 18:57:24 -06001111 header->revision = get_acpi_table_revision(IVRS);
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001112
1113 current = acpi_fill_ivrs(ivrs, current);
1114
1115 /* (Re)calculate length and checksum. */
1116 header->length = current - (unsigned long)ivrs;
1117 header->checksum = acpi_checksum((void *)ivrs, header->length);
1118}
1119
Jason Glenesk61624b22020-11-02 20:06:23 -08001120void acpi_create_crat(struct acpi_crat_header *crat,
1121 unsigned long (*acpi_fill_crat)(struct acpi_crat_header *crat_struct,
1122 unsigned long current))
1123{
1124 acpi_header_t *header = &(crat->header);
1125 unsigned long current = (unsigned long)crat + sizeof(struct acpi_crat_header);
1126
1127 memset((void *)crat, 0, sizeof(struct acpi_crat_header));
1128
1129 if (!header)
1130 return;
1131
1132 /* Fill out header fields. */
1133 memcpy(header->signature, "CRAT", 4);
1134 memcpy(header->oem_id, OEM_ID, 6);
1135 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1136 memcpy(header->asl_compiler_id, ASLC, 4);
1137
1138 header->asl_compiler_revision = asl_revision;
1139 header->length = sizeof(struct acpi_crat_header);
1140 header->revision = get_acpi_table_revision(CRAT);
1141
1142 current = acpi_fill_crat(crat, current);
1143
1144 /* (Re)calculate length and checksum. */
1145 header->length = current - (unsigned long)crat;
1146 header->checksum = acpi_checksum((void *)crat, header->length);
1147}
1148
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001149unsigned long acpi_write_hpet(const struct device *device, unsigned long current,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001150 acpi_rsdp_t *rsdp)
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001151{
1152 acpi_hpet_t *hpet;
1153
1154 /*
1155 * We explicitly add these tables later on:
1156 */
1157 printk(BIOS_DEBUG, "ACPI: * HPET\n");
1158
1159 hpet = (acpi_hpet_t *) current;
1160 current += sizeof(acpi_hpet_t);
Felix Heldc4697122019-06-20 13:50:17 +02001161 current = ALIGN_UP(current, 16);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001162 acpi_create_hpet(hpet);
1163 acpi_add_table(rsdp, hpet);
1164
1165 return current;
1166}
1167
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001168void acpi_create_dbg2(acpi_dbg2_header_t *dbg2,
1169 int port_type, int port_subtype,
1170 acpi_addr_t *address, uint32_t address_size,
1171 const char *device_path)
1172{
1173 uintptr_t current;
1174 acpi_dbg2_device_t *device;
1175 uint32_t *dbg2_addr_size;
1176 acpi_header_t *header;
1177 size_t path_len;
1178 const char *path;
1179 char *namespace;
1180
1181 /* Fill out header fields. */
1182 current = (uintptr_t)dbg2;
1183 memset(dbg2, 0, sizeof(acpi_dbg2_header_t));
1184 header = &(dbg2->header);
John Zhao2ba303e2019-05-28 16:48:14 -07001185
1186 if (!header)
1187 return;
1188
Marc Jones93a51762018-08-22 18:57:24 -06001189 header->revision = get_acpi_table_revision(DBG2);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001190 memcpy(header->signature, "DBG2", 4);
1191 memcpy(header->oem_id, OEM_ID, 6);
1192 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1193 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001194 header->asl_compiler_revision = asl_revision;
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001195
1196 /* One debug device defined */
1197 dbg2->devices_offset = sizeof(acpi_dbg2_header_t);
1198 dbg2->devices_count = 1;
1199 current += sizeof(acpi_dbg2_header_t);
1200
1201 /* Device comes after the header */
1202 device = (acpi_dbg2_device_t *)current;
1203 memset(device, 0, sizeof(acpi_dbg2_device_t));
1204 current += sizeof(acpi_dbg2_device_t);
1205
1206 device->revision = 0;
1207 device->address_count = 1;
1208 device->port_type = port_type;
1209 device->port_subtype = port_subtype;
1210
1211 /* Base Address comes after device structure */
1212 memcpy((void *)current, address, sizeof(acpi_addr_t));
1213 device->base_address_offset = current - (uintptr_t)device;
1214 current += sizeof(acpi_addr_t);
1215
1216 /* Address Size comes after address structure */
1217 dbg2_addr_size = (uint32_t *)current;
1218 device->address_size_offset = current - (uintptr_t)device;
1219 *dbg2_addr_size = address_size;
1220 current += sizeof(uint32_t);
1221
1222 /* Namespace string comes last, use '.' if not provided */
1223 path = device_path ? : ".";
1224 /* Namespace string length includes NULL terminator */
1225 path_len = strlen(path) + 1;
1226 namespace = (char *)current;
1227 device->namespace_string_length = path_len;
1228 device->namespace_string_offset = current - (uintptr_t)device;
1229 strncpy(namespace, path, path_len);
1230 current += path_len;
1231
1232 /* Update structure lengths and checksum */
1233 device->length = current - (uintptr_t)device;
1234 header->length = current - (uintptr_t)dbg2;
1235 header->checksum = acpi_checksum((uint8_t *)dbg2, header->length);
1236}
1237
1238unsigned long acpi_write_dbg2_pci_uart(acpi_rsdp_t *rsdp, unsigned long current,
Aamir Bohrae825d3f2019-07-30 10:11:41 +05301239 const struct device *dev, uint8_t access_size)
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001240{
1241 acpi_dbg2_header_t *dbg2 = (acpi_dbg2_header_t *)current;
1242 struct resource *res;
1243 acpi_addr_t address;
1244
1245 if (!dev) {
Wim Vervoorn6cd52432020-02-03 14:41:46 +01001246 printk(BIOS_DEBUG, "%s: Device not found\n", __func__);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001247 return current;
1248 }
Mario Scheithauerf1eb0ea2017-11-21 13:52:53 +01001249 if (!dev->enabled) {
1250 printk(BIOS_INFO, "%s: Device not enabled\n", __func__);
1251 return current;
1252 }
Angel Pons32d09be2021-11-03 13:27:45 +01001253 res = probe_resource(dev, PCI_BASE_ADDRESS_0);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001254 if (!res) {
1255 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
1256 __func__, dev_path(dev));
1257 return current;
1258 }
1259
1260 memset(&address, 0, sizeof(address));
1261 if (res->flags & IORESOURCE_IO)
1262 address.space_id = ACPI_ADDRESS_SPACE_IO;
1263 else if (res->flags & IORESOURCE_MEM)
1264 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
1265 else {
1266 printk(BIOS_ERR, "%s: Unknown address space type\n", __func__);
1267 return current;
1268 }
1269
1270 address.addrl = (uint32_t)res->base;
1271 address.addrh = (uint32_t)((res->base >> 32) & 0xffffffff);
1272 address.access_size = access_size;
1273
1274 acpi_create_dbg2(dbg2,
1275 ACPI_DBG2_PORT_SERIAL,
1276 ACPI_DBG2_PORT_SERIAL_16550,
1277 &address, res->size,
1278 acpi_device_path(dev));
1279
1280 if (dbg2->header.length) {
1281 current += dbg2->header.length;
1282 current = acpi_align_current(current);
1283 acpi_add_table(rsdp, dbg2);
1284 }
1285
1286 return current;
1287}
1288
Stefan Reinauer777224c2005-01-19 14:06:41 +00001289void acpi_create_facs(acpi_facs_t *facs)
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001290{
Uwe Hermann622824c2010-11-19 15:14:42 +00001291 memset((void *)facs, 0, sizeof(acpi_facs_t));
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001292
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001293 memcpy(facs->signature, "FACS", 4);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001294 facs->length = sizeof(acpi_facs_t);
1295 facs->hardware_signature = 0;
1296 facs->firmware_waking_vector = 0;
1297 facs->global_lock = 0;
1298 facs->flags = 0;
1299 facs->x_firmware_waking_vector_l = 0;
1300 facs->x_firmware_waking_vector_h = 0;
Marc Jones93a51762018-08-22 18:57:24 -06001301 facs->version = get_acpi_table_revision(FACS);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001302}
Stefan Reinauer777224c2005-01-19 14:06:41 +00001303
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001304static void acpi_write_rsdt(acpi_rsdt_t *rsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001305{
Uwe Hermann622824c2010-11-19 15:14:42 +00001306 acpi_header_t *header = &(rsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001307
John Zhao2ba303e2019-05-28 16:48:14 -07001308 if (!header)
1309 return;
1310
Uwe Hermann622824c2010-11-19 15:14:42 +00001311 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001312 memcpy(header->signature, "RSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001313 memcpy(header->oem_id, oem_id, 6);
1314 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +00001315 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001316
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001317 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +00001318 header->length = sizeof(acpi_rsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001319 header->revision = get_acpi_table_revision(RSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001320
Uwe Hermann622824c2010-11-19 15:14:42 +00001321 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauer688b3852004-01-28 16:56:14 +00001322
Uwe Hermann622824c2010-11-19 15:14:42 +00001323 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001324 header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001325}
1326
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001327static void acpi_write_xsdt(acpi_xsdt_t *xsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001328{
Uwe Hermann622824c2010-11-19 15:14:42 +00001329 acpi_header_t *header = &(xsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001330
John Zhao2ba303e2019-05-28 16:48:14 -07001331 if (!header)
1332 return;
1333
Uwe Hermann622824c2010-11-19 15:14:42 +00001334 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001335 memcpy(header->signature, "XSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001336 memcpy(header->oem_id, oem_id, 6);
1337 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001338 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001339
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001340 header->asl_compiler_revision = asl_revision;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001341 header->length = sizeof(acpi_xsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001342 header->revision = get_acpi_table_revision(XSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001343
Uwe Hermann622824c2010-11-19 15:14:42 +00001344 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001345
Uwe Hermann622824c2010-11-19 15:14:42 +00001346 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001347 header->checksum = acpi_checksum((void *)xsdt, sizeof(acpi_xsdt_t));
1348}
1349
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001350static void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt,
1351 acpi_xsdt_t *xsdt, char *oem_id)
Stefan Reinauer688b3852004-01-28 16:56:14 +00001352{
Stefan Reinauerd18faac2009-11-05 18:06:43 +00001353 memset(rsdp, 0, sizeof(acpi_rsdp_t));
Uwe Hermann622824c2010-11-19 15:14:42 +00001354
Stefan Reinauer688b3852004-01-28 16:56:14 +00001355 memcpy(rsdp->signature, RSDP_SIG, 8);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001356 memcpy(rsdp->oem_id, oem_id, 6);
Uwe Hermann622824c2010-11-19 15:14:42 +00001357
1358 rsdp->length = sizeof(acpi_rsdp_t);
Stefan Reinauerdefee172015-06-18 01:11:19 -07001359 rsdp->rsdt_address = (uintptr_t)rsdt;
Uwe Hermann622824c2010-11-19 15:14:42 +00001360
1361 /*
1362 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2.
1363 *
1364 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
1365 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
1366 * revision 0).
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001367 */
1368 if (xsdt == NULL) {
Uwe Hermann622824c2010-11-19 15:14:42 +00001369 rsdp->revision = 0;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001370 } else {
Stefan Reinauerdefee172015-06-18 01:11:19 -07001371 rsdp->xsdt_address = (u64)(uintptr_t)xsdt;
Marc Jones93a51762018-08-22 18:57:24 -06001372 rsdp->revision = get_acpi_table_revision(RSDP);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001373 }
Uwe Hermann622824c2010-11-19 15:14:42 +00001374
1375 /* Calculate checksums. */
1376 rsdp->checksum = acpi_checksum((void *)rsdp, 20);
1377 rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001378}
1379
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001380unsigned long acpi_create_hest_error_source(acpi_hest_t *hest,
1381 acpi_hest_esd_t *esd, u16 type, void *data, u16 data_len)
zbaocaf494c82012-04-13 13:57:14 +08001382{
1383 acpi_header_t *header = &(hest->header);
1384 acpi_hest_hen_t *hen;
1385 void *pos;
1386 u16 len;
1387
1388 pos = esd;
1389 memset(pos, 0, sizeof(acpi_hest_esd_t));
1390 len = 0;
1391 esd->type = type; /* MCE */
1392 esd->source_id = hest->error_source_count;
1393 esd->flags = 0; /* FIRMWARE_FIRST */
1394 esd->enabled = 1;
1395 esd->prealloc_erecords = 1;
1396 esd->max_section_per_record = 0x1;
1397
1398 len += sizeof(acpi_hest_esd_t);
1399 pos = esd + 1;
1400
1401 switch (type) {
1402 case 0: /* MCE */
1403 break;
1404 case 1: /* CMC */
1405 hen = (acpi_hest_hen_t *) (pos);
1406 memset(pos, 0, sizeof(acpi_hest_hen_t));
1407 hen->type = 3; /* SCI? */
1408 hen->length = sizeof(acpi_hest_hen_t);
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001409 hen->conf_we = 0; /* Configuration Write Enable. */
zbaocaf494c82012-04-13 13:57:14 +08001410 hen->poll_interval = 0;
1411 hen->vector = 0;
1412 hen->sw2poll_threshold_val = 0;
1413 hen->sw2poll_threshold_win = 0;
1414 hen->error_threshold_val = 0;
1415 hen->error_threshold_win = 0;
1416 len += sizeof(acpi_hest_hen_t);
1417 pos = hen + 1;
1418 break;
1419 case 2: /* NMI */
1420 case 6: /* AER Root Port */
1421 case 7: /* AER Endpoint */
1422 case 8: /* AER Bridge */
1423 case 9: /* Generic Hardware Error Source. */
1424 /* TODO: */
1425 break;
1426 default:
1427 printk(BIOS_DEBUG, "Invalid type of Error Source.");
1428 break;
1429 }
Lee Leahy024b13d2017-03-16 13:41:11 -07001430 hest->error_source_count++;
zbaocaf494c82012-04-13 13:57:14 +08001431
1432 memcpy(pos, data, data_len);
1433 len += data_len;
John Zhao2ba303e2019-05-28 16:48:14 -07001434 if (header)
1435 header->length += len;
zbaocaf494c82012-04-13 13:57:14 +08001436
1437 return len;
1438}
1439
1440/* ACPI 4.0 */
Vladimir Serbinenko807127f2014-11-09 13:36:18 +01001441void acpi_write_hest(acpi_hest_t *hest,
1442 unsigned long (*acpi_fill_hest)(acpi_hest_t *hest))
zbaocaf494c82012-04-13 13:57:14 +08001443{
1444 acpi_header_t *header = &(hest->header);
1445
1446 memset(hest, 0, sizeof(acpi_hest_t));
1447
John Zhao2ba303e2019-05-28 16:48:14 -07001448 if (!header)
1449 return;
1450
zbaocaf494c82012-04-13 13:57:14 +08001451 memcpy(header->signature, "HEST", 4);
1452 memcpy(header->oem_id, OEM_ID, 6);
1453 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1454 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001455 header->asl_compiler_revision = asl_revision;
zbaocaf494c82012-04-13 13:57:14 +08001456 header->length += sizeof(acpi_hest_t);
Marc Jones93a51762018-08-22 18:57:24 -06001457 header->revision = get_acpi_table_revision(HEST);
zbaocaf494c82012-04-13 13:57:14 +08001458
1459 acpi_fill_hest(hest);
1460
1461 /* Calculate checksums. */
1462 header->checksum = acpi_checksum((void *)hest, header->length);
1463}
1464
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001465/* ACPI 3.0b */
1466void acpi_write_bert(acpi_bert_t *bert, uintptr_t region, size_t length)
1467{
1468 acpi_header_t *header = &(bert->header);
1469
1470 memset(bert, 0, sizeof(acpi_bert_t));
1471
John Zhao2ba303e2019-05-28 16:48:14 -07001472 if (!header)
1473 return;
1474
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001475 memcpy(header->signature, "BERT", 4);
1476 memcpy(header->oem_id, OEM_ID, 6);
1477 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1478 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001479 header->asl_compiler_revision = asl_revision;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001480 header->length += sizeof(acpi_bert_t);
1481 header->revision = get_acpi_table_revision(BERT);
1482
1483 bert->error_region = region;
1484 bert->region_length = length;
1485
1486 /* Calculate checksums. */
1487 header->checksum = acpi_checksum((void *)bert, header->length);
1488}
1489
Angel Pons79572e42020-07-13 00:17:43 +02001490__weak void arch_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001491__weak void soc_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001492__weak void mainboard_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001493
Lee Leahy024b13d2017-03-16 13:41:11 -07001494void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001495{
1496 acpi_header_t *header = &(fadt->header);
1497
1498 memset((void *) fadt, 0, sizeof(acpi_fadt_t));
John Zhao2ba303e2019-05-28 16:48:14 -07001499
1500 if (!header)
1501 return;
1502
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001503 memcpy(header->signature, "FACP", 4);
1504 header->length = sizeof(acpi_fadt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001505 header->revision = get_acpi_table_revision(FADT);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001506 memcpy(header->oem_id, OEM_ID, 6);
1507 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1508 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +01001509 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001510
Elyes Haouas532e0432022-02-21 18:13:58 +01001511 fadt->FADT_MinorVersion = get_acpi_fadt_minor_version();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001512 fadt->firmware_ctrl = (unsigned long) facs;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001513 fadt->x_firmware_ctl_l = (unsigned long)facs;
1514 fadt->x_firmware_ctl_h = 0;
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001515
1516 fadt->dsdt = (unsigned long) dsdt;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001517 fadt->x_dsdt_l = (unsigned long)dsdt;
1518 fadt->x_dsdt_h = 0;
1519
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001520 /* should be 0 ACPI 3.0 */
1521 fadt->reserved = 0;
1522
Kyösti Mälkkie0d38682020-06-07 12:01:58 +03001523 fadt->preferred_pm_profile = acpi_get_preferred_pm_profile();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001524
Nico Huberd5811372021-07-12 18:11:58 +02001525 if (CONFIG(USE_PC_CMOS_ALTCENTURY))
1526 fadt->century = RTC_CLK_ALTCENTURY;
1527
Angel Pons79572e42020-07-13 00:17:43 +02001528 arch_fill_fadt(fadt);
1529
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +02001530 acpi_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001531
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001532 soc_fill_fadt(fadt);
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001533 mainboard_fill_fadt(fadt);
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001534
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001535 header->checksum =
1536 acpi_checksum((void *) fadt, header->length);
1537}
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001538
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001539void acpi_create_lpit(acpi_lpit_t *lpit)
1540{
1541 acpi_header_t *header = &(lpit->header);
1542 unsigned long current = (unsigned long)lpit + sizeof(acpi_lpit_t);
1543
1544 memset((void *)lpit, 0, sizeof(acpi_lpit_t));
1545
1546 if (!header)
1547 return;
1548
1549 /* Fill out header fields. */
1550 memcpy(header->signature, "LPIT", 4);
1551 memcpy(header->oem_id, OEM_ID, 6);
1552 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1553 memcpy(header->asl_compiler_id, ASLC, 4);
1554
1555 header->asl_compiler_revision = asl_revision;
1556 header->revision = get_acpi_table_revision(LPIT);
1557 header->oem_revision = 42;
1558 header->length = sizeof(acpi_lpit_t);
1559
1560 current = acpi_fill_lpit(current);
1561
1562 /* (Re)calculate length and checksum. */
1563 header->length = current - (unsigned long)lpit;
1564 header->checksum = acpi_checksum((void *)lpit, header->length);
1565}
1566
1567unsigned long acpi_create_lpi_desc_ncst(acpi_lpi_desc_ncst_t *lpi_desc, uint16_t uid)
1568{
1569 memset(lpi_desc, 0, sizeof(acpi_lpi_desc_ncst_t));
1570 lpi_desc->header.length = sizeof(acpi_lpi_desc_ncst_t);
1571 lpi_desc->header.type = ACPI_LPI_DESC_TYPE_NATIVE_CSTATE;
1572 lpi_desc->header.uid = uid;
1573
1574 return lpi_desc->header.length;
1575}
1576
Aaron Durbin64031672018-04-21 14:45:32 -06001577unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001578{
1579 return 0;
1580}
1581
Raul E Rangel6b446b92021-11-19 11:38:35 -07001582void preload_acpi_dsdt(void)
1583{
1584 const char *file = CONFIG_CBFS_PREFIX "/dsdt.aml";
1585
1586 if (!CONFIG(CBFS_PRELOAD))
1587 return;
1588
1589 printk(BIOS_DEBUG, "Preloading %s\n", file);
1590 cbfs_preload(file);
1591}
1592
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001593unsigned long write_acpi_tables(unsigned long start)
1594{
1595 unsigned long current;
1596 acpi_rsdp_t *rsdp;
1597 acpi_rsdt_t *rsdt;
1598 acpi_xsdt_t *xsdt;
1599 acpi_fadt_t *fadt;
1600 acpi_facs_t *facs;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001601 acpi_header_t *slic_file, *slic;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001602 acpi_header_t *ssdt;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001603 acpi_header_t *dsdt_file, *dsdt;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001604 acpi_mcfg_t *mcfg;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001605 acpi_tcpa_t *tcpa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001606 acpi_tpm2_t *tpm2;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001607 acpi_madt_t *madt;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001608 acpi_lpit_t *lpit;
Francois Toguo522e0db2021-01-21 09:55:19 -08001609 acpi_bert_t *bert;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +11001610 struct device *dev;
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001611 unsigned long fw;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001612 size_t slic_size, dsdt_size;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001613 char oem_id[6], oem_table_id[8];
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001614
1615 current = start;
1616
1617 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -06001618 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001619
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001620 /* Special case for qemu */
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001621 fw = fw_cfg_acpi_tables(current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001622 if (fw) {
1623 rsdp = NULL;
1624 /* Find RSDP. */
1625 for (void *p = (void *)current; p < (void *)fw; p += 16) {
1626 if (valid_rsdp((acpi_rsdp_t *)p)) {
1627 rsdp = p;
1628 break;
1629 }
1630 }
1631 if (!rsdp)
1632 return fw;
1633
1634 /* Add BOOT0000 for Linux google firmware driver */
1635 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1636 ssdt = (acpi_header_t *)fw;
1637 current = (unsigned long)ssdt + sizeof(acpi_header_t);
1638
1639 memset((void *)ssdt, 0, sizeof(acpi_header_t));
1640
1641 memcpy(&ssdt->signature, "SSDT", 4);
1642 ssdt->revision = get_acpi_table_revision(SSDT);
1643 memcpy(&ssdt->oem_id, OEM_ID, 6);
1644 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
1645 ssdt->oem_revision = 42;
1646 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
1647 ssdt->asl_compiler_revision = asl_revision;
1648 ssdt->length = sizeof(acpi_header_t);
1649
1650 acpigen_set_current((char *) current);
1651
1652 /* Write object to declare coreboot tables */
1653 acpi_ssdt_write_cbtable();
1654
1655 /* (Re)calculate length and checksum. */
1656 ssdt->length = current - (unsigned long)ssdt;
1657 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
1658
1659 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
1660
1661 acpi_add_table(rsdp, ssdt);
1662
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001663 return fw;
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001664 }
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001665
Julius Werner834b3ec2020-03-04 16:52:08 -08001666 dsdt_file = cbfs_map(CONFIG_CBFS_PREFIX "/dsdt.aml", &dsdt_size);
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001667 if (!dsdt_file) {
1668 printk(BIOS_ERR, "No DSDT file, skipping ACPI tables\n");
1669 return current;
1670 }
1671
1672 if (dsdt_file->length > dsdt_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001673 || dsdt_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001674 || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
1675 printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
1676 return current;
1677 }
1678
Julius Werner834b3ec2020-03-04 16:52:08 -08001679 slic_file = cbfs_map(CONFIG_CBFS_PREFIX "/slic", &slic_size);
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001680 if (slic_file
1681 && (slic_file->length > slic_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001682 || slic_file->length < sizeof(acpi_header_t)
Benjamin Doron2b2dc0c2020-09-12 02:55:57 +00001683 || (memcmp(slic_file->signature, "SLIC", 4) != 0
1684 && memcmp(slic_file->signature, "MSDM", 4) != 0))) {
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001685 slic_file = 0;
1686 }
1687
1688 if (slic_file) {
1689 memcpy(oem_id, slic_file->oem_id, 6);
1690 memcpy(oem_table_id, slic_file->oem_table_id, 8);
1691 } else {
1692 memcpy(oem_id, OEM_ID, 6);
1693 memcpy(oem_table_id, ACPI_TABLE_CREATOR, 8);
1694 }
1695
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001696 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
1697
1698 /* We need at least an RSDP and an RSDT Table */
1699 rsdp = (acpi_rsdp_t *) current;
1700 current += sizeof(acpi_rsdp_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001701 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001702 rsdt = (acpi_rsdt_t *) current;
1703 current += sizeof(acpi_rsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001704 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001705 xsdt = (acpi_xsdt_t *) current;
1706 current += sizeof(acpi_xsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001707 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001708
1709 /* clear all table memory */
1710 memset((void *) start, 0, current - start);
1711
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001712 acpi_write_rsdp(rsdp, rsdt, xsdt, oem_id);
1713 acpi_write_rsdt(rsdt, oem_id, oem_table_id);
1714 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001715
1716 printk(BIOS_DEBUG, "ACPI: * FACS\n");
Felix Heldc4697122019-06-20 13:50:17 +02001717 current = ALIGN_UP(current, 64);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001718 facs = (acpi_facs_t *) current;
1719 current += sizeof(acpi_facs_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001720 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001721 acpi_create_facs(facs);
1722
1723 printk(BIOS_DEBUG, "ACPI: * DSDT\n");
1724 dsdt = (acpi_header_t *) current;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001725 memcpy(dsdt, dsdt_file, sizeof(acpi_header_t));
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001726 if (dsdt->length >= sizeof(acpi_header_t)) {
1727 current += sizeof(acpi_header_t);
1728
1729 acpigen_set_current((char *) current);
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001730
Kyösti Mälkki37eb24b2021-01-11 18:40:37 +02001731 if (CONFIG(ACPI_SOC_NVS))
1732 acpi_fill_gnvs();
Kyösti Mälkki3dc17922021-03-16 19:01:48 +02001733 if (CONFIG(CHROMEOS_NVS))
1734 acpi_fill_cnvs();
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001735
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001736 for (dev = all_devices; dev; dev = dev->next)
Nico Huber68680dd2020-03-31 17:34:52 +02001737 if (dev->ops && dev->ops->acpi_inject_dsdt)
1738 dev->ops->acpi_inject_dsdt(dev);
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001739 current = (unsigned long) acpigen_get_current();
1740 memcpy((char *)current,
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001741 (char *)dsdt_file + sizeof(acpi_header_t),
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001742 dsdt->length - sizeof(acpi_header_t));
1743 current += dsdt->length - sizeof(acpi_header_t);
1744
1745 /* (Re)calculate length and checksum. */
1746 dsdt->length = current - (unsigned long)dsdt;
1747 dsdt->checksum = 0;
1748 dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
1749 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001750
Aaron Durbin07a1b282015-12-10 17:07:38 -06001751 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001752
1753 printk(BIOS_DEBUG, "ACPI: * FADT\n");
1754 fadt = (acpi_fadt_t *) current;
1755 current += sizeof(acpi_fadt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001756 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001757
1758 acpi_create_fadt(fadt, facs, dsdt);
1759 acpi_add_table(rsdp, fadt);
1760
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001761 if (slic_file) {
1762 printk(BIOS_DEBUG, "ACPI: * SLIC\n");
1763 slic = (acpi_header_t *)current;
1764 memcpy(slic, slic_file, slic_file->length);
1765 current += slic_file->length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001766 current = acpi_align_current(current);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001767 acpi_add_table(rsdp, slic);
1768 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001769
1770 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1771 ssdt = (acpi_header_t *)current;
1772 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001773 if (ssdt->length > sizeof(acpi_header_t)) {
1774 current += ssdt->length;
1775 acpi_add_table(rsdp, ssdt);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001776 current = acpi_align_current(current);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001777 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001778
1779 printk(BIOS_DEBUG, "ACPI: * MCFG\n");
1780 mcfg = (acpi_mcfg_t *) current;
1781 acpi_create_mcfg(mcfg);
1782 if (mcfg->header.length > sizeof(acpi_mcfg_t)) {
1783 current += mcfg->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001784 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001785 acpi_add_table(rsdp, mcfg);
1786 }
1787
Julius Wernercd49cce2019-03-05 16:53:33 -08001788 if (CONFIG(TPM1)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001789 printk(BIOS_DEBUG, "ACPI: * TCPA\n");
1790 tcpa = (acpi_tcpa_t *) current;
1791 acpi_create_tcpa(tcpa);
1792 if (tcpa->header.length >= sizeof(acpi_tcpa_t)) {
1793 current += tcpa->header.length;
1794 current = acpi_align_current(current);
1795 acpi_add_table(rsdp, tcpa);
1796 }
1797 }
1798
Julius Wernercd49cce2019-03-05 16:53:33 -08001799 if (CONFIG(TPM2)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001800 printk(BIOS_DEBUG, "ACPI: * TPM2\n");
1801 tpm2 = (acpi_tpm2_t *) current;
1802 acpi_create_tpm2(tpm2);
1803 if (tpm2->header.length >= sizeof(acpi_tpm2_t)) {
1804 current += tpm2->header.length;
1805 current = acpi_align_current(current);
1806 acpi_add_table(rsdp, tpm2);
1807 }
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001808 }
1809
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001810 if (CONFIG(ACPI_LPIT)) {
1811 printk(BIOS_DEBUG, "ACPI: * LPIT\n");
1812
1813 lpit = (acpi_lpit_t *)current;
1814 acpi_create_lpit(lpit);
1815 if (lpit->header.length >= sizeof(acpi_lpit_t)) {
1816 current += lpit->header.length;
1817 current = acpi_align_current(current);
1818 acpi_add_table(rsdp, lpit);
1819 }
1820 }
1821
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001822 printk(BIOS_DEBUG, "ACPI: * MADT\n");
1823
1824 madt = (acpi_madt_t *) current;
1825 acpi_create_madt(madt);
1826 if (madt->header.length > sizeof(acpi_madt_t)) {
Lee Leahy024b13d2017-03-16 13:41:11 -07001827 current += madt->header.length;
1828 acpi_add_table(rsdp, madt);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001829 }
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001830
Aaron Durbin07a1b282015-12-10 17:07:38 -06001831 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001832
Felix Heldfba479262021-05-28 16:11:43 +02001833 if (CONFIG(ACPI_BERT)) {
Francois Toguo522e0db2021-01-21 09:55:19 -08001834 void *region;
1835 size_t size;
Francois Toguo522e0db2021-01-21 09:55:19 -08001836 bert = (acpi_bert_t *) current;
Felix Heldfba479262021-05-28 16:11:43 +02001837 if (acpi_soc_get_bert_region(&region, &size) == CB_SUCCESS) {
1838 printk(BIOS_DEBUG, "ACPI: * BERT\n");
1839 acpi_write_bert(bert, (uintptr_t)region, size);
1840 if (bert->header.length >= sizeof(acpi_bert_t)) {
1841 current += bert->header.length;
1842 acpi_add_table(rsdp, bert);
1843 }
1844 current = acpi_align_current(current);
Francois Toguo522e0db2021-01-21 09:55:19 -08001845 }
Francois Toguo522e0db2021-01-21 09:55:19 -08001846 }
1847
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001848 printk(BIOS_DEBUG, "current = %lx\n", current);
1849
1850 for (dev = all_devices; dev; dev = dev->next) {
1851 if (dev->ops && dev->ops->write_acpi_tables) {
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001852 current = dev->ops->write_acpi_tables(dev, current,
1853 rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001854 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001855 }
1856 }
1857
1858 printk(BIOS_INFO, "ACPI: done.\n");
1859 return current;
1860}
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001861
Rudolf Marek33cafe52009-04-13 18:07:02 +00001862static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
1863{
1864 if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0)
1865 return NULL;
1866
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001867 printk(BIOS_DEBUG, "Looking on %p for valid checksum\n", rsdp);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001868
1869 if (acpi_checksum((void *)rsdp, 20) != 0)
1870 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001871 printk(BIOS_DEBUG, "Checksum 1 passed\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001872
1873 if ((rsdp->revision > 1) && (acpi_checksum((void *)rsdp,
1874 rsdp->length) != 0))
1875 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001876 printk(BIOS_DEBUG, "Checksum 2 passed all OK\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001877
1878 return rsdp;
1879}
1880
Rudolf Marek33cafe52009-04-13 18:07:02 +00001881void *acpi_find_wakeup_vector(void)
1882{
1883 char *p, *end;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001884 acpi_rsdt_t *rsdt;
1885 acpi_facs_t *facs;
Martin Rothc5f49262012-12-14 19:17:55 -07001886 acpi_fadt_t *fadt = NULL;
Kyösti Mälkki072d436b2016-06-17 08:44:40 +03001887 acpi_rsdp_t *rsdp = NULL;
Uwe Hermann622824c2010-11-19 15:14:42 +00001888 void *wake_vec;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001889 int i;
1890
Kyösti Mälkkib8c7ea02020-11-17 16:41:38 +02001891 if (!acpi_is_wakeup_s3())
Rudolf Marek33cafe52009-04-13 18:07:02 +00001892 return NULL;
1893
Uwe Hermann622824c2010-11-19 15:14:42 +00001894 printk(BIOS_DEBUG, "Trying to find the wakeup vector...\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001895
Uwe Hermann622824c2010-11-19 15:14:42 +00001896 /* Find RSDP. */
1897 for (p = (char *)0xe0000; p < (char *)0xfffff; p += 16) {
Lee Leahy0b5678f2017-03-16 16:01:40 -07001898 rsdp = valid_rsdp((acpi_rsdp_t *)p);
1899 if (rsdp)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001900 break;
1901 }
1902
Angel Pons98a68ad2018-11-04 12:25:25 +01001903 if (rsdp == NULL) {
1904 printk(BIOS_ALERT,
1905 "No RSDP found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001906 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001907 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001908
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001909 printk(BIOS_DEBUG, "RSDP found at %p\n", rsdp);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001910 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +00001911
Uwe Hermann622824c2010-11-19 15:14:42 +00001912 end = (char *)rsdt + rsdt->header.length;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001913 printk(BIOS_DEBUG, "RSDT found at %p ends at %p\n", rsdt, end);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001914
Uwe Hermann622824c2010-11-19 15:14:42 +00001915 for (i = 0; ((char *)&rsdt->entry[i]) < end; i++) {
Stefan Reinauer71a30182015-07-30 16:28:13 -07001916 fadt = (acpi_fadt_t *)(uintptr_t)rsdt->entry[i];
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001917 if (strncmp((char *)fadt, "FACP", 4) == 0)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001918 break;
1919 fadt = NULL;
1920 }
1921
Angel Pons98a68ad2018-11-04 12:25:25 +01001922 if (fadt == NULL) {
1923 printk(BIOS_ALERT,
1924 "No FADT found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001925 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001926 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001927
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001928 printk(BIOS_DEBUG, "FADT found at %p\n", fadt);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001929 facs = (acpi_facs_t *)(uintptr_t)fadt->firmware_ctrl;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001930
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001931 if (facs == NULL) {
Angel Pons98a68ad2018-11-04 12:25:25 +01001932 printk(BIOS_ALERT,
1933 "No FACS found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001934 return NULL;
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001935 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001936
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001937 printk(BIOS_DEBUG, "FACS found at %p\n", facs);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001938 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001939 printk(BIOS_DEBUG, "OS waking vector is %p\n", wake_vec);
Uwe Hermann622824c2010-11-19 15:14:42 +00001940
Rudolf Marek33cafe52009-04-13 18:07:02 +00001941 return wake_vec;
1942}
1943
Aaron Durbin64031672018-04-21 14:45:32 -06001944__weak int acpi_get_gpe(int gpe)
Duncan Laurie1f6e6812016-09-19 12:04:19 -07001945{
1946 return -1; /* implemented by SOC */
1947}
Marc Jones93a51762018-08-22 18:57:24 -06001948
Elyes Haouas8b950f42022-02-16 12:08:16 +01001949u8 get_acpi_fadt_minor_version(void)
1950{
1951 return ACPI_FADT_MINOR_VERSION_0;
1952}
1953
Marc Jones93a51762018-08-22 18:57:24 -06001954int get_acpi_table_revision(enum acpi_tables table)
1955{
1956 switch (table) {
1957 case FADT:
Elyes Haouas8b950f42022-02-16 12:08:16 +01001958 return ACPI_FADT_REV_ACPI_6;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001959 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 +01001960 return 3;
Marc Jones93a51762018-08-22 18:57:24 -06001961 case MCFG:
1962 return 1;
1963 case TCPA:
1964 return 2;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001965 case TPM2:
1966 return 4;
Martin Roth0949e732021-10-01 14:28:22 -06001967 case SSDT: /* ACPI 3.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001968 return 2;
Martin Roth0949e732021-10-01 14:28:22 -06001969 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 -06001970 return 1; /* TODO Should probably be upgraded to 2 */
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -07001971 case HMAT: /* ACPI 6.4: 2 */
1972 return 2;
Marc Jones93a51762018-08-22 18:57:24 -06001973 case DMAR:
1974 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001975 case SLIT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001976 return 1;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001977 case SPMI: /* IMPI 2.0 */
1978 return 5;
Marc Jones93a51762018-08-22 18:57:24 -06001979 case HPET: /* Currently 1. Table added in ACPI 2.0. */
1980 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001981 case VFCT: /* ACPI 2.0/3.0/4.0: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001982 return 1;
1983 case IVRS:
Jason Glenesk1916f892020-07-24 02:51:30 -07001984 return IVRS_FORMAT_MIXED;
Marc Jones93a51762018-08-22 18:57:24 -06001985 case DBG2:
1986 return 0;
Martin Roth0949e732021-10-01 14:28:22 -06001987 case FACS: /* ACPI 2.0/3.0: 1, ACPI 4.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001988 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001989 case RSDT: /* ACPI 1.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001990 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001991 case XSDT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001992 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001993 case RSDP: /* ACPI 2.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001994 return 2;
Rocky Phaguraeff07132021-01-10 15:42:50 -08001995 case EINJ:
1996 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06001997 case HEST:
1998 return 1;
1999 case NHLT:
2000 return 5;
Marshall Dawson44705c62018-09-04 13:47:15 -06002001 case BERT:
2002 return 1;
Jason Glenesk61624b22020-11-02 20:06:23 -08002003 case CRAT:
2004 return 1;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01002005 case LPIT: /* ACPI 5.1 up to 6.3: 0 */
2006 return 0;
Marc Jones93a51762018-08-22 18:57:24 -06002007 default:
2008 return -1;
2009 }
2010 return -1;
2011}