1 /******************************************************************************
3 * Name: actbl2.h - ACPI Table Definitions (tables not in ACPI spec)
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2013, Intel Corp.
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
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.
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.
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.
47 /*******************************************************************************
49 * Additional ACPI Tables (2)
51 * These tables are not consumed directly by the ACPICA subsystem, but are
52 * included here to support device drivers and the AML disassembler.
54 * The tables in this file are defined by third-party specifications, and are
55 * not defined directly by the ACPI specification itself.
57 ******************************************************************************/
60 * Values for description table header signatures for tables defined in this
61 * file. Useful because they make it more difficult to inadvertently type in
62 * the wrong signature.
64 #define ACPI_SIG_ASF "ASF!" /* Alert Standard Format table */
65 #define ACPI_SIG_BOOT "BOOT" /* Simple Boot Flag Table */
66 #define ACPI_SIG_CSRT "CSRT" /* Core System Resource Table */
67 #define ACPI_SIG_DBG2 "DBG2" /* Debug Port table type 2 */
68 #define ACPI_SIG_DBGP "DBGP" /* Debug Port table */
69 #define ACPI_SIG_DMAR "DMAR" /* DMA Remapping table */
70 #define ACPI_SIG_HPET "HPET" /* High Precision Event Timer table */
71 #define ACPI_SIG_IBFT "IBFT" /* iSCSI Boot Firmware Table */
72 #define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */
73 #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */
74 #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */
75 #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */
76 #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */
77 #define ACPI_SIG_SPMI "SPMI" /* Server Platform Management Interface table */
78 #define ACPI_SIG_TCPA "TCPA" /* Trusted Computing Platform Alliance table */
79 #define ACPI_SIG_UEFI "UEFI" /* Uefi Boot Optimization Table */
80 #define ACPI_SIG_WAET "WAET" /* Windows ACPI Emulated devices Table */
81 #define ACPI_SIG_WDAT "WDAT" /* Watchdog Action Table */
82 #define ACPI_SIG_WDDT "WDDT" /* Watchdog Timer Description Table */
83 #define ACPI_SIG_WDRT "WDRT" /* Watchdog Resource Table */
85 #ifdef ACPI_UNDEFINED_TABLES
87 * These tables have been seen in the field, but no definition has been found
89 #define ACPI_SIG_ATKG "ATKG"
90 #define ACPI_SIG_GSCI "GSCI" /* GMCH SCI table */
91 #define ACPI_SIG_IEIT "IEIT"
95 * All tables must be byte-packed to match the ACPI specification, since
96 * the tables are provided by the system BIOS.
101 * Note: C bitfields are not used for this reason:
103 * "Bitfields are great and easy to read, but unfortunately the C language
104 * does not specify the layout of bitfields in memory, which means they are
105 * essentially useless for dealing with packed data in on-disk formats or
106 * binary wire protocols." (Or ACPI tables and buffers.) "If you ask me,
107 * this decision was a design error in C. Ritchie could have picked an order
108 * and stuck with it." Norman Ramsey.
109 * See http://stackoverflow.com/a/1053662/41661
112 /*******************************************************************************
114 * ASF - Alert Standard Format table (Signature "ASF!")
117 * Conforms to the Alert Standard Format Specification V2.0, 23 April 2003
119 ******************************************************************************/
121 struct acpi_table_asf
{
122 struct acpi_table_header header
; /* Common ACPI table header */
125 /* ASF subtable header */
127 struct acpi_asf_header
{
133 /* Values for Type field above */
136 ACPI_ASF_TYPE_INFO
= 0,
137 ACPI_ASF_TYPE_ALERT
= 1,
138 ACPI_ASF_TYPE_CONTROL
= 2,
139 ACPI_ASF_TYPE_BOOT
= 3,
140 ACPI_ASF_TYPE_ADDRESS
= 4,
141 ACPI_ASF_TYPE_RESERVED
= 5
148 /* 0: ASF Information */
150 struct acpi_asf_info
{
151 struct acpi_asf_header header
;
153 u8 min_poll_interval
;
160 /* Masks for Flags field above */
162 #define ACPI_ASF_SMBUS_PROTOCOLS (1)
166 struct acpi_asf_alert
{
167 struct acpi_asf_header header
;
174 struct acpi_asf_alert_data
{
189 /* 2: ASF Remote Control */
191 struct acpi_asf_remote
{
192 struct acpi_asf_header header
;
198 struct acpi_asf_control_data
{
205 /* 3: ASF RMCP Boot Options */
207 struct acpi_asf_rmcp
{
208 struct acpi_asf_header header
;
220 struct acpi_asf_address
{
221 struct acpi_asf_header header
;
226 /*******************************************************************************
228 * BOOT - Simple Boot Flag Table
231 * Conforms to the "Simple Boot Flag Specification", Version 2.1
233 ******************************************************************************/
235 struct acpi_table_boot
{
236 struct acpi_table_header header
; /* Common ACPI table header */
237 u8 cmos_index
; /* Index in CMOS RAM for the boot register */
241 /*******************************************************************************
243 * CSRT - Core System Resource Table
246 * Conforms to the "Core System Resource Table (CSRT)", November 14, 2011
248 ******************************************************************************/
250 struct acpi_table_csrt
{
251 struct acpi_table_header header
; /* Common ACPI table header */
254 /* Resource Group subtable */
256 struct acpi_csrt_group
{
264 u32 shared_info_length
;
266 /* Shared data immediately follows (Length = shared_info_length) */
269 /* Shared Info subtable */
271 struct acpi_csrt_shared_info
{
277 u8 interrupt_polarity
;
280 u8 dma_address_width
;
281 u16 base_request_line
;
282 u16 num_handshake_signals
;
285 /* Resource descriptors immediately follow (Length = Group length - shared_info_length) */
288 /* Resource Descriptor subtable */
290 struct acpi_csrt_descriptor
{
296 /* Resource-specific information immediately follows */
301 #define ACPI_CSRT_TYPE_INTERRUPT 0x0001
302 #define ACPI_CSRT_TYPE_TIMER 0x0002
303 #define ACPI_CSRT_TYPE_DMA 0x0003
305 /* Resource Subtypes */
307 #define ACPI_CSRT_XRUPT_LINE 0x0000
308 #define ACPI_CSRT_XRUPT_CONTROLLER 0x0001
309 #define ACPI_CSRT_TIMER 0x0000
310 #define ACPI_CSRT_DMA_CHANNEL 0x0000
311 #define ACPI_CSRT_DMA_CONTROLLER 0x0001
313 /*******************************************************************************
315 * DBG2 - Debug Port Table 2
316 * Version 0 (Both main table and subtables)
318 * Conforms to "Microsoft Debug Port Table 2 (DBG2)", May 22 2012.
320 ******************************************************************************/
322 struct acpi_table_dbg2
{
323 struct acpi_table_header header
; /* Common ACPI table header */
328 /* Debug Device Information Subtable */
330 struct acpi_dbg2_device
{
333 u8 register_count
; /* Number of base_address registers */
341 u16 base_address_offset
;
342 u16 address_size_offset
;
345 * base_address (required) - Each in 12-byte Generic Address Structure format.
346 * address_size (required) - Array of u32 sizes corresponding to each base_address register.
347 * Namepath (required) - Null terminated string. Single dot if not supported.
348 * oem_data (optional) - Length is oem_data_length.
352 /* Types for port_type field above */
354 #define ACPI_DBG2_SERIAL_PORT 0x8000
355 #define ACPI_DBG2_1394_PORT 0x8001
356 #define ACPI_DBG2_USB_PORT 0x8002
357 #define ACPI_DBG2_NET_PORT 0x8003
359 /* Subtypes for port_subtype field above */
361 #define ACPI_DBG2_16550_COMPATIBLE 0x0000
362 #define ACPI_DBG2_16550_SUBSET 0x0001
364 #define ACPI_DBG2_1394_STANDARD 0x0000
366 #define ACPI_DBG2_USB_XHCI 0x0000
367 #define ACPI_DBG2_USB_EHCI 0x0001
369 /*******************************************************************************
371 * DBGP - Debug Port table
374 * Conforms to the "Debug Port Specification", Version 1.00, 2/9/2000
376 ******************************************************************************/
378 struct acpi_table_dbgp
{
379 struct acpi_table_header header
; /* Common ACPI table header */
380 u8 type
; /* 0=full 16550, 1=subset of 16550 */
382 struct acpi_generic_address debug_port
;
385 /*******************************************************************************
387 * DMAR - DMA Remapping table
390 * Conforms to "Intel Virtualization Technology for Directed I/O",
391 * Version 1.2, Sept. 2008
393 ******************************************************************************/
395 struct acpi_table_dmar
{
396 struct acpi_table_header header
; /* Common ACPI table header */
397 u8 width
; /* Host Address Width */
402 /* Masks for Flags field above */
404 #define ACPI_DMAR_INTR_REMAP (1)
406 /* DMAR subtable header */
408 struct acpi_dmar_header
{
413 /* Values for subtable type in struct acpi_dmar_header */
415 enum acpi_dmar_type
{
416 ACPI_DMAR_TYPE_HARDWARE_UNIT
= 0,
417 ACPI_DMAR_TYPE_RESERVED_MEMORY
= 1,
418 ACPI_DMAR_TYPE_ATSR
= 2,
419 ACPI_DMAR_HARDWARE_AFFINITY
= 3,
420 ACPI_DMAR_TYPE_RESERVED
= 4 /* 4 and greater are reserved */
423 /* DMAR Device Scope structure */
425 struct acpi_dmar_device_scope
{
433 /* Values for entry_type in struct acpi_dmar_device_scope */
435 enum acpi_dmar_scope_type
{
436 ACPI_DMAR_SCOPE_TYPE_NOT_USED
= 0,
437 ACPI_DMAR_SCOPE_TYPE_ENDPOINT
= 1,
438 ACPI_DMAR_SCOPE_TYPE_BRIDGE
= 2,
439 ACPI_DMAR_SCOPE_TYPE_IOAPIC
= 3,
440 ACPI_DMAR_SCOPE_TYPE_HPET
= 4,
441 ACPI_DMAR_SCOPE_TYPE_RESERVED
= 5 /* 5 and greater are reserved */
444 struct acpi_dmar_pci_path
{
450 * DMAR Sub-tables, correspond to Type in struct acpi_dmar_header
453 /* 0: Hardware Unit Definition */
455 struct acpi_dmar_hardware_unit
{
456 struct acpi_dmar_header header
;
460 u64 address
; /* Register Base Address */
463 /* Masks for Flags field above */
465 #define ACPI_DMAR_INCLUDE_ALL (1)
467 /* 1: Reserved Memory Defininition */
469 struct acpi_dmar_reserved_memory
{
470 struct acpi_dmar_header header
;
473 u64 base_address
; /* 4K aligned base address */
474 u64 end_address
; /* 4K aligned limit address */
477 /* Masks for Flags field above */
479 #define ACPI_DMAR_ALLOW_ALL (1)
481 /* 2: Root Port ATS Capability Reporting Structure */
483 struct acpi_dmar_atsr
{
484 struct acpi_dmar_header header
;
490 /* Masks for Flags field above */
492 #define ACPI_DMAR_ALL_PORTS (1)
494 /* 3: Remapping Hardware Static Affinity Structure */
496 struct acpi_dmar_rhsa
{
497 struct acpi_dmar_header header
;
500 u32 proximity_domain
;
503 /*******************************************************************************
505 * HPET - High Precision Event Timer table
508 * Conforms to "IA-PC HPET (High Precision Event Timers) Specification",
509 * Version 1.0a, October 2004
511 ******************************************************************************/
513 struct acpi_table_hpet
{
514 struct acpi_table_header header
; /* Common ACPI table header */
515 u32 id
; /* Hardware ID of event timer block */
516 struct acpi_generic_address address
; /* Address of event timer block */
517 u8 sequence
; /* HPET sequence number */
518 u16 minimum_tick
; /* Main counter min tick, periodic mode */
522 /* Masks for Flags field above */
524 #define ACPI_HPET_PAGE_PROTECT_MASK (3)
526 /* Values for Page Protect flags */
528 enum acpi_hpet_page_protect
{
529 ACPI_HPET_NO_PAGE_PROTECT
= 0,
530 ACPI_HPET_PAGE_PROTECT4
= 1,
531 ACPI_HPET_PAGE_PROTECT64
= 2
534 /*******************************************************************************
536 * IBFT - Boot Firmware Table
539 * Conforms to "iSCSI Boot Firmware Table (iBFT) as Defined in ACPI 3.0b
540 * Specification", Version 1.01, March 1, 2007
542 * Note: It appears that this table is not intended to appear in the RSDT/XSDT.
543 * Therefore, it is not currently supported by the disassembler.
545 ******************************************************************************/
547 struct acpi_table_ibft
{
548 struct acpi_table_header header
; /* Common ACPI table header */
552 /* IBFT common subtable header */
554 struct acpi_ibft_header
{
562 /* Values for Type field above */
564 enum acpi_ibft_type
{
565 ACPI_IBFT_TYPE_NOT_USED
= 0,
566 ACPI_IBFT_TYPE_CONTROL
= 1,
567 ACPI_IBFT_TYPE_INITIATOR
= 2,
568 ACPI_IBFT_TYPE_NIC
= 3,
569 ACPI_IBFT_TYPE_TARGET
= 4,
570 ACPI_IBFT_TYPE_EXTENSIONS
= 5,
571 ACPI_IBFT_TYPE_RESERVED
= 6 /* 6 and greater are reserved */
576 struct acpi_ibft_control
{
577 struct acpi_ibft_header header
;
579 u16 initiator_offset
;
586 struct acpi_ibft_initiator
{
587 struct acpi_ibft_header header
;
590 u8 primary_server
[16];
591 u8 secondary_server
[16];
596 struct acpi_ibft_nic
{
597 struct acpi_ibft_header header
;
599 u8 subnet_mask_prefix
;
603 u8 secondary_dns
[16];
612 struct acpi_ibft_target
{
613 struct acpi_ibft_header header
;
614 u8 target_ip_address
[16];
615 u16 target_ip_socket
;
616 u8 target_boot_lun
[8];
619 u16 target_name_length
;
620 u16 target_name_offset
;
621 u16 chap_name_length
;
622 u16 chap_name_offset
;
623 u16 chap_secret_length
;
624 u16 chap_secret_offset
;
625 u16 reverse_chap_name_length
;
626 u16 reverse_chap_name_offset
;
627 u16 reverse_chap_secret_length
;
628 u16 reverse_chap_secret_offset
;
631 /*******************************************************************************
633 * IVRS - I/O Virtualization Reporting Structure
636 * Conforms to "AMD I/O Virtualization Technology (IOMMU) Specification",
637 * Revision 1.26, February 2009.
639 ******************************************************************************/
641 struct acpi_table_ivrs
{
642 struct acpi_table_header header
; /* Common ACPI table header */
643 u32 info
; /* Common virtualization info */
647 /* Values for Info field above */
649 #define ACPI_IVRS_PHYSICAL_SIZE 0x00007F00 /* 7 bits, physical address size */
650 #define ACPI_IVRS_VIRTUAL_SIZE 0x003F8000 /* 7 bits, virtual address size */
651 #define ACPI_IVRS_ATS_RESERVED 0x00400000 /* ATS address translation range reserved */
653 /* IVRS subtable header */
655 struct acpi_ivrs_header
{
656 u8 type
; /* Subtable type */
658 u16 length
; /* Subtable length */
659 u16 device_id
; /* ID of IOMMU */
662 /* Values for subtable Type above */
664 enum acpi_ivrs_type
{
665 ACPI_IVRS_TYPE_HARDWARE
= 0x10,
666 ACPI_IVRS_TYPE_MEMORY1
= 0x20,
667 ACPI_IVRS_TYPE_MEMORY2
= 0x21,
668 ACPI_IVRS_TYPE_MEMORY3
= 0x22
671 /* Masks for Flags field above for IVHD subtable */
673 #define ACPI_IVHD_TT_ENABLE (1)
674 #define ACPI_IVHD_PASS_PW (1<<1)
675 #define ACPI_IVHD_RES_PASS_PW (1<<2)
676 #define ACPI_IVHD_ISOC (1<<3)
677 #define ACPI_IVHD_IOTLB (1<<4)
679 /* Masks for Flags field above for IVMD subtable */
681 #define ACPI_IVMD_UNITY (1)
682 #define ACPI_IVMD_READ (1<<1)
683 #define ACPI_IVMD_WRITE (1<<2)
684 #define ACPI_IVMD_EXCLUSION_RANGE (1<<3)
687 * IVRS subtables, correspond to Type in struct acpi_ivrs_header
690 /* 0x10: I/O Virtualization Hardware Definition Block (IVHD) */
692 struct acpi_ivrs_hardware
{
693 struct acpi_ivrs_header header
;
694 u16 capability_offset
; /* Offset for IOMMU control fields */
695 u64 base_address
; /* IOMMU control registers */
696 u16 pci_segment_group
;
697 u16 info
; /* MSI number and unit ID */
701 /* Masks for Info field above */
703 #define ACPI_IVHD_MSI_NUMBER_MASK 0x001F /* 5 bits, MSI message number */
704 #define ACPI_IVHD_UNIT_ID_MASK 0x1F00 /* 5 bits, unit_ID */
707 * Device Entries for IVHD subtable, appear after struct acpi_ivrs_hardware structure.
708 * Upper two bits of the Type field are the (encoded) length of the structure.
709 * Currently, only 4 and 8 byte entries are defined. 16 and 32 byte entries
710 * are reserved for future use but not defined.
712 struct acpi_ivrs_de_header
{
718 /* Length of device entry is in the top two bits of Type field above */
720 #define ACPI_IVHD_ENTRY_LENGTH 0xC0
722 /* Values for device entry Type field above */
724 enum acpi_ivrs_device_entry_type
{
725 /* 4-byte device entries, all use struct acpi_ivrs_device4 */
727 ACPI_IVRS_TYPE_PAD4
= 0,
728 ACPI_IVRS_TYPE_ALL
= 1,
729 ACPI_IVRS_TYPE_SELECT
= 2,
730 ACPI_IVRS_TYPE_START
= 3,
731 ACPI_IVRS_TYPE_END
= 4,
733 /* 8-byte device entries */
735 ACPI_IVRS_TYPE_PAD8
= 64,
736 ACPI_IVRS_TYPE_NOT_USED
= 65,
737 ACPI_IVRS_TYPE_ALIAS_SELECT
= 66, /* Uses struct acpi_ivrs_device8a */
738 ACPI_IVRS_TYPE_ALIAS_START
= 67, /* Uses struct acpi_ivrs_device8a */
739 ACPI_IVRS_TYPE_EXT_SELECT
= 70, /* Uses struct acpi_ivrs_device8b */
740 ACPI_IVRS_TYPE_EXT_START
= 71, /* Uses struct acpi_ivrs_device8b */
741 ACPI_IVRS_TYPE_SPECIAL
= 72 /* Uses struct acpi_ivrs_device8c */
744 /* Values for Data field above */
746 #define ACPI_IVHD_INIT_PASS (1)
747 #define ACPI_IVHD_EINT_PASS (1<<1)
748 #define ACPI_IVHD_NMI_PASS (1<<2)
749 #define ACPI_IVHD_SYSTEM_MGMT (3<<4)
750 #define ACPI_IVHD_LINT0_PASS (1<<6)
751 #define ACPI_IVHD_LINT1_PASS (1<<7)
753 /* Types 0-4: 4-byte device entry */
755 struct acpi_ivrs_device4
{
756 struct acpi_ivrs_de_header header
;
759 /* Types 66-67: 8-byte device entry */
761 struct acpi_ivrs_device8a
{
762 struct acpi_ivrs_de_header header
;
768 /* Types 70-71: 8-byte device entry */
770 struct acpi_ivrs_device8b
{
771 struct acpi_ivrs_de_header header
;
775 /* Values for extended_data above */
777 #define ACPI_IVHD_ATS_DISABLED (1<<31)
779 /* Type 72: 8-byte device entry */
781 struct acpi_ivrs_device8c
{
782 struct acpi_ivrs_de_header header
;
788 /* Values for Variety field above */
790 #define ACPI_IVHD_IOAPIC 1
791 #define ACPI_IVHD_HPET 2
793 /* 0x20, 0x21, 0x22: I/O Virtualization Memory Definition Block (IVMD) */
795 struct acpi_ivrs_memory
{
796 struct acpi_ivrs_header header
;
803 /*******************************************************************************
805 * MCFG - PCI Memory Mapped Configuration table and sub-table
808 * Conforms to "PCI Firmware Specification", Revision 3.0, June 20, 2005
810 ******************************************************************************/
812 struct acpi_table_mcfg
{
813 struct acpi_table_header header
; /* Common ACPI table header */
819 struct acpi_mcfg_allocation
{
820 u64 address
; /* Base address, processor-relative */
821 u16 pci_segment
; /* PCI segment group number */
822 u8 start_bus_number
; /* Starting PCI Bus number */
823 u8 end_bus_number
; /* Final PCI Bus number */
827 /*******************************************************************************
829 * MCHI - Management Controller Host Interface Table
832 * Conforms to "Management Component Transport Protocol (MCTP) Host
833 * Interface Specification", Revision 1.0.0a, October 13, 2009
835 ******************************************************************************/
837 struct acpi_table_mchi
{
838 struct acpi_table_header header
; /* Common ACPI table header */
845 u32 global_interrupt
;
846 struct acpi_generic_address control_register
;
853 /*******************************************************************************
855 * SLIC - Software Licensing Description Table
858 * Conforms to "OEM Activation 2.0 for Windows Vista Operating Systems",
861 ******************************************************************************/
863 /* Basic SLIC table is only the common ACPI header */
865 struct acpi_table_slic
{
866 struct acpi_table_header header
; /* Common ACPI table header */
869 /* Common SLIC subtable header */
871 struct acpi_slic_header
{
876 /* Values for Type field above */
878 enum acpi_slic_type
{
879 ACPI_SLIC_TYPE_PUBLIC_KEY
= 0,
880 ACPI_SLIC_TYPE_WINDOWS_MARKER
= 1,
881 ACPI_SLIC_TYPE_RESERVED
= 2 /* 2 and greater are reserved */
885 * SLIC Sub-tables, correspond to Type in struct acpi_slic_header
888 /* 0: Public Key Structure */
890 struct acpi_slic_key
{
891 struct acpi_slic_header header
;
902 /* 1: Windows Marker Structure */
904 struct acpi_slic_marker
{
905 struct acpi_slic_header header
;
907 char oem_id
[ACPI_OEM_ID_SIZE
]; /* ASCII OEM identification */
908 char oem_table_id
[ACPI_OEM_TABLE_ID_SIZE
]; /* ASCII OEM table identification */
909 char windows_flag
[8];
915 /*******************************************************************************
917 * SPCR - Serial Port Console Redirection table
920 * Conforms to "Serial Port Console Redirection Table",
921 * Version 1.00, January 11, 2002
923 ******************************************************************************/
925 struct acpi_table_spcr
{
926 struct acpi_table_header header
; /* Common ACPI table header */
927 u8 interface_type
; /* 0=full 16550, 1=subset of 16550 */
929 struct acpi_generic_address serial_port
;
949 /* Masks for pci_flags field above */
951 #define ACPI_SPCR_DO_NOT_DISABLE (1)
953 /*******************************************************************************
955 * SPMI - Server Platform Management Interface table
958 * Conforms to "Intelligent Platform Management Interface Specification
959 * Second Generation v2.0", Document Revision 1.0, February 12, 2004 with
960 * June 12, 2009 markup.
962 ******************************************************************************/
964 struct acpi_table_spmi
{
965 struct acpi_table_header header
; /* Common ACPI table header */
967 u8 reserved
; /* Must be 1 */
968 u16 spec_revision
; /* Version of IPMI */
970 u8 gpe_number
; /* GPE assigned */
974 struct acpi_generic_address ipmi_register
;
982 /* Values for interface_type above */
984 enum acpi_spmi_interface_types
{
985 ACPI_SPMI_NOT_USED
= 0,
986 ACPI_SPMI_KEYBOARD
= 1,
988 ACPI_SPMI_BLOCK_TRANSFER
= 3,
990 ACPI_SPMI_RESERVED
= 5 /* 5 and above are reserved */
993 /*******************************************************************************
995 * TCPA - Trusted Computing Platform Alliance table
998 * Conforms to "TCG PC Specific Implementation Specification",
999 * Version 1.1, August 18, 2003
1001 ******************************************************************************/
1003 struct acpi_table_tcpa
{
1004 struct acpi_table_header header
; /* Common ACPI table header */
1006 u32 max_log_length
; /* Maximum length for the event log area */
1007 u64 log_address
; /* Address of the event log area */
1010 /*******************************************************************************
1012 * UEFI - UEFI Boot optimization Table
1015 * Conforms to "Unified Extensible Firmware Interface Specification",
1016 * Version 2.3, May 8, 2009
1018 ******************************************************************************/
1020 struct acpi_table_uefi
{
1021 struct acpi_table_header header
; /* Common ACPI table header */
1022 u8 identifier
[16]; /* UUID identifier */
1023 u16 data_offset
; /* Offset of remaining data in table */
1026 /*******************************************************************************
1028 * WAET - Windows ACPI Emulated devices Table
1031 * Conforms to "Windows ACPI Emulated Devices Table", version 1.0, April 6, 2009
1033 ******************************************************************************/
1035 struct acpi_table_waet
{
1036 struct acpi_table_header header
; /* Common ACPI table header */
1040 /* Masks for Flags field above */
1042 #define ACPI_WAET_RTC_NO_ACK (1) /* RTC requires no int acknowledge */
1043 #define ACPI_WAET_TIMER_ONE_READ (1<<1) /* PM timer requires only one read */
1045 /*******************************************************************************
1047 * WDAT - Watchdog Action Table
1050 * Conforms to "Hardware Watchdog Timers Design Specification",
1051 * Copyright 2006 Microsoft Corporation.
1053 ******************************************************************************/
1055 struct acpi_table_wdat
{
1056 struct acpi_table_header header
; /* Common ACPI table header */
1057 u32 header_length
; /* Watchdog Header Length */
1058 u16 pci_segment
; /* PCI Segment number */
1059 u8 pci_bus
; /* PCI Bus number */
1060 u8 pci_device
; /* PCI Device number */
1061 u8 pci_function
; /* PCI Function number */
1063 u32 timer_period
; /* Period of one timer count (msec) */
1064 u32 max_count
; /* Maximum counter value supported */
1065 u32 min_count
; /* Minimum counter value */
1068 u32 entries
; /* Number of watchdog entries that follow */
1071 /* Masks for Flags field above */
1073 #define ACPI_WDAT_ENABLED (1)
1074 #define ACPI_WDAT_STOPPED 0x80
1076 /* WDAT Instruction Entries (actions) */
1078 struct acpi_wdat_entry
{
1082 struct acpi_generic_address register_region
;
1083 u32 value
; /* Value used with Read/Write register */
1084 u32 mask
; /* Bitmask required for this register instruction */
1087 /* Values for Action field above */
1089 enum acpi_wdat_actions
{
1090 ACPI_WDAT_RESET
= 1,
1091 ACPI_WDAT_GET_CURRENT_COUNTDOWN
= 4,
1092 ACPI_WDAT_GET_COUNTDOWN
= 5,
1093 ACPI_WDAT_SET_COUNTDOWN
= 6,
1094 ACPI_WDAT_GET_RUNNING_STATE
= 8,
1095 ACPI_WDAT_SET_RUNNING_STATE
= 9,
1096 ACPI_WDAT_GET_STOPPED_STATE
= 10,
1097 ACPI_WDAT_SET_STOPPED_STATE
= 11,
1098 ACPI_WDAT_GET_REBOOT
= 16,
1099 ACPI_WDAT_SET_REBOOT
= 17,
1100 ACPI_WDAT_GET_SHUTDOWN
= 18,
1101 ACPI_WDAT_SET_SHUTDOWN
= 19,
1102 ACPI_WDAT_GET_STATUS
= 32,
1103 ACPI_WDAT_SET_STATUS
= 33,
1104 ACPI_WDAT_ACTION_RESERVED
= 34 /* 34 and greater are reserved */
1107 /* Values for Instruction field above */
1109 enum acpi_wdat_instructions
{
1110 ACPI_WDAT_READ_VALUE
= 0,
1111 ACPI_WDAT_READ_COUNTDOWN
= 1,
1112 ACPI_WDAT_WRITE_VALUE
= 2,
1113 ACPI_WDAT_WRITE_COUNTDOWN
= 3,
1114 ACPI_WDAT_INSTRUCTION_RESERVED
= 4, /* 4 and greater are reserved */
1115 ACPI_WDAT_PRESERVE_REGISTER
= 0x80 /* Except for this value */
1118 /*******************************************************************************
1120 * WDDT - Watchdog Descriptor Table
1123 * Conforms to "Using the Intel ICH Family Watchdog Timer (WDT)",
1124 * Version 001, September 2002
1126 ******************************************************************************/
1128 struct acpi_table_wddt
{
1129 struct acpi_table_header header
; /* Common ACPI table header */
1133 struct acpi_generic_address address
;
1134 u16 max_count
; /* Maximum counter value supported */
1135 u16 min_count
; /* Minimum counter value supported */
1141 /* Flags for Status field above */
1143 #define ACPI_WDDT_AVAILABLE (1)
1144 #define ACPI_WDDT_ACTIVE (1<<1)
1145 #define ACPI_WDDT_TCO_OS_OWNED (1<<2)
1146 #define ACPI_WDDT_USER_RESET (1<<11)
1147 #define ACPI_WDDT_WDT_RESET (1<<12)
1148 #define ACPI_WDDT_POWER_FAIL (1<<13)
1149 #define ACPI_WDDT_UNKNOWN_RESET (1<<14)
1151 /* Flags for Capability field above */
1153 #define ACPI_WDDT_AUTO_RESET (1)
1154 #define ACPI_WDDT_ALERT_SUPPORT (1<<1)
1156 /*******************************************************************************
1158 * WDRT - Watchdog Resource Table
1161 * Conforms to "Watchdog Timer Hardware Requirements for Windows Server 2003",
1162 * Version 1.01, August 28, 2006
1164 ******************************************************************************/
1166 struct acpi_table_wdrt
{
1167 struct acpi_table_header header
; /* Common ACPI table header */
1168 struct acpi_generic_address control_register
;
1169 struct acpi_generic_address count_register
;
1172 u8 pci_bus
; /* PCI Bus number */
1173 u8 pci_device
; /* PCI Device number */
1174 u8 pci_function
; /* PCI Function number */
1175 u8 pci_segment
; /* PCI Segment number */
1176 u16 max_count
; /* Maximum counter value supported */
1180 /* Reset to default packing */
1184 #endif /* __ACTBL2_H__ */