blob: 04a59b176746400f42b3883acba45d4ca2dd5017 [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
Furquan Shaikh76cedd22020-05-02 10:24:23 -070016#include <acpi/acpi.h>
17#include <acpi/acpi_ivrs.h>
18#include <acpi/acpigen.h>
Felix Held972d9f22022-02-23 16:32:20 +010019#include <arch/hpet.h>
Jianjun Wang8565b94a2022-03-02 10:20:26 +080020#include <cbfs.h>
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000021#include <cbmem.h>
Elyes HAOUASe2d152c2019-06-21 07:06:50 +020022#include <commonlib/helpers.h>
Jianjun Wang8565b94a2022-03-02 10:20:26 +080023#include <commonlib/sort.h>
24#include <console/console.h>
Duncan Laurie11290c42012-10-03 19:07:05 -070025#include <cpu/cpu.h>
Jianjun Wang8565b94a2022-03-02 10:20:26 +080026#include <device/mmio.h>
27#include <device/pci.h>
28#include <pc80/mc146818rtc.h>
29#include <string.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010030#include <types.h>
Elyes HAOUAS26071aa2019-02-15 08:21:33 +010031#include <version.h>
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000032
Kyösti Mälkkic7da0272021-06-08 11:37:08 +030033#if ENV_X86
34#include <arch/ioapic.h>
35#endif
36
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +020037static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp);
38
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000039u8 acpi_checksum(u8 *table, u32 length)
Stefan Reinauer688b3852004-01-28 16:56:14 +000040{
Uwe Hermann622824c2010-11-19 15:14:42 +000041 u8 ret = 0;
Stefan Reinauer688b3852004-01-28 16:56:14 +000042 while (length--) {
43 ret += *table;
44 table++;
45 }
Stefan Reinauera7648c22004-01-29 17:31:34 +000046 return -ret;
Stefan Reinauer688b3852004-01-28 16:56:14 +000047}
48
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000049/**
Uwe Hermann622824c2010-11-19 15:14:42 +000050 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
51 * and checksum.
Stefan Reinauer06feb882004-02-03 16:11:35 +000052 */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000053void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
Stefan Reinauer688b3852004-01-28 16:56:14 +000054{
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000055 int i, entries_num;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000056 acpi_rsdt_t *rsdt;
57 acpi_xsdt_t *xsdt = NULL;
58
Uwe Hermann622824c2010-11-19 15:14:42 +000059 /* The RSDT is mandatory... */
Stefan Reinauerdefee172015-06-18 01:11:19 -070060 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000061
Uwe Hermann622824c2010-11-19 15:14:42 +000062 /* ...while the XSDT is not. */
63 if (rsdp->xsdt_address)
Stefan Reinauerdefee172015-06-18 01:11:19 -070064 xsdt = (acpi_xsdt_t *)((uintptr_t)rsdp->xsdt_address);
Stefan Reinauer14e22772010-04-27 06:56:47 +000065
Uwe Hermann622824c2010-11-19 15:14:42 +000066 /* This should always be MAX_ACPI_TABLES. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000067 entries_num = ARRAY_SIZE(rsdt->entry);
Stefan Reinauer14e22772010-04-27 06:56:47 +000068
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000069 for (i = 0; i < entries_num; i++) {
Uwe Hermann622824c2010-11-19 15:14:42 +000070 if (rsdt->entry[i] == 0)
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000071 break;
Stefan Reinauer688b3852004-01-28 16:56:14 +000072 }
73
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000074 if (i >= entries_num) {
Uwe Hermann622824c2010-11-19 15:14:42 +000075 printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030076 "too many tables.\n");
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000077 return;
78 }
79
Uwe Hermann622824c2010-11-19 15:14:42 +000080 /* Add table to the RSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070081 rsdt->entry[i] = (uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000082
Uwe Hermann622824c2010-11-19 15:14:42 +000083 /* Fix RSDT length or the kernel will assume invalid entries. */
84 rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000085
Uwe Hermann622824c2010-11-19 15:14:42 +000086 /* Re-calculate checksum. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000087 rsdt->header.checksum = 0; /* Hope this won't get optimized away */
Uwe Hermann622824c2010-11-19 15:14:42 +000088 rsdt->header.checksum = acpi_checksum((u8 *)rsdt, rsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000089
Uwe Hermann622824c2010-11-19 15:14:42 +000090 /*
91 * And now the same thing for the XSDT. We use the same index as for
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000092 * now we want the XSDT and RSDT to always be in sync in coreboot.
93 */
94 if (xsdt) {
Uwe Hermann622824c2010-11-19 15:14:42 +000095 /* Add table to the XSDT. */
Stefan Reinauerdefee172015-06-18 01:11:19 -070096 xsdt->entry[i] = (u64)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000097
Uwe Hermann622824c2010-11-19 15:14:42 +000098 /* Fix XSDT length. */
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000099 xsdt->header.length = sizeof(acpi_header_t) +
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300100 (sizeof(u64) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000101
Uwe Hermann622824c2010-11-19 15:14:42 +0000102 /* Re-calculate checksum. */
103 xsdt->header.checksum = 0;
104 xsdt->header.checksum = acpi_checksum((u8 *)xsdt,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300105 xsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +0000106 }
107
Uwe Hermann622824c2010-11-19 15:14:42 +0000108 printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300109 i + 1, entries_num, rsdt->header.length);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000110}
111
Uwe Hermann622824c2010-11-19 15:14:42 +0000112int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u32 base,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300113 u16 seg_nr, u8 start, u8 end)
Stefan Reinauer26d431a2009-01-20 19:17:51 +0000114{
Vladimir Serbinenko60fccdc2014-10-05 11:05:16 +0200115 memset(mmconfig, 0, sizeof(*mmconfig));
Rudolf Mareke6409f22007-11-03 12:50:26 +0000116 mmconfig->base_address = base;
117 mmconfig->base_reserved = 0;
118 mmconfig->pci_segment_group_number = seg_nr;
119 mmconfig->start_bus_number = start;
120 mmconfig->end_bus_number = end;
Uwe Hermann622824c2010-11-19 15:14:42 +0000121
122 return sizeof(acpi_mcfg_mmconfig_t);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000123}
124
Stefan Reinauer777224c2005-01-19 14:06:41 +0000125int acpi_create_madt_lapic(acpi_madt_lapic_t *lapic, u8 cpu, u8 apic)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000126{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530127 lapic->type = LOCAL_APIC; /* Local APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000128 lapic->length = sizeof(acpi_madt_lapic_t);
129 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
130 lapic->processor_id = cpu;
131 lapic->apic_id = apic;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000132
Uwe Hermann622824c2010-11-19 15:14:42 +0000133 return lapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000134}
135
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100136int acpi_create_madt_lx2apic(acpi_madt_lx2apic_t *lapic, u32 cpu, u32 apic)
137{
138 lapic->type = LOCAL_X2APIC; /* Local APIC structure */
139 lapic->reserved = 0;
140 lapic->length = sizeof(acpi_madt_lx2apic_t);
141 lapic->flags = (1 << 0); /* Processor/LAPIC enabled */
142 lapic->processor_id = cpu;
143 lapic->x2apic_id = apic;
144
145 return lapic->length;
146}
147
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000148unsigned long acpi_create_madt_lapics(unsigned long current)
149{
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100150 struct device *cpu;
Werner Zeh423adfb2019-03-06 09:31:02 +0100151 int index, apic_ids[CONFIG_MAX_CPUS] = {0}, num_cpus = 0;
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000152
Uwe Hermann622824c2010-11-19 15:14:42 +0000153 for (cpu = all_devices; cpu; cpu = cpu->next) {
Fabio Aiuto45aae7f2022-09-23 16:51:34 +0200154 if (!is_enabled_cpu(cpu))
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000155 continue;
Werner Zehdb561e62019-02-19 13:39:56 +0100156 if (num_cpus >= ARRAY_SIZE(apic_ids))
157 break;
158 apic_ids[num_cpus++] = cpu->path.apic.apic_id;
159 }
Werner Zehfedb36e2019-03-12 07:07:50 +0100160 if (num_cpus > 1)
161 bubblesort(apic_ids, num_cpus, NUM_ASCENDING);
Werner Zehdb561e62019-02-19 13:39:56 +0100162 for (index = 0; index < num_cpus; index++) {
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100163 if (apic_ids[index] < 0xff)
164 current += acpi_create_madt_lapic((acpi_madt_lapic_t *)current,
165 index, apic_ids[index]);
166 else
167 current += acpi_create_madt_lx2apic((acpi_madt_lx2apic_t *)current,
168 index, apic_ids[index]);
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000169 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000170
Stefan Reinauerda65fbf2009-04-22 08:18:37 +0000171 return current;
172}
173
Uwe Hermann622824c2010-11-19 15:14:42 +0000174int acpi_create_madt_ioapic(acpi_madt_ioapic_t *ioapic, u8 id, u32 addr,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300175 u32 gsi_base)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000176{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530177 ioapic->type = IO_APIC; /* I/O APIC structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000178 ioapic->length = sizeof(acpi_madt_ioapic_t);
179 ioapic->reserved = 0x00;
180 ioapic->gsi_base = gsi_base;
181 ioapic->ioapic_id = id;
182 ioapic->ioapic_addr = addr;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000183
Uwe Hermann622824c2010-11-19 15:14:42 +0000184 return ioapic->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000185}
186
Kyösti Mälkkic7da0272021-06-08 11:37:08 +0300187#if ENV_X86
188/* For a system with multiple I/O APICs it's required that the one potentially
189 routing i8259 via ExtNMI delivery calls this first to get GSI #0. */
190int acpi_create_madt_ioapic_from_hw(acpi_madt_ioapic_t *ioapic, u32 addr)
191{
192 static u32 gsi_base;
193 u32 my_base;
194 u8 id = get_ioapic_id((void *)(uintptr_t)addr);
195 u8 count = ioapic_get_max_vectors((void *)(uintptr_t)addr);
196
197 my_base = gsi_base;
198 gsi_base += count;
199 return acpi_create_madt_ioapic(ioapic, id, addr, my_base);
200}
201#endif
202
Stefan Reinauer777224c2005-01-19 14:06:41 +0000203int acpi_create_madt_irqoverride(acpi_madt_irqoverride_t *irqoverride,
Stefan Reinauer06feb882004-02-03 16:11:35 +0000204 u8 bus, u8 source, u32 gsirq, u16 flags)
205{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530206 irqoverride->type = IRQ_SOURCE_OVERRIDE; /* Interrupt source override */
Uwe Hermann622824c2010-11-19 15:14:42 +0000207 irqoverride->length = sizeof(acpi_madt_irqoverride_t);
208 irqoverride->bus = bus;
209 irqoverride->source = source;
210 irqoverride->gsirq = gsirq;
211 irqoverride->flags = flags;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000212
Uwe Hermann622824c2010-11-19 15:14:42 +0000213 return irqoverride->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000214}
215
Stefan Reinauer777224c2005-01-19 14:06:41 +0000216int acpi_create_madt_lapic_nmi(acpi_madt_lapic_nmi_t *lapic_nmi, u8 cpu,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300217 u16 flags, u8 lint)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000218{
Himanshu Sahdev8c09b822019-10-21 18:50:50 +0530219 lapic_nmi->type = LOCAL_APIC_NMI; /* Local APIC NMI structure */
Uwe Hermann622824c2010-11-19 15:14:42 +0000220 lapic_nmi->length = sizeof(acpi_madt_lapic_nmi_t);
221 lapic_nmi->flags = flags;
222 lapic_nmi->processor_id = cpu;
223 lapic_nmi->lint = lint;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000224
Uwe Hermann622824c2010-11-19 15:14:42 +0000225 return lapic_nmi->length;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000226}
227
Patrick Rudolph56a3ef22020-03-24 17:29:49 +0100228int acpi_create_madt_lx2apic_nmi(acpi_madt_lx2apic_nmi_t *lapic_nmi, u32 cpu,
229 u16 flags, u8 lint)
230{
231 lapic_nmi->type = LOCAL_X2APIC_NMI; /* Local APIC NMI structure */
232 lapic_nmi->length = sizeof(acpi_madt_lx2apic_nmi_t);
233 lapic_nmi->flags = flags;
234 lapic_nmi->processor_id = cpu;
235 lapic_nmi->lint = lint;
236 lapic_nmi->reserved[0] = 0;
237 lapic_nmi->reserved[1] = 0;
238 lapic_nmi->reserved[2] = 0;
239
240 return lapic_nmi->length;
241}
242
Kyösti Mälkki66b5e1b2022-11-12 21:13:45 +0200243unsigned long acpi_create_madt_lapics_with_nmis(unsigned long current)
244{
245 const u16 flags = MP_IRQ_TRIGGER_EDGE | MP_IRQ_POLARITY_HIGH;
246
247 current = acpi_create_madt_lapics(current);
248
249 /* 1: LINT1 connect to NMI */
250 /* create all subtables for processors */
251 current += acpi_create_madt_lapic_nmi((acpi_madt_lapic_nmi_t *)current,
252 ACPI_MADT_LAPIC_NMI_ALL_PROCESSORS, flags, 1);
253
254 if (!CONFIG(XAPIC_ONLY))
255 current += acpi_create_madt_lx2apic_nmi((acpi_madt_lx2apic_nmi_t *)current,
256 ACPI_MADT_LX2APIC_NMI_ALL_PROCESSORS, flags, 1);
257
258 return current;
259}
260
Stefan Reinauer777224c2005-01-19 14:06:41 +0000261void acpi_create_madt(acpi_madt_t *madt)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000262{
Uwe Hermann622824c2010-11-19 15:14:42 +0000263 acpi_header_t *header = &(madt->header);
264 unsigned long current = (unsigned long)madt + sizeof(acpi_madt_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000265
Stefan Reinauer06feb882004-02-03 16:11:35 +0000266 memset((void *)madt, 0, sizeof(acpi_madt_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000267
John Zhao2ba303e2019-05-28 16:48:14 -0700268 if (!header)
269 return;
270
Uwe Hermann622824c2010-11-19 15:14:42 +0000271 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000272 memcpy(header->signature, "APIC", 4);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000273 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000274 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000275 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000276
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100277 header->asl_compiler_revision = asl_revision;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000278 header->length = sizeof(acpi_madt_t);
Marc Jones93a51762018-08-22 18:57:24 -0600279 header->revision = get_acpi_table_revision(MADT);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000280
Furquan Shaikhb1859a62020-04-30 21:27:47 -0700281 madt->lapic_addr = cpu_get_lapic_addr();
Nico Huber9df72e02018-11-24 18:25:50 +0100282 if (CONFIG(ACPI_HAVE_PCAT_8259))
283 madt->flags |= 1;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000284
Kyösti Mälkkia5fa5342022-11-18 13:23:52 +0200285 if (!CONFIG(ACPI_NO_MADT))
286 current = acpi_fill_madt(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000287
Uwe Hermann622824c2010-11-19 15:14:42 +0000288 /* (Re)calculate length and checksum. */
289 header->length = current - (unsigned long)madt;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000290
Uwe Hermann622824c2010-11-19 15:14:42 +0000291 header->checksum = acpi_checksum((void *)madt, header->length);
Stefan Reinauer06feb882004-02-03 16:11:35 +0000292}
293
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200294static unsigned long acpi_fill_mcfg(unsigned long current)
295{
296 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
Shelley Chen4e9bb332021-10-20 15:43:45 -0700297 CONFIG_ECAM_MMCONF_BASE_ADDRESS, 0, 0,
298 CONFIG_ECAM_MMCONF_BUS_NUMBER - 1);
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200299 return current;
300}
301
Uwe Hermann622824c2010-11-19 15:14:42 +0000302/* MCFG is defined in the PCI Firmware Specification 3.0. */
Rudolf Mareke6409f22007-11-03 12:50:26 +0000303void acpi_create_mcfg(acpi_mcfg_t *mcfg)
304{
Uwe Hermann622824c2010-11-19 15:14:42 +0000305 acpi_header_t *header = &(mcfg->header);
306 unsigned long current = (unsigned long)mcfg + sizeof(acpi_mcfg_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000307
Rudolf Mareke6409f22007-11-03 12:50:26 +0000308 memset((void *)mcfg, 0, sizeof(acpi_mcfg_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000309
John Zhao2ba303e2019-05-28 16:48:14 -0700310 if (!header)
311 return;
312
Uwe Hermann622824c2010-11-19 15:14:42 +0000313 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000314 memcpy(header->signature, "MCFG", 4);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000315 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000316 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000317 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000318
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100319 header->asl_compiler_revision = asl_revision;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000320 header->length = sizeof(acpi_mcfg_t);
Marc Jones93a51762018-08-22 18:57:24 -0600321 header->revision = get_acpi_table_revision(MCFG);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000322
Shelley Chen4e9bb332021-10-20 15:43:45 -0700323 if (CONFIG(ECAM_MMCONF_SUPPORT))
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200324 current = acpi_fill_mcfg(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000325
Uwe Hermann622824c2010-11-19 15:14:42 +0000326 /* (Re)calculate length and checksum. */
327 header->length = current - (unsigned long)mcfg;
328 header->checksum = acpi_checksum((void *)mcfg, header->length);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000329}
330
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200331static void *get_tcpa_log(u32 *size)
332{
333 const struct cbmem_entry *ce;
334 const u32 tcpa_default_log_len = 0x10000;
335 void *lasa;
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200336 ce = cbmem_entry_find(CBMEM_ID_TCPA_TCG_LOG);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200337 if (ce) {
338 lasa = cbmem_entry_start(ce);
339 *size = cbmem_entry_size(ce);
340 printk(BIOS_DEBUG, "TCPA log found at %p\n", lasa);
341 return lasa;
342 }
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200343 lasa = cbmem_add(CBMEM_ID_TCPA_TCG_LOG, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200344 if (!lasa) {
345 printk(BIOS_ERR, "TCPA log creation failed\n");
346 return NULL;
347 }
348
349 printk(BIOS_DEBUG, "TCPA log created at %p\n", lasa);
Lee Leahy024b13d2017-03-16 13:41:11 -0700350 memset(lasa, 0, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200351
352 *size = tcpa_default_log_len;
353 return lasa;
354}
355
356static void acpi_create_tcpa(acpi_tcpa_t *tcpa)
357{
358 acpi_header_t *header = &(tcpa->header);
359 u32 tcpa_log_len;
360 void *lasa;
361
362 memset((void *)tcpa, 0, sizeof(acpi_tcpa_t));
363
364 lasa = get_tcpa_log(&tcpa_log_len);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700365 if (!lasa)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200366 return;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200367
John Zhao2ba303e2019-05-28 16:48:14 -0700368 if (!header)
369 return;
370
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200371 /* Fill out header fields. */
372 memcpy(header->signature, "TCPA", 4);
373 memcpy(header->oem_id, OEM_ID, 6);
374 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
375 memcpy(header->asl_compiler_id, ASLC, 4);
376
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100377 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200378 header->length = sizeof(acpi_tcpa_t);
Marc Jones93a51762018-08-22 18:57:24 -0600379 header->revision = get_acpi_table_revision(TCPA);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200380
381 tcpa->platform_class = 0;
382 tcpa->laml = tcpa_log_len;
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100383 tcpa->lasa = (uintptr_t)lasa;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200384
385 /* Calculate checksum. */
386 header->checksum = acpi_checksum((void *)tcpa, header->length);
387}
388
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100389static void *get_tpm2_log(u32 *size)
390{
391 const struct cbmem_entry *ce;
392 const u32 tpm2_default_log_len = 0x10000;
393 void *lasa;
394 ce = cbmem_entry_find(CBMEM_ID_TPM2_TCG_LOG);
395 if (ce) {
396 lasa = cbmem_entry_start(ce);
397 *size = cbmem_entry_size(ce);
398 printk(BIOS_DEBUG, "TPM2 log found at %p\n", lasa);
399 return lasa;
400 }
401 lasa = cbmem_add(CBMEM_ID_TPM2_TCG_LOG, tpm2_default_log_len);
402 if (!lasa) {
403 printk(BIOS_ERR, "TPM2 log creation failed\n");
404 return NULL;
405 }
406
407 printk(BIOS_DEBUG, "TPM2 log created at %p\n", lasa);
408 memset(lasa, 0, tpm2_default_log_len);
409
410 *size = tpm2_default_log_len;
411 return lasa;
412}
413
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200414static void acpi_create_tpm2(acpi_tpm2_t *tpm2)
415{
416 acpi_header_t *header = &(tpm2->header);
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100417 u32 tpm2_log_len;
418 void *lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200419
420 memset((void *)tpm2, 0, sizeof(acpi_tpm2_t));
421
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100422 /*
423 * Some payloads like SeaBIOS depend on log area to use TPM2.
424 * Get the memory size and address of TPM2 log area or initialize it.
425 */
426 lasa = get_tpm2_log(&tpm2_log_len);
427 if (!lasa)
428 tpm2_log_len = 0;
429
John Zhao2ba303e2019-05-28 16:48:14 -0700430 if (!header)
431 return;
432
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200433 /* Fill out header fields. */
434 memcpy(header->signature, "TPM2", 4);
435 memcpy(header->oem_id, OEM_ID, 6);
436 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
437 memcpy(header->asl_compiler_id, ASLC, 4);
438
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100439 header->asl_compiler_revision = asl_revision;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200440 header->length = sizeof(acpi_tpm2_t);
441 header->revision = get_acpi_table_revision(TPM2);
442
443 /* Hard to detect for coreboot. Just set it to 0 */
444 tpm2->platform_class = 0;
Christian Walter26e0d4c2019-07-14 15:47:23 +0200445 if (CONFIG(CRB_TPM)) {
446 /* Must be set to 7 for CRB Support */
447 tpm2->control_area = CONFIG_CRB_TPM_BASE_ADDRESS + 0x40;
448 tpm2->start_method = 7;
449 } else {
450 /* Must be set to 0 for FIFO interface support */
451 tpm2->control_area = 0;
452 tpm2->start_method = 6;
453 }
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200454 memset(tpm2->msp, 0, sizeof(tpm2->msp));
455
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100456 /* Fill the log area size and start address fields. */
457 tpm2->laml = tpm2_log_len;
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100458 tpm2->lasa = (uintptr_t)lasa;
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100459
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200460 /* Calculate checksum. */
461 header->checksum = acpi_checksum((void *)tpm2, header->length);
462}
463
Duncan Laurie37319032016-05-26 12:47:05 -0700464static void acpi_ssdt_write_cbtable(void)
465{
466 const struct cbmem_entry *cbtable;
467 uintptr_t base;
468 uint32_t size;
469
470 cbtable = cbmem_entry_find(CBMEM_ID_CBTABLE);
471 if (!cbtable)
472 return;
473 base = (uintptr_t)cbmem_entry_start(cbtable);
474 size = cbmem_entry_size(cbtable);
475
476 acpigen_write_device("CTBL");
477 acpigen_write_coreboot_hid(COREBOOT_ACPI_ID_CBTABLE);
478 acpigen_write_name_integer("_UID", 0);
David Wu5dff3962018-03-21 16:48:53 +0800479 acpigen_write_STA(ACPI_STATUS_DEVICE_HIDDEN_ON);
Duncan Laurie37319032016-05-26 12:47:05 -0700480 acpigen_write_name("_CRS");
481 acpigen_write_resourcetemplate_header();
482 acpigen_write_mem32fixed(0, base, size);
483 acpigen_write_resourcetemplate_footer();
484 acpigen_pop_len();
485}
486
Myles Watson3fe6b702009-10-09 20:13:43 +0000487void acpi_create_ssdt_generator(acpi_header_t *ssdt, const char *oem_table_id)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000488{
Uwe Hermann622824c2010-11-19 15:14:42 +0000489 unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
490
Rudolf Marek293b5f52009-02-01 18:35:15 +0000491 memset((void *)ssdt, 0, sizeof(acpi_header_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000492
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000493 memcpy(&ssdt->signature, "SSDT", 4);
Marc Jones93a51762018-08-22 18:57:24 -0600494 ssdt->revision = get_acpi_table_revision(SSDT);
Rudolf Marek293b5f52009-02-01 18:35:15 +0000495 memcpy(&ssdt->oem_id, OEM_ID, 6);
496 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
497 ssdt->oem_revision = 42;
Uwe Hermann622824c2010-11-19 15:14:42 +0000498 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +0100499 ssdt->asl_compiler_revision = asl_revision;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000500 ssdt->length = sizeof(acpi_header_t);
501
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100502 acpigen_set_current((char *)current);
Duncan Laurie37319032016-05-26 12:47:05 -0700503
504 /* Write object to declare coreboot tables */
505 acpi_ssdt_write_cbtable();
506
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200507 {
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100508 struct device *dev;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200509 for (dev = all_devices; dev; dev = dev->next)
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -0700510 if (dev->enabled && dev->ops && dev->ops->acpi_fill_ssdt)
Nico Huber68680dd2020-03-31 17:34:52 +0200511 dev->ops->acpi_fill_ssdt(dev);
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100512 current = (unsigned long)acpigen_get_current();
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200513 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000514
Uwe Hermann622824c2010-11-19 15:14:42 +0000515 /* (Re)calculate length and checksum. */
Rudolf Marek293b5f52009-02-01 18:35:15 +0000516 ssdt->length = current - (unsigned long)ssdt;
517 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
518}
519
Stefan Reinauerf622d592005-11-26 16:56:05 +0000520int acpi_create_srat_lapic(acpi_srat_lapic_t *lapic, u8 node, u8 apic)
521{
Myles Watson0b4c9f02009-03-10 18:06:47 +0000522 memset((void *)lapic, 0, sizeof(acpi_srat_lapic_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000523
Uwe Hermann622824c2010-11-19 15:14:42 +0000524 lapic->type = 0; /* Processor local APIC/SAPIC affinity structure */
525 lapic->length = sizeof(acpi_srat_lapic_t);
526 lapic->flags = (1 << 0); /* Enabled (the use of this structure). */
527 lapic->proximity_domain_7_0 = node;
528 /* TODO: proximity_domain_31_8, local SAPIC EID, clock domain. */
529 lapic->apic_id = apic;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000530
Uwe Hermann622824c2010-11-19 15:14:42 +0000531 return lapic->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000532}
533
Uwe Hermann622824c2010-11-19 15:14:42 +0000534int 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 +0300535 u32 flags)
Stefan Reinauerf622d592005-11-26 16:56:05 +0000536{
Uwe Hermann622824c2010-11-19 15:14:42 +0000537 mem->type = 1; /* Memory affinity structure */
538 mem->length = sizeof(acpi_srat_mem_t);
539 mem->base_address_low = (basek << 10);
540 mem->base_address_high = (basek >> (32 - 10));
541 mem->length_low = (sizek << 10);
542 mem->length_high = (sizek >> (32 - 10));
543 mem->proximity_domain = node;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000544 mem->flags = flags;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000545
Uwe Hermann622824c2010-11-19 15:14:42 +0000546 return mem->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000547}
548
Jonathan Zhang3164b642021-04-21 17:51:31 -0700549int acpi_create_srat_gia_pci(acpi_srat_gia_t *gia, u32 proximity_domain,
550 u16 seg, u8 bus, u8 dev, u8 func, u32 flags)
551{
552 gia->type = ACPI_SRAT_STRUCTURE_GIA;
553 gia->length = sizeof(acpi_srat_gia_t);
554 gia->proximity_domain = proximity_domain;
555 gia->dev_handle_type = ACPI_SRAT_GIA_DEV_HANDLE_PCI;
556 /* First two bytes has segment number */
557 memcpy(gia->dev_handle, &seg, 2);
558 gia->dev_handle[2] = bus; /* Byte 2 has bus number */
559 /* Byte 3 has bits 7:3 for dev, bits 2:0 for func */
560 gia->dev_handle[3] = PCI_SLOT(dev) | PCI_FUNC(func);
561 gia->flags = flags;
562
563 return gia->length;
564}
565
Uwe Hermann622824c2010-11-19 15:14:42 +0000566/* http://www.microsoft.com/whdc/system/sysinternals/sratdwn.mspx */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200567void acpi_create_srat(acpi_srat_t *srat,
568 unsigned long (*acpi_fill_srat)(unsigned long current))
Stefan Reinauerf622d592005-11-26 16:56:05 +0000569{
Uwe Hermann622824c2010-11-19 15:14:42 +0000570 acpi_header_t *header = &(srat->header);
571 unsigned long current = (unsigned long)srat + sizeof(acpi_srat_t);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000572
Uwe Hermann622824c2010-11-19 15:14:42 +0000573 memset((void *)srat, 0, sizeof(acpi_srat_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000574
John Zhao2ba303e2019-05-28 16:48:14 -0700575 if (!header)
576 return;
577
Uwe Hermann622824c2010-11-19 15:14:42 +0000578 /* Fill out header fields. */
579 memcpy(header->signature, "SRAT", 4);
580 memcpy(header->oem_id, OEM_ID, 6);
581 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
582 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000583
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100584 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000585 header->length = sizeof(acpi_srat_t);
Marc Jones93a51762018-08-22 18:57:24 -0600586 header->revision = get_acpi_table_revision(SRAT);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000587
Uwe Hermann622824c2010-11-19 15:14:42 +0000588 srat->resv = 1; /* Spec: Reserved to 1 for backwards compatibility. */
Stefan Reinauerf622d592005-11-26 16:56:05 +0000589
Uwe Hermann622824c2010-11-19 15:14:42 +0000590 current = acpi_fill_srat(current);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000591
Uwe Hermann622824c2010-11-19 15:14:42 +0000592 /* (Re)calculate length and checksum. */
593 header->length = current - (unsigned long)srat;
594 header->checksum = acpi_checksum((void *)srat, header->length);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000595}
596
Jonathan Zhang3dcafa82022-05-11 13:11:20 -0700597int acpi_create_cedt_chbs(acpi_cedt_chbs_t *chbs, u32 uid, u32 cxl_ver, u64 base)
598{
599 memset((void *)chbs, 0, sizeof(acpi_cedt_chbs_t));
600
601 chbs->type = ACPI_CEDT_STRUCTURE_CHBS;
602 chbs->length = sizeof(acpi_cedt_chbs_t);
603 chbs->uid = uid;
604 chbs->cxl_ver = cxl_ver;
605 chbs->base = base;
606
607 /*
608 * CXL spec 2.0 section 9.14.1.2 "CXL CHBS"
609 * CXL 1.1 spec compliant host bridge: 8KB
610 * CXL 2.0 spec compliant host bridge: 64KB
611 */
612 if (cxl_ver == ACPI_CEDT_CHBS_CXL_VER_1_1)
613 chbs->len = 8 * KiB;
614 else if (cxl_ver == ACPI_CEDT_CHBS_CXL_VER_2_0)
615 chbs->len = 64 * KiB;
616 else
617 printk(BIOS_ERR, "ACPI(%s:%s): Incorrect CXL version:%d\n", __FILE__, __func__,
618 cxl_ver);
619
620 return chbs->length;
621}
622
623int acpi_create_cedt_cfmws(acpi_cedt_cfmws_t *cfmws, u64 base_hpa, u64 window_size, u8 eniw,
624 u32 hbig, u16 restriction, u16 qtg_id, const u32 *interleave_target)
625{
626 memset((void *)cfmws, 0, sizeof(acpi_cedt_cfmws_t));
627
628 cfmws->type = ACPI_CEDT_STRUCTURE_CFMWS;
629
630 u8 niw = 0;
631 if (eniw >= 8)
632 printk(BIOS_ERR, "ACPI(%s:%s): Incorrect eniw::%d\n", __FILE__, __func__, eniw);
633 else
634 /* NIW = 2 ** ENIW */
635 niw = 0x1 << eniw;
636 /* 36 + 4 * NIW */
637 cfmws->length = sizeof(acpi_cedt_cfmws_t) + 4 * niw;
638
639 cfmws->base_hpa = base_hpa;
640 cfmws->window_size = window_size;
641 cfmws->eniw = eniw;
642
643 // 0: Standard Modulo Arithmetic. Other values reserved.
644 cfmws->interleave_arithmetic = 0;
645
646 cfmws->hbig = hbig;
647 cfmws->restriction = restriction;
648 cfmws->qtg_id = qtg_id;
649 memcpy(&cfmws->interleave_target, interleave_target, 4 * niw);
650
651 return cfmws->length;
652}
653
654void acpi_create_cedt(acpi_cedt_t *cedt, unsigned long (*acpi_fill_cedt)(unsigned long current))
655{
656 acpi_header_t *header = &(cedt->header);
657 unsigned long current = (unsigned long)cedt + sizeof(acpi_cedt_t);
658
659 memset((void *)cedt, 0, sizeof(acpi_cedt_t));
660
661 if (!header)
662 return;
663
664 /* Fill out header fields. */
665 memcpy(header->signature, "CEDT", 4);
666 memcpy(header->oem_id, OEM_ID, 6);
667 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
668 memcpy(header->asl_compiler_id, ASLC, 4);
669
670 header->asl_compiler_revision = asl_revision;
671 header->length = sizeof(acpi_cedt_t);
672 header->revision = get_acpi_table_revision(CEDT);
673
674 current = acpi_fill_cedt(current);
675
676 /* (Re)calculate length and checksum. */
677 header->length = current - (unsigned long)cedt;
678 header->checksum = acpi_checksum((void *)cedt, header->length);
679}
680
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700681int acpi_create_hmat_mpda(acpi_hmat_mpda_t *mpda, u32 initiator, u32 memory)
682{
683 memset((void *)mpda, 0, sizeof(acpi_hmat_mpda_t));
684
685 mpda->type = 0; /* Memory Proximity Domain Attributes structure */
686 mpda->length = sizeof(acpi_hmat_mpda_t);
687 /*
688 * Proximity Domain for Attached Initiator field is valid.
689 * Bit 1 and bit 2 are reserved since HMAT revision 2.
690 */
691 mpda->flags = (1 << 0);
692 mpda->proximity_domain_initiator = initiator;
693 mpda->proximity_domain_memory = memory;
694
695 return mpda->length;
696}
697
698void acpi_create_hmat(acpi_hmat_t *hmat,
699 unsigned long (*acpi_fill_hmat)(unsigned long current))
700{
701 acpi_header_t *header = &(hmat->header);
702 unsigned long current = (unsigned long)hmat + sizeof(acpi_hmat_t);
703
704 memset((void *)hmat, 0, sizeof(acpi_hmat_t));
705
706 if (!header)
707 return;
708
709 /* Fill out header fields. */
710 memcpy(header->signature, "HMAT", 4);
711 memcpy(header->oem_id, OEM_ID, 6);
712 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
713 memcpy(header->asl_compiler_id, ASLC, 4);
714
715 header->asl_compiler_revision = asl_revision;
716 header->length = sizeof(acpi_hmat_t);
717 header->revision = get_acpi_table_revision(HMAT);
718
719 current = acpi_fill_hmat(current);
720
721 /* (Re)calculate length and checksum. */
722 header->length = current - (unsigned long)hmat;
723 header->checksum = acpi_checksum((void *)hmat, header->length);
724}
725
Nico Hubere561f352015-10-26 11:51:25 +0100726void acpi_create_dmar(acpi_dmar_t *dmar, enum dmar_flags flags,
Lee Leahy024b13d2017-03-16 13:41:11 -0700727 unsigned long (*acpi_fill_dmar)(unsigned long))
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200728{
729 acpi_header_t *header = &(dmar->header);
730 unsigned long current = (unsigned long)dmar + sizeof(acpi_dmar_t);
731
732 memset((void *)dmar, 0, sizeof(acpi_dmar_t));
733
John Zhao2ba303e2019-05-28 16:48:14 -0700734 if (!header)
735 return;
736
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200737 /* Fill out header fields. */
738 memcpy(header->signature, "DMAR", 4);
739 memcpy(header->oem_id, OEM_ID, 6);
740 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
741 memcpy(header->asl_compiler_id, ASLC, 4);
742
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100743 header->asl_compiler_revision = asl_revision;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200744 header->length = sizeof(acpi_dmar_t);
Marc Jones93a51762018-08-22 18:57:24 -0600745 header->revision = get_acpi_table_revision(DMAR);
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200746
Jacob Laskaf3f654d2016-03-15 21:53:27 -0500747 dmar->host_address_width = cpu_phys_address_size() - 1;
Nico Hubere561f352015-10-26 11:51:25 +0100748 dmar->flags = flags;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200749
750 current = acpi_fill_dmar(current);
751
752 /* (Re)calculate length and checksum. */
753 header->length = current - (unsigned long)dmar;
754 header->checksum = acpi_checksum((void *)dmar, header->length);
755}
756
757unsigned long acpi_create_dmar_drhd(unsigned long current, u8 flags,
Matt DeVillier7866d492018-03-29 14:59:57 +0200758 u16 segment, u64 bar)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200759{
760 dmar_entry_t *drhd = (dmar_entry_t *)current;
761 memset(drhd, 0, sizeof(*drhd));
762 drhd->type = DMAR_DRHD;
763 drhd->length = sizeof(*drhd); /* will be fixed up later */
764 drhd->flags = flags;
765 drhd->segment = segment;
766 drhd->bar = bar;
767
768 return drhd->length;
769}
770
Matt DeVillier7866d492018-03-29 14:59:57 +0200771unsigned long acpi_create_dmar_rmrr(unsigned long current, u16 segment,
772 u64 bar, u64 limit)
773{
774 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)current;
775 memset(rmrr, 0, sizeof(*rmrr));
776 rmrr->type = DMAR_RMRR;
777 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
778 rmrr->segment = segment;
779 rmrr->bar = bar;
780 rmrr->limit = limit;
781
782 return rmrr->length;
783}
784
Werner Zehd4d76952016-07-27 06:56:36 +0200785unsigned long acpi_create_dmar_atsr(unsigned long current, u8 flags,
786 u16 segment)
787{
788 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)current;
789 memset(atsr, 0, sizeof(*atsr));
790 atsr->type = DMAR_ATSR;
791 atsr->length = sizeof(*atsr); /* will be fixed up later */
792 atsr->flags = flags;
793 atsr->segment = segment;
794
795 return atsr->length;
796}
797
John Zhao76e70672019-04-04 11:03:28 -0700798unsigned long acpi_create_dmar_rhsa(unsigned long current, u64 base_addr,
799 u32 proximity_domain)
800{
801 dmar_rhsa_entry_t *rhsa = (dmar_rhsa_entry_t *)current;
802 memset(rhsa, 0, sizeof(*rhsa));
803 rhsa->type = DMAR_RHSA;
804 rhsa->length = sizeof(*rhsa);
805 rhsa->base_address = base_addr;
806 rhsa->proximity_domain = proximity_domain;
807
808 return rhsa->length;
809}
810
811unsigned long acpi_create_dmar_andd(unsigned long current, u8 device_number,
812 const char *device_name)
813{
814 dmar_andd_entry_t *andd = (dmar_andd_entry_t *)current;
815 int andd_len = sizeof(dmar_andd_entry_t) + strlen(device_name) + 1;
816 memset(andd, 0, andd_len);
817 andd->type = DMAR_ANDD;
818 andd->length = andd_len;
819 andd->device_number = device_number;
820 memcpy(&andd->device_name, device_name, strlen(device_name));
821
822 return andd->length;
823}
824
John Zhao091532d2021-04-17 16:03:21 -0700825unsigned long acpi_create_dmar_satc(unsigned long current, u8 flags, u16 segment)
John Zhao6edbb182021-03-24 11:55:09 -0700826{
827 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)current;
John Zhao091532d2021-04-17 16:03:21 -0700828 int satc_len = sizeof(dmar_satc_entry_t);
John Zhao6edbb182021-03-24 11:55:09 -0700829 memset(satc, 0, satc_len);
830 satc->type = DMAR_SATC;
831 satc->length = satc_len;
832 satc->flags = flags;
833 satc->segment_number = segment;
John Zhao6edbb182021-03-24 11:55:09 -0700834
835 return satc->length;
836}
837
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200838void acpi_dmar_drhd_fixup(unsigned long base, unsigned long current)
839{
840 dmar_entry_t *drhd = (dmar_entry_t *)base;
841 drhd->length = current - base;
842}
843
Matt DeVillier7866d492018-03-29 14:59:57 +0200844void acpi_dmar_rmrr_fixup(unsigned long base, unsigned long current)
845{
846 dmar_rmrr_entry_t *rmrr = (dmar_rmrr_entry_t *)base;
847 rmrr->length = current - base;
848}
849
Werner Zehd4d76952016-07-27 06:56:36 +0200850void acpi_dmar_atsr_fixup(unsigned long base, unsigned long current)
851{
852 dmar_atsr_entry_t *atsr = (dmar_atsr_entry_t *)base;
853 atsr->length = current - base;
854}
855
John Zhao6edbb182021-03-24 11:55:09 -0700856void acpi_dmar_satc_fixup(unsigned long base, unsigned long current)
857{
858 dmar_satc_entry_t *satc = (dmar_satc_entry_t *)base;
859 satc->length = current - base;
860}
861
Matt DeVillier7866d492018-03-29 14:59:57 +0200862static unsigned long acpi_create_dmar_ds(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100863 enum dev_scope_type type, u8 enumeration_id, u8 bus, u8 dev, u8 fn)
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200864{
Nico Huber6c4751d2015-10-26 12:03:54 +0100865 /* we don't support longer paths yet */
866 const size_t dev_scope_length = sizeof(dev_scope_t) + 2;
867
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200868 dev_scope_t *ds = (dev_scope_t *)current;
Nico Huber6c4751d2015-10-26 12:03:54 +0100869 memset(ds, 0, dev_scope_length);
870 ds->type = type;
871 ds->length = dev_scope_length;
872 ds->enumeration = enumeration_id;
873 ds->start_bus = bus;
874 ds->path[0].dev = dev;
875 ds->path[0].fn = fn;
Patrick Georgi3b590ff2012-09-11 15:21:01 +0200876
877 return ds->length;
878}
879
Matt DeVillier7866d492018-03-29 14:59:57 +0200880unsigned long acpi_create_dmar_ds_pci_br(unsigned long current, u8 bus,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200881 u8 dev, u8 fn)
882{
Matt DeVillier7866d492018-03-29 14:59:57 +0200883 return acpi_create_dmar_ds(current,
Werner Zeh21a5bff2016-07-27 07:07:20 +0200884 SCOPE_PCI_SUB, 0, bus, dev, fn);
885}
886
Matt DeVillier7866d492018-03-29 14:59:57 +0200887unsigned long acpi_create_dmar_ds_pci(unsigned long current, u8 bus,
Nico Huber6c4751d2015-10-26 12:03:54 +0100888 u8 dev, u8 fn)
889{
Matt DeVillier7866d492018-03-29 14:59:57 +0200890 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100891 SCOPE_PCI_ENDPOINT, 0, bus, dev, fn);
892}
893
Matt DeVillier7866d492018-03-29 14:59:57 +0200894unsigned long acpi_create_dmar_ds_ioapic(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100895 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
896{
Matt DeVillier7866d492018-03-29 14:59:57 +0200897 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100898 SCOPE_IOAPIC, enumeration_id, bus, dev, fn);
899}
900
Arthur Heymansbc8f8592022-12-02 13:17:39 +0100901unsigned long acpi_create_dmar_ds_ioapic_from_hw(unsigned long current,
902 u32 addr, u8 bus, u8 dev, u8 fn)
903{
904 u8 enumeration_id = get_ioapic_id((void *)(uintptr_t)addr);
905 return acpi_create_dmar_ds(current,
906 SCOPE_IOAPIC, enumeration_id, bus, dev, fn);
907}
908
Matt DeVillier7866d492018-03-29 14:59:57 +0200909unsigned long acpi_create_dmar_ds_msi_hpet(unsigned long current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100910 u8 enumeration_id, u8 bus, u8 dev, u8 fn)
911{
Matt DeVillier7866d492018-03-29 14:59:57 +0200912 return acpi_create_dmar_ds(current,
Nico Huber6c4751d2015-10-26 12:03:54 +0100913 SCOPE_MSI_HPET, enumeration_id, bus, dev, fn);
914}
915
Uwe Hermann622824c2010-11-19 15:14:42 +0000916/* http://h21007.www2.hp.com/portal/download/files/unprot/Itanium/slit.pdf */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200917void acpi_create_slit(acpi_slit_t *slit,
918 unsigned long (*acpi_fill_slit)(unsigned long current))
Yinghai Lud4b278c2006-10-04 20:46:15 +0000919{
Uwe Hermann622824c2010-11-19 15:14:42 +0000920 acpi_header_t *header = &(slit->header);
921 unsigned long current = (unsigned long)slit + sizeof(acpi_slit_t);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000922
Uwe Hermann622824c2010-11-19 15:14:42 +0000923 memset((void *)slit, 0, sizeof(acpi_slit_t));
Yinghai Lud4b278c2006-10-04 20:46:15 +0000924
John Zhao2ba303e2019-05-28 16:48:14 -0700925 if (!header)
926 return;
927
Uwe Hermann622824c2010-11-19 15:14:42 +0000928 /* Fill out header fields. */
929 memcpy(header->signature, "SLIT", 4);
930 memcpy(header->oem_id, OEM_ID, 6);
931 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
932 memcpy(header->asl_compiler_id, ASLC, 4);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000933
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100934 header->asl_compiler_revision = asl_revision;
Uwe Hermann622824c2010-11-19 15:14:42 +0000935 header->length = sizeof(acpi_slit_t);
Marc Jones93a51762018-08-22 18:57:24 -0600936 header->revision = get_acpi_table_revision(SLIT);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000937
Uwe Hermann622824c2010-11-19 15:14:42 +0000938 current = acpi_fill_slit(current);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000939
Uwe Hermann622824c2010-11-19 15:14:42 +0000940 /* (Re)calculate length and checksum. */
941 header->length = current - (unsigned long)slit;
942 header->checksum = acpi_checksum((void *)slit, header->length);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000943}
944
Uwe Hermann622824c2010-11-19 15:14:42 +0000945/* http://www.intel.com/hardwaredesign/hpetspec_1.pdf */
Stefan Reinauer777224c2005-01-19 14:06:41 +0000946void acpi_create_hpet(acpi_hpet_t *hpet)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000947{
Uwe Hermann622824c2010-11-19 15:14:42 +0000948 acpi_header_t *header = &(hpet->header);
949 acpi_addr_t *addr = &(hpet->addr);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000950
Stefan Reinauera7648c22004-01-29 17:31:34 +0000951 memset((void *)hpet, 0, sizeof(acpi_hpet_t));
Stefan Reinauer14e22772010-04-27 06:56:47 +0000952
John Zhao2ba303e2019-05-28 16:48:14 -0700953 if (!header)
954 return;
955
Uwe Hermann622824c2010-11-19 15:14:42 +0000956 /* Fill out header fields. */
Stefan Reinauer4704dc52009-07-22 01:11:37 +0000957 memcpy(header->signature, "HPET", 4);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000958 memcpy(header->oem_id, OEM_ID, 6);
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000959 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000960 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000961
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +0100962 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000963 header->length = sizeof(acpi_hpet_t);
Marc Jones93a51762018-08-22 18:57:24 -0600964 header->revision = get_acpi_table_revision(HPET);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000965
Uwe Hermann622824c2010-11-19 15:14:42 +0000966 /* Fill out HPET address. */
Elyes HAOUAS04071f42020-07-20 17:05:24 +0200967 addr->space_id = ACPI_ADDRESS_SPACE_MEMORY;
Uwe Hermann622824c2010-11-19 15:14:42 +0000968 addr->bit_width = 64;
969 addr->bit_offset = 0;
Felix Held972d9f22022-02-23 16:32:20 +0100970 addr->addrl = HPET_BASE_ADDRESS & 0xffffffff;
971 addr->addrh = ((unsigned long long)HPET_BASE_ADDRESS) >> 32;
Stefan Reinauer688b3852004-01-28 16:56:14 +0000972
Felix Held972d9f22022-02-23 16:32:20 +0100973 hpet->id = read32p(HPET_BASE_ADDRESS);
Uwe Hermann622824c2010-11-19 15:14:42 +0000974 hpet->number = 0;
Patrick Georgi9aeb6942012-10-05 21:54:38 +0200975 hpet->min_tick = CONFIG_HPET_MIN_TICKS;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000976
Uwe Hermann622824c2010-11-19 15:14:42 +0000977 header->checksum = acpi_checksum((void *)hpet, sizeof(acpi_hpet_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000978}
Uwe Hermann622824c2010-11-19 15:14:42 +0000979
Rocky Phaguraeff07132021-01-10 15:42:50 -0800980/*
981 * This method adds the ACPI error injection capability. It fills the default information.
982 * HW dependent code (caller) can modify the defaults upon return. If no changes are necessary
983 * and the defaults are acceptable then caller can simply add the table (acpi_add_table).
984 * INPUTS:
985 * einj - ptr to the starting location of EINJ table
986 * actions - number of actions to trigger an error (HW dependent)
987 * addr - address of trigger action table. This should be ACPI reserved memory and it will be
988 * shared between OS and FW.
989 */
990void acpi_create_einj(acpi_einj_t *einj, uintptr_t addr, u8 actions)
991{
992 int i;
993 acpi_header_t *header = &(einj->header);
994 acpi_injection_header_t *inj_header = &(einj->inj_header);
995 acpi_einj_smi_t *einj_smi = (acpi_einj_smi_t *)addr;
996 acpi_einj_trigger_table_t *tat;
997 if (!header)
998 return;
999
1000 printk(BIOS_DEBUG, "%s einj_smi = %p\n", __func__, einj_smi);
1001 memset(einj_smi, 0, sizeof(acpi_einj_smi_t));
Jonathan Zhangd5d9b282022-11-07 17:30:14 -08001002 tat = (acpi_einj_trigger_table_t *)((uint8_t *)einj_smi + sizeof(acpi_einj_smi_t));
Rocky Phaguraeff07132021-01-10 15:42:50 -08001003 tat->header_size = 16;
1004 tat->revision = 0;
1005 tat->table_size = sizeof(acpi_einj_trigger_table_t) +
1006 sizeof(acpi_einj_action_table_t) * actions - 1;
1007 tat->entry_count = actions;
1008 printk(BIOS_DEBUG, "%s trigger_action_table = %p\n", __func__, tat);
1009
1010 for (i = 0; i < actions; i++) {
1011 tat->trigger_action[i].action = TRIGGER_ERROR;
1012 tat->trigger_action[i].instruction = NO_OP;
1013 tat->trigger_action[i].flags = FLAG_IGNORE;
1014 tat->trigger_action[i].reg.space_id = ACPI_ADDRESS_SPACE_MEMORY;
1015 tat->trigger_action[i].reg.bit_width = 64;
1016 tat->trigger_action[i].reg.bit_offset = 0;
1017 tat->trigger_action[i].reg.access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
1018 tat->trigger_action[i].reg.addr = 0;
1019 tat->trigger_action[i].value = 0;
1020 tat->trigger_action[i].mask = 0xFFFFFFFF;
1021 }
1022
1023 acpi_einj_action_table_t default_actions[ACTION_COUNT] = {
1024 [0] = {
1025 .action = BEGIN_INJECT_OP,
1026 .instruction = WRITE_REGISTER_VALUE,
1027 .flags = FLAG_PRESERVE,
1028 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
1029 .value = 0,
1030 .mask = 0xFFFFFFFF
1031 },
1032 [1] = {
1033 .action = GET_TRIGGER_ACTION_TABLE,
1034 .instruction = READ_REGISTER,
1035 .flags = FLAG_IGNORE,
1036 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->trigger_action_table),
1037 .value = 0,
1038 .mask = 0xFFFFFFFFFFFFFFFF
1039 },
1040 [2] = {
1041 .action = SET_ERROR_TYPE,
1042 .instruction = WRITE_REGISTER,
1043 .flags = FLAG_PRESERVE,
1044 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inject[0]),
1045 .value = 0,
1046 .mask = 0xFFFFFFFF
1047 },
1048 [3] = {
1049 .action = GET_ERROR_TYPE,
1050 .instruction = READ_REGISTER,
1051 .flags = FLAG_IGNORE,
1052 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inj_cap),
1053 .value = 0,
1054 .mask = 0xFFFFFFFF
1055 },
1056 [4] = {
1057 .action = END_INJECT_OP,
1058 .instruction = WRITE_REGISTER_VALUE,
1059 .flags = FLAG_PRESERVE,
1060 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
1061 .value = 0,
1062 .mask = 0xFFFFFFFF
1063
1064 },
1065 [5] = {
1066 .action = EXECUTE_INJECT_OP,
1067 .instruction = WRITE_REGISTER_VALUE,
1068 .flags = FLAG_PRESERVE,
1069 .reg = EINJ_REG_IO(),
1070 .value = 0x9a,
1071 .mask = 0xFFFF,
1072 },
1073 [6] = {
1074 .action = CHECK_BUSY_STATUS,
1075 .instruction = READ_REGISTER_VALUE,
1076 .flags = FLAG_IGNORE,
1077 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_status),
1078 .value = 1,
1079 .mask = 1,
1080 },
1081 [7] = {
1082 .action = GET_CMD_STATUS,
1083 .instruction = READ_REGISTER,
1084 .flags = FLAG_PRESERVE,
1085 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->cmd_sts),
1086 .value = 0,
1087 .mask = 0x1fe,
1088 },
1089 [8] = {
1090 .action = SET_ERROR_TYPE_WITH_ADDRESS,
1091 .instruction = WRITE_REGISTER,
1092 .flags = FLAG_PRESERVE,
1093 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->setaddrtable),
1094 .value = 1,
1095 .mask = 0xffffffff
1096 }
1097 };
1098
1099 einj_smi->err_inj_cap = ACPI_EINJ_DEFAULT_CAP;
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001100 einj_smi->trigger_action_table = (u64)(uintptr_t)tat;
Rocky Phaguraeff07132021-01-10 15:42:50 -08001101
1102 for (i = 0; i < ACTION_COUNT; i++)
1103 printk(BIOS_DEBUG, "default_actions[%d].reg.addr is %llx\n", i,
1104 default_actions[i].reg.addr);
1105
Rocky Phagurab46a9e52021-05-21 13:34:03 -07001106 memset((void *)einj, 0, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -08001107
1108 /* Fill out header fields. */
1109 memcpy(header->signature, "EINJ", 4);
1110 memcpy(header->oem_id, OEM_ID, 6);
1111 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1112 memcpy(header->asl_compiler_id, ASLC, 4);
1113
1114 header->asl_compiler_revision = asl_revision;
1115 header->length = sizeof(acpi_einj_t);
1116 header->revision = 1;
1117 inj_header->einj_header_size = sizeof(acpi_injection_header_t);
1118 inj_header->entry_count = ACTION_COUNT;
1119
1120 printk(BIOS_DEBUG, "%s einj->action_table = %p\n",
1121 __func__, einj->action_table);
1122 memcpy((void *)einj->action_table, (void *)default_actions, sizeof(einj->action_table));
Rocky Phagurab46a9e52021-05-21 13:34:03 -07001123 header->checksum = acpi_checksum((void *)einj, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -08001124}
1125
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001126void acpi_create_vfct(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301127 acpi_vfct_t *vfct,
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001128 unsigned long (*acpi_fill_vfct)(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301129 acpi_vfct_t *vfct_struct, unsigned long current))
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001130{
1131 acpi_header_t *header = &(vfct->header);
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301132 unsigned long current = (unsigned long)vfct + sizeof(acpi_vfct_t);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001133
Himanshu Sahdev7f1da072019-10-21 15:27:19 +05301134 memset((void *)vfct, 0, sizeof(acpi_vfct_t));
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001135
John Zhao2ba303e2019-05-28 16:48:14 -07001136 if (!header)
1137 return;
1138
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001139 /* Fill out header fields. */
1140 memcpy(header->signature, "VFCT", 4);
1141 memcpy(header->oem_id, OEM_ID, 6);
1142 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1143 memcpy(header->asl_compiler_id, ASLC, 4);
1144
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001145 header->asl_compiler_revision = asl_revision;
Marc Jones93a51762018-08-22 18:57:24 -06001146 header->revision = get_acpi_table_revision(VFCT);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001147
1148 current = acpi_fill_vfct(device, vfct, current);
1149
Kyösti Mälkkifb493792019-06-30 06:29:52 +03001150 /* If no BIOS image, return with header->length == 0. */
1151 if (!vfct->VBIOSImageOffset)
1152 return;
1153
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +02001154 /* (Re)calculate length and checksum. */
1155 header->length = current - (unsigned long)vfct;
1156 header->checksum = acpi_checksum((void *)vfct, header->length);
1157}
1158
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001159void acpi_create_ipmi(const struct device *device,
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001160 struct acpi_spmi *spmi,
1161 const u16 ipmi_revision,
1162 const acpi_addr_t *addr,
1163 const enum acpi_ipmi_interface_type type,
1164 const s8 gpe_interrupt,
1165 const u32 apic_interrupt,
1166 const u32 uid)
1167{
1168 acpi_header_t *header = &(spmi->header);
1169 memset((void *)spmi, 0, sizeof(struct acpi_spmi));
1170
1171 /* Fill out header fields. */
1172 memcpy(header->signature, "SPMI", 4);
1173 memcpy(header->oem_id, OEM_ID, 6);
1174 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1175 memcpy(header->asl_compiler_id, ASLC, 4);
1176
1177 header->asl_compiler_revision = asl_revision;
1178 header->length = sizeof(struct acpi_spmi);
1179 header->revision = get_acpi_table_revision(SPMI);
1180
1181 spmi->reserved = 1;
1182
1183 if (device->path.type == DEVICE_PATH_PCI) {
1184 spmi->pci_device_flag = ACPI_IPMI_PCI_DEVICE_FLAG;
1185 spmi->pci_bus = device->bus->secondary;
1186 spmi->pci_device = device->path.pci.devfn >> 3;
1187 spmi->pci_function = device->path.pci.devfn & 0x7;
1188 } else if (type != IPMI_INTERFACE_SSIF) {
1189 memcpy(spmi->uid, &uid, sizeof(spmi->uid));
1190 }
1191
1192 spmi->base_address = *addr;
1193 spmi->specification_revision = ipmi_revision;
1194
1195 spmi->interface_type = type;
1196
1197 if (gpe_interrupt >= 0 && gpe_interrupt < 32) {
1198 spmi->gpe = gpe_interrupt;
1199 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_SCI;
1200 }
1201 if (apic_interrupt > 0) {
1202 spmi->global_system_interrupt = apic_interrupt;
1203 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_APIC;
1204 }
1205
1206 /* Calculate checksum. */
1207 header->checksum = acpi_checksum((void *)spmi, header->length);
1208}
1209
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001210void acpi_create_ivrs(acpi_ivrs_t *ivrs,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001211 unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t *ivrs_struct,
1212 unsigned long current))
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001213{
1214 acpi_header_t *header = &(ivrs->header);
1215 unsigned long current = (unsigned long)ivrs + sizeof(acpi_ivrs_t);
1216
1217 memset((void *)ivrs, 0, sizeof(acpi_ivrs_t));
1218
John Zhao2ba303e2019-05-28 16:48:14 -07001219 if (!header)
1220 return;
1221
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001222 /* Fill out header fields. */
1223 memcpy(header->signature, "IVRS", 4);
1224 memcpy(header->oem_id, OEM_ID, 6);
1225 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1226 memcpy(header->asl_compiler_id, ASLC, 4);
1227
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001228 header->asl_compiler_revision = asl_revision;
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001229 header->length = sizeof(acpi_ivrs_t);
Marc Jones93a51762018-08-22 18:57:24 -06001230 header->revision = get_acpi_table_revision(IVRS);
Timothy Pearsonff8ccf02015-08-11 17:48:32 -05001231
1232 current = acpi_fill_ivrs(ivrs, current);
1233
1234 /* (Re)calculate length and checksum. */
1235 header->length = current - (unsigned long)ivrs;
1236 header->checksum = acpi_checksum((void *)ivrs, header->length);
1237}
1238
Jason Glenesk61624b22020-11-02 20:06:23 -08001239void acpi_create_crat(struct acpi_crat_header *crat,
1240 unsigned long (*acpi_fill_crat)(struct acpi_crat_header *crat_struct,
1241 unsigned long current))
1242{
1243 acpi_header_t *header = &(crat->header);
1244 unsigned long current = (unsigned long)crat + sizeof(struct acpi_crat_header);
1245
1246 memset((void *)crat, 0, sizeof(struct acpi_crat_header));
1247
1248 if (!header)
1249 return;
1250
1251 /* Fill out header fields. */
1252 memcpy(header->signature, "CRAT", 4);
1253 memcpy(header->oem_id, OEM_ID, 6);
1254 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1255 memcpy(header->asl_compiler_id, ASLC, 4);
1256
1257 header->asl_compiler_revision = asl_revision;
1258 header->length = sizeof(struct acpi_crat_header);
1259 header->revision = get_acpi_table_revision(CRAT);
1260
1261 current = acpi_fill_crat(crat, current);
1262
1263 /* (Re)calculate length and checksum. */
1264 header->length = current - (unsigned long)crat;
1265 header->checksum = acpi_checksum((void *)crat, header->length);
1266}
1267
Furquan Shaikh0f007d82020-04-24 06:41:18 -07001268unsigned long acpi_write_hpet(const struct device *device, unsigned long current,
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001269 acpi_rsdp_t *rsdp)
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001270{
1271 acpi_hpet_t *hpet;
1272
1273 /*
1274 * We explicitly add these tables later on:
1275 */
1276 printk(BIOS_DEBUG, "ACPI: * HPET\n");
1277
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001278 hpet = (acpi_hpet_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001279 current += sizeof(acpi_hpet_t);
Felix Heldc4697122019-06-20 13:50:17 +02001280 current = ALIGN_UP(current, 16);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001281 acpi_create_hpet(hpet);
1282 acpi_add_table(rsdp, hpet);
1283
1284 return current;
1285}
1286
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001287void acpi_create_dbg2(acpi_dbg2_header_t *dbg2,
1288 int port_type, int port_subtype,
1289 acpi_addr_t *address, uint32_t address_size,
1290 const char *device_path)
1291{
1292 uintptr_t current;
1293 acpi_dbg2_device_t *device;
1294 uint32_t *dbg2_addr_size;
1295 acpi_header_t *header;
1296 size_t path_len;
1297 const char *path;
1298 char *namespace;
1299
1300 /* Fill out header fields. */
1301 current = (uintptr_t)dbg2;
1302 memset(dbg2, 0, sizeof(acpi_dbg2_header_t));
1303 header = &(dbg2->header);
John Zhao2ba303e2019-05-28 16:48:14 -07001304
1305 if (!header)
1306 return;
1307
Marc Jones93a51762018-08-22 18:57:24 -06001308 header->revision = get_acpi_table_revision(DBG2);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001309 memcpy(header->signature, "DBG2", 4);
1310 memcpy(header->oem_id, OEM_ID, 6);
1311 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1312 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001313 header->asl_compiler_revision = asl_revision;
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001314
1315 /* One debug device defined */
1316 dbg2->devices_offset = sizeof(acpi_dbg2_header_t);
1317 dbg2->devices_count = 1;
1318 current += sizeof(acpi_dbg2_header_t);
1319
1320 /* Device comes after the header */
1321 device = (acpi_dbg2_device_t *)current;
1322 memset(device, 0, sizeof(acpi_dbg2_device_t));
1323 current += sizeof(acpi_dbg2_device_t);
1324
1325 device->revision = 0;
1326 device->address_count = 1;
1327 device->port_type = port_type;
1328 device->port_subtype = port_subtype;
1329
1330 /* Base Address comes after device structure */
1331 memcpy((void *)current, address, sizeof(acpi_addr_t));
1332 device->base_address_offset = current - (uintptr_t)device;
1333 current += sizeof(acpi_addr_t);
1334
1335 /* Address Size comes after address structure */
1336 dbg2_addr_size = (uint32_t *)current;
1337 device->address_size_offset = current - (uintptr_t)device;
1338 *dbg2_addr_size = address_size;
1339 current += sizeof(uint32_t);
1340
1341 /* Namespace string comes last, use '.' if not provided */
1342 path = device_path ? : ".";
1343 /* Namespace string length includes NULL terminator */
1344 path_len = strlen(path) + 1;
1345 namespace = (char *)current;
1346 device->namespace_string_length = path_len;
1347 device->namespace_string_offset = current - (uintptr_t)device;
1348 strncpy(namespace, path, path_len);
1349 current += path_len;
1350
1351 /* Update structure lengths and checksum */
1352 device->length = current - (uintptr_t)device;
1353 header->length = current - (uintptr_t)dbg2;
1354 header->checksum = acpi_checksum((uint8_t *)dbg2, header->length);
1355}
1356
1357unsigned long acpi_write_dbg2_pci_uart(acpi_rsdp_t *rsdp, unsigned long current,
Aamir Bohrae825d3f2019-07-30 10:11:41 +05301358 const struct device *dev, uint8_t access_size)
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001359{
1360 acpi_dbg2_header_t *dbg2 = (acpi_dbg2_header_t *)current;
1361 struct resource *res;
1362 acpi_addr_t address;
1363
1364 if (!dev) {
Wim Vervoorn6cd52432020-02-03 14:41:46 +01001365 printk(BIOS_DEBUG, "%s: Device not found\n", __func__);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001366 return current;
1367 }
Mario Scheithauerf1eb0ea2017-11-21 13:52:53 +01001368 if (!dev->enabled) {
1369 printk(BIOS_INFO, "%s: Device not enabled\n", __func__);
1370 return current;
1371 }
Angel Pons32d09be2021-11-03 13:27:45 +01001372 res = probe_resource(dev, PCI_BASE_ADDRESS_0);
Duncan Lauriee4a36c72017-11-11 19:33:25 -08001373 if (!res) {
1374 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
1375 __func__, dev_path(dev));
1376 return current;
1377 }
1378
1379 memset(&address, 0, sizeof(address));
1380 if (res->flags & IORESOURCE_IO)
1381 address.space_id = ACPI_ADDRESS_SPACE_IO;
1382 else if (res->flags & IORESOURCE_MEM)
1383 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
1384 else {
1385 printk(BIOS_ERR, "%s: Unknown address space type\n", __func__);
1386 return current;
1387 }
1388
1389 address.addrl = (uint32_t)res->base;
1390 address.addrh = (uint32_t)((res->base >> 32) & 0xffffffff);
1391 address.access_size = access_size;
1392
1393 acpi_create_dbg2(dbg2,
1394 ACPI_DBG2_PORT_SERIAL,
1395 ACPI_DBG2_PORT_SERIAL_16550,
1396 &address, res->size,
1397 acpi_device_path(dev));
1398
1399 if (dbg2->header.length) {
1400 current += dbg2->header.length;
1401 current = acpi_align_current(current);
1402 acpi_add_table(rsdp, dbg2);
1403 }
1404
1405 return current;
1406}
1407
Stefan Reinauer777224c2005-01-19 14:06:41 +00001408void acpi_create_facs(acpi_facs_t *facs)
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001409{
Uwe Hermann622824c2010-11-19 15:14:42 +00001410 memset((void *)facs, 0, sizeof(acpi_facs_t));
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001411
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001412 memcpy(facs->signature, "FACS", 4);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001413 facs->length = sizeof(acpi_facs_t);
1414 facs->hardware_signature = 0;
1415 facs->firmware_waking_vector = 0;
1416 facs->global_lock = 0;
1417 facs->flags = 0;
1418 facs->x_firmware_waking_vector_l = 0;
1419 facs->x_firmware_waking_vector_h = 0;
Marc Jones93a51762018-08-22 18:57:24 -06001420 facs->version = get_acpi_table_revision(FACS);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +00001421}
Stefan Reinauer777224c2005-01-19 14:06:41 +00001422
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001423static void acpi_write_rsdt(acpi_rsdt_t *rsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001424{
Uwe Hermann622824c2010-11-19 15:14:42 +00001425 acpi_header_t *header = &(rsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001426
John Zhao2ba303e2019-05-28 16:48:14 -07001427 if (!header)
1428 return;
1429
Uwe Hermann622824c2010-11-19 15:14:42 +00001430 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001431 memcpy(header->signature, "RSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001432 memcpy(header->oem_id, oem_id, 6);
1433 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauer688b3852004-01-28 16:56:14 +00001434 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001435
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001436 header->asl_compiler_revision = asl_revision;
Stefan Reinauer688b3852004-01-28 16:56:14 +00001437 header->length = sizeof(acpi_rsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001438 header->revision = get_acpi_table_revision(RSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001439
Uwe Hermann622824c2010-11-19 15:14:42 +00001440 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauer688b3852004-01-28 16:56:14 +00001441
Uwe Hermann622824c2010-11-19 15:14:42 +00001442 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001443 header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001444}
1445
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001446static void acpi_write_xsdt(acpi_xsdt_t *xsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +00001447{
Uwe Hermann622824c2010-11-19 15:14:42 +00001448 acpi_header_t *header = &(xsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001449
John Zhao2ba303e2019-05-28 16:48:14 -07001450 if (!header)
1451 return;
1452
Uwe Hermann622824c2010-11-19 15:14:42 +00001453 /* Fill out header fields. */
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001454 memcpy(header->signature, "XSDT", 4);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001455 memcpy(header->oem_id, oem_id, 6);
1456 memcpy(header->oem_table_id, oem_table_id, 8);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001457 memcpy(header->asl_compiler_id, ASLC, 4);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001458
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001459 header->asl_compiler_revision = asl_revision;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001460 header->length = sizeof(acpi_xsdt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001461 header->revision = get_acpi_table_revision(XSDT);
Stefan Reinauer14e22772010-04-27 06:56:47 +00001462
Uwe Hermann622824c2010-11-19 15:14:42 +00001463 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001464
Uwe Hermann622824c2010-11-19 15:14:42 +00001465 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001466 header->checksum = acpi_checksum((void *)xsdt, sizeof(acpi_xsdt_t));
1467}
1468
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001469static void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt,
1470 acpi_xsdt_t *xsdt, char *oem_id)
Stefan Reinauer688b3852004-01-28 16:56:14 +00001471{
Stefan Reinauerd18faac2009-11-05 18:06:43 +00001472 memset(rsdp, 0, sizeof(acpi_rsdp_t));
Uwe Hermann622824c2010-11-19 15:14:42 +00001473
Stefan Reinauer688b3852004-01-28 16:56:14 +00001474 memcpy(rsdp->signature, RSDP_SIG, 8);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001475 memcpy(rsdp->oem_id, oem_id, 6);
Uwe Hermann622824c2010-11-19 15:14:42 +00001476
1477 rsdp->length = sizeof(acpi_rsdp_t);
Stefan Reinauerdefee172015-06-18 01:11:19 -07001478 rsdp->rsdt_address = (uintptr_t)rsdt;
Uwe Hermann622824c2010-11-19 15:14:42 +00001479
1480 /*
1481 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2.
1482 *
1483 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
1484 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
1485 * revision 0).
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001486 */
1487 if (xsdt == NULL) {
Uwe Hermann622824c2010-11-19 15:14:42 +00001488 rsdp->revision = 0;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001489 } else {
Stefan Reinauerdefee172015-06-18 01:11:19 -07001490 rsdp->xsdt_address = (u64)(uintptr_t)xsdt;
Marc Jones93a51762018-08-22 18:57:24 -06001491 rsdp->revision = get_acpi_table_revision(RSDP);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +00001492 }
Uwe Hermann622824c2010-11-19 15:14:42 +00001493
1494 /* Calculate checksums. */
1495 rsdp->checksum = acpi_checksum((void *)rsdp, 20);
1496 rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +00001497}
1498
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001499unsigned long acpi_create_hest_error_source(acpi_hest_t *hest,
1500 acpi_hest_esd_t *esd, u16 type, void *data, u16 data_len)
zbaocaf494c82012-04-13 13:57:14 +08001501{
1502 acpi_header_t *header = &(hest->header);
1503 acpi_hest_hen_t *hen;
1504 void *pos;
1505 u16 len;
1506
1507 pos = esd;
1508 memset(pos, 0, sizeof(acpi_hest_esd_t));
1509 len = 0;
1510 esd->type = type; /* MCE */
1511 esd->source_id = hest->error_source_count;
1512 esd->flags = 0; /* FIRMWARE_FIRST */
1513 esd->enabled = 1;
1514 esd->prealloc_erecords = 1;
1515 esd->max_section_per_record = 0x1;
1516
1517 len += sizeof(acpi_hest_esd_t);
1518 pos = esd + 1;
1519
1520 switch (type) {
1521 case 0: /* MCE */
1522 break;
1523 case 1: /* CMC */
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001524 hen = (acpi_hest_hen_t *)(pos);
zbaocaf494c82012-04-13 13:57:14 +08001525 memset(pos, 0, sizeof(acpi_hest_hen_t));
1526 hen->type = 3; /* SCI? */
1527 hen->length = sizeof(acpi_hest_hen_t);
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001528 hen->conf_we = 0; /* Configuration Write Enable. */
zbaocaf494c82012-04-13 13:57:14 +08001529 hen->poll_interval = 0;
1530 hen->vector = 0;
1531 hen->sw2poll_threshold_val = 0;
1532 hen->sw2poll_threshold_win = 0;
1533 hen->error_threshold_val = 0;
1534 hen->error_threshold_win = 0;
1535 len += sizeof(acpi_hest_hen_t);
1536 pos = hen + 1;
1537 break;
1538 case 2: /* NMI */
1539 case 6: /* AER Root Port */
1540 case 7: /* AER Endpoint */
1541 case 8: /* AER Bridge */
1542 case 9: /* Generic Hardware Error Source. */
1543 /* TODO: */
1544 break;
1545 default:
1546 printk(BIOS_DEBUG, "Invalid type of Error Source.");
1547 break;
1548 }
Lee Leahy024b13d2017-03-16 13:41:11 -07001549 hest->error_source_count++;
zbaocaf494c82012-04-13 13:57:14 +08001550
1551 memcpy(pos, data, data_len);
1552 len += data_len;
John Zhao2ba303e2019-05-28 16:48:14 -07001553 if (header)
1554 header->length += len;
zbaocaf494c82012-04-13 13:57:14 +08001555
1556 return len;
1557}
1558
1559/* ACPI 4.0 */
Vladimir Serbinenko807127f2014-11-09 13:36:18 +01001560void acpi_write_hest(acpi_hest_t *hest,
1561 unsigned long (*acpi_fill_hest)(acpi_hest_t *hest))
zbaocaf494c82012-04-13 13:57:14 +08001562{
1563 acpi_header_t *header = &(hest->header);
1564
1565 memset(hest, 0, sizeof(acpi_hest_t));
1566
John Zhao2ba303e2019-05-28 16:48:14 -07001567 if (!header)
1568 return;
1569
zbaocaf494c82012-04-13 13:57:14 +08001570 memcpy(header->signature, "HEST", 4);
1571 memcpy(header->oem_id, OEM_ID, 6);
1572 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1573 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001574 header->asl_compiler_revision = asl_revision;
zbaocaf494c82012-04-13 13:57:14 +08001575 header->length += sizeof(acpi_hest_t);
Marc Jones93a51762018-08-22 18:57:24 -06001576 header->revision = get_acpi_table_revision(HEST);
zbaocaf494c82012-04-13 13:57:14 +08001577
1578 acpi_fill_hest(hest);
1579
1580 /* Calculate checksums. */
1581 header->checksum = acpi_checksum((void *)hest, header->length);
1582}
1583
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001584/* ACPI 3.0b */
1585void acpi_write_bert(acpi_bert_t *bert, uintptr_t region, size_t length)
1586{
1587 acpi_header_t *header = &(bert->header);
1588
1589 memset(bert, 0, sizeof(acpi_bert_t));
1590
John Zhao2ba303e2019-05-28 16:48:14 -07001591 if (!header)
1592 return;
1593
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001594 memcpy(header->signature, "BERT", 4);
1595 memcpy(header->oem_id, OEM_ID, 6);
1596 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1597 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUASf8f2e8c2019-02-25 15:42:07 +01001598 header->asl_compiler_revision = asl_revision;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001599 header->length += sizeof(acpi_bert_t);
1600 header->revision = get_acpi_table_revision(BERT);
1601
1602 bert->error_region = region;
1603 bert->region_length = length;
1604
1605 /* Calculate checksums. */
1606 header->checksum = acpi_checksum((void *)bert, header->length);
1607}
1608
Angel Pons79572e42020-07-13 00:17:43 +02001609__weak void arch_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001610__weak void soc_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001611__weak void mainboard_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001612
Lee Leahy024b13d2017-03-16 13:41:11 -07001613void acpi_create_fadt(acpi_fadt_t *fadt, acpi_facs_t *facs, void *dsdt)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001614{
1615 acpi_header_t *header = &(fadt->header);
1616
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001617 memset((void *)fadt, 0, sizeof(acpi_fadt_t));
John Zhao2ba303e2019-05-28 16:48:14 -07001618
1619 if (!header)
1620 return;
1621
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001622 memcpy(header->signature, "FACP", 4);
1623 header->length = sizeof(acpi_fadt_t);
Marc Jones93a51762018-08-22 18:57:24 -06001624 header->revision = get_acpi_table_revision(FADT);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001625 memcpy(header->oem_id, OEM_ID, 6);
1626 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1627 memcpy(header->asl_compiler_id, ASLC, 4);
Elyes HAOUAS26071aa2019-02-15 08:21:33 +01001628 header->asl_compiler_revision = asl_revision;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001629
Elyes Haouas532e0432022-02-21 18:13:58 +01001630 fadt->FADT_MinorVersion = get_acpi_fadt_minor_version();
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001631 fadt->firmware_ctrl = (unsigned long)facs;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001632 fadt->x_firmware_ctl_l = (unsigned long)facs;
1633 fadt->x_firmware_ctl_h = 0;
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001634
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001635 fadt->dsdt = (unsigned long)dsdt;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001636 fadt->x_dsdt_l = (unsigned long)dsdt;
1637 fadt->x_dsdt_h = 0;
1638
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001639 /* should be 0 ACPI 3.0 */
1640 fadt->reserved = 0;
1641
Kyösti Mälkkie0d38682020-06-07 12:01:58 +03001642 fadt->preferred_pm_profile = acpi_get_preferred_pm_profile();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001643
Nico Huberd5811372021-07-12 18:11:58 +02001644 if (CONFIG(USE_PC_CMOS_ALTCENTURY))
1645 fadt->century = RTC_CLK_ALTCENTURY;
1646
Angel Pons79572e42020-07-13 00:17:43 +02001647 arch_fill_fadt(fadt);
1648
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +02001649 acpi_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001650
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001651 soc_fill_fadt(fadt);
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001652 mainboard_fill_fadt(fadt);
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001653
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001654 header->checksum =
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001655 acpi_checksum((void *)fadt, header->length);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001656}
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001657
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001658void acpi_create_lpit(acpi_lpit_t *lpit)
1659{
1660 acpi_header_t *header = &(lpit->header);
1661 unsigned long current = (unsigned long)lpit + sizeof(acpi_lpit_t);
1662
1663 memset((void *)lpit, 0, sizeof(acpi_lpit_t));
1664
1665 if (!header)
1666 return;
1667
1668 /* Fill out header fields. */
1669 memcpy(header->signature, "LPIT", 4);
1670 memcpy(header->oem_id, OEM_ID, 6);
1671 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
1672 memcpy(header->asl_compiler_id, ASLC, 4);
1673
1674 header->asl_compiler_revision = asl_revision;
1675 header->revision = get_acpi_table_revision(LPIT);
1676 header->oem_revision = 42;
1677 header->length = sizeof(acpi_lpit_t);
1678
1679 current = acpi_fill_lpit(current);
1680
1681 /* (Re)calculate length and checksum. */
1682 header->length = current - (unsigned long)lpit;
1683 header->checksum = acpi_checksum((void *)lpit, header->length);
1684}
1685
1686unsigned long acpi_create_lpi_desc_ncst(acpi_lpi_desc_ncst_t *lpi_desc, uint16_t uid)
1687{
1688 memset(lpi_desc, 0, sizeof(acpi_lpi_desc_ncst_t));
1689 lpi_desc->header.length = sizeof(acpi_lpi_desc_ncst_t);
1690 lpi_desc->header.type = ACPI_LPI_DESC_TYPE_NATIVE_CSTATE;
1691 lpi_desc->header.uid = uid;
1692
1693 return lpi_desc->header.length;
1694}
1695
Aaron Durbin64031672018-04-21 14:45:32 -06001696unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001697{
1698 return 0;
1699}
1700
Raul E Rangel6b446b92021-11-19 11:38:35 -07001701void preload_acpi_dsdt(void)
1702{
1703 const char *file = CONFIG_CBFS_PREFIX "/dsdt.aml";
1704
1705 if (!CONFIG(CBFS_PRELOAD))
1706 return;
1707
1708 printk(BIOS_DEBUG, "Preloading %s\n", file);
1709 cbfs_preload(file);
1710}
1711
Arthur Heymans2e7e2d92022-03-03 22:28:27 +01001712static uintptr_t coreboot_rsdp;
1713
1714uintptr_t get_coreboot_rsdp(void)
1715{
1716 return coreboot_rsdp;
1717}
1718
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001719unsigned long write_acpi_tables(unsigned long start)
1720{
1721 unsigned long current;
1722 acpi_rsdp_t *rsdp;
1723 acpi_rsdt_t *rsdt;
1724 acpi_xsdt_t *xsdt;
1725 acpi_fadt_t *fadt;
1726 acpi_facs_t *facs;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001727 acpi_header_t *slic_file, *slic;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001728 acpi_header_t *ssdt;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001729 acpi_header_t *dsdt_file, *dsdt;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001730 acpi_mcfg_t *mcfg;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001731 acpi_tcpa_t *tcpa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001732 acpi_tpm2_t *tpm2;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001733 acpi_madt_t *madt;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001734 acpi_lpit_t *lpit;
Francois Toguo522e0db2021-01-21 09:55:19 -08001735 acpi_bert_t *bert;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +11001736 struct device *dev;
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001737 unsigned long fw;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001738 size_t slic_size, dsdt_size;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001739 char oem_id[6], oem_table_id[8];
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001740
1741 current = start;
1742
1743 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -06001744 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001745
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001746 /* Special case for qemu */
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001747 fw = fw_cfg_acpi_tables(current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001748 if (fw) {
1749 rsdp = NULL;
1750 /* Find RSDP. */
1751 for (void *p = (void *)current; p < (void *)fw; p += 16) {
1752 if (valid_rsdp((acpi_rsdp_t *)p)) {
1753 rsdp = p;
1754 break;
1755 }
1756 }
1757 if (!rsdp)
1758 return fw;
1759
1760 /* Add BOOT0000 for Linux google firmware driver */
1761 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1762 ssdt = (acpi_header_t *)fw;
1763 current = (unsigned long)ssdt + sizeof(acpi_header_t);
1764
1765 memset((void *)ssdt, 0, sizeof(acpi_header_t));
1766
1767 memcpy(&ssdt->signature, "SSDT", 4);
1768 ssdt->revision = get_acpi_table_revision(SSDT);
1769 memcpy(&ssdt->oem_id, OEM_ID, 6);
1770 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
1771 ssdt->oem_revision = 42;
1772 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
1773 ssdt->asl_compiler_revision = asl_revision;
1774 ssdt->length = sizeof(acpi_header_t);
1775
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001776 acpigen_set_current((char *)current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001777
1778 /* Write object to declare coreboot tables */
1779 acpi_ssdt_write_cbtable();
1780
1781 /* (Re)calculate length and checksum. */
1782 ssdt->length = current - (unsigned long)ssdt;
1783 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
1784
1785 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
1786
1787 acpi_add_table(rsdp, ssdt);
1788
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001789 return fw;
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001790 }
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001791
Julius Werner834b3ec2020-03-04 16:52:08 -08001792 dsdt_file = cbfs_map(CONFIG_CBFS_PREFIX "/dsdt.aml", &dsdt_size);
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001793 if (!dsdt_file) {
1794 printk(BIOS_ERR, "No DSDT file, skipping ACPI tables\n");
1795 return current;
1796 }
1797
1798 if (dsdt_file->length > dsdt_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001799 || dsdt_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001800 || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
1801 printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
1802 return current;
1803 }
1804
Julius Werner834b3ec2020-03-04 16:52:08 -08001805 slic_file = cbfs_map(CONFIG_CBFS_PREFIX "/slic", &slic_size);
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001806 if (slic_file
1807 && (slic_file->length > slic_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001808 || slic_file->length < sizeof(acpi_header_t)
Benjamin Doron2b2dc0c2020-09-12 02:55:57 +00001809 || (memcmp(slic_file->signature, "SLIC", 4) != 0
1810 && memcmp(slic_file->signature, "MSDM", 4) != 0))) {
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001811 slic_file = 0;
1812 }
1813
1814 if (slic_file) {
1815 memcpy(oem_id, slic_file->oem_id, 6);
1816 memcpy(oem_table_id, slic_file->oem_table_id, 8);
1817 } else {
1818 memcpy(oem_id, OEM_ID, 6);
1819 memcpy(oem_table_id, ACPI_TABLE_CREATOR, 8);
1820 }
1821
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001822 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
1823
1824 /* We need at least an RSDP and an RSDT Table */
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001825 rsdp = (acpi_rsdp_t *)current;
Arthur Heymans2e7e2d92022-03-03 22:28:27 +01001826 coreboot_rsdp = (uintptr_t)rsdp;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001827 current += sizeof(acpi_rsdp_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001828 current = acpi_align_current(current);
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001829 rsdt = (acpi_rsdt_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001830 current += sizeof(acpi_rsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001831 current = acpi_align_current(current);
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001832 xsdt = (acpi_xsdt_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001833 current += sizeof(acpi_xsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001834 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001835
1836 /* clear all table memory */
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001837 memset((void *)start, 0, current - start);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001838
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001839 acpi_write_rsdp(rsdp, rsdt, xsdt, oem_id);
1840 acpi_write_rsdt(rsdt, oem_id, oem_table_id);
1841 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001842
1843 printk(BIOS_DEBUG, "ACPI: * FACS\n");
Felix Heldc4697122019-06-20 13:50:17 +02001844 current = ALIGN_UP(current, 64);
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001845 facs = (acpi_facs_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001846 current += sizeof(acpi_facs_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001847 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001848 acpi_create_facs(facs);
1849
1850 printk(BIOS_DEBUG, "ACPI: * DSDT\n");
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001851 dsdt = (acpi_header_t *)current;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001852 memcpy(dsdt, dsdt_file, sizeof(acpi_header_t));
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001853 if (dsdt->length >= sizeof(acpi_header_t)) {
1854 current += sizeof(acpi_header_t);
1855
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001856 acpigen_set_current((char *)current);
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001857
Kyösti Mälkki37eb24b2021-01-11 18:40:37 +02001858 if (CONFIG(ACPI_SOC_NVS))
1859 acpi_fill_gnvs();
Kyösti Mälkki3dc17922021-03-16 19:01:48 +02001860 if (CONFIG(CHROMEOS_NVS))
1861 acpi_fill_cnvs();
Kyösti Mälkki2ab4a962020-06-30 11:41:47 +03001862
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001863 for (dev = all_devices; dev; dev = dev->next)
Nico Huber68680dd2020-03-31 17:34:52 +02001864 if (dev->ops && dev->ops->acpi_inject_dsdt)
1865 dev->ops->acpi_inject_dsdt(dev);
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001866 current = (unsigned long)acpigen_get_current();
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001867 memcpy((char *)current,
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001868 (char *)dsdt_file + sizeof(acpi_header_t),
Vladimir Serbinenko334fd8e2014-10-05 11:10:35 +02001869 dsdt->length - sizeof(acpi_header_t));
1870 current += dsdt->length - sizeof(acpi_header_t);
1871
1872 /* (Re)calculate length and checksum. */
1873 dsdt->length = current - (unsigned long)dsdt;
1874 dsdt->checksum = 0;
1875 dsdt->checksum = acpi_checksum((void *)dsdt, dsdt->length);
1876 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001877
Aaron Durbin07a1b282015-12-10 17:07:38 -06001878 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001879
1880 printk(BIOS_DEBUG, "ACPI: * FADT\n");
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001881 fadt = (acpi_fadt_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001882 current += sizeof(acpi_fadt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001883 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001884
1885 acpi_create_fadt(fadt, facs, dsdt);
1886 acpi_add_table(rsdp, fadt);
1887
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001888 if (slic_file) {
1889 printk(BIOS_DEBUG, "ACPI: * SLIC\n");
1890 slic = (acpi_header_t *)current;
1891 memcpy(slic, slic_file, slic_file->length);
1892 current += slic_file->length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001893 current = acpi_align_current(current);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001894 acpi_add_table(rsdp, slic);
1895 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001896
1897 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
1898 ssdt = (acpi_header_t *)current;
1899 acpi_create_ssdt_generator(ssdt, ACPI_TABLE_CREATOR);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001900 if (ssdt->length > sizeof(acpi_header_t)) {
1901 current += ssdt->length;
1902 acpi_add_table(rsdp, ssdt);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001903 current = acpi_align_current(current);
Vladimir Serbinenko9310df82014-10-10 20:40:41 +02001904 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001905
1906 printk(BIOS_DEBUG, "ACPI: * MCFG\n");
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001907 mcfg = (acpi_mcfg_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001908 acpi_create_mcfg(mcfg);
1909 if (mcfg->header.length > sizeof(acpi_mcfg_t)) {
1910 current += mcfg->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001911 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001912 acpi_add_table(rsdp, mcfg);
1913 }
1914
Julius Wernercd49cce2019-03-05 16:53:33 -08001915 if (CONFIG(TPM1)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001916 printk(BIOS_DEBUG, "ACPI: * TCPA\n");
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001917 tcpa = (acpi_tcpa_t *)current;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001918 acpi_create_tcpa(tcpa);
1919 if (tcpa->header.length >= sizeof(acpi_tcpa_t)) {
1920 current += tcpa->header.length;
1921 current = acpi_align_current(current);
1922 acpi_add_table(rsdp, tcpa);
1923 }
1924 }
1925
Julius Wernercd49cce2019-03-05 16:53:33 -08001926 if (CONFIG(TPM2)) {
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001927 printk(BIOS_DEBUG, "ACPI: * TPM2\n");
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001928 tpm2 = (acpi_tpm2_t *)current;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001929 acpi_create_tpm2(tpm2);
1930 if (tpm2->header.length >= sizeof(acpi_tpm2_t)) {
1931 current += tpm2->header.length;
1932 current = acpi_align_current(current);
1933 acpi_add_table(rsdp, tpm2);
1934 }
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +02001935 }
1936
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001937 if (CONFIG(ACPI_LPIT)) {
1938 printk(BIOS_DEBUG, "ACPI: * LPIT\n");
1939
1940 lpit = (acpi_lpit_t *)current;
1941 acpi_create_lpit(lpit);
1942 if (lpit->header.length >= sizeof(acpi_lpit_t)) {
1943 current += lpit->header.length;
1944 current = acpi_align_current(current);
1945 acpi_add_table(rsdp, lpit);
1946 }
1947 }
1948
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001949 printk(BIOS_DEBUG, "ACPI: * MADT\n");
1950
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001951 madt = (acpi_madt_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001952 acpi_create_madt(madt);
1953 if (madt->header.length > sizeof(acpi_madt_t)) {
Lee Leahy024b13d2017-03-16 13:41:11 -07001954 current += madt->header.length;
1955 acpi_add_table(rsdp, madt);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001956 }
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001957
Aaron Durbin07a1b282015-12-10 17:07:38 -06001958 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001959
Felix Heldfba479262021-05-28 16:11:43 +02001960 if (CONFIG(ACPI_BERT)) {
Francois Toguo522e0db2021-01-21 09:55:19 -08001961 void *region;
1962 size_t size;
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001963 bert = (acpi_bert_t *)current;
Felix Heldfba479262021-05-28 16:11:43 +02001964 if (acpi_soc_get_bert_region(&region, &size) == CB_SUCCESS) {
1965 printk(BIOS_DEBUG, "ACPI: * BERT\n");
1966 acpi_write_bert(bert, (uintptr_t)region, size);
1967 if (bert->header.length >= sizeof(acpi_bert_t)) {
1968 current += bert->header.length;
1969 acpi_add_table(rsdp, bert);
1970 }
1971 current = acpi_align_current(current);
Francois Toguo522e0db2021-01-21 09:55:19 -08001972 }
Francois Toguo522e0db2021-01-21 09:55:19 -08001973 }
1974
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001975 printk(BIOS_DEBUG, "current = %lx\n", current);
1976
1977 for (dev = all_devices; dev; dev = dev->next) {
1978 if (dev->ops && dev->ops->write_acpi_tables) {
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001979 current = dev->ops->write_acpi_tables(dev, current,
1980 rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001981 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001982 }
1983 }
1984
1985 printk(BIOS_INFO, "ACPI: done.\n");
1986 return current;
1987}
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001988
Rudolf Marek33cafe52009-04-13 18:07:02 +00001989static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
1990{
1991 if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0)
1992 return NULL;
1993
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001994 printk(BIOS_DEBUG, "Looking on %p for valid checksum\n", rsdp);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001995
1996 if (acpi_checksum((void *)rsdp, 20) != 0)
1997 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001998 printk(BIOS_DEBUG, "Checksum 1 passed\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001999
2000 if ((rsdp->revision > 1) && (acpi_checksum((void *)rsdp,
2001 rsdp->length) != 0))
2002 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00002003 printk(BIOS_DEBUG, "Checksum 2 passed all OK\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00002004
2005 return rsdp;
2006}
2007
Rudolf Marek33cafe52009-04-13 18:07:02 +00002008void *acpi_find_wakeup_vector(void)
2009{
2010 char *p, *end;
Rudolf Marek33cafe52009-04-13 18:07:02 +00002011 acpi_rsdt_t *rsdt;
2012 acpi_facs_t *facs;
Martin Rothc5f49262012-12-14 19:17:55 -07002013 acpi_fadt_t *fadt = NULL;
Kyösti Mälkki072d436b2016-06-17 08:44:40 +03002014 acpi_rsdp_t *rsdp = NULL;
Uwe Hermann622824c2010-11-19 15:14:42 +00002015 void *wake_vec;
Rudolf Marek33cafe52009-04-13 18:07:02 +00002016 int i;
2017
Kyösti Mälkkib8c7ea02020-11-17 16:41:38 +02002018 if (!acpi_is_wakeup_s3())
Rudolf Marek33cafe52009-04-13 18:07:02 +00002019 return NULL;
2020
Uwe Hermann622824c2010-11-19 15:14:42 +00002021 printk(BIOS_DEBUG, "Trying to find the wakeup vector...\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00002022
Uwe Hermann622824c2010-11-19 15:14:42 +00002023 /* Find RSDP. */
2024 for (p = (char *)0xe0000; p < (char *)0xfffff; p += 16) {
Lee Leahy0b5678f2017-03-16 16:01:40 -07002025 rsdp = valid_rsdp((acpi_rsdp_t *)p);
2026 if (rsdp)
Rudolf Marek33cafe52009-04-13 18:07:02 +00002027 break;
2028 }
2029
Angel Pons98a68ad2018-11-04 12:25:25 +01002030 if (rsdp == NULL) {
2031 printk(BIOS_ALERT,
2032 "No RSDP found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00002033 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01002034 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00002035
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00002036 printk(BIOS_DEBUG, "RSDP found at %p\n", rsdp);
Stefan Reinauer71a30182015-07-30 16:28:13 -07002037 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +00002038
Uwe Hermann622824c2010-11-19 15:14:42 +00002039 end = (char *)rsdt + rsdt->header.length;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00002040 printk(BIOS_DEBUG, "RSDT found at %p ends at %p\n", rsdt, end);
Rudolf Marek33cafe52009-04-13 18:07:02 +00002041
Uwe Hermann622824c2010-11-19 15:14:42 +00002042 for (i = 0; ((char *)&rsdt->entry[i]) < end; i++) {
Stefan Reinauer71a30182015-07-30 16:28:13 -07002043 fadt = (acpi_fadt_t *)(uintptr_t)rsdt->entry[i];
Stefan Reinauercdfe3762009-07-21 22:15:43 +00002044 if (strncmp((char *)fadt, "FACP", 4) == 0)
Rudolf Marek33cafe52009-04-13 18:07:02 +00002045 break;
2046 fadt = NULL;
2047 }
2048
Angel Pons98a68ad2018-11-04 12:25:25 +01002049 if (fadt == NULL) {
2050 printk(BIOS_ALERT,
2051 "No FADT found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00002052 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01002053 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00002054
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00002055 printk(BIOS_DEBUG, "FADT found at %p\n", fadt);
Stefan Reinauer71a30182015-07-30 16:28:13 -07002056 facs = (acpi_facs_t *)(uintptr_t)fadt->firmware_ctrl;
Rudolf Marek33cafe52009-04-13 18:07:02 +00002057
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00002058 if (facs == NULL) {
Angel Pons98a68ad2018-11-04 12:25:25 +01002059 printk(BIOS_ALERT,
2060 "No FACS found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00002061 return NULL;
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00002062 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00002063
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00002064 printk(BIOS_DEBUG, "FACS found at %p\n", facs);
Stefan Reinauer71a30182015-07-30 16:28:13 -07002065 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00002066 printk(BIOS_DEBUG, "OS waking vector is %p\n", wake_vec);
Uwe Hermann622824c2010-11-19 15:14:42 +00002067
Rudolf Marek33cafe52009-04-13 18:07:02 +00002068 return wake_vec;
2069}
2070
Aaron Durbin64031672018-04-21 14:45:32 -06002071__weak int acpi_get_gpe(int gpe)
Duncan Laurie1f6e6812016-09-19 12:04:19 -07002072{
2073 return -1; /* implemented by SOC */
2074}
Marc Jones93a51762018-08-22 18:57:24 -06002075
Elyes Haouas8b950f42022-02-16 12:08:16 +01002076u8 get_acpi_fadt_minor_version(void)
2077{
2078 return ACPI_FADT_MINOR_VERSION_0;
2079}
2080
Marc Jones93a51762018-08-22 18:57:24 -06002081int get_acpi_table_revision(enum acpi_tables table)
2082{
2083 switch (table) {
2084 case FADT:
Elyes Haouas8b950f42022-02-16 12:08:16 +01002085 return ACPI_FADT_REV_ACPI_6;
Elyes HAOUASf288b392018-11-11 15:22:30 +01002086 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 +01002087 return 3;
Marc Jones93a51762018-08-22 18:57:24 -06002088 case MCFG:
2089 return 1;
2090 case TCPA:
2091 return 2;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02002092 case TPM2:
2093 return 4;
Martin Roth0949e732021-10-01 14:28:22 -06002094 case SSDT: /* ACPI 3.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06002095 return 2;
Jonathan Zhanga3311b92022-12-01 17:13:41 -08002096 case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 up to 6.4: 3 */
2097 return 3;
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -07002098 case HMAT: /* ACPI 6.4: 2 */
2099 return 2;
Marc Jones93a51762018-08-22 18:57:24 -06002100 case DMAR:
2101 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06002102 case SLIT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06002103 return 1;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02002104 case SPMI: /* IMPI 2.0 */
2105 return 5;
Marc Jones93a51762018-08-22 18:57:24 -06002106 case HPET: /* Currently 1. Table added in ACPI 2.0. */
2107 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01002108 case VFCT: /* ACPI 2.0/3.0/4.0: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06002109 return 1;
2110 case IVRS:
Jason Glenesk1916f892020-07-24 02:51:30 -07002111 return IVRS_FORMAT_MIXED;
Marc Jones93a51762018-08-22 18:57:24 -06002112 case DBG2:
2113 return 0;
Martin Roth0949e732021-10-01 14:28:22 -06002114 case FACS: /* ACPI 2.0/3.0: 1, ACPI 4.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06002115 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06002116 case RSDT: /* ACPI 1.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06002117 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06002118 case XSDT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06002119 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06002120 case RSDP: /* ACPI 2.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06002121 return 2;
Rocky Phaguraeff07132021-01-10 15:42:50 -08002122 case EINJ:
2123 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06002124 case HEST:
2125 return 1;
2126 case NHLT:
2127 return 5;
Marshall Dawson44705c62018-09-04 13:47:15 -06002128 case BERT:
2129 return 1;
Jonathan Zhanga3311b92022-12-01 17:13:41 -08002130 case CEDT: /* CXL 3.0 section 9.17.1 */
2131 return 1;
Jason Glenesk61624b22020-11-02 20:06:23 -08002132 case CRAT:
2133 return 1;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01002134 case LPIT: /* ACPI 5.1 up to 6.3: 0 */
2135 return 0;
Marc Jones93a51762018-08-22 18:57:24 -06002136 default:
2137 return -1;
2138 }
2139 return -1;
2140}