blob: 5ec31301d0b8751773e326099a2e0f4eae3a0d49 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Saket Sinha331141a2015-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 Meng44256b02016-05-07 07:46:25 -07006 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Saket Sinha331141a2015-08-22 12:20:55 +05307 */
8
Simon Glass2326a8b2020-09-22 12:45:34 -06009#define LOG_CATEGORY LOGC_ACPI
10
Saket Sinha331141a2015-08-22 12:20:55 +053011#include <common.h>
Simon Glass272a7032020-09-22 12:45:32 -060012#include <bloblist.h>
Saket Sinha331141a2015-08-22 12:20:55 +053013#include <cpu.h>
14#include <dm.h>
Simon Glass0f2af882020-05-10 11:40:05 -060015#include <log.h>
Saket Sinha331141a2015-08-22 12:20:55 +053016#include <dm/uclass-internal.h>
Simon Glass0e113842020-04-26 09:19:47 -060017#include <mapmem.h>
Andy Shevchenko4ca48c92018-11-20 23:52:38 +020018#include <serial.h>
Andy Shevchenko87e95372017-07-21 22:32:02 +030019#include <version.h>
Simon Glassf0a8d682020-07-07 13:12:07 -060020#include <acpi/acpigen.h>
Simon Glass95971892020-09-22 12:45:10 -060021#include <acpi/acpi_device.h>
Simon Glass858fed12020-04-08 16:57:36 -060022#include <acpi/acpi_table.h>
Bin Mengd9050c62016-06-17 02:13:16 -070023#include <asm/acpi/global_nvs.h>
Andy Shevchenko13a5d872017-07-21 22:32:04 +030024#include <asm/ioapic.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060025#include <asm/global_data.h>
Saket Sinha331141a2015-08-22 12:20:55 +053026#include <asm/lapic.h>
Andy Shevchenko13a5d872017-07-21 22:32:04 +030027#include <asm/mpspec.h>
Saket Sinha331141a2015-08-22 12:20:55 +053028#include <asm/tables.h>
Bin Mengd9050c62016-06-17 02:13:16 -070029#include <asm/arch/global_nvs.h>
Simon Glass0e113842020-04-26 09:19:47 -060030#include <dm/acpi.h>
Simon Glass9ed41e72020-07-07 21:32:05 -060031#include <linux/err.h>
Saket Sinha331141a2015-08-22 12:20:55 +053032
33/*
Bin Mengb063d5f2016-05-07 07:46:24 -070034 * IASL compiles the dsdt entries and writes the hex values
35 * to a C array AmlCode[] (see dsdt.c).
Saket Sinha331141a2015-08-22 12:20:55 +053036 */
37extern const unsigned char AmlCode[];
38
Andy Shevchenko66d3e632018-01-10 19:40:15 +020039/* ACPI RSDP address to be used in boot parameters */
Bin Menge1029252018-01-30 05:01:16 -080040static ulong acpi_rsdp_addr;
Andy Shevchenko66d3e632018-01-10 19:40:15 +020041
Bin Meng44256b02016-05-07 07:46:25 -070042static void acpi_create_facs(struct acpi_facs *facs)
43{
44 memset((void *)facs, 0, sizeof(struct acpi_facs));
45
46 memcpy(facs->signature, "FACS", 4);
47 facs->length = sizeof(struct acpi_facs);
48 facs->hardware_signature = 0;
49 facs->firmware_waking_vector = 0;
50 facs->global_lock = 0;
51 facs->flags = 0;
52 facs->x_firmware_waking_vector_l = 0;
53 facs->x_firmware_waking_vector_h = 0;
54 facs->version = 1;
55}
56
Saket Sinha331141a2015-08-22 12:20:55 +053057static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
Bin Meng44256b02016-05-07 07:46:25 -070058 u8 cpu, u8 apic)
Saket Sinha331141a2015-08-22 12:20:55 +053059{
Bin Meng44256b02016-05-07 07:46:25 -070060 lapic->type = ACPI_APIC_LAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +053061 lapic->length = sizeof(struct acpi_madt_lapic);
Bin Meng44256b02016-05-07 07:46:25 -070062 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
Saket Sinha331141a2015-08-22 12:20:55 +053063 lapic->processor_id = cpu;
64 lapic->apic_id = apic;
65
66 return lapic->length;
67}
68
Bin Meng3c5234e2016-05-07 07:46:30 -070069int acpi_create_madt_lapics(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +053070{
71 struct udevice *dev;
George McCollister5a49f872016-06-07 13:40:18 -050072 int total_length = 0;
Simon Glassfcae5472020-09-22 12:45:31 -060073 int cpu_num = 0;
Saket Sinha331141a2015-08-22 12:20:55 +053074
75 for (uclass_find_first_device(UCLASS_CPU, &dev);
76 dev;
77 uclass_find_next_device(&dev)) {
Simon Glassb75b15b2020-12-03 16:55:23 -070078 struct cpu_plat *plat = dev_get_parent_plat(dev);
Simon Glassfcae5472020-09-22 12:45:31 -060079 int length;
80
81 length = acpi_create_madt_lapic(
82 (struct acpi_madt_lapic *)current, cpu_num++,
83 plat->cpu_id);
Bin Meng3c5234e2016-05-07 07:46:30 -070084 current += length;
George McCollister5a49f872016-06-07 13:40:18 -050085 total_length += length;
Bin Meng44256b02016-05-07 07:46:25 -070086 }
87
George McCollister5a49f872016-06-07 13:40:18 -050088 return total_length;
Saket Sinha331141a2015-08-22 12:20:55 +053089}
90
Bin Meng44256b02016-05-07 07:46:25 -070091int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
92 u32 addr, u32 gsi_base)
Saket Sinha331141a2015-08-22 12:20:55 +053093{
Bin Meng6a421582016-05-07 07:46:21 -070094 ioapic->type = ACPI_APIC_IOAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +053095 ioapic->length = sizeof(struct acpi_madt_ioapic);
96 ioapic->reserved = 0x00;
97 ioapic->gsi_base = gsi_base;
98 ioapic->ioapic_id = id;
99 ioapic->ioapic_addr = addr;
100
101 return ioapic->length;
102}
103
104int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride,
Bin Meng44256b02016-05-07 07:46:25 -0700105 u8 bus, u8 source, u32 gsirq, u16 flags)
Saket Sinha331141a2015-08-22 12:20:55 +0530106{
Bin Meng6a421582016-05-07 07:46:21 -0700107 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
Saket Sinha331141a2015-08-22 12:20:55 +0530108 irqoverride->length = sizeof(struct acpi_madt_irqoverride);
109 irqoverride->bus = bus;
110 irqoverride->source = source;
111 irqoverride->gsirq = gsirq;
112 irqoverride->flags = flags;
113
114 return irqoverride->length;
115}
116
117int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi,
Bin Meng44256b02016-05-07 07:46:25 -0700118 u8 cpu, u16 flags, u8 lint)
Saket Sinha331141a2015-08-22 12:20:55 +0530119{
Bin Meng6a421582016-05-07 07:46:21 -0700120 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
Saket Sinha331141a2015-08-22 12:20:55 +0530121 lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi);
122 lapic_nmi->flags = flags;
123 lapic_nmi->processor_id = cpu;
124 lapic_nmi->lint = lint;
125
126 return lapic_nmi->length;
127}
128
Andy Shevchenko13a5d872017-07-21 22:32:04 +0300129static int acpi_create_madt_irq_overrides(u32 current)
130{
131 struct acpi_madt_irqoverride *irqovr;
132 u16 sci_flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH;
133 int length = 0;
134
135 irqovr = (void *)current;
136 length += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0);
137
138 irqovr = (void *)(current + length);
139 length += acpi_create_madt_irqoverride(irqovr, 0, 9, 9, sci_flags);
140
141 return length;
142}
143
144__weak u32 acpi_fill_madt(u32 current)
145{
146 current += acpi_create_madt_lapics(current);
147
148 current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current,
149 io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0);
150
151 current += acpi_create_madt_irq_overrides(current);
152
153 return current;
154}
155
Saket Sinha331141a2015-08-22 12:20:55 +0530156static void acpi_create_madt(struct acpi_madt *madt)
157{
Bin Meng6a421582016-05-07 07:46:21 -0700158 struct acpi_table_header *header = &(madt->header);
Bin Menga1ec7db2016-05-07 07:46:26 -0700159 u32 current = (u32)madt + sizeof(struct acpi_madt);
Saket Sinha331141a2015-08-22 12:20:55 +0530160
161 memset((void *)madt, 0, sizeof(struct acpi_madt));
162
163 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700164 acpi_fill_header(header, "APIC");
Saket Sinha331141a2015-08-22 12:20:55 +0530165 header->length = sizeof(struct acpi_madt);
Simon Glassf3694aa2020-07-16 21:22:37 -0600166 header->revision = ACPI_MADT_REV_ACPI_3_0;
Saket Sinha331141a2015-08-22 12:20:55 +0530167
168 madt->lapic_addr = LAPIC_DEFAULT_BASE;
Bin Meng6a421582016-05-07 07:46:21 -0700169 madt->flags = ACPI_MADT_PCAT_COMPAT;
Saket Sinha331141a2015-08-22 12:20:55 +0530170
171 current = acpi_fill_madt(current);
172
173 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700174 header->length = current - (u32)madt;
Saket Sinha331141a2015-08-22 12:20:55 +0530175
176 header->checksum = table_compute_checksum((void *)madt, header->length);
177}
178
Andy Shevchenkoc1ae9802017-07-21 22:32:05 +0300179int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig, u32 base,
180 u16 seg_nr, u8 start, u8 end)
Saket Sinha331141a2015-08-22 12:20:55 +0530181{
182 memset(mmconfig, 0, sizeof(*mmconfig));
Bin Meng6a421582016-05-07 07:46:21 -0700183 mmconfig->base_address_l = base;
184 mmconfig->base_address_h = 0;
Saket Sinha331141a2015-08-22 12:20:55 +0530185 mmconfig->pci_segment_group_number = seg_nr;
186 mmconfig->start_bus_number = start;
187 mmconfig->end_bus_number = end;
188
189 return sizeof(struct acpi_mcfg_mmconfig);
190}
191
Andy Shevchenkoc1ae9802017-07-21 22:32:05 +0300192__weak u32 acpi_fill_mcfg(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +0530193{
194 current += acpi_create_mcfg_mmconfig
195 ((struct acpi_mcfg_mmconfig *)current,
Bin Meng44256b02016-05-07 07:46:25 -0700196 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
Saket Sinha331141a2015-08-22 12:20:55 +0530197
198 return current;
199}
200
201/* MCFG is defined in the PCI Firmware Specification 3.0 */
202static void acpi_create_mcfg(struct acpi_mcfg *mcfg)
203{
Bin Meng6a421582016-05-07 07:46:21 -0700204 struct acpi_table_header *header = &(mcfg->header);
Bin Menga1ec7db2016-05-07 07:46:26 -0700205 u32 current = (u32)mcfg + sizeof(struct acpi_mcfg);
Saket Sinha331141a2015-08-22 12:20:55 +0530206
207 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
208
209 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700210 acpi_fill_header(header, "MCFG");
Saket Sinha331141a2015-08-22 12:20:55 +0530211 header->length = sizeof(struct acpi_mcfg);
Bin Mengf662fe42016-05-07 07:46:28 -0700212 header->revision = 1;
Saket Sinha331141a2015-08-22 12:20:55 +0530213
214 current = acpi_fill_mcfg(current);
215
216 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700217 header->length = current - (u32)mcfg;
Saket Sinha331141a2015-08-22 12:20:55 +0530218 header->checksum = table_compute_checksum((void *)mcfg, header->length);
219}
220
Simon Glass28026282020-09-22 12:45:33 -0600221/**
222 * acpi_create_tcpa() - Create a TCPA table
223 *
224 * @tcpa: Pointer to place to put table
225 *
226 * Trusted Computing Platform Alliance Capabilities Table
227 * TCPA PC Specific Implementation SpecificationTCPA is defined in the PCI
228 * Firmware Specification 3.0
229 */
230static int acpi_create_tcpa(struct acpi_tcpa *tcpa)
231{
232 struct acpi_table_header *header = &tcpa->header;
233 u32 current = (u32)tcpa + sizeof(struct acpi_tcpa);
234 int size = 0x10000; /* Use this as the default size */
235 void *log;
236 int ret;
237
238 if (!CONFIG_IS_ENABLED(BLOBLIST))
239 return -ENXIO;
240 memset(tcpa, '\0', sizeof(struct acpi_tcpa));
241
242 /* Fill out header fields */
243 acpi_fill_header(header, "TCPA");
244 header->length = sizeof(struct acpi_tcpa);
245 header->revision = 1;
246
247 ret = bloblist_ensure_size_ret(BLOBLISTT_TCPA_LOG, &size, &log);
248 if (ret)
249 return log_msg_ret("blob", ret);
250
251 tcpa->platform_class = 0;
252 tcpa->laml = size;
253 tcpa->lasa = (ulong)log;
254
255 /* (Re)calculate length and checksum */
256 header->length = current - (u32)tcpa;
257 header->checksum = table_compute_checksum((void *)tcpa, header->length);
258
259 return 0;
260}
261
Simon Glass272a7032020-09-22 12:45:32 -0600262static int get_tpm2_log(void **ptrp, int *sizep)
263{
264 const int tpm2_default_log_len = 0x10000;
265 int size;
266 int ret;
267
268 *sizep = 0;
269 size = tpm2_default_log_len;
270 ret = bloblist_ensure_size_ret(BLOBLISTT_TPM2_TCG_LOG, &size, ptrp);
271 if (ret)
272 return log_msg_ret("blob", ret);
273 *sizep = size;
274
275 return 0;
276}
277
278static int acpi_create_tpm2(struct acpi_tpm2 *tpm2)
279{
280 struct acpi_table_header *header = &tpm2->header;
281 int tpm2_log_len;
282 void *lasa;
283 int ret;
284
285 memset((void *)tpm2, 0, sizeof(struct acpi_tpm2));
286
287 /*
288 * Some payloads like SeaBIOS depend on log area to use TPM2.
289 * Get the memory size and address of TPM2 log area or initialize it.
290 */
291 ret = get_tpm2_log(&lasa, &tpm2_log_len);
292 if (ret)
293 return ret;
294
295 /* Fill out header fields. */
296 acpi_fill_header(header, "TPM2");
297 memcpy(header->aslc_id, ASLC_ID, 4);
298
299 header->length = sizeof(struct acpi_tpm2);
300 header->revision = acpi_get_table_revision(ACPITAB_TPM2);
301
302 /* Hard to detect for coreboot. Just set it to 0 */
303 tpm2->platform_class = 0;
304
305 /* Must be set to 0 for FIFO-interface support */
306 tpm2->control_area = 0;
307 tpm2->start_method = 6;
308 memset(tpm2->msp, 0, sizeof(tpm2->msp));
309
310 /* Fill the log area size and start address fields. */
311 tpm2->laml = tpm2_log_len;
312 tpm2->lasa = (uintptr_t)lasa;
313
314 /* Calculate checksum. */
315 header->checksum = table_compute_checksum((void *)tpm2, header->length);
316
317 return 0;
318}
319
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300320__weak u32 acpi_fill_csrt(u32 current)
321{
Simon Glass9eb80042020-07-07 21:32:24 -0600322 return 0;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300323}
324
Simon Glass9eb80042020-07-07 21:32:24 -0600325static int acpi_create_csrt(struct acpi_csrt *csrt)
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300326{
327 struct acpi_table_header *header = &(csrt->header);
328 u32 current = (u32)csrt + sizeof(struct acpi_csrt);
Simon Glass9eb80042020-07-07 21:32:24 -0600329 uint ptr;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300330
331 memset((void *)csrt, 0, sizeof(struct acpi_csrt));
332
333 /* Fill out header fields */
334 acpi_fill_header(header, "CSRT");
335 header->length = sizeof(struct acpi_csrt);
336 header->revision = 0;
337
Simon Glass9eb80042020-07-07 21:32:24 -0600338 ptr = acpi_fill_csrt(current);
339 if (!ptr)
340 return -ENOENT;
341 current = ptr;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300342
343 /* (Re)calculate length and checksum */
344 header->length = current - (u32)csrt;
345 header->checksum = table_compute_checksum((void *)csrt, header->length);
Simon Glass9eb80042020-07-07 21:32:24 -0600346
347 return 0;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300348}
349
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200350static void acpi_create_spcr(struct acpi_spcr *spcr)
351{
352 struct acpi_table_header *header = &(spcr->header);
353 struct serial_device_info serial_info = {0};
354 ulong serial_address, serial_offset;
Simon Glassdaaff932018-12-28 14:23:08 -0700355 struct udevice *dev;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200356 uint serial_config;
357 uint serial_width;
358 int access_size;
359 int space_id;
Andy Shevchenkobf9c8e32019-02-28 17:19:54 +0200360 int ret = -ENODEV;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200361
Wolfgang Wallner13c23e92020-09-16 16:57:53 +0200362 memset((void *)spcr, 0, sizeof(struct acpi_spcr));
363
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200364 /* Fill out header fields */
365 acpi_fill_header(header, "SPCR");
366 header->length = sizeof(struct acpi_spcr);
367 header->revision = 2;
368
Simon Glass896c1642018-12-28 14:23:10 -0700369 /* Read the device once, here. It is reused below */
Andy Shevchenkobf9c8e32019-02-28 17:19:54 +0200370 dev = gd->cur_serial_dev;
371 if (dev)
Simon Glass896c1642018-12-28 14:23:10 -0700372 ret = serial_getinfo(dev, &serial_info);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200373 if (ret)
374 serial_info.type = SERIAL_CHIP_UNKNOWN;
375
376 /* Encode chip type */
377 switch (serial_info.type) {
378 case SERIAL_CHIP_16550_COMPATIBLE:
379 spcr->interface_type = ACPI_DBG2_16550_COMPATIBLE;
380 break;
381 case SERIAL_CHIP_UNKNOWN:
382 default:
383 spcr->interface_type = ACPI_DBG2_UNKNOWN;
384 break;
385 }
386
387 /* Encode address space */
388 switch (serial_info.addr_space) {
389 case SERIAL_ADDRESS_SPACE_MEMORY:
390 space_id = ACPI_ADDRESS_SPACE_MEMORY;
391 break;
392 case SERIAL_ADDRESS_SPACE_IO:
393 default:
394 space_id = ACPI_ADDRESS_SPACE_IO;
395 break;
396 }
397
398 serial_width = serial_info.reg_width * 8;
399 serial_offset = serial_info.reg_offset << serial_info.reg_shift;
400 serial_address = serial_info.addr + serial_offset;
401
402 /* Encode register access size */
403 switch (serial_info.reg_shift) {
404 case 0:
405 access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
406 break;
407 case 1:
408 access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
409 break;
410 case 2:
411 access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
412 break;
413 case 3:
414 access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
415 break;
416 default:
417 access_size = ACPI_ACCESS_SIZE_UNDEFINED;
418 break;
419 }
420
421 debug("UART type %u @ %lx\n", spcr->interface_type, serial_address);
422
423 /* Fill GAS */
424 spcr->serial_port.space_id = space_id;
425 spcr->serial_port.bit_width = serial_width;
426 spcr->serial_port.bit_offset = 0;
427 spcr->serial_port.access_size = access_size;
428 spcr->serial_port.addrl = lower_32_bits(serial_address);
429 spcr->serial_port.addrh = upper_32_bits(serial_address);
430
431 /* Encode baud rate */
432 switch (serial_info.baudrate) {
433 case 9600:
434 spcr->baud_rate = 3;
435 break;
436 case 19200:
437 spcr->baud_rate = 4;
438 break;
439 case 57600:
440 spcr->baud_rate = 6;
441 break;
442 case 115200:
443 spcr->baud_rate = 7;
444 break;
445 default:
446 spcr->baud_rate = 0;
447 break;
448 }
449
Simon Glass896c1642018-12-28 14:23:10 -0700450 serial_config = SERIAL_DEFAULT_CONFIG;
451 if (dev)
Simon Glassdaaff932018-12-28 14:23:08 -0700452 ret = serial_getconfig(dev, &serial_config);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200453
454 spcr->parity = SERIAL_GET_PARITY(serial_config);
455 spcr->stop_bits = SERIAL_GET_STOP(serial_config);
456
457 /* No PCI devices for now */
458 spcr->pci_device_id = 0xffff;
459 spcr->pci_vendor_id = 0xffff;
460
Andy Shevchenko225cc8a2020-02-27 17:21:56 +0200461 /*
462 * SPCR has no clue if the UART base clock speed is different
463 * to the default one. However, the SPCR 1.04 defines baud rate
464 * 0 as a preconfigured state of UART and OS is supposed not
465 * to touch the configuration of the serial device.
466 */
467 if (serial_info.clock != SERIAL_DEFAULT_CLOCK)
468 spcr->baud_rate = 0;
469
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200470 /* Fix checksum */
471 header->checksum = table_compute_checksum((void *)spcr, header->length);
472}
473
Simon Glass05812432020-11-04 09:57:31 -0700474static int acpi_create_ssdt(struct acpi_ctx *ctx,
475 struct acpi_table_header *ssdt,
476 const char *oem_table_id)
Simon Glassf0a8d682020-07-07 13:12:07 -0600477{
478 memset((void *)ssdt, '\0', sizeof(struct acpi_table_header));
479
480 acpi_fill_header(ssdt, "SSDT");
481 ssdt->revision = acpi_get_table_revision(ACPITAB_SSDT);
482 ssdt->aslc_revision = 1;
483 ssdt->length = sizeof(struct acpi_table_header);
484
485 acpi_inc(ctx, sizeof(struct acpi_table_header));
486
487 acpi_fill_ssdt(ctx);
488
Simon Glass05812432020-11-04 09:57:31 -0700489 /* (Re)calculate length and checksum */
Simon Glassf0a8d682020-07-07 13:12:07 -0600490 ssdt->length = ctx->current - (void *)ssdt;
491 ssdt->checksum = table_compute_checksum((void *)ssdt, ssdt->length);
Simon Glass05812432020-11-04 09:57:31 -0700492 log_debug("SSDT at %p, length %x\n", ssdt, ssdt->length);
493
494 /* Drop the table if it is empty */
495 if (ssdt->length == sizeof(struct acpi_table_header)) {
496 ctx->current = ssdt;
497 return -ENOENT;
498 }
499 acpi_align(ctx);
500
501 return 0;
Simon Glassf0a8d682020-07-07 13:12:07 -0600502}
503
Miao Yan3b68c522016-01-20 01:57:06 -0800504/*
Andy Shevchenko4b05bac2018-01-10 19:33:10 +0200505 * QEMU's version of write_acpi_tables is defined in drivers/misc/qfw.c
Miao Yan3b68c522016-01-20 01:57:06 -0800506 */
Simon Glass0e113842020-04-26 09:19:47 -0600507ulong write_acpi_tables(ulong start_addr)
Saket Sinha331141a2015-08-22 12:20:55 +0530508{
Simon Glass4ead23d2020-11-04 09:57:32 -0700509 const int thl = sizeof(struct acpi_table_header);
Simon Glassde0115a2020-11-04 09:57:19 -0700510 struct acpi_ctx *ctx;
Saket Sinha331141a2015-08-22 12:20:55 +0530511 struct acpi_facs *facs;
Bin Meng6a421582016-05-07 07:46:21 -0700512 struct acpi_table_header *dsdt;
Saket Sinha331141a2015-08-22 12:20:55 +0530513 struct acpi_fadt *fadt;
Simon Glassf0a8d682020-07-07 13:12:07 -0600514 struct acpi_table_header *ssdt;
Saket Sinha331141a2015-08-22 12:20:55 +0530515 struct acpi_mcfg *mcfg;
Simon Glass28026282020-09-22 12:45:33 -0600516 struct acpi_tcpa *tcpa;
Saket Sinha331141a2015-08-22 12:20:55 +0530517 struct acpi_madt *madt;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300518 struct acpi_csrt *csrt;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200519 struct acpi_spcr *spcr;
Simon Glass0e113842020-04-26 09:19:47 -0600520 void *start;
Simon Glass4ead23d2020-11-04 09:57:32 -0700521 int aml_len;
Simon Glass0e113842020-04-26 09:19:47 -0600522 ulong addr;
Simon Glass28026282020-09-22 12:45:33 -0600523 int ret;
Bin Mengd9050c62016-06-17 02:13:16 -0700524 int i;
Saket Sinha331141a2015-08-22 12:20:55 +0530525
Simon Glassde0115a2020-11-04 09:57:19 -0700526 ctx = calloc(1, sizeof(*ctx));
527 if (!ctx)
528 return log_msg_ret("mem", -ENOMEM);
529 gd->acpi_ctx = ctx;
530
Simon Glass0e113842020-04-26 09:19:47 -0600531 start = map_sysmem(start_addr, 0);
Saket Sinha331141a2015-08-22 12:20:55 +0530532
Simon Glass0e113842020-04-26 09:19:47 -0600533 debug("ACPI: Writing ACPI tables at %lx\n", start_addr);
Saket Sinha331141a2015-08-22 12:20:55 +0530534
Simon Glassa385d492020-11-04 09:57:33 -0700535 acpi_reset_items();
Simon Glass9c442a62020-04-26 09:19:51 -0600536 acpi_setup_base_tables(ctx, start);
Saket Sinha331141a2015-08-22 12:20:55 +0530537
538 debug("ACPI: * FACS\n");
Simon Glass0e113842020-04-26 09:19:47 -0600539 facs = ctx->current;
540 acpi_inc_align(ctx, sizeof(struct acpi_facs));
Saket Sinha331141a2015-08-22 12:20:55 +0530541
542 acpi_create_facs(facs);
543
544 debug("ACPI: * DSDT\n");
Simon Glass0e113842020-04-26 09:19:47 -0600545 dsdt = ctx->current;
Simon Glass6ca93152020-07-07 13:12:09 -0600546
547 /* Put the table header first */
Simon Glass4ead23d2020-11-04 09:57:32 -0700548 memcpy(dsdt, &AmlCode, thl);
549 acpi_inc(ctx, thl);
550 log_debug("DSDT starts at %p, hdr ends at %p\n", dsdt, ctx->current);
Simon Glass6ca93152020-07-07 13:12:09 -0600551
552 /* If the table is not empty, allow devices to inject things */
Simon Glass4ead23d2020-11-04 09:57:32 -0700553 aml_len = dsdt->length - thl;
554 if (aml_len) {
555 void *base = ctx->current;
Simon Glass6ca93152020-07-07 13:12:09 -0600556
Simon Glass4ead23d2020-11-04 09:57:32 -0700557 acpi_inject_dsdt(ctx);
558 log_debug("Added %x bytes from inject_dsdt, now at %p\n",
559 ctx->current - base, ctx->current);
560 log_debug("Copy AML code size %x to %p\n", aml_len,
561 ctx->current);
562 memcpy(ctx->current, AmlCode + thl, aml_len);
563 acpi_inc(ctx, aml_len);
564 }
Simon Glass6ca93152020-07-07 13:12:09 -0600565
Simon Glass6fe570a2020-09-22 12:44:53 -0600566 dsdt->length = ctx->current - (void *)dsdt;
567 acpi_align(ctx);
Simon Glass4ead23d2020-11-04 09:57:32 -0700568 log_debug("Updated DSDT length to %x, total %x\n", dsdt->length,
569 ctx->current - (void *)dsdt);
Saket Sinha331141a2015-08-22 12:20:55 +0530570
Simon Glass6fe570a2020-09-22 12:44:53 -0600571 if (!IS_ENABLED(CONFIG_ACPI_GNVS_EXTERNAL)) {
572 /* Pack GNVS into the ACPI table area */
573 for (i = 0; i < dsdt->length; i++) {
574 u32 *gnvs = (u32 *)((u32)dsdt + i);
Simon Glass0e113842020-04-26 09:19:47 -0600575
Simon Glass6fe570a2020-09-22 12:44:53 -0600576 if (*gnvs == ACPI_GNVS_ADDR) {
577 *gnvs = map_to_sysmem(ctx->current);
578 debug("Fix up global NVS in DSDT to %#08x\n",
579 *gnvs);
580 break;
581 }
Bin Mengd9050c62016-06-17 02:13:16 -0700582 }
Simon Glass6fe570a2020-09-22 12:44:53 -0600583
584 /*
585 * Fill in platform-specific global NVS variables. If this fails
586 * we cannot return the error but this should only happen while
587 * debugging.
588 */
589 addr = acpi_create_gnvs(ctx->current);
590 if (IS_ERR_VALUE(addr))
591 printf("Error: Gailed to create GNVS\n");
592 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Mengd9050c62016-06-17 02:13:16 -0700593 }
594
Simon Glass6ca93152020-07-07 13:12:09 -0600595 /*
596 * Recalculate the length and update the DSDT checksum since we patched
597 * the GNVS address. Set the checksum to zero since it is part of the
598 * region being checksummed.
599 */
Bin Mengd9050c62016-06-17 02:13:16 -0700600 dsdt->checksum = 0;
601 dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length);
602
Simon Glass9ed41e72020-07-07 21:32:05 -0600603 /*
604 * Fill in platform-specific global NVS variables. If this fails we
605 * cannot return the error but this should only happen while debugging.
606 */
607 addr = acpi_create_gnvs(ctx->current);
608 if (IS_ERR_VALUE(addr))
609 printf("Error: Failed to create GNVS\n");
610
Simon Glass0e113842020-04-26 09:19:47 -0600611 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Mengd9050c62016-06-17 02:13:16 -0700612
Saket Sinha331141a2015-08-22 12:20:55 +0530613 debug("ACPI: * FADT\n");
Simon Glass0e113842020-04-26 09:19:47 -0600614 fadt = ctx->current;
615 acpi_inc_align(ctx, sizeof(struct acpi_fadt));
Saket Sinha331141a2015-08-22 12:20:55 +0530616 acpi_create_fadt(fadt, facs, dsdt);
Simon Glass575a5472020-04-26 09:19:50 -0600617 acpi_add_table(ctx, fadt);
Saket Sinha331141a2015-08-22 12:20:55 +0530618
Simon Glassf0a8d682020-07-07 13:12:07 -0600619 debug("ACPI: * SSDT\n");
620 ssdt = (struct acpi_table_header *)ctx->current;
Simon Glass05812432020-11-04 09:57:31 -0700621 if (!acpi_create_ssdt(ctx, ssdt, OEM_TABLE_ID))
Simon Glassf0a8d682020-07-07 13:12:07 -0600622 acpi_add_table(ctx, ssdt);
Simon Glassf0a8d682020-07-07 13:12:07 -0600623
Bin Meng44256b02016-05-07 07:46:25 -0700624 debug("ACPI: * MCFG\n");
Simon Glass0e113842020-04-26 09:19:47 -0600625 mcfg = ctx->current;
Bin Meng44256b02016-05-07 07:46:25 -0700626 acpi_create_mcfg(mcfg);
Simon Glass0e113842020-04-26 09:19:47 -0600627 acpi_inc_align(ctx, mcfg->header.length);
Simon Glass575a5472020-04-26 09:19:50 -0600628 acpi_add_table(ctx, mcfg);
Bin Meng44256b02016-05-07 07:46:25 -0700629
Simon Glass272a7032020-09-22 12:45:32 -0600630 if (IS_ENABLED(CONFIG_TPM_V2)) {
631 struct acpi_tpm2 *tpm2;
Simon Glass272a7032020-09-22 12:45:32 -0600632
633 debug("ACPI: * TPM2\n");
634 tpm2 = (struct acpi_tpm2 *)ctx->current;
635 ret = acpi_create_tpm2(tpm2);
636 if (!ret) {
637 acpi_inc_align(ctx, tpm2->header.length);
638 acpi_add_table(ctx, tpm2);
639 } else {
640 log_warning("TPM2 table creation failed\n");
641 }
642 }
643
Simon Glassc7c46e82020-07-07 13:12:04 -0600644 debug("ACPI: * MADT\n");
645 madt = ctx->current;
646 acpi_create_madt(madt);
647 acpi_inc_align(ctx, madt->header.length);
648 acpi_add_table(ctx, madt);
649
Simon Glass14ca07c2020-11-04 09:57:40 -0700650 if (IS_ENABLED(CONFIG_TPM_V1)) {
651 debug("ACPI: * TCPA\n");
652 tcpa = (struct acpi_tcpa *)ctx->current;
653 ret = acpi_create_tcpa(tcpa);
654 if (ret) {
655 log_warning("Failed to create TCPA table (err=%d)\n",
656 ret);
657 } else {
658 acpi_inc_align(ctx, tcpa->header.length);
659 acpi_add_table(ctx, tcpa);
660 }
Simon Glass28026282020-09-22 12:45:33 -0600661 }
662
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300663 debug("ACPI: * CSRT\n");
Simon Glass0e113842020-04-26 09:19:47 -0600664 csrt = ctx->current;
Simon Glass9eb80042020-07-07 21:32:24 -0600665 if (!acpi_create_csrt(csrt)) {
666 acpi_inc_align(ctx, csrt->header.length);
667 acpi_add_table(ctx, csrt);
668 }
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300669
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200670 debug("ACPI: * SPCR\n");
Simon Glass0e113842020-04-26 09:19:47 -0600671 spcr = ctx->current;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200672 acpi_create_spcr(spcr);
Simon Glass0e113842020-04-26 09:19:47 -0600673 acpi_inc_align(ctx, spcr->header.length);
Simon Glass575a5472020-04-26 09:19:50 -0600674 acpi_add_table(ctx, spcr);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200675
Simon Glass179fb822020-04-26 09:19:48 -0600676 acpi_write_dev_tables(ctx);
677
Simon Glass0e113842020-04-26 09:19:47 -0600678 addr = map_to_sysmem(ctx->current);
679 debug("current = %lx\n", addr);
Saket Sinha331141a2015-08-22 12:20:55 +0530680
Simon Glass575a5472020-04-26 09:19:50 -0600681 acpi_rsdp_addr = (unsigned long)ctx->rsdp;
Bin Mengd2d22182016-05-07 07:46:12 -0700682 debug("ACPI: done\n");
Saket Sinha331141a2015-08-22 12:20:55 +0530683
Simon Glass0e113842020-04-26 09:19:47 -0600684 return addr;
Saket Sinha331141a2015-08-22 12:20:55 +0530685}
Bin Meng34bc74a2017-04-21 07:24:36 -0700686
Bin Menge1029252018-01-30 05:01:16 -0800687ulong acpi_get_rsdp_addr(void)
688{
689 return acpi_rsdp_addr;
690}
Simon Glass4ffe8b02020-09-22 12:45:09 -0600691
692/**
693 * acpi_write_hpet() - Write out a HPET table
694 *
695 * Write out the table for High-Precision Event Timers
696 *
697 * @hpet: Place to put HPET table
698 */
699static int acpi_create_hpet(struct acpi_hpet *hpet)
700{
701 struct acpi_table_header *header = &hpet->header;
702 struct acpi_gen_regaddr *addr = &hpet->addr;
703
704 /*
705 * See IA-PC HPET (High Precision Event Timers) Specification v1.0a
706 * https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/software-developers-hpet-spec-1-0a.pdf
707 */
708 memset((void *)hpet, '\0', sizeof(struct acpi_hpet));
709
710 /* Fill out header fields. */
711 acpi_fill_header(header, "HPET");
712
713 header->aslc_revision = ASL_REVISION;
714 header->length = sizeof(struct acpi_hpet);
715 header->revision = acpi_get_table_revision(ACPITAB_HPET);
716
717 /* Fill out HPET address */
718 addr->space_id = 0; /* Memory */
719 addr->bit_width = 64;
720 addr->bit_offset = 0;
721 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
722 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
723
724 hpet->id = *(u32 *)CONFIG_HPET_ADDRESS;
725 hpet->number = 0;
726 hpet->min_tick = 0; /* HPET_MIN_TICKS */
727
728 header->checksum = table_compute_checksum(hpet,
729 sizeof(struct acpi_hpet));
730
731 return 0;
732}
733
734int acpi_write_hpet(struct acpi_ctx *ctx)
735{
736 struct acpi_hpet *hpet;
737 int ret;
738
739 log_debug("ACPI: * HPET\n");
740
741 hpet = ctx->current;
742 acpi_inc_align(ctx, sizeof(struct acpi_hpet));
743 acpi_create_hpet(hpet);
744 ret = acpi_add_table(ctx, hpet);
745 if (ret)
746 return log_msg_ret("add", ret);
747
748 return 0;
749}
Simon Glass95971892020-09-22 12:45:10 -0600750
751int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev,
752 uint access_size)
753{
754 struct acpi_dbg2_header *dbg2 = ctx->current;
755 char path[ACPI_PATH_MAX];
756 struct acpi_gen_regaddr address;
757 phys_addr_t addr;
758 int ret;
759
760 if (!device_active(dev)) {
761 log_info("Device not enabled\n");
762 return -EACCES;
763 }
764 /*
765 * PCI devices don't remember their resource allocation information in
766 * U-Boot at present. We assume that MMIO is used for the UART and that
767 * the address space is 32 bytes: ns16550 uses 8 registers of up to
768 * 32-bits each. This is only for debugging so it is not a big deal.
769 */
770 addr = dm_pci_read_bar32(dev, 0);
Simon Glass75081202020-11-04 09:57:41 -0700771 log_debug("UART addr %lx\n", (ulong)addr);
Simon Glass95971892020-09-22 12:45:10 -0600772
773 memset(&address, '\0', sizeof(address));
774 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
775 address.addrl = (uint32_t)addr;
776 address.addrh = (uint32_t)((addr >> 32) & 0xffffffff);
777 address.access_size = access_size;
778
779 ret = acpi_device_path(dev, path, sizeof(path));
780 if (ret)
781 return log_msg_ret("path", ret);
782 acpi_create_dbg2(dbg2, ACPI_DBG2_SERIAL_PORT,
783 ACPI_DBG2_16550_COMPATIBLE, &address, 0x1000, path);
784
785 acpi_inc_align(ctx, dbg2->header.length);
786 acpi_add_table(ctx, dbg2);
787
788 return 0;
789}
Simon Glass87cf8d22020-09-22 12:45:16 -0600790
791void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs,
792 void *dsdt)
793{
794 struct acpi_table_header *header = &fadt->header;
795
796 memset((void *)fadt, '\0', sizeof(struct acpi_fadt));
797
798 acpi_fill_header(header, "FACP");
799 header->length = sizeof(struct acpi_fadt);
800 header->revision = 4;
801 memcpy(header->oem_id, OEM_ID, 6);
802 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
803 memcpy(header->aslc_id, ASLC_ID, 4);
804 header->aslc_revision = 1;
805
806 fadt->firmware_ctrl = (unsigned long)facs;
807 fadt->dsdt = (unsigned long)dsdt;
808
809 fadt->x_firmware_ctl_l = (unsigned long)facs;
810 fadt->x_firmware_ctl_h = 0;
811 fadt->x_dsdt_l = (unsigned long)dsdt;
812 fadt->x_dsdt_h = 0;
813
814 fadt->preferred_pm_profile = ACPI_PM_MOBILE;
815
816 /* Use ACPI 3.0 revision */
817 fadt->header.revision = 4;
818}
819
820void acpi_create_dmar_drhd(struct acpi_ctx *ctx, uint flags, uint segment,
821 u64 bar)
822{
823 struct dmar_entry *drhd = ctx->current;
824
825 memset(drhd, '\0', sizeof(*drhd));
826 drhd->type = DMAR_DRHD;
827 drhd->length = sizeof(*drhd); /* will be fixed up later */
828 drhd->flags = flags;
829 drhd->segment = segment;
830 drhd->bar = bar;
831 acpi_inc(ctx, drhd->length);
832}
833
834void acpi_create_dmar_rmrr(struct acpi_ctx *ctx, uint segment, u64 bar,
835 u64 limit)
836{
837 struct dmar_rmrr_entry *rmrr = ctx->current;
838
839 memset(rmrr, '\0', sizeof(*rmrr));
840 rmrr->type = DMAR_RMRR;
841 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
842 rmrr->segment = segment;
843 rmrr->bar = bar;
844 rmrr->limit = limit;
845 acpi_inc(ctx, rmrr->length);
846}
847
848void acpi_dmar_drhd_fixup(struct acpi_ctx *ctx, void *base)
849{
850 struct dmar_entry *drhd = base;
851
852 drhd->length = ctx->current - base;
853}
854
855void acpi_dmar_rmrr_fixup(struct acpi_ctx *ctx, void *base)
856{
857 struct dmar_rmrr_entry *rmrr = base;
858
859 rmrr->length = ctx->current - base;
860}
861
862static int acpi_create_dmar_ds(struct acpi_ctx *ctx, enum dev_scope_type type,
863 uint enumeration_id, pci_dev_t bdf)
864{
865 /* we don't support longer paths yet */
866 const size_t dev_scope_length = sizeof(struct dev_scope) + 2;
867 struct dev_scope *ds = ctx->current;
868
869 memset(ds, '\0', dev_scope_length);
870 ds->type = type;
871 ds->length = dev_scope_length;
872 ds->enumeration = enumeration_id;
873 ds->start_bus = PCI_BUS(bdf);
874 ds->path[0].dev = PCI_DEV(bdf);
875 ds->path[0].fn = PCI_FUNC(bdf);
876
877 return ds->length;
878}
879
880int acpi_create_dmar_ds_pci_br(struct acpi_ctx *ctx, pci_dev_t bdf)
881{
882 return acpi_create_dmar_ds(ctx, SCOPE_PCI_SUB, 0, bdf);
883}
884
885int acpi_create_dmar_ds_pci(struct acpi_ctx *ctx, pci_dev_t bdf)
886{
887 return acpi_create_dmar_ds(ctx, SCOPE_PCI_ENDPOINT, 0, bdf);
888}
889
890int acpi_create_dmar_ds_ioapic(struct acpi_ctx *ctx, uint enumeration_id,
891 pci_dev_t bdf)
892{
893 return acpi_create_dmar_ds(ctx, SCOPE_IOAPIC, enumeration_id, bdf);
894}
895
896int acpi_create_dmar_ds_msi_hpet(struct acpi_ctx *ctx, uint enumeration_id,
897 pci_dev_t bdf)
898{
899 return acpi_create_dmar_ds(ctx, SCOPE_MSI_HPET, enumeration_id, bdf);
900}