blob: 989cf7d5de0f3a3f1ef7410f35ca8ffffb8b79ee [file] [log] [blame]
Saket Sinha867bcb62015-08-22 12:20:55 +05301/*
2 * Based on acpi.c from coreboot
3 *
4 * Copyright (C) 2015, Saket Sinha <saket.sinha89@gmail.com>
Bin Mengab5efd52016-05-07 07:46:25 -07005 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Saket Sinha867bcb62015-08-22 12:20:55 +05306 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#include <common.h>
11#include <cpu.h>
12#include <dm.h>
13#include <dm/uclass-internal.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053014#include <asm/acpi_table.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053015#include <asm/lapic.h>
16#include <asm/tables.h>
Saket Sinha867bcb62015-08-22 12:20:55 +053017
18/*
Bin Mengdfbb18b2016-05-07 07:46:24 -070019 * IASL compiles the dsdt entries and writes the hex values
20 * to a C array AmlCode[] (see dsdt.c).
Saket Sinha867bcb62015-08-22 12:20:55 +053021 */
22extern const unsigned char AmlCode[];
23
Bin Mengab5efd52016-05-07 07:46:25 -070024static void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt,
25 struct acpi_xsdt *xsdt)
Saket Sinha867bcb62015-08-22 12:20:55 +053026{
Bin Mengab5efd52016-05-07 07:46:25 -070027 memset(rsdp, 0, sizeof(struct acpi_rsdp));
Saket Sinha867bcb62015-08-22 12:20:55 +053028
Bin Mengab5efd52016-05-07 07:46:25 -070029 memcpy(rsdp->signature, RSDP_SIG, 8);
30 memcpy(rsdp->oem_id, OEM_ID, 6);
Saket Sinha867bcb62015-08-22 12:20:55 +053031
Bin Mengab5efd52016-05-07 07:46:25 -070032 rsdp->length = sizeof(struct acpi_rsdp);
33 rsdp->rsdt_address = (u32)rsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +053034
35 /*
Bin Mengab5efd52016-05-07 07:46:25 -070036 * Revision: ACPI 1.0: 0, ACPI 2.0/3.0/4.0: 2
37 *
38 * Some OSes expect an XSDT to be present for RSD PTR revisions >= 2.
39 * If we don't have an ACPI XSDT, force ACPI 1.0 (and thus RSD PTR
40 * revision 0)
Saket Sinha867bcb62015-08-22 12:20:55 +053041 */
Bin Mengab5efd52016-05-07 07:46:25 -070042 if (xsdt == NULL) {
43 rsdp->revision = ACPI_RSDP_REV_ACPI_1_0;
44 } else {
45 rsdp->xsdt_address = (u64)(u32)xsdt;
46 rsdp->revision = ACPI_RSDP_REV_ACPI_2_0;
Saket Sinha867bcb62015-08-22 12:20:55 +053047 }
Saket Sinha867bcb62015-08-22 12:20:55 +053048
Bin Mengab5efd52016-05-07 07:46:25 -070049 /* Calculate checksums */
50 rsdp->checksum = table_compute_checksum((void *)rsdp, 20);
51 rsdp->ext_checksum = table_compute_checksum((void *)rsdp,
52 sizeof(struct acpi_rsdp));
Saket Sinha867bcb62015-08-22 12:20:55 +053053}
54
Bin Mengdfbb18b2016-05-07 07:46:24 -070055void acpi_fill_header(struct acpi_table_header *header, char *signature)
Saket Sinha867bcb62015-08-22 12:20:55 +053056{
Bin Mengdfbb18b2016-05-07 07:46:24 -070057 memcpy(header->signature, signature, 4);
Saket Sinha867bcb62015-08-22 12:20:55 +053058 memcpy(header->oem_id, OEM_ID, 6);
Bin Meng8a8c0352016-05-07 07:46:21 -070059 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
60 memcpy(header->aslc_id, ASLC_ID, 4);
Saket Sinha867bcb62015-08-22 12:20:55 +053061}
62
Saket Sinha867bcb62015-08-22 12:20:55 +053063static void acpi_write_rsdt(struct acpi_rsdt *rsdt)
64{
Bin Meng8a8c0352016-05-07 07:46:21 -070065 struct acpi_table_header *header = &(rsdt->header);
Saket Sinha867bcb62015-08-22 12:20:55 +053066
67 /* Fill out header fields */
Bin Mengdfbb18b2016-05-07 07:46:24 -070068 acpi_fill_header(header, "RSDT");
Saket Sinha867bcb62015-08-22 12:20:55 +053069 header->length = sizeof(struct acpi_rsdt);
Bin Meng7e6343e2016-05-07 07:46:28 -070070 header->revision = 1;
Saket Sinha867bcb62015-08-22 12:20:55 +053071
72 /* Entries are filled in later, we come with an empty set */
73
74 /* Fix checksum */
75 header->checksum = table_compute_checksum((void *)rsdt,
76 sizeof(struct acpi_rsdt));
77}
78
79static void acpi_write_xsdt(struct acpi_xsdt *xsdt)
80{
Bin Meng8a8c0352016-05-07 07:46:21 -070081 struct acpi_table_header *header = &(xsdt->header);
Saket Sinha867bcb62015-08-22 12:20:55 +053082
83 /* Fill out header fields */
Bin Mengdfbb18b2016-05-07 07:46:24 -070084 acpi_fill_header(header, "XSDT");
Saket Sinha867bcb62015-08-22 12:20:55 +053085 header->length = sizeof(struct acpi_xsdt);
Bin Meng7e6343e2016-05-07 07:46:28 -070086 header->revision = 1;
Saket Sinha867bcb62015-08-22 12:20:55 +053087
88 /* Entries are filled in later, we come with an empty set */
89
90 /* Fix checksum */
91 header->checksum = table_compute_checksum((void *)xsdt,
92 sizeof(struct acpi_xsdt));
93}
94
Bin Mengab5efd52016-05-07 07:46:25 -070095/**
96 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
97 * and checksum.
98 */
99static void acpi_add_table(struct acpi_rsdp *rsdp, void *table)
Saket Sinha867bcb62015-08-22 12:20:55 +0530100{
Bin Mengab5efd52016-05-07 07:46:25 -0700101 int i, entries_num;
102 struct acpi_rsdt *rsdt;
103 struct acpi_xsdt *xsdt = NULL;
Saket Sinha867bcb62015-08-22 12:20:55 +0530104
Bin Mengab5efd52016-05-07 07:46:25 -0700105 /* The RSDT is mandatory while the XSDT is not */
106 rsdt = (struct acpi_rsdt *)rsdp->rsdt_address;
Saket Sinha867bcb62015-08-22 12:20:55 +0530107
Bin Mengab5efd52016-05-07 07:46:25 -0700108 if (rsdp->xsdt_address)
109 xsdt = (struct acpi_xsdt *)((u32)rsdp->xsdt_address);
Saket Sinha867bcb62015-08-22 12:20:55 +0530110
Bin Mengab5efd52016-05-07 07:46:25 -0700111 /* This should always be MAX_ACPI_TABLES */
112 entries_num = ARRAY_SIZE(rsdt->entry);
113
114 for (i = 0; i < entries_num; i++) {
115 if (rsdt->entry[i] == 0)
116 break;
Saket Sinha867bcb62015-08-22 12:20:55 +0530117 }
118
Bin Mengab5efd52016-05-07 07:46:25 -0700119 if (i >= entries_num) {
120 debug("ACPI: Error: too many tables\n");
121 return;
122 }
123
124 /* Add table to the RSDT */
125 rsdt->entry[i] = (u32)table;
126
127 /* Fix RSDT length or the kernel will assume invalid entries */
128 rsdt->header.length = sizeof(struct acpi_table_header) +
129 (sizeof(u32) * (i + 1));
130
131 /* Re-calculate checksum */
132 rsdt->header.checksum = 0;
133 rsdt->header.checksum = table_compute_checksum((u8 *)rsdt,
134 rsdt->header.length);
135
136 /*
137 * And now the same thing for the XSDT. We use the same index as for
138 * now we want the XSDT and RSDT to always be in sync in U-Boot
139 */
140 if (xsdt) {
141 /* Add table to the XSDT */
142 xsdt->entry[i] = (u64)(u32)table;
143
144 /* Fix XSDT length */
145 xsdt->header.length = sizeof(struct acpi_table_header) +
146 (sizeof(u64) * (i + 1));
147
148 /* Re-calculate checksum */
149 xsdt->header.checksum = 0;
150 xsdt->header.checksum = table_compute_checksum((u8 *)xsdt,
151 xsdt->header.length);
152 }
153}
154
155static void acpi_create_facs(struct acpi_facs *facs)
156{
157 memset((void *)facs, 0, sizeof(struct acpi_facs));
158
159 memcpy(facs->signature, "FACS", 4);
160 facs->length = sizeof(struct acpi_facs);
161 facs->hardware_signature = 0;
162 facs->firmware_waking_vector = 0;
163 facs->global_lock = 0;
164 facs->flags = 0;
165 facs->x_firmware_waking_vector_l = 0;
166 facs->x_firmware_waking_vector_h = 0;
167 facs->version = 1;
168}
169
170static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
171 u8 cpu, u8 apic)
172{
173 lapic->type = ACPI_APIC_LAPIC;
174 lapic->length = sizeof(struct acpi_madt_lapic);
175 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
176 lapic->processor_id = cpu;
177 lapic->apic_id = apic;
178
179 return lapic->length;
180}
181
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700182int acpi_create_madt_lapics(u32 current)
Bin Mengab5efd52016-05-07 07:46:25 -0700183{
184 struct udevice *dev;
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700185 int length = 0;
Bin Mengab5efd52016-05-07 07:46:25 -0700186
187 for (uclass_find_first_device(UCLASS_CPU, &dev);
188 dev;
189 uclass_find_next_device(&dev)) {
190 struct cpu_platdata *plat = dev_get_parent_platdata(dev);
191
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700192 length += acpi_create_madt_lapic(
Bin Mengab5efd52016-05-07 07:46:25 -0700193 (struct acpi_madt_lapic *)current,
194 plat->cpu_id, plat->cpu_id);
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700195 current += length;
Bin Mengab5efd52016-05-07 07:46:25 -0700196 }
197
Bin Mengfc4f5cc2016-05-07 07:46:30 -0700198 return length;
Bin Mengab5efd52016-05-07 07:46:25 -0700199}
200
201int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
202 u32 addr, u32 gsi_base)
203{
204 ioapic->type = ACPI_APIC_IOAPIC;
205 ioapic->length = sizeof(struct acpi_madt_ioapic);
206 ioapic->reserved = 0x00;
207 ioapic->gsi_base = gsi_base;
208 ioapic->ioapic_id = id;
209 ioapic->ioapic_addr = addr;
210
211 return ioapic->length;
212}
213
214int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride,
215 u8 bus, u8 source, u32 gsirq, u16 flags)
216{
217 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
218 irqoverride->length = sizeof(struct acpi_madt_irqoverride);
219 irqoverride->bus = bus;
220 irqoverride->source = source;
221 irqoverride->gsirq = gsirq;
222 irqoverride->flags = flags;
223
224 return irqoverride->length;
225}
226
227int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi,
228 u8 cpu, u16 flags, u8 lint)
229{
230 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
231 lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi);
232 lapic_nmi->flags = flags;
233 lapic_nmi->processor_id = cpu;
234 lapic_nmi->lint = lint;
235
236 return lapic_nmi->length;
237}
238
239static void acpi_create_madt(struct acpi_madt *madt)
240{
241 struct acpi_table_header *header = &(madt->header);
Bin Meng7e79a6b2016-05-07 07:46:26 -0700242 u32 current = (u32)madt + sizeof(struct acpi_madt);
Bin Mengab5efd52016-05-07 07:46:25 -0700243
244 memset((void *)madt, 0, sizeof(struct acpi_madt));
245
246 /* Fill out header fields */
247 acpi_fill_header(header, "APIC");
248 header->length = sizeof(struct acpi_madt);
Bin Meng7e6343e2016-05-07 07:46:28 -0700249 header->revision = 4;
Bin Mengab5efd52016-05-07 07:46:25 -0700250
251 madt->lapic_addr = LAPIC_DEFAULT_BASE;
252 madt->flags = ACPI_MADT_PCAT_COMPAT;
253
254 current = acpi_fill_madt(current);
255
256 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700257 header->length = current - (u32)madt;
Bin Mengab5efd52016-05-07 07:46:25 -0700258
259 header->checksum = table_compute_checksum((void *)madt, header->length);
260}
261
262static int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig,
263 u32 base, u16 seg_nr, u8 start, u8 end)
264{
265 memset(mmconfig, 0, sizeof(*mmconfig));
266 mmconfig->base_address_l = base;
267 mmconfig->base_address_h = 0;
268 mmconfig->pci_segment_group_number = seg_nr;
269 mmconfig->start_bus_number = start;
270 mmconfig->end_bus_number = end;
271
272 return sizeof(struct acpi_mcfg_mmconfig);
273}
274
Bin Meng7e79a6b2016-05-07 07:46:26 -0700275static u32 acpi_fill_mcfg(u32 current)
Bin Mengab5efd52016-05-07 07:46:25 -0700276{
277 current += acpi_create_mcfg_mmconfig
278 ((struct acpi_mcfg_mmconfig *)current,
279 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
280
281 return current;
282}
283
284/* MCFG is defined in the PCI Firmware Specification 3.0 */
285static void acpi_create_mcfg(struct acpi_mcfg *mcfg)
286{
287 struct acpi_table_header *header = &(mcfg->header);
Bin Meng7e79a6b2016-05-07 07:46:26 -0700288 u32 current = (u32)mcfg + sizeof(struct acpi_mcfg);
Bin Mengab5efd52016-05-07 07:46:25 -0700289
290 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
291
292 /* Fill out header fields */
293 acpi_fill_header(header, "MCFG");
294 header->length = sizeof(struct acpi_mcfg);
Bin Meng7e6343e2016-05-07 07:46:28 -0700295 header->revision = 1;
Bin Mengab5efd52016-05-07 07:46:25 -0700296
297 current = acpi_fill_mcfg(current);
298
299 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700300 header->length = current - (u32)mcfg;
Bin Mengab5efd52016-05-07 07:46:25 -0700301 header->checksum = table_compute_checksum((void *)mcfg, header->length);
Saket Sinha867bcb62015-08-22 12:20:55 +0530302}
303
Miao Yanfa287b12016-01-20 01:57:06 -0800304/*
305 * QEMU's version of write_acpi_tables is defined in
306 * arch/x86/cpu/qemu/fw_cfg.c
307 */
Bin Meng358bb3f2016-02-27 22:58:00 -0800308u32 write_acpi_tables(u32 start)
Saket Sinha867bcb62015-08-22 12:20:55 +0530309{
Bin Meng358bb3f2016-02-27 22:58:00 -0800310 u32 current;
Saket Sinha867bcb62015-08-22 12:20:55 +0530311 struct acpi_rsdp *rsdp;
312 struct acpi_rsdt *rsdt;
313 struct acpi_xsdt *xsdt;
314 struct acpi_facs *facs;
Bin Meng8a8c0352016-05-07 07:46:21 -0700315 struct acpi_table_header *dsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530316 struct acpi_fadt *fadt;
317 struct acpi_mcfg *mcfg;
318 struct acpi_madt *madt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530319
320 current = start;
321
Bin Mengab5efd52016-05-07 07:46:25 -0700322 /* Align ACPI tables to 16 byte */
Saket Sinha867bcb62015-08-22 12:20:55 +0530323 current = ALIGN(current, 16);
324
Bin Mengdca4d1a2016-05-07 07:46:12 -0700325 debug("ACPI: Writing ACPI tables at %x\n", start);
Saket Sinha867bcb62015-08-22 12:20:55 +0530326
327 /* We need at least an RSDP and an RSDT Table */
328 rsdp = (struct acpi_rsdp *)current;
329 current += sizeof(struct acpi_rsdp);
330 current = ALIGN(current, 16);
331 rsdt = (struct acpi_rsdt *)current;
332 current += sizeof(struct acpi_rsdt);
333 current = ALIGN(current, 16);
334 xsdt = (struct acpi_xsdt *)current;
335 current += sizeof(struct acpi_xsdt);
Bin Meng25e133e2016-05-07 07:46:27 -0700336 /*
337 * Per ACPI spec, the FACS table address must be aligned to a 64 byte
338 * boundary (Windows checks this, but Linux does not).
339 */
340 current = ALIGN(current, 64);
Saket Sinha867bcb62015-08-22 12:20:55 +0530341
342 /* clear all table memory */
343 memset((void *)start, 0, current - start);
344
345 acpi_write_rsdp(rsdp, rsdt, xsdt);
346 acpi_write_rsdt(rsdt);
347 acpi_write_xsdt(xsdt);
348
349 debug("ACPI: * FACS\n");
350 facs = (struct acpi_facs *)current;
351 current += sizeof(struct acpi_facs);
352 current = ALIGN(current, 16);
353
354 acpi_create_facs(facs);
355
356 debug("ACPI: * DSDT\n");
Bin Meng8a8c0352016-05-07 07:46:21 -0700357 dsdt = (struct acpi_table_header *)current;
358 memcpy(dsdt, &AmlCode, sizeof(struct acpi_table_header));
359 if (dsdt->length >= sizeof(struct acpi_table_header)) {
360 current += sizeof(struct acpi_table_header);
Saket Sinha867bcb62015-08-22 12:20:55 +0530361 memcpy((char *)current,
Bin Meng8a8c0352016-05-07 07:46:21 -0700362 (char *)&AmlCode + sizeof(struct acpi_table_header),
363 dsdt->length - sizeof(struct acpi_table_header));
364 current += dsdt->length - sizeof(struct acpi_table_header);
Saket Sinha867bcb62015-08-22 12:20:55 +0530365
366 /* (Re)calculate length and checksum */
Bin Meng7e79a6b2016-05-07 07:46:26 -0700367 dsdt->length = current - (u32)dsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530368 dsdt->checksum = 0;
369 dsdt->checksum = table_compute_checksum((void *)dsdt,
370 dsdt->length);
371 }
372 current = ALIGN(current, 16);
373
374 debug("ACPI: * FADT\n");
375 fadt = (struct acpi_fadt *)current;
376 current += sizeof(struct acpi_fadt);
377 current = ALIGN(current, 16);
378 acpi_create_fadt(fadt, facs, dsdt);
379 acpi_add_table(rsdp, fadt);
380
Saket Sinha867bcb62015-08-22 12:20:55 +0530381 debug("ACPI: * MADT\n");
382 madt = (struct acpi_madt *)current;
383 acpi_create_madt(madt);
384 if (madt->header.length > sizeof(struct acpi_madt)) {
385 current += madt->header.length;
386 acpi_add_table(rsdp, madt);
387 }
388 current = ALIGN(current, 16);
389
Bin Mengab5efd52016-05-07 07:46:25 -0700390 debug("ACPI: * MCFG\n");
391 mcfg = (struct acpi_mcfg *)current;
392 acpi_create_mcfg(mcfg);
393 if (mcfg->header.length > sizeof(struct acpi_mcfg)) {
394 current += mcfg->header.length;
395 current = ALIGN(current, 16);
396 acpi_add_table(rsdp, mcfg);
397 }
398
Bin Mengdca4d1a2016-05-07 07:46:12 -0700399 debug("current = %x\n", current);
Saket Sinha867bcb62015-08-22 12:20:55 +0530400
Bin Mengdca4d1a2016-05-07 07:46:12 -0700401 debug("ACPI: done\n");
Saket Sinha867bcb62015-08-22 12:20:55 +0530402
403 return current;
404}