blob: 48f8ce248fdcebe73eabe317cc98aee545883e9b [file] [log] [blame]
Simon Glass858fed12020-04-08 16:57:36 -06001/* SPDX-License-Identifier: GPL-2.0+ */
2/*
3 * Helpers for ACPI table generation
4 *
5 * Based on acpi.c from coreboot
6 *
7 * Copyright 2019 Google LLC
8 *
9 * Copyright (C) 2015, Saket Sinha <saket.sinha89@gmail.com>
10 * Copyright (C) 2016, Bin Meng <bmeng.cn@gmail.com>
11 */
12
13#ifndef __ACPI_TABLE_H__
14#define __ACPI_TABLE_H__
15
Simon Glass48ca5782020-09-22 12:45:39 -060016#include <dm/acpi.h>
Simon Glass4dcacfc2020-05-10 11:40:13 -060017
Simon Glass858fed12020-04-08 16:57:36 -060018#define RSDP_SIG "RSD PTR " /* RSDP pointer signature */
19#define OEM_ID "U-BOOT" /* U-Boot */
20#define OEM_TABLE_ID "U-BOOTBL" /* U-Boot Table */
21#define ASLC_ID "INTL" /* Intel ASL Compiler */
22
Simon Glass4ffe8b02020-09-22 12:45:09 -060023/* TODO(sjg@chromium.org): Figure out how to get compiler revision */
24#define ASL_REVISION 0
25
Simon Glass858fed12020-04-08 16:57:36 -060026#define ACPI_RSDP_REV_ACPI_1_0 0
27#define ACPI_RSDP_REV_ACPI_2_0 2
28
Simon Glass4969d212020-04-08 16:57:37 -060029#if !defined(__ACPI__)
30
Simon Glassb11c2b32020-09-22 12:45:41 -060031#include <linux/bitops.h>
32
Simon Glass0e113842020-04-26 09:19:47 -060033struct acpi_ctx;
34
Simon Glass858fed12020-04-08 16:57:36 -060035/*
36 * RSDP (Root System Description Pointer)
37 * Note: ACPI 1.0 didn't have length, xsdt_address, and ext_checksum
38 */
39struct acpi_rsdp {
40 char signature[8]; /* RSDP signature */
41 u8 checksum; /* Checksum of the first 20 bytes */
42 char oem_id[6]; /* OEM ID */
43 u8 revision; /* 0 for ACPI 1.0, others 2 */
44 u32 rsdt_address; /* Physical address of RSDT (32 bits) */
45 u32 length; /* Total RSDP length (incl. extended part) */
46 u64 xsdt_address; /* Physical address of XSDT (64 bits) */
47 u8 ext_checksum; /* Checksum of the whole table */
48 u8 reserved[3];
49};
50
51/* Generic ACPI header, provided by (almost) all tables */
52struct __packed acpi_table_header {
Simon Glass48ca5782020-09-22 12:45:39 -060053 char signature[ACPI_NAME_LEN]; /* ACPI signature (4 ASCII chars) */
Simon Glass858fed12020-04-08 16:57:36 -060054 u32 length; /* Table length in bytes (incl. header) */
55 u8 revision; /* Table version (not ACPI version!) */
56 volatile u8 checksum; /* To make sum of entire table == 0 */
57 char oem_id[6]; /* OEM identification */
58 char oem_table_id[8]; /* OEM table identification */
59 u32 oem_revision; /* OEM revision number */
Heinrich Schuchardt10de8a82024-01-21 12:52:48 +010060 char creator_id[4]; /* ASL compiler vendor ID */
61 u32 creator_revision; /* ASL compiler revision number */
Simon Glass858fed12020-04-08 16:57:36 -060062};
63
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +010064/**
65 * struct acpi_gen_regaddr - generic address structure (GAS)
66 */
Simon Glass4ffe8b02020-09-22 12:45:09 -060067struct acpi_gen_regaddr {
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +010068 /**
69 * @space_id: address space ID
70 *
71 * See table "Operation Region Address Space Identifiers" in the ACPI
72 * specification.
73 */
74 u8 space_id;
75 /** @bit_width: size in bits of the register */
76 u8 bit_width;
77 /** @bit_offset: bit offset of the register */
78 u8 bit_offset;
79 /**
80 * @access_size: access size
81 *
82 * * 0 - undefined
83 * * 1 - byte access
84 * * 2 - word (2 bytes) access
85 * * 3 - Dword (4 bytes) access
86 * * 4 - Qword (8 bytes) access
87 *
88 * See ACPI_ACCESS_SIZE_*_ACCESS macros.
89 */
90 u8 access_size;
91 /** @addrl: register address, low 32 bits */
92 u32 addrl;
93 /** @addrh: register address, high 32 bits */
94 u32 addrh;
Simon Glass4ffe8b02020-09-22 12:45:09 -060095};
96
Simon Glass858fed12020-04-08 16:57:36 -060097/* A maximum number of 32 ACPI tables ought to be enough for now */
98#define MAX_ACPI_TABLES 32
99
100/* RSDT (Root System Description Table) */
101struct acpi_rsdt {
102 struct acpi_table_header header;
103 u32 entry[MAX_ACPI_TABLES];
104};
105
106/* XSDT (Extended System Description Table) */
Heinrich Schuchardtbb307a62023-11-21 15:41:27 +0100107struct __packed acpi_xsdt {
Simon Glass858fed12020-04-08 16:57:36 -0600108 struct acpi_table_header header;
109 u64 entry[MAX_ACPI_TABLES];
110};
111
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100112/**
113 * struct acpi_hpet: High Precision Event Timers (HETP)
114 *
115 * The structure is defined in the
116 * "IA-PC HPET (High Precision Event Timers) Specification", rev 1.0a, Oct 2004
117 */
118struct acpi_hpet {
119 /** @header: table header */
Simon Glass4ffe8b02020-09-22 12:45:09 -0600120 struct acpi_table_header header;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100121 /** @id hardware ID of Event Timer Block */
Simon Glass4ffe8b02020-09-22 12:45:09 -0600122 u32 id;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100123 /** @addr: address of Event Timer Block */
Simon Glass4ffe8b02020-09-22 12:45:09 -0600124 struct acpi_gen_regaddr addr;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100125 /** @number: HPET sequence number */
Simon Glass4ffe8b02020-09-22 12:45:09 -0600126 u8 number;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100127 /** @min_tick: minimum clock ticks without lost interrupts */
Simon Glass4ffe8b02020-09-22 12:45:09 -0600128 u16 min_tick;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100129 /** @attributes: page protection and OEM atttribute */
Simon Glass4ffe8b02020-09-22 12:45:09 -0600130 u8 attributes;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100131} __packed;
Simon Glass4ffe8b02020-09-22 12:45:09 -0600132
Simon Glass272a7032020-09-22 12:45:32 -0600133struct __packed acpi_tpm2 {
134 struct acpi_table_header header;
135 u16 platform_class;
136 u8 reserved[2];
137 u64 control_area;
138 u32 start_method;
139 u8 msp[12];
140 u32 laml;
141 u64 lasa;
142};
143
Simon Glass28026282020-09-22 12:45:33 -0600144struct __packed acpi_tcpa {
145 struct acpi_table_header header;
146 u16 platform_class;
147 u32 laml;
148 u64 lasa;
149};
150
Simon Glass858fed12020-04-08 16:57:36 -0600151/* FADT Preferred Power Management Profile */
152enum acpi_pm_profile {
153 ACPI_PM_UNSPECIFIED = 0,
154 ACPI_PM_DESKTOP,
155 ACPI_PM_MOBILE,
156 ACPI_PM_WORKSTATION,
157 ACPI_PM_ENTERPRISE_SERVER,
158 ACPI_PM_SOHO_SERVER,
159 ACPI_PM_APPLIANCE_PC,
160 ACPI_PM_PERFORMANCE_SERVER,
161 ACPI_PM_TABLET
162};
163
164/* FADT flags for p_lvl2_lat and p_lvl3_lat */
165#define ACPI_FADT_C2_NOT_SUPPORTED 101
166#define ACPI_FADT_C3_NOT_SUPPORTED 1001
167
168/* FADT Boot Architecture Flags */
169#define ACPI_FADT_LEGACY_FREE 0x00
170#define ACPI_FADT_LEGACY_DEVICES BIT(0)
171#define ACPI_FADT_8042 BIT(1)
172#define ACPI_FADT_VGA_NOT_PRESENT BIT(2)
173#define ACPI_FADT_MSI_NOT_SUPPORTED BIT(3)
174#define ACPI_FADT_NO_PCIE_ASPM_CONTROL BIT(4)
175
176/* FADT Feature Flags */
177#define ACPI_FADT_WBINVD BIT(0)
178#define ACPI_FADT_WBINVD_FLUSH BIT(1)
179#define ACPI_FADT_C1_SUPPORTED BIT(2)
180#define ACPI_FADT_C2_MP_SUPPORTED BIT(3)
181#define ACPI_FADT_POWER_BUTTON BIT(4)
182#define ACPI_FADT_SLEEP_BUTTON BIT(5)
183#define ACPI_FADT_FIXED_RTC BIT(6)
184#define ACPI_FADT_S4_RTC_WAKE BIT(7)
185#define ACPI_FADT_32BIT_TIMER BIT(8)
186#define ACPI_FADT_DOCKING_SUPPORTED BIT(9)
187#define ACPI_FADT_RESET_REGISTER BIT(10)
188#define ACPI_FADT_SEALED_CASE BIT(11)
189#define ACPI_FADT_HEADLESS BIT(12)
190#define ACPI_FADT_SLEEP_TYPE BIT(13)
191#define ACPI_FADT_PCI_EXPRESS_WAKE BIT(14)
192#define ACPI_FADT_PLATFORM_CLOCK BIT(15)
193#define ACPI_FADT_S4_RTC_VALID BIT(16)
194#define ACPI_FADT_REMOTE_POWER_ON BIT(17)
195#define ACPI_FADT_APIC_CLUSTER BIT(18)
196#define ACPI_FADT_APIC_PHYSICAL BIT(19)
197#define ACPI_FADT_HW_REDUCED_ACPI BIT(20)
198#define ACPI_FADT_LOW_PWR_IDLE_S0 BIT(21)
199
Simon Glass3e11c8c2021-12-01 09:03:08 -0700200/* ARM boot flags */
201#define ACPI_ARM_PSCI_COMPLIANT BIT(0)
202
Simon Glass858fed12020-04-08 16:57:36 -0600203enum acpi_address_space_type {
204 ACPI_ADDRESS_SPACE_MEMORY = 0, /* System memory */
205 ACPI_ADDRESS_SPACE_IO, /* System I/O */
206 ACPI_ADDRESS_SPACE_PCI, /* PCI config space */
207 ACPI_ADDRESS_SPACE_EC, /* Embedded controller */
208 ACPI_ADDRESS_SPACE_SMBUS, /* SMBus */
209 ACPI_ADDRESS_SPACE_PCC = 0x0a, /* Platform Comm. Channel */
210 ACPI_ADDRESS_SPACE_FIXED = 0x7f /* Functional fixed hardware */
211};
212
213enum acpi_address_space_size {
214 ACPI_ACCESS_SIZE_UNDEFINED = 0,
215 ACPI_ACCESS_SIZE_BYTE_ACCESS,
216 ACPI_ACCESS_SIZE_WORD_ACCESS,
217 ACPI_ACCESS_SIZE_DWORD_ACCESS,
218 ACPI_ACCESS_SIZE_QWORD_ACCESS
219};
220
Simon Glass858fed12020-04-08 16:57:36 -0600221/* FADT (Fixed ACPI Description Table) */
222struct __packed acpi_fadt {
223 struct acpi_table_header header;
224 u32 firmware_ctrl;
225 u32 dsdt;
226 u8 res1;
227 u8 preferred_pm_profile;
228 u16 sci_int;
229 u32 smi_cmd;
230 u8 acpi_enable;
231 u8 acpi_disable;
232 u8 s4bios_req;
233 u8 pstate_cnt;
234 u32 pm1a_evt_blk;
235 u32 pm1b_evt_blk;
236 u32 pm1a_cnt_blk;
237 u32 pm1b_cnt_blk;
238 u32 pm2_cnt_blk;
239 u32 pm_tmr_blk;
240 u32 gpe0_blk;
241 u32 gpe1_blk;
242 u8 pm1_evt_len;
243 u8 pm1_cnt_len;
244 u8 pm2_cnt_len;
245 u8 pm_tmr_len;
246 u8 gpe0_blk_len;
247 u8 gpe1_blk_len;
248 u8 gpe1_base;
249 u8 cst_cnt;
250 u16 p_lvl2_lat;
251 u16 p_lvl3_lat;
252 u16 flush_size;
253 u16 flush_stride;
254 u8 duty_offset;
255 u8 duty_width;
256 u8 day_alrm;
257 u8 mon_alrm;
258 u8 century;
259 u16 iapc_boot_arch;
260 u8 res2;
261 u32 flags;
262 struct acpi_gen_regaddr reset_reg;
263 u8 reset_value;
264 u16 arm_boot_arch;
265 u8 minor_revision;
Heinrich Schuchardtec958062023-12-16 09:11:57 +0100266 u64 x_firmware_ctrl;
267 u64 x_dsdt;
Simon Glass858fed12020-04-08 16:57:36 -0600268 struct acpi_gen_regaddr x_pm1a_evt_blk;
269 struct acpi_gen_regaddr x_pm1b_evt_blk;
270 struct acpi_gen_regaddr x_pm1a_cnt_blk;
271 struct acpi_gen_regaddr x_pm1b_cnt_blk;
272 struct acpi_gen_regaddr x_pm2_cnt_blk;
273 struct acpi_gen_regaddr x_pm_tmr_blk;
274 struct acpi_gen_regaddr x_gpe0_blk;
275 struct acpi_gen_regaddr x_gpe1_blk;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700276 struct acpi_gen_regaddr sleep_control_reg;
277 struct acpi_gen_regaddr sleep_status_reg;
278 u64 hyp_vendor_id;
Simon Glass858fed12020-04-08 16:57:36 -0600279};
280
Simon Glassb2672ea2020-04-08 16:57:38 -0600281/* FADT TABLE Revision values - note these do not match the ACPI revision */
282#define ACPI_FADT_REV_ACPI_1_0 1
283#define ACPI_FADT_REV_ACPI_2_0 3
284#define ACPI_FADT_REV_ACPI_3_0 4
285#define ACPI_FADT_REV_ACPI_4_0 4
286#define ACPI_FADT_REV_ACPI_5_0 5
287#define ACPI_FADT_REV_ACPI_6_0 6
288
289/* MADT TABLE Revision values - note these do not match the ACPI revision */
290#define ACPI_MADT_REV_ACPI_3_0 2
291#define ACPI_MADT_REV_ACPI_4_0 3
292#define ACPI_MADT_REV_ACPI_5_0 3
Patrick Rudolphf317fce2024-10-23 15:19:52 +0200293#define ACPI_MADT_REV_ACPI_6_2 4
294#define ACPI_MADT_REV_ACPI_6_3 5
Simon Glassb2672ea2020-04-08 16:57:38 -0600295
296#define ACPI_MCFG_REV_ACPI_3_0 1
297
298/* IVRS Revision Field */
299#define IVRS_FORMAT_FIXED 0x01 /* Type 10h & 11h only */
300#define IVRS_FORMAT_MIXED 0x02 /* Type 10h, 11h, & 40h */
301
Simon Glass858fed12020-04-08 16:57:36 -0600302/* FACS flags */
303#define ACPI_FACS_S4BIOS_F BIT(0)
304#define ACPI_FACS_64BIT_WAKE_F BIT(1)
305
306/* FACS (Firmware ACPI Control Structure) */
307struct acpi_facs {
Simon Glass48ca5782020-09-22 12:45:39 -0600308 char signature[ACPI_NAME_LEN]; /* "FACS" */
Simon Glass858fed12020-04-08 16:57:36 -0600309 u32 length; /* Length in bytes (>= 64) */
310 u32 hardware_signature; /* Hardware signature */
311 u32 firmware_waking_vector; /* Firmware waking vector */
312 u32 global_lock; /* Global lock */
313 u32 flags; /* FACS flags */
314 u32 x_firmware_waking_vector_l; /* X FW waking vector, low */
315 u32 x_firmware_waking_vector_h; /* X FW waking vector, high */
316 u8 version; /* Version 2 */
317 u8 res1[3];
318 u32 ospm_flags; /* OSPM enabled flags */
319 u8 res2[24];
320};
321
322/* MADT flags */
323#define ACPI_MADT_PCAT_COMPAT BIT(0)
324
325/* MADT (Multiple APIC Description Table) */
326struct acpi_madt {
327 struct acpi_table_header header;
328 u32 lapic_addr; /* Local APIC address */
329 u32 flags; /* Multiple APIC flags */
330};
331
332/* MADT: APIC Structure Type*/
333enum acpi_apic_types {
334 ACPI_APIC_LAPIC = 0, /* Processor local APIC */
335 ACPI_APIC_IOAPIC, /* I/O APIC */
336 ACPI_APIC_IRQ_SRC_OVERRIDE, /* Interrupt source override */
337 ACPI_APIC_NMI_SRC, /* NMI source */
338 ACPI_APIC_LAPIC_NMI, /* Local APIC NMI */
339 ACPI_APIC_LAPIC_ADDR_OVERRIDE, /* Local APIC address override */
340 ACPI_APIC_IOSAPIC, /* I/O SAPIC */
341 ACPI_APIC_LSAPIC, /* Local SAPIC */
342 ACPI_APIC_PLATFORM_IRQ_SRC, /* Platform interrupt sources */
343 ACPI_APIC_LX2APIC, /* Processor local x2APIC */
344 ACPI_APIC_LX2APIC_NMI, /* Local x2APIC NMI */
Simon Glass3e11c8c2021-12-01 09:03:08 -0700345 ACPI_APIC_GICC, /* Generic Interrupt Ctlr CPU i/f */
Patrick Rudolph7efbdbb2024-10-23 15:19:50 +0200346 ACPI_APIC_GICD, /* Generic Interrupt Ctlr Distributor */
347 ACPI_APIC_MSI_FRAME, /* Generic Interrupt MSI Frame */
348 ACPI_APIC_GICR, /* Generic Interrupt Ctlr Redistributor */
349 ACPI_APIC_ITS, /* Interrupt Translation Service */
Simon Glass858fed12020-04-08 16:57:36 -0600350};
351
352/* MADT: Processor Local APIC Structure */
353
354#define LOCAL_APIC_FLAG_ENABLED BIT(0)
355
356struct acpi_madt_lapic {
357 u8 type; /* Type (0) */
358 u8 length; /* Length in bytes (8) */
359 u8 processor_id; /* ACPI processor ID */
360 u8 apic_id; /* Local APIC ID */
361 u32 flags; /* Local APIC flags */
362};
363
364/* MADT: I/O APIC Structure */
365struct acpi_madt_ioapic {
366 u8 type; /* Type (1) */
367 u8 length; /* Length in bytes (12) */
368 u8 ioapic_id; /* I/O APIC ID */
369 u8 reserved;
370 u32 ioapic_addr; /* I/O APIC address */
371 u32 gsi_base; /* Global system interrupt base */
372};
373
374/* MADT: Interrupt Source Override Structure */
375struct __packed acpi_madt_irqoverride {
376 u8 type; /* Type (2) */
377 u8 length; /* Length in bytes (10) */
378 u8 bus; /* ISA (0) */
379 u8 source; /* Bus-relative int. source (IRQ) */
380 u32 gsirq; /* Global system interrupt */
381 u16 flags; /* MPS INTI flags */
382};
383
384/* MADT: Local APIC NMI Structure */
385struct __packed acpi_madt_lapic_nmi {
386 u8 type; /* Type (4) */
387 u8 length; /* Length in bytes (6) */
388 u8 processor_id; /* ACPI processor ID */
389 u16 flags; /* MPS INTI flags */
390 u8 lint; /* Local APIC LINT# */
391};
392
Patrick Rudolph3fcac5e2024-10-23 15:19:47 +0200393/* flags for acpi_madt_gicc flags word */
Simon Glass3e11c8c2021-12-01 09:03:08 -0700394enum {
Patrick Rudolph3fcac5e2024-10-23 15:19:47 +0200395 ACPI_MADTF_ENABLED = BIT(0),
396 ACPI_MADTF_PERF = BIT(1),
397 ACPI_MADTF_VGIC = BIT(2),
Simon Glass3e11c8c2021-12-01 09:03:08 -0700398};
399
400/**
Patrick Rudolph3fcac5e2024-10-23 15:19:47 +0200401 * struct __packed acpi_madt_gicc - GIC CPU interface (type 0xb)
Simon Glass3e11c8c2021-12-01 09:03:08 -0700402 *
403 * This holds information about the Generic Interrupt Controller (GIC) CPU
404 * interface. See ACPI Spec v6.3 section 5.2.12.14
405 */
Patrick Rudolph3fcac5e2024-10-23 15:19:47 +0200406struct acpi_madt_gicc {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700407 u8 type;
408 u8 length;
409 u16 reserved;
410 u32 cpu_if_num;
411 u32 processor_id;
412 u32 flags;
413 u32 parking_proto;
414 u32 perf_gsiv;
415 u64 parked_addr;
416 u64 phys_base;
417 u64 gicv;
418 u64 gich;
419 u32 vgic_maint_irq;
420 u64 gicr_base;
421 u64 mpidr;
422 u8 efficiency;
423 u8 reserved2;
424 u16 spi_overflow_irq;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100425} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700426
427/**
Patrick Rudolph3fcac5e2024-10-23 15:19:47 +0200428 * struct __packed acpi_madt_gicc - GIC distributor (type 0xc)
Simon Glass3e11c8c2021-12-01 09:03:08 -0700429 *
430 * This holds information about the Generic Interrupt Controller (GIC)
431 * Distributor interface. See ACPI Spec v6.3 section 5.2.12.15
432 */
Patrick Rudolph3fcac5e2024-10-23 15:19:47 +0200433struct acpi_madt_gicd {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700434 u8 type;
435 u8 length;
436 u16 reserved;
437 u32 gic_id;
438 u64 phys_base;
439 u32 reserved2;
440 u8 gic_version;
441 u8 reserved3[3];
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100442} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700443
Patrick Rudolph7efbdbb2024-10-23 15:19:50 +0200444/**
445 * struct __packed acpi_madt_gicr - GIC Redistributor (type 0xe)
446 *
447 * This holds information about the Generic Interrupt Controller (GIC)
448 * Redistributor interface. See ACPI Spec v6.3 section 5.2.12.17
449 */
450struct acpi_madt_gicr {
451 u8 type;
452 u8 length;
453 u16 reserved;
454 u64 discovery_range_base_address;
455 u32 discovery_range_length;
456} __packed;
457
458/**
459 * struct __packed acpi_madt_its - GIC Interrupt Translation Service (type 0xf)
460 *
461 * This holds information about the Interrupt Translation Service (ITS)
462 * Structure. See ACPI Spec v6.3 section 5.2.12.18
463 */
464struct acpi_madt_its {
465 u8 type;
466 u8 length;
467 u16 reserved;
468 u32 gic_its_id;
469 u64 physical_base_address;
470 u32 reserved2;
471} __packed;
472
Simon Glass858fed12020-04-08 16:57:36 -0600473/* MCFG (PCI Express MMIO config space BAR description table) */
474struct acpi_mcfg {
475 struct acpi_table_header header;
476 u8 reserved[8];
477};
478
479struct acpi_mcfg_mmconfig {
480 u32 base_address_l;
481 u32 base_address_h;
482 u16 pci_segment_group_number;
483 u8 start_bus_number;
484 u8 end_bus_number;
485 u8 reserved[4];
486};
487
488/* PM1_CNT bit defines */
489#define PM1_CNT_SCI_EN BIT(0)
490
491/* ACPI global NVS structure */
492struct acpi_global_nvs;
493
494/* CSRT (Core System Resource Table) */
495struct acpi_csrt {
496 struct acpi_table_header header;
497};
498
Simon Glass3e11c8c2021-12-01 09:03:08 -0700499/**
500 * struct acpi_csrt_group - header for a group within the CSRT
501 *
502 * The CSRT consists of one or more groups and this is the header for each
503 *
504 * See Core System Resources Table (CSRT), March 13, 2017, Microsoft Corporation
505 * for details
506 *
507 * https://uefi.org/sites/default/files/resources/CSRT%20v2.pdf
508 *
509 * @shared_info_length indicates the number of shared-info bytes following this
510 * struct (which may be 0)
511 */
Simon Glass858fed12020-04-08 16:57:36 -0600512struct acpi_csrt_group {
513 u32 length;
514 u32 vendor_id;
515 u32 subvendor_id;
516 u16 device_id;
517 u16 subdevice_id;
518 u16 revision;
519 u16 reserved;
520 u32 shared_info_length;
521};
522
Simon Glass3e11c8c2021-12-01 09:03:08 -0700523/**
524 * struct acpi_csrt_descriptor - describes the information that follows
525 *
526 * See the spec as above for details
527 */
528struct acpi_csrt_descriptor {
529 u32 length;
530 u16 type;
531 u16 subtype;
532 u32 uid;
533};
534
535/**
536 * struct acpi_csrt_shared_info - shared info for Intel tangier
537 *
538 * This provides the shared info for this particular board. Notes that the CSRT
539 * does not describe the format of data, so this format may not be used by any
540 * other board.
541 */
Simon Glass858fed12020-04-08 16:57:36 -0600542struct acpi_csrt_shared_info {
543 u16 major_version;
544 u16 minor_version;
545 u32 mmio_base_low;
546 u32 mmio_base_high;
547 u32 gsi_interrupt;
548 u8 interrupt_polarity;
549 u8 interrupt_mode;
550 u8 num_channels;
551 u8 dma_address_width;
552 u16 base_request_line;
553 u16 num_handshake_signals;
554 u32 max_block_size;
555};
556
Simon Glass87cf8d22020-09-22 12:45:16 -0600557/* Port types for ACPI _UPC object */
558enum acpi_upc_type {
559 UPC_TYPE_A,
560 UPC_TYPE_MINI_AB,
561 UPC_TYPE_EXPRESSCARD,
562 UPC_TYPE_USB3_A,
563 UPC_TYPE_USB3_B,
564 UPC_TYPE_USB3_MICRO_B,
565 UPC_TYPE_USB3_MICRO_AB,
566 UPC_TYPE_USB3_POWER_B,
567 UPC_TYPE_C_USB2_ONLY,
568 UPC_TYPE_C_USB2_SS_SWITCH,
569 UPC_TYPE_C_USB2_SS,
570 UPC_TYPE_PROPRIETARY = 0xff,
571 /*
572 * The following types are not directly defined in the ACPI
573 * spec but are used by coreboot to identify a USB device type.
574 */
575 UPC_TYPE_INTERNAL = 0xff,
576 UPC_TYPE_UNUSED,
577 UPC_TYPE_HUB
578};
579
580enum dev_scope_type {
581 SCOPE_PCI_ENDPOINT = 1,
582 SCOPE_PCI_SUB = 2,
583 SCOPE_IOAPIC = 3,
584 SCOPE_MSI_HPET = 4,
585 SCOPE_ACPI_NAMESPACE_DEVICE = 5
586};
587
588struct __packed dev_scope {
589 u8 type;
590 u8 length;
591 u8 reserved[2];
592 u8 enumeration;
593 u8 start_bus;
594 struct {
595 u8 dev;
596 u8 fn;
597 } __packed path[0];
598};
599
Simon Glasse9629892020-04-08 16:57:39 -0600600enum dmar_type {
601 DMAR_DRHD = 0,
602 DMAR_RMRR = 1,
603 DMAR_ATSR = 2,
604 DMAR_RHSA = 3,
605 DMAR_ANDD = 4
606};
607
608enum {
609 DRHD_INCLUDE_PCI_ALL = BIT(0)
610};
611
612enum dmar_flags {
613 DMAR_INTR_REMAP = BIT(0),
614 DMAR_X2APIC_OPT_OUT = BIT(1),
615 DMAR_CTRL_PLATFORM_OPT_IN_FLAG = BIT(2),
616};
617
618struct dmar_entry {
619 u16 type;
620 u16 length;
621 u8 flags;
622 u8 reserved;
623 u16 segment;
624 u64 bar;
625};
626
627struct dmar_rmrr_entry {
628 u16 type;
629 u16 length;
630 u16 reserved;
631 u16 segment;
632 u64 bar;
633 u64 limit;
634};
635
636/* DMAR (DMA Remapping Reporting Structure) */
637struct __packed acpi_dmar {
638 struct acpi_table_header header;
639 u8 host_address_width;
640 u8 flags;
641 u8 reserved[10];
642 struct dmar_entry structure[0];
643};
644
Simon Glass858fed12020-04-08 16:57:36 -0600645/* DBG2 definitions are partially used for SPCR interface_type */
646
647/* Types for port_type field */
648
649#define ACPI_DBG2_SERIAL_PORT 0x8000
650#define ACPI_DBG2_1394_PORT 0x8001
651#define ACPI_DBG2_USB_PORT 0x8002
652#define ACPI_DBG2_NET_PORT 0x8003
653
654/* Subtypes for port_subtype field */
655
656#define ACPI_DBG2_16550_COMPATIBLE 0x0000
657#define ACPI_DBG2_16550_SUBSET 0x0001
658#define ACPI_DBG2_ARM_PL011 0x0003
659#define ACPI_DBG2_ARM_SBSA_32BIT 0x000D
660#define ACPI_DBG2_ARM_SBSA_GENERIC 0x000E
661#define ACPI_DBG2_ARM_DCC 0x000F
662#define ACPI_DBG2_BCM2835 0x0010
663
664#define ACPI_DBG2_1394_STANDARD 0x0000
665
666#define ACPI_DBG2_USB_XHCI 0x0000
667#define ACPI_DBG2_USB_EHCI 0x0001
668
669#define ACPI_DBG2_UNKNOWN 0x00FF
670
Simon Glass95971892020-09-22 12:45:10 -0600671/* DBG2: Microsoft Debug Port Table 2 header */
672struct __packed acpi_dbg2_header {
673 struct acpi_table_header header;
674 u32 devices_offset;
675 u32 devices_count;
676};
677
678/* DBG2: Microsoft Debug Port Table 2 device entry */
679struct __packed acpi_dbg2_device {
680 u8 revision;
681 u16 length;
682 u8 address_count;
683 u16 namespace_string_length;
684 u16 namespace_string_offset;
685 u16 oem_data_length;
686 u16 oem_data_offset;
687 u16 port_type;
688 u16 port_subtype;
689 u8 reserved[2];
690 u16 base_address_offset;
691 u16 address_size_offset;
692};
693
Simon Glass858fed12020-04-08 16:57:36 -0600694/* SPCR (Serial Port Console Redirection table) */
695struct __packed acpi_spcr {
696 struct acpi_table_header header;
697 u8 interface_type;
698 u8 reserved[3];
699 struct acpi_gen_regaddr serial_port;
700 u8 interrupt_type;
701 u8 pc_interrupt;
702 u32 interrupt; /* Global system interrupt */
703 u8 baud_rate;
704 u8 parity;
705 u8 stop_bits;
706 u8 flow_control;
707 u8 terminal_type;
708 u8 reserved1;
709 u16 pci_device_id; /* Must be 0xffff if not PCI device */
710 u16 pci_vendor_id; /* Must be 0xffff if not PCI device */
711 u8 pci_bus;
712 u8 pci_device;
713 u8 pci_function;
714 u32 pci_flags;
715 u8 pci_segment;
716 u32 reserved2;
717};
718
Simon Glass3e11c8c2021-12-01 09:03:08 -0700719/**
720 * struct acpi_gtdt - Generic Timer Description Table (GTDT)
721 *
722 * See ACPI Spec v6.3 section 5.2.24 for details
723 */
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100724struct acpi_gtdt {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700725 struct acpi_table_header header;
726 u64 cnt_ctrl_base;
727 u32 reserved0;
728 u32 sec_el1_gsiv;
729 u32 sec_el1_flags;
730 u32 el1_gsiv;
731 u32 el1_flags;
732 u32 virt_el1_gsiv;
733 u32 virt_el1_flags;
734 u32 el2_gsiv;
735 u32 el2_flags;
736 u64 cnt_read_base;
737 u32 plat_timer_count;
738 u32 plat_timer_offset;
739 u32 virt_el2_gsiv;
740 u32 virt_el2_flags;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100741} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700742
Patrick Rudolph8ca9f5142024-10-23 15:19:49 +0200743#define GTDT_FLAG_INT_ACTIVE_LOW BIT(1)
744
Simon Glass3e11c8c2021-12-01 09:03:08 -0700745/**
746 * struct acpi_bgrt - Boot Graphics Resource Table (BGRT)
747 *
748 * Optional table that provides a mechanism to indicate that an image was drawn
749 * on the screen during boot, and some information about the image.
750 *
751 * See ACPI Spec v6.3 section 5.2.22 for details
752 */
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100753struct acpi_bgrt {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700754 struct acpi_table_header header;
755 u16 version;
756 u8 status;
757 u8 image_type;
758 u64 addr;
759 u32 offset_x;
760 u32 offset_y;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100761} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700762
763/* Types for PPTT */
764#define ACPI_PPTT_TYPE_PROC 0
765#define ACPI_PPTT_TYPE_CACHE 1
766
767/* Flags for PPTT */
768#define ACPI_PPTT_PHYSICAL_PACKAGE BIT(0)
769#define ACPI_PPTT_PROC_ID_VALID BIT(1)
770#define ACPI_PPTT_PROC_IS_THREAD BIT(2)
771#define ACPI_PPTT_NODE_IS_LEAF BIT(3)
772#define ACPI_PPTT_CHILDREN_IDENTICAL BIT(4)
773
774/**
775 * struct acpi_pptt_header - Processor Properties Topology Table (PPTT) header
776 *
777 * Describes the topological structure of processors and their shared resources,
778 * such as caches.
779 *
780 * See ACPI Spec v6.3 section 5.2.29 for details
781 */
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100782struct acpi_pptt_header {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700783 u8 type; /* ACPI_PPTT_TYPE_... */
784 u8 length;
785 u16 reserved;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100786} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700787
788/**
789 * struct acpi_pptt_proc - a processor as described by PPTT
790 */
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100791struct acpi_pptt_proc {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700792 struct acpi_pptt_header hdr;
793 u32 flags;
794 u32 parent;
795 u32 proc_id;
796 u32 num_resources;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100797} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700798
799/* Cache flags for acpi_pptt_cache */
800#define ACPI_PPTT_SIZE_VALID BIT(0)
801#define ACPI_PPTT_SETS_VALID BIT(1)
802#define ACPI_PPTT_ASSOC_VALID BIT(2)
803#define ACPI_PPTT_ALLOC_TYPE_VALID BIT(3)
804#define ACPI_PPTT_CACHE_TYPE_VALID BIT(4)
805#define ACPI_PPTT_WRITE_POLICY_VALID BIT(5)
806#define ACPI_PPTT_LINE_SIZE_VALID BIT(6)
807
808#define ACPI_PPTT_ALL_VALID 0x7f
809#define ACPI_PPTT_ALL_BUT_WRITE_POL 0x5f
810
811#define ACPI_PPTT_READ_ALLOC BIT(0)
812#define ACPI_PPTT_WRITE_ALLOC BIT(1)
813#define ACPI_PPTT_CACHE_TYPE_SHIFT 2
814#define ACPI_PPTT_CACHE_TYPE_MASK (3 << ACPI_PPTT_CACHE_TYPE_SHIFT)
815#define ACPI_PPTT_CACHE_TYPE_DATA 0
816#define ACPI_PPTT_CACHE_TYPE_INSTR 1
817#define ACPI_PPTT_CACHE_TYPE_UNIFIED 2
818#define ACPI_PPTT_CACHE_TYPE_DATA 0
819#define ACPI_PPTT_WRITE_THROUGH BIT(4)
820
821/**
822 * struct acpi_pptt_cache - a cache as described by PPTT
823 */
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100824struct acpi_pptt_cache {
Simon Glass3e11c8c2021-12-01 09:03:08 -0700825 struct acpi_pptt_header hdr;
826 u32 flags;
827 u32 next_cache_level;
828 u32 size;
829 u32 sets;
830 u8 assoc;
831 u8 attributes;
832 u16 line_size;
Heinrich Schuchardtb9291b42024-01-21 14:44:36 +0100833} __packed;
Simon Glass3e11c8c2021-12-01 09:03:08 -0700834
Simon Glassb2672ea2020-04-08 16:57:38 -0600835/* Tables defined/reserved by ACPI and generated by U-Boot */
836enum acpi_tables {
837 ACPITAB_BERT,
838 ACPITAB_DBG2,
839 ACPITAB_DMAR,
840 ACPITAB_DSDT,
841 ACPITAB_ECDT,
842 ACPITAB_FACS,
843 ACPITAB_FADT,
844 ACPITAB_HEST,
845 ACPITAB_HPET,
846 ACPITAB_IVRS,
847 ACPITAB_MADT,
848 ACPITAB_MCFG,
849 ACPITAB_NHLT,
850 ACPITAB_RSDP,
851 ACPITAB_RSDT,
852 ACPITAB_SLIT,
853 ACPITAB_SPCR,
854 ACPITAB_SPMI,
855 ACPITAB_SRAT,
856 ACPITAB_SSDT,
857 ACPITAB_TCPA,
858 ACPITAB_TPM2,
859 ACPITAB_VFCT,
860 ACPITAB_XSDT,
861
862 ACPITAB_COUNT,
863};
864
865/**
866 * acpi_get_table_revision() - Get the revision number generated for a table
867 *
868 * This keeps the version-number information in one place
869 *
870 * @table: ACPI table to check
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100871 * Return: version number that U-Boot generates
Simon Glassb2672ea2020-04-08 16:57:38 -0600872 */
873int acpi_get_table_revision(enum acpi_tables table);
874
Simon Glasse9629892020-04-08 16:57:39 -0600875/**
876 * acpi_create_dmar() - Create a DMA Remapping Reporting (DMAR) table
877 *
878 * @dmar: Place to put the table
879 * @flags: DMAR flags to use
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100880 * Return: 0 if OK, -ve on error
Simon Glasse9629892020-04-08 16:57:39 -0600881 */
882int acpi_create_dmar(struct acpi_dmar *dmar, enum dmar_flags flags);
883
Simon Glass17968c32020-04-26 09:19:46 -0600884/**
Simon Glass95971892020-09-22 12:45:10 -0600885 * acpi_create_dbg2() - Create a DBG2 table
886 *
887 * This table describes how to access the debug UART
888 *
889 * @dbg2: Place to put information
890 * @port_type: Serial port type (see ACPI_DBG2_...)
891 * @port_subtype: Serial port sub-type (see ACPI_DBG2_...)
892 * @address: ACPI address of port
893 * @address_size: Size of address space
894 * @device_path: Path of device (created using acpi_device_path())
895 */
896void acpi_create_dbg2(struct acpi_dbg2_header *dbg2,
897 int port_type, int port_subtype,
898 struct acpi_gen_regaddr *address, uint32_t address_size,
899 const char *device_path);
900
901/**
Simon Glass0e113842020-04-26 09:19:47 -0600902 * acpi_align() - Align the ACPI output pointer to a 16-byte boundary
903 *
904 * @ctx: ACPI context
905 */
906void acpi_align(struct acpi_ctx *ctx);
907
908/**
909 * acpi_align64() - Align the ACPI output pointer to a 64-byte boundary
910 *
911 * @ctx: ACPI context
912 */
913void acpi_align64(struct acpi_ctx *ctx);
914
915/**
916 * acpi_inc() - Increment the ACPI output pointer by a bit
917 *
918 * The pointer is NOT aligned afterwards.
919 *
920 * @ctx: ACPI context
921 * @amount: Amount to increment by
922 */
923void acpi_inc(struct acpi_ctx *ctx, uint amount);
924
925/**
926 * acpi_inc_align() - Increment the ACPI output pointer by a bit and align
927 *
928 * The pointer is aligned afterwards to a 16-byte boundary
929 *
930 * @ctx: ACPI context
931 * @amount: Amount to increment by
932 */
933void acpi_inc_align(struct acpi_ctx *ctx, uint amount);
934
Simon Glass575a5472020-04-26 09:19:50 -0600935/**
936 * acpi_add_table() - Add a new table to the RSDP and XSDT
937 *
938 * @ctx: ACPI context
939 * @table: Table to add
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100940 * Return: 0 if OK, -E2BIG if too many tables
Simon Glass575a5472020-04-26 09:19:50 -0600941 */
942int acpi_add_table(struct acpi_ctx *ctx, void *table);
943
Andy Shevchenko6f15ab72023-09-01 11:27:10 -0600944static inline int acpi_add_fadt(struct acpi_ctx *ctx, struct acpi_fadt *fadt)
945{
946 acpi_add_table(ctx, fadt);
947 acpi_inc(ctx, sizeof(struct acpi_fadt));
948 return 0;
949}
950
Simon Glass9c442a62020-04-26 09:19:51 -0600951/**
Maximilian Bruned7fa54b2024-10-23 15:19:44 +0200952 * acpi_write_dbg2_pci_uart() - Write out a DBG2 table
953 *
954 * @ctx: Current ACPI context
955 * @dev: Debug UART device to describe
956 * @access_size: Access size for UART (e.g. ACPI_ACCESS_SIZE_DWORD_ACCESS)
957 * Return: 0 if OK, -ve on error
958 */
959int acpi_write_dbg2_pci_uart(struct acpi_ctx *ctx, struct udevice *dev,
960 uint access_size);
961
962/**
Simon Glass5d093f32020-11-04 09:57:25 -0700963 * acpi_write_rsdp() - Write out an RSDP indicating where the ACPI tables are
964 *
965 * @rsdp: Address to write RSDP
966 * @rsdt: Address of RSDT
967 * @xsdt: Address of XSDT
968 */
969void acpi_write_rsdp(struct acpi_rsdp *rsdp, struct acpi_rsdt *rsdt,
970 struct acpi_xsdt *xsdt);
971
Simon Glass96bf4332021-12-01 09:02:45 -0700972/**
973 * acpi_fill_header() - Set up a table header
974 *
975 * @header: Pointer to header to set up
976 * @signature: 4-character signature to use (e.g. "FACS")
977 */
978void acpi_fill_header(struct acpi_table_header *header, char *signature);
979
Simon Glass89ce5192021-12-01 09:03:01 -0700980/**
981 * acpi_fill_csrt() - Fill out the body of the CSRT
982 *
983 * This should write the contents of the Core System Resource Table (CSRT)
984 * to the context. The header (struct acpi_table_header) has already been
985 * written.
986 *
987 * @ctx: ACPI context to write to
988 * @return 0 if OK, -ve on error
989 */
990int acpi_fill_csrt(struct acpi_ctx *ctx);
991
Simon Glassb0da2232022-01-29 14:30:52 -0700992/**
Maximilian Brune8dc45122024-10-23 15:19:45 +0200993 * acpi_fill_fadt() - Fill out the body of the FADT
994 *
995 * Must be implemented in SoC specific code or in mainboard code.
996 *
997 * @fadt: Pointer to FADT to update
998 */
999void acpi_fill_fadt(struct acpi_fadt *fadt);
1000
1001/**
Patrick Rudolph97b4c8a2024-10-23 15:19:46 +02001002 * acpi_fill_madt() - Fill out the body of the MADT
1003 *
1004 * Must be implemented in SoC specific code.
1005 *
1006 * @madt: The MADT to update
1007 * @ctx: ACPI context to write MADT sub-tables to
1008 * @return Pointer to the end of tables, where the next tables can be written
1009 */
1010void *acpi_fill_madt(struct acpi_madt *madt, struct acpi_ctx *ctx);
1011
1012/**
Heinrich Schuchardt2c1fd4a2023-11-09 09:23:02 -08001013 * acpi_get_rsdp_addr() - get ACPI RSDP table address
1014 *
1015 * This routine returns the ACPI RSDP table address in the system memory.
1016 *
1017 * @return: ACPI RSDP table address
1018 */
1019ulong acpi_get_rsdp_addr(void);
1020
1021/**
Simon Glassb0da2232022-01-29 14:30:52 -07001022 * write_acpi_tables() - Write out the ACPI tables
1023 *
1024 * This writes all ACPI tables to the given address
1025 *
1026 * @start: Start address for the tables
1027 * @return address of end of tables, where the next tables can be written
1028 */
1029ulong write_acpi_tables(ulong start);
1030
Simon Glass7ae69762023-05-04 16:54:58 -06001031/**
1032 * acpi_find_table() - Look up an ACPI table
1033 *
1034 * @sig: Signature of table (4 characters, upper case)
1035 * Return: pointer to table header, or NULL if not found
1036 */
1037struct acpi_table_header *acpi_find_table(const char *sig);
1038
Simon Glass4969d212020-04-08 16:57:37 -06001039#endif /* !__ACPI__*/
1040
Simon Glass858fed12020-04-08 16:57:36 -06001041#include <asm/acpi_table.h>
1042
1043#endif /* __ACPI_TABLE_H__ */