blob: e3b7e9a4bbe810f4cd881ae3b6b564347df20b54 [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>
Simon Glassf0a8d682020-07-07 13:12:07 -060019#include <acpi/acpigen.h>
Simon Glass95971892020-09-22 12:45:10 -060020#include <acpi/acpi_device.h>
Simon Glass858fed12020-04-08 16:57:36 -060021#include <acpi/acpi_table.h>
Bin Mengd9050c62016-06-17 02:13:16 -070022#include <asm/acpi/global_nvs.h>
Andy Shevchenko13a5d872017-07-21 22:32:04 +030023#include <asm/ioapic.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060024#include <asm/global_data.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
Saket Sinha331141a2015-08-22 12:20:55 +053032static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
Bin Meng44256b02016-05-07 07:46:25 -070033 u8 cpu, u8 apic)
Saket Sinha331141a2015-08-22 12:20:55 +053034{
Bin Meng44256b02016-05-07 07:46:25 -070035 lapic->type = ACPI_APIC_LAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +053036 lapic->length = sizeof(struct acpi_madt_lapic);
Bin Meng44256b02016-05-07 07:46:25 -070037 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
Saket Sinha331141a2015-08-22 12:20:55 +053038 lapic->processor_id = cpu;
39 lapic->apic_id = apic;
40
41 return lapic->length;
42}
43
Bin Meng3c5234e2016-05-07 07:46:30 -070044int acpi_create_madt_lapics(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +053045{
46 struct udevice *dev;
George McCollister5a49f872016-06-07 13:40:18 -050047 int total_length = 0;
Simon Glassfcae5472020-09-22 12:45:31 -060048 int cpu_num = 0;
Saket Sinha331141a2015-08-22 12:20:55 +053049
50 for (uclass_find_first_device(UCLASS_CPU, &dev);
51 dev;
52 uclass_find_next_device(&dev)) {
Simon Glassb75b15b2020-12-03 16:55:23 -070053 struct cpu_plat *plat = dev_get_parent_plat(dev);
Simon Glassfcae5472020-09-22 12:45:31 -060054 int length;
55
56 length = acpi_create_madt_lapic(
57 (struct acpi_madt_lapic *)current, cpu_num++,
58 plat->cpu_id);
Bin Meng3c5234e2016-05-07 07:46:30 -070059 current += length;
George McCollister5a49f872016-06-07 13:40:18 -050060 total_length += length;
Bin Meng44256b02016-05-07 07:46:25 -070061 }
62
George McCollister5a49f872016-06-07 13:40:18 -050063 return total_length;
Saket Sinha331141a2015-08-22 12:20:55 +053064}
65
Bin Meng44256b02016-05-07 07:46:25 -070066int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
67 u32 addr, u32 gsi_base)
Saket Sinha331141a2015-08-22 12:20:55 +053068{
Bin Meng6a421582016-05-07 07:46:21 -070069 ioapic->type = ACPI_APIC_IOAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +053070 ioapic->length = sizeof(struct acpi_madt_ioapic);
71 ioapic->reserved = 0x00;
72 ioapic->gsi_base = gsi_base;
73 ioapic->ioapic_id = id;
74 ioapic->ioapic_addr = addr;
75
76 return ioapic->length;
77}
78
79int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride,
Bin Meng44256b02016-05-07 07:46:25 -070080 u8 bus, u8 source, u32 gsirq, u16 flags)
Saket Sinha331141a2015-08-22 12:20:55 +053081{
Bin Meng6a421582016-05-07 07:46:21 -070082 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
Saket Sinha331141a2015-08-22 12:20:55 +053083 irqoverride->length = sizeof(struct acpi_madt_irqoverride);
84 irqoverride->bus = bus;
85 irqoverride->source = source;
86 irqoverride->gsirq = gsirq;
87 irqoverride->flags = flags;
88
89 return irqoverride->length;
90}
91
92int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi,
Bin Meng44256b02016-05-07 07:46:25 -070093 u8 cpu, u16 flags, u8 lint)
Saket Sinha331141a2015-08-22 12:20:55 +053094{
Bin Meng6a421582016-05-07 07:46:21 -070095 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
Saket Sinha331141a2015-08-22 12:20:55 +053096 lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi);
97 lapic_nmi->flags = flags;
98 lapic_nmi->processor_id = cpu;
99 lapic_nmi->lint = lint;
100
101 return lapic_nmi->length;
102}
103
Andy Shevchenko13a5d872017-07-21 22:32:04 +0300104static int acpi_create_madt_irq_overrides(u32 current)
105{
106 struct acpi_madt_irqoverride *irqovr;
107 u16 sci_flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH;
108 int length = 0;
109
110 irqovr = (void *)current;
111 length += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0);
112
113 irqovr = (void *)(current + length);
114 length += acpi_create_madt_irqoverride(irqovr, 0, 9, 9, sci_flags);
115
116 return length;
117}
118
119__weak u32 acpi_fill_madt(u32 current)
120{
121 current += acpi_create_madt_lapics(current);
122
123 current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current,
124 io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0);
125
126 current += acpi_create_madt_irq_overrides(current);
127
128 return current;
129}
130
Simon Glassb0d5fab2021-12-01 09:02:58 -0700131int acpi_write_madt(struct acpi_ctx *ctx, const struct acpi_writer *entry)
Saket Sinha331141a2015-08-22 12:20:55 +0530132{
Simon Glassb0d5fab2021-12-01 09:02:58 -0700133 struct acpi_table_header *header;
134 struct acpi_madt *madt;
135 u32 current;
Saket Sinha331141a2015-08-22 12:20:55 +0530136
Simon Glassb0d5fab2021-12-01 09:02:58 -0700137 madt = ctx->current;
138
139 memset(madt, '\0', sizeof(struct acpi_madt));
140 header = &madt->header;
Saket Sinha331141a2015-08-22 12:20:55 +0530141
142 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700143 acpi_fill_header(header, "APIC");
Saket Sinha331141a2015-08-22 12:20:55 +0530144 header->length = sizeof(struct acpi_madt);
Simon Glassf3694aa2020-07-16 21:22:37 -0600145 header->revision = ACPI_MADT_REV_ACPI_3_0;
Saket Sinha331141a2015-08-22 12:20:55 +0530146
147 madt->lapic_addr = LAPIC_DEFAULT_BASE;
Bin Meng6a421582016-05-07 07:46:21 -0700148 madt->flags = ACPI_MADT_PCAT_COMPAT;
Saket Sinha331141a2015-08-22 12:20:55 +0530149
Simon Glassb0d5fab2021-12-01 09:02:58 -0700150 current = (u32)madt + sizeof(struct acpi_madt);
Saket Sinha331141a2015-08-22 12:20:55 +0530151 current = acpi_fill_madt(current);
152
153 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700154 header->length = current - (u32)madt;
Saket Sinha331141a2015-08-22 12:20:55 +0530155
156 header->checksum = table_compute_checksum((void *)madt, header->length);
Simon Glassb0d5fab2021-12-01 09:02:58 -0700157 acpi_add_table(ctx, madt);
158 acpi_inc(ctx, madt->header.length);
159
160 return 0;
Saket Sinha331141a2015-08-22 12:20:55 +0530161}
Simon Glassb0d5fab2021-12-01 09:02:58 -0700162ACPI_WRITER(5x86, NULL, acpi_write_madt, 0);
Saket Sinha331141a2015-08-22 12:20:55 +0530163
Simon Glass28026282020-09-22 12:45:33 -0600164/**
165 * acpi_create_tcpa() - Create a TCPA table
166 *
Simon Glass28026282020-09-22 12:45:33 -0600167 * Trusted Computing Platform Alliance Capabilities Table
168 * TCPA PC Specific Implementation SpecificationTCPA is defined in the PCI
169 * Firmware Specification 3.0
170 */
Simon Glassbb3b6082021-12-01 09:02:59 -0700171int acpi_write_tcpa(struct acpi_ctx *ctx, const struct acpi_writer *entry)
Simon Glass28026282020-09-22 12:45:33 -0600172{
Simon Glassbb3b6082021-12-01 09:02:59 -0700173 struct acpi_table_header *header;
174 struct acpi_tcpa *tcpa;
175 u32 current;
Simon Glass28026282020-09-22 12:45:33 -0600176 int size = 0x10000; /* Use this as the default size */
177 void *log;
178 int ret;
179
Simon Glassbb3b6082021-12-01 09:02:59 -0700180 if (!IS_ENABLED(CONFIG_TPM_V1))
181 return -ENOENT;
Simon Glass28026282020-09-22 12:45:33 -0600182 if (!CONFIG_IS_ENABLED(BLOBLIST))
183 return -ENXIO;
Simon Glassbb3b6082021-12-01 09:02:59 -0700184
185 tcpa = ctx->current;
186 header = &tcpa->header;
Simon Glass28026282020-09-22 12:45:33 -0600187 memset(tcpa, '\0', sizeof(struct acpi_tcpa));
188
189 /* Fill out header fields */
190 acpi_fill_header(header, "TCPA");
191 header->length = sizeof(struct acpi_tcpa);
192 header->revision = 1;
193
194 ret = bloblist_ensure_size_ret(BLOBLISTT_TCPA_LOG, &size, &log);
195 if (ret)
196 return log_msg_ret("blob", ret);
197
198 tcpa->platform_class = 0;
199 tcpa->laml = size;
Simon Glassbb3b6082021-12-01 09:02:59 -0700200 tcpa->lasa = map_to_sysmem(log);
Simon Glass28026282020-09-22 12:45:33 -0600201
202 /* (Re)calculate length and checksum */
Simon Glassbb3b6082021-12-01 09:02:59 -0700203 current = (u32)tcpa + sizeof(struct acpi_tcpa);
Simon Glass28026282020-09-22 12:45:33 -0600204 header->length = current - (u32)tcpa;
Simon Glassbb3b6082021-12-01 09:02:59 -0700205 header->checksum = table_compute_checksum(tcpa, header->length);
206
207 acpi_inc(ctx, tcpa->header.length);
208 acpi_add_table(ctx, tcpa);
Simon Glass28026282020-09-22 12:45:33 -0600209
210 return 0;
211}
Simon Glassbb3b6082021-12-01 09:02:59 -0700212ACPI_WRITER(5tcpa, "TCPA", acpi_write_tcpa, 0);
Simon Glass28026282020-09-22 12:45:33 -0600213
Simon Glass272a7032020-09-22 12:45:32 -0600214static int get_tpm2_log(void **ptrp, int *sizep)
215{
216 const int tpm2_default_log_len = 0x10000;
217 int size;
218 int ret;
219
220 *sizep = 0;
221 size = tpm2_default_log_len;
222 ret = bloblist_ensure_size_ret(BLOBLISTT_TPM2_TCG_LOG, &size, ptrp);
223 if (ret)
224 return log_msg_ret("blob", ret);
225 *sizep = size;
226
227 return 0;
228}
229
Simon Glassc7536942021-12-01 09:02:57 -0700230static int acpi_write_tpm2(struct acpi_ctx *ctx,
231 const struct acpi_writer *entry)
Simon Glass272a7032020-09-22 12:45:32 -0600232{
Simon Glassc7536942021-12-01 09:02:57 -0700233 struct acpi_table_header *header;
234 struct acpi_tpm2 *tpm2;
Simon Glass272a7032020-09-22 12:45:32 -0600235 int tpm2_log_len;
236 void *lasa;
237 int ret;
238
Simon Glassc7536942021-12-01 09:02:57 -0700239 if (!IS_ENABLED(CONFIG_TPM_V2))
240 return log_msg_ret("none", -ENOENT);
241
242 tpm2 = ctx->current;
243 header = &tpm2->header;
244 memset(tpm2, '\0', sizeof(struct acpi_tpm2));
Simon Glass272a7032020-09-22 12:45:32 -0600245
246 /*
247 * Some payloads like SeaBIOS depend on log area to use TPM2.
248 * Get the memory size and address of TPM2 log area or initialize it.
249 */
250 ret = get_tpm2_log(&lasa, &tpm2_log_len);
251 if (ret)
Simon Glassc7536942021-12-01 09:02:57 -0700252 return log_msg_ret("log", ret);
Simon Glass272a7032020-09-22 12:45:32 -0600253
254 /* Fill out header fields. */
255 acpi_fill_header(header, "TPM2");
256 memcpy(header->aslc_id, ASLC_ID, 4);
257
258 header->length = sizeof(struct acpi_tpm2);
259 header->revision = acpi_get_table_revision(ACPITAB_TPM2);
260
Simon Glassc7536942021-12-01 09:02:57 -0700261 /* Hard to detect for U-Boot. Just set it to 0 */
Simon Glass272a7032020-09-22 12:45:32 -0600262 tpm2->platform_class = 0;
263
264 /* Must be set to 0 for FIFO-interface support */
265 tpm2->control_area = 0;
266 tpm2->start_method = 6;
267 memset(tpm2->msp, 0, sizeof(tpm2->msp));
268
269 /* Fill the log area size and start address fields. */
270 tpm2->laml = tpm2_log_len;
Simon Glassc7536942021-12-01 09:02:57 -0700271 tpm2->lasa = map_to_sysmem(lasa);
Simon Glass272a7032020-09-22 12:45:32 -0600272
273 /* Calculate checksum. */
Simon Glassc7536942021-12-01 09:02:57 -0700274 header->checksum = table_compute_checksum(tpm2, header->length);
275
276 acpi_inc(ctx, tpm2->header.length);
277 acpi_add_table(ctx, tpm2);
Simon Glass272a7032020-09-22 12:45:32 -0600278
279 return 0;
280}
Simon Glassc7536942021-12-01 09:02:57 -0700281ACPI_WRITER(5tpm2, "TPM2", acpi_write_tpm2, 0);
Simon Glass272a7032020-09-22 12:45:32 -0600282
Simon Glass6e6bc9b2021-12-01 09:03:00 -0700283int acpi_write_spcr(struct acpi_ctx *ctx, const struct acpi_writer *entry)
Andy Shevchenko607dbd12019-07-14 19:23:57 +0300284{
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200285 struct serial_device_info serial_info = {0};
286 ulong serial_address, serial_offset;
Simon Glass6e6bc9b2021-12-01 09:03:00 -0700287 struct acpi_table_header *header;
288 struct acpi_spcr *spcr;
Simon Glassdaaff932018-12-28 14:23:08 -0700289 struct udevice *dev;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200290 uint serial_config;
291 uint serial_width;
292 int access_size;
293 int space_id;
Andy Shevchenkobf9c8e32019-02-28 17:19:54 +0200294 int ret = -ENODEV;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200295
Simon Glass6e6bc9b2021-12-01 09:03:00 -0700296 spcr = ctx->current;
297 header = &spcr->header;
298
299 memset(spcr, '\0', sizeof(struct acpi_spcr));
Wolfgang Wallner13c23e92020-09-16 16:57:53 +0200300
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200301 /* Fill out header fields */
302 acpi_fill_header(header, "SPCR");
303 header->length = sizeof(struct acpi_spcr);
304 header->revision = 2;
305
Simon Glass896c1642018-12-28 14:23:10 -0700306 /* Read the device once, here. It is reused below */
Andy Shevchenkobf9c8e32019-02-28 17:19:54 +0200307 dev = gd->cur_serial_dev;
308 if (dev)
Simon Glass896c1642018-12-28 14:23:10 -0700309 ret = serial_getinfo(dev, &serial_info);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200310 if (ret)
311 serial_info.type = SERIAL_CHIP_UNKNOWN;
312
313 /* Encode chip type */
314 switch (serial_info.type) {
315 case SERIAL_CHIP_16550_COMPATIBLE:
316 spcr->interface_type = ACPI_DBG2_16550_COMPATIBLE;
317 break;
318 case SERIAL_CHIP_UNKNOWN:
319 default:
320 spcr->interface_type = ACPI_DBG2_UNKNOWN;
321 break;
322 }
323
324 /* Encode address space */
325 switch (serial_info.addr_space) {
326 case SERIAL_ADDRESS_SPACE_MEMORY:
327 space_id = ACPI_ADDRESS_SPACE_MEMORY;
328 break;
329 case SERIAL_ADDRESS_SPACE_IO:
330 default:
331 space_id = ACPI_ADDRESS_SPACE_IO;
332 break;
333 }
334
335 serial_width = serial_info.reg_width * 8;
336 serial_offset = serial_info.reg_offset << serial_info.reg_shift;
337 serial_address = serial_info.addr + serial_offset;
338
339 /* Encode register access size */
340 switch (serial_info.reg_shift) {
341 case 0:
342 access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
343 break;
344 case 1:
345 access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
346 break;
347 case 2:
348 access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
349 break;
350 case 3:
351 access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
352 break;
353 default:
354 access_size = ACPI_ACCESS_SIZE_UNDEFINED;
355 break;
356 }
357
358 debug("UART type %u @ %lx\n", spcr->interface_type, serial_address);
359
360 /* Fill GAS */
361 spcr->serial_port.space_id = space_id;
362 spcr->serial_port.bit_width = serial_width;
363 spcr->serial_port.bit_offset = 0;
364 spcr->serial_port.access_size = access_size;
365 spcr->serial_port.addrl = lower_32_bits(serial_address);
366 spcr->serial_port.addrh = upper_32_bits(serial_address);
367
368 /* Encode baud rate */
369 switch (serial_info.baudrate) {
370 case 9600:
371 spcr->baud_rate = 3;
372 break;
373 case 19200:
374 spcr->baud_rate = 4;
375 break;
376 case 57600:
377 spcr->baud_rate = 6;
378 break;
379 case 115200:
380 spcr->baud_rate = 7;
381 break;
382 default:
383 spcr->baud_rate = 0;
384 break;
385 }
386
Simon Glass896c1642018-12-28 14:23:10 -0700387 serial_config = SERIAL_DEFAULT_CONFIG;
388 if (dev)
Simon Glassdaaff932018-12-28 14:23:08 -0700389 ret = serial_getconfig(dev, &serial_config);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200390
391 spcr->parity = SERIAL_GET_PARITY(serial_config);
392 spcr->stop_bits = SERIAL_GET_STOP(serial_config);
393
394 /* No PCI devices for now */
395 spcr->pci_device_id = 0xffff;
396 spcr->pci_vendor_id = 0xffff;
397
Andy Shevchenko225cc8a2020-02-27 17:21:56 +0200398 /*
399 * SPCR has no clue if the UART base clock speed is different
400 * to the default one. However, the SPCR 1.04 defines baud rate
401 * 0 as a preconfigured state of UART and OS is supposed not
402 * to touch the configuration of the serial device.
403 */
404 if (serial_info.clock != SERIAL_DEFAULT_CLOCK)
405 spcr->baud_rate = 0;
406
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200407 /* Fix checksum */
408 header->checksum = table_compute_checksum((void *)spcr, header->length);
Simon Glass6e6bc9b2021-12-01 09:03:00 -0700409
410 acpi_add_table(ctx, spcr);
411 acpi_inc(ctx, spcr->header.length);
412
413 return 0;
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200414}
Simon Glass6e6bc9b2021-12-01 09:03:00 -0700415ACPI_WRITER(5spcr, "SPCR", acpi_write_spcr, 0);
Andy Shevchenko4ca48c92018-11-20 23:52:38 +0200416
Simon Glassd2a98eb2021-12-01 09:02:53 -0700417int acpi_write_gnvs(struct acpi_ctx *ctx, const struct acpi_writer *entry)
Saket Sinha331141a2015-08-22 12:20:55 +0530418{
Simon Glass0e113842020-04-26 09:19:47 -0600419 ulong addr;
Saket Sinha331141a2015-08-22 12:20:55 +0530420
Simon Glass6fe570a2020-09-22 12:44:53 -0600421 if (!IS_ENABLED(CONFIG_ACPI_GNVS_EXTERNAL)) {
Simon Glassd2a98eb2021-12-01 09:02:53 -0700422 int i;
423
424 /* We need the DSDT to be done */
425 if (!ctx->dsdt)
426 return log_msg_ret("dsdt", -EAGAIN);
427
Simon Glass6fe570a2020-09-22 12:44:53 -0600428 /* Pack GNVS into the ACPI table area */
Simon Glass83c3cb52021-12-01 09:02:52 -0700429 for (i = 0; i < ctx->dsdt->length; i++) {
430 u32 *gnvs = (u32 *)((u32)ctx->dsdt + i);
Simon Glass0e113842020-04-26 09:19:47 -0600431
Simon Glass6fe570a2020-09-22 12:44:53 -0600432 if (*gnvs == ACPI_GNVS_ADDR) {
433 *gnvs = map_to_sysmem(ctx->current);
Simon Glassd2a98eb2021-12-01 09:02:53 -0700434 log_debug("Fix up global NVS in DSDT to %#08x\n",
435 *gnvs);
Simon Glass6fe570a2020-09-22 12:44:53 -0600436 break;
437 }
Bin Mengd9050c62016-06-17 02:13:16 -0700438 }
Simon Glass6fe570a2020-09-22 12:44:53 -0600439
440 /*
Simon Glassd2a98eb2021-12-01 09:02:53 -0700441 * Recalculate the length and update the DSDT checksum since we
442 * patched the GNVS address. Set the checksum to zero since it
443 * is part of the region being checksummed.
Simon Glass6fe570a2020-09-22 12:44:53 -0600444 */
Simon Glassd2a98eb2021-12-01 09:02:53 -0700445 ctx->dsdt->checksum = 0;
446 ctx->dsdt->checksum = table_compute_checksum((void *)ctx->dsdt,
447 ctx->dsdt->length);
Bin Mengd9050c62016-06-17 02:13:16 -0700448 }
449
Simon Glassd2a98eb2021-12-01 09:02:53 -0700450 /* Fill in platform-specific global NVS variables */
Simon Glass9ed41e72020-07-07 21:32:05 -0600451 addr = acpi_create_gnvs(ctx->current);
452 if (IS_ERR_VALUE(addr))
Simon Glassd2a98eb2021-12-01 09:02:53 -0700453 return log_msg_ret("gnvs", (int)addr);
Simon Glass9ed41e72020-07-07 21:32:05 -0600454
Simon Glass0e113842020-04-26 09:19:47 -0600455 acpi_inc_align(ctx, sizeof(struct acpi_global_nvs));
Bin Mengd9050c62016-06-17 02:13:16 -0700456
Simon Glassd2a98eb2021-12-01 09:02:53 -0700457 return 0;
458}
459ACPI_WRITER(4gnvs, "GNVS", acpi_write_gnvs, 0);
460
Andy Shevchenko33e030b2022-03-30 18:49:18 +0300461static int acpi_write_fadt(struct acpi_ctx *ctx,
462 const struct acpi_writer *entry)
463{
464 struct acpi_fadt *fadt;
465
466 fadt = ctx->current;
467 acpi_create_fadt(fadt, ctx->facs, ctx->dsdt);
468 acpi_add_table(ctx, fadt);
469
470 acpi_inc(ctx, sizeof(struct acpi_fadt));
471
472 return 0;
473}
474ACPI_WRITER(5fact, "FADT", acpi_write_fadt, 0);
475
Simon Glass4ffe8b02020-09-22 12:45:09 -0600476/**
477 * acpi_write_hpet() - Write out a HPET table
478 *
479 * Write out the table for High-Precision Event Timers
480 *
481 * @hpet: Place to put HPET table
482 */
483static int acpi_create_hpet(struct acpi_hpet *hpet)
484{
485 struct acpi_table_header *header = &hpet->header;
486 struct acpi_gen_regaddr *addr = &hpet->addr;
487
488 /*
489 * See IA-PC HPET (High Precision Event Timers) Specification v1.0a
490 * https://www.intel.com/content/dam/www/public/us/en/documents/technical-specifications/software-developers-hpet-spec-1-0a.pdf
491 */
492 memset((void *)hpet, '\0', sizeof(struct acpi_hpet));
493
494 /* Fill out header fields. */
495 acpi_fill_header(header, "HPET");
496
497 header->aslc_revision = ASL_REVISION;
498 header->length = sizeof(struct acpi_hpet);
499 header->revision = acpi_get_table_revision(ACPITAB_HPET);
500
501 /* Fill out HPET address */
502 addr->space_id = 0; /* Memory */
503 addr->bit_width = 64;
504 addr->bit_offset = 0;
505 addr->addrl = CONFIG_HPET_ADDRESS & 0xffffffff;
506 addr->addrh = ((unsigned long long)CONFIG_HPET_ADDRESS) >> 32;
507
508 hpet->id = *(u32 *)CONFIG_HPET_ADDRESS;
509 hpet->number = 0;
510 hpet->min_tick = 0; /* HPET_MIN_TICKS */
511
512 header->checksum = table_compute_checksum(hpet,
513 sizeof(struct acpi_hpet));
514
515 return 0;
516}
517
518int acpi_write_hpet(struct acpi_ctx *ctx)
519{
520 struct acpi_hpet *hpet;
521 int ret;
522
523 log_debug("ACPI: * HPET\n");
524
525 hpet = ctx->current;
526 acpi_inc_align(ctx, sizeof(struct acpi_hpet));
527 acpi_create_hpet(hpet);
528 ret = acpi_add_table(ctx, hpet);
529 if (ret)
530 return log_msg_ret("add", ret);
531
532 return 0;
533}
Simon Glass95971892020-09-22 12:45:10 -0600534
535int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev,
536 uint access_size)
537{
538 struct acpi_dbg2_header *dbg2 = ctx->current;
539 char path[ACPI_PATH_MAX];
540 struct acpi_gen_regaddr address;
541 phys_addr_t addr;
542 int ret;
543
544 if (!device_active(dev)) {
545 log_info("Device not enabled\n");
546 return -EACCES;
547 }
548 /*
549 * PCI devices don't remember their resource allocation information in
550 * U-Boot at present. We assume that MMIO is used for the UART and that
551 * the address space is 32 bytes: ns16550 uses 8 registers of up to
552 * 32-bits each. This is only for debugging so it is not a big deal.
553 */
554 addr = dm_pci_read_bar32(dev, 0);
Simon Glass75081202020-11-04 09:57:41 -0700555 log_debug("UART addr %lx\n", (ulong)addr);
Simon Glass95971892020-09-22 12:45:10 -0600556
557 memset(&address, '\0', sizeof(address));
558 address.space_id = ACPI_ADDRESS_SPACE_MEMORY;
559 address.addrl = (uint32_t)addr;
560 address.addrh = (uint32_t)((addr >> 32) & 0xffffffff);
561 address.access_size = access_size;
562
563 ret = acpi_device_path(dev, path, sizeof(path));
564 if (ret)
565 return log_msg_ret("path", ret);
566 acpi_create_dbg2(dbg2, ACPI_DBG2_SERIAL_PORT,
567 ACPI_DBG2_16550_COMPATIBLE, &address, 0x1000, path);
568
569 acpi_inc_align(ctx, dbg2->header.length);
570 acpi_add_table(ctx, dbg2);
571
572 return 0;
573}
Simon Glass87cf8d22020-09-22 12:45:16 -0600574
575void acpi_fadt_common(struct acpi_fadt *fadt, struct acpi_facs *facs,
576 void *dsdt)
577{
578 struct acpi_table_header *header = &fadt->header;
579
580 memset((void *)fadt, '\0', sizeof(struct acpi_fadt));
581
582 acpi_fill_header(header, "FACP");
583 header->length = sizeof(struct acpi_fadt);
584 header->revision = 4;
585 memcpy(header->oem_id, OEM_ID, 6);
586 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
587 memcpy(header->aslc_id, ASLC_ID, 4);
588 header->aslc_revision = 1;
589
590 fadt->firmware_ctrl = (unsigned long)facs;
591 fadt->dsdt = (unsigned long)dsdt;
592
593 fadt->x_firmware_ctl_l = (unsigned long)facs;
594 fadt->x_firmware_ctl_h = 0;
595 fadt->x_dsdt_l = (unsigned long)dsdt;
596 fadt->x_dsdt_h = 0;
597
598 fadt->preferred_pm_profile = ACPI_PM_MOBILE;
599
600 /* Use ACPI 3.0 revision */
601 fadt->header.revision = 4;
602}
603
604void acpi_create_dmar_drhd(struct acpi_ctx *ctx, uint flags, uint segment,
605 u64 bar)
606{
607 struct dmar_entry *drhd = ctx->current;
608
609 memset(drhd, '\0', sizeof(*drhd));
610 drhd->type = DMAR_DRHD;
611 drhd->length = sizeof(*drhd); /* will be fixed up later */
612 drhd->flags = flags;
613 drhd->segment = segment;
614 drhd->bar = bar;
615 acpi_inc(ctx, drhd->length);
616}
617
618void acpi_create_dmar_rmrr(struct acpi_ctx *ctx, uint segment, u64 bar,
619 u64 limit)
620{
621 struct dmar_rmrr_entry *rmrr = ctx->current;
622
623 memset(rmrr, '\0', sizeof(*rmrr));
624 rmrr->type = DMAR_RMRR;
625 rmrr->length = sizeof(*rmrr); /* will be fixed up later */
626 rmrr->segment = segment;
627 rmrr->bar = bar;
628 rmrr->limit = limit;
629 acpi_inc(ctx, rmrr->length);
630}
631
632void acpi_dmar_drhd_fixup(struct acpi_ctx *ctx, void *base)
633{
634 struct dmar_entry *drhd = base;
635
636 drhd->length = ctx->current - base;
637}
638
639void acpi_dmar_rmrr_fixup(struct acpi_ctx *ctx, void *base)
640{
641 struct dmar_rmrr_entry *rmrr = base;
642
643 rmrr->length = ctx->current - base;
644}
645
646static int acpi_create_dmar_ds(struct acpi_ctx *ctx, enum dev_scope_type type,
647 uint enumeration_id, pci_dev_t bdf)
648{
649 /* we don't support longer paths yet */
650 const size_t dev_scope_length = sizeof(struct dev_scope) + 2;
651 struct dev_scope *ds = ctx->current;
652
653 memset(ds, '\0', dev_scope_length);
654 ds->type = type;
655 ds->length = dev_scope_length;
656 ds->enumeration = enumeration_id;
657 ds->start_bus = PCI_BUS(bdf);
658 ds->path[0].dev = PCI_DEV(bdf);
659 ds->path[0].fn = PCI_FUNC(bdf);
660
661 return ds->length;
662}
663
664int acpi_create_dmar_ds_pci_br(struct acpi_ctx *ctx, pci_dev_t bdf)
665{
666 return acpi_create_dmar_ds(ctx, SCOPE_PCI_SUB, 0, bdf);
667}
668
669int acpi_create_dmar_ds_pci(struct acpi_ctx *ctx, pci_dev_t bdf)
670{
671 return acpi_create_dmar_ds(ctx, SCOPE_PCI_ENDPOINT, 0, bdf);
672}
673
674int acpi_create_dmar_ds_ioapic(struct acpi_ctx *ctx, uint enumeration_id,
675 pci_dev_t bdf)
676{
677 return acpi_create_dmar_ds(ctx, SCOPE_IOAPIC, enumeration_id, bdf);
678}
679
680int acpi_create_dmar_ds_msi_hpet(struct acpi_ctx *ctx, uint enumeration_id,
681 pci_dev_t bdf)
682{
683 return acpi_create_dmar_ds(ctx, SCOPE_MSI_HPET, enumeration_id, bdf);
684}