blob: 66e32f21bdbd84643bcabbe8dc77d515ed91a917 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Saket Sinha867bcb62015-08-22 12:20:55 +05302/*
3 * Based on acpi.c from coreboot
4 *
5 * Copyright (C) 2015, Saket Sinha <saket.sinha89@gmail.com>
Bin Mengab5efd52016-05-07 07:46:25 -07006 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Saket Sinha867bcb62015-08-22 12:20:55 +05307 */
8
9#include <common.h>
10#include <cpu.h>
11#include <dm.h>
12#include <dm/uclass-internal.h>
Andy Shevchenkob288cd92018-11-20 23:52:38 +020013#include <serial.h>
Andy Shevchenko684c4cd2017-07-21 22:32:02 +030014#include <version.h>
Bin Meng79c2c252016-06-17 02:13:16 -070015#include <asm/acpi/global_nvs.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053016#include <asm/acpi_table.h>
Andy Shevchenkob156da92017-07-21 22:32:04 +030017#include <asm/ioapic.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053018#include <asm/lapic.h>
Andy Shevchenkob156da92017-07-21 22:32:04 +030019#include <asm/mpspec.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053020#include <asm/tables.h>
Bin Meng79c2c252016-06-17 02:13:16 -070021#include <asm/arch/global_nvs.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053022
23/*
Bin Mengdfbb18b2016-05-07 07:46:24 -070024 * IASL compiles the dsdt entries and writes the hex values
25 * to a C array AmlCode[] (see dsdt.c).
Saket Sinha867bcb62015-08-22 12:20:55 +053026 */
27extern const unsigned char AmlCode[];
28
Andy Shevchenko3469bf42018-01-10 19:40:15 +020029/* ACPI RSDP address to be used in boot parameters */
Bin Meng45410da2018-01-30 05:01:16 -080030static ulong acpi_rsdp_addr;
Andy Shevchenko3469bf42018-01-10 19:40:15 +020031
Bin Mengab5efd52016-05-07 07:46:25 -070032static void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt,
33 struct acpi_xsdt *xsdt)
Saket Sinha867bcb62015-08-22 12:20:55 +053034{
Bin Mengab5efd52016-05-07 07:46:25 -070035 memset(rsdp, 0, sizeof(struct acpi_rsdp));
Saket Sinha867bcb62015-08-22 12:20:55 +053036
Bin Mengab5efd52016-05-07 07:46:25 -070037 memcpy(rsdp->signature, RSDP_SIG, 8);
38 memcpy(rsdp->oem_id, OEM_ID, 6);
Saket Sinha867bcb62015-08-22 12:20:55 +053039
Bin Mengab5efd52016-05-07 07:46:25 -070040 rsdp->length = sizeof(struct acpi_rsdp);
41 rsdp->rsdt_address = (u32)rsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +053042
43 /*
Bin Mengab5efd52016-05-07 07:46:25 -070044 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2
45 *
46 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
47 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
48 * revision 0)
Saket Sinha867bcb62015-08-22 12:20:55 +053049 */
Bin Mengab5efd52016-05-07 07:46:25 -070050 if (xsdt == NULL) {
51 rsdp->revision = ACPI_RSDP_REV_ACPI_1_0;
52 } else {
53 rsdp->xsdt_address = (u64)(u32)xsdt;
54 rsdp->revision = ACPI_RSDP_REV_ACPI_2_0;
Saket Sinha867bcb62015-08-22 12:20:55 +053055 }
Saket Sinha867bcb62015-08-22 12:20:55 +053056
Bin Mengab5efd52016-05-07 07:46:25 -070057 /* Calculate checksums */
58 rsdp->checksum = table_compute_checksum((void *)rsdp, 20);
59 rsdp->ext_checksum = table_compute_checksum((void *)rsdp,
60 sizeof(struct acpi_rsdp));
Saket Sinha867bcb62015-08-22 12:20:55 +053061}
62
Bin Mengdfbb18b2016-05-07 07:46:24 -070063void acpi_fill_header(struct acpi_table_header *header, char *signature)
Saket Sinha867bcb62015-08-22 12:20:55 +053064{
Bin Mengdfbb18b2016-05-07 07:46:24 -070065 memcpy(header->signature, signature, 4);
Saket Sinha867bcb62015-08-22 12:20:55 +053066 memcpy(header->oem_id, OEM_ID, 6);
Bin Meng8a8c0352016-05-07 07:46:21 -070067 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
Andy Shevchenko684c4cd2017-07-21 22:32:02 +030068 header->oem_revision = U_BOOT_BUILD_DATE;
Bin Meng8a8c0352016-05-07 07:46:21 -070069 memcpy(header->aslc_id, ASLC_ID, 4);
Saket Sinha867bcb62015-08-22 12:20:55 +053070}
71
Saket Sinha867bcb62015-08-22 12:20:55 +053072static void acpi_write_rsdt(struct acpi_rsdt *rsdt)
73{
Bin Meng8a8c0352016-05-07 07:46:21 -070074 struct acpi_table_header *header = &(rsdt->header);
Saket Sinha867bcb62015-08-22 12:20:55 +053075
76 /* Fill out header fields */
Bin Mengdfbb18b2016-05-07 07:46:24 -070077 acpi_fill_header(header, "RSDT");
Saket Sinha867bcb62015-08-22 12:20:55 +053078 header->length = sizeof(struct acpi_rsdt);
Bin Meng7e6343e2016-05-07 07:46:28 -070079 header->revision = 1;
Saket Sinha867bcb62015-08-22 12:20:55 +053080
81 /* Entries are filled in later, we come with an empty set */
82
83 /* Fix checksum */
84 header->checksum = table_compute_checksum((void *)rsdt,
85 sizeof(struct acpi_rsdt));
86}
87
88static void acpi_write_xsdt(struct acpi_xsdt *xsdt)
89{
Bin Meng8a8c0352016-05-07 07:46:21 -070090 struct acpi_table_header *header = &(xsdt->header);
Saket Sinha867bcb62015-08-22 12:20:55 +053091
92 /* Fill out header fields */
Bin Mengdfbb18b2016-05-07 07:46:24 -070093 acpi_fill_header(header, "XSDT");
Saket Sinha867bcb62015-08-22 12:20:55 +053094 header->length = sizeof(struct acpi_xsdt);
Bin Meng7e6343e2016-05-07 07:46:28 -070095 header->revision = 1;
Saket Sinha867bcb62015-08-22 12:20:55 +053096
97 /* Entries are filled in later, we come with an empty set */
98
99 /* Fix checksum */
100 header->checksum = table_compute_checksum((void *)xsdt,
101 sizeof(struct acpi_xsdt));
102}
103
Bin Mengab5efd52016-05-07 07:46:25 -0700104/**
105 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
106 * and checksum.
107 */
108static void acpi_add_table(struct acpi_rsdp *rsdp, void *table)
Saket Sinha867bcb62015-08-22 12:20:55 +0530109{
Bin Mengab5efd52016-05-07 07:46:25 -0700110 int i, entries_num;
111 struct acpi_rsdt *rsdt;
Andy Shevchenkoddcccb22020-02-27 16:00:51 +0200112 struct acpi_xsdt *xsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530113
Bin Mengab5efd52016-05-07 07:46:25 -0700114 /* The RSDT is mandatory while the XSDT is not */
115 rsdt = (struct acpi_rsdt *)rsdp->rsdt_address;
Saket Sinha867bcb62015-08-22 12:20:55 +0530116
Bin Mengab5efd52016-05-07 07:46:25 -0700117 /* This should always be MAX_ACPI_TABLES */
118 entries_num = ARRAY_SIZE(rsdt->entry);
119
120 for (i = 0; i < entries_num; i++) {
121 if (rsdt->entry[i] == 0)
122 break;
Saket Sinha867bcb62015-08-22 12:20:55 +0530123 }
124
Bin Mengab5efd52016-05-07 07:46:25 -0700125 if (i >= entries_num) {
126 debug("ACPI: Error: too many tables\n");
127 return;
128 }
129
130 /* Add table to the RSDT */
131 rsdt->entry[i] = (u32)table;
132
133 /* Fix RSDT length or the kernel will assume invalid entries */
134 rsdt->header.length = sizeof(struct acpi_table_header) +
Andy Shevchenkoddcccb22020-02-27 16:00:51 +0200135 sizeof(u32) * (i + 1);
Bin Mengab5efd52016-05-07 07:46:25 -0700136
137 /* Re-calculate checksum */
138 rsdt->header.checksum = 0;
139 rsdt->header.checksum = table_compute_checksum((u8 *)rsdt,
140 rsdt->header.length);
141
Andy Shevchenkoddcccb22020-02-27 16:00:51 +0200142 /* The RSDT is mandatory while the XSDT is not */
143 if (!rsdp->xsdt_address)
144 return;
145
Bin Mengab5efd52016-05-07 07:46:25 -0700146 /*
147 * And now the same thing for the XSDT. We use the same index as for
148 * now we want the XSDT and RSDT to always be in sync in U-Boot
149 */
Andy Shevchenkoddcccb22020-02-27 16:00:51 +0200150 xsdt = (struct acpi_xsdt *)((u32)rsdp->xsdt_address);
Bin Mengab5efd52016-05-07 07:46:25 -0700151
Andy Shevchenkoddcccb22020-02-27 16:00:51 +0200152 /* Add table to the XSDT */
153 xsdt->entry[i] = (u64)(u32)table;
Bin Mengab5efd52016-05-07 07:46:25 -0700154
Andy Shevchenkoddcccb22020-02-27 16:00:51 +0200155 /* Fix XSDT length */
156 xsdt->header.length = sizeof(struct acpi_table_header) +
157 sizeof(u64) * (i + 1);
158
159 /* Re-calculate checksum */
160 xsdt->header.checksum = 0;
161 xsdt->header.checksum = table_compute_checksum((u8 *)xsdt,
162 xsdt->header.length);
Bin Mengab5efd52016-05-07 07:46:25 -0700163}
164
165static void acpi_create_facs(struct acpi_facs *facs)
166{
167 memset((void *)facs, 0, sizeof(struct acpi_facs));
168
169 memcpy(facs->signature, "FACS", 4);
170 facs->length = sizeof(struct acpi_facs);
171 facs->hardware_signature = 0;
172 facs->firmware_waking_vector = 0;
173 facs->global_lock = 0;
174 facs->flags = 0;
175 facs->x_firmware_waking_vector_l = 0;
176 facs->x_firmware_waking_vector_h = 0;
177 facs->version = 1;
178}
179
180static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
181 u8 cpu, u8 apic)
182{
183 lapic->type = ACPI_APIC_LAPIC;
184 lapic->length = sizeof(struct acpi_madt_lapic);
185 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
186 lapic->processor_id = cpu;
187 lapic->apic_id = apic;
188
189 return lapic->length;
190}
191
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700192int acpi_create_madt_lapics(u32 current)
Bin Mengab5efd52016-05-07 07:46:25 -0700193{
194 struct udevice *dev;
George McCollister8a1a7592016-06-07 13:40:18 -0500195 int total_length = 0;
Bin Mengab5efd52016-05-07 07:46:25 -0700196
197 for (uclass_find_first_device(UCLASS_CPU, &dev);
198 dev;
199 uclass_find_next_device(&dev)) {
200 struct cpu_platdata *plat = dev_get_parent_platdata(dev);
George McCollister8a1a7592016-06-07 13:40:18 -0500201 int length = acpi_create_madt_lapic(
202 (struct acpi_madt_lapic *)current,
203 plat->cpu_id, plat->cpu_id);
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700204 current += length;
George McCollister8a1a7592016-06-07 13:40:18 -0500205 total_length += length;
Bin Mengab5efd52016-05-07 07:46:25 -0700206 }
207
George McCollister8a1a7592016-06-07 13:40:18 -0500208 return total_length;
Bin Mengab5efd52016-05-07 07:46:25 -0700209}
210
211int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
212 u32 addr, u32 gsi_base)
213{
214 ioapic->type = ACPI_APIC_IOAPIC;
215 ioapic->length = sizeof(struct acpi_madt_ioapic);
216 ioapic->reserved = 0x00;
217 ioapic->gsi_base = gsi_base;
218 ioapic->ioapic_id = id;
219 ioapic->ioapic_addr = addr;
220
221 return ioapic->length;
222}
223
224int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride,
225 u8 bus, u8 source, u32 gsirq, u16 flags)
226{
227 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
228 irqoverride->length = sizeof(struct acpi_madt_irqoverride);
229 irqoverride->bus = bus;
230 irqoverride->source = source;
231 irqoverride->gsirq = gsirq;
232 irqoverride->flags = flags;
233
234 return irqoverride->length;
235}
236
237int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi,
238 u8 cpu, u16 flags, u8 lint)
239{
240 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
241 lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi);
242 lapic_nmi->flags = flags;
243 lapic_nmi->processor_id = cpu;
244 lapic_nmi->lint = lint;
245
246 return lapic_nmi->length;
247}
248
Andy Shevchenkob156da92017-07-21 22:32:04 +0300249static int acpi_create_madt_irq_overrides(u32 current)
250{
251 struct acpi_madt_irqoverride *irqovr;
252 u16 sci_flags = MP_IRQ_TRIGGER_LEVEL | MP_IRQ_POLARITY_HIGH;
253 int length = 0;
254
255 irqovr = (void *)current;
256 length += acpi_create_madt_irqoverride(irqovr, 0, 0, 2, 0);
257
258 irqovr = (void *)(current + length);
259 length += acpi_create_madt_irqoverride(irqovr, 0, 9, 9, sci_flags);
260
261 return length;
262}
263
264__weak u32 acpi_fill_madt(u32 current)
265{
266 current += acpi_create_madt_lapics(current);
267
268 current += acpi_create_madt_ioapic((struct acpi_madt_ioapic *)current,
269 io_apic_read(IO_APIC_ID) >> 24, IO_APIC_ADDR, 0);
270
271 current += acpi_create_madt_irq_overrides(current);
272
273 return current;
274}
275
Bin Mengab5efd52016-05-07 07:46:25 -0700276static void acpi_create_madt(struct acpi_madt *madt)
277{
278 struct acpi_table_header *header = &(madt->header);
Bin Meng7e79a6b2016-05-07 07:46:26 -0700279 u32 current = (u32)madt + sizeof(struct acpi_madt);
Bin Mengab5efd52016-05-07 07:46:25 -0700280
281 memset((void *)madt, 0, sizeof(struct acpi_madt));
282
283 /* Fill out header fields */
284 acpi_fill_header(header, "APIC");
285 header->length = sizeof(struct acpi_madt);
Bin Meng7e6343e2016-05-07 07:46:28 -0700286 header->revision = 4;
Bin Mengab5efd52016-05-07 07:46:25 -0700287
288 madt->lapic_addr = LAPIC_DEFAULT_BASE;
289 madt->flags = ACPI_MADT_PCAT_COMPAT;
290
291 current = acpi_fill_madt(current);
292
293 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700294 header->length = current - (u32)madt;
Bin Mengab5efd52016-05-07 07:46:25 -0700295
296 header->checksum = table_compute_checksum((void *)madt, header->length);
297}
298
Andy Shevchenkoace77622017-07-21 22:32:05 +0300299int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig, u32 base,
300 u16 seg_nr, u8 start, u8 end)
Bin Mengab5efd52016-05-07 07:46:25 -0700301{
302 memset(mmconfig, 0, sizeof(*mmconfig));
303 mmconfig->base_address_l = base;
304 mmconfig->base_address_h = 0;
305 mmconfig->pci_segment_group_number = seg_nr;
306 mmconfig->start_bus_number = start;
307 mmconfig->end_bus_number = end;
308
309 return sizeof(struct acpi_mcfg_mmconfig);
310}
311
Andy Shevchenkoace77622017-07-21 22:32:05 +0300312__weak u32 acpi_fill_mcfg(u32 current)
Bin Mengab5efd52016-05-07 07:46:25 -0700313{
314 current += acpi_create_mcfg_mmconfig
315 ((struct acpi_mcfg_mmconfig *)current,
316 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
317
318 return current;
319}
320
321/* MCFG is defined in the PCI Firmware Specification 3.0 */
322static void acpi_create_mcfg(struct acpi_mcfg *mcfg)
323{
324 struct acpi_table_header *header = &(mcfg->header);
Bin Meng7e79a6b2016-05-07 07:46:26 -0700325 u32 current = (u32)mcfg + sizeof(struct acpi_mcfg);
Bin Mengab5efd52016-05-07 07:46:25 -0700326
327 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
328
329 /* Fill out header fields */
330 acpi_fill_header(header, "MCFG");
331 header->length = sizeof(struct acpi_mcfg);
Bin Meng7e6343e2016-05-07 07:46:28 -0700332 header->revision = 1;
Bin Mengab5efd52016-05-07 07:46:25 -0700333
334 current = acpi_fill_mcfg(current);
335
336 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700337 header->length = current - (u32)mcfg;
Bin Mengab5efd52016-05-07 07:46:25 -0700338 header->checksum = table_compute_checksum((void *)mcfg, header->length);
Saket Sinha867bcb62015-08-22 12:20:55 +0530339}
340
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300341__weak u32 acpi_fill_csrt(u32 current)
342{
343 return current;
344}
345
346static void acpi_create_csrt(struct acpi_csrt *csrt)
347{
348 struct acpi_table_header *header = &(csrt->header);
349 u32 current = (u32)csrt + sizeof(struct acpi_csrt);
350
351 memset((void *)csrt, 0, sizeof(struct acpi_csrt));
352
353 /* Fill out header fields */
354 acpi_fill_header(header, "CSRT");
355 header->length = sizeof(struct acpi_csrt);
356 header->revision = 0;
357
358 current = acpi_fill_csrt(current);
359
360 /* (Re)calculate length and checksum */
361 header->length = current - (u32)csrt;
362 header->checksum = table_compute_checksum((void *)csrt, header->length);
363}
364
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200365static void acpi_create_spcr(struct acpi_spcr *spcr)
366{
367 struct acpi_table_header *header = &(spcr->header);
368 struct serial_device_info serial_info = {0};
369 ulong serial_address, serial_offset;
Simon Glass67d1b052018-12-28 14:23:08 -0700370 struct udevice *dev;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200371 uint serial_config;
372 uint serial_width;
373 int access_size;
374 int space_id;
Andy Shevchenkoedf18a82019-02-28 17:19:54 +0200375 int ret = -ENODEV;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200376
377 /* Fill out header fields */
378 acpi_fill_header(header, "SPCR");
379 header->length = sizeof(struct acpi_spcr);
380 header->revision = 2;
381
Simon Glassa61cbad2018-12-28 14:23:10 -0700382 /* Read the device once, here. It is reused below */
Andy Shevchenkoedf18a82019-02-28 17:19:54 +0200383 dev = gd->cur_serial_dev;
384 if (dev)
Simon Glassa61cbad2018-12-28 14:23:10 -0700385 ret = serial_getinfo(dev, &serial_info);
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200386 if (ret)
387 serial_info.type = SERIAL_CHIP_UNKNOWN;
388
389 /* Encode chip type */
390 switch (serial_info.type) {
391 case SERIAL_CHIP_16550_COMPATIBLE:
392 spcr->interface_type = ACPI_DBG2_16550_COMPATIBLE;
393 break;
394 case SERIAL_CHIP_UNKNOWN:
395 default:
396 spcr->interface_type = ACPI_DBG2_UNKNOWN;
397 break;
398 }
399
400 /* Encode address space */
401 switch (serial_info.addr_space) {
402 case SERIAL_ADDRESS_SPACE_MEMORY:
403 space_id = ACPI_ADDRESS_SPACE_MEMORY;
404 break;
405 case SERIAL_ADDRESS_SPACE_IO:
406 default:
407 space_id = ACPI_ADDRESS_SPACE_IO;
408 break;
409 }
410
411 serial_width = serial_info.reg_width * 8;
412 serial_offset = serial_info.reg_offset << serial_info.reg_shift;
413 serial_address = serial_info.addr + serial_offset;
414
415 /* Encode register access size */
416 switch (serial_info.reg_shift) {
417 case 0:
418 access_size = ACPI_ACCESS_SIZE_BYTE_ACCESS;
419 break;
420 case 1:
421 access_size = ACPI_ACCESS_SIZE_WORD_ACCESS;
422 break;
423 case 2:
424 access_size = ACPI_ACCESS_SIZE_DWORD_ACCESS;
425 break;
426 case 3:
427 access_size = ACPI_ACCESS_SIZE_QWORD_ACCESS;
428 break;
429 default:
430 access_size = ACPI_ACCESS_SIZE_UNDEFINED;
431 break;
432 }
433
434 debug("UART type %u @ %lx\n", spcr->interface_type, serial_address);
435
436 /* Fill GAS */
437 spcr->serial_port.space_id = space_id;
438 spcr->serial_port.bit_width = serial_width;
439 spcr->serial_port.bit_offset = 0;
440 spcr->serial_port.access_size = access_size;
441 spcr->serial_port.addrl = lower_32_bits(serial_address);
442 spcr->serial_port.addrh = upper_32_bits(serial_address);
443
444 /* Encode baud rate */
445 switch (serial_info.baudrate) {
446 case 9600:
447 spcr->baud_rate = 3;
448 break;
449 case 19200:
450 spcr->baud_rate = 4;
451 break;
452 case 57600:
453 spcr->baud_rate = 6;
454 break;
455 case 115200:
456 spcr->baud_rate = 7;
457 break;
458 default:
459 spcr->baud_rate = 0;
460 break;
461 }
462
Simon Glassa61cbad2018-12-28 14:23:10 -0700463 serial_config = SERIAL_DEFAULT_CONFIG;
464 if (dev)
Simon Glass67d1b052018-12-28 14:23:08 -0700465 ret = serial_getconfig(dev, &serial_config);
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200466
467 spcr->parity = SERIAL_GET_PARITY(serial_config);
468 spcr->stop_bits = SERIAL_GET_STOP(serial_config);
469
470 /* No PCI devices for now */
471 spcr->pci_device_id = 0xffff;
472 spcr->pci_vendor_id = 0xffff;
473
474 /* Fix checksum */
475 header->checksum = table_compute_checksum((void *)spcr, header->length);
476}
477
Miao Yanfa287b12016-01-20 01:57:06 -0800478/*
Andy Shevchenko7b36dbd2018-01-10 19:33:10 +0200479 * QEMU's version of write_acpi_tables is defined in drivers/misc/qfw.c
Miao Yanfa287b12016-01-20 01:57:06 -0800480 */
Simon Glass42fd8c12017-01-16 07:03:35 -0700481ulong write_acpi_tables(ulong start)
Saket Sinha867bcb62015-08-22 12:20:55 +0530482{
Bin Meng358bb3f2016-02-27 22:58:00 -0800483 u32 current;
Saket Sinha867bcb62015-08-22 12:20:55 +0530484 struct acpi_rsdp *rsdp;
485 struct acpi_rsdt *rsdt;
486 struct acpi_xsdt *xsdt;
487 struct acpi_facs *facs;
Bin Meng8a8c0352016-05-07 07:46:21 -0700488 struct acpi_table_header *dsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530489 struct acpi_fadt *fadt;
490 struct acpi_mcfg *mcfg;
491 struct acpi_madt *madt;
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300492 struct acpi_csrt *csrt;
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200493 struct acpi_spcr *spcr;
Bin Meng79c2c252016-06-17 02:13:16 -0700494 int i;
Saket Sinha867bcb62015-08-22 12:20:55 +0530495
496 current = start;
497
Bin Mengab5efd52016-05-07 07:46:25 -0700498 /* Align ACPI tables to 16 byte */
Saket Sinha867bcb62015-08-22 12:20:55 +0530499 current = ALIGN(current, 16);
500
Simon Glass42fd8c12017-01-16 07:03:35 -0700501 debug("ACPI: Writing ACPI tables at %lx\n", start);
Saket Sinha867bcb62015-08-22 12:20:55 +0530502
503 /* We need at least an RSDP and an RSDT Table */
504 rsdp = (struct acpi_rsdp *)current;
505 current += sizeof(struct acpi_rsdp);
506 current = ALIGN(current, 16);
507 rsdt = (struct acpi_rsdt *)current;
508 current += sizeof(struct acpi_rsdt);
509 current = ALIGN(current, 16);
510 xsdt = (struct acpi_xsdt *)current;
511 current += sizeof(struct acpi_xsdt);
Bin Meng25e133e2016-05-07 07:46:27 -0700512 /*
513 * Per ACPI spec, the FACS table address must be aligned to a 64 byte
514 * boundary (Windows checks this, but Linux does not).
515 */
516 current = ALIGN(current, 64);
Saket Sinha867bcb62015-08-22 12:20:55 +0530517
518 /* clear all table memory */
519 memset((void *)start, 0, current - start);
520
521 acpi_write_rsdp(rsdp, rsdt, xsdt);
522 acpi_write_rsdt(rsdt);
523 acpi_write_xsdt(xsdt);
524
525 debug("ACPI: * FACS\n");
526 facs = (struct acpi_facs *)current;
527 current += sizeof(struct acpi_facs);
528 current = ALIGN(current, 16);
529
530 acpi_create_facs(facs);
531
532 debug("ACPI: * DSDT\n");
Bin Meng8a8c0352016-05-07 07:46:21 -0700533 dsdt = (struct acpi_table_header *)current;
534 memcpy(dsdt, &AmlCode, sizeof(struct acpi_table_header));
Bin Meng10fcabe2016-05-11 07:45:05 -0700535 current += sizeof(struct acpi_table_header);
536 memcpy((char *)current,
537 (char *)&AmlCode + sizeof(struct acpi_table_header),
538 dsdt->length - sizeof(struct acpi_table_header));
539 current += dsdt->length - sizeof(struct acpi_table_header);
Saket Sinha867bcb62015-08-22 12:20:55 +0530540 current = ALIGN(current, 16);
541
Bin Meng79c2c252016-06-17 02:13:16 -0700542 /* Pack GNVS into the ACPI table area */
543 for (i = 0; i < dsdt->length; i++) {
544 u32 *gnvs = (u32 *)((u32)dsdt + i);
545 if (*gnvs == ACPI_GNVS_ADDR) {
546 debug("Fix up global NVS in DSDT to 0x%08x\n", current);
547 *gnvs = current;
548 break;
549 }
550 }
551
552 /* Update DSDT checksum since we patched the GNVS address */
553 dsdt->checksum = 0;
554 dsdt->checksum = table_compute_checksum((void *)dsdt, dsdt->length);
555
556 /* Fill in platform-specific global NVS variables */
557 acpi_create_gnvs((struct acpi_global_nvs *)current);
558 current += sizeof(struct acpi_global_nvs);
559 current = ALIGN(current, 16);
560
Saket Sinha867bcb62015-08-22 12:20:55 +0530561 debug("ACPI: * FADT\n");
562 fadt = (struct acpi_fadt *)current;
563 current += sizeof(struct acpi_fadt);
564 current = ALIGN(current, 16);
565 acpi_create_fadt(fadt, facs, dsdt);
566 acpi_add_table(rsdp, fadt);
567
Saket Sinha867bcb62015-08-22 12:20:55 +0530568 debug("ACPI: * MADT\n");
569 madt = (struct acpi_madt *)current;
570 acpi_create_madt(madt);
Bin Meng10fcabe2016-05-11 07:45:05 -0700571 current += madt->header.length;
572 acpi_add_table(rsdp, madt);
Saket Sinha867bcb62015-08-22 12:20:55 +0530573 current = ALIGN(current, 16);
574
Bin Mengab5efd52016-05-07 07:46:25 -0700575 debug("ACPI: * MCFG\n");
576 mcfg = (struct acpi_mcfg *)current;
577 acpi_create_mcfg(mcfg);
Bin Meng10fcabe2016-05-11 07:45:05 -0700578 current += mcfg->header.length;
579 acpi_add_table(rsdp, mcfg);
580 current = ALIGN(current, 16);
Bin Mengab5efd52016-05-07 07:46:25 -0700581
Andy Shevchenkoddd2a422019-07-14 19:23:57 +0300582 debug("ACPI: * CSRT\n");
583 csrt = (struct acpi_csrt *)current;
584 acpi_create_csrt(csrt);
585 current += csrt->header.length;
586 acpi_add_table(rsdp, csrt);
587 current = ALIGN(current, 16);
588
Andy Shevchenkob288cd92018-11-20 23:52:38 +0200589 debug("ACPI: * SPCR\n");
590 spcr = (struct acpi_spcr *)current;
591 acpi_create_spcr(spcr);
592 current += spcr->header.length;
593 acpi_add_table(rsdp, spcr);
594 current = ALIGN(current, 16);
595
Bin Mengdca4d1a2016-05-07 07:46:12 -0700596 debug("current = %x\n", current);
Saket Sinha867bcb62015-08-22 12:20:55 +0530597
Andy Shevchenko3469bf42018-01-10 19:40:15 +0200598 acpi_rsdp_addr = (unsigned long)rsdp;
Bin Mengdca4d1a2016-05-07 07:46:12 -0700599 debug("ACPI: done\n");
Saket Sinha867bcb62015-08-22 12:20:55 +0530600
Saket Sinha867bcb62015-08-22 12:20:55 +0530601 return current;
602}
Bin Menge76bf382017-04-21 07:24:36 -0700603
Bin Meng45410da2018-01-30 05:01:16 -0800604ulong acpi_get_rsdp_addr(void)
605{
606 return acpi_rsdp_addr;
607}