blob: f0f342d89358ce176c35e35f64c2af6a4634d056 [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>
Saket Sinha331141a2015-08-22 12:20:55 +053025#include <asm/lapic.h>
Andy Shevchenko13a5d872017-07-21 22:32:04 +030026#include <asm/mpspec.h>
Saket Sinha331141a2015-08-22 12:20:55 +053027#include <asm/tables.h>
Bin Mengd9050c62016-06-17 02:13:16 -070028#include <asm/arch/global_nvs.h>
Simon Glass0e113842020-04-26 09:19:47 -060029#include <dm/acpi.h>
Simon Glass9ed41e72020-07-07 21:32:05 -060030#include <linux/err.h>
Saket Sinha331141a2015-08-22 12:20:55 +053031
32/*
Bin Mengb063d5f2016-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 Sinha331141a2015-08-22 12:20:55 +053035 */
36extern const unsigned char AmlCode[];
37
Andy Shevchenko66d3e632018-01-10 19:40:15 +020038/* ACPI RSDP address to be used in boot parameters */
Bin Menge1029252018-01-30 05:01:16 -080039static ulong acpi_rsdp_addr;
Andy Shevchenko66d3e632018-01-10 19:40:15 +020040
Bin Meng44256b02016-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
Saket Sinha331141a2015-08-22 12:20:55 +053056static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
Bin Meng44256b02016-05-07 07:46:25 -070057 u8 cpu, u8 apic)
Saket Sinha331141a2015-08-22 12:20:55 +053058{
Bin Meng44256b02016-05-07 07:46:25 -070059 lapic->type = ACPI_APIC_LAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +053060 lapic->length = sizeof(struct acpi_madt_lapic);
Bin Meng44256b02016-05-07 07:46:25 -070061 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
Saket Sinha331141a2015-08-22 12:20:55 +053062 lapic->processor_id = cpu;
63 lapic->apic_id = apic;
64
65 return lapic->length;
66}
67
Bin Meng3c5234e2016-05-07 07:46:30 -070068int acpi_create_madt_lapics(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +053069{
70 struct udevice *dev;
George McCollister5a49f872016-06-07 13:40:18 -050071 int total_length = 0;
Simon Glassfcae5472020-09-22 12:45:31 -060072 int cpu_num = 0;
Saket Sinha331141a2015-08-22 12:20:55 +053073
74 for (uclass_find_first_device(UCLASS_CPU, &dev);
75 dev;
76 uclass_find_next_device(&dev)) {
77 struct cpu_platdata *plat = dev_get_parent_platdata(dev);
Simon Glassfcae5472020-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 Meng3c5234e2016-05-07 07:46:30 -070083 current += length;
George McCollister5a49f872016-06-07 13:40:18 -050084 total_length += length;
Bin Meng44256b02016-05-07 07:46:25 -070085 }
86
George McCollister5a49f872016-06-07 13:40:18 -050087 return total_length;
Saket Sinha331141a2015-08-22 12:20:55 +053088}
89
Bin Meng44256b02016-05-07 07:46:25 -070090int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
91 u32 addr, u32 gsi_base)
Saket Sinha331141a2015-08-22 12:20:55 +053092{
Bin Meng6a421582016-05-07 07:46:21 -070093 ioapic->type = ACPI_APIC_IOAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +053094 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,
Bin Meng44256b02016-05-07 07:46:25 -0700104 u8 bus, u8 source, u32 gsirq, u16 flags)
Saket Sinha331141a2015-08-22 12:20:55 +0530105{
Bin Meng6a421582016-05-07 07:46:21 -0700106 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
Saket Sinha331141a2015-08-22 12:20:55 +0530107 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,
Bin Meng44256b02016-05-07 07:46:25 -0700117 u8 cpu, u16 flags, u8 lint)
Saket Sinha331141a2015-08-22 12:20:55 +0530118{
Bin Meng6a421582016-05-07 07:46:21 -0700119 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
Saket Sinha331141a2015-08-22 12:20:55 +0530120 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 Shevchenko13a5d872017-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
Saket Sinha331141a2015-08-22 12:20:55 +0530155static void acpi_create_madt(struct acpi_madt *madt)
156{
Bin Meng6a421582016-05-07 07:46:21 -0700157 struct acpi_table_header *header = &(madt->header);
Bin Menga1ec7db2016-05-07 07:46:26 -0700158 u32 current = (u32)madt + sizeof(struct acpi_madt);
Saket Sinha331141a2015-08-22 12:20:55 +0530159
160 memset((void *)madt, 0, sizeof(struct acpi_madt));
161
162 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700163 acpi_fill_header(header, "APIC");
Saket Sinha331141a2015-08-22 12:20:55 +0530164 header->length = sizeof(struct acpi_madt);
Simon Glassf3694aa2020-07-16 21:22:37 -0600165 header->revision = ACPI_MADT_REV_ACPI_3_0;
Saket Sinha331141a2015-08-22 12:20:55 +0530166
167 madt->lapic_addr = LAPIC_DEFAULT_BASE;
Bin Meng6a421582016-05-07 07:46:21 -0700168 madt->flags = ACPI_MADT_PCAT_COMPAT;
Saket Sinha331141a2015-08-22 12:20:55 +0530169
170 current = acpi_fill_madt(current);
171
172 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700173 header->length = current - (u32)madt;
Saket Sinha331141a2015-08-22 12:20:55 +0530174
175 header->checksum = table_compute_checksum((void *)madt, header->length);
176}
177
Andy Shevchenkoc1ae9802017-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)
Saket Sinha331141a2015-08-22 12:20:55 +0530180{
181 memset(mmconfig, 0, sizeof(*mmconfig));
Bin Meng6a421582016-05-07 07:46:21 -0700182 mmconfig->base_address_l = base;
183 mmconfig->base_address_h = 0;
Saket Sinha331141a2015-08-22 12:20:55 +0530184 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 Shevchenkoc1ae9802017-07-21 22:32:05 +0300191__weak u32 acpi_fill_mcfg(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +0530192{
193 current += acpi_create_mcfg_mmconfig
194 ((struct acpi_mcfg_mmconfig *)current,
Bin Meng44256b02016-05-07 07:46:25 -0700195 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
Saket Sinha331141a2015-08-22 12:20:55 +0530196
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{
Bin Meng6a421582016-05-07 07:46:21 -0700203 struct acpi_table_header *header = &(mcfg->header);
Bin Menga1ec7db2016-05-07 07:46:26 -0700204 u32 current = (u32)mcfg + sizeof(struct acpi_mcfg);
Saket Sinha331141a2015-08-22 12:20:55 +0530205
206 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
207
208 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700209 acpi_fill_header(header, "MCFG");
Saket Sinha331141a2015-08-22 12:20:55 +0530210 header->length = sizeof(struct acpi_mcfg);
Bin Mengf662fe42016-05-07 07:46:28 -0700211 header->revision = 1;
Saket Sinha331141a2015-08-22 12:20:55 +0530212
213 current = acpi_fill_mcfg(current);
214
215 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700216 header->length = current - (u32)mcfg;
Saket Sinha331141a2015-08-22 12:20:55 +0530217 header->checksum = table_compute_checksum((void *)mcfg, header->length);
218}
219
Simon Glass28026282020-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 Glass272a7032020-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 Shevchenko607dbd12019-07-14 19:23:57 +0300319__weak u32 acpi_fill_csrt(u32 current)
320{
Simon Glass9eb80042020-07-07 21:32:24 -0600321 return 0;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300322}
323
Simon Glass9eb80042020-07-07 21:32:24 -0600324static int acpi_create_csrt(struct acpi_csrt *csrt)
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300325{
326 struct acpi_table_header *header = &(csrt->header);
327 u32 current = (u32)csrt + sizeof(struct acpi_csrt);
Simon Glass9eb80042020-07-07 21:32:24 -0600328 uint ptr;
Andy Shevchenko607dbd12019-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 Glass9eb80042020-07-07 21:32:24 -0600337 ptr = acpi_fill_csrt(current);
338 if (!ptr)
339 return -ENOENT;
340 current = ptr;
Andy Shevchenko607dbd12019-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 Glass9eb80042020-07-07 21:32:24 -0600345
346 return 0;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300347}
348
Andy Shevchenko4ca48c92018-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 Glassdaaff932018-12-28 14:23:08 -0700354 struct udevice *dev;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200355 uint serial_config;
356 uint serial_width;
357 int access_size;
358 int space_id;
Andy Shevchenkobf9c8e32019-02-28 17:19:54 +0200359 int ret = -ENODEV;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200360
Wolfgang Wallner13c23e92020-09-16 16:57:53 +0200361 memset((void *)spcr, 0, sizeof(struct acpi_spcr));
362
Andy Shevchenko4ca48c92018-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 Glass896c1642018-12-28 14:23:10 -0700368 /* Read the device once, here. It is reused below */
Andy Shevchenkobf9c8e32019-02-28 17:19:54 +0200369 dev = gd->cur_serial_dev;
370 if (dev)
Simon Glass896c1642018-12-28 14:23:10 -0700371 ret = serial_getinfo(dev, &serial_info);
Andy Shevchenko4ca48c92018-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 Glass896c1642018-12-28 14:23:10 -0700449 serial_config = SERIAL_DEFAULT_CONFIG;
450 if (dev)
Simon Glassdaaff932018-12-28 14:23:08 -0700451 ret = serial_getconfig(dev, &serial_config);
Andy Shevchenko4ca48c92018-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 Shevchenko225cc8a2020-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 Shevchenko4ca48c92018-11-20 23:52:38 +0200469 /* Fix checksum */
470 header->checksum = table_compute_checksum((void *)spcr, header->length);
471}
472
Simon Glassf0a8d682020-07-07 13:12:07 -0600473void acpi_create_ssdt(struct acpi_ctx *ctx, struct acpi_table_header *ssdt,
474 const char *oem_table_id)
475{
476 memset((void *)ssdt, '\0', sizeof(struct acpi_table_header));
477
478 acpi_fill_header(ssdt, "SSDT");
479 ssdt->revision = acpi_get_table_revision(ACPITAB_SSDT);
480 ssdt->aslc_revision = 1;
481 ssdt->length = sizeof(struct acpi_table_header);
482
483 acpi_inc(ctx, sizeof(struct acpi_table_header));
484
485 acpi_fill_ssdt(ctx);
486
487 /* (Re)calculate length and checksum. */
488 ssdt->length = ctx->current - (void *)ssdt;
489 ssdt->checksum = table_compute_checksum((void *)ssdt, ssdt->length);
490}
491
Miao Yan3b68c522016-01-20 01:57:06 -0800492/*
Andy Shevchenko4b05bac2018-01-10 19:33:10 +0200493 * QEMU's version of write_acpi_tables is defined in drivers/misc/qfw.c
Miao Yan3b68c522016-01-20 01:57:06 -0800494 */
Simon Glass0e113842020-04-26 09:19:47 -0600495ulong write_acpi_tables(ulong start_addr)
Saket Sinha331141a2015-08-22 12:20:55 +0530496{
Simon Glassde0115a2020-11-04 09:57:19 -0700497 struct acpi_ctx *ctx;
Saket Sinha331141a2015-08-22 12:20:55 +0530498 struct acpi_facs *facs;
Bin Meng6a421582016-05-07 07:46:21 -0700499 struct acpi_table_header *dsdt;
Saket Sinha331141a2015-08-22 12:20:55 +0530500 struct acpi_fadt *fadt;
Simon Glassf0a8d682020-07-07 13:12:07 -0600501 struct acpi_table_header *ssdt;
Saket Sinha331141a2015-08-22 12:20:55 +0530502 struct acpi_mcfg *mcfg;
Simon Glass28026282020-09-22 12:45:33 -0600503 struct acpi_tcpa *tcpa;
Saket Sinha331141a2015-08-22 12:20:55 +0530504 struct acpi_madt *madt;
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300505 struct acpi_csrt *csrt;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200506 struct acpi_spcr *spcr;
Simon Glass0e113842020-04-26 09:19:47 -0600507 void *start;
508 ulong addr;
Simon Glass28026282020-09-22 12:45:33 -0600509 int ret;
Bin Mengd9050c62016-06-17 02:13:16 -0700510 int i;
Saket Sinha331141a2015-08-22 12:20:55 +0530511
Simon Glassde0115a2020-11-04 09:57:19 -0700512 ctx = calloc(1, sizeof(*ctx));
513 if (!ctx)
514 return log_msg_ret("mem", -ENOMEM);
515 gd->acpi_ctx = ctx;
516
Simon Glass0e113842020-04-26 09:19:47 -0600517 start = map_sysmem(start_addr, 0);
Saket Sinha331141a2015-08-22 12:20:55 +0530518
Simon Glass0e113842020-04-26 09:19:47 -0600519 debug("ACPI: Writing ACPI tables at %lx\n", start_addr);
Saket Sinha331141a2015-08-22 12:20:55 +0530520
Simon Glass9c442a62020-04-26 09:19:51 -0600521 acpi_setup_base_tables(ctx, start);
Saket Sinha331141a2015-08-22 12:20:55 +0530522
523 debug("ACPI: * FACS\n");
Simon Glass0e113842020-04-26 09:19:47 -0600524 facs = ctx->current;
525 acpi_inc_align(ctx, sizeof(struct acpi_facs));
Saket Sinha331141a2015-08-22 12:20:55 +0530526
527 acpi_create_facs(facs);
528
529 debug("ACPI: * DSDT\n");
Simon Glass0e113842020-04-26 09:19:47 -0600530 dsdt = ctx->current;
Simon Glass6ca93152020-07-07 13:12:09 -0600531
532 /* Put the table header first */
Bin Meng6a421582016-05-07 07:46:21 -0700533 memcpy(dsdt, &AmlCode, sizeof(struct acpi_table_header));
Simon Glass0e113842020-04-26 09:19:47 -0600534 acpi_inc(ctx, sizeof(struct acpi_table_header));
Simon Glass6ca93152020-07-07 13:12:09 -0600535
536 /* If the table is not empty, allow devices to inject things */
537 if (dsdt->length >= sizeof(struct acpi_table_header))
538 acpi_inject_dsdt(ctx);
539
540 /* Copy in the AML code itself if any (after the header) */
Simon Glass0e113842020-04-26 09:19:47 -0600541 memcpy(ctx->current,
Bin Mengd90434b2016-05-11 07:45:05 -0700542 (char *)&AmlCode + sizeof(struct acpi_table_header),
543 dsdt->length - sizeof(struct acpi_table_header));
Simon Glass6ca93152020-07-07 13:12:09 -0600544
Wolfgang Wallneraa202822020-09-16 16:57:52 +0200545 acpi_inc(ctx, dsdt->length - sizeof(struct acpi_table_header));
Simon Glass6fe570a2020-09-22 12:44:53 -0600546 dsdt->length = ctx->current - (void *)dsdt;
547 acpi_align(ctx);
Saket Sinha331141a2015-08-22 12:20:55 +0530548
Simon Glass6fe570a2020-09-22 12:44:53 -0600549 if (!IS_ENABLED(CONFIG_ACPI_GNVS_EXTERNAL)) {
550 /* Pack GNVS into the ACPI table area */
551 for (i = 0; i < dsdt->length; i++) {
552 u32 *gnvs = (u32 *)((u32)dsdt + i);
Simon Glass0e113842020-04-26 09:19:47 -0600553
Simon Glass6fe570a2020-09-22 12:44:53 -0600554 if (*gnvs == ACPI_GNVS_ADDR) {
555 *gnvs = map_to_sysmem(ctx->current);
556 debug("Fix up global NVS in DSDT to %#08x\n",
557 *gnvs);
558 break;
559 }
Bin Mengd9050c62016-06-17 02:13:16 -0700560 }
Simon Glass6fe570a2020-09-22 12:44:53 -0600561
562 /*
563 * Fill in platform-specific global NVS variables. If this fails
564 * we cannot return the error but this should only happen while
565 * debugging.
566 */
567 addr = acpi_create_gnvs(ctx->current);
568 if (IS_ERR_VALUE(addr))
569 printf("Error: Gailed to create GNVS\n");
570 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Mengd9050c62016-06-17 02:13:16 -0700571 }
572
Simon Glass6ca93152020-07-07 13:12:09 -0600573 /*
574 * Recalculate the length and update the DSDT checksum since we patched
575 * the GNVS address. Set the checksum to zero since it is part of the
576 * region being checksummed.
577 */
Bin Mengd9050c62016-06-17 02:13:16 -0700578 dsdt->checksum = 0;
579 dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length);
580
Simon Glass9ed41e72020-07-07 21:32:05 -0600581 /*
582 * Fill in platform-specific global NVS variables. If this fails we
583 * cannot return the error but this should only happen while debugging.
584 */
585 addr = acpi_create_gnvs(ctx->current);
586 if (IS_ERR_VALUE(addr))
587 printf("Error: Failed to create GNVS\n");
588
Simon Glass0e113842020-04-26 09:19:47 -0600589 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Mengd9050c62016-06-17 02:13:16 -0700590
Saket Sinha331141a2015-08-22 12:20:55 +0530591 debug("ACPI: * FADT\n");
Simon Glass0e113842020-04-26 09:19:47 -0600592 fadt = ctx->current;
593 acpi_inc_align(ctx, sizeof(struct acpi_fadt));
Saket Sinha331141a2015-08-22 12:20:55 +0530594 acpi_create_fadt(fadt, facs, dsdt);
Simon Glass575a5472020-04-26 09:19:50 -0600595 acpi_add_table(ctx, fadt);
Saket Sinha331141a2015-08-22 12:20:55 +0530596
Simon Glassf0a8d682020-07-07 13:12:07 -0600597 debug("ACPI: * SSDT\n");
598 ssdt = (struct acpi_table_header *)ctx->current;
599 acpi_create_ssdt(ctx, ssdt, OEM_TABLE_ID);
600 if (ssdt->length > sizeof(struct acpi_table_header)) {
601 acpi_inc_align(ctx, ssdt->length);
602 acpi_add_table(ctx, ssdt);
603 }
604
Bin Meng44256b02016-05-07 07:46:25 -0700605 debug("ACPI: * MCFG\n");
Simon Glass0e113842020-04-26 09:19:47 -0600606 mcfg = ctx->current;
Bin Meng44256b02016-05-07 07:46:25 -0700607 acpi_create_mcfg(mcfg);
Simon Glass0e113842020-04-26 09:19:47 -0600608 acpi_inc_align(ctx, mcfg->header.length);
Simon Glass575a5472020-04-26 09:19:50 -0600609 acpi_add_table(ctx, mcfg);
Bin Meng44256b02016-05-07 07:46:25 -0700610
Simon Glass272a7032020-09-22 12:45:32 -0600611 if (IS_ENABLED(CONFIG_TPM_V2)) {
612 struct acpi_tpm2 *tpm2;
Simon Glass272a7032020-09-22 12:45:32 -0600613
614 debug("ACPI: * TPM2\n");
615 tpm2 = (struct acpi_tpm2 *)ctx->current;
616 ret = acpi_create_tpm2(tpm2);
617 if (!ret) {
618 acpi_inc_align(ctx, tpm2->header.length);
619 acpi_add_table(ctx, tpm2);
620 } else {
621 log_warning("TPM2 table creation failed\n");
622 }
623 }
624
Simon Glassc7c46e82020-07-07 13:12:04 -0600625 debug("ACPI: * MADT\n");
626 madt = ctx->current;
627 acpi_create_madt(madt);
628 acpi_inc_align(ctx, madt->header.length);
629 acpi_add_table(ctx, madt);
630
Simon Glass28026282020-09-22 12:45:33 -0600631 debug("ACPI: * TCPA\n");
632 tcpa = (struct acpi_tcpa *)ctx->current;
633 ret = acpi_create_tcpa(tcpa);
634 if (ret) {
635 log_warning("Failed to create TCPA table (err=%d)\n", ret);
636 } else {
637 acpi_inc_align(ctx, tcpa->header.length);
638 acpi_add_table(ctx, tcpa);
639 }
640
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300641 debug("ACPI: * CSRT\n");
Simon Glass0e113842020-04-26 09:19:47 -0600642 csrt = ctx->current;
Simon Glass9eb80042020-07-07 21:32:24 -0600643 if (!acpi_create_csrt(csrt)) {
644 acpi_inc_align(ctx, csrt->header.length);
645 acpi_add_table(ctx, csrt);
646 }
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300647
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200648 debug("ACPI: * SPCR\n");
Simon Glass0e113842020-04-26 09:19:47 -0600649 spcr = ctx->current;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200650 acpi_create_spcr(spcr);
Simon Glass0e113842020-04-26 09:19:47 -0600651 acpi_inc_align(ctx, spcr->header.length);
Simon Glass575a5472020-04-26 09:19:50 -0600652 acpi_add_table(ctx, spcr);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200653
Simon Glass179fb822020-04-26 09:19:48 -0600654 acpi_write_dev_tables(ctx);
655
Simon Glass0e113842020-04-26 09:19:47 -0600656 addr = map_to_sysmem(ctx->current);
657 debug("current = %lx\n", addr);
Saket Sinha331141a2015-08-22 12:20:55 +0530658
Simon Glass575a5472020-04-26 09:19:50 -0600659 acpi_rsdp_addr = (unsigned long)ctx->rsdp;
Bin Mengd2d22182016-05-07 07:46:12 -0700660 debug("ACPI: done\n");
Saket Sinha331141a2015-08-22 12:20:55 +0530661
Simon Glass0e113842020-04-26 09:19:47 -0600662 return addr;
Saket Sinha331141a2015-08-22 12:20:55 +0530663}
Bin Meng34bc74a2017-04-21 07:24:36 -0700664
Bin Menge1029252018-01-30 05:01:16 -0800665ulong acpi_get_rsdp_addr(void)
666{
667 return acpi_rsdp_addr;
668}
Simon Glass4ffe8b02020-09-22 12:45:09 -0600669
670/**
671 * acpi_write_hpet() - Write out a HPET table
672 *
673 * Write out the table for High-Precision Event Timers
674 *
675 * @hpet: Place to put HPET table
676 */
677static int acpi_create_hpet(struct acpi_hpet *hpet)
678{
679 struct acpi_table_header *header = &hpet->header;
680 struct acpi_gen_regaddr *addr = &hpet->addr;
681
682 /*
683 * See IA-PC HPET (High Precision Event Timers) Specification v1.0a
684 * https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/software-developers-hpet-spec-1-0a.pdf
685 */
686 memset((void *)hpet, '\0', sizeof(struct acpi_hpet));
687
688 /* Fill out header fields. */
689 acpi_fill_header(header, "HPET");
690
691 header->aslc_revision = ASL_REVISION;
692 header->length = sizeof(struct acpi_hpet);
693 header->revision = acpi_get_table_revision(ACPITAB_HPET);
694
695 /* Fill out HPET address */
696 addr->space_id = 0; /* Memory */
697 addr->bit_width = 64;
698 addr->bit_offset = 0;
699 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
700 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
701
702 hpet->id = *(u32 *)CONFIG_HPET_ADDRESS;
703 hpet->number = 0;
704 hpet->min_tick = 0; /* HPET_MIN_TICKS */
705
706 header->checksum = table_compute_checksum(hpet,
707 sizeof(struct acpi_hpet));
708
709 return 0;
710}
711
712int acpi_write_hpet(struct acpi_ctx *ctx)
713{
714 struct acpi_hpet *hpet;
715 int ret;
716
717 log_debug("ACPI: * HPET\n");
718
719 hpet = ctx->current;
720 acpi_inc_align(ctx, sizeof(struct acpi_hpet));
721 acpi_create_hpet(hpet);
722 ret = acpi_add_table(ctx, hpet);
723 if (ret)
724 return log_msg_ret("add", ret);
725
726 return 0;
727}
Simon Glass95971892020-09-22 12:45:10 -0600728
729int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev,
730 uint access_size)
731{
732 struct acpi_dbg2_header *dbg2 = ctx->current;
733 char path[ACPI_PATH_MAX];
734 struct acpi_gen_regaddr address;
735 phys_addr_t addr;
736 int ret;
737
738 if (!device_active(dev)) {
739 log_info("Device not enabled\n");
740 return -EACCES;
741 }
742 /*
743 * PCI devices don't remember their resource allocation information in
744 * U-Boot at present. We assume that MMIO is used for the UART and that
745 * the address space is 32 bytes: ns16550 uses 8 registers of up to
746 * 32-bits each. This is only for debugging so it is not a big deal.
747 */
748 addr = dm_pci_read_bar32(dev, 0);
749 printf("UART addr %lx\n", (ulong)addr);
750
751 memset(&address, '\0', sizeof(address));
752 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
753 address.addrl = (uint32_t)addr;
754 address.addrh = (uint32_t)((addr >> 32) & 0xffffffff);
755 address.access_size = access_size;
756
757 ret = acpi_device_path(dev, path, sizeof(path));
758 if (ret)
759 return log_msg_ret("path", ret);
760 acpi_create_dbg2(dbg2, ACPI_DBG2_SERIAL_PORT,
761 ACPI_DBG2_16550_COMPATIBLE, &address, 0x1000, path);
762
763 acpi_inc_align(ctx, dbg2->header.length);
764 acpi_add_table(ctx, dbg2);
765
766 return 0;
767}
Simon Glass87cf8d22020-09-22 12:45:16 -0600768
769void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs,
770 void *dsdt)
771{
772 struct acpi_table_header *header = &fadt->header;
773
774 memset((void *)fadt, '\0', sizeof(struct acpi_fadt));
775
776 acpi_fill_header(header, "FACP");
777 header->length = sizeof(struct acpi_fadt);
778 header->revision = 4;
779 memcpy(header->oem_id, OEM_ID, 6);
780 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
781 memcpy(header->aslc_id, ASLC_ID, 4);
782 header->aslc_revision = 1;
783
784 fadt->firmware_ctrl = (unsigned long)facs;
785 fadt->dsdt = (unsigned long)dsdt;
786
787 fadt->x_firmware_ctl_l = (unsigned long)facs;
788 fadt->x_firmware_ctl_h = 0;
789 fadt->x_dsdt_l = (unsigned long)dsdt;
790 fadt->x_dsdt_h = 0;
791
792 fadt->preferred_pm_profile = ACPI_PM_MOBILE;
793
794 /* Use ACPI 3.0 revision */
795 fadt->header.revision = 4;
796}
797
798void acpi_create_dmar_drhd(struct acpi_ctx *ctx, uint flags, uint segment,
799 u64 bar)
800{
801 struct dmar_entry *drhd = ctx->current;
802
803 memset(drhd, '\0', sizeof(*drhd));
804 drhd->type = DMAR_DRHD;
805 drhd->length = sizeof(*drhd); /* will be fixed up later */
806 drhd->flags = flags;
807 drhd->segment = segment;
808 drhd->bar = bar;
809 acpi_inc(ctx, drhd->length);
810}
811
812void acpi_create_dmar_rmrr(struct acpi_ctx *ctx, uint segment, u64 bar,
813 u64 limit)
814{
815 struct dmar_rmrr_entry *rmrr = ctx->current;
816
817 memset(rmrr, '\0', sizeof(*rmrr));
818 rmrr->type = DMAR_RMRR;
819 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
820 rmrr->segment = segment;
821 rmrr->bar = bar;
822 rmrr->limit = limit;
823 acpi_inc(ctx, rmrr->length);
824}
825
826void acpi_dmar_drhd_fixup(struct acpi_ctx *ctx, void *base)
827{
828 struct dmar_entry *drhd = base;
829
830 drhd->length = ctx->current - base;
831}
832
833void acpi_dmar_rmrr_fixup(struct acpi_ctx *ctx, void *base)
834{
835 struct dmar_rmrr_entry *rmrr = base;
836
837 rmrr->length = ctx->current - base;
838}
839
840static int acpi_create_dmar_ds(struct acpi_ctx *ctx, enum dev_scope_type type,
841 uint enumeration_id, pci_dev_t bdf)
842{
843 /* we don't support longer paths yet */
844 const size_t dev_scope_length = sizeof(struct dev_scope) + 2;
845 struct dev_scope *ds = ctx->current;
846
847 memset(ds, '\0', dev_scope_length);
848 ds->type = type;
849 ds->length = dev_scope_length;
850 ds->enumeration = enumeration_id;
851 ds->start_bus = PCI_BUS(bdf);
852 ds->path[0].dev = PCI_DEV(bdf);
853 ds->path[0].fn = PCI_FUNC(bdf);
854
855 return ds->length;
856}
857
858int acpi_create_dmar_ds_pci_br(struct acpi_ctx *ctx, pci_dev_t bdf)
859{
860 return acpi_create_dmar_ds(ctx, SCOPE_PCI_SUB, 0, bdf);
861}
862
863int acpi_create_dmar_ds_pci(struct acpi_ctx *ctx, pci_dev_t bdf)
864{
865 return acpi_create_dmar_ds(ctx, SCOPE_PCI_ENDPOINT, 0, bdf);
866}
867
868int acpi_create_dmar_ds_ioapic(struct acpi_ctx *ctx, uint enumeration_id,
869 pci_dev_t bdf)
870{
871 return acpi_create_dmar_ds(ctx, SCOPE_IOAPIC, enumeration_id, bdf);
872}
873
874int acpi_create_dmar_ds_msi_hpet(struct acpi_ctx *ctx, uint enumeration_id,
875 pci_dev_t bdf)
876{
877 return acpi_create_dmar_ds(ctx, SCOPE_MSI_HPET, enumeration_id, bdf);
878}