blob: e6aa3c5a7098ab8d8aa55cb6ad5a5e3bef9c7c4f [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Saket Sinha867bcb62015-08-22 12:20:55 +05302/*
3 * Based on acpi.c from coreboot
4 *
5 * Copyright (C) 2015, Saket Sinha <saket.sinha89@gmail.com>
Bin Mengab5efd52016-05-07 07:46:25 -07006 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Saket Sinha867bcb62015-08-22 12:20:55 +05307 */
8
Simon Glass2da4b692020-09-22 12:45:34 -06009#define LOG_CATEGORY LOGC_ACPI
10
Saket Sinha867bcb62015-08-22 12:20:55 +053011#include <common.h>
Simon Glass9179c352020-09-22 12:45:32 -060012#include <bloblist.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053013#include <cpu.h>
14#include <dm.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060015#include <log.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053016#include <dm/uclass-internal.h>
Simon Glass86e17782020-04-26 09:19:47 -060017#include <mapmem.h>
Andy Shevchenkob288cd92018-11-20 23:52:38 +020018#include <serial.h>
Simon Glass351fef52020-07-07 13:12:07 -060019#include <acpi/acpigen.h>
Simon Glassf37979e2020-09-22 12:45:10 -060020#include <acpi/acpi_device.h>
Simon Glass776cc202020-04-08 16:57:36 -060021#include <acpi/acpi_table.h>
Bin Meng79c2c252016-06-17 02:13:16 -070022#include <asm/acpi/global_nvs.h>
Andy Shevchenkob156da92017-07-21 22:32:04 +030023#include <asm/ioapic.h>
Simon Glass401d1c42020-10-30 21:38:53 -060024#include <asm/global_data.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053025#include <asm/lapic.h>
Andy Shevchenkob156da92017-07-21 22:32:04 +030026#include <asm/mpspec.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053027#include <asm/tables.h>
Bin Meng79c2c252016-06-17 02:13:16 -070028#include <asm/arch/global_nvs.h>
Simon Glass86e17782020-04-26 09:19:47 -060029#include <dm/acpi.h>
Simon Glass8d7ff122020-07-07 21:32:05 -060030#include <linux/err.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053031
32/*
Bin Mengdfbb18b2016-05-07 07:46:24 -070033 * IASL compiles the dsdt entries and writes the hex values
34 * to a C array AmlCode[] (see dsdt.c).
Saket Sinha867bcb62015-08-22 12:20:55 +053035 */
36extern const unsigned char AmlCode[];
37
Andy Shevchenko3469bf42018-01-10 19:40:15 +020038/* ACPI RSDP address to be used in boot parameters */
Bin Meng45410da2018-01-30 05:01:16 -080039static ulong acpi_rsdp_addr;
Andy Shevchenko3469bf42018-01-10 19:40:15 +020040
Bin Mengab5efd52016-05-07 07:46:25 -070041static void acpi_create_facs(struct acpi_facs *facs)
42{
43 memset((void *)facs, 0, sizeof(struct acpi_facs));
44
45 memcpy(facs->signature, "FACS", 4);
46 facs->length = sizeof(struct acpi_facs);
47 facs->hardware_signature = 0;
48 facs->firmware_waking_vector = 0;
49 facs->global_lock = 0;
50 facs->flags = 0;
51 facs->x_firmware_waking_vector_l = 0;
52 facs->x_firmware_waking_vector_h = 0;
53 facs->version = 1;
54}
55
56static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
57 u8 cpu, u8 apic)
58{
59 lapic->type = ACPI_APIC_LAPIC;
60 lapic->length = sizeof(struct acpi_madt_lapic);
61 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
62 lapic->processor_id = cpu;
63 lapic->apic_id = apic;
64
65 return lapic->length;
66}
67
Bin Mengfc4f5cc2016-05-07 07:46:30 -070068int acpi_create_madt_lapics(u32 current)
Bin Mengab5efd52016-05-07 07:46:25 -070069{
70 struct udevice *dev;
George McCollister8a1a7592016-06-07 13:40:18 -050071 int total_length = 0;
Simon Glass4ff35912020-09-22 12:45:31 -060072 int cpu_num = 0;
Bin Mengab5efd52016-05-07 07:46:25 -070073
74 for (uclass_find_first_device(UCLASS_CPU, &dev);
75 dev;
76 uclass_find_next_device(&dev)) {
Simon Glass8a8d24b2020-12-03 16:55:23 -070077 struct cpu_plat *plat = dev_get_parent_plat(dev);
Simon Glass4ff35912020-09-22 12:45:31 -060078 int length;
79
80 length = acpi_create_madt_lapic(
81 (struct acpi_madt_lapic *)current, cpu_num++,
82 plat->cpu_id);
Bin Mengfc4f5cc2016-05-07 07:46:30 -070083 current += length;
George McCollister8a1a7592016-06-07 13:40:18 -050084 total_length += length;
Bin Mengab5efd52016-05-07 07:46:25 -070085 }
86
George McCollister8a1a7592016-06-07 13:40:18 -050087 return total_length;
Bin Mengab5efd52016-05-07 07:46:25 -070088}
89
90int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
91 u32 addr, u32 gsi_base)
92{
93 ioapic->type = ACPI_APIC_IOAPIC;
94 ioapic->length = sizeof(struct acpi_madt_ioapic);
95 ioapic->reserved = 0x00;
96 ioapic->gsi_base = gsi_base;
97 ioapic->ioapic_id = id;
98 ioapic->ioapic_addr = addr;
99
100 return ioapic->length;
101}
102
103int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride,
104 u8 bus, u8 source, u32 gsirq, u16 flags)
105{
106 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
107 irqoverride->length = sizeof(struct acpi_madt_irqoverride);
108 irqoverride->bus = bus;
109 irqoverride->source = source;
110 irqoverride->gsirq = gsirq;
111 irqoverride->flags = flags;
112
113 return irqoverride->length;
114}
115
116int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi,
117 u8 cpu, u16 flags, u8 lint)
118{
119 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
120 lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi);
121 lapic_nmi->flags = flags;
122 lapic_nmi->processor_id = cpu;
123 lapic_nmi->lint = lint;
124
125 return lapic_nmi->length;
126}
127
Andy Shevchenkob156da92017-07-21 22:32:04 +0300128static int acpi_create_madt_irq_overrides(u32 current)
129{
130 struct acpi_madt_irqoverride *irqovr;
131 u16 sci_flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH;
132 int length = 0;
133
134 irqovr = (void *)current;
135 length += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0);
136
137 irqovr = (void *)(current + length);
138 length += acpi_create_madt_irqoverride(irqovr, 0, 9, 9, sci_flags);
139
140 return length;
141}
142
143__weak u32 acpi_fill_madt(u32 current)
144{
145 current += acpi_create_madt_lapics(current);
146
147 current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current,
148 io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0);
149
150 current += acpi_create_madt_irq_overrides(current);
151
152 return current;
153}
154
Bin Mengab5efd52016-05-07 07:46:25 -0700155static void acpi_create_madt(struct acpi_madt *madt)
156{
157 struct acpi_table_header *header = &(madt->header);
Bin Meng7e79a6b2016-05-07 07:46:26 -0700158 u32 current = (u32)madt + sizeof(struct acpi_madt);
Bin Mengab5efd52016-05-07 07:46:25 -0700159
160 memset((void *)madt, 0, sizeof(struct acpi_madt));
161
162 /* Fill out header fields */
163 acpi_fill_header(header, "APIC");
164 header->length = sizeof(struct acpi_madt);
Simon Glass22a73962020-07-16 21:22:37 -0600165 header->revision = ACPI_MADT_REV_ACPI_3_0;
Bin Mengab5efd52016-05-07 07:46:25 -0700166
167 madt->lapic_addr = LAPIC_DEFAULT_BASE;
168 madt->flags = ACPI_MADT_PCAT_COMPAT;
169
170 current = acpi_fill_madt(current);
171
172 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700173 header->length = current - (u32)madt;
Bin Mengab5efd52016-05-07 07:46:25 -0700174
175 header->checksum = table_compute_checksum((void *)madt, header->length);
176}
177
Andy Shevchenkoace77622017-07-21 22:32:05 +0300178int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig, u32 base,
179 u16 seg_nr, u8 start, u8 end)
Bin Mengab5efd52016-05-07 07:46:25 -0700180{
181 memset(mmconfig, 0, sizeof(*mmconfig));
182 mmconfig->base_address_l = base;
183 mmconfig->base_address_h = 0;
184 mmconfig->pci_segment_group_number = seg_nr;
185 mmconfig->start_bus_number = start;
186 mmconfig->end_bus_number = end;
187
188 return sizeof(struct acpi_mcfg_mmconfig);
189}
190
Andy Shevchenkoace77622017-07-21 22:32:05 +0300191__weak u32 acpi_fill_mcfg(u32 current)
Bin Mengab5efd52016-05-07 07:46:25 -0700192{
193 current += acpi_create_mcfg_mmconfig
194 ((struct acpi_mcfg_mmconfig *)current,
195 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
196
197 return current;
198}
199
200/* MCFG is defined in the PCI Firmware Specification 3.0 */
201static void acpi_create_mcfg(struct acpi_mcfg *mcfg)
202{
203 struct acpi_table_header *header = &(mcfg->header);
Bin Meng7e79a6b2016-05-07 07:46:26 -0700204 u32 current = (u32)mcfg + sizeof(struct acpi_mcfg);
Bin Mengab5efd52016-05-07 07:46:25 -0700205
206 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
207
208 /* Fill out header fields */
209 acpi_fill_header(header, "MCFG");
210 header->length = sizeof(struct acpi_mcfg);
Bin Meng7e6343e2016-05-07 07:46:28 -0700211 header->revision = 1;
Bin Mengab5efd52016-05-07 07:46:25 -0700212
213 current = acpi_fill_mcfg(current);
214
215 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700216 header->length = current - (u32)mcfg;
Bin Mengab5efd52016-05-07 07:46:25 -0700217 header->checksum = table_compute_checksum((void *)mcfg, header->length);
Saket Sinha867bcb62015-08-22 12:20:55 +0530218}
219
Simon Glass77bb1c62020-09-22 12:45:33 -0600220/**
221 * acpi_create_tcpa() - Create a TCPA table
222 *
223 * @tcpa: Pointer to place to put table
224 *
225 * Trusted Computing Platform Alliance Capabilities Table
226 * TCPA PC Specific Implementation SpecificationTCPA is defined in the PCI
227 * Firmware Specification 3.0
228 */
229static int acpi_create_tcpa(struct acpi_tcpa *tcpa)
230{
231 struct acpi_table_header *header = &tcpa->header;
232 u32 current = (u32)tcpa + sizeof(struct acpi_tcpa);
233 int size = 0x10000; /* Use this as the default size */
234 void *log;
235 int ret;
236
237 if (!CONFIG_IS_ENABLED(BLOBLIST))
238 return -ENXIO;
239 memset(tcpa, '\0', sizeof(struct acpi_tcpa));
240
241 /* Fill out header fields */
242 acpi_fill_header(header, "TCPA");
243 header->length = sizeof(struct acpi_tcpa);
244 header->revision = 1;
245
246 ret = bloblist_ensure_size_ret(BLOBLISTT_TCPA_LOG, &size, &log);
247 if (ret)
248 return log_msg_ret("blob", ret);
249
250 tcpa->platform_class = 0;
251 tcpa->laml = size;
252 tcpa->lasa = (ulong)log;
253
254 /* (Re)calculate length and checksum */
255 header->length = current - (u32)tcpa;
256 header->checksum = table_compute_checksum((void *)tcpa, header->length);
257
258 return 0;
259}
260
Simon Glass9179c352020-09-22 12:45:32 -0600261static int get_tpm2_log(void **ptrp, int *sizep)
262{
263 const int tpm2_default_log_len = 0x10000;
264 int size;
265 int ret;
266
267 *sizep = 0;
268 size = tpm2_default_log_len;
269 ret = bloblist_ensure_size_ret(BLOBLISTT_TPM2_TCG_LOG, &size, ptrp);
270 if (ret)
271 return log_msg_ret("blob", ret);
272 *sizep = size;
273
274 return 0;
275}
276
277static int acpi_create_tpm2(struct acpi_tpm2 *tpm2)
278{
279 struct acpi_table_header *header = &tpm2->header;
280 int tpm2_log_len;
281 void *lasa;
282 int ret;
283
284 memset((void *)tpm2, 0, sizeof(struct acpi_tpm2));
285
286 /*
287 * Some payloads like SeaBIOS depend on log area to use TPM2.
288 * Get the memory size and address of TPM2 log area or initialize it.
289 */
290 ret = get_tpm2_log(&lasa, &tpm2_log_len);
291 if (ret)
292 return ret;
293
294 /* Fill out header fields. */
295 acpi_fill_header(header, "TPM2");
296 memcpy(header->aslc_id, ASLC_ID, 4);
297
298 header->length = sizeof(struct acpi_tpm2);
299 header->revision = acpi_get_table_revision(ACPITAB_TPM2);
300
301 /* Hard to detect for coreboot. Just set it to 0 */
302 tpm2->platform_class = 0;
303
304 /* Must be set to 0 for FIFO-interface support */
305 tpm2->control_area = 0;
306 tpm2->start_method = 6;
307 memset(tpm2->msp, 0, sizeof(tpm2->msp));
308
309 /* Fill the log area size and start address fields. */
310 tpm2->laml = tpm2_log_len;
311 tpm2->lasa = (uintptr_t)lasa;
312
313 /* Calculate checksum. */
314 header->checksum = table_compute_checksum((void *)tpm2, header->length);
315
316 return 0;
317}
318
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300319__weak u32 acpi_fill_csrt(u32 current)
320{
Simon Glass31b410a2020-07-07 21:32:24 -0600321 return 0;
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300322}
323
Simon Glass31b410a2020-07-07 21:32:24 -0600324static int acpi_create_csrt(struct acpi_csrt *csrt)
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300325{
326 struct acpi_table_header *header = &(csrt->header);
327 u32 current = (u32)csrt + sizeof(struct acpi_csrt);
Simon Glass31b410a2020-07-07 21:32:24 -0600328 uint ptr;
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300329
330 memset((void *)csrt, 0, sizeof(struct acpi_csrt));
331
332 /* Fill out header fields */
333 acpi_fill_header(header, "CSRT");
334 header->length = sizeof(struct acpi_csrt);
335 header->revision = 0;
336
Simon Glass31b410a2020-07-07 21:32:24 -0600337 ptr = acpi_fill_csrt(current);
338 if (!ptr)
339 return -ENOENT;
340 current = ptr;
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300341
342 /* (Re)calculate length and checksum */
343 header->length = current - (u32)csrt;
344 header->checksum = table_compute_checksum((void *)csrt, header->length);
Simon Glass31b410a2020-07-07 21:32:24 -0600345
346 return 0;
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300347}
348
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200349static void acpi_create_spcr(struct acpi_spcr *spcr)
350{
351 struct acpi_table_header *header = &(spcr->header);
352 struct serial_device_info serial_info = {0};
353 ulong serial_address, serial_offset;
Simon Glass67d1b052018-12-28 14:23:08 -0700354 struct udevice *dev;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200355 uint serial_config;
356 uint serial_width;
357 int access_size;
358 int space_id;
Andy Shevchenkoedf18a82019-02-28 17:19:54 +0200359 int ret = -ENODEV;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200360
Wolfgang Wallner40edea32020-09-16 16:57:53 +0200361 memset((void *)spcr, 0, sizeof(struct acpi_spcr));
362
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200363 /* Fill out header fields */
364 acpi_fill_header(header, "SPCR");
365 header->length = sizeof(struct acpi_spcr);
366 header->revision = 2;
367
Simon Glassa61cbad2018-12-28 14:23:10 -0700368 /* Read the device once, here. It is reused below */
Andy Shevchenkoedf18a82019-02-28 17:19:54 +0200369 dev = gd->cur_serial_dev;
370 if (dev)
Simon Glassa61cbad2018-12-28 14:23:10 -0700371 ret = serial_getinfo(dev, &serial_info);
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200372 if (ret)
373 serial_info.type = SERIAL_CHIP_UNKNOWN;
374
375 /* Encode chip type */
376 switch (serial_info.type) {
377 case SERIAL_CHIP_16550_COMPATIBLE:
378 spcr->interface_type = ACPI_DBG2_16550_COMPATIBLE;
379 break;
380 case SERIAL_CHIP_UNKNOWN:
381 default:
382 spcr->interface_type = ACPI_DBG2_UNKNOWN;
383 break;
384 }
385
386 /* Encode address space */
387 switch (serial_info.addr_space) {
388 case SERIAL_ADDRESS_SPACE_MEMORY:
389 space_id = ACPI_ADDRESS_SPACE_MEMORY;
390 break;
391 case SERIAL_ADDRESS_SPACE_IO:
392 default:
393 space_id = ACPI_ADDRESS_SPACE_IO;
394 break;
395 }
396
397 serial_width = serial_info.reg_width * 8;
398 serial_offset = serial_info.reg_offset << serial_info.reg_shift;
399 serial_address = serial_info.addr + serial_offset;
400
401 /* Encode register access size */
402 switch (serial_info.reg_shift) {
403 case 0:
404 access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
405 break;
406 case 1:
407 access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
408 break;
409 case 2:
410 access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
411 break;
412 case 3:
413 access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
414 break;
415 default:
416 access_size = ACPI_ACCESS_SIZE_UNDEFINED;
417 break;
418 }
419
420 debug("UART type %u @ %lx\n", spcr->interface_type, serial_address);
421
422 /* Fill GAS */
423 spcr->serial_port.space_id = space_id;
424 spcr->serial_port.bit_width = serial_width;
425 spcr->serial_port.bit_offset = 0;
426 spcr->serial_port.access_size = access_size;
427 spcr->serial_port.addrl = lower_32_bits(serial_address);
428 spcr->serial_port.addrh = upper_32_bits(serial_address);
429
430 /* Encode baud rate */
431 switch (serial_info.baudrate) {
432 case 9600:
433 spcr->baud_rate = 3;
434 break;
435 case 19200:
436 spcr->baud_rate = 4;
437 break;
438 case 57600:
439 spcr->baud_rate = 6;
440 break;
441 case 115200:
442 spcr->baud_rate = 7;
443 break;
444 default:
445 spcr->baud_rate = 0;
446 break;
447 }
448
Simon Glassa61cbad2018-12-28 14:23:10 -0700449 serial_config = SERIAL_DEFAULT_CONFIG;
450 if (dev)
Simon Glass67d1b052018-12-28 14:23:08 -0700451 ret = serial_getconfig(dev, &serial_config);
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200452
453 spcr->parity = SERIAL_GET_PARITY(serial_config);
454 spcr->stop_bits = SERIAL_GET_STOP(serial_config);
455
456 /* No PCI devices for now */
457 spcr->pci_device_id = 0xffff;
458 spcr->pci_vendor_id = 0xffff;
459
Andy Shevchenko98036fb2020-02-27 17:21:56 +0200460 /*
461 * SPCR has no clue if the UART base clock speed is different
462 * to the default one. However, the SPCR 1.04 defines baud rate
463 * 0 as a preconfigured state of UART and OS is supposed not
464 * to touch the configuration of the serial device.
465 */
466 if (serial_info.clock != SERIAL_DEFAULT_CLOCK)
467 spcr->baud_rate = 0;
468
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200469 /* Fix checksum */
470 header->checksum = table_compute_checksum((void *)spcr, header->length);
471}
472
Simon Glass2de47442020-11-04 09:57:31 -0700473static int acpi_create_ssdt(struct acpi_ctx *ctx,
474 struct acpi_table_header *ssdt,
475 const char *oem_table_id)
Simon Glass351fef52020-07-07 13:12:07 -0600476{
477 memset((void *)ssdt, '\0', sizeof(struct acpi_table_header));
478
479 acpi_fill_header(ssdt, "SSDT");
480 ssdt->revision = acpi_get_table_revision(ACPITAB_SSDT);
481 ssdt->aslc_revision = 1;
482 ssdt->length = sizeof(struct acpi_table_header);
483
484 acpi_inc(ctx, sizeof(struct acpi_table_header));
485
486 acpi_fill_ssdt(ctx);
487
Simon Glass2de47442020-11-04 09:57:31 -0700488 /* (Re)calculate length and checksum */
Simon Glass351fef52020-07-07 13:12:07 -0600489 ssdt->length = ctx->current - (void *)ssdt;
490 ssdt->checksum = table_compute_checksum((void *)ssdt, ssdt->length);
Simon Glass2de47442020-11-04 09:57:31 -0700491 log_debug("SSDT at %p, length %x\n", ssdt, ssdt->length);
492
493 /* Drop the table if it is empty */
494 if (ssdt->length == sizeof(struct acpi_table_header)) {
495 ctx->current = ssdt;
496 return -ENOENT;
497 }
498 acpi_align(ctx);
499
500 return 0;
Simon Glass351fef52020-07-07 13:12:07 -0600501}
502
Miao Yanfa287b12016-01-20 01:57:06 -0800503/*
Andy Shevchenko7b36dbd2018-01-10 19:33:10 +0200504 * QEMU's version of write_acpi_tables is defined in drivers/misc/qfw.c
Miao Yanfa287b12016-01-20 01:57:06 -0800505 */
Simon Glass31c27eb2021-12-01 09:02:49 -0700506static int write_acpi_tables_x86(struct acpi_ctx *ctx,
507 const struct acpi_writer *entry)
Saket Sinha867bcb62015-08-22 12:20:55 +0530508{
Simon Glass01e3c9d2020-11-04 09:57:32 -0700509 const int thl = sizeof(struct acpi_table_header);
Saket Sinha867bcb62015-08-22 12:20:55 +0530510 struct acpi_facs *facs;
Bin Meng8a8c0352016-05-07 07:46:21 -0700511 struct acpi_table_header *dsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530512 struct acpi_fadt *fadt;
Simon Glass351fef52020-07-07 13:12:07 -0600513 struct acpi_table_header *ssdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530514 struct acpi_mcfg *mcfg;
Simon Glass77bb1c62020-09-22 12:45:33 -0600515 struct acpi_tcpa *tcpa;
Saket Sinha867bcb62015-08-22 12:20:55 +0530516 struct acpi_madt *madt;
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300517 struct acpi_csrt *csrt;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200518 struct acpi_spcr *spcr;
Simon Glass01e3c9d2020-11-04 09:57:32 -0700519 int aml_len;
Simon Glass86e17782020-04-26 09:19:47 -0600520 ulong addr;
Simon Glass77bb1c62020-09-22 12:45:33 -0600521 int ret;
Bin Meng79c2c252016-06-17 02:13:16 -0700522 int i;
Saket Sinha867bcb62015-08-22 12:20:55 +0530523
Saket Sinha867bcb62015-08-22 12:20:55 +0530524 debug("ACPI: * FACS\n");
Simon Glass86e17782020-04-26 09:19:47 -0600525 facs = ctx->current;
526 acpi_inc_align(ctx, sizeof(struct acpi_facs));
Saket Sinha867bcb62015-08-22 12:20:55 +0530527
528 acpi_create_facs(facs);
529
530 debug("ACPI: * DSDT\n");
Simon Glass86e17782020-04-26 09:19:47 -0600531 dsdt = ctx->current;
Simon Glass58a6ccd2020-07-07 13:12:09 -0600532
533 /* Put the table header first */
Simon Glass01e3c9d2020-11-04 09:57:32 -0700534 memcpy(dsdt, &AmlCode, thl);
535 acpi_inc(ctx, thl);
536 log_debug("DSDT starts at %p, hdr ends at %p\n", dsdt, ctx->current);
Simon Glass58a6ccd2020-07-07 13:12:09 -0600537
538 /* If the table is not empty, allow devices to inject things */
Simon Glass01e3c9d2020-11-04 09:57:32 -0700539 aml_len = dsdt->length - thl;
540 if (aml_len) {
541 void *base = ctx->current;
542
Simon Glass58a6ccd2020-07-07 13:12:09 -0600543 acpi_inject_dsdt(ctx);
Simon Glass01e3c9d2020-11-04 09:57:32 -0700544 log_debug("Added %x bytes from inject_dsdt, now at %p\n",
545 ctx->current - base, ctx->current);
546 log_debug("Copy AML code size %x to %p\n", aml_len,
547 ctx->current);
548 memcpy(ctx->current, AmlCode + thl, aml_len);
549 acpi_inc(ctx, aml_len);
550 }
Simon Glass58a6ccd2020-07-07 13:12:09 -0600551
Simon Glass55109f12020-09-22 12:44:53 -0600552 dsdt->length = ctx->current - (void *)dsdt;
553 acpi_align(ctx);
Simon Glass01e3c9d2020-11-04 09:57:32 -0700554 log_debug("Updated DSDT length to %x, total %x\n", dsdt->length,
555 ctx->current - (void *)dsdt);
Saket Sinha867bcb62015-08-22 12:20:55 +0530556
Simon Glass55109f12020-09-22 12:44:53 -0600557 if (!IS_ENABLED(CONFIG_ACPI_GNVS_EXTERNAL)) {
558 /* Pack GNVS into the ACPI table area */
559 for (i = 0; i < dsdt->length; i++) {
560 u32 *gnvs = (u32 *)((u32)dsdt + i);
Simon Glass86e17782020-04-26 09:19:47 -0600561
Simon Glass55109f12020-09-22 12:44:53 -0600562 if (*gnvs == ACPI_GNVS_ADDR) {
563 *gnvs = map_to_sysmem(ctx->current);
564 debug("Fix up global NVS in DSDT to %#08x\n",
565 *gnvs);
566 break;
567 }
Bin Meng79c2c252016-06-17 02:13:16 -0700568 }
Simon Glass55109f12020-09-22 12:44:53 -0600569
570 /*
571 * Fill in platform-specific global NVS variables. If this fails
572 * we cannot return the error but this should only happen while
573 * debugging.
574 */
575 addr = acpi_create_gnvs(ctx->current);
576 if (IS_ERR_VALUE(addr))
577 printf("Error: Gailed to create GNVS\n");
578 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Meng79c2c252016-06-17 02:13:16 -0700579 }
580
Simon Glass58a6ccd2020-07-07 13:12:09 -0600581 /*
582 * Recalculate the length and update the DSDT checksum since we patched
583 * the GNVS address. Set the checksum to zero since it is part of the
584 * region being checksummed.
585 */
Bin Meng79c2c252016-06-17 02:13:16 -0700586 dsdt->checksum = 0;
587 dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length);
588
Simon Glass8d7ff122020-07-07 21:32:05 -0600589 /*
590 * Fill in platform-specific global NVS variables. If this fails we
591 * cannot return the error but this should only happen while debugging.
592 */
593 addr = acpi_create_gnvs(ctx->current);
594 if (IS_ERR_VALUE(addr))
595 printf("Error: Failed to create GNVS\n");
596
Simon Glass86e17782020-04-26 09:19:47 -0600597 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Meng79c2c252016-06-17 02:13:16 -0700598
Saket Sinha867bcb62015-08-22 12:20:55 +0530599 debug("ACPI: * FADT\n");
Simon Glass86e17782020-04-26 09:19:47 -0600600 fadt = ctx->current;
601 acpi_inc_align(ctx, sizeof(struct acpi_fadt));
Saket Sinha867bcb62015-08-22 12:20:55 +0530602 acpi_create_fadt(fadt, facs, dsdt);
Simon Glass29b35112020-04-26 09:19:50 -0600603 acpi_add_table(ctx, fadt);
Saket Sinha867bcb62015-08-22 12:20:55 +0530604
Simon Glass351fef52020-07-07 13:12:07 -0600605 debug("ACPI: * SSDT\n");
606 ssdt = (struct acpi_table_header *)ctx->current;
Simon Glass2de47442020-11-04 09:57:31 -0700607 if (!acpi_create_ssdt(ctx, ssdt, OEM_TABLE_ID))
Simon Glass351fef52020-07-07 13:12:07 -0600608 acpi_add_table(ctx, ssdt);
Simon Glass351fef52020-07-07 13:12:07 -0600609
Bin Mengab5efd52016-05-07 07:46:25 -0700610 debug("ACPI: * MCFG\n");
Simon Glass86e17782020-04-26 09:19:47 -0600611 mcfg = ctx->current;
Bin Mengab5efd52016-05-07 07:46:25 -0700612 acpi_create_mcfg(mcfg);
Simon Glass86e17782020-04-26 09:19:47 -0600613 acpi_inc_align(ctx, mcfg->header.length);
Simon Glass29b35112020-04-26 09:19:50 -0600614 acpi_add_table(ctx, mcfg);
Bin Mengab5efd52016-05-07 07:46:25 -0700615
Simon Glass9179c352020-09-22 12:45:32 -0600616 if (IS_ENABLED(CONFIG_TPM_V2)) {
617 struct acpi_tpm2 *tpm2;
Simon Glass9179c352020-09-22 12:45:32 -0600618
619 debug("ACPI: * TPM2\n");
620 tpm2 = (struct acpi_tpm2 *)ctx->current;
621 ret = acpi_create_tpm2(tpm2);
622 if (!ret) {
623 acpi_inc_align(ctx, tpm2->header.length);
624 acpi_add_table(ctx, tpm2);
625 } else {
626 log_warning("TPM2 table creation failed\n");
627 }
628 }
629
Simon Glass85f2def2020-07-07 13:12:04 -0600630 debug("ACPI: * MADT\n");
631 madt = ctx->current;
632 acpi_create_madt(madt);
633 acpi_inc_align(ctx, madt->header.length);
634 acpi_add_table(ctx, madt);
635
Simon Glass7f061e02020-11-04 09:57:40 -0700636 if (IS_ENABLED(CONFIG_TPM_V1)) {
637 debug("ACPI: * TCPA\n");
638 tcpa = (struct acpi_tcpa *)ctx->current;
639 ret = acpi_create_tcpa(tcpa);
640 if (ret) {
641 log_warning("Failed to create TCPA table (err=%d)\n",
642 ret);
643 } else {
644 acpi_inc_align(ctx, tcpa->header.length);
645 acpi_add_table(ctx, tcpa);
646 }
Simon Glass77bb1c62020-09-22 12:45:33 -0600647 }
648
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300649 debug("ACPI: * CSRT\n");
Simon Glass86e17782020-04-26 09:19:47 -0600650 csrt = ctx->current;
Simon Glass31b410a2020-07-07 21:32:24 -0600651 if (!acpi_create_csrt(csrt)) {
652 acpi_inc_align(ctx, csrt->header.length);
653 acpi_add_table(ctx, csrt);
654 }
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300655
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200656 debug("ACPI: * SPCR\n");
Simon Glass86e17782020-04-26 09:19:47 -0600657 spcr = ctx->current;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200658 acpi_create_spcr(spcr);
Simon Glass86e17782020-04-26 09:19:47 -0600659 acpi_inc_align(ctx, spcr->header.length);
Simon Glass29b35112020-04-26 09:19:50 -0600660 acpi_add_table(ctx, spcr);
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200661
Simon Glass5f5ab0d2020-04-26 09:19:48 -0600662 acpi_write_dev_tables(ctx);
663
Simon Glass29b35112020-04-26 09:19:50 -0600664 acpi_rsdp_addr = (unsigned long)ctx->rsdp;
Bin Mengdca4d1a2016-05-07 07:46:12 -0700665 debug("ACPI: done\n");
Saket Sinha867bcb62015-08-22 12:20:55 +0530666
Simon Glass31c27eb2021-12-01 09:02:49 -0700667 return 0;
Saket Sinha867bcb62015-08-22 12:20:55 +0530668}
Simon Glass31c27eb2021-12-01 09:02:49 -0700669ACPI_WRITER(x86, NULL, write_acpi_tables_x86, 0);
Bin Menge76bf382017-04-21 07:24:36 -0700670
Bin Meng45410da2018-01-30 05:01:16 -0800671ulong acpi_get_rsdp_addr(void)
672{
673 return acpi_rsdp_addr;
674}
Simon Glassd2628982020-09-22 12:45:09 -0600675
676/**
677 * acpi_write_hpet() - Write out a HPET table
678 *
679 * Write out the table for High-Precision Event Timers
680 *
681 * @hpet: Place to put HPET table
682 */
683static int acpi_create_hpet(struct acpi_hpet *hpet)
684{
685 struct acpi_table_header *header = &hpet->header;
686 struct acpi_gen_regaddr *addr = &hpet->addr;
687
688 /*
689 * See IA-PC HPET (High Precision Event Timers) Specification v1.0a
690 * https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/software-developers-hpet-spec-1-0a.pdf
691 */
692 memset((void *)hpet, '\0', sizeof(struct acpi_hpet));
693
694 /* Fill out header fields. */
695 acpi_fill_header(header, "HPET");
696
697 header->aslc_revision = ASL_REVISION;
698 header->length = sizeof(struct acpi_hpet);
699 header->revision = acpi_get_table_revision(ACPITAB_HPET);
700
701 /* Fill out HPET address */
702 addr->space_id = 0; /* Memory */
703 addr->bit_width = 64;
704 addr->bit_offset = 0;
705 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
706 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
707
708 hpet->id = *(u32 *)CONFIG_HPET_ADDRESS;
709 hpet->number = 0;
710 hpet->min_tick = 0; /* HPET_MIN_TICKS */
711
712 header->checksum = table_compute_checksum(hpet,
713 sizeof(struct acpi_hpet));
714
715 return 0;
716}
717
718int acpi_write_hpet(struct acpi_ctx *ctx)
719{
720 struct acpi_hpet *hpet;
721 int ret;
722
723 log_debug("ACPI: * HPET\n");
724
725 hpet = ctx->current;
726 acpi_inc_align(ctx, sizeof(struct acpi_hpet));
727 acpi_create_hpet(hpet);
728 ret = acpi_add_table(ctx, hpet);
729 if (ret)
730 return log_msg_ret("add", ret);
731
732 return 0;
733}
Simon Glassf37979e2020-09-22 12:45:10 -0600734
735int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev,
736 uint access_size)
737{
738 struct acpi_dbg2_header *dbg2 = ctx->current;
739 char path[ACPI_PATH_MAX];
740 struct acpi_gen_regaddr address;
741 phys_addr_t addr;
742 int ret;
743
744 if (!device_active(dev)) {
745 log_info("Device not enabled\n");
746 return -EACCES;
747 }
748 /*
749 * PCI devices don't remember their resource allocation information in
750 * U-Boot at present. We assume that MMIO is used for the UART and that
751 * the address space is 32 bytes: ns16550 uses 8 registers of up to
752 * 32-bits each. This is only for debugging so it is not a big deal.
753 */
754 addr = dm_pci_read_bar32(dev, 0);
Simon Glass98bf7402020-11-04 09:57:41 -0700755 log_debug("UART addr %lx\n", (ulong)addr);
Simon Glassf37979e2020-09-22 12:45:10 -0600756
757 memset(&address, '\0', sizeof(address));
758 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
759 address.addrl = (uint32_t)addr;
760 address.addrh = (uint32_t)((addr >> 32) & 0xffffffff);
761 address.access_size = access_size;
762
763 ret = acpi_device_path(dev, path, sizeof(path));
764 if (ret)
765 return log_msg_ret("path", ret);
766 acpi_create_dbg2(dbg2, ACPI_DBG2_SERIAL_PORT,
767 ACPI_DBG2_16550_COMPATIBLE, &address, 0x1000, path);
768
769 acpi_inc_align(ctx, dbg2->header.length);
770 acpi_add_table(ctx, dbg2);
771
772 return 0;
773}
Simon Glass540f0ba2020-09-22 12:45:16 -0600774
775void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs,
776 void *dsdt)
777{
778 struct acpi_table_header *header = &fadt->header;
779
780 memset((void *)fadt, '\0', sizeof(struct acpi_fadt));
781
782 acpi_fill_header(header, "FACP");
783 header->length = sizeof(struct acpi_fadt);
784 header->revision = 4;
785 memcpy(header->oem_id, OEM_ID, 6);
786 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
787 memcpy(header->aslc_id, ASLC_ID, 4);
788 header->aslc_revision = 1;
789
790 fadt->firmware_ctrl = (unsigned long)facs;
791 fadt->dsdt = (unsigned long)dsdt;
792
793 fadt->x_firmware_ctl_l = (unsigned long)facs;
794 fadt->x_firmware_ctl_h = 0;
795 fadt->x_dsdt_l = (unsigned long)dsdt;
796 fadt->x_dsdt_h = 0;
797
798 fadt->preferred_pm_profile = ACPI_PM_MOBILE;
799
800 /* Use ACPI 3.0 revision */
801 fadt->header.revision = 4;
802}
803
804void acpi_create_dmar_drhd(struct acpi_ctx *ctx, uint flags, uint segment,
805 u64 bar)
806{
807 struct dmar_entry *drhd = ctx->current;
808
809 memset(drhd, '\0', sizeof(*drhd));
810 drhd->type = DMAR_DRHD;
811 drhd->length = sizeof(*drhd); /* will be fixed up later */
812 drhd->flags = flags;
813 drhd->segment = segment;
814 drhd->bar = bar;
815 acpi_inc(ctx, drhd->length);
816}
817
818void acpi_create_dmar_rmrr(struct acpi_ctx *ctx, uint segment, u64 bar,
819 u64 limit)
820{
821 struct dmar_rmrr_entry *rmrr = ctx->current;
822
823 memset(rmrr, '\0', sizeof(*rmrr));
824 rmrr->type = DMAR_RMRR;
825 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
826 rmrr->segment = segment;
827 rmrr->bar = bar;
828 rmrr->limit = limit;
829 acpi_inc(ctx, rmrr->length);
830}
831
832void acpi_dmar_drhd_fixup(struct acpi_ctx *ctx, void *base)
833{
834 struct dmar_entry *drhd = base;
835
836 drhd->length = ctx->current - base;
837}
838
839void acpi_dmar_rmrr_fixup(struct acpi_ctx *ctx, void *base)
840{
841 struct dmar_rmrr_entry *rmrr = base;
842
843 rmrr->length = ctx->current - base;
844}
845
846static int acpi_create_dmar_ds(struct acpi_ctx *ctx, enum dev_scope_type type,
847 uint enumeration_id, pci_dev_t bdf)
848{
849 /* we don't support longer paths yet */
850 const size_t dev_scope_length = sizeof(struct dev_scope) + 2;
851 struct dev_scope *ds = ctx->current;
852
853 memset(ds, '\0', dev_scope_length);
854 ds->type = type;
855 ds->length = dev_scope_length;
856 ds->enumeration = enumeration_id;
857 ds->start_bus = PCI_BUS(bdf);
858 ds->path[0].dev = PCI_DEV(bdf);
859 ds->path[0].fn = PCI_FUNC(bdf);
860
861 return ds->length;
862}
863
864int acpi_create_dmar_ds_pci_br(struct acpi_ctx *ctx, pci_dev_t bdf)
865{
866 return acpi_create_dmar_ds(ctx, SCOPE_PCI_SUB, 0, bdf);
867}
868
869int acpi_create_dmar_ds_pci(struct acpi_ctx *ctx, pci_dev_t bdf)
870{
871 return acpi_create_dmar_ds(ctx, SCOPE_PCI_ENDPOINT, 0, bdf);
872}
873
874int acpi_create_dmar_ds_ioapic(struct acpi_ctx *ctx, uint enumeration_id,
875 pci_dev_t bdf)
876{
877 return acpi_create_dmar_ds(ctx, SCOPE_IOAPIC, enumeration_id, bdf);
878}
879
880int acpi_create_dmar_ds_msi_hpet(struct acpi_ctx *ctx, uint enumeration_id,
881 pci_dev_t bdf)
882{
883 return acpi_create_dmar_ds(ctx, SCOPE_MSI_HPET, enumeration_id, bdf);
884}