blob: 989cf7d5de0f3a3f1ef7410f35ca8ffffb8b79ee [file] [log] [blame]
Saket Sinha331141a2015-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 Meng44256b02016-05-07 07:46:25 -07005 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
Saket Sinha331141a2015-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 Sinha331141a2015-08-22 12:20:55 +053014#include <asm/acpi_table.h>
Saket Sinha331141a2015-08-22 12:20:55 +053015#include <asm/lapic.h>
16#include <asm/tables.h>
Saket Sinha331141a2015-08-22 12:20:55 +053017
18/*
Bin Mengb063d5f2016-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 Sinha331141a2015-08-22 12:20:55 +053021 */
22extern const unsigned char AmlCode[];
23
Bin Meng44256b02016-05-07 07:46:25 -070024static void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt,
25 struct acpi_xsdt *xsdt)
26{
27 memset(rsdp, 0, sizeof(struct acpi_rsdp));
28
29 memcpy(rsdp->signature, RSDP_SIG, 8);
30 memcpy(rsdp->oem_id, OEM_ID, 6);
31
32 rsdp->length = sizeof(struct acpi_rsdp);
33 rsdp->rsdt_address = (u32)rsdt;
34
35 /*
36 * 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)
41 */
42 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;
47 }
48
49 /* 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));
53}
54
55void acpi_fill_header(struct acpi_table_header *header, char *signature)
56{
57 memcpy(header->signature, signature, 4);
58 memcpy(header->oem_id, OEM_ID, 6);
59 memcpy(header->oem_table_id, OEM_TABLE_ID, 8);
60 memcpy(header->aslc_id, ASLC_ID, 4);
61}
62
63static void acpi_write_rsdt(struct acpi_rsdt *rsdt)
64{
65 struct acpi_table_header *header = &(rsdt->header);
66
67 /* Fill out header fields */
68 acpi_fill_header(header, "RSDT");
69 header->length = sizeof(struct acpi_rsdt);
Bin Mengf662fe42016-05-07 07:46:28 -070070 header->revision = 1;
Bin Meng44256b02016-05-07 07:46:25 -070071
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{
81 struct acpi_table_header *header = &(xsdt->header);
82
83 /* Fill out header fields */
84 acpi_fill_header(header, "XSDT");
85 header->length = sizeof(struct acpi_xsdt);
Bin Mengf662fe42016-05-07 07:46:28 -070086 header->revision = 1;
Bin Meng44256b02016-05-07 07:46:25 -070087
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
Saket Sinha331141a2015-08-22 12:20:55 +053095/**
Bin Meng44256b02016-05-07 07:46:25 -070096 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
97 * and checksum.
98 */
Saket Sinha331141a2015-08-22 12:20:55 +053099static void acpi_add_table(struct acpi_rsdp *rsdp, void *table)
100{
101 int i, entries_num;
102 struct acpi_rsdt *rsdt;
103 struct acpi_xsdt *xsdt = NULL;
104
105 /* The RSDT is mandatory while the XSDT is not */
106 rsdt = (struct acpi_rsdt *)rsdp->rsdt_address;
107
108 if (rsdp->xsdt_address)
109 xsdt = (struct acpi_xsdt *)((u32)rsdp->xsdt_address);
110
111 /* 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;
117 }
118
119 if (i >= entries_num) {
Bin Mengd2d22182016-05-07 07:46:12 -0700120 debug("ACPI: Error: too many tables\n");
Saket Sinha331141a2015-08-22 12:20:55 +0530121 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 */
Bin Meng6a421582016-05-07 07:46:21 -0700128 rsdt->header.length = sizeof(struct acpi_table_header) +
Bin Meng44256b02016-05-07 07:46:25 -0700129 (sizeof(u32) * (i + 1));
Saket Sinha331141a2015-08-22 12:20:55 +0530130
131 /* Re-calculate checksum */
132 rsdt->header.checksum = 0;
133 rsdt->header.checksum = table_compute_checksum((u8 *)rsdt,
Bin Meng44256b02016-05-07 07:46:25 -0700134 rsdt->header.length);
Saket Sinha331141a2015-08-22 12:20:55 +0530135
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 */
Bin Meng6a421582016-05-07 07:46:21 -0700145 xsdt->header.length = sizeof(struct acpi_table_header) +
Bin Meng44256b02016-05-07 07:46:25 -0700146 (sizeof(u64) * (i + 1));
Saket Sinha331141a2015-08-22 12:20:55 +0530147
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
Bin Meng44256b02016-05-07 07:46:25 -0700155static 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
Saket Sinha331141a2015-08-22 12:20:55 +0530170static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
Bin Meng44256b02016-05-07 07:46:25 -0700171 u8 cpu, u8 apic)
Saket Sinha331141a2015-08-22 12:20:55 +0530172{
Bin Meng44256b02016-05-07 07:46:25 -0700173 lapic->type = ACPI_APIC_LAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +0530174 lapic->length = sizeof(struct acpi_madt_lapic);
Bin Meng44256b02016-05-07 07:46:25 -0700175 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
Saket Sinha331141a2015-08-22 12:20:55 +0530176 lapic->processor_id = cpu;
177 lapic->apic_id = apic;
178
179 return lapic->length;
180}
181
Bin Meng3c5234e2016-05-07 07:46:30 -0700182int acpi_create_madt_lapics(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +0530183{
184 struct udevice *dev;
Bin Meng3c5234e2016-05-07 07:46:30 -0700185 int length = 0;
Saket Sinha331141a2015-08-22 12:20:55 +0530186
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 Meng3c5234e2016-05-07 07:46:30 -0700192 length += acpi_create_madt_lapic(
Saket Sinha331141a2015-08-22 12:20:55 +0530193 (struct acpi_madt_lapic *)current,
194 plat->cpu_id, plat->cpu_id);
Bin Meng3c5234e2016-05-07 07:46:30 -0700195 current += length;
Bin Meng44256b02016-05-07 07:46:25 -0700196 }
197
Bin Meng3c5234e2016-05-07 07:46:30 -0700198 return length;
Saket Sinha331141a2015-08-22 12:20:55 +0530199}
200
Bin Meng44256b02016-05-07 07:46:25 -0700201int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
202 u32 addr, u32 gsi_base)
Saket Sinha331141a2015-08-22 12:20:55 +0530203{
Bin Meng6a421582016-05-07 07:46:21 -0700204 ioapic->type = ACPI_APIC_IOAPIC;
Saket Sinha331141a2015-08-22 12:20:55 +0530205 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,
Bin Meng44256b02016-05-07 07:46:25 -0700215 u8 bus, u8 source, u32 gsirq, u16 flags)
Saket Sinha331141a2015-08-22 12:20:55 +0530216{
Bin Meng6a421582016-05-07 07:46:21 -0700217 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
Saket Sinha331141a2015-08-22 12:20:55 +0530218 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,
Bin Meng44256b02016-05-07 07:46:25 -0700228 u8 cpu, u16 flags, u8 lint)
Saket Sinha331141a2015-08-22 12:20:55 +0530229{
Bin Meng6a421582016-05-07 07:46:21 -0700230 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
Saket Sinha331141a2015-08-22 12:20:55 +0530231 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
Saket Sinha331141a2015-08-22 12:20:55 +0530239static void acpi_create_madt(struct acpi_madt *madt)
240{
Bin Meng6a421582016-05-07 07:46:21 -0700241 struct acpi_table_header *header = &(madt->header);
Bin Menga1ec7db2016-05-07 07:46:26 -0700242 u32 current = (u32)madt + sizeof(struct acpi_madt);
Saket Sinha331141a2015-08-22 12:20:55 +0530243
244 memset((void *)madt, 0, sizeof(struct acpi_madt));
245
246 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700247 acpi_fill_header(header, "APIC");
Saket Sinha331141a2015-08-22 12:20:55 +0530248 header->length = sizeof(struct acpi_madt);
Bin Mengf662fe42016-05-07 07:46:28 -0700249 header->revision = 4;
Saket Sinha331141a2015-08-22 12:20:55 +0530250
251 madt->lapic_addr = LAPIC_DEFAULT_BASE;
Bin Meng6a421582016-05-07 07:46:21 -0700252 madt->flags = ACPI_MADT_PCAT_COMPAT;
Saket Sinha331141a2015-08-22 12:20:55 +0530253
254 current = acpi_fill_madt(current);
255
256 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700257 header->length = current - (u32)madt;
Saket Sinha331141a2015-08-22 12:20:55 +0530258
259 header->checksum = table_compute_checksum((void *)madt, header->length);
260}
261
262static int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig,
Bin Meng44256b02016-05-07 07:46:25 -0700263 u32 base, u16 seg_nr, u8 start, u8 end)
Saket Sinha331141a2015-08-22 12:20:55 +0530264{
265 memset(mmconfig, 0, sizeof(*mmconfig));
Bin Meng6a421582016-05-07 07:46:21 -0700266 mmconfig->base_address_l = base;
267 mmconfig->base_address_h = 0;
Saket Sinha331141a2015-08-22 12:20:55 +0530268 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 Menga1ec7db2016-05-07 07:46:26 -0700275static u32 acpi_fill_mcfg(u32 current)
Saket Sinha331141a2015-08-22 12:20:55 +0530276{
277 current += acpi_create_mcfg_mmconfig
278 ((struct acpi_mcfg_mmconfig *)current,
Bin Meng44256b02016-05-07 07:46:25 -0700279 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
Saket Sinha331141a2015-08-22 12:20:55 +0530280
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{
Bin Meng6a421582016-05-07 07:46:21 -0700287 struct acpi_table_header *header = &(mcfg->header);
Bin Menga1ec7db2016-05-07 07:46:26 -0700288 u32 current = (u32)mcfg + sizeof(struct acpi_mcfg);
Saket Sinha331141a2015-08-22 12:20:55 +0530289
290 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
291
292 /* Fill out header fields */
Bin Mengb063d5f2016-05-07 07:46:24 -0700293 acpi_fill_header(header, "MCFG");
Saket Sinha331141a2015-08-22 12:20:55 +0530294 header->length = sizeof(struct acpi_mcfg);
Bin Mengf662fe42016-05-07 07:46:28 -0700295 header->revision = 1;
Saket Sinha331141a2015-08-22 12:20:55 +0530296
297 current = acpi_fill_mcfg(current);
298
299 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700300 header->length = current - (u32)mcfg;
Saket Sinha331141a2015-08-22 12:20:55 +0530301 header->checksum = table_compute_checksum((void *)mcfg, header->length);
302}
303
Miao Yan3b68c522016-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 Meng5c549102016-02-27 22:58:00 -0800308u32 write_acpi_tables(u32 start)
Saket Sinha331141a2015-08-22 12:20:55 +0530309{
Bin Meng5c549102016-02-27 22:58:00 -0800310 u32 current;
Saket Sinha331141a2015-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 Meng6a421582016-05-07 07:46:21 -0700315 struct acpi_table_header *dsdt;
Saket Sinha331141a2015-08-22 12:20:55 +0530316 struct acpi_fadt *fadt;
317 struct acpi_mcfg *mcfg;
318 struct acpi_madt *madt;
Saket Sinha331141a2015-08-22 12:20:55 +0530319
320 current = start;
321
Bin Meng44256b02016-05-07 07:46:25 -0700322 /* Align ACPI tables to 16 byte */
Saket Sinha331141a2015-08-22 12:20:55 +0530323 current = ALIGN(current, 16);
324
Bin Mengd2d22182016-05-07 07:46:12 -0700325 debug("ACPI: Writing ACPI tables at %x\n", start);
Saket Sinha331141a2015-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 Meng3d938d12016-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 Sinha331141a2015-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 Meng6a421582016-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 Sinha331141a2015-08-22 12:20:55 +0530361 memcpy((char *)current,
Bin Meng6a421582016-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 Sinha331141a2015-08-22 12:20:55 +0530365
366 /* (Re)calculate length and checksum */
Bin Menga1ec7db2016-05-07 07:46:26 -0700367 dsdt->length = current - (u32)dsdt;
Saket Sinha331141a2015-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 Sinha331141a2015-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 Meng44256b02016-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 Mengd2d22182016-05-07 07:46:12 -0700399 debug("current = %x\n", current);
Saket Sinha331141a2015-08-22 12:20:55 +0530400
Bin Mengd2d22182016-05-07 07:46:12 -0700401 debug("ACPI: done\n");
Saket Sinha331141a2015-08-22 12:20:55 +0530402
403 return current;
404}