blob: 39eadc3a7f27d904a072b0f627ca2c5674eac407 [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>
Naresh Solanki6920c6f2023-09-13 12:01:58 +020017#include <acpi/acpi_iort.h>
Furquan Shaikh76cedd22020-05-02 10:24:23 -070018#include <acpi/acpi_ivrs.h>
19#include <acpi/acpigen.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 <console/console.h>
Duncan Laurie11290c42012-10-03 19:07:05 -070024#include <cpu/cpu.h>
Felix Held4a9ed702023-12-05 22:09:14 +010025#include <device/device.h>
Jianjun Wang8565b94a2022-03-02 10:20:26 +080026#include <device/mmio.h>
27#include <device/pci.h>
Sergii Dmytruk47e9e8c2022-11-02 00:50:03 +020028#include <drivers/crb/tpm.h>
Arthur Heymans736d4d22023-06-30 15:37:38 +020029#include <drivers/uart/pl011.h>
Sergii Dmytruk47e9e8c2022-11-02 00:50:03 +020030#include <security/tpm/tss.h>
Jianjun Wang8565b94a2022-03-02 10:20:26 +080031#include <string.h>
Elyes HAOUAScdd2f632021-02-11 19:37:11 +010032#include <types.h>
Elyes HAOUAS26071aa2019-02-15 08:21:33 +010033#include <version.h>
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000034
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +020035static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp);
36
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +000037u8 acpi_checksum(u8 *table, u32 length)
Stefan Reinauer688b3852004-01-28 16:56:14 +000038{
Uwe Hermann622824c2010-11-19 15:14:42 +000039 u8 ret = 0;
Stefan Reinauer688b3852004-01-28 16:56:14 +000040 while (length--) {
41 ret += *table;
42 table++;
43 }
Stefan Reinauera7648c22004-01-29 17:31:34 +000044 return -ret;
Stefan Reinauer688b3852004-01-28 16:56:14 +000045}
46
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000047/**
Uwe Hermann622824c2010-11-19 15:14:42 +000048 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
49 * and checksum.
Stefan Reinauer06feb882004-02-03 16:11:35 +000050 */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000051void acpi_add_table(acpi_rsdp_t *rsdp, void *table)
Stefan Reinauer688b3852004-01-28 16:56:14 +000052{
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000053 int i, entries_num;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000054 acpi_rsdt_t *rsdt;
Arthur Heymansc2830c92023-08-22 12:50:43 +020055 acpi_xsdt_t *xsdt;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +000056
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020057 /* The 32bit RSDT may not be valid if tables live above 4GiB */
Stefan Reinauerdefee172015-06-18 01:11:19 -070058 rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020059 xsdt = (acpi_xsdt_t *)(uintptr_t)rsdp->xsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +000060
Uwe Hermann622824c2010-11-19 15:14:42 +000061 /* This should always be MAX_ACPI_TABLES. */
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020062 entries_num = ARRAY_SIZE(xsdt->entry);
Stefan Reinauer14e22772010-04-27 06:56:47 +000063
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000064 for (i = 0; i < entries_num; i++) {
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020065 if (xsdt->entry[i] == 0)
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000066 break;
Stefan Reinauer688b3852004-01-28 16:56:14 +000067 }
68
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000069 if (i >= entries_num) {
Uwe Hermann622824c2010-11-19 15:14:42 +000070 printk(BIOS_ERR, "ACPI: Error: Could not add ACPI table, "
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +030071 "too many tables.\n");
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000072 return;
73 }
74
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020075 /* Add table to the XSDT. */
76 xsdt->entry[i] = (u64)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000077
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020078 /* Fix XSDT length or the kernel will assume invalid entries. */
79 xsdt->header.length = sizeof(acpi_header_t) + (sizeof(u64) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000080
Uwe Hermann622824c2010-11-19 15:14:42 +000081 /* Re-calculate checksum. */
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020082 xsdt->header.checksum = 0; /* Hope this won't get optimized away */
83 xsdt->header.checksum = acpi_checksum((u8 *)xsdt, xsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000084
Uwe Hermann622824c2010-11-19 15:14:42 +000085 /*
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020086 * And now the same thing for the RSDT. We use the same index as for
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000087 * now we want the XSDT and RSDT to always be in sync in coreboot.
88 */
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020089 if (rsdt && (uintptr_t)table < UINT32_MAX) {
90 /* Add table to the RSDT. */
91 rsdt->entry[i] = (u32)(uintptr_t)table;
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000092
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020093 /* Fix RSDT length. */
94 rsdt->header.length = sizeof(acpi_header_t) + (sizeof(u32) * (i + 1));
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000095
Uwe Hermann622824c2010-11-19 15:14:42 +000096 /* Re-calculate checksum. */
Arthur Heymansd8f2dce2023-06-22 13:42:36 +020097 rsdt->header.checksum = 0;
98 rsdt->header.checksum = acpi_checksum((u8 *)rsdt, rsdt->header.length);
Stefan Reinauerc0ac7e92009-11-10 22:17:15 +000099 }
100
Uwe Hermann622824c2010-11-19 15:14:42 +0000101 printk(BIOS_DEBUG, "ACPI: added table %d/%d, length now %d\n",
Arthur Heymansd8f2dce2023-06-22 13:42:36 +0200102 i + 1, entries_num, xsdt->header.length);
Stefan Reinauer688b3852004-01-28 16:56:14 +0000103}
104
Arthur Heymansadb80072023-06-28 09:56:00 +0200105static enum cb_err acpi_fill_header(acpi_header_t *header, const char name[4],
106 enum acpi_tables table, uint32_t size)
107{
108 if (!header)
109 return CB_ERR;
110
111 /* Fill out header fields. */
112 memcpy(header->signature, name, 4);
113 memcpy(header->oem_id, OEM_ID, 6);
114 memcpy(header->oem_table_id, ACPI_TABLE_CREATOR, 8);
115 memcpy(header->asl_compiler_id, ASLC, 4);
116
117 header->asl_compiler_revision = asl_revision;
118 header->revision = get_acpi_table_revision(table);
119 header->length = size;
120
121 return CB_SUCCESS;
122}
123
Naresh Solanki4d0b1842023-08-25 12:58:11 +0200124static int acpi_create_mcfg_mmconfig(acpi_mcfg_mmconfig_t *mmconfig, u64 base,
Cristian Măgherușan-Stanciuba482812011-07-02 00:57:07 +0300125 u16 seg_nr, u8 start, u8 end)
Stefan Reinauer26d431a2009-01-20 19:17:51 +0000126{
Vladimir Serbinenko60fccdc2014-10-05 11:05:16 +0200127 memset(mmconfig, 0, sizeof(*mmconfig));
Rudolf Mareke6409f22007-11-03 12:50:26 +0000128 mmconfig->base_address = base;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000129 mmconfig->pci_segment_group_number = seg_nr;
130 mmconfig->start_bus_number = start;
131 mmconfig->end_bus_number = end;
Uwe Hermann622824c2010-11-19 15:14:42 +0000132
133 return sizeof(acpi_mcfg_mmconfig_t);
Rudolf Mareke6409f22007-11-03 12:50:26 +0000134}
135
Arthur Heymans01af0f82023-06-27 11:58:04 +0200136static void acpi_create_madt(acpi_header_t *header, void *unused)
Stefan Reinauer06feb882004-02-03 16:11:35 +0000137{
Arthur Heymans01af0f82023-06-27 11:58:04 +0200138 acpi_madt_t *madt = (acpi_madt_t *)header;
Uwe Hermann622824c2010-11-19 15:14:42 +0000139 unsigned long current = (unsigned long)madt + sizeof(acpi_madt_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000140
Arthur Heymansadb80072023-06-28 09:56:00 +0200141 if (acpi_fill_header(header, "APIC", MADT, sizeof(acpi_madt_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700142 return;
143
Arthur Heymanscd46e5f2023-06-22 21:34:16 +0200144 current = acpi_arch_fill_madt(madt, current);
Kyösti Mälkki10bdee12023-04-11 01:00:17 +0300145
146 if (CONFIG(ACPI_CUSTOM_MADT))
Kyösti Mälkkia5fa5342022-11-18 13:23:52 +0200147 current = acpi_fill_madt(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000148
Arthur Heymans01af0f82023-06-27 11:58:04 +0200149 /* (Re)calculate length . */
Uwe Hermann622824c2010-11-19 15:14:42 +0000150 header->length = current - (unsigned long)madt;
Stefan Reinauer06feb882004-02-03 16:11:35 +0000151}
152
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200153static unsigned long acpi_fill_mcfg(unsigned long current)
154{
Felix Held3b5b66d2024-01-11 22:26:18 +0100155 for (int i = 0; i < PCI_SEGMENT_GROUP_COUNT; i++) {
156 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *)current,
157 CONFIG_ECAM_MMCONF_BASE_ADDRESS + i * PCI_PER_SEGMENT_GROUP_ECAM_SIZE,
158 i,
159 0,
160 PCI_BUSES_PER_SEGMENT_GROUP - 1);
161 }
162
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200163 return current;
164}
165
Uwe Hermann622824c2010-11-19 15:14:42 +0000166/* MCFG is defined in the PCI Firmware Specification 3.0. */
Arthur Heymans01af0f82023-06-27 11:58:04 +0200167static void acpi_create_mcfg(acpi_header_t *header, void *unused)
Rudolf Mareke6409f22007-11-03 12:50:26 +0000168{
Arthur Heymans01af0f82023-06-27 11:58:04 +0200169 acpi_mcfg_t *mcfg = (acpi_mcfg_t *)header;
Uwe Hermann622824c2010-11-19 15:14:42 +0000170 unsigned long current = (unsigned long)mcfg + sizeof(acpi_mcfg_t);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000171
Arthur Heymansadb80072023-06-28 09:56:00 +0200172
173 if (acpi_fill_header(header, "MCFG", MCFG, sizeof(acpi_mcfg_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700174 return;
175
Shelley Chen4e9bb332021-10-20 15:43:45 -0700176 if (CONFIG(ECAM_MMCONF_SUPPORT))
Kyösti Mälkkib54388d2021-02-14 15:09:45 +0200177 current = acpi_fill_mcfg(current);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000178
Arthur Heymans01af0f82023-06-27 11:58:04 +0200179 /* (Re)calculate length */
Uwe Hermann622824c2010-11-19 15:14:42 +0000180 header->length = current - (unsigned long)mcfg;
Rudolf Mareke6409f22007-11-03 12:50:26 +0000181}
182
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200183static void *get_tcpa_log(u32 *size)
184{
185 const struct cbmem_entry *ce;
186 const u32 tcpa_default_log_len = 0x10000;
187 void *lasa;
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200188 ce = cbmem_entry_find(CBMEM_ID_TCPA_TCG_LOG);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200189 if (ce) {
190 lasa = cbmem_entry_start(ce);
191 *size = cbmem_entry_size(ce);
192 printk(BIOS_DEBUG, "TCPA log found at %p\n", lasa);
193 return lasa;
194 }
Philipp Deppenwiese791ba972018-07-30 01:15:20 +0200195 lasa = cbmem_add(CBMEM_ID_TCPA_TCG_LOG, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200196 if (!lasa) {
197 printk(BIOS_ERR, "TCPA log creation failed\n");
198 return NULL;
199 }
200
201 printk(BIOS_DEBUG, "TCPA log created at %p\n", lasa);
Lee Leahy024b13d2017-03-16 13:41:11 -0700202 memset(lasa, 0, tcpa_default_log_len);
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200203
204 *size = tcpa_default_log_len;
205 return lasa;
206}
207
Arthur Heymans01af0f82023-06-27 11:58:04 +0200208static void acpi_create_tcpa(acpi_header_t *header, void *unused)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200209{
Sergii Dmytruk47e9e8c2022-11-02 00:50:03 +0200210 if (tlcl_get_family() != TPM_1)
Arthur Heymans01af0f82023-06-27 11:58:04 +0200211 return;
212
213 acpi_tcpa_t *tcpa = (acpi_tcpa_t *)header;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200214 u32 tcpa_log_len;
215 void *lasa;
216
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200217 lasa = get_tcpa_log(&tcpa_log_len);
Lee Leahy9c7c6f72017-03-16 11:24:09 -0700218 if (!lasa)
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200219 return;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200220
Arthur Heymansadb80072023-06-28 09:56:00 +0200221 if (acpi_fill_header(header, "TCPA", TCPA, sizeof(acpi_tcpa_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700222 return;
223
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200224 tcpa->platform_class = 0;
225 tcpa->laml = tcpa_log_len;
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100226 tcpa->lasa = (uintptr_t)lasa;
Vladimir Serbinenkof44ac132015-05-20 19:52:01 +0200227}
228
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100229static void *get_tpm2_log(u32 *size)
230{
231 const struct cbmem_entry *ce;
232 const u32 tpm2_default_log_len = 0x10000;
233 void *lasa;
234 ce = cbmem_entry_find(CBMEM_ID_TPM2_TCG_LOG);
235 if (ce) {
236 lasa = cbmem_entry_start(ce);
237 *size = cbmem_entry_size(ce);
238 printk(BIOS_DEBUG, "TPM2 log found at %p\n", lasa);
239 return lasa;
240 }
241 lasa = cbmem_add(CBMEM_ID_TPM2_TCG_LOG, tpm2_default_log_len);
242 if (!lasa) {
243 printk(BIOS_ERR, "TPM2 log creation failed\n");
244 return NULL;
245 }
246
247 printk(BIOS_DEBUG, "TPM2 log created at %p\n", lasa);
248 memset(lasa, 0, tpm2_default_log_len);
249
250 *size = tpm2_default_log_len;
251 return lasa;
252}
253
Arthur Heymans01af0f82023-06-27 11:58:04 +0200254static void acpi_create_tpm2(acpi_header_t *header, void *unused)
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200255{
Sergii Dmytruk47e9e8c2022-11-02 00:50:03 +0200256 if (tlcl_get_family() != TPM_2)
Arthur Heymans01af0f82023-06-27 11:58:04 +0200257 return;
258
259 acpi_tpm2_t *tpm2 = (acpi_tpm2_t *)header;
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100260 u32 tpm2_log_len;
261 void *lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200262
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100263 /*
264 * Some payloads like SeaBIOS depend on log area to use TPM2.
265 * Get the memory size and address of TPM2 log area or initialize it.
266 */
267 lasa = get_tpm2_log(&tpm2_log_len);
268 if (!lasa)
269 tpm2_log_len = 0;
270
Arthur Heymansadb80072023-06-28 09:56:00 +0200271 if (acpi_fill_header(header, "TPM2", TPM2, sizeof(acpi_tpm2_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700272 return;
273
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200274 /* Hard to detect for coreboot. Just set it to 0 */
275 tpm2->platform_class = 0;
Sergii Dmytruk1a903142024-04-12 15:47:04 +0300276 if (CONFIG(CRB_TPM) && crb_tpm_is_active()) {
Christian Walter26e0d4c2019-07-14 15:47:23 +0200277 /* Must be set to 7 for CRB Support */
278 tpm2->control_area = CONFIG_CRB_TPM_BASE_ADDRESS + 0x40;
279 tpm2->start_method = 7;
280 } else {
281 /* Must be set to 0 for FIFO interface support */
282 tpm2->control_area = 0;
283 tpm2->start_method = 6;
284 }
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200285 memset(tpm2->msp, 0, sizeof(tpm2->msp));
286
Michał Żygowski6e8692e2018-11-22 16:57:50 +0100287 /* Fill the log area size and start address fields. */
288 tpm2->laml = tpm2_log_len;
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100289 tpm2->lasa = (uintptr_t)lasa;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +0200290}
291
Duncan Laurie37319032016-05-26 12:47:05 -0700292static void acpi_ssdt_write_cbtable(void)
293{
294 const struct cbmem_entry *cbtable;
295 uintptr_t base;
296 uint32_t size;
297
298 cbtable = cbmem_entry_find(CBMEM_ID_CBTABLE);
299 if (!cbtable)
300 return;
301 base = (uintptr_t)cbmem_entry_start(cbtable);
302 size = cbmem_entry_size(cbtable);
303
304 acpigen_write_device("CTBL");
305 acpigen_write_coreboot_hid(COREBOOT_ACPI_ID_CBTABLE);
306 acpigen_write_name_integer("_UID", 0);
Matt DeVillierce10b6f2022-10-15 11:52:54 -0500307 acpigen_write_STA(ACPI_STATUS_DEVICE_ALL_ON);
Duncan Laurie37319032016-05-26 12:47:05 -0700308 acpigen_write_name("_CRS");
309 acpigen_write_resourcetemplate_header();
Arthur Heymans87837df2023-06-29 21:09:52 +0200310 acpigen_resource_consumer_mmio(base, base + size - 1,
311 MEM_RSRC_FLAG_MEM_READ_ONLY
312 | MEM_RSRC_FLAG_MEM_ATTR_CACHE);
Duncan Laurie37319032016-05-26 12:47:05 -0700313 acpigen_write_resourcetemplate_footer();
314 acpigen_pop_len();
315}
316
Arthur Heymans01af0f82023-06-27 11:58:04 +0200317static void acpi_create_ssdt_generator(acpi_header_t *ssdt, void *unused)
Rudolf Marek293b5f52009-02-01 18:35:15 +0000318{
Uwe Hermann622824c2010-11-19 15:14:42 +0000319 unsigned long current = (unsigned long)ssdt + sizeof(acpi_header_t);
320
Arthur Heymansadb80072023-06-28 09:56:00 +0200321 if (acpi_fill_header(ssdt, "SSDT", SSDT, sizeof(acpi_header_t)) != CB_SUCCESS)
322 return;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000323
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100324 acpigen_set_current((char *)current);
Duncan Laurie37319032016-05-26 12:47:05 -0700325
326 /* Write object to declare coreboot tables */
327 acpi_ssdt_write_cbtable();
328
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200329 {
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +1100330 struct device *dev;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200331 for (dev = all_devices; dev; dev = dev->next)
Karthikeyan Ramasubramaniand1c0f952020-11-02 16:26:52 -0700332 if (dev->enabled && dev->ops && dev->ops->acpi_fill_ssdt)
Nico Huber68680dd2020-03-31 17:34:52 +0200333 dev->ops->acpi_fill_ssdt(dev);
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100334 current = (unsigned long)acpigen_get_current();
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +0200335 }
Rudolf Marek293b5f52009-02-01 18:35:15 +0000336
Uwe Hermann622824c2010-11-19 15:14:42 +0000337 /* (Re)calculate length and checksum. */
Rudolf Marek293b5f52009-02-01 18:35:15 +0000338 ssdt->length = current - (unsigned long)ssdt;
Rudolf Marek293b5f52009-02-01 18:35:15 +0000339}
340
Uwe Hermann622824c2010-11-19 15:14:42 +0000341int 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 +0300342 u32 flags)
Stefan Reinauerf622d592005-11-26 16:56:05 +0000343{
Uwe Hermann622824c2010-11-19 15:14:42 +0000344 mem->type = 1; /* Memory affinity structure */
345 mem->length = sizeof(acpi_srat_mem_t);
346 mem->base_address_low = (basek << 10);
347 mem->base_address_high = (basek >> (32 - 10));
348 mem->length_low = (sizek << 10);
349 mem->length_high = (sizek >> (32 - 10));
350 mem->proximity_domain = node;
Stefan Reinauer14e22772010-04-27 06:56:47 +0000351 mem->flags = flags;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000352
Uwe Hermann622824c2010-11-19 15:14:42 +0000353 return mem->length;
Stefan Reinauerf622d592005-11-26 16:56:05 +0000354}
355
Jonathan Zhang3164b642021-04-21 17:51:31 -0700356int acpi_create_srat_gia_pci(acpi_srat_gia_t *gia, u32 proximity_domain,
Patrick Rudolph344ebf12024-01-31 11:38:38 +0100357 struct device *dev, u32 flags)
Jonathan Zhang3164b642021-04-21 17:51:31 -0700358{
Patrick Rudolph344ebf12024-01-31 11:38:38 +0100359 /* Only handle PCI devices. */
360 if (dev->path.type != DEVICE_PATH_PCI)
361 return 0;
362
Jonathan Zhang3164b642021-04-21 17:51:31 -0700363 gia->type = ACPI_SRAT_STRUCTURE_GIA;
364 gia->length = sizeof(acpi_srat_gia_t);
365 gia->proximity_domain = proximity_domain;
366 gia->dev_handle_type = ACPI_SRAT_GIA_DEV_HANDLE_PCI;
367 /* First two bytes has segment number */
Patrick Rudolph344ebf12024-01-31 11:38:38 +0100368 gia->dev_handle[0] = dev->upstream->segment_group;
369 gia->dev_handle[1] = 0;
370 gia->dev_handle[2] = dev->upstream->secondary; /* Byte 2 has bus number */
Jonathan Zhang3164b642021-04-21 17:51:31 -0700371 /* Byte 3 has bits 7:3 for dev, bits 2:0 for func */
Patrick Rudolph344ebf12024-01-31 11:38:38 +0100372 gia->dev_handle[3] = dev->path.pci.devfn;
Jonathan Zhang3164b642021-04-21 17:51:31 -0700373 gia->flags = flags;
374
375 return gia->length;
376}
377
Uwe Hermann622824c2010-11-19 15:14:42 +0000378/* http://www.microsoft.com/whdc/system/sysinternals/sratdwn.mspx */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200379void acpi_create_srat(acpi_srat_t *srat,
380 unsigned long (*acpi_fill_srat)(unsigned long current))
Stefan Reinauerf622d592005-11-26 16:56:05 +0000381{
Uwe Hermann622824c2010-11-19 15:14:42 +0000382 acpi_header_t *header = &(srat->header);
383 unsigned long current = (unsigned long)srat + sizeof(acpi_srat_t);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000384
Uwe Hermann622824c2010-11-19 15:14:42 +0000385 memset((void *)srat, 0, sizeof(acpi_srat_t));
Stefan Reinauerf622d592005-11-26 16:56:05 +0000386
Arthur Heymansadb80072023-06-28 09:56:00 +0200387 if (acpi_fill_header(header, "SRAT", SRAT, sizeof(acpi_srat_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700388 return;
389
Uwe Hermann622824c2010-11-19 15:14:42 +0000390 srat->resv = 1; /* Spec: Reserved to 1 for backwards compatibility. */
Stefan Reinauerf622d592005-11-26 16:56:05 +0000391
Uwe Hermann622824c2010-11-19 15:14:42 +0000392 current = acpi_fill_srat(current);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000393
Uwe Hermann622824c2010-11-19 15:14:42 +0000394 /* (Re)calculate length and checksum. */
395 header->length = current - (unsigned long)srat;
396 header->checksum = acpi_checksum((void *)srat, header->length);
Stefan Reinauerf622d592005-11-26 16:56:05 +0000397}
398
Jonathan Zhang3dcafa82022-05-11 13:11:20 -0700399int acpi_create_cedt_chbs(acpi_cedt_chbs_t *chbs, u32 uid, u32 cxl_ver, u64 base)
400{
401 memset((void *)chbs, 0, sizeof(acpi_cedt_chbs_t));
402
403 chbs->type = ACPI_CEDT_STRUCTURE_CHBS;
404 chbs->length = sizeof(acpi_cedt_chbs_t);
405 chbs->uid = uid;
406 chbs->cxl_ver = cxl_ver;
407 chbs->base = base;
408
409 /*
410 * CXL spec 2.0 section 9.14.1.2 "CXL CHBS"
411 * CXL 1.1 spec compliant host bridge: 8KB
412 * CXL 2.0 spec compliant host bridge: 64KB
413 */
414 if (cxl_ver == ACPI_CEDT_CHBS_CXL_VER_1_1)
415 chbs->len = 8 * KiB;
416 else if (cxl_ver == ACPI_CEDT_CHBS_CXL_VER_2_0)
417 chbs->len = 64 * KiB;
418 else
419 printk(BIOS_ERR, "ACPI(%s:%s): Incorrect CXL version:%d\n", __FILE__, __func__,
420 cxl_ver);
421
422 return chbs->length;
423}
424
425int acpi_create_cedt_cfmws(acpi_cedt_cfmws_t *cfmws, u64 base_hpa, u64 window_size, u8 eniw,
426 u32 hbig, u16 restriction, u16 qtg_id, const u32 *interleave_target)
427{
428 memset((void *)cfmws, 0, sizeof(acpi_cedt_cfmws_t));
429
430 cfmws->type = ACPI_CEDT_STRUCTURE_CFMWS;
431
432 u8 niw = 0;
433 if (eniw >= 8)
434 printk(BIOS_ERR, "ACPI(%s:%s): Incorrect eniw::%d\n", __FILE__, __func__, eniw);
435 else
436 /* NIW = 2 ** ENIW */
437 niw = 0x1 << eniw;
438 /* 36 + 4 * NIW */
439 cfmws->length = sizeof(acpi_cedt_cfmws_t) + 4 * niw;
440
441 cfmws->base_hpa = base_hpa;
442 cfmws->window_size = window_size;
443 cfmws->eniw = eniw;
444
445 // 0: Standard Modulo Arithmetic. Other values reserved.
446 cfmws->interleave_arithmetic = 0;
447
448 cfmws->hbig = hbig;
449 cfmws->restriction = restriction;
450 cfmws->qtg_id = qtg_id;
451 memcpy(&cfmws->interleave_target, interleave_target, 4 * niw);
452
453 return cfmws->length;
454}
455
456void acpi_create_cedt(acpi_cedt_t *cedt, unsigned long (*acpi_fill_cedt)(unsigned long current))
457{
458 acpi_header_t *header = &(cedt->header);
459 unsigned long current = (unsigned long)cedt + sizeof(acpi_cedt_t);
460
461 memset((void *)cedt, 0, sizeof(acpi_cedt_t));
462
Arthur Heymansadb80072023-06-28 09:56:00 +0200463 if (acpi_fill_header(header, "CEDT", CEDT, sizeof(acpi_cedt_t)) != CB_SUCCESS)
Jonathan Zhang3dcafa82022-05-11 13:11:20 -0700464 return;
465
Jonathan Zhang3dcafa82022-05-11 13:11:20 -0700466 current = acpi_fill_cedt(current);
467
468 /* (Re)calculate length and checksum. */
469 header->length = current - (unsigned long)cedt;
470 header->checksum = acpi_checksum((void *)cedt, header->length);
471}
472
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700473int acpi_create_hmat_mpda(acpi_hmat_mpda_t *mpda, u32 initiator, u32 memory)
474{
475 memset((void *)mpda, 0, sizeof(acpi_hmat_mpda_t));
476
477 mpda->type = 0; /* Memory Proximity Domain Attributes structure */
478 mpda->length = sizeof(acpi_hmat_mpda_t);
479 /*
480 * Proximity Domain for Attached Initiator field is valid.
481 * Bit 1 and bit 2 are reserved since HMAT revision 2.
482 */
483 mpda->flags = (1 << 0);
484 mpda->proximity_domain_initiator = initiator;
485 mpda->proximity_domain_memory = memory;
486
487 return mpda->length;
488}
489
490void acpi_create_hmat(acpi_hmat_t *hmat,
491 unsigned long (*acpi_fill_hmat)(unsigned long current))
492{
493 acpi_header_t *header = &(hmat->header);
494 unsigned long current = (unsigned long)hmat + sizeof(acpi_hmat_t);
495
496 memset((void *)hmat, 0, sizeof(acpi_hmat_t));
497
Arthur Heymansadb80072023-06-28 09:56:00 +0200498 if (acpi_fill_header(header, "HMAT", HMAT, sizeof(acpi_hmat_t)) != CB_SUCCESS)
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700499 return;
500
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -0700501 current = acpi_fill_hmat(current);
502
503 /* (Re)calculate length and checksum. */
504 header->length = current - (unsigned long)hmat;
505 header->checksum = acpi_checksum((void *)hmat, header->length);
506}
507
Uwe Hermann622824c2010-11-19 15:14:42 +0000508/* http://h21007.www2.hp.com/portal/download/files/unprot/Itanium/slit.pdf */
Vladimir Serbinenko5e597572014-10-11 23:45:40 +0200509void acpi_create_slit(acpi_slit_t *slit,
510 unsigned long (*acpi_fill_slit)(unsigned long current))
Yinghai Lud4b278c2006-10-04 20:46:15 +0000511{
Uwe Hermann622824c2010-11-19 15:14:42 +0000512 acpi_header_t *header = &(slit->header);
513 unsigned long current = (unsigned long)slit + sizeof(acpi_slit_t);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000514
Uwe Hermann622824c2010-11-19 15:14:42 +0000515 memset((void *)slit, 0, sizeof(acpi_slit_t));
Yinghai Lud4b278c2006-10-04 20:46:15 +0000516
Arthur Heymansadb80072023-06-28 09:56:00 +0200517 if (acpi_fill_header(header, "SLIT", SLIT, sizeof(acpi_slit_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700518 return;
519
Uwe Hermann622824c2010-11-19 15:14:42 +0000520 current = acpi_fill_slit(current);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000521
Uwe Hermann622824c2010-11-19 15:14:42 +0000522 /* (Re)calculate length and checksum. */
523 header->length = current - (unsigned long)slit;
524 header->checksum = acpi_checksum((void *)slit, header->length);
Yinghai Lud4b278c2006-10-04 20:46:15 +0000525}
526
Rocky Phaguraeff07132021-01-10 15:42:50 -0800527/*
528 * This method adds the ACPI error injection capability. It fills the default information.
529 * HW dependent code (caller) can modify the defaults upon return. If no changes are necessary
530 * and the defaults are acceptable then caller can simply add the table (acpi_add_table).
531 * INPUTS:
532 * einj - ptr to the starting location of EINJ table
533 * actions - number of actions to trigger an error (HW dependent)
534 * addr - address of trigger action table. This should be ACPI reserved memory and it will be
535 * shared between OS and FW.
536 */
537void acpi_create_einj(acpi_einj_t *einj, uintptr_t addr, u8 actions)
538{
539 int i;
540 acpi_header_t *header = &(einj->header);
541 acpi_injection_header_t *inj_header = &(einj->inj_header);
542 acpi_einj_smi_t *einj_smi = (acpi_einj_smi_t *)addr;
543 acpi_einj_trigger_table_t *tat;
544 if (!header)
545 return;
546
547 printk(BIOS_DEBUG, "%s einj_smi = %p\n", __func__, einj_smi);
548 memset(einj_smi, 0, sizeof(acpi_einj_smi_t));
Jonathan Zhangd5d9b282022-11-07 17:30:14 -0800549 tat = (acpi_einj_trigger_table_t *)((uint8_t *)einj_smi + sizeof(acpi_einj_smi_t));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800550 tat->header_size = 16;
551 tat->revision = 0;
552 tat->table_size = sizeof(acpi_einj_trigger_table_t) +
553 sizeof(acpi_einj_action_table_t) * actions - 1;
554 tat->entry_count = actions;
555 printk(BIOS_DEBUG, "%s trigger_action_table = %p\n", __func__, tat);
556
557 for (i = 0; i < actions; i++) {
558 tat->trigger_action[i].action = TRIGGER_ERROR;
559 tat->trigger_action[i].instruction = NO_OP;
560 tat->trigger_action[i].flags = FLAG_IGNORE;
561 tat->trigger_action[i].reg.space_id = ACPI_ADDRESS_SPACE_MEMORY;
562 tat->trigger_action[i].reg.bit_width = 64;
563 tat->trigger_action[i].reg.bit_offset = 0;
564 tat->trigger_action[i].reg.access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
565 tat->trigger_action[i].reg.addr = 0;
566 tat->trigger_action[i].value = 0;
567 tat->trigger_action[i].mask = 0xFFFFFFFF;
568 }
569
570 acpi_einj_action_table_t default_actions[ACTION_COUNT] = {
571 [0] = {
572 .action = BEGIN_INJECT_OP,
573 .instruction = WRITE_REGISTER_VALUE,
574 .flags = FLAG_PRESERVE,
575 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
576 .value = 0,
577 .mask = 0xFFFFFFFF
578 },
579 [1] = {
580 .action = GET_TRIGGER_ACTION_TABLE,
581 .instruction = READ_REGISTER,
582 .flags = FLAG_IGNORE,
583 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->trigger_action_table),
584 .value = 0,
585 .mask = 0xFFFFFFFFFFFFFFFF
586 },
587 [2] = {
588 .action = SET_ERROR_TYPE,
589 .instruction = WRITE_REGISTER,
590 .flags = FLAG_PRESERVE,
591 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inject[0]),
592 .value = 0,
593 .mask = 0xFFFFFFFF
594 },
595 [3] = {
596 .action = GET_ERROR_TYPE,
597 .instruction = READ_REGISTER,
598 .flags = FLAG_IGNORE,
599 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->err_inj_cap),
600 .value = 0,
601 .mask = 0xFFFFFFFF
602 },
603 [4] = {
604 .action = END_INJECT_OP,
605 .instruction = WRITE_REGISTER_VALUE,
606 .flags = FLAG_PRESERVE,
607 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_state),
608 .value = 0,
609 .mask = 0xFFFFFFFF
610
611 },
612 [5] = {
613 .action = EXECUTE_INJECT_OP,
614 .instruction = WRITE_REGISTER_VALUE,
615 .flags = FLAG_PRESERVE,
616 .reg = EINJ_REG_IO(),
617 .value = 0x9a,
618 .mask = 0xFFFF,
619 },
620 [6] = {
621 .action = CHECK_BUSY_STATUS,
622 .instruction = READ_REGISTER_VALUE,
623 .flags = FLAG_IGNORE,
624 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->op_status),
625 .value = 1,
626 .mask = 1,
627 },
628 [7] = {
629 .action = GET_CMD_STATUS,
630 .instruction = READ_REGISTER,
631 .flags = FLAG_PRESERVE,
632 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->cmd_sts),
633 .value = 0,
634 .mask = 0x1fe,
635 },
636 [8] = {
637 .action = SET_ERROR_TYPE_WITH_ADDRESS,
638 .instruction = WRITE_REGISTER,
639 .flags = FLAG_PRESERVE,
640 .reg = EINJ_REG_MEMORY((u64)(uintptr_t)&einj_smi->setaddrtable),
641 .value = 1,
642 .mask = 0xffffffff
643 }
644 };
645
646 einj_smi->err_inj_cap = ACPI_EINJ_DEFAULT_CAP;
Elyes Haouas3141fbad2022-11-18 15:22:32 +0100647 einj_smi->trigger_action_table = (u64)(uintptr_t)tat;
Rocky Phaguraeff07132021-01-10 15:42:50 -0800648
649 for (i = 0; i < ACTION_COUNT; i++)
650 printk(BIOS_DEBUG, "default_actions[%d].reg.addr is %llx\n", i,
651 default_actions[i].reg.addr);
652
Rocky Phagurab46a9e52021-05-21 13:34:03 -0700653 memset((void *)einj, 0, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800654
Arthur Heymansadb80072023-06-28 09:56:00 +0200655 if (acpi_fill_header(header, "EINJ", EINJ, sizeof(acpi_einj_t)) != CB_SUCCESS)
656 return;
Rocky Phaguraeff07132021-01-10 15:42:50 -0800657
Rocky Phaguraeff07132021-01-10 15:42:50 -0800658 inj_header->einj_header_size = sizeof(acpi_injection_header_t);
659 inj_header->entry_count = ACTION_COUNT;
660
661 printk(BIOS_DEBUG, "%s einj->action_table = %p\n",
662 __func__, einj->action_table);
663 memcpy((void *)einj->action_table, (void *)default_actions, sizeof(einj->action_table));
Rocky Phagurab46a9e52021-05-21 13:34:03 -0700664 header->checksum = acpi_checksum((void *)einj, sizeof(*einj));
Rocky Phaguraeff07132021-01-10 15:42:50 -0800665}
666
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700667void acpi_create_vfct(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530668 acpi_vfct_t *vfct,
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700669 unsigned long (*acpi_fill_vfct)(const struct device *device,
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530670 acpi_vfct_t *vfct_struct, unsigned long current))
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200671{
672 acpi_header_t *header = &(vfct->header);
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530673 unsigned long current = (unsigned long)vfct + sizeof(acpi_vfct_t);
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200674
Himanshu Sahdev7f1da072019-10-21 15:27:19 +0530675 memset((void *)vfct, 0, sizeof(acpi_vfct_t));
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200676
Arthur Heymansadb80072023-06-28 09:56:00 +0200677 if (acpi_fill_header(header, "VFCT", VFCT, sizeof(acpi_vfct_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700678 return;
679
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200680 current = acpi_fill_vfct(device, vfct, current);
681
Kyösti Mälkkifb493792019-06-30 06:29:52 +0300682 /* If no BIOS image, return with header->length == 0. */
683 if (!vfct->VBIOSImageOffset)
684 return;
685
Patrick Rudolpha5c2ac62016-03-31 20:04:23 +0200686 /* (Re)calculate length and checksum. */
687 header->length = current - (unsigned long)vfct;
688 header->checksum = acpi_checksum((void *)vfct, header->length);
689}
690
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700691void acpi_create_ipmi(const struct device *device,
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +0200692 struct acpi_spmi *spmi,
693 const u16 ipmi_revision,
694 const acpi_addr_t *addr,
695 const enum acpi_ipmi_interface_type type,
696 const s8 gpe_interrupt,
697 const u32 apic_interrupt,
698 const u32 uid)
699{
700 acpi_header_t *header = &(spmi->header);
701 memset((void *)spmi, 0, sizeof(struct acpi_spmi));
702
Arthur Heymansadb80072023-06-28 09:56:00 +0200703 if (acpi_fill_header(header, "SPMI", SPMI, sizeof(struct acpi_spmi)) != CB_SUCCESS)
704 return;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +0200705
706 spmi->reserved = 1;
707
708 if (device->path.type == DEVICE_PATH_PCI) {
709 spmi->pci_device_flag = ACPI_IPMI_PCI_DEVICE_FLAG;
Arthur Heymans7fcd4d52023-08-24 15:12:19 +0200710 spmi->pci_segment_group = device->upstream->segment_group;
711 spmi->pci_bus = device->upstream->secondary;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +0200712 spmi->pci_device = device->path.pci.devfn >> 3;
713 spmi->pci_function = device->path.pci.devfn & 0x7;
714 } else if (type != IPMI_INTERFACE_SSIF) {
715 memcpy(spmi->uid, &uid, sizeof(spmi->uid));
716 }
717
718 spmi->base_address = *addr;
719 spmi->specification_revision = ipmi_revision;
720
721 spmi->interface_type = type;
722
723 if (gpe_interrupt >= 0 && gpe_interrupt < 32) {
724 spmi->gpe = gpe_interrupt;
725 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_SCI;
726 }
727 if (apic_interrupt > 0) {
728 spmi->global_system_interrupt = apic_interrupt;
729 spmi->interrupt_type |= ACPI_IPMI_INT_TYPE_APIC;
730 }
731
732 /* Calculate checksum. */
733 header->checksum = acpi_checksum((void *)spmi, header->length);
734}
735
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500736void acpi_create_ivrs(acpi_ivrs_t *ivrs,
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700737 unsigned long (*acpi_fill_ivrs)(acpi_ivrs_t *ivrs_struct,
738 unsigned long current))
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500739{
740 acpi_header_t *header = &(ivrs->header);
741 unsigned long current = (unsigned long)ivrs + sizeof(acpi_ivrs_t);
742
743 memset((void *)ivrs, 0, sizeof(acpi_ivrs_t));
744
Arthur Heymansadb80072023-06-28 09:56:00 +0200745 if (acpi_fill_header(header, "IVRS", IVRS, sizeof(acpi_ivrs_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700746 return;
747
Timothy Pearsonff8ccf02015-08-11 17:48:32 -0500748 current = acpi_fill_ivrs(ivrs, current);
749
750 /* (Re)calculate length and checksum. */
751 header->length = current - (unsigned long)ivrs;
752 header->checksum = acpi_checksum((void *)ivrs, header->length);
753}
754
Jason Glenesk61624b22020-11-02 20:06:23 -0800755void acpi_create_crat(struct acpi_crat_header *crat,
756 unsigned long (*acpi_fill_crat)(struct acpi_crat_header *crat_struct,
757 unsigned long current))
758{
759 acpi_header_t *header = &(crat->header);
760 unsigned long current = (unsigned long)crat + sizeof(struct acpi_crat_header);
761
762 memset((void *)crat, 0, sizeof(struct acpi_crat_header));
763
Arthur Heymansadb80072023-06-28 09:56:00 +0200764 if (acpi_fill_header(header, "CRAT", CRAT, sizeof(struct acpi_crat_header)) != CB_SUCCESS)
Jason Glenesk61624b22020-11-02 20:06:23 -0800765 return;
766
Jason Glenesk61624b22020-11-02 20:06:23 -0800767 current = acpi_fill_crat(crat, current);
768
769 /* (Re)calculate length and checksum. */
770 header->length = current - (unsigned long)crat;
771 header->checksum = acpi_checksum((void *)crat, header->length);
772}
773
Arthur Heymans9368cf92023-04-25 16:07:49 +0200774static void acpi_create_dbg2(acpi_dbg2_header_t *dbg2,
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800775 int port_type, int port_subtype,
776 acpi_addr_t *address, uint32_t address_size,
777 const char *device_path)
778{
779 uintptr_t current;
780 acpi_dbg2_device_t *device;
781 uint32_t *dbg2_addr_size;
782 acpi_header_t *header;
783 size_t path_len;
784 const char *path;
785 char *namespace;
786
787 /* Fill out header fields. */
788 current = (uintptr_t)dbg2;
789 memset(dbg2, 0, sizeof(acpi_dbg2_header_t));
790 header = &(dbg2->header);
John Zhao2ba303e2019-05-28 16:48:14 -0700791
Arthur Heymansadb80072023-06-28 09:56:00 +0200792 if (acpi_fill_header(header, "DBG2", DBG2, sizeof(acpi_dbg2_header_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700793 return;
794
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800795 /* One debug device defined */
796 dbg2->devices_offset = sizeof(acpi_dbg2_header_t);
797 dbg2->devices_count = 1;
798 current += sizeof(acpi_dbg2_header_t);
799
800 /* Device comes after the header */
801 device = (acpi_dbg2_device_t *)current;
802 memset(device, 0, sizeof(acpi_dbg2_device_t));
803 current += sizeof(acpi_dbg2_device_t);
804
805 device->revision = 0;
806 device->address_count = 1;
807 device->port_type = port_type;
808 device->port_subtype = port_subtype;
809
810 /* Base Address comes after device structure */
811 memcpy((void *)current, address, sizeof(acpi_addr_t));
812 device->base_address_offset = current - (uintptr_t)device;
813 current += sizeof(acpi_addr_t);
814
815 /* Address Size comes after address structure */
816 dbg2_addr_size = (uint32_t *)current;
817 device->address_size_offset = current - (uintptr_t)device;
818 *dbg2_addr_size = address_size;
819 current += sizeof(uint32_t);
820
821 /* Namespace string comes last, use '.' if not provided */
822 path = device_path ? : ".";
823 /* Namespace string length includes NULL terminator */
824 path_len = strlen(path) + 1;
825 namespace = (char *)current;
826 device->namespace_string_length = path_len;
827 device->namespace_string_offset = current - (uintptr_t)device;
828 strncpy(namespace, path, path_len);
829 current += path_len;
830
831 /* Update structure lengths and checksum */
832 device->length = current - (uintptr_t)device;
833 header->length = current - (uintptr_t)dbg2;
834 header->checksum = acpi_checksum((uint8_t *)dbg2, header->length);
835}
836
Arthur Heymans736d4d22023-06-30 15:37:38 +0200837static unsigned long acpi_write_dbg2_uart(acpi_rsdp_t *rsdp, unsigned long current,
838 int space_id, uint64_t base, uint32_t size,
839 int access_size, const char *name)
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800840{
841 acpi_dbg2_header_t *dbg2 = (acpi_dbg2_header_t *)current;
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800842 acpi_addr_t address;
843
Arthur Heymans736d4d22023-06-30 15:37:38 +0200844 memset(&address, 0, sizeof(address));
845
846 address.space_id = space_id;
847 address.addrl = (uint32_t)base;
848 address.addrh = (uint32_t)((base >> 32) & 0xffffffff);
849 address.access_size = access_size;
850
851 int subtype;
852 /* 16550-compatible with parameters defined in Generic Address Structure */
853 if (CONFIG(DRIVERS_UART_8250IO) || CONFIG(DRIVERS_UART_8250MEM))
854 subtype = ACPI_DBG2_PORT_SERIAL_16550;
855 else if (CONFIG(DRIVERS_UART_PL011))
856 subtype = ACPI_DBG2_PORT_SERIAL_ARM_PL011;
857 else
858 return current;
859
860 acpi_create_dbg2(dbg2,
861 ACPI_DBG2_PORT_SERIAL,
862 subtype,
863 &address, size,
864 name);
865
866 if (dbg2->header.length) {
867 current += dbg2->header.length;
868 current = acpi_align_current(current);
869 acpi_add_table(rsdp, dbg2);
870 }
871
872 return current;
873}
874
875unsigned long acpi_write_dbg2_pci_uart(acpi_rsdp_t *rsdp, unsigned long current,
876 const struct device *dev, uint8_t access_size)
877{
878 struct resource *res;
879
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800880 if (!dev) {
Wim Vervoorn6cd52432020-02-03 14:41:46 +0100881 printk(BIOS_DEBUG, "%s: Device not found\n", __func__);
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800882 return current;
883 }
Mario Scheithauerf1eb0ea2017-11-21 13:52:53 +0100884 if (!dev->enabled) {
885 printk(BIOS_INFO, "%s: Device not enabled\n", __func__);
886 return current;
887 }
Angel Pons32d09be2021-11-03 13:27:45 +0100888 res = probe_resource(dev, PCI_BASE_ADDRESS_0);
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800889 if (!res) {
890 printk(BIOS_ERR, "%s: Unable to find resource for %s\n",
891 __func__, dev_path(dev));
892 return current;
893 }
894
Arthur Heymans736d4d22023-06-30 15:37:38 +0200895 int space_id;
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800896 if (res->flags & IORESOURCE_IO)
Arthur Heymans736d4d22023-06-30 15:37:38 +0200897 space_id = ACPI_ADDRESS_SPACE_IO;
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800898 else if (res->flags & IORESOURCE_MEM)
Arthur Heymans736d4d22023-06-30 15:37:38 +0200899 space_id = ACPI_ADDRESS_SPACE_MEMORY;
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800900 else {
901 printk(BIOS_ERR, "%s: Unknown address space type\n", __func__);
902 return current;
903 }
904
Arthur Heymans736d4d22023-06-30 15:37:38 +0200905 return acpi_write_dbg2_uart(rsdp, current, space_id, res->base, res->size, access_size, acpi_device_path(dev));
906}
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800907
Arthur Heymans736d4d22023-06-30 15:37:38 +0200908unsigned long acpi_pl011_write_dbg2_uart(acpi_rsdp_t *rsdp, unsigned long current,
909 uint64_t base, const char *name)
910{
911 return acpi_write_dbg2_uart(rsdp, current, ACPI_ADDRESS_SPACE_MEMORY, base,
912 sizeof(struct pl011_uart), ACPI_ACCESS_SIZE_DWORD_ACCESS,
913 name);
Duncan Lauriee4a36c72017-11-11 19:33:25 -0800914}
915
Zheng Bao3ea3fbe2023-11-20 14:17:25 +0800916unsigned long acpi_16550_mmio32_write_dbg2_uart(acpi_rsdp_t *rsdp, unsigned long current,
917 uint64_t base, const char *name)
918{
919 return acpi_write_dbg2_uart(rsdp, current, ACPI_ADDRESS_SPACE_MEMORY, base,
920 0x100, ACPI_ACCESS_SIZE_DWORD_ACCESS,
921 name);
922}
923
Arthur Heymans01af0f82023-06-27 11:58:04 +0200924static void acpi_create_facs(void *header)
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000925{
Arthur Heymans01af0f82023-06-27 11:58:04 +0200926 acpi_facs_t *facs = header;
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000927
Stefan Reinauercdfe3762009-07-21 22:15:43 +0000928 memcpy(facs->signature, "FACS", 4);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000929 facs->length = sizeof(acpi_facs_t);
930 facs->hardware_signature = 0;
931 facs->firmware_waking_vector = 0;
932 facs->global_lock = 0;
933 facs->flags = 0;
934 facs->x_firmware_waking_vector_l = 0;
935 facs->x_firmware_waking_vector_h = 0;
Marc Jones93a51762018-08-22 18:57:24 -0600936 facs->version = get_acpi_table_revision(FACS);
Ronald G. Minnich02fa3b22004-10-06 17:33:54 +0000937}
Stefan Reinauer777224c2005-01-19 14:06:41 +0000938
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100939static void acpi_write_rsdt(acpi_rsdt_t *rsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000940{
Uwe Hermann622824c2010-11-19 15:14:42 +0000941 acpi_header_t *header = &(rsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000942
Arthur Heymansadb80072023-06-28 09:56:00 +0200943 if (acpi_fill_header(header, "RSDT", RSDT, sizeof(acpi_rsdt_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700944 return;
945
Uwe Hermann622824c2010-11-19 15:14:42 +0000946 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauer688b3852004-01-28 16:56:14 +0000947
Uwe Hermann622824c2010-11-19 15:14:42 +0000948 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000949 header->checksum = acpi_checksum((void *)rsdt, sizeof(acpi_rsdt_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000950}
951
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100952static void acpi_write_xsdt(acpi_xsdt_t *xsdt, char *oem_id, char *oem_table_id)
Stefan Reinauer14e22772010-04-27 06:56:47 +0000953{
Uwe Hermann622824c2010-11-19 15:14:42 +0000954 acpi_header_t *header = &(xsdt->header);
Stefan Reinauer14e22772010-04-27 06:56:47 +0000955
Arthur Heymansadb80072023-06-28 09:56:00 +0200956 if (acpi_fill_header(header, "XSDT", XSDT, sizeof(acpi_xsdt_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -0700957 return;
958
Uwe Hermann622824c2010-11-19 15:14:42 +0000959 /* Entries are filled in later, we come with an empty set. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000960
Uwe Hermann622824c2010-11-19 15:14:42 +0000961 /* Fix checksum. */
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000962 header->checksum = acpi_checksum((void *)xsdt, sizeof(acpi_xsdt_t));
963}
964
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100965static void acpi_write_rsdp(acpi_rsdp_t *rsdp, acpi_rsdt_t *rsdt,
966 acpi_xsdt_t *xsdt, char *oem_id)
Stefan Reinauer688b3852004-01-28 16:56:14 +0000967{
Stefan Reinauerd18faac2009-11-05 18:06:43 +0000968 memset(rsdp, 0, sizeof(acpi_rsdp_t));
Uwe Hermann622824c2010-11-19 15:14:42 +0000969
Stefan Reinauer688b3852004-01-28 16:56:14 +0000970 memcpy(rsdp->signature, RSDP_SIG, 8);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +0100971 memcpy(rsdp->oem_id, oem_id, 6);
Uwe Hermann622824c2010-11-19 15:14:42 +0000972
973 rsdp->length = sizeof(acpi_rsdp_t);
Stefan Reinauerdefee172015-06-18 01:11:19 -0700974 rsdp->rsdt_address = (uintptr_t)rsdt;
Uwe Hermann622824c2010-11-19 15:14:42 +0000975
976 /*
977 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2.
978 *
979 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
980 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
981 * revision 0).
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000982 */
983 if (xsdt == NULL) {
Uwe Hermann622824c2010-11-19 15:14:42 +0000984 rsdp->revision = 0;
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000985 } else {
Stefan Reinauerdefee172015-06-18 01:11:19 -0700986 rsdp->xsdt_address = (u64)(uintptr_t)xsdt;
Marc Jones93a51762018-08-22 18:57:24 -0600987 rsdp->revision = get_acpi_table_revision(RSDP);
Stefan Reinauerb657a3c2009-07-21 21:38:33 +0000988 }
Uwe Hermann622824c2010-11-19 15:14:42 +0000989
990 /* Calculate checksums. */
991 rsdp->checksum = acpi_checksum((void *)rsdp, 20);
992 rsdp->ext_checksum = acpi_checksum((void *)rsdp, sizeof(acpi_rsdp_t));
Stefan Reinauer688b3852004-01-28 16:56:14 +0000993}
994
Lee Leahy6f80ccc2017-03-16 15:18:22 -0700995unsigned long acpi_create_hest_error_source(acpi_hest_t *hest,
996 acpi_hest_esd_t *esd, u16 type, void *data, u16 data_len)
zbaocaf494c82012-04-13 13:57:14 +0800997{
998 acpi_header_t *header = &(hest->header);
999 acpi_hest_hen_t *hen;
1000 void *pos;
1001 u16 len;
1002
1003 pos = esd;
1004 memset(pos, 0, sizeof(acpi_hest_esd_t));
1005 len = 0;
1006 esd->type = type; /* MCE */
1007 esd->source_id = hest->error_source_count;
1008 esd->flags = 0; /* FIRMWARE_FIRST */
1009 esd->enabled = 1;
1010 esd->prealloc_erecords = 1;
1011 esd->max_section_per_record = 0x1;
1012
1013 len += sizeof(acpi_hest_esd_t);
1014 pos = esd + 1;
1015
1016 switch (type) {
1017 case 0: /* MCE */
1018 break;
1019 case 1: /* CMC */
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001020 hen = (acpi_hest_hen_t *)(pos);
zbaocaf494c82012-04-13 13:57:14 +08001021 memset(pos, 0, sizeof(acpi_hest_hen_t));
1022 hen->type = 3; /* SCI? */
1023 hen->length = sizeof(acpi_hest_hen_t);
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001024 hen->conf_we = 0; /* Configuration Write Enable. */
zbaocaf494c82012-04-13 13:57:14 +08001025 hen->poll_interval = 0;
1026 hen->vector = 0;
1027 hen->sw2poll_threshold_val = 0;
1028 hen->sw2poll_threshold_win = 0;
1029 hen->error_threshold_val = 0;
1030 hen->error_threshold_win = 0;
1031 len += sizeof(acpi_hest_hen_t);
1032 pos = hen + 1;
1033 break;
1034 case 2: /* NMI */
1035 case 6: /* AER Root Port */
1036 case 7: /* AER Endpoint */
1037 case 8: /* AER Bridge */
1038 case 9: /* Generic Hardware Error Source. */
1039 /* TODO: */
1040 break;
1041 default:
1042 printk(BIOS_DEBUG, "Invalid type of Error Source.");
1043 break;
1044 }
Lee Leahy024b13d2017-03-16 13:41:11 -07001045 hest->error_source_count++;
zbaocaf494c82012-04-13 13:57:14 +08001046
1047 memcpy(pos, data, data_len);
1048 len += data_len;
John Zhao2ba303e2019-05-28 16:48:14 -07001049 if (header)
1050 header->length += len;
zbaocaf494c82012-04-13 13:57:14 +08001051
1052 return len;
1053}
1054
1055/* ACPI 4.0 */
Vladimir Serbinenko807127f2014-11-09 13:36:18 +01001056void acpi_write_hest(acpi_hest_t *hest,
1057 unsigned long (*acpi_fill_hest)(acpi_hest_t *hest))
zbaocaf494c82012-04-13 13:57:14 +08001058{
1059 acpi_header_t *header = &(hest->header);
1060
1061 memset(hest, 0, sizeof(acpi_hest_t));
1062
Arthur Heymansadb80072023-06-28 09:56:00 +02001063 if (acpi_fill_header(header, "HEST", HEST, sizeof(acpi_hest_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -07001064 return;
1065
zbaocaf494c82012-04-13 13:57:14 +08001066 acpi_fill_hest(hest);
1067
1068 /* Calculate checksums. */
1069 header->checksum = acpi_checksum((void *)hest, header->length);
1070}
1071
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001072/* ACPI 3.0b */
Arthur Heymans01af0f82023-06-27 11:58:04 +02001073static void acpi_create_bert(acpi_header_t *header, void *unused)
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001074{
Arthur Heymans01af0f82023-06-27 11:58:04 +02001075 if (!CONFIG(ACPI_BERT))
1076 return;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001077
Arthur Heymans01af0f82023-06-27 11:58:04 +02001078 acpi_bert_t *bert = (acpi_bert_t *)header;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001079
Arthur Heymans01af0f82023-06-27 11:58:04 +02001080 void *region;
1081 size_t size;
1082 if (acpi_soc_get_bert_region(&region, &size) != CB_SUCCESS)
1083 return;
1084
Arthur Heymansadb80072023-06-28 09:56:00 +02001085 if (acpi_fill_header(header, "BERT", BERT, sizeof(acpi_bert_t)) != CB_SUCCESS)
1086 return;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001087
Arthur Heymans01af0f82023-06-27 11:58:04 +02001088 bert->error_region = (uintptr_t)region;
1089 bert->region_length = (size_t)size;
Marshall Dawson1d8d3692018-09-04 13:45:26 -06001090}
1091
Angel Pons79572e42020-07-13 00:17:43 +02001092__weak void arch_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001093__weak void soc_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001094__weak void mainboard_fill_fadt(acpi_fadt_t *fadt) { }
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001095
Arthur Heymans01af0f82023-06-27 11:58:04 +02001096static acpi_header_t *dsdt;
1097static void acpi_create_fadt(acpi_header_t *header, void *arg1)
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001098{
Arthur Heymans01af0f82023-06-27 11:58:04 +02001099 acpi_fadt_t *fadt = (acpi_fadt_t *)header;
1100 acpi_facs_t *facs = (acpi_facs_t *)(*(acpi_facs_t **)arg1);
John Zhao2ba303e2019-05-28 16:48:14 -07001101
Arthur Heymansadb80072023-06-28 09:56:00 +02001102 if (acpi_fill_header(header, "FACP", FADT, sizeof(acpi_fadt_t)) != CB_SUCCESS)
John Zhao2ba303e2019-05-28 16:48:14 -07001103 return;
1104
Elyes Haouas532e0432022-02-21 18:13:58 +01001105 fadt->FADT_MinorVersion = get_acpi_fadt_minor_version();
Arthur Heymans8473e8f2023-06-29 20:26:39 +02001106 if ((uintptr_t)facs <= UINT32_MAX)
1107 fadt->firmware_ctrl = (uintptr_t)facs;
1108 else
1109 fadt->x_firmware_ctl_h = (uint32_t)((uint64_t)(uintptr_t)facs >> 32);
1110 fadt->x_firmware_ctl_l = (uint32_t)(uintptr_t)facs;
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001111
Arthur Heymans8473e8f2023-06-29 20:26:39 +02001112 if ((uintptr_t)dsdt <= UINT32_MAX)
1113 fadt->dsdt = (uintptr_t)dsdt;
1114 else
1115 fadt->x_dsdt_h = (uint32_t)((uint64_t)(uintptr_t)dsdt >> 32);
1116 fadt->x_dsdt_l = (uint32_t)(uintptr_t)dsdt;
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001117
Kyösti Mälkkid4acee82020-06-03 07:20:55 +03001118 /* should be 0 ACPI 3.0 */
1119 fadt->reserved = 0;
1120
Kyösti Mälkki67c48a32023-04-14 10:20:03 +03001121 /* P_LVLx latencies are not used as CPU _CST will override them. */
1122 fadt->p_lvl2_lat = ACPI_FADT_C2_NOT_SUPPORTED;
1123 fadt->p_lvl3_lat = ACPI_FADT_C3_NOT_SUPPORTED;
1124
Kyösti Mälkki9ff97972023-04-14 15:37:27 +03001125 /* Use CPU _PTC instead to provide P_CNT details. */
1126 fadt->duty_offset = 0;
1127 fadt->duty_width = 0;
1128
Kyösti Mälkkie0d38682020-06-07 12:01:58 +03001129 fadt->preferred_pm_profile = acpi_get_preferred_pm_profile();
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001130
Angel Pons79572e42020-07-13 00:17:43 +02001131 arch_fill_fadt(fadt);
1132
Vladimir Serbinenkoab83ef02014-10-25 15:18:25 +02001133 acpi_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001134
Kyösti Mälkkif9aac922020-05-30 16:16:28 +03001135 soc_fill_fadt(fadt);
Kyösti Mälkki02fd15d2020-06-02 03:34:43 +03001136 mainboard_fill_fadt(fadt);
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001137}
Vladimir Serbinenkoc21e0732014-10-16 12:48:19 +02001138
Arthur Heymans01af0f82023-06-27 11:58:04 +02001139static void acpi_create_lpit(acpi_header_t *header, void *unused)
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001140{
Arthur Heymans01af0f82023-06-27 11:58:04 +02001141 if (!CONFIG(ACPI_LPIT))
1142 return;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001143
Arthur Heymans01af0f82023-06-27 11:58:04 +02001144 acpi_lpit_t *lpit = (acpi_lpit_t *)header;
1145 unsigned long current = (unsigned long)lpit + sizeof(acpi_lpit_t);
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001146
Arthur Heymansadb80072023-06-28 09:56:00 +02001147 if (acpi_fill_header(header, "LPIT", LPIT, sizeof(acpi_lpit_t)) != CB_SUCCESS)
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001148 return;
1149
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001150 current = acpi_fill_lpit(current);
1151
Arthur Heymans01af0f82023-06-27 11:58:04 +02001152 /* (Re)calculate length. */
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001153 header->length = current - (unsigned long)lpit;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001154}
1155
Arthur Heymans2e3cb632023-06-30 15:01:08 +02001156static void acpi_create_gtdt(acpi_header_t *header, void *unused)
1157{
1158 if (!CONFIG(ACPI_GTDT))
1159 return;
1160
1161 acpi_gtdt_t *gtdt = (acpi_gtdt_t *)header;
1162 unsigned long current = (unsigned long)gtdt + sizeof(acpi_gtdt_t);
1163
1164 if (acpi_fill_header(header, "GTDT", GTDT, sizeof(acpi_gtdt_t)) != CB_SUCCESS)
1165 return;
1166
1167 /* Fill out header fields. */
1168 gtdt->platform_timer_offset = sizeof(acpi_gtdt_t);
1169
1170 acpi_soc_fill_gtdt(gtdt);
1171 current = acpi_soc_gtdt_add_timers(&gtdt->platform_timer_count, current);
1172
1173 /* (Re)calculate length. */
1174 header->length = current - (unsigned long)gtdt;
1175}
1176
1177unsigned long acpi_gtdt_add_timer_block(unsigned long current, const uint64_t address,
1178 struct acpi_gtdt_timer_entry *timers, size_t number)
1179{
1180 struct acpi_gtdt_timer_block *block = (struct acpi_gtdt_timer_block *)current;
1181 memset(block, 0, sizeof(struct acpi_gtdt_timer_block));
1182
1183 assert(number < 8 && number != 0);
1184 const size_t entries_size = number * sizeof(struct acpi_gtdt_timer_entry);
1185
1186 block->header.type = ACPI_GTDT_TYPE_TIMER_BLOCK;
1187 block->header.length = sizeof(struct acpi_gtdt_timer_block)
1188 + entries_size;
1189 block->block_address = address;
1190 block->timer_count = number;
1191 block->timer_offset = sizeof(struct acpi_gtdt_timer_block);
1192 current += sizeof(struct acpi_gtdt_timer_block);
1193 memcpy((void *)current, timers, entries_size);
1194 current += entries_size;
1195 return current;
1196}
1197
1198unsigned long acpi_gtdt_add_watchdog(unsigned long current, uint64_t refresh_frame,
1199 uint64_t control_frame, uint32_t gsiv, uint32_t flags)
1200{
1201 struct acpi_gtdt_watchdog *wd = (struct acpi_gtdt_watchdog *)current;
1202 memset(wd, 0, sizeof(struct acpi_gtdt_watchdog));
1203
1204 wd->header.type = ACPI_GTDT_TYPE_WATCHDOG;
1205 wd->header.length = sizeof(struct acpi_gtdt_watchdog);
1206 wd->refresh_frame_address = refresh_frame;
1207 wd->control_frame_address = control_frame;
1208 wd->timer_interrupt = gsiv;
1209 wd->timer_flags = flags;
1210
1211 return current + sizeof(struct acpi_gtdt_watchdog);
1212}
1213
Naresh Solanki6920c6f2023-09-13 12:01:58 +02001214static void acpi_create_iort(acpi_header_t *header, void *unused)
1215{
1216 if (!CONFIG(ACPI_IORT))
1217 return;
1218
1219 acpi_iort_t *iort = (acpi_iort_t *)header;
1220 unsigned long current = (unsigned long)iort + sizeof(acpi_iort_t);
1221
1222 if (acpi_fill_header(header, "IORT", IORT, sizeof(acpi_iort_t)) != CB_SUCCESS)
1223 return;
1224
1225 iort->node_count = 0;
1226 iort->node_offset = current - (unsigned long)iort;
1227
1228 current = acpi_soc_fill_iort(iort, current);
1229
1230 /* (Re)calculate length */
1231 header->length = current - (unsigned long)iort;
1232}
1233
Marek Maslanka017003c2023-12-07 13:21:35 +00001234static void acpi_create_wdat(acpi_header_t *header, void *unused)
1235{
1236 if (!CONFIG(ACPI_WDAT_WDT))
1237 return;
1238
1239 acpi_wdat_t *wdat = (acpi_wdat_t *)header;
1240 unsigned long current = (unsigned long)wdat + sizeof(acpi_wdat_t);
1241
1242 memset((void *)wdat, 0, sizeof(acpi_wdat_t));
1243
1244 if (acpi_fill_header(header, "WDAT", WDAT, sizeof(acpi_wdat_t)) != CB_SUCCESS)
1245 return;
1246
1247 current = acpi_soc_fill_wdat(wdat, current);
1248
1249 /* (Re)calculate length. */
1250 header->length = current - (unsigned long)wdat;
1251}
1252
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001253unsigned long acpi_create_lpi_desc_ncst(acpi_lpi_desc_ncst_t *lpi_desc, uint16_t uid)
1254{
1255 memset(lpi_desc, 0, sizeof(acpi_lpi_desc_ncst_t));
1256 lpi_desc->header.length = sizeof(acpi_lpi_desc_ncst_t);
1257 lpi_desc->header.type = ACPI_LPI_DESC_TYPE_NATIVE_CSTATE;
1258 lpi_desc->header.uid = uid;
1259
1260 return lpi_desc->header.length;
1261}
1262
David Milosevicd9822742023-09-22 14:34:28 +02001263static void acpi_create_pptt(acpi_header_t *header, void *unused)
1264{
1265 if (!CONFIG(ACPI_PPTT))
1266 return;
1267
1268 if (acpi_fill_header(header, "PPTT", PPTT, sizeof(acpi_pptt_t)) != CB_SUCCESS)
1269 return;
1270
1271 acpi_pptt_t *pptt = (acpi_pptt_t *)header;
1272 acpi_create_pptt_body(pptt);
1273}
1274
Arthur Heymans90464072023-06-07 12:53:50 +02001275static uint8_t acpi_spcr_type(void)
1276{
1277 /* 16550-compatible with parameters defined in Generic Address Structure */
1278 if (CONFIG(DRIVERS_UART_8250IO) || CONFIG(DRIVERS_UART_8250MEM))
1279 return 0x12;
1280 if (CONFIG(DRIVERS_UART_PL011))
1281 return 0x3;
1282
1283 printk(BIOS_ERR, "%s: unknown serial type\n", __func__);
1284 return 0xff;
1285}
1286
Arthur Heymans01af0f82023-06-27 11:58:04 +02001287static void acpi_create_spcr(acpi_header_t *header, void *unused)
Arthur Heymans90464072023-06-07 12:53:50 +02001288{
Arthur Heymans01af0f82023-06-27 11:58:04 +02001289 acpi_spcr_t *spcr = (acpi_spcr_t *)header;
Arthur Heymans90464072023-06-07 12:53:50 +02001290 struct lb_serial serial;
1291
Arthur Heymans90464072023-06-07 12:53:50 +02001292 if (!CONFIG(CONSOLE_SERIAL))
1293 return;
1294
1295 if (fill_lb_serial(&serial) != CB_SUCCESS)
1296 return;
1297
Arthur Heymansadb80072023-06-28 09:56:00 +02001298 if (acpi_fill_header(header, "SPCR", SPCR, sizeof(acpi_spcr_t)) != CB_SUCCESS)
1299 return;
Arthur Heymans90464072023-06-07 12:53:50 +02001300
1301 spcr->interface_type = acpi_spcr_type();
1302 assert(serial.type == LB_SERIAL_TYPE_IO_MAPPED
1303 || serial.type == LB_SERIAL_TYPE_MEMORY_MAPPED);
1304 spcr->base_address.space_id = serial.type == LB_SERIAL_TYPE_IO_MAPPED ?
1305 ACPI_ADDRESS_SPACE_IO : ACPI_ADDRESS_SPACE_MEMORY;
1306 spcr->base_address.bit_width = serial.regwidth * 8;
1307 spcr->base_address.bit_offset = 0;
1308 switch (serial.regwidth) {
1309 case 1:
1310 spcr->base_address.access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
1311 break;
1312 case 2:
1313 spcr->base_address.access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
1314 break;
1315 case 4:
1316 spcr->base_address.access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
1317 break;
1318 default:
1319 printk(BIOS_ERR, "%s, Invalid serial regwidth\n", __func__);
1320 }
1321
1322 spcr->base_address.addrl = serial.baseaddr;
1323 spcr->base_address.addrh = 0;
1324 spcr->interrupt_type = 0;
1325 spcr->irq = 0;
1326 spcr->configured_baudrate = 0; /* Have the OS use whatever is currently set */
1327 spcr->parity = 0;
1328 spcr->stop_bits = 1;
1329 spcr->flow_control = 0;
1330 spcr->terminal_type = 2; /* 2 = VT-UTF8 */
1331 spcr->language = 0;
1332 spcr->pci_did = 0xffff;
1333 spcr->pci_vid = 0xffff;
Nico Huberfeb27dc2023-06-28 20:09:30 +02001334
1335 header->checksum = acpi_checksum((void *)spcr, header->length);
Arthur Heymans90464072023-06-07 12:53:50 +02001336}
1337
Aaron Durbin64031672018-04-21 14:45:32 -06001338unsigned long __weak fw_cfg_acpi_tables(unsigned long start)
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001339{
1340 return 0;
1341}
1342
Raul E Rangel6b446b92021-11-19 11:38:35 -07001343void preload_acpi_dsdt(void)
1344{
1345 const char *file = CONFIG_CBFS_PREFIX "/dsdt.aml";
1346
1347 if (!CONFIG(CBFS_PRELOAD))
1348 return;
1349
1350 printk(BIOS_DEBUG, "Preloading %s\n", file);
1351 cbfs_preload(file);
1352}
1353
Arthur Heymans01af0f82023-06-27 11:58:04 +02001354static void acpi_create_dsdt(acpi_header_t *header, void *dsdt_file_arg)
1355{
1356 dsdt = header;
1357 acpi_header_t *dsdt_file = *(acpi_header_t **)dsdt_file_arg;
1358 unsigned long current = (unsigned long)header;
1359
1360 dsdt = (acpi_header_t *)current;
1361 memcpy(dsdt, dsdt_file, sizeof(acpi_header_t));
1362 if (dsdt->length >= sizeof(acpi_header_t)) {
1363 current += sizeof(acpi_header_t);
1364
1365 acpigen_set_current((char *)current);
1366
1367 if (CONFIG(ACPI_SOC_NVS))
1368 acpi_fill_gnvs();
1369 if (CONFIG(CHROMEOS_NVS))
1370 acpi_fill_cnvs();
1371
Arthur Heymans01af0f82023-06-27 11:58:04 +02001372 current = (unsigned long)acpigen_get_current();
1373 memcpy((char *)current,
1374 (char *)dsdt_file + sizeof(acpi_header_t),
1375 dsdt->length - sizeof(acpi_header_t));
1376 current += dsdt->length - sizeof(acpi_header_t);
1377
1378 /* (Re)calculate length. */
1379 dsdt->length = current - (unsigned long)dsdt;
1380 }
1381}
1382
1383static void acpi_create_slic(acpi_header_t *header, void *slic_file_arg)
1384{
1385 acpi_header_t *slic_file = *(acpi_header_t **)slic_file_arg;
1386 acpi_header_t *slic = header;
1387 if (slic_file)
1388 memcpy(slic, slic_file, slic_file->length);
1389}
1390
Arthur Heymans2e7e2d92022-03-03 22:28:27 +01001391static uintptr_t coreboot_rsdp;
1392
1393uintptr_t get_coreboot_rsdp(void)
1394{
1395 return coreboot_rsdp;
1396}
1397
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001398static void acpixtract_compatible_hexdump(const void *memory, size_t length)
1399{
1400 size_t i, j;
1401 uint8_t *line;
1402 size_t num_bytes;
1403
1404 for (i = 0; i < length; i += 16) {
1405 num_bytes = MIN(length - i, 16);
1406 line = ((uint8_t *)memory) + i;
1407
1408 printk(BIOS_SPEW, " %04zX:", i);
1409 for (j = 0; j < num_bytes; j++)
1410 printk(BIOS_SPEW, " %02x", line[j]);
1411 for (; j < 16; j++)
1412 printk(BIOS_SPEW, " ");
1413 printk(BIOS_SPEW, " ");
1414 for (j = 0; j < num_bytes; j++)
1415 printk(BIOS_SPEW, "%c",
1416 isprint(line[j]) ? line[j] : '.');
1417 printk(BIOS_SPEW, "\n");
1418 }
1419}
1420
1421static void acpidump_print(void *table_ptr)
1422{
Felix Held67b3c8f2023-08-03 01:08:14 +02001423 if (table_ptr == NULL)
1424 return;
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001425 const acpi_header_t *header = (acpi_header_t *)table_ptr;
1426 const size_t table_size = header->length;
1427 printk(BIOS_SPEW, "%.4s @ 0x0000000000000000\n", header->signature);
1428 acpixtract_compatible_hexdump(table_ptr, table_size);
1429 printk(BIOS_SPEW, "\n");
1430}
1431
Arthur Heymans7ebebf72023-06-17 14:08:46 +02001432unsigned long write_acpi_tables(const unsigned long start)
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001433{
1434 unsigned long current;
1435 acpi_rsdp_t *rsdp;
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001436 acpi_rsdt_t *rsdt = NULL;
1437 acpi_xsdt_t *xsdt = NULL;
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001438 acpi_facs_t *facs = NULL;
Arthur Heymans01af0f82023-06-27 11:58:04 +02001439 acpi_header_t *slic_file;
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001440 acpi_header_t *ssdt = NULL;
Arthur Heymans01af0f82023-06-27 11:58:04 +02001441 acpi_header_t *dsdt_file;
Edward O'Callaghan2c9d2cf2014-10-27 23:29:29 +11001442 struct device *dev;
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001443 unsigned long fw;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001444 size_t slic_size, dsdt_size;
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001445 char oem_id[6], oem_table_id[8];
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001446
Arthur Heymans01af0f82023-06-27 11:58:04 +02001447 const struct acpi_table_generator {
1448 void (*create_table)(acpi_header_t *table, void *arg);
1449 void *args;
1450 size_t min_size;
1451 } tables[] = {
1452 { acpi_create_dsdt, &dsdt_file, sizeof(acpi_header_t) },
1453 { acpi_create_fadt, &facs, sizeof(acpi_fadt_t) },
1454 { acpi_create_slic, &slic_file, sizeof(acpi_header_t) },
1455 { acpi_create_ssdt_generator, NULL, sizeof(acpi_header_t) },
1456 { acpi_create_mcfg, NULL, sizeof(acpi_mcfg_t) },
1457 { acpi_create_tcpa, NULL, sizeof(acpi_tcpa_t) },
1458 { acpi_create_tpm2, NULL, sizeof(acpi_tpm2_t) },
1459 { acpi_create_lpit, NULL, sizeof(acpi_lpit_t) },
1460 { acpi_create_madt, NULL, sizeof(acpi_header_t) },
1461 { acpi_create_bert, NULL, sizeof(acpi_bert_t) },
1462 { acpi_create_spcr, NULL, sizeof(acpi_spcr_t) },
Arthur Heymans2e3cb632023-06-30 15:01:08 +02001463 { acpi_create_gtdt, NULL, sizeof(acpi_gtdt_t) },
David Milosevicd9822742023-09-22 14:34:28 +02001464 { acpi_create_pptt, NULL, sizeof(acpi_pptt_t) },
Naresh Solanki6920c6f2023-09-13 12:01:58 +02001465 { acpi_create_iort, NULL, sizeof(acpi_iort_t) },
Marek Maslanka017003c2023-12-07 13:21:35 +00001466 { acpi_create_wdat, NULL, sizeof(acpi_wdat_t) },
Arthur Heymans01af0f82023-06-27 11:58:04 +02001467 };
1468
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001469 current = start;
1470
1471 /* Align ACPI tables to 16byte */
Aaron Durbin07a1b282015-12-10 17:07:38 -06001472 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001473
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001474 /* Special case for qemu */
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001475 fw = fw_cfg_acpi_tables(current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001476 if (fw) {
1477 rsdp = NULL;
1478 /* Find RSDP. */
1479 for (void *p = (void *)current; p < (void *)fw; p += 16) {
1480 if (valid_rsdp((acpi_rsdp_t *)p)) {
1481 rsdp = p;
Bin Mengf3027b82023-05-09 15:21:49 +08001482 coreboot_rsdp = (uintptr_t)rsdp;
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001483 break;
1484 }
1485 }
1486 if (!rsdp)
1487 return fw;
1488
Arthur Heymansc2830c92023-08-22 12:50:43 +02001489 current = fw;
1490 current = acpi_align_current(current);
1491 if (rsdp->xsdt_address == 0) {
1492 xsdt = (acpi_xsdt_t *)current;
1493 current += sizeof(acpi_xsdt_t);
1494 current = acpi_align_current(current);
1495
1496 /*
1497 * Qemu only creates an RSDT.
1498 * Add an XSDT based on the existing RSDT entries.
1499 */
1500 acpi_rsdt_t *existing_rsdt = (acpi_rsdt_t *)(uintptr_t)rsdp->rsdt_address;
1501 acpi_write_rsdp(rsdp, existing_rsdt, xsdt, oem_id);
1502 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
1503 /*
1504 * Copy existing entries to the new XSDT. This will override existing
1505 * RSDT entries with the same value.
1506 */
1507 for (int i = 0; existing_rsdt->entry[i]; i++)
1508 acpi_add_table(rsdp, (void *)(uintptr_t)existing_rsdt->entry[i]);
Arthur Heymansc2830c92023-08-22 12:50:43 +02001509 }
1510
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001511 /* Add BOOT0000 for Linux google firmware driver */
1512 printk(BIOS_DEBUG, "ACPI: * SSDT\n");
Arthur Heymansc2830c92023-08-22 12:50:43 +02001513 ssdt = (acpi_header_t *)current;
1514 current += sizeof(acpi_header_t);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001515
1516 memset((void *)ssdt, 0, sizeof(acpi_header_t));
1517
1518 memcpy(&ssdt->signature, "SSDT", 4);
1519 ssdt->revision = get_acpi_table_revision(SSDT);
1520 memcpy(&ssdt->oem_id, OEM_ID, 6);
1521 memcpy(&ssdt->oem_table_id, oem_table_id, 8);
1522 ssdt->oem_revision = 42;
1523 memcpy(&ssdt->asl_compiler_id, ASLC, 4);
1524 ssdt->asl_compiler_revision = asl_revision;
1525 ssdt->length = sizeof(acpi_header_t);
1526
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001527 acpigen_set_current((char *)current);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001528
1529 /* Write object to declare coreboot tables */
1530 acpi_ssdt_write_cbtable();
1531
1532 /* (Re)calculate length and checksum. */
1533 ssdt->length = current - (unsigned long)ssdt;
1534 ssdt->checksum = acpi_checksum((void *)ssdt, ssdt->length);
1535
Arthur Heymans01af0f82023-06-27 11:58:04 +02001536 acpi_create_ssdt_generator(ssdt, NULL);
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001537
1538 acpi_add_table(rsdp, ssdt);
1539
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001540 return fw;
Patrick Rudolphcfe08ff2019-09-10 15:40:47 +02001541 }
Vladimir Serbinenko41877d82014-09-01 22:18:01 +02001542
Julius Werner834b3ec2020-03-04 16:52:08 -08001543 dsdt_file = cbfs_map(CONFIG_CBFS_PREFIX "/dsdt.aml", &dsdt_size);
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001544 if (!dsdt_file) {
1545 printk(BIOS_ERR, "No DSDT file, skipping ACPI tables\n");
Arthur Heymans0600aa62023-06-17 14:13:54 +02001546 return start;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001547 }
1548
1549 if (dsdt_file->length > dsdt_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001550 || dsdt_file->length < sizeof(acpi_header_t)
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001551 || memcmp(dsdt_file->signature, "DSDT", 4) != 0) {
1552 printk(BIOS_ERR, "Invalid DSDT file, skipping ACPI tables\n");
Grzegorz Bernacki042ac352023-04-21 13:19:58 +00001553 cbfs_unmap(dsdt_file);
Arthur Heymans0600aa62023-06-17 14:13:54 +02001554 return start;
Vladimir Serbinenko36f8d272015-05-31 12:31:59 +02001555 }
1556
Julius Werner834b3ec2020-03-04 16:52:08 -08001557 slic_file = cbfs_map(CONFIG_CBFS_PREFIX "/slic", &slic_size);
Vladimir Serbinenko2cb29782015-05-31 11:32:09 +02001558 if (slic_file
1559 && (slic_file->length > slic_size
Elyes HAOUAS7d87e762016-10-03 22:11:07 +02001560 || slic_file->length < sizeof(acpi_header_t)
Benjamin Doron2b2dc0c2020-09-12 02:55:57 +00001561 || (memcmp(slic_file->signature, "SLIC", 4) != 0
1562 && memcmp(slic_file->signature, "MSDM", 4) != 0))) {
Grzegorz Bernacki042ac352023-04-21 13:19:58 +00001563 cbfs_unmap(slic_file);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001564 slic_file = 0;
1565 }
1566
1567 if (slic_file) {
1568 memcpy(oem_id, slic_file->oem_id, 6);
1569 memcpy(oem_table_id, slic_file->oem_table_id, 8);
1570 } else {
1571 memcpy(oem_id, OEM_ID, 6);
1572 memcpy(oem_table_id, ACPI_TABLE_CREATOR, 8);
1573 }
1574
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001575 printk(BIOS_INFO, "ACPI: Writing ACPI tables at %lx.\n", start);
1576
Arthur Heymansd8f2dce2023-06-22 13:42:36 +02001577 /* We need at least an RSDP, RSDT for ACPI 1.0 compat, otherwise XSDT */
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001578 rsdp = (acpi_rsdp_t *)current;
Arthur Heymans2e7e2d92022-03-03 22:28:27 +01001579 coreboot_rsdp = (uintptr_t)rsdp;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001580 current += sizeof(acpi_rsdp_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001581 current = acpi_align_current(current);
Arthur Heymansd8f2dce2023-06-22 13:42:36 +02001582 if (current + sizeof(acpi_rsdt_t) - 1 <= UINT32_MAX) {
1583 rsdt = (acpi_rsdt_t *)current;
1584 current += sizeof(acpi_rsdt_t);
1585 current = acpi_align_current(current);
1586 } else {
1587 printk(BIOS_INFO, "Not adding RSDT because tables reside above 4G.");
1588 }
1589
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001590 xsdt = (acpi_xsdt_t *)current;
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001591 current += sizeof(acpi_xsdt_t);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001592 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001593
1594 /* clear all table memory */
Elyes Haouas3141fbad2022-11-18 15:22:32 +01001595 memset((void *)start, 0, current - start);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001596
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001597 acpi_write_rsdp(rsdp, rsdt, xsdt, oem_id);
1598 acpi_write_rsdt(rsdt, oem_id, oem_table_id);
1599 acpi_write_xsdt(xsdt, oem_id, oem_table_id);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001600
Arthur Heymans6af72612023-06-29 20:25:32 +02001601 if (ENV_X86) {
1602 printk(BIOS_DEBUG, "ACPI: * FACS\n");
1603 current = ALIGN_UP(current, 64);
1604 facs = (acpi_facs_t *)current;
1605 current += sizeof(acpi_facs_t);
1606 current = acpi_align_current(current);
1607 acpi_create_facs(facs);
1608 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001609
Arthur Heymans01af0f82023-06-27 11:58:04 +02001610 for (size_t i = 0; i < ARRAY_SIZE(tables); i++) {
1611 acpi_header_t *header = (acpi_header_t *)current;
1612 memset(header, 0, tables[i].min_size);
1613 tables[i].create_table(header, tables[i].args);
1614 if (header->length < tables[i].min_size)
1615 continue;
1616 header->checksum = 0;
1617 header->checksum = acpi_checksum((void *)header, header->length);
1618 current += header->length;
Aaron Durbin07a1b282015-12-10 17:07:38 -06001619 current = acpi_align_current(current);
Kyösti Mälkki0bcdd402023-07-06 14:47:07 +03001620
1621 if (tables[i].create_table == acpi_create_dsdt)
1622 continue;
1623
Arthur Heymans01af0f82023-06-27 11:58:04 +02001624 printk(BIOS_DEBUG, "ACPI: * %.4s\n", header->signature);
1625 acpi_add_table(rsdp, header);
Vladimir Serbinenko351fefc2014-10-26 20:42:08 +01001626 }
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001627
Grzegorz Bernacki042ac352023-04-21 13:19:58 +00001628 /*
1629 * cbfs_unmap() uses mem_pool_free() which works correctly only
1630 * if freeing is done in reverse order than memory allocation.
1631 * This is why unmapping of dsdt_file must be done after
1632 * unmapping slic file.
1633 */
Arthur Heymans01af0f82023-06-27 11:58:04 +02001634 cbfs_unmap(slic_file);
Grzegorz Bernacki042ac352023-04-21 13:19:58 +00001635 cbfs_unmap(dsdt_file);
1636
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001637 printk(BIOS_DEBUG, "current = %lx\n", current);
1638
1639 for (dev = all_devices; dev; dev = dev->next) {
1640 if (dev->ops && dev->ops->write_acpi_tables) {
Lee Leahy6f80ccc2017-03-16 15:18:22 -07001641 current = dev->ops->write_acpi_tables(dev, current,
1642 rsdp);
Aaron Durbin07a1b282015-12-10 17:07:38 -06001643 current = acpi_align_current(current);
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001644 }
1645 }
1646
1647 printk(BIOS_INFO, "ACPI: done.\n");
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001648
1649 if (CONFIG(DEBUG_ACPICA_COMPATIBLE)) {
1650 printk(BIOS_DEBUG, "Printing ACPI tables in ACPICA compatible format\n");
Arthur Heymans1cdeaea2023-07-06 16:24:50 +02001651 if (facs)
1652 acpidump_print(facs);
1653 acpidump_print(dsdt);
Arthur Heymans3e523b42023-06-15 17:04:16 +02001654 for (size_t i = 0; xsdt->entry[i] != 0; i++) {
1655 acpidump_print((void *)(uintptr_t)xsdt->entry[i]);
Arthur Heymans0ad766c2023-06-07 10:45:59 +02001656 }
1657 printk(BIOS_DEBUG, "Done printing ACPI tables in ACPICA compatible format\n");
1658 }
1659
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001660 return current;
1661}
Vladimir Serbinenko2d7bd8a2014-08-30 19:28:05 +02001662
Rudolf Marek33cafe52009-04-13 18:07:02 +00001663static acpi_rsdp_t *valid_rsdp(acpi_rsdp_t *rsdp)
1664{
1665 if (strncmp((char *)rsdp, RSDP_SIG, sizeof(RSDP_SIG) - 1) != 0)
1666 return NULL;
1667
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001668 printk(BIOS_DEBUG, "Looking on %p for valid checksum\n", rsdp);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001669
1670 if (acpi_checksum((void *)rsdp, 20) != 0)
1671 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001672 printk(BIOS_DEBUG, "Checksum 1 passed\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001673
1674 if ((rsdp->revision > 1) && (acpi_checksum((void *)rsdp,
1675 rsdp->length) != 0))
1676 return NULL;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001677 printk(BIOS_DEBUG, "Checksum 2 passed all OK\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001678
1679 return rsdp;
1680}
1681
Rudolf Marek33cafe52009-04-13 18:07:02 +00001682void *acpi_find_wakeup_vector(void)
1683{
1684 char *p, *end;
Arthur Heymansd8f2dce2023-06-22 13:42:36 +02001685 acpi_xsdt_t *xsdt;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001686 acpi_facs_t *facs;
Martin Rothc5f49262012-12-14 19:17:55 -07001687 acpi_fadt_t *fadt = NULL;
Kyösti Mälkki072d436b2016-06-17 08:44:40 +03001688 acpi_rsdp_t *rsdp = NULL;
Uwe Hermann622824c2010-11-19 15:14:42 +00001689 void *wake_vec;
Rudolf Marek33cafe52009-04-13 18:07:02 +00001690 int i;
1691
Kyösti Mälkkib8c7ea02020-11-17 16:41:38 +02001692 if (!acpi_is_wakeup_s3())
Rudolf Marek33cafe52009-04-13 18:07:02 +00001693 return NULL;
1694
Uwe Hermann622824c2010-11-19 15:14:42 +00001695 printk(BIOS_DEBUG, "Trying to find the wakeup vector...\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001696
Uwe Hermann622824c2010-11-19 15:14:42 +00001697 /* Find RSDP. */
1698 for (p = (char *)0xe0000; p < (char *)0xfffff; p += 16) {
Lee Leahy0b5678f2017-03-16 16:01:40 -07001699 rsdp = valid_rsdp((acpi_rsdp_t *)p);
1700 if (rsdp)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001701 break;
1702 }
1703
Angel Pons98a68ad2018-11-04 12:25:25 +01001704 if (rsdp == NULL) {
1705 printk(BIOS_ALERT,
1706 "No RSDP found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001707 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001708 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001709
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001710 printk(BIOS_DEBUG, "RSDP found at %p\n", rsdp);
Arthur Heymansd8f2dce2023-06-22 13:42:36 +02001711 xsdt = (acpi_xsdt_t *)(uintptr_t)rsdp->xsdt_address;
Stefan Reinauer14e22772010-04-27 06:56:47 +00001712
Arthur Heymansd8f2dce2023-06-22 13:42:36 +02001713 end = (char *)xsdt + xsdt->header.length;
1714 printk(BIOS_DEBUG, "XSDT found at %p ends at %p\n", xsdt, end);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001715
Arthur Heymansd8f2dce2023-06-22 13:42:36 +02001716 for (i = 0; ((char *)&xsdt->entry[i]) < end; i++) {
1717 fadt = (acpi_fadt_t *)(uintptr_t)xsdt->entry[i];
Stefan Reinauercdfe3762009-07-21 22:15:43 +00001718 if (strncmp((char *)fadt, "FACP", 4) == 0)
Rudolf Marek33cafe52009-04-13 18:07:02 +00001719 break;
1720 fadt = NULL;
1721 }
1722
Angel Pons98a68ad2018-11-04 12:25:25 +01001723 if (fadt == NULL) {
1724 printk(BIOS_ALERT,
1725 "No FADT found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001726 return NULL;
Angel Pons98a68ad2018-11-04 12:25:25 +01001727 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001728
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001729 printk(BIOS_DEBUG, "FADT found at %p\n", fadt);
Arthur Heymansa07b09a2023-07-05 12:53:10 +02001730 facs = (acpi_facs_t *)(uintptr_t)((uint64_t)fadt->x_firmware_ctl_l
1731 | (uint64_t)fadt->x_firmware_ctl_h << 32);
Rudolf Marek33cafe52009-04-13 18:07:02 +00001732
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001733 if (facs == NULL) {
Angel Pons98a68ad2018-11-04 12:25:25 +01001734 printk(BIOS_ALERT,
1735 "No FACS found, wake up from S3 not possible.\n");
Rudolf Marek33cafe52009-04-13 18:07:02 +00001736 return NULL;
Stefan Reinauer7e9771c2009-04-22 08:17:38 +00001737 }
Rudolf Marek33cafe52009-04-13 18:07:02 +00001738
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001739 printk(BIOS_DEBUG, "FACS found at %p\n", facs);
Stefan Reinauer71a30182015-07-30 16:28:13 -07001740 wake_vec = (void *)(uintptr_t)facs->firmware_waking_vector;
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +00001741 printk(BIOS_DEBUG, "OS waking vector is %p\n", wake_vec);
Uwe Hermann622824c2010-11-19 15:14:42 +00001742
Rudolf Marek33cafe52009-04-13 18:07:02 +00001743 return wake_vec;
1744}
1745
Aaron Durbin64031672018-04-21 14:45:32 -06001746__weak int acpi_get_gpe(int gpe)
Duncan Laurie1f6e6812016-09-19 12:04:19 -07001747{
1748 return -1; /* implemented by SOC */
1749}
Marc Jones93a51762018-08-22 18:57:24 -06001750
Elyes Haouas8b950f42022-02-16 12:08:16 +01001751u8 get_acpi_fadt_minor_version(void)
1752{
1753 return ACPI_FADT_MINOR_VERSION_0;
1754}
1755
Marc Jones93a51762018-08-22 18:57:24 -06001756int get_acpi_table_revision(enum acpi_tables table)
1757{
1758 switch (table) {
1759 case FADT:
Elyes Haouas8b950f42022-02-16 12:08:16 +01001760 return ACPI_FADT_REV_ACPI_6;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001761 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 +01001762 return 3;
Marc Jones93a51762018-08-22 18:57:24 -06001763 case MCFG:
1764 return 1;
1765 case TCPA:
1766 return 2;
Philipp Deppenwiese296164e02018-10-18 15:39:34 +02001767 case TPM2:
1768 return 4;
Martin Roth0949e732021-10-01 14:28:22 -06001769 case SSDT: /* ACPI 3.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001770 return 2;
Jonathan Zhanga3311b92022-12-01 17:13:41 -08001771 case SRAT: /* ACPI 2.0: 1, ACPI 3.0: 2, ACPI 4.0 up to 6.4: 3 */
1772 return 3;
Jonathan Zhang2a4e1f42021-04-01 11:43:37 -07001773 case HMAT: /* ACPI 6.4: 2 */
1774 return 2;
Marc Jones93a51762018-08-22 18:57:24 -06001775 case DMAR:
1776 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001777 case SLIT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001778 return 1;
Patrick Rudolph9d98e5a2019-06-14 19:00:04 +02001779 case SPMI: /* IMPI 2.0 */
1780 return 5;
Marc Jones93a51762018-08-22 18:57:24 -06001781 case HPET: /* Currently 1. Table added in ACPI 2.0. */
1782 return 1;
Elyes HAOUASf288b392018-11-11 15:22:30 +01001783 case VFCT: /* ACPI 2.0/3.0/4.0: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001784 return 1;
1785 case IVRS:
Jason Glenesk1916f892020-07-24 02:51:30 -07001786 return IVRS_FORMAT_MIXED;
Marc Jones93a51762018-08-22 18:57:24 -06001787 case DBG2:
1788 return 0;
Martin Roth0949e732021-10-01 14:28:22 -06001789 case FACS: /* ACPI 2.0/3.0: 1, ACPI 4.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001790 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001791 case RSDT: /* ACPI 1.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001792 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001793 case XSDT: /* ACPI 2.0 up to 6.3: 1 */
Marc Jones93a51762018-08-22 18:57:24 -06001794 return 1;
Martin Roth0949e732021-10-01 14:28:22 -06001795 case RSDP: /* ACPI 2.0 up to 6.3: 2 */
Marc Jones93a51762018-08-22 18:57:24 -06001796 return 2;
Rocky Phaguraeff07132021-01-10 15:42:50 -08001797 case EINJ:
1798 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06001799 case HEST:
1800 return 1;
1801 case NHLT:
1802 return 5;
Marshall Dawson44705c62018-09-04 13:47:15 -06001803 case BERT:
1804 return 1;
Jonathan Zhanga3311b92022-12-01 17:13:41 -08001805 case CEDT: /* CXL 3.0 section 9.17.1 */
1806 return 1;
Jason Glenesk61624b22020-11-02 20:06:23 -08001807 case CRAT:
1808 return 1;
Michael Niewöhnerf0a44ae2021-01-01 21:04:09 +01001809 case LPIT: /* ACPI 5.1 up to 6.3: 0 */
1810 return 0;
Arthur Heymans90464072023-06-07 12:53:50 +02001811 case SPCR:
1812 return 4;
Arthur Heymans2e3cb632023-06-30 15:01:08 +02001813 case GTDT:
1814 return 3;
David Milosevicd9822742023-09-22 14:34:28 +02001815 case PPTT: /* ACPI 6.4 */
1816 return 3;
Naresh Solanki6920c6f2023-09-13 12:01:58 +02001817 case IORT: /* IO Remapping Table E.e */
1818 return 6;
Marek Maslanka017003c2023-12-07 13:21:35 +00001819 case WDAT:
1820 return 1;
Marc Jones93a51762018-08-22 18:57:24 -06001821 default:
1822 return -1;
1823 }
1824 return -1;
1825}