blob: 486f8e34ed13762ce914b490eef641b09462616c [file] [log] [blame]
Stefan Reinauer688b3852004-01-28 16:56:14 +00001/*
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00002 * This file is part of the coreboot project.
3 *
Stefan Reinauerf8ee1802008-01-18 15:08:58 +00004 * coreboot ACPI Table support
Stefan Reinauer688b3852004-01-28 16:56:14 +00005 * written by Stefan Reinauer <stepan@openbios.org>
Uwe Hermannc70e9fc2010-02-15 23:10:19 +00006 *
7 * Copyright (C) 2004 SUSE LINUX AG
8 * Copyright (C) 2005-2009 coresystems GmbH
Lee Leahy6f80ccc2017-03-16 15:18:22 -07009 * Copyright (C) 2015 Timothy Pearson <tpearson@raptorengineeringinc.com>,
10 * Raptor Engineering
Werner Zehdb561e62019-02-19 13:39:56 +010011 * Copyright (C) 2016-2019 Siemens AG
Stefan Reinauer777224c2005-01-19 14:06:41 +000012 *
Stefan Reinauer14e22772010-04-27 06:56:47 +000013 * ACPI FADT, FACS, and DSDT table support added by
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000014 * Nick Barker <nick.barker9@btinternet.com>, and those portions
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000015 * Copyright (C) 2004 Nick Barker
Stefan Reinauerf622d592005-11-26 16:56:05 +000016 *
Uwe Hermannc70e9fc2010-02-15 23:10:19 +000017 * Copyright (C) 2005 ADVANCED MICRO DEVICES, INC. All Rights Reserved.
Stefan Reinauerd6edf7a2006-01-05 00:19:52 +000018 * 2005.9 yhlu add SRAT table generation
Martin Roth9df9e9392016-01-12 15:55:28 -070019 *
20 * This program is free software; you can redistribute it and/or modify
21 * it under the terms of the GNU General Public License as published by
22 * the Free Software Foundation; version 2 of the License.
23 *
24 * This program is distributed in the hope that it will be useful,
25 * but WITHOUT ANY WARRANTY; without even the implied warranty of
26 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
27 * GNU General Public License for more details.
Stefan Reinauer777224c2005-01-19 14:06:41 +000028 */
29
Stefan Reinauer14e22772010-04-27 06:56:47 +000030/*
Stefan Reinauer777224c2005-01-19 14:06:41 +000031 * Each system port implementing ACPI has to provide two functions:
Stefan Reinauer14e22772010-04-27 06:56:47 +000032 *
Stefan Reinauer777224c2005-01-19 14:06:41 +000033 * write_acpi_tables()
34 * acpi_dump_apics()
Stefan Reinauer14e22772010-04-27 06:56:47 +000035 *
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000036 * See Kontron 986LCD-M port for a good example of an ACPI implementation
37 * in coreboot.
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000038 */
Stefan Reinauer688b3852004-01-28 16:56:14 +000039
40#include <console/console.h>
41#include <string.h>
42#include <arch/acpi.h>
Martin Rotha66df492016-09-06 10:22:34 -060043#include <arch/acpi_ivrs.h>
Rudolf Marek293b5f52009-02-01 18:35:15 +000044#include <arch/acpigen.h>
Stefan Reinauer777224c2005-01-19 14:06:41 +000045#include <device/pci.h>
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000046#include <cbmem.h>
Patrick Georgic8feedd2012-02-16 18:43:25 +010047#include <cpu/x86/lapic_def.h>
Duncan Laurie11290c42012-10-03 19:07:05 -070048#include <cpu/cpu.h>
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +010049#include <cbfs.h>
Elyes HAOUAS26071aa2019-02-15 08:21:33 +010050#include <version.h>
Werner Zehdb561e62019-02-19 13:39:56 +010051#include <commonlib/sort.h>
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000052
53u8 acpi_checksum(u8 *table, u32 length)
Stefan Reinauer688b3852004-01-28 16:56:14 +000054{
Uwe Hermann622824c2010-11-19 15:14:42 +000055 u8 ret = 0;
Stefan Reinauer688b3852004-01-28 16:56:14 +000056 while (length--) {
57 ret += *table;
58 table++;
59 }
Stefan Reinauera7648c22004-01-29 17:31:34 +000060 return -ret;
Stefan Reinauer688b3852004-01-28 16:56:14 +000061}
62
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000063/**
Uwe Hermann622824c2010-11-19 15:14:42 +000064 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
65 * and checksum.
Stefan Reinauer06feb882004-02-03 16:11:35 +000066 */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000067void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
Stefan Reinauer688b3852004-01-28 16:56:14 +000068{
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000069 int i, entries_num;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000070 acpi_rsdt_t *rsdt;
71 acpi_xsdt_t *xsdt = NULL;
72
Uwe Hermann622824c2010-11-19 15:14:42 +000073 /* The RSDT is mandatory... */
Stefan Reinauerdefee172015-06-18 01:11:19 -070074 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000075
Uwe Hermann622824c2010-11-19 15:14:42 +000076 /* ...while the XSDT is not. */
77 if (rsdp->xsdt_address)
Stefan Reinauerdefee172015-06-18 01:11:19 -070078 xsdt = (acpi_xsdt_t *)((uintptr_t)rsdp->xsdt_address);
Stefan Reinauer14e22772010-04-27 06:56:47 +000079
Uwe Hermann622824c2010-11-19 15:14:42 +000080 /* This should always be MAX_ACPI_TABLES. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000081 entries_num = ARRAY_SIZE(rsdt->entry);
Stefan Reinauer14e22772010-04-27 06:56:47 +000082
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000083 for (i = 0; i < entries_num; i++) {
Uwe Hermann622824c2010-11-19 15:14:42 +000084 if (rsdt->entry[i] == 0)
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000085 break;
Stefan Reinauer688b3852004-01-28 16:56:14 +000086 }
87
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000088 if (i >= entries_num) {
Uwe Hermann622824c2010-11-19 15:14:42 +000089 printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030090 "too many tables.\n");
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000091 return;
92 }
93
Uwe Hermann622824c2010-11-19 15:14:42 +000094 /* Add table to the RSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070095 rsdt->entry[i] = (uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000096
Uwe Hermann622824c2010-11-19 15:14:42 +000097 /* Fix RSDT length or the kernel will assume invalid entries. */
98 rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000099
Uwe Hermann622824c2010-11-19 15:14:42 +0000100 /* Re-calculate checksum. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000101 rsdt->header.checksum = 0; /* Hope this won't get optimized away */
Uwe Hermann622824c2010-11-19 15:14:42 +0000102 rsdt->header.checksum = acpi_checksum((u8 *)rsdt, rsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000103
Uwe Hermann622824c2010-11-19 15:14:42 +0000104 /*
105 * And now the same thing for the XSDT. We use the same index as for
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000106 * now we want the XSDT and RSDT to always be in sync in coreboot.
107 */
108 if (xsdt) {
Uwe Hermann622824c2010-11-19 15:14:42 +0000109 /* Add table to the XSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -0700110 xsdt->entry[i] = (u64)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000111
Uwe Hermann622824c2010-11-19 15:14:42 +0000112 /* Fix XSDT length. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000113 xsdt->header.length = sizeof(acpi_header_t) +
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300114 (sizeof(u64) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000115
Uwe Hermann622824c2010-11-19 15:14:42 +0000116 /* Re-calculate checksum. */
117 xsdt->header.checksum = 0;
118 xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300119 xsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000120 }
121
Uwe Hermann622824c2010-11-19 15:14:42 +0000122 printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300123 i + 1, entries_num, rsdt->header.length);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000124}
125
Uwe Hermann622824c2010-11-19 15:14:42 +0000126int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300127 u16 seg_nr, u8 start, u8 end)
Stefan Reinauer26d431a2009-01-20 19:17:51 +0000128{
Vladimir Serbinenko60fccdc2014-10-05 11:05:16 +0200129 memset(mmconfig, 0, sizeof(*mmconfig));
Rudolf Mareke6409f22007-11-03 12:50:26 +0000130 mmconfig->base_address = base;
131 mmconfig->base_reserved = 0;
132 mmconfig->pci_segment_group_number = seg_nr;
133 mmconfig->start_bus_number = start;
134 mmconfig->end_bus_number = end;
Uwe Hermann622824c2010-11-19 15:14:42 +0000135
136 return sizeof(acpi_mcfg_mmconfig_t);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000137}
138
Stefan Reinauer777224c2005-01-19 14:06:41 +0000139int acpi_create_madt_lapic(acpi_madt_lapic_t *lapic, u8 cpu, u8 apic)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000140{
Uwe Hermann622824c2010-11-19 15:14:42 +0000141 lapic->type = 0; /* Local APIC structure */
142 lapic->length = sizeof(acpi_madt_lapic_t);
143 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
144 lapic->processor_id = cpu;
145 lapic->apic_id = apic;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000146
Uwe Hermann622824c2010-11-19 15:14:42 +0000147 return lapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000148}
149
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000150unsigned long acpi_create_madt_lapics(unsigned long current)
151{
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100152 struct device *cpu;
Werner Zehdb561e62019-02-19 13:39:56 +0100153 int index, apic_ids[CONFIG_MAX_CPUS], num_cpus = 0;
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000154
Uwe Hermann622824c2010-11-19 15:14:42 +0000155 for (cpu = all_devices; cpu; cpu = cpu->next) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000156 if ((cpu->path.type != DEVICE_PATH_APIC) ||
Stefan Reinauer0aa37c42013-02-12 15:20:54 -0800157 (cpu->bus->dev->path.type != DEVICE_PATH_CPU_CLUSTER)) {
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000158 continue;
159 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000160 if (!cpu->enabled)
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000161 continue;
Werner Zehdb561e62019-02-19 13:39:56 +0100162 if (num_cpus >= ARRAY_SIZE(apic_ids))
163 break;
164 apic_ids[num_cpus++] = cpu->path.apic.apic_id;
165 }
166 bubblesort(apic_ids, num_cpus, NUM_ASCENDING);
167 for (index = 0; index < num_cpus; index++) {
Uwe Hermann622824c2010-11-19 15:14:42 +0000168 current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current,
Werner Zehdb561e62019-02-19 13:39:56 +0100169 index, apic_ids[index]);
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000170 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000171
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000172 return current;
173}
174
Uwe Hermann622824c2010-11-19 15:14:42 +0000175int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300176 u32 gsi_base)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000177{
Uwe Hermann622824c2010-11-19 15:14:42 +0000178 ioapic->type = 1; /* I/O APIC structure */
179 ioapic->length = sizeof(acpi_madt_ioapic_t);
180 ioapic->reserved = 0x00;
181 ioapic->gsi_base = gsi_base;
182 ioapic->ioapic_id = id;
183 ioapic->ioapic_addr = addr;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000184
Uwe Hermann622824c2010-11-19 15:14:42 +0000185 return ioapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000186}
187
Stefan Reinauer777224c2005-01-19 14:06:41 +0000188int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
Stefan Reinauer06feb882004-02-03 16:11:35 +0000189 u8 bus, u8 source, u32 gsirq, u16 flags)
190{
Uwe Hermann622824c2010-11-19 15:14:42 +0000191 irqoverride->type = 2; /* Interrupt source override */
192 irqoverride->length = sizeof(acpi_madt_irqoverride_t);
193 irqoverride->bus = bus;
194 irqoverride->source = source;
195 irqoverride->gsirq = gsirq;
196 irqoverride->flags = flags;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000197
Uwe Hermann622824c2010-11-19 15:14:42 +0000198 return irqoverride->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000199}
200
Stefan Reinauer777224c2005-01-19 14:06:41 +0000201int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300202 u16 flags, u8 lint)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000203{
Uwe Hermann622824c2010-11-19 15:14:42 +0000204 lapic_nmi->type = 4; /* Local APIC NMI structure */
205 lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
206 lapic_nmi->flags = flags;
207 lapic_nmi->processor_id = cpu;
208 lapic_nmi->lint = lint;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000209
Uwe Hermann622824c2010-11-19 15:14:42 +0000210 return lapic_nmi->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000211}
212
Stefan Reinauer777224c2005-01-19 14:06:41 +0000213void acpi_create_madt(acpi_madt_t *madt)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000214{
Uwe Hermann622824c2010-11-19 15:14:42 +0000215 acpi_header_t *header = &(madt->header);
216 unsigned long current = (unsigned long)madt + sizeof(acpi_madt_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000217
Stefan Reinauer06feb882004-02-03 16:11:35 +0000218 memset((void *)madt, 0, sizeof(acpi_madt_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000219
Uwe Hermann622824c2010-11-19 15:14:42 +0000220 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000221 memcpy(header->signature, "APIC", 4);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000222 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000223 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000224 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000225
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100226 header->asl_compiler_revision = asl_revision;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000227 header->length = sizeof(acpi_madt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600228 header->revision = get_acpi_table_revision(MADT);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000229
Uwe Hermann622824c2010-11-19 15:14:42 +0000230 madt->lapic_addr = LOCAL_APIC_ADDR;
231 madt->flags = 0x1; /* PCAT_COMPAT */
Stefan Reinauer06feb882004-02-03 16:11:35 +0000232
Stefan Reinauerf622d592005-11-26 16:56:05 +0000233 current = acpi_fill_madt(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000234
Uwe Hermann622824c2010-11-19 15:14:42 +0000235 /* (Re)calculate length and checksum. */
236 header->length = current - (unsigned long)madt;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000237
Uwe Hermann622824c2010-11-19 15:14:42 +0000238 header->checksum = acpi_checksum((void *)madt, header->length);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000239}
240
Uwe Hermann622824c2010-11-19 15:14:42 +0000241/* MCFG is defined in the PCI Firmware Specification 3.0. */
Rudolf Mareke6409f22007-11-03 12:50:26 +0000242void acpi_create_mcfg(acpi_mcfg_t *mcfg)
243{
Uwe Hermann622824c2010-11-19 15:14:42 +0000244 acpi_header_t *header = &(mcfg->header);
245 unsigned long current = (unsigned long)mcfg + sizeof(acpi_mcfg_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000246
Rudolf Mareke6409f22007-11-03 12:50:26 +0000247 memset((void *)mcfg, 0, sizeof(acpi_mcfg_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000248
Uwe Hermann622824c2010-11-19 15:14:42 +0000249 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000250 memcpy(header->signature, "MCFG", 4);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000251 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000252 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000253 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000254
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100255 header->asl_compiler_revision = asl_revision;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000256 header->length = sizeof(acpi_mcfg_t);
Marc Jones93a51762018-08-22 18:57:24 -0600257 header->revision = get_acpi_table_revision(MCFG);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000258
259 current = acpi_fill_mcfg(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)mcfg;
263 header->checksum = acpi_checksum((void *)mcfg, header->length);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000264}
265
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200266static void *get_tcpa_log(u32 *size)
267{
268 const struct cbmem_entry *ce;
269 const u32 tcpa_default_log_len = 0x10000;
270 void *lasa;
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200271 ce = cbmem_entry_find(CBMEM_ID_TCPA_TCG_LOG);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200272 if (ce) {
273 lasa = cbmem_entry_start(ce);
274 *size = cbmem_entry_size(ce);
275 printk(BIOS_DEBUG, "TCPA log found at %p\n", lasa);
276 return lasa;
277 }
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200278 lasa = cbmem_add(CBMEM_ID_TCPA_TCG_LOG, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200279 if (!lasa) {
280 printk(BIOS_ERR, "TCPA log creation failed\n");
281 return NULL;
282 }
283
284 printk(BIOS_DEBUG, "TCPA log created at %p\n", lasa);
Lee Leahy024b13d2017-03-16 13:41:11 -0700285 memset(lasa, 0, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200286
287 *size = tcpa_default_log_len;
288 return lasa;
289}
290
291static void acpi_create_tcpa(acpi_tcpa_t *tcpa)
292{
293 acpi_header_t *header = &(tcpa->header);
294 u32 tcpa_log_len;
295 void *lasa;
296
297 memset((void *)tcpa, 0, sizeof(acpi_tcpa_t));
298
299 lasa = get_tcpa_log(&tcpa_log_len);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700300 if (!lasa)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200301 return;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200302
303 /* Fill out header fields. */
304 memcpy(header->signature, "TCPA", 4);
305 memcpy(header->oem_id, OEM_ID, 6);
306 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
307 memcpy(header->asl_compiler_id, ASLC, 4);
308
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100309 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200310 header->length = sizeof(acpi_tcpa_t);
Marc Jones93a51762018-08-22 18:57:24 -0600311 header->revision = get_acpi_table_revision(TCPA);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200312
313 tcpa->platform_class = 0;
314 tcpa->laml = tcpa_log_len;
Stefan Reinauerdefee172015-06-18 01:11:19 -0700315 tcpa->lasa = (uintptr_t) lasa;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200316
317 /* Calculate checksum. */
318 header->checksum = acpi_checksum((void *)tcpa, header->length);
319}
320
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100321static void *get_tpm2_log(u32 *size)
322{
323 const struct cbmem_entry *ce;
324 const u32 tpm2_default_log_len = 0x10000;
325 void *lasa;
326 ce = cbmem_entry_find(CBMEM_ID_TPM2_TCG_LOG);
327 if (ce) {
328 lasa = cbmem_entry_start(ce);
329 *size = cbmem_entry_size(ce);
330 printk(BIOS_DEBUG, "TPM2 log found at %p\n", lasa);
331 return lasa;
332 }
333 lasa = cbmem_add(CBMEM_ID_TPM2_TCG_LOG, tpm2_default_log_len);
334 if (!lasa) {
335 printk(BIOS_ERR, "TPM2 log creation failed\n");
336 return NULL;
337 }
338
339 printk(BIOS_DEBUG, "TPM2 log created at %p\n", lasa);
340 memset(lasa, 0, tpm2_default_log_len);
341
342 *size = tpm2_default_log_len;
343 return lasa;
344}
345
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200346static void acpi_create_tpm2(acpi_tpm2_t *tpm2)
347{
348 acpi_header_t *header = &(tpm2->header);
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100349 u32 tpm2_log_len;
350 void *lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200351
352 memset((void *)tpm2, 0, sizeof(acpi_tpm2_t));
353
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100354 /*
355 * Some payloads like SeaBIOS depend on log area to use TPM2.
356 * Get the memory size and address of TPM2 log area or initialize it.
357 */
358 lasa = get_tpm2_log(&tpm2_log_len);
359 if (!lasa)
360 tpm2_log_len = 0;
361
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200362 /* Fill out header fields. */
363 memcpy(header->signature, "TPM2", 4);
364 memcpy(header->oem_id, OEM_ID, 6);
365 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
366 memcpy(header->asl_compiler_id, ASLC, 4);
367
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100368 header->asl_compiler_revision = asl_revision;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200369 header->length = sizeof(acpi_tpm2_t);
370 header->revision = get_acpi_table_revision(TPM2);
371
372 /* Hard to detect for coreboot. Just set it to 0 */
373 tpm2->platform_class = 0;
374 /* Must be set to 0 for TIS interface support */
375 tpm2->control_area = 0;
376 /* coreboot only supports the TIS interface driver. */
377 tpm2->start_method = 6;
378 memset(tpm2->msp, 0, sizeof(tpm2->msp));
379
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100380 /* Fill the log area size and start address fields. */
381 tpm2->laml = tpm2_log_len;
382 tpm2->lasa = (uintptr_t) lasa;
383
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200384 /* Calculate checksum. */
385 header->checksum = acpi_checksum((void *)tpm2, header->length);
386}
387
Duncan Laurie37319032016-05-26 12:47:05 -0700388static void acpi_ssdt_write_cbtable(void)
389{
390 const struct cbmem_entry *cbtable;
391 uintptr_t base;
392 uint32_t size;
393
394 cbtable = cbmem_entry_find(CBMEM_ID_CBTABLE);
395 if (!cbtable)
396 return;
397 base = (uintptr_t)cbmem_entry_start(cbtable);
398 size = cbmem_entry_size(cbtable);
399
400 acpigen_write_device("CTBL");
401 acpigen_write_coreboot_hid(COREBOOT_ACPI_ID_CBTABLE);
402 acpigen_write_name_integer("_UID", 0);
David Wu5dff3962018-03-21 16:48:53 +0800403 acpigen_write_STA(ACPI_STATUS_DEVICE_HIDDEN_ON);
Duncan Laurie37319032016-05-26 12:47:05 -0700404 acpigen_write_name("_CRS");
405 acpigen_write_resourcetemplate_header();
406 acpigen_write_mem32fixed(0, base, size);
407 acpigen_write_resourcetemplate_footer();
408 acpigen_pop_len();
409}
410
Myles Watson3fe6b702009-10-09 20:13:43 +0000411void acpi_create_ssdt_generator(acpi_header_t *ssdt, const char *oem_table_id)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000412{
Uwe Hermann622824c2010-11-19 15:14:42 +0000413 unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
414
Rudolf Marek293b5f52009-02-01 18:35:15 +0000415 memset((void *)ssdt, 0, sizeof(acpi_header_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000416
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000417 memcpy(&ssdt->signature, "SSDT", 4);
Marc Jones93a51762018-08-22 18:57:24 -0600418 ssdt->revision = get_acpi_table_revision(SSDT);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000419 memcpy(&ssdt->oem_id, OEM_ID, 6);
420 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
421 ssdt->oem_revision = 42;
Uwe Hermann622824c2010-11-19 15:14:42 +0000422 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +0100423 ssdt->asl_compiler_revision = asl_revision;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000424 ssdt->length = sizeof(acpi_header_t);
425
Stefan Reinauer8dcd50b2009-03-06 17:24:29 +0000426 acpigen_set_current((char *) current);
Duncan Laurie37319032016-05-26 12:47:05 -0700427
428 /* Write object to declare coreboot tables */
429 acpi_ssdt_write_cbtable();
430
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200431 {
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100432 struct device *dev;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200433 for (dev = all_devices; dev; dev = dev->next)
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700434 if (dev->ops && dev->ops->acpi_fill_ssdt_generator)
Alexander Couzens5eea4582015-04-12 22:18:55 +0200435 dev->ops->acpi_fill_ssdt_generator(dev);
Vladimir Serbinenko0a669912014-10-05 14:34:17 +0200436 current = (unsigned long) acpigen_get_current();
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200437 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000438
Uwe Hermann622824c2010-11-19 15:14:42 +0000439 /* (Re)calculate length and checksum. */
Rudolf Marek293b5f52009-02-01 18:35:15 +0000440 ssdt->length = current - (unsigned long)ssdt;
441 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
442}
443
Stefan Reinauerf622d592005-11-26 16:56:05 +0000444int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
445{
Myles Watson0b4c9f02009-03-10 18:06:47 +0000446 memset((void *)lapic, 0, sizeof(acpi_srat_lapic_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000447
Uwe Hermann622824c2010-11-19 15:14:42 +0000448 lapic->type = 0; /* Processor local APIC/SAPIC affinity structure */
449 lapic->length = sizeof(acpi_srat_lapic_t);
450 lapic->flags = (1 << 0); /* Enabled (the use of this structure). */
451 lapic->proximity_domain_7_0 = node;
452 /* TODO: proximity_domain_31_8, local SAPIC EID, clock domain. */
453 lapic->apic_id = apic;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000454
Uwe Hermann622824c2010-11-19 15:14:42 +0000455 return lapic->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000456}
457
Uwe Hermann622824c2010-11-19 15:14:42 +0000458int 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 +0300459 u32 flags)
Stefan Reinauerf622d592005-11-26 16:56:05 +0000460{
Uwe Hermann622824c2010-11-19 15:14:42 +0000461 mem->type = 1; /* Memory affinity structure */
462 mem->length = sizeof(acpi_srat_mem_t);
463 mem->base_address_low = (basek << 10);
464 mem->base_address_high = (basek >> (32 - 10));
465 mem->length_low = (sizek << 10);
466 mem->length_high = (sizek >> (32 - 10));
467 mem->proximity_domain = node;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000468 mem->flags = flags;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000469
Uwe Hermann622824c2010-11-19 15:14:42 +0000470 return mem->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000471}
472
Uwe Hermann622824c2010-11-19 15:14:42 +0000473/* http://www.microsoft.com/whdc/system/sysinternals/sratdwn.mspx */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200474void acpi_create_srat(acpi_srat_t *srat,
475 unsigned long (*acpi_fill_srat)(unsigned long current))
Stefan Reinauerf622d592005-11-26 16:56:05 +0000476{
Uwe Hermann622824c2010-11-19 15:14:42 +0000477 acpi_header_t *header = &(srat->header);
478 unsigned long current = (unsigned long)srat + sizeof(acpi_srat_t);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000479
Uwe Hermann622824c2010-11-19 15:14:42 +0000480 memset((void *)srat, 0, sizeof(acpi_srat_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000481
Uwe Hermann622824c2010-11-19 15:14:42 +0000482 /* Fill out header fields. */
483 memcpy(header->signature, "SRAT", 4);
484 memcpy(header->oem_id, OEM_ID, 6);
485 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
486 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000487
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100488 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000489 header->length = sizeof(acpi_srat_t);
Marc Jones93a51762018-08-22 18:57:24 -0600490 header->revision = get_acpi_table_revision(SRAT);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000491
Uwe Hermann622824c2010-11-19 15:14:42 +0000492 srat->resv = 1; /* Spec: Reserved to 1 for backwards compatibility. */
Stefan Reinauerf622d592005-11-26 16:56:05 +0000493
Uwe Hermann622824c2010-11-19 15:14:42 +0000494 current = acpi_fill_srat(current);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000495
Uwe Hermann622824c2010-11-19 15:14:42 +0000496 /* (Re)calculate length and checksum. */
497 header->length = current - (unsigned long)srat;
498 header->checksum = acpi_checksum((void *)srat, header->length);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000499}
500
Nico Hubere561f352015-10-26 11:51:25 +0100501void acpi_create_dmar(acpi_dmar_t *dmar, enum dmar_flags flags,
Lee Leahy024b13d2017-03-16 13:41:11 -0700502 unsigned long (*acpi_fill_dmar)(unsigned long))
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200503{
504 acpi_header_t *header = &(dmar->header);
505 unsigned long current = (unsigned long)dmar + sizeof(acpi_dmar_t);
506
507 memset((void *)dmar, 0, sizeof(acpi_dmar_t));
508
509 /* Fill out header fields. */
510 memcpy(header->signature, "DMAR", 4);
511 memcpy(header->oem_id, OEM_ID, 6);
512 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
513 memcpy(header->asl_compiler_id, ASLC, 4);
514
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100515 header->asl_compiler_revision = asl_revision;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200516 header->length = sizeof(acpi_dmar_t);
Marc Jones93a51762018-08-22 18:57:24 -0600517 header->revision = get_acpi_table_revision(DMAR);
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200518
Jacob Laskaf3f654d2016-03-15 21:53:27 -0500519 dmar->host_address_width = cpu_phys_address_size() - 1;
Nico Hubere561f352015-10-26 11:51:25 +0100520 dmar->flags = flags;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200521
522 current = acpi_fill_dmar(current);
523
524 /* (Re)calculate length and checksum. */
525 header->length = current - (unsigned long)dmar;
526 header->checksum = acpi_checksum((void *)dmar, header->length);
527}
528
529unsigned long acpi_create_dmar_drhd(unsigned long current, u8 flags,
Matt DeVillier7866d492018-03-29 14:59:57 +0200530 u16 segment, u64 bar)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200531{
532 dmar_entry_t *drhd = (dmar_entry_t *)current;
533 memset(drhd, 0, sizeof(*drhd));
534 drhd->type = DMAR_DRHD;
535 drhd->length = sizeof(*drhd); /* will be fixed up later */
536 drhd->flags = flags;
537 drhd->segment = segment;
538 drhd->bar = bar;
539
540 return drhd->length;
541}
542
Matt DeVillier7866d492018-03-29 14:59:57 +0200543unsigned long acpi_create_dmar_rmrr(unsigned long current, u16 segment,
544 u64 bar, u64 limit)
545{
546 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)current;
547 memset(rmrr, 0, sizeof(*rmrr));
548 rmrr->type = DMAR_RMRR;
549 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
550 rmrr->segment = segment;
551 rmrr->bar = bar;
552 rmrr->limit = limit;
553
554 return rmrr->length;
555}
556
Werner Zehd4d76952016-07-27 06:56:36 +0200557unsigned long acpi_create_dmar_atsr(unsigned long current, u8 flags,
558 u16 segment)
559{
560 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)current;
561 memset(atsr, 0, sizeof(*atsr));
562 atsr->type = DMAR_ATSR;
563 atsr->length = sizeof(*atsr); /* will be fixed up later */
564 atsr->flags = flags;
565 atsr->segment = segment;
566
567 return atsr->length;
568}
569
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200570void acpi_dmar_drhd_fixup(unsigned long base, unsigned long current)
571{
572 dmar_entry_t *drhd = (dmar_entry_t *)base;
573 drhd->length = current - base;
574}
575
Matt DeVillier7866d492018-03-29 14:59:57 +0200576void acpi_dmar_rmrr_fixup(unsigned long base, unsigned long current)
577{
578 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)base;
579 rmrr->length = current - base;
580}
581
Werner Zehd4d76952016-07-27 06:56:36 +0200582void acpi_dmar_atsr_fixup(unsigned long base, unsigned long current)
583{
584 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)base;
585 atsr->length = current - base;
586}
587
Matt DeVillier7866d492018-03-29 14:59:57 +0200588static unsigned long acpi_create_dmar_ds(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100589 enum dev_scope_type type, u8 enumeration_id, u8 bus, u8 dev, u8 fn)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200590{
Nico Huber6c4751d2015-10-26 12:03:54 +0100591 /* we don't support longer paths yet */
592 const size_t dev_scope_length = sizeof(dev_scope_t) + 2;
593
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200594 dev_scope_t *ds = (dev_scope_t *)current;
Nico Huber6c4751d2015-10-26 12:03:54 +0100595 memset(ds, 0, dev_scope_length);
596 ds->type = type;
597 ds->length = dev_scope_length;
598 ds->enumeration = enumeration_id;
599 ds->start_bus = bus;
600 ds->path[0].dev = dev;
601 ds->path[0].fn = fn;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200602
603 return ds->length;
604}
605
Matt DeVillier7866d492018-03-29 14:59:57 +0200606unsigned long acpi_create_dmar_ds_pci_br(unsigned long current, u8 bus,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200607 u8 dev, u8 fn)
608{
Matt DeVillier7866d492018-03-29 14:59:57 +0200609 return acpi_create_dmar_ds(current,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200610 SCOPE_PCI_SUB, 0, bus, dev, fn);
611}
612
Matt DeVillier7866d492018-03-29 14:59:57 +0200613unsigned long acpi_create_dmar_ds_pci(unsigned long current, u8 bus,
Nico Huber6c4751d2015-10-26 12:03:54 +0100614 u8 dev, u8 fn)
615{
Matt DeVillier7866d492018-03-29 14:59:57 +0200616 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100617 SCOPE_PCI_ENDPOINT, 0, bus, dev, fn);
618}
619
Matt DeVillier7866d492018-03-29 14:59:57 +0200620unsigned long acpi_create_dmar_ds_ioapic(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100621 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
622{
Matt DeVillier7866d492018-03-29 14:59:57 +0200623 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100624 SCOPE_IOAPIC, enumeration_id, bus, dev, fn);
625}
626
Matt DeVillier7866d492018-03-29 14:59:57 +0200627unsigned long acpi_create_dmar_ds_msi_hpet(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100628 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
629{
Matt DeVillier7866d492018-03-29 14:59:57 +0200630 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100631 SCOPE_MSI_HPET, enumeration_id, bus, dev, fn);
632}
633
Uwe Hermann622824c2010-11-19 15:14:42 +0000634/* http://h21007.www2.hp.com/portal/download/files/unprot/Itanium/slit.pdf */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200635void acpi_create_slit(acpi_slit_t *slit,
636 unsigned long (*acpi_fill_slit)(unsigned long current))
Yinghai Lud4b278c2006-10-04 20:46:15 +0000637{
Uwe Hermann622824c2010-11-19 15:14:42 +0000638 acpi_header_t *header = &(slit->header);
639 unsigned long current = (unsigned long)slit + sizeof(acpi_slit_t);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000640
Uwe Hermann622824c2010-11-19 15:14:42 +0000641 memset((void *)slit, 0, sizeof(acpi_slit_t));
Yinghai Lud4b278c2006-10-04 20:46:15 +0000642
Uwe Hermann622824c2010-11-19 15:14:42 +0000643 /* Fill out header fields. */
644 memcpy(header->signature, "SLIT", 4);
645 memcpy(header->oem_id, OEM_ID, 6);
646 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
647 memcpy(header->asl_compiler_id, ASLC, 4);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000648
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100649 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000650 header->length = sizeof(acpi_slit_t);
Marc Jones93a51762018-08-22 18:57:24 -0600651 header->revision = get_acpi_table_revision(SLIT);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000652
Uwe Hermann622824c2010-11-19 15:14:42 +0000653 current = acpi_fill_slit(current);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000654
Uwe Hermann622824c2010-11-19 15:14:42 +0000655 /* (Re)calculate length and checksum. */
656 header->length = current - (unsigned long)slit;
657 header->checksum = acpi_checksum((void *)slit, header->length);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000658}
659
Uwe Hermann622824c2010-11-19 15:14:42 +0000660/* http://www.intel.com/hardwaredesign/hpetspec_1.pdf */
Stefan Reinauer777224c2005-01-19 14:06:41 +0000661void acpi_create_hpet(acpi_hpet_t *hpet)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000662{
Uwe Hermann622824c2010-11-19 15:14:42 +0000663 acpi_header_t *header = &(hpet->header);
664 acpi_addr_t *addr = &(hpet->addr);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000665
Stefan Reinauera7648c22004-01-29 17:31:34 +0000666 memset((void *)hpet, 0, sizeof(acpi_hpet_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000667
Uwe Hermann622824c2010-11-19 15:14:42 +0000668 /* Fill out header fields. */
Stefan Reinauer4704dc52009-07-22 01:11:37 +0000669 memcpy(header->signature, "HPET", 4);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000670 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000671 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000672 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000673
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100674 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000675 header->length = sizeof(acpi_hpet_t);
Marc Jones93a51762018-08-22 18:57:24 -0600676 header->revision = get_acpi_table_revision(HPET);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000677
Uwe Hermann622824c2010-11-19 15:14:42 +0000678 /* Fill out HPET address. */
679 addr->space_id = 0; /* Memory */
680 addr->bit_width = 64;
681 addr->bit_offset = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200682 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
683 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000684
Lee Leahy024b13d2017-03-16 13:41:11 -0700685 hpet->id = *(unsigned int *)CONFIG_HPET_ADDRESS;
Uwe Hermann622824c2010-11-19 15:14:42 +0000686 hpet->number = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200687 hpet->min_tick = CONFIG_HPET_MIN_TICKS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000688
Uwe Hermann622824c2010-11-19 15:14:42 +0000689 header->checksum = acpi_checksum((void *)hpet, sizeof(acpi_hpet_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000690}
Uwe Hermann622824c2010-11-19 15:14:42 +0000691
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200692void acpi_create_vfct(struct device *device,
693 struct acpi_vfct *vfct,
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700694 unsigned long (*acpi_fill_vfct)(struct device *device,
695 struct acpi_vfct *vfct_struct, unsigned long current))
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200696{
697 acpi_header_t *header = &(vfct->header);
698 unsigned long current = (unsigned long)vfct + sizeof(struct acpi_vfct);
699
700 memset((void *)vfct, 0, sizeof(struct acpi_vfct));
701
702 /* Fill out header fields. */
703 memcpy(header->signature, "VFCT", 4);
704 memcpy(header->oem_id, OEM_ID, 6);
705 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
706 memcpy(header->asl_compiler_id, ASLC, 4);
707
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100708 header->asl_compiler_revision = asl_revision;
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200709 header->length = sizeof(struct acpi_vfct);
Marc Jones93a51762018-08-22 18:57:24 -0600710 header->revision = get_acpi_table_revision(VFCT);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200711
712 current = acpi_fill_vfct(device, vfct, current);
713
714 /* (Re)calculate length and checksum. */
715 header->length = current - (unsigned long)vfct;
716 header->checksum = acpi_checksum((void *)vfct, header->length);
717}
718
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500719void acpi_create_ivrs(acpi_ivrs_t *ivrs,
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700720 unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t *ivrs_struct,
721 unsigned long current))
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500722{
723 acpi_header_t *header = &(ivrs->header);
724 unsigned long current = (unsigned long)ivrs + sizeof(acpi_ivrs_t);
725
726 memset((void *)ivrs, 0, sizeof(acpi_ivrs_t));
727
728 /* Fill out header fields. */
729 memcpy(header->signature, "IVRS", 4);
730 memcpy(header->oem_id, OEM_ID, 6);
731 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
732 memcpy(header->asl_compiler_id, ASLC, 4);
733
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100734 header->asl_compiler_revision = asl_revision;
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500735 header->length = sizeof(acpi_ivrs_t);
Marc Jones93a51762018-08-22 18:57:24 -0600736 header->revision = get_acpi_table_revision(IVRS);
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500737
738 current = acpi_fill_ivrs(ivrs, current);
739
740 /* (Re)calculate length and checksum. */
741 header->length = current - (unsigned long)ivrs;
742 header->checksum = acpi_checksum((void *)ivrs, header->length);
743}
744
Elyes HAOUAS9dd89cd2018-05-04 17:56:47 +0200745unsigned long acpi_write_hpet(struct device *device, unsigned long current,
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700746 acpi_rsdp_t *rsdp)
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200747{
748 acpi_hpet_t *hpet;
749
750 /*
751 * We explicitly add these tables later on:
752 */
753 printk(BIOS_DEBUG, "ACPI: * HPET\n");
754
755 hpet = (acpi_hpet_t *) current;
756 current += sizeof(acpi_hpet_t);
757 current = ALIGN(current, 16);
758 acpi_create_hpet(hpet);
759 acpi_add_table(rsdp, hpet);
760
761 return current;
762}
763
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800764void acpi_create_dbg2(acpi_dbg2_header_t *dbg2,
765 int port_type, int port_subtype,
766 acpi_addr_t *address, uint32_t address_size,
767 const char *device_path)
768{
769 uintptr_t current;
770 acpi_dbg2_device_t *device;
771 uint32_t *dbg2_addr_size;
772 acpi_header_t *header;
773 size_t path_len;
774 const char *path;
775 char *namespace;
776
777 /* Fill out header fields. */
778 current = (uintptr_t)dbg2;
779 memset(dbg2, 0, sizeof(acpi_dbg2_header_t));
780 header = &(dbg2->header);
Marc Jones93a51762018-08-22 18:57:24 -0600781 header->revision = get_acpi_table_revision(DBG2);
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800782 memcpy(header->signature, "DBG2", 4);
783 memcpy(header->oem_id, OEM_ID, 6);
784 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
785 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100786 header->asl_compiler_revision = asl_revision;
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800787
788 /* One debug device defined */
789 dbg2->devices_offset = sizeof(acpi_dbg2_header_t);
790 dbg2->devices_count = 1;
791 current += sizeof(acpi_dbg2_header_t);
792
793 /* Device comes after the header */
794 device = (acpi_dbg2_device_t *)current;
795 memset(device, 0, sizeof(acpi_dbg2_device_t));
796 current += sizeof(acpi_dbg2_device_t);
797
798 device->revision = 0;
799 device->address_count = 1;
800 device->port_type = port_type;
801 device->port_subtype = port_subtype;
802
803 /* Base Address comes after device structure */
804 memcpy((void *)current, address, sizeof(acpi_addr_t));
805 device->base_address_offset = current - (uintptr_t)device;
806 current += sizeof(acpi_addr_t);
807
808 /* Address Size comes after address structure */
809 dbg2_addr_size = (uint32_t *)current;
810 device->address_size_offset = current - (uintptr_t)device;
811 *dbg2_addr_size = address_size;
812 current += sizeof(uint32_t);
813
814 /* Namespace string comes last, use '.' if not provided */
815 path = device_path ? : ".";
816 /* Namespace string length includes NULL terminator */
817 path_len = strlen(path) + 1;
818 namespace = (char *)current;
819 device->namespace_string_length = path_len;
820 device->namespace_string_offset = current - (uintptr_t)device;
821 strncpy(namespace, path, path_len);
822 current += path_len;
823
824 /* Update structure lengths and checksum */
825 device->length = current - (uintptr_t)device;
826 header->length = current - (uintptr_t)dbg2;
827 header->checksum = acpi_checksum((uint8_t *)dbg2, header->length);
828}
829
830unsigned long acpi_write_dbg2_pci_uart(acpi_rsdp_t *rsdp, unsigned long current,
831 struct device *dev, uint8_t access_size)
832{
833 acpi_dbg2_header_t *dbg2 = (acpi_dbg2_header_t *)current;
834 struct resource *res;
835 acpi_addr_t address;
836
837 if (!dev) {
838 printk(BIOS_ERR, "%s: Device not found\n", __func__);
839 return current;
840 }
Mario Scheithauerf1eb0ea2017-11-21 13:52:53 +0100841 if (!dev->enabled) {
842 printk(BIOS_INFO, "%s: Device not enabled\n", __func__);
843 return current;
844 }
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800845 res = find_resource(dev, PCI_BASE_ADDRESS_0);
846 if (!res) {
847 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
848 __func__, dev_path(dev));
849 return current;
850 }
851
852 memset(&address, 0, sizeof(address));
853 if (res->flags & IORESOURCE_IO)
854 address.space_id = ACPI_ADDRESS_SPACE_IO;
855 else if (res->flags & IORESOURCE_MEM)
856 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
857 else {
858 printk(BIOS_ERR, "%s: Unknown address space type\n", __func__);
859 return current;
860 }
861
862 address.addrl = (uint32_t)res->base;
863 address.addrh = (uint32_t)((res->base >> 32) & 0xffffffff);
864 address.access_size = access_size;
865
866 acpi_create_dbg2(dbg2,
867 ACPI_DBG2_PORT_SERIAL,
868 ACPI_DBG2_PORT_SERIAL_16550,
869 &address, res->size,
870 acpi_device_path(dev));
871
872 if (dbg2->header.length) {
873 current += dbg2->header.length;
874 current = acpi_align_current(current);
875 acpi_add_table(rsdp, dbg2);
876 }
877
878 return current;
879}
880
Stefan Reinauer777224c2005-01-19 14:06:41 +0000881void acpi_create_facs(acpi_facs_t *facs)
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000882{
Uwe Hermann622824c2010-11-19 15:14:42 +0000883 memset((void *)facs, 0, sizeof(acpi_facs_t));
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000884
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000885 memcpy(facs->signature, "FACS", 4);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000886 facs->length = sizeof(acpi_facs_t);
887 facs->hardware_signature = 0;
888 facs->firmware_waking_vector = 0;
889 facs->global_lock = 0;
890 facs->flags = 0;
891 facs->x_firmware_waking_vector_l = 0;
892 facs->x_firmware_waking_vector_h = 0;
Marc Jones93a51762018-08-22 18:57:24 -0600893 facs->version = get_acpi_table_revision(FACS);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000894}
Stefan Reinauer777224c2005-01-19 14:06:41 +0000895
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100896static void acpi_write_rsdt(acpi_rsdt_t *rsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000897{
Uwe Hermann622824c2010-11-19 15:14:42 +0000898 acpi_header_t *header = &(rsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000899
Uwe Hermann622824c2010-11-19 15:14:42 +0000900 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000901 memcpy(header->signature, "RSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100902 memcpy(header->oem_id, oem_id, 6);
903 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000904 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000905
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100906 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000907 header->length = sizeof(acpi_rsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600908 header->revision = get_acpi_table_revision(RSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000909
Uwe Hermann622824c2010-11-19 15:14:42 +0000910 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauer688b3852004-01-28 16:56:14 +0000911
Uwe Hermann622824c2010-11-19 15:14:42 +0000912 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000913 header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000914}
915
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100916static void acpi_write_xsdt(acpi_xsdt_t *xsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000917{
Uwe Hermann622824c2010-11-19 15:14:42 +0000918 acpi_header_t *header = &(xsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000919
Uwe Hermann622824c2010-11-19 15:14:42 +0000920 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000921 memcpy(header->signature, "XSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100922 memcpy(header->oem_id, oem_id, 6);
923 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000924 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000925
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100926 header->asl_compiler_revision = asl_revision;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000927 header->length = sizeof(acpi_xsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600928 header->revision = get_acpi_table_revision(XSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000929
Uwe Hermann622824c2010-11-19 15:14:42 +0000930 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000931
Uwe Hermann622824c2010-11-19 15:14:42 +0000932 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000933 header->checksum = acpi_checksum((void *)xsdt, sizeof(acpi_xsdt_t));
934}
935
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100936static void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt,
937 acpi_xsdt_t *xsdt, char *oem_id)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000938{
Stefan Reinauerd18faac2009-11-05 18:06:43 +0000939 memset(rsdp, 0, sizeof(acpi_rsdp_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000940
Stefan Reinauer688b3852004-01-28 16:56:14 +0000941 memcpy(rsdp->signature, RSDP_SIG, 8);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100942 memcpy(rsdp->oem_id, oem_id, 6);
Uwe Hermann622824c2010-11-19 15:14:42 +0000943
944 rsdp->length = sizeof(acpi_rsdp_t);
Stefan Reinauerdefee172015-06-18 01:11:19 -0700945 rsdp->rsdt_address = (uintptr_t)rsdt;
Uwe Hermann622824c2010-11-19 15:14:42 +0000946
947 /*
948 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2.
949 *
950 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
951 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
952 * revision 0).
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000953 */
954 if (xsdt == NULL) {
Uwe Hermann622824c2010-11-19 15:14:42 +0000955 rsdp->revision = 0;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000956 } else {
Stefan Reinauerdefee172015-06-18 01:11:19 -0700957 rsdp->xsdt_address = (u64)(uintptr_t)xsdt;
Marc Jones93a51762018-08-22 18:57:24 -0600958 rsdp->revision = get_acpi_table_revision(RSDP);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000959 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000960
961 /* Calculate checksums. */
962 rsdp->checksum = acpi_checksum((void *)rsdp, 20);
963 rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000964}
965
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700966unsigned long acpi_create_hest_error_source(acpi_hest_t *hest,
967 acpi_hest_esd_t *esd, u16 type, void *data, u16 data_len)
zbaocaf494c82012-04-13 13:57:14 +0800968{
969 acpi_header_t *header = &(hest->header);
970 acpi_hest_hen_t *hen;
971 void *pos;
972 u16 len;
973
974 pos = esd;
975 memset(pos, 0, sizeof(acpi_hest_esd_t));
976 len = 0;
977 esd->type = type; /* MCE */
978 esd->source_id = hest->error_source_count;
979 esd->flags = 0; /* FIRMWARE_FIRST */
980 esd->enabled = 1;
981 esd->prealloc_erecords = 1;
982 esd->max_section_per_record = 0x1;
983
984 len += sizeof(acpi_hest_esd_t);
985 pos = esd + 1;
986
987 switch (type) {
988 case 0: /* MCE */
989 break;
990 case 1: /* CMC */
991 hen = (acpi_hest_hen_t *) (pos);
992 memset(pos, 0, sizeof(acpi_hest_hen_t));
993 hen->type = 3; /* SCI? */
994 hen->length = sizeof(acpi_hest_hen_t);
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700995 hen->conf_we = 0; /* Configuration Write Enable. */
zbaocaf494c82012-04-13 13:57:14 +0800996 hen->poll_interval = 0;
997 hen->vector = 0;
998 hen->sw2poll_threshold_val = 0;
999 hen->sw2poll_threshold_win = 0;
1000 hen->error_threshold_val = 0;
1001 hen->error_threshold_win = 0;
1002 len += sizeof(acpi_hest_hen_t);
1003 pos = hen + 1;
1004 break;
1005 case 2: /* NMI */
1006 case 6: /* AER Root Port */
1007 case 7: /* AER Endpoint */
1008 case 8: /* AER Bridge */
1009 case 9: /* Generic Hardware Error Source. */
1010 /* TODO: */
1011 break;
1012 default:
1013 printk(BIOS_DEBUG, "Invalid type of Error Source.");
1014 break;
1015 }
Lee Leahy024b13d2017-03-16 13:41:11 -07001016 hest->error_source_count++;
zbaocaf494c82012-04-13 13:57:14 +08001017
1018 memcpy(pos, data, data_len);
1019 len += data_len;
1020 header->length += len;
1021
1022 return len;
1023}
1024
1025/* ACPI 4.0 */
Vladimir Serbinenko807127f2014-11-09 13:36:18 +01001026void acpi_write_hest(acpi_hest_t *hest,
1027 unsigned long (*acpi_fill_hest)(acpi_hest_t *hest))
zbaocaf494c82012-04-13 13:57:14 +08001028{
1029 acpi_header_t *header = &(hest->header);
1030
1031 memset(hest, 0, sizeof(acpi_hest_t));
1032
1033 memcpy(header->signature, "HEST", 4);
1034 memcpy(header->oem_id, OEM_ID, 6);
1035 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1036 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001037 header->asl_compiler_revision = asl_revision;
zbaocaf494c82012-04-13 13:57:14 +08001038 header->length += sizeof(acpi_hest_t);
Marc Jones93a51762018-08-22 18:57:24 -06001039 header->revision = get_acpi_table_revision(HEST);
zbaocaf494c82012-04-13 13:57:14 +08001040
1041 acpi_fill_hest(hest);
1042
1043 /* Calculate checksums. */
1044 header->checksum = acpi_checksum((void *)hest, header->length);
1045}
1046
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001047/* ACPI 3.0b */
1048void acpi_write_bert(acpi_bert_t *bert, uintptr_t region, size_t length)
1049{
1050 acpi_header_t *header = &(bert->header);
1051
1052 memset(bert, 0, sizeof(acpi_bert_t));
1053
1054 memcpy(header->signature, "BERT", 4);
1055 memcpy(header->oem_id, OEM_ID, 6);
1056 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1057 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001058 header->asl_compiler_revision = asl_revision;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001059 header->length += sizeof(acpi_bert_t);
1060 header->revision = get_acpi_table_revision(BERT);
1061
1062 bert->error_region = region;
1063 bert->region_length = length;
1064
1065 /* Calculate checksums. */
1066 header->checksum = acpi_checksum((void *)bert, header->length);
1067}
1068
Julius Wernercd49cce2019-03-05 16:53:33 -08001069#if CONFIG(COMMON_FADT)
Lee Leahy024b13d2017-03-16 13:41:11 -07001070void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001071{
1072 acpi_header_t *header = &(fadt->header);
1073
1074 memset((void *) fadt, 0, sizeof(acpi_fadt_t));
1075 memcpy(header->signature, "FACP", 4);
1076 header->length = sizeof(acpi_fadt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001077 header->revision = get_acpi_table_revision(FADT);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001078 memcpy(header->oem_id, OEM_ID, 6);
1079 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1080 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +01001081 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001082
1083 fadt->firmware_ctrl = (unsigned long) facs;
1084 fadt->dsdt = (unsigned long) dsdt;
1085
1086 fadt->x_firmware_ctl_l = (unsigned long)facs;
1087 fadt->x_firmware_ctl_h = 0;
1088 fadt->x_dsdt_l = (unsigned long)dsdt;
1089 fadt->x_dsdt_h = 0;
1090
Julius Wernercd49cce2019-03-05 16:53:33 -08001091 if (CONFIG(SYSTEM_TYPE_CONVERTIBLE) ||
1092 CONFIG(SYSTEM_TYPE_LAPTOP))
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001093 fadt->preferred_pm_profile = PM_MOBILE;
Julius Wernercd49cce2019-03-05 16:53:33 -08001094 else if (CONFIG(SYSTEM_TYPE_DETACHABLE) ||
1095 CONFIG(SYSTEM_TYPE_TABLET))
Duncan Lauriefa9c6f12019-02-07 11:30:06 -08001096 fadt->preferred_pm_profile = PM_TABLET;
Lee Leahy9c7c6f72017-03-16 11:24:09 -07001097 else
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001098 fadt->preferred_pm_profile = PM_DESKTOP;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001099
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +02001100 acpi_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001101
1102 header->checksum =
1103 acpi_checksum((void *) fadt, header->length);
1104}
1105#endif
1106
Aaron Durbin64031672018-04-21 14:45:32 -06001107unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001108{
1109 return 0;
1110}
1111
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001112unsigned long write_acpi_tables(unsigned long start)
1113{
1114 unsigned long current;
1115 acpi_rsdp_t *rsdp;
1116 acpi_rsdt_t *rsdt;
1117 acpi_xsdt_t *xsdt;
1118 acpi_fadt_t *fadt;
1119 acpi_facs_t *facs;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001120 acpi_header_t *slic_file, *slic;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001121 acpi_header_t *ssdt;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001122 acpi_header_t *dsdt_file, *dsdt;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001123 acpi_mcfg_t *mcfg;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001124 acpi_tcpa_t *tcpa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001125 acpi_tpm2_t *tpm2;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001126 acpi_madt_t *madt;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +11001127 struct device *dev;
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001128 unsigned long fw;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001129 size_t slic_size, dsdt_size;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001130 char oem_id[6], oem_table_id[8];
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001131
1132 current = start;
1133
1134 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -06001135 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001136
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001137 fw = fw_cfg_acpi_tables(current);
1138 if (fw)
1139 return fw;
1140
Vladimir Serbinenkoa4cf83d2015-06-02 21:40:29 +02001141 dsdt_file = cbfs_boot_map_with_leak(
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001142 CONFIG_CBFS_PREFIX "/dsdt.aml",
1143 CBFS_TYPE_RAW, &dsdt_size);
1144 if (!dsdt_file) {
1145 printk(BIOS_ERR, "No DSDT file, skipping ACPI tables\n");
1146 return current;
1147 }
1148
1149 if (dsdt_file->length > dsdt_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001150 || dsdt_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001151 || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
1152 printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
1153 return current;
1154 }
1155
Aaron Durbin899d13d2015-05-15 23:39:23 -05001156 slic_file = cbfs_boot_map_with_leak(CONFIG_CBFS_PREFIX "/slic",
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001157 CBFS_TYPE_RAW, &slic_size);
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001158 if (slic_file
1159 && (slic_file->length > slic_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001160 || slic_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001161 || memcmp(slic_file->signature, "SLIC", 4) != 0)) {
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001162 slic_file = 0;
1163 }
1164
1165 if (slic_file) {
1166 memcpy(oem_id, slic_file->oem_id, 6);
1167 memcpy(oem_table_id, slic_file->oem_table_id, 8);
1168 } else {
1169 memcpy(oem_id, OEM_ID, 6);
1170 memcpy(oem_table_id, ACPI_TABLE_CREATOR, 8);
1171 }
1172
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001173 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
1174
1175 /* We need at least an RSDP and an RSDT Table */
1176 rsdp = (acpi_rsdp_t *) current;
1177 current += sizeof(acpi_rsdp_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001178 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001179 rsdt = (acpi_rsdt_t *) current;
1180 current += sizeof(acpi_rsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001181 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001182 xsdt = (acpi_xsdt_t *) current;
1183 current += sizeof(acpi_xsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001184 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001185
1186 /* clear all table memory */
1187 memset((void *) start, 0, current - start);
1188
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001189 acpi_write_rsdp(rsdp, rsdt, xsdt, oem_id);
1190 acpi_write_rsdt(rsdt, oem_id, oem_table_id);
1191 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001192
1193 printk(BIOS_DEBUG, "ACPI: * FACS\n");
Patrick Georgi133108a2015-08-08 23:20:58 +02001194 current = (ALIGN(current, 64));
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001195 facs = (acpi_facs_t *) current;
1196 current += sizeof(acpi_facs_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001197 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001198 acpi_create_facs(facs);
1199
1200 printk(BIOS_DEBUG, "ACPI: * DSDT\n");
1201 dsdt = (acpi_header_t *) current;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001202 memcpy(dsdt, dsdt_file, sizeof(acpi_header_t));
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001203 if (dsdt->length >= sizeof(acpi_header_t)) {
1204 current += sizeof(acpi_header_t);
1205
1206 acpigen_set_current((char *) current);
1207 for (dev = all_devices; dev; dev = dev->next)
Lee Leahy9c7c6f72017-03-16 11:24:09 -07001208 if (dev->ops && dev->ops->acpi_inject_dsdt_generator)
Alexander Couzensa90dad12015-04-12 21:49:46 +02001209 dev->ops->acpi_inject_dsdt_generator(dev);
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001210 current = (unsigned long) acpigen_get_current();
1211 memcpy((char *)current,
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001212 (char *)dsdt_file + sizeof(acpi_header_t),
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001213 dsdt->length - sizeof(acpi_header_t));
1214 current += dsdt->length - sizeof(acpi_header_t);
1215
1216 /* (Re)calculate length and checksum. */
1217 dsdt->length = current - (unsigned long)dsdt;
1218 dsdt->checksum = 0;
1219 dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
1220 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001221
Aaron Durbin07a1b282015-12-10 17:07:38 -06001222 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001223
1224 printk(BIOS_DEBUG, "ACPI: * FADT\n");
1225 fadt = (acpi_fadt_t *) current;
1226 current += sizeof(acpi_fadt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001227 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001228
1229 acpi_create_fadt(fadt, facs, dsdt);
1230 acpi_add_table(rsdp, fadt);
1231
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001232 if (slic_file) {
1233 printk(BIOS_DEBUG, "ACPI: * SLIC\n");
1234 slic = (acpi_header_t *)current;
1235 memcpy(slic, slic_file, slic_file->length);
1236 current += slic_file->length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001237 current = acpi_align_current(current);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001238 acpi_add_table(rsdp, slic);
1239 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001240
1241 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1242 ssdt = (acpi_header_t *)current;
1243 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001244 if (ssdt->length > sizeof(acpi_header_t)) {
1245 current += ssdt->length;
1246 acpi_add_table(rsdp, ssdt);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001247 current = acpi_align_current(current);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001248 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001249
1250 printk(BIOS_DEBUG, "ACPI: * MCFG\n");
1251 mcfg = (acpi_mcfg_t *) current;
1252 acpi_create_mcfg(mcfg);
1253 if (mcfg->header.length > sizeof(acpi_mcfg_t)) {
1254 current += mcfg->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001255 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001256 acpi_add_table(rsdp, mcfg);
1257 }
1258
Julius Wernercd49cce2019-03-05 16:53:33 -08001259 if (CONFIG(TPM1)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001260 printk(BIOS_DEBUG, "ACPI: * TCPA\n");
1261 tcpa = (acpi_tcpa_t *) current;
1262 acpi_create_tcpa(tcpa);
1263 if (tcpa->header.length >= sizeof(acpi_tcpa_t)) {
1264 current += tcpa->header.length;
1265 current = acpi_align_current(current);
1266 acpi_add_table(rsdp, tcpa);
1267 }
1268 }
1269
Julius Wernercd49cce2019-03-05 16:53:33 -08001270 if (CONFIG(TPM2)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001271 printk(BIOS_DEBUG, "ACPI: * TPM2\n");
1272 tpm2 = (acpi_tpm2_t *) current;
1273 acpi_create_tpm2(tpm2);
1274 if (tpm2->header.length >= sizeof(acpi_tpm2_t)) {
1275 current += tpm2->header.length;
1276 current = acpi_align_current(current);
1277 acpi_add_table(rsdp, tpm2);
1278 }
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001279 }
1280
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001281 printk(BIOS_DEBUG, "ACPI: * MADT\n");
1282
1283 madt = (acpi_madt_t *) current;
1284 acpi_create_madt(madt);
1285 if (madt->header.length > sizeof(acpi_madt_t)) {
Lee Leahy024b13d2017-03-16 13:41:11 -07001286 current += madt->header.length;
1287 acpi_add_table(rsdp, madt);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001288 }
Aaron Durbin07a1b282015-12-10 17:07:38 -06001289 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001290
1291 printk(BIOS_DEBUG, "current = %lx\n", current);
1292
1293 for (dev = all_devices; dev; dev = dev->next) {
1294 if (dev->ops && dev->ops->write_acpi_tables) {
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001295 current = dev->ops->write_acpi_tables(dev, current,
1296 rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001297 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001298 }
1299 }
1300
1301 printk(BIOS_INFO, "ACPI: done.\n");
1302 return current;
1303}
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001304
Rudolf Marek33cafe52009-04-13 18:07:02 +00001305static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
1306{
1307 if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0)
1308 return NULL;
1309
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001310 printk(BIOS_DEBUG, "Looking on %p for valid checksum\n", rsdp);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001311
1312 if (acpi_checksum((void *)rsdp, 20) != 0)
1313 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001314 printk(BIOS_DEBUG, "Checksum 1 passed\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001315
1316 if ((rsdp->revision > 1) && (acpi_checksum((void *)rsdp,
1317 rsdp->length) != 0))
1318 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001319 printk(BIOS_DEBUG, "Checksum 2 passed all OK\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001320
1321 return rsdp;
1322}
1323
Rudolf Marek33cafe52009-04-13 18:07:02 +00001324void *acpi_find_wakeup_vector(void)
1325{
1326 char *p, *end;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001327 acpi_rsdt_t *rsdt;
1328 acpi_facs_t *facs;
Martin Rothc5f49262012-12-14 19:17:55 -07001329 acpi_fadt_t *fadt = NULL;
Kyösti Mälkki072d436b2016-06-17 08:44:40 +03001330 acpi_rsdp_t *rsdp = NULL;
Uwe Hermann622824c2010-11-19 15:14:42 +00001331 void *wake_vec;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001332 int i;
1333
Rudolf Marek33cafe52009-04-13 18:07:02 +00001334 if (!acpi_is_wakeup())
1335 return NULL;
1336
Uwe Hermann622824c2010-11-19 15:14:42 +00001337 printk(BIOS_DEBUG, "Trying to find the wakeup vector...\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001338
Uwe Hermann622824c2010-11-19 15:14:42 +00001339 /* Find RSDP. */
1340 for (p = (char *)0xe0000; p < (char *)0xfffff; p += 16) {
Lee Leahy0b5678f2017-03-16 16:01:40 -07001341 rsdp = valid_rsdp((acpi_rsdp_t *)p);
1342 if (rsdp)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001343 break;
1344 }
1345
Angel Pons98a68ad2018-11-04 12:25:25 +01001346 if (rsdp == NULL) {
1347 printk(BIOS_ALERT,
1348 "No RSDP found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001349 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001350 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001351
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001352 printk(BIOS_DEBUG, "RSDP found at %p\n", rsdp);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001353 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +00001354
Uwe Hermann622824c2010-11-19 15:14:42 +00001355 end = (char *)rsdt + rsdt->header.length;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001356 printk(BIOS_DEBUG, "RSDT found at %p ends at %p\n", rsdt, end);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001357
Uwe Hermann622824c2010-11-19 15:14:42 +00001358 for (i = 0; ((char *)&rsdt->entry[i]) < end; i++) {
Stefan Reinauer71a30182015-07-30 16:28:13 -07001359 fadt = (acpi_fadt_t *)(uintptr_t)rsdt->entry[i];
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001360 if (strncmp((char *)fadt, "FACP", 4) == 0)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001361 break;
1362 fadt = NULL;
1363 }
1364
Angel Pons98a68ad2018-11-04 12:25:25 +01001365 if (fadt == NULL) {
1366 printk(BIOS_ALERT,
1367 "No FADT found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001368 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001369 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001370
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001371 printk(BIOS_DEBUG, "FADT found at %p\n", fadt);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001372 facs = (acpi_facs_t *)(uintptr_t)fadt->firmware_ctrl;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001373
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001374 if (facs == NULL) {
Angel Pons98a68ad2018-11-04 12:25:25 +01001375 printk(BIOS_ALERT,
1376 "No FACS found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001377 return NULL;
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001378 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001379
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001380 printk(BIOS_DEBUG, "FACS found at %p\n", facs);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001381 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001382 printk(BIOS_DEBUG, "OS waking vector is %p\n", wake_vec);
Uwe Hermann622824c2010-11-19 15:14:42 +00001383
Rudolf Marek33cafe52009-04-13 18:07:02 +00001384 return wake_vec;
1385}
1386
Aaron Durbin64031672018-04-21 14:45:32 -06001387__weak int acpi_get_gpe(int gpe)
Duncan Laurie1f6e6812016-09-19 12:04:19 -07001388{
1389 return -1; /* implemented by SOC */
1390}
Marc Jones93a51762018-08-22 18:57:24 -06001391
1392int get_acpi_table_revision(enum acpi_tables table)
1393{
1394 switch (table) {
1395 case FADT:
1396 return ACPI_FADT_REV_ACPI_3_0;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001397 case MADT: /* ACPI 3.0: 2, ACPI 4.0/5.0: 3, ACPI 6.2b/6.3: 5 */
Marc Jones4ddd4762018-08-21 10:50:57 -06001398 return 2;
Marc Jones93a51762018-08-22 18:57:24 -06001399 case MCFG:
1400 return 1;
1401 case TCPA:
1402 return 2;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001403 case TPM2:
1404 return 4;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001405 case SSDT: /* ACPI 3.0 upto 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001406 return 2;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001407 case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 upto 6.3: 3 */
Marc Jones93a51762018-08-22 18:57:24 -06001408 return 1; /* TODO Should probably be upgraded to 2 */
1409 case DMAR:
1410 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001411 case SLIT: /* ACPI 2.0 upto 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001412 return 1;
1413 case HPET: /* Currently 1. Table added in ACPI 2.0. */
1414 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001415 case VFCT: /* ACPI 2.0/3.0/4.0: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001416 return 1;
1417 case IVRS:
1418 return IVRS_FORMAT_FIXED;
1419 case DBG2:
1420 return 0;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001421 case FACS: /* ACPI 2.0/3.0: 1, ACPI 4.0 upto 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001422 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001423 case RSDT: /* ACPI 1.0 upto 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001424 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001425 case XSDT: /* ACPI 2.0 upto 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001426 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001427 case RSDP: /* ACPI 2.0 upto 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001428 return 2;
1429 case HEST:
1430 return 1;
1431 case NHLT:
1432 return 5;
Marshall Dawson44705c62018-09-04 13:47:15 -06001433 case BERT:
1434 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06001435 default:
1436 return -1;
1437 }
1438 return -1;
1439}