blob: a1b1b2ee3e512d0c1d3a338c2cd1aca50dee2372 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/******************************************************************************
2 *
Bob Moore793c2382006-03-31 00:00:00 -05003 * Name: actbl1.h - Additional ACPI table definitions
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 *****************************************************************************/
6
7/*
Bob Moore6c9deb72007-02-02 19:48:24 +03008 * Copyright (C) 2000 - 2007, R. Byron Moore
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * All rights reserved.
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 * 1. Redistributions of source code must retain the above copyright
15 * notice, this list of conditions, and the following disclaimer,
16 * without modification.
17 * 2. Redistributions in binary form must reproduce at minimum a disclaimer
18 * substantially similar to the "NO WARRANTY" disclaimer below
19 * ("Disclaimer") and any redistribution must be conditioned upon
20 * including a substantially similar Disclaimer requirement for further
21 * binary redistribution.
22 * 3. Neither the names of the above-listed copyright holders nor the names
23 * of any contributors may be used to endorse or promote products derived
24 * from this software without specific prior written permission.
25 *
26 * Alternatively, this software may be distributed under the terms of the
27 * GNU General Public License ("GPL") version 2 as published by the Free
28 * Software Foundation.
29 *
30 * NO WARRANTY
31 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
32 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
33 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
34 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
35 * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
36 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
37 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
38 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
39 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
40 * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
41 * POSSIBILITY OF SUCH DAMAGES.
42 */
43
44#ifndef __ACTBL1_H__
45#define __ACTBL1_H__
46
Bob Moore793c2382006-03-31 00:00:00 -050047/*******************************************************************************
48 *
49 * Additional ACPI Tables
50 *
51 * These tables are not consumed directly by the ACPICA subsystem, but are
52 * included here to support device drivers and the AML disassembler.
53 *
54 ******************************************************************************/
55
56/*
57 * Values for description table header signatures. Useful because they make
58 * it more difficult to inadvertently type in the wrong signature.
59 */
60#define ACPI_SIG_ASF "ASF!" /* Alert Standard Format table */
61#define ACPI_SIG_BOOT "BOOT" /* Simple Boot Flag Table */
62#define ACPI_SIG_CPEP "CPEP" /* Corrected Platform Error Polling table */
63#define ACPI_SIG_DBGP "DBGP" /* Debug Port table */
Bob Moore2502fff2007-02-02 19:48:19 +030064#define ACPI_SIG_DMAR "DMAR" /* DMA Remapping table */
Bob Moore793c2382006-03-31 00:00:00 -050065#define ACPI_SIG_ECDT "ECDT" /* Embedded Controller Boot Resources Table */
66#define ACPI_SIG_HPET "HPET" /* High Precision Event Timer table */
67#define ACPI_SIG_MADT "APIC" /* Multiple APIC Description Table */
68#define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */
69#define ACPI_SIG_SBST "SBST" /* Smart Battery Specification Table */
70#define ACPI_SIG_SLIT "SLIT" /* System Locality Distance Information Table */
71#define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */
72#define ACPI_SIG_SPMI "SPMI" /* Server Platform Management Interface table */
73#define ACPI_SIG_SRAT "SRAT" /* System Resource Affinity Table */
74#define ACPI_SIG_TCPA "TCPA" /* Trusted Computing Platform Alliance table */
75#define ACPI_SIG_WDRT "WDRT" /* Watchdog Resource Table */
76
Bob Moore793c2382006-03-31 00:00:00 -050077/*
78 * All tables must be byte-packed to match the ACPI specification, since
79 * the tables are provided by the system BIOS.
80 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#pragma pack(1)
82
83/*
Bob Moore793c2382006-03-31 00:00:00 -050084 * Note about bitfields: The u8 type is used for bitfields in ACPI tables.
85 * This is the only type that is even remotely portable. Anything else is not
86 * portable, so do not use any other bitfield types.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
Bob Moore793c2382006-03-31 00:00:00 -050088
Bob Mooref3d2e782007-02-02 19:48:18 +030089/* Common Sub-table header (used in MADT, SRAT, etc.) */
90
91struct acpi_subtable_header {
92 u8 type;
93 u8 length;
94};
95
Bob Moore793c2382006-03-31 00:00:00 -050096/*******************************************************************************
97 *
98 * ASF - Alert Standard Format table (Signature "ASF!")
99 *
Bob Moore694b0b22007-02-02 19:48:20 +0300100 * Conforms to the Alert Standard Format Specification V2.0, 23 April 2003
101 *
Bob Moore793c2382006-03-31 00:00:00 -0500102 ******************************************************************************/
103
104struct acpi_table_asf {
Bob Mooref3d2e782007-02-02 19:48:18 +0300105 struct acpi_table_header header; /* Common ACPI table header */
106};
Bob Moore793c2382006-03-31 00:00:00 -0500107
Bob Mooref3d2e782007-02-02 19:48:18 +0300108/* ASF subtable header */
Bob Moore793c2382006-03-31 00:00:00 -0500109
110struct acpi_asf_header {
Bob Mooref3d2e782007-02-02 19:48:18 +0300111 u8 type;
112 u8 reserved;
113 u16 length;
114};
Bob Moore793c2382006-03-31 00:00:00 -0500115
Bob Mooref3d2e782007-02-02 19:48:18 +0300116/* Values for Type field above */
Bob Moore793c2382006-03-31 00:00:00 -0500117
Bob Mooref3d2e782007-02-02 19:48:18 +0300118enum acpi_asf_type {
119 ACPI_ASF_TYPE_INFO = 0,
120 ACPI_ASF_TYPE_ALERT = 1,
121 ACPI_ASF_TYPE_CONTROL = 2,
122 ACPI_ASF_TYPE_BOOT = 3,
123 ACPI_ASF_TYPE_ADDRESS = 4,
124 ACPI_ASF_TYPE_RESERVED = 5
125};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/*
Bob Moore793c2382006-03-31 00:00:00 -0500128 * ASF subtables
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 */
Bob Moore793c2382006-03-31 00:00:00 -0500130
131/* 0: ASF Information */
132
133struct acpi_asf_info {
Bob Mooref3d2e782007-02-02 19:48:18 +0300134 struct acpi_asf_header header;
135 u8 min_reset_value;
Bob Moore793c2382006-03-31 00:00:00 -0500136 u8 min_poll_interval;
137 u16 system_id;
138 u32 mfg_id;
139 u8 flags;
140 u8 reserved2[3];
141};
142
143/* 1: ASF Alerts */
144
145struct acpi_asf_alert {
Bob Mooref3d2e782007-02-02 19:48:18 +0300146 struct acpi_asf_header header;
147 u8 assert_mask;
Bob Moore793c2382006-03-31 00:00:00 -0500148 u8 deassert_mask;
149 u8 alerts;
150 u8 data_length;
Bob Moore775d85b2007-02-02 19:48:20 +0300151};
152
153struct acpi_asf_alert_data {
154 u8 address;
155 u8 command;
156 u8 mask;
157 u8 value;
158 u8 sensor_type;
159 u8 type;
160 u8 offset;
161 u8 source_type;
162 u8 severity;
163 u8 sensor_number;
164 u8 entity;
165 u8 instance;
Bob Moore793c2382006-03-31 00:00:00 -0500166};
167
168/* 2: ASF Remote Control */
169
170struct acpi_asf_remote {
Bob Mooref3d2e782007-02-02 19:48:18 +0300171 struct acpi_asf_header header;
172 u8 controls;
Bob Moore793c2382006-03-31 00:00:00 -0500173 u8 data_length;
174 u16 reserved2;
Bob Moore775d85b2007-02-02 19:48:20 +0300175};
176
177struct acpi_asf_control_data {
178 u8 function;
179 u8 address;
180 u8 command;
181 u8 value;
Bob Moore793c2382006-03-31 00:00:00 -0500182};
183
184/* 3: ASF RMCP Boot Options */
185
186struct acpi_asf_rmcp {
Bob Mooref3d2e782007-02-02 19:48:18 +0300187 struct acpi_asf_header header;
188 u8 capabilities[7];
Bob Moore793c2382006-03-31 00:00:00 -0500189 u8 completion_code;
190 u32 enterprise_id;
191 u8 command;
192 u16 parameter;
193 u16 boot_options;
194 u16 oem_parameters;
195};
196
197/* 4: ASF Address */
198
199struct acpi_asf_address {
Bob Mooref3d2e782007-02-02 19:48:18 +0300200 struct acpi_asf_header header;
201 u8 eprom_address;
Bob Moore793c2382006-03-31 00:00:00 -0500202 u8 devices;
Bob Moore793c2382006-03-31 00:00:00 -0500203};
204
205/*******************************************************************************
206 *
207 * BOOT - Simple Boot Flag Table
208 *
209 ******************************************************************************/
210
211struct acpi_table_boot {
Bob Mooref3d2e782007-02-02 19:48:18 +0300212 struct acpi_table_header header; /* Common ACPI table header */
213 u8 cmos_index; /* Index in CMOS RAM for the boot register */
Bob Moore793c2382006-03-31 00:00:00 -0500214 u8 reserved[3];
215};
216
217/*******************************************************************************
218 *
219 * CPEP - Corrected Platform Error Polling table
220 *
221 ******************************************************************************/
222
223struct acpi_table_cpep {
Bob Mooref3d2e782007-02-02 19:48:18 +0300224 struct acpi_table_header header; /* Common ACPI table header */
225 u64 reserved;
Bob Moore793c2382006-03-31 00:00:00 -0500226};
227
228/* Subtable */
229
230struct acpi_cpep_polling {
231 u8 type;
232 u8 length;
Bob Mooref3d2e782007-02-02 19:48:18 +0300233 u8 id; /* Processor ID */
234 u8 eid; /* Processor EID */
235 u32 interval; /* Polling interval (msec) */
Bob Moore793c2382006-03-31 00:00:00 -0500236};
237
238/*******************************************************************************
239 *
240 * DBGP - Debug Port table
241 *
242 ******************************************************************************/
243
244struct acpi_table_dbgp {
Bob Mooref3d2e782007-02-02 19:48:18 +0300245 struct acpi_table_header header; /* Common ACPI table header */
246 u8 type; /* 0=full 16550, 1=subset of 16550 */
Bob Moore793c2382006-03-31 00:00:00 -0500247 u8 reserved[3];
248 struct acpi_generic_address debug_port;
249};
250
251/*******************************************************************************
252 *
Bob Moore2502fff2007-02-02 19:48:19 +0300253 * DMAR - DMA Remapping table
254 *
255 ******************************************************************************/
256
257struct acpi_table_dmar {
258 struct acpi_table_header header; /* Common ACPI table header */
259 u8 width; /* Host Address Width */
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700260 u8 flags;
261 u8 reserved[10];
Bob Moore2502fff2007-02-02 19:48:19 +0300262};
263
264/* DMAR subtable header */
265
266struct acpi_dmar_header {
267 u16 type;
268 u16 length;
Bob Moore2502fff2007-02-02 19:48:19 +0300269};
270
271/* Values for subtable type in struct acpi_dmar_header */
272
273enum acpi_dmar_type {
274 ACPI_DMAR_TYPE_HARDWARE_UNIT = 0,
275 ACPI_DMAR_TYPE_RESERVED_MEMORY = 1,
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700276 ACPI_DMAR_TYPE_ATSR = 2,
277 ACPI_DMAR_TYPE_RESERVED = 3 /* 3 and greater are reserved */
Bob Moore2502fff2007-02-02 19:48:19 +0300278};
279
280struct acpi_dmar_device_scope {
281 u8 entry_type;
282 u8 length;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700283 u16 reserved;
284 u8 enumeration_id;
Bob Moore2502fff2007-02-02 19:48:19 +0300285 u8 bus;
286};
287
288/* Values for entry_type in struct acpi_dmar_device_scope */
289
290enum acpi_dmar_scope_type {
291 ACPI_DMAR_SCOPE_TYPE_NOT_USED = 0,
292 ACPI_DMAR_SCOPE_TYPE_ENDPOINT = 1,
293 ACPI_DMAR_SCOPE_TYPE_BRIDGE = 2,
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700294 ACPI_DMAR_SCOPE_TYPE_IOAPIC = 3,
295 ACPI_DMAR_SCOPE_TYPE_HPET = 4,
296 ACPI_DMAR_SCOPE_TYPE_RESERVED = 5 /* 5 and greater are reserved */
297};
298
299struct acpi_dmar_pci_path {
300 u8 dev;
301 u8 fn;
Bob Moore2502fff2007-02-02 19:48:19 +0300302};
303
304/*
305 * DMAR Sub-tables, correspond to Type in struct acpi_dmar_header
306 */
307
308/* 0: Hardware Unit Definition */
309
310struct acpi_dmar_hardware_unit {
311 struct acpi_dmar_header header;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700312 u8 flags;
313 u8 reserved;
314 u16 segment;
Bob Moore2502fff2007-02-02 19:48:19 +0300315 u64 address; /* Register Base Address */
316};
317
318/* Flags */
319
320#define ACPI_DMAR_INCLUDE_ALL (1)
321
322/* 1: Reserved Memory Defininition */
323
324struct acpi_dmar_reserved_memory {
325 struct acpi_dmar_header header;
Keshavamurthy, Anil S10e52472007-10-21 16:41:41 -0700326 u16 reserved;
327 u16 segment;
328 u64 base_address; /* 4_k aligned base address */
Bob Moore2502fff2007-02-02 19:48:19 +0300329 u64 end_address; /* 4_k aligned limit address */
330};
331
332/* Flags */
333
334#define ACPI_DMAR_ALLOW_ALL (1)
335
336/*******************************************************************************
337 *
Bob Moore793c2382006-03-31 00:00:00 -0500338 * ECDT - Embedded Controller Boot Resources Table
339 *
340 ******************************************************************************/
341
Bob Mooref3d2e782007-02-02 19:48:18 +0300342struct acpi_table_ecdt {
343 struct acpi_table_header header; /* Common ACPI table header */
344 struct acpi_generic_address control; /* Address of EC command/status register */
345 struct acpi_generic_address data; /* Address of EC data register */
Bob Moore793c2382006-03-31 00:00:00 -0500346 u32 uid; /* Unique ID - must be same as the EC _UID method */
Bob Mooref3d2e782007-02-02 19:48:18 +0300347 u8 gpe; /* The GPE for the EC */
348 u8 id[1]; /* Full namepath of the EC in the ACPI namespace */
Bob Moore793c2382006-03-31 00:00:00 -0500349};
350
351/*******************************************************************************
352 *
353 * HPET - High Precision Event Timer table
354 *
355 ******************************************************************************/
356
Bob Mooref3d2e782007-02-02 19:48:18 +0300357struct acpi_table_hpet {
358 struct acpi_table_header header; /* Common ACPI table header */
359 u32 id; /* Hardware ID of event timer block */
360 struct acpi_generic_address address; /* Address of event timer block */
361 u8 sequence; /* HPET sequence number */
362 u16 minimum_tick; /* Main counter min tick, periodic mode */
363 u8 flags;
Bob Moore793c2382006-03-31 00:00:00 -0500364};
365
Bob Mooref3d2e782007-02-02 19:48:18 +0300366/*! Flags */
367
368#define ACPI_HPET_PAGE_PROTECT (1) /* 00: No page protection */
369#define ACPI_HPET_PAGE_PROTECT_4 (1<<1) /* 01: 4KB page protected */
370#define ACPI_HPET_PAGE_PROTECT_64 (1<<2) /* 02: 64KB page protected */
371
372/*! [End] no source code translation !*/
Bob Moore793c2382006-03-31 00:00:00 -0500373
374/*******************************************************************************
375 *
376 * MADT - Multiple APIC Description Table
377 *
378 ******************************************************************************/
379
Bob Mooref3d2e782007-02-02 19:48:18 +0300380struct acpi_table_madt {
381 struct acpi_table_header header; /* Common ACPI table header */
382 u32 address; /* Physical address of local APIC */
383 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384};
385
Bob Mooref3d2e782007-02-02 19:48:18 +0300386/* Flags */
Bob Moore793c2382006-03-31 00:00:00 -0500387
Bob Mooref3d2e782007-02-02 19:48:18 +0300388#define ACPI_MADT_PCAT_COMPAT (1) /* 00: System also has dual 8259s */
Bob Moore793c2382006-03-31 00:00:00 -0500389
Bob Mooref3d2e782007-02-02 19:48:18 +0300390/* Values for PCATCompat flag */
Bob Moore793c2382006-03-31 00:00:00 -0500391
Bob Mooref3d2e782007-02-02 19:48:18 +0300392#define ACPI_MADT_DUAL_PIC 0
393#define ACPI_MADT_MULTIPLE_APIC 1
Bob Moore793c2382006-03-31 00:00:00 -0500394
Bob Mooref3d2e782007-02-02 19:48:18 +0300395/* Values for subtable type in struct acpi_subtable_header */
Bob Moore793c2382006-03-31 00:00:00 -0500396
Bob Mooref3d2e782007-02-02 19:48:18 +0300397enum acpi_madt_type {
398 ACPI_MADT_TYPE_LOCAL_APIC = 0,
399 ACPI_MADT_TYPE_IO_APIC = 1,
400 ACPI_MADT_TYPE_INTERRUPT_OVERRIDE = 2,
401 ACPI_MADT_TYPE_NMI_SOURCE = 3,
402 ACPI_MADT_TYPE_LOCAL_APIC_NMI = 4,
403 ACPI_MADT_TYPE_LOCAL_APIC_OVERRIDE = 5,
404 ACPI_MADT_TYPE_IO_SAPIC = 6,
405 ACPI_MADT_TYPE_LOCAL_SAPIC = 7,
406 ACPI_MADT_TYPE_INTERRUPT_SOURCE = 8,
407 ACPI_MADT_TYPE_RESERVED = 9 /* 9 and greater are reserved */
408};
Bob Moore793c2382006-03-31 00:00:00 -0500409
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410/*
Bob Mooref3d2e782007-02-02 19:48:18 +0300411 * MADT Sub-tables, correspond to Type in struct acpi_subtable_header
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 */
Bob Moore793c2382006-03-31 00:00:00 -0500413
Bob Mooref3d2e782007-02-02 19:48:18 +0300414/* 0: Processor Local APIC */
Bob Moore793c2382006-03-31 00:00:00 -0500415
Bob Mooref3d2e782007-02-02 19:48:18 +0300416struct acpi_madt_local_apic {
417 struct acpi_subtable_header header;
418 u8 processor_id; /* ACPI processor id */
419 u8 id; /* Processor's local APIC id */
420 u32 lapic_flags;
421};
Bob Moore793c2382006-03-31 00:00:00 -0500422
423/* 1: IO APIC */
424
Bob Mooref3d2e782007-02-02 19:48:18 +0300425struct acpi_madt_io_apic {
426 struct acpi_subtable_header header;
427 u8 id; /* I/O APIC ID */
Bob Moore793c2382006-03-31 00:00:00 -0500428 u8 reserved; /* Reserved - must be zero */
429 u32 address; /* APIC physical address */
Bob Mooref3d2e782007-02-02 19:48:18 +0300430 u32 global_irq_base; /* Global system interrupt where INTI lines start */
Bob Moore793c2382006-03-31 00:00:00 -0500431};
432
433/* 2: Interrupt Override */
434
Bob Mooref3d2e782007-02-02 19:48:18 +0300435struct acpi_madt_interrupt_override {
436 struct acpi_subtable_header header;
437 u8 bus; /* 0 - ISA */
438 u8 source_irq; /* Interrupt source (IRQ) */
439 u32 global_irq; /* Global system interrupt */
440 u16 inti_flags;
441};
Bob Moore793c2382006-03-31 00:00:00 -0500442
Bob Mooref3d2e782007-02-02 19:48:18 +0300443/* 3: NMI Source */
Bob Moore793c2382006-03-31 00:00:00 -0500444
Bob Mooref3d2e782007-02-02 19:48:18 +0300445struct acpi_madt_nmi_source {
446 struct acpi_subtable_header header;
447 u16 inti_flags;
448 u32 global_irq; /* Global system interrupt */
Bob Moore793c2382006-03-31 00:00:00 -0500449};
450
451/* 4: Local APIC NMI */
452
Bob Mooref3d2e782007-02-02 19:48:18 +0300453struct acpi_madt_local_apic_nmi {
454 struct acpi_subtable_header header;
455 u8 processor_id; /* ACPI processor id */
456 u16 inti_flags;
457 u8 lint; /* LINTn to which NMI is connected */
Bob Moore793c2382006-03-31 00:00:00 -0500458};
459
460/* 5: Address Override */
461
Bob Mooref3d2e782007-02-02 19:48:18 +0300462struct acpi_madt_local_apic_override {
463 struct acpi_subtable_header header;
464 u16 reserved; /* Reserved, must be zero */
Bob Moore793c2382006-03-31 00:00:00 -0500465 u64 address; /* APIC physical address */
466};
467
468/* 6: I/O Sapic */
469
Bob Mooref3d2e782007-02-02 19:48:18 +0300470struct acpi_madt_io_sapic {
471 struct acpi_subtable_header header;
472 u8 id; /* I/O SAPIC ID */
Bob Moore793c2382006-03-31 00:00:00 -0500473 u8 reserved; /* Reserved, must be zero */
Bob Mooref3d2e782007-02-02 19:48:18 +0300474 u32 global_irq_base; /* Global interrupt for SAPIC start */
Bob Moore793c2382006-03-31 00:00:00 -0500475 u64 address; /* SAPIC physical address */
476};
477
478/* 7: Local Sapic */
479
Bob Mooref3d2e782007-02-02 19:48:18 +0300480struct acpi_madt_local_sapic {
481 struct acpi_subtable_header header;
482 u8 processor_id; /* ACPI processor id */
483 u8 id; /* SAPIC ID */
484 u8 eid; /* SAPIC EID */
Bob Moore793c2382006-03-31 00:00:00 -0500485 u8 reserved[3]; /* Reserved, must be zero */
Bob Mooref3d2e782007-02-02 19:48:18 +0300486 u32 lapic_flags;
487 u32 uid; /* Numeric UID - ACPI 3.0 */
488 char uid_string[1]; /* String UID - ACPI 3.0 */
Bob Moore793c2382006-03-31 00:00:00 -0500489};
490
491/* 8: Platform Interrupt Source */
492
Bob Mooref3d2e782007-02-02 19:48:18 +0300493struct acpi_madt_interrupt_source {
494 struct acpi_subtable_header header;
495 u16 inti_flags;
496 u8 type; /* 1=PMI, 2=INIT, 3=corrected */
497 u8 id; /* Processor ID */
498 u8 eid; /* Processor EID */
Bob Moore793c2382006-03-31 00:00:00 -0500499 u8 io_sapic_vector; /* Vector value for PMI interrupts */
Bob Mooref3d2e782007-02-02 19:48:18 +0300500 u32 global_irq; /* Global system interrupt */
Bob Moore793c2382006-03-31 00:00:00 -0500501 u32 flags; /* Interrupt Source Flags */
502};
503
Bob Mooref3d2e782007-02-02 19:48:18 +0300504/* Flags field above */
505
506#define ACPI_MADT_CPEI_OVERRIDE (1)
507
508/*
509 * Common flags fields for MADT subtables
510 */
511
512/* MADT Local APIC flags (lapic_flags) */
513
514#define ACPI_MADT_ENABLED (1) /* 00: Processor is usable if set */
515
516/* MADT MPS INTI flags (inti_flags) */
517
518#define ACPI_MADT_POLARITY_MASK (3) /* 00-01: Polarity of APIC I/O input signals */
519#define ACPI_MADT_TRIGGER_MASK (3<<2) /* 02-03: Trigger mode of APIC input signals */
520
521/* Values for MPS INTI flags */
522
523#define ACPI_MADT_POLARITY_CONFORMS 0
524#define ACPI_MADT_POLARITY_ACTIVE_HIGH 1
525#define ACPI_MADT_POLARITY_RESERVED 2
526#define ACPI_MADT_POLARITY_ACTIVE_LOW 3
527
528#define ACPI_MADT_TRIGGER_CONFORMS (0)
529#define ACPI_MADT_TRIGGER_EDGE (1<<2)
530#define ACPI_MADT_TRIGGER_RESERVED (2<<2)
531#define ACPI_MADT_TRIGGER_LEVEL (3<<2)
532
Bob Moore793c2382006-03-31 00:00:00 -0500533/*******************************************************************************
534 *
535 * MCFG - PCI Memory Mapped Configuration table and sub-table
536 *
537 ******************************************************************************/
538
539struct acpi_table_mcfg {
Bob Mooref3d2e782007-02-02 19:48:18 +0300540 struct acpi_table_header header; /* Common ACPI table header */
541 u8 reserved[8];
Bob Moore793c2382006-03-31 00:00:00 -0500542};
543
Bob Mooref3d2e782007-02-02 19:48:18 +0300544/* Subtable */
545
Bob Moore793c2382006-03-31 00:00:00 -0500546struct acpi_mcfg_allocation {
Bob Mooref3d2e782007-02-02 19:48:18 +0300547 u64 address; /* Base address, processor-relative */
Bob Moore793c2382006-03-31 00:00:00 -0500548 u16 pci_segment; /* PCI segment group number */
549 u8 start_bus_number; /* Starting PCI Bus number */
550 u8 end_bus_number; /* Final PCI Bus number */
551 u32 reserved;
552};
Bob Moore793c2382006-03-31 00:00:00 -0500553
554/*******************************************************************************
555 *
556 * SBST - Smart Battery Specification Table
557 *
558 ******************************************************************************/
559
Bob Mooref3d2e782007-02-02 19:48:18 +0300560struct acpi_table_sbst {
561 struct acpi_table_header header; /* Common ACPI table header */
562 u32 warning_level;
Bob Moore793c2382006-03-31 00:00:00 -0500563 u32 low_level;
564 u32 critical_level;
565};
566
567/*******************************************************************************
568 *
569 * SLIT - System Locality Distance Information Table
570 *
571 ******************************************************************************/
572
Bob Mooref3d2e782007-02-02 19:48:18 +0300573struct acpi_table_slit {
574 struct acpi_table_header header; /* Common ACPI table header */
575 u64 locality_count;
576 u8 entry[1]; /* Real size = localities^2 */
Bob Moore793c2382006-03-31 00:00:00 -0500577};
578
579/*******************************************************************************
580 *
581 * SPCR - Serial Port Console Redirection table
582 *
583 ******************************************************************************/
584
585struct acpi_table_spcr {
Bob Mooref3d2e782007-02-02 19:48:18 +0300586 struct acpi_table_header header; /* Common ACPI table header */
587 u8 interface_type; /* 0=full 16550, 1=subset of 16550 */
Bob Moore793c2382006-03-31 00:00:00 -0500588 u8 reserved[3];
589 struct acpi_generic_address serial_port;
590 u8 interrupt_type;
591 u8 pc_interrupt;
592 u32 interrupt;
593 u8 baud_rate;
594 u8 parity;
595 u8 stop_bits;
596 u8 flow_control;
597 u8 terminal_type;
Bob Mooref3d2e782007-02-02 19:48:18 +0300598 u8 reserved1;
Bob Moore793c2382006-03-31 00:00:00 -0500599 u16 pci_device_id;
600 u16 pci_vendor_id;
601 u8 pci_bus;
602 u8 pci_device;
603 u8 pci_function;
604 u32 pci_flags;
605 u8 pci_segment;
Bob Mooref3d2e782007-02-02 19:48:18 +0300606 u32 reserved2;
Bob Moore793c2382006-03-31 00:00:00 -0500607};
608
609/*******************************************************************************
610 *
611 * SPMI - Server Platform Management Interface table
612 *
613 ******************************************************************************/
614
615struct acpi_table_spmi {
Bob Mooref3d2e782007-02-02 19:48:18 +0300616 struct acpi_table_header header; /* Common ACPI table header */
617 u8 reserved;
Bob Moore793c2382006-03-31 00:00:00 -0500618 u8 interface_type;
619 u16 spec_revision; /* Version of IPMI */
620 u8 interrupt_type;
621 u8 gpe_number; /* GPE assigned */
Bob Mooref3d2e782007-02-02 19:48:18 +0300622 u8 reserved1;
Bob Moore793c2382006-03-31 00:00:00 -0500623 u8 pci_device_flag;
624 u32 interrupt;
625 struct acpi_generic_address ipmi_register;
626 u8 pci_segment;
627 u8 pci_bus;
628 u8 pci_device;
629 u8 pci_function;
630};
631
632/*******************************************************************************
633 *
634 * SRAT - System Resource Affinity Table
635 *
636 ******************************************************************************/
637
Bob Mooref3d2e782007-02-02 19:48:18 +0300638struct acpi_table_srat {
639 struct acpi_table_header header; /* Common ACPI table header */
640 u32 table_revision; /* Must be value '1' */
641 u64 reserved; /* Reserved, must be zero */
Bob Moore793c2382006-03-31 00:00:00 -0500642};
643
Bob Mooref3d2e782007-02-02 19:48:18 +0300644/* Values for subtable type in struct acpi_subtable_header */
Bob Moore793c2382006-03-31 00:00:00 -0500645
Bob Mooref3d2e782007-02-02 19:48:18 +0300646enum acpi_srat_type {
647 ACPI_SRAT_TYPE_CPU_AFFINITY = 0,
648 ACPI_SRAT_TYPE_MEMORY_AFFINITY = 1,
649 ACPI_SRAT_TYPE_RESERVED = 2
650};
Bob Moore793c2382006-03-31 00:00:00 -0500651
652/* SRAT sub-tables */
653
Bob Mooref3d2e782007-02-02 19:48:18 +0300654struct acpi_srat_cpu_affinity {
655 struct acpi_subtable_header header;
656 u8 proximity_domain_lo;
Bob Moore793c2382006-03-31 00:00:00 -0500657 u8 apic_id;
Bob Mooref3d2e782007-02-02 19:48:18 +0300658 u32 flags;
Bob Moore793c2382006-03-31 00:00:00 -0500659 u8 local_sapic_eid;
660 u8 proximity_domain_hi[3];
Bob Mooref3d2e782007-02-02 19:48:18 +0300661 u32 reserved; /* Reserved, must be zero */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662};
663
Bob Mooref3d2e782007-02-02 19:48:18 +0300664/* Flags */
665
666#define ACPI_SRAT_CPU_ENABLED (1) /* 00: Use affinity structure */
667
668struct acpi_srat_mem_affinity {
669 struct acpi_subtable_header header;
670 u32 proximity_domain;
671 u16 reserved; /* Reserved, must be zero */
Bob Moore793c2382006-03-31 00:00:00 -0500672 u64 base_address;
Bob Mooref3d2e782007-02-02 19:48:18 +0300673 u64 length;
674 u32 memory_type; /* See acpi_address_range_id */
675 u32 flags;
676 u64 reserved1; /* Reserved, must be zero */
677};
Bob Moore793c2382006-03-31 00:00:00 -0500678
Bob Mooref3d2e782007-02-02 19:48:18 +0300679/* Flags */
Bob Moore793c2382006-03-31 00:00:00 -0500680
Bob Mooref3d2e782007-02-02 19:48:18 +0300681#define ACPI_SRAT_MEM_ENABLED (1) /* 00: Use affinity structure */
682#define ACPI_SRAT_MEM_HOT_PLUGGABLE (1<<1) /* 01: Memory region is hot pluggable */
683#define ACPI_SRAT_MEM_NON_VOLATILE (1<<2) /* 02: Memory region is non-volatile */
Bob Moore793c2382006-03-31 00:00:00 -0500684
Bob Moore793c2382006-03-31 00:00:00 -0500685/*******************************************************************************
686 *
687 * TCPA - Trusted Computing Platform Alliance table
688 *
689 ******************************************************************************/
690
691struct acpi_table_tcpa {
Bob Mooref3d2e782007-02-02 19:48:18 +0300692 struct acpi_table_header header; /* Common ACPI table header */
693 u16 reserved;
Bob Moore793c2382006-03-31 00:00:00 -0500694 u32 max_log_length; /* Maximum length for the event log area */
695 u64 log_address; /* Address of the event log area */
696};
697
698/*******************************************************************************
699 *
700 * WDRT - Watchdog Resource Table
701 *
702 ******************************************************************************/
703
704struct acpi_table_wdrt {
Bob Mooref3d2e782007-02-02 19:48:18 +0300705 struct acpi_table_header header; /* Common ACPI table header */
706 u32 header_length; /* Watchdog Header Length */
Bob Moore793c2382006-03-31 00:00:00 -0500707 u8 pci_segment; /* PCI Segment number */
708 u8 pci_bus; /* PCI Bus number */
709 u8 pci_device; /* PCI Device number */
710 u8 pci_function; /* PCI Function number */
711 u32 timer_period; /* Period of one timer count (msec) */
712 u32 max_count; /* Maximum counter value supported */
713 u32 min_count; /* Minimum counter value */
714 u8 flags;
715 u8 reserved[3];
716 u32 entries; /* Number of watchdog entries that follow */
717};
718
Bob Mooref3d2e782007-02-02 19:48:18 +0300719/* Flags */
Bob Moore793c2382006-03-31 00:00:00 -0500720
Bob Mooref3d2e782007-02-02 19:48:18 +0300721#define ACPI_WDRT_TIMER_ENABLED (1) /* 00: Timer enabled */
Bob Moore793c2382006-03-31 00:00:00 -0500722
723/* Reset to default packing */
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725#pragma pack()
726
Len Brown4be44fc2005-08-05 00:44:28 -0400727#endif /* __ACTBL1_H__ */