blob: 76ee39d7233e98232af91a241359d04ffea73cc4 [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);
70
71 /* ACPI 1.0/2.0: 1, ACPI 3.0: 2, ACPI 4.0: 3 */
72 header->revision = ACPI_REV_ACPI_2_0;
73
74 /* Entries are filled in later, we come with an empty set */
75
76 /* Fix checksum */
77 header->checksum = table_compute_checksum((void *)rsdt,
78 sizeof(struct acpi_rsdt));
79}
80
81static void acpi_write_xsdt(struct acpi_xsdt *xsdt)
82{
Bin Meng8a8c0352016-05-07 07:46:21 -070083 struct acpi_table_header *header = &(xsdt->header);
Saket Sinha867bcb62015-08-22 12:20:55 +053084
85 /* Fill out header fields */
Bin Mengdfbb18b2016-05-07 07:46:24 -070086 acpi_fill_header(header, "XSDT");
Saket Sinha867bcb62015-08-22 12:20:55 +053087 header->length = sizeof(struct acpi_xsdt);
88
89 /* ACPI 1.0/2.0: 1, ACPI 3.0: 2, ACPI 4.0: 3 */
90 header->revision = ACPI_REV_ACPI_2_0;
91
92 /* Entries are filled in later, we come with an empty set */
93
94 /* Fix checksum */
95 header->checksum = table_compute_checksum((void *)xsdt,
96 sizeof(struct acpi_xsdt));
97}
98
Bin Mengab5efd52016-05-07 07:46:25 -070099/**
100 * Add an ACPI table to the RSDT (and XSDT) structure, recalculate length
101 * and checksum.
102 */
103static void acpi_add_table(struct acpi_rsdp *rsdp, void *table)
Saket Sinha867bcb62015-08-22 12:20:55 +0530104{
Bin Mengab5efd52016-05-07 07:46:25 -0700105 int i, entries_num;
106 struct acpi_rsdt *rsdt;
107 struct acpi_xsdt *xsdt = NULL;
Saket Sinha867bcb62015-08-22 12:20:55 +0530108
Bin Mengab5efd52016-05-07 07:46:25 -0700109 /* The RSDT is mandatory while the XSDT is not */
110 rsdt = (struct acpi_rsdt *)rsdp->rsdt_address;
Saket Sinha867bcb62015-08-22 12:20:55 +0530111
Bin Mengab5efd52016-05-07 07:46:25 -0700112 if (rsdp->xsdt_address)
113 xsdt = (struct acpi_xsdt *)((u32)rsdp->xsdt_address);
Saket Sinha867bcb62015-08-22 12:20:55 +0530114
Bin Mengab5efd52016-05-07 07:46:25 -0700115 /* This should always be MAX_ACPI_TABLES */
116 entries_num = ARRAY_SIZE(rsdt->entry);
117
118 for (i = 0; i < entries_num; i++) {
119 if (rsdt->entry[i] == 0)
120 break;
Saket Sinha867bcb62015-08-22 12:20:55 +0530121 }
122
Bin Mengab5efd52016-05-07 07:46:25 -0700123 if (i >= entries_num) {
124 debug("ACPI: Error: too many tables\n");
125 return;
126 }
127
128 /* Add table to the RSDT */
129 rsdt->entry[i] = (u32)table;
130
131 /* Fix RSDT length or the kernel will assume invalid entries */
132 rsdt->header.length = sizeof(struct acpi_table_header) +
133 (sizeof(u32) * (i + 1));
134
135 /* Re-calculate checksum */
136 rsdt->header.checksum = 0;
137 rsdt->header.checksum = table_compute_checksum((u8 *)rsdt,
138 rsdt->header.length);
139
140 /*
141 * And now the same thing for the XSDT. We use the same index as for
142 * now we want the XSDT and RSDT to always be in sync in U-Boot
143 */
144 if (xsdt) {
145 /* Add table to the XSDT */
146 xsdt->entry[i] = (u64)(u32)table;
147
148 /* Fix XSDT length */
149 xsdt->header.length = sizeof(struct acpi_table_header) +
150 (sizeof(u64) * (i + 1));
151
152 /* Re-calculate checksum */
153 xsdt->header.checksum = 0;
154 xsdt->header.checksum = table_compute_checksum((u8 *)xsdt,
155 xsdt->header.length);
156 }
157}
158
159static void acpi_create_facs(struct acpi_facs *facs)
160{
161 memset((void *)facs, 0, sizeof(struct acpi_facs));
162
163 memcpy(facs->signature, "FACS", 4);
164 facs->length = sizeof(struct acpi_facs);
165 facs->hardware_signature = 0;
166 facs->firmware_waking_vector = 0;
167 facs->global_lock = 0;
168 facs->flags = 0;
169 facs->x_firmware_waking_vector_l = 0;
170 facs->x_firmware_waking_vector_h = 0;
171 facs->version = 1;
172}
173
174static int acpi_create_madt_lapic(struct acpi_madt_lapic *lapic,
175 u8 cpu, u8 apic)
176{
177 lapic->type = ACPI_APIC_LAPIC;
178 lapic->length = sizeof(struct acpi_madt_lapic);
179 lapic->flags = LOCAL_APIC_FLAG_ENABLED;
180 lapic->processor_id = cpu;
181 lapic->apic_id = apic;
182
183 return lapic->length;
184}
185
186unsigned long acpi_create_madt_lapics(unsigned long current)
187{
188 struct udevice *dev;
189
190 for (uclass_find_first_device(UCLASS_CPU, &dev);
191 dev;
192 uclass_find_next_device(&dev)) {
193 struct cpu_platdata *plat = dev_get_parent_platdata(dev);
194
195 current += acpi_create_madt_lapic(
196 (struct acpi_madt_lapic *)current,
197 plat->cpu_id, plat->cpu_id);
198 }
199
200 return current;
201}
202
203int acpi_create_madt_ioapic(struct acpi_madt_ioapic *ioapic, u8 id,
204 u32 addr, u32 gsi_base)
205{
206 ioapic->type = ACPI_APIC_IOAPIC;
207 ioapic->length = sizeof(struct acpi_madt_ioapic);
208 ioapic->reserved = 0x00;
209 ioapic->gsi_base = gsi_base;
210 ioapic->ioapic_id = id;
211 ioapic->ioapic_addr = addr;
212
213 return ioapic->length;
214}
215
216int acpi_create_madt_irqoverride(struct acpi_madt_irqoverride *irqoverride,
217 u8 bus, u8 source, u32 gsirq, u16 flags)
218{
219 irqoverride->type = ACPI_APIC_IRQ_SRC_OVERRIDE;
220 irqoverride->length = sizeof(struct acpi_madt_irqoverride);
221 irqoverride->bus = bus;
222 irqoverride->source = source;
223 irqoverride->gsirq = gsirq;
224 irqoverride->flags = flags;
225
226 return irqoverride->length;
227}
228
229int acpi_create_madt_lapic_nmi(struct acpi_madt_lapic_nmi *lapic_nmi,
230 u8 cpu, u16 flags, u8 lint)
231{
232 lapic_nmi->type = ACPI_APIC_LAPIC_NMI;
233 lapic_nmi->length = sizeof(struct acpi_madt_lapic_nmi);
234 lapic_nmi->flags = flags;
235 lapic_nmi->processor_id = cpu;
236 lapic_nmi->lint = lint;
237
238 return lapic_nmi->length;
239}
240
241static void acpi_create_madt(struct acpi_madt *madt)
242{
243 struct acpi_table_header *header = &(madt->header);
244 unsigned long current = (unsigned long)madt + sizeof(struct acpi_madt);
245
246 memset((void *)madt, 0, sizeof(struct acpi_madt));
247
248 /* Fill out header fields */
249 acpi_fill_header(header, "APIC");
250 header->length = sizeof(struct acpi_madt);
251
252 /* ACPI 1.0/2.0: 1, ACPI 3.0: 2, ACPI 4.0: 3 */
253 header->revision = ACPI_REV_ACPI_2_0;
254
255 madt->lapic_addr = LAPIC_DEFAULT_BASE;
256 madt->flags = ACPI_MADT_PCAT_COMPAT;
257
258 current = acpi_fill_madt(current);
259
260 /* (Re)calculate length and checksum */
261 header->length = current - (unsigned long)madt;
262
263 header->checksum = table_compute_checksum((void *)madt, header->length);
264}
265
266static int acpi_create_mcfg_mmconfig(struct acpi_mcfg_mmconfig *mmconfig,
267 u32 base, u16 seg_nr, u8 start, u8 end)
268{
269 memset(mmconfig, 0, sizeof(*mmconfig));
270 mmconfig->base_address_l = base;
271 mmconfig->base_address_h = 0;
272 mmconfig->pci_segment_group_number = seg_nr;
273 mmconfig->start_bus_number = start;
274 mmconfig->end_bus_number = end;
275
276 return sizeof(struct acpi_mcfg_mmconfig);
277}
278
279static unsigned long acpi_fill_mcfg(unsigned long current)
280{
281 current += acpi_create_mcfg_mmconfig
282 ((struct acpi_mcfg_mmconfig *)current,
283 CONFIG_PCIE_ECAM_BASE, 0x0, 0x0, 255);
284
285 return current;
286}
287
288/* MCFG is defined in the PCI Firmware Specification 3.0 */
289static void acpi_create_mcfg(struct acpi_mcfg *mcfg)
290{
291 struct acpi_table_header *header = &(mcfg->header);
292 unsigned long current = (unsigned long)mcfg + sizeof(struct acpi_mcfg);
293
294 memset((void *)mcfg, 0, sizeof(struct acpi_mcfg));
295
296 /* Fill out header fields */
297 acpi_fill_header(header, "MCFG");
298 header->length = sizeof(struct acpi_mcfg);
299
300 /* ACPI 1.0/2.0: 1, ACPI 3.0: 2, ACPI 4.0: 3 */
301 header->revision = ACPI_REV_ACPI_2_0;
302
303 current = acpi_fill_mcfg(current);
304
305 /* (Re)calculate length and checksum */
306 header->length = current - (unsigned long)mcfg;
307 header->checksum = table_compute_checksum((void *)mcfg, header->length);
Saket Sinha867bcb62015-08-22 12:20:55 +0530308}
309
Miao Yanfa287b12016-01-20 01:57:06 -0800310/*
311 * QEMU's version of write_acpi_tables is defined in
312 * arch/x86/cpu/qemu/fw_cfg.c
313 */
Bin Meng358bb3f2016-02-27 22:58:00 -0800314u32 write_acpi_tables(u32 start)
Saket Sinha867bcb62015-08-22 12:20:55 +0530315{
Bin Meng358bb3f2016-02-27 22:58:00 -0800316 u32 current;
Saket Sinha867bcb62015-08-22 12:20:55 +0530317 struct acpi_rsdp *rsdp;
318 struct acpi_rsdt *rsdt;
319 struct acpi_xsdt *xsdt;
320 struct acpi_facs *facs;
Bin Meng8a8c0352016-05-07 07:46:21 -0700321 struct acpi_table_header *dsdt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530322 struct acpi_fadt *fadt;
323 struct acpi_mcfg *mcfg;
324 struct acpi_madt *madt;
Saket Sinha867bcb62015-08-22 12:20:55 +0530325
326 current = start;
327
Bin Mengab5efd52016-05-07 07:46:25 -0700328 /* Align ACPI tables to 16 byte */
Saket Sinha867bcb62015-08-22 12:20:55 +0530329 current = ALIGN(current, 16);
330
Bin Mengdca4d1a2016-05-07 07:46:12 -0700331 debug("ACPI: Writing ACPI tables at %x\n", start);
Saket Sinha867bcb62015-08-22 12:20:55 +0530332
333 /* We need at least an RSDP and an RSDT Table */
334 rsdp = (struct acpi_rsdp *)current;
335 current += sizeof(struct acpi_rsdp);
336 current = ALIGN(current, 16);
337 rsdt = (struct acpi_rsdt *)current;
338 current += sizeof(struct acpi_rsdt);
339 current = ALIGN(current, 16);
340 xsdt = (struct acpi_xsdt *)current;
341 current += sizeof(struct acpi_xsdt);
342 current = ALIGN(current, 16);
343
344 /* clear all table memory */
345 memset((void *)start, 0, current - start);
346
347 acpi_write_rsdp(rsdp, rsdt, xsdt);
348 acpi_write_rsdt(rsdt);
349 acpi_write_xsdt(xsdt);
350
351 debug("ACPI: * FACS\n");
352 facs = (struct acpi_facs *)current;
353 current += sizeof(struct acpi_facs);
354 current = ALIGN(current, 16);
355
356 acpi_create_facs(facs);
357
358 debug("ACPI: * DSDT\n");
Bin Meng8a8c0352016-05-07 07:46:21 -0700359 dsdt = (struct acpi_table_header *)current;
360 memcpy(dsdt, &AmlCode, sizeof(struct acpi_table_header));
361 if (dsdt->length >= sizeof(struct acpi_table_header)) {
362 current += sizeof(struct acpi_table_header);
Saket Sinha867bcb62015-08-22 12:20:55 +0530363 memcpy((char *)current,
Bin Meng8a8c0352016-05-07 07:46:21 -0700364 (char *)&AmlCode + sizeof(struct acpi_table_header),
365 dsdt->length - sizeof(struct acpi_table_header));
366 current += dsdt->length - sizeof(struct acpi_table_header);
Saket Sinha867bcb62015-08-22 12:20:55 +0530367
368 /* (Re)calculate length and checksum */
369 dsdt->length = current - (unsigned long)dsdt;
370 dsdt->checksum = 0;
371 dsdt->checksum = table_compute_checksum((void *)dsdt,
372 dsdt->length);
373 }
374 current = ALIGN(current, 16);
375
376 debug("ACPI: * FADT\n");
377 fadt = (struct acpi_fadt *)current;
378 current += sizeof(struct acpi_fadt);
379 current = ALIGN(current, 16);
380 acpi_create_fadt(fadt, facs, dsdt);
381 acpi_add_table(rsdp, fadt);
382
Saket Sinha867bcb62015-08-22 12:20:55 +0530383 debug("ACPI: * MADT\n");
384 madt = (struct acpi_madt *)current;
385 acpi_create_madt(madt);
386 if (madt->header.length > sizeof(struct acpi_madt)) {
387 current += madt->header.length;
388 acpi_add_table(rsdp, madt);
389 }
390 current = ALIGN(current, 16);
391
Bin Mengab5efd52016-05-07 07:46:25 -0700392 debug("ACPI: * MCFG\n");
393 mcfg = (struct acpi_mcfg *)current;
394 acpi_create_mcfg(mcfg);
395 if (mcfg->header.length > sizeof(struct acpi_mcfg)) {
396 current += mcfg->header.length;
397 current = ALIGN(current, 16);
398 acpi_add_table(rsdp, mcfg);
399 }
400
Bin Mengdca4d1a2016-05-07 07:46:12 -0700401 debug("current = %x\n", current);
Saket Sinha867bcb62015-08-22 12:20:55 +0530402
Bin Mengdca4d1a2016-05-07 07:46:12 -0700403 debug("ACPI: done\n");
Saket Sinha867bcb62015-08-22 12:20:55 +0530404
405 return current;
406}