1 /******************************************************************************
3 * Name: actbl2.h - ACPI Table Definitions (tables not in ACPI spec)
5 *****************************************************************************/
8 * Copyright (C) 2000 - 2014, 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_LPIT "LPIT" /* Low Power Idle Table */
74 #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */
75 #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */
76 #define ACPI_SIG_MTMR "MTMR" /* MID Timer table */
77 #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */
78 #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */
79 #define ACPI_SIG_SPMI "SPMI" /* Server Platform Management Interface table */
80 #define ACPI_SIG_TCPA "TCPA" /* Trusted Computing Platform Alliance table */
81 #define ACPI_SIG_UEFI "UEFI" /* Uefi Boot Optimization Table */
82 #define ACPI_SIG_VRTC "VRTC" /* Virtual Real Time Clock Table */
83 #define ACPI_SIG_WAET "WAET" /* Windows ACPI Emulated devices Table */
84 #define ACPI_SIG_WDAT "WDAT" /* Watchdog Action Table */
85 #define ACPI_SIG_WDDT "WDDT" /* Watchdog Timer Description Table */
86 #define ACPI_SIG_WDRT "WDRT" /* Watchdog Resource Table */
88 #ifdef ACPI_UNDEFINED_TABLES
90 * These tables have been seen in the field, but no definition has been found
92 #define ACPI_SIG_ATKG "ATKG"
93 #define ACPI_SIG_GSCI "GSCI" /* GMCH SCI table */
94 #define ACPI_SIG_IEIT "IEIT"
98 * All tables must be byte-packed to match the ACPI specification, since
99 * the tables are provided by the system BIOS.
104 * Note: C bitfields are not used for this reason:
106 * "Bitfields are great and easy to read, but unfortunately the C language
107 * does not specify the layout of bitfields in memory, which means they are
108 * essentially useless for dealing with packed data in on-disk formats or
109 * binary wire protocols." (Or ACPI tables and buffers.) "If you ask me,
110 * this decision was a design error in C. Ritchie could have picked an order
111 * and stuck with it." Norman Ramsey.
112 * See http://stackoverflow.com/a/1053662/41661
115 /*******************************************************************************
117 * ASF - Alert Standard Format table (Signature "ASF!")
120 * Conforms to the Alert Standard Format Specification V2.0, 23 April 2003
122 ******************************************************************************/
124 struct acpi_table_asf
{
125 struct acpi_table_header header
; /* Common ACPI table header */
128 /* ASF subtable header */
130 struct acpi_asf_header
{
136 /* Values for Type field above */
139 ACPI_ASF_TYPE_INFO
= 0,
140 ACPI_ASF_TYPE_ALERT
= 1,
141 ACPI_ASF_TYPE_CONTROL
= 2,
142 ACPI_ASF_TYPE_BOOT
= 3,
143 ACPI_ASF_TYPE_ADDRESS
= 4,
144 ACPI_ASF_TYPE_RESERVED
= 5
151 /* 0: ASF Information */
153 struct acpi_asf_info
{
154 struct acpi_asf_header header
;
156 u8 min_poll_interval
;
163 /* Masks for Flags field above */
165 #define ACPI_ASF_SMBUS_PROTOCOLS (1)
169 struct acpi_asf_alert
{
170 struct acpi_asf_header header
;
177 struct acpi_asf_alert_data
{
192 /* 2: ASF Remote Control */
194 struct acpi_asf_remote
{
195 struct acpi_asf_header header
;
201 struct acpi_asf_control_data
{
208 /* 3: ASF RMCP Boot Options */
210 struct acpi_asf_rmcp
{
211 struct acpi_asf_header header
;
223 struct acpi_asf_address
{
224 struct acpi_asf_header header
;
229 /*******************************************************************************
231 * BOOT - Simple Boot Flag Table
234 * Conforms to the "Simple Boot Flag Specification", Version 2.1
236 ******************************************************************************/
238 struct acpi_table_boot
{
239 struct acpi_table_header header
; /* Common ACPI table header */
240 u8 cmos_index
; /* Index in CMOS RAM for the boot register */
244 /*******************************************************************************
246 * CSRT - Core System Resource Table
249 * Conforms to the "Core System Resource Table (CSRT)", November 14, 2011
251 ******************************************************************************/
253 struct acpi_table_csrt
{
254 struct acpi_table_header header
; /* Common ACPI table header */
257 /* Resource Group subtable */
259 struct acpi_csrt_group
{
267 u32 shared_info_length
;
269 /* Shared data immediately follows (Length = shared_info_length) */
272 /* Shared Info subtable */
274 struct acpi_csrt_shared_info
{
280 u8 interrupt_polarity
;
283 u8 dma_address_width
;
284 u16 base_request_line
;
285 u16 num_handshake_signals
;
288 /* Resource descriptors immediately follow (Length = Group length - shared_info_length) */
291 /* Resource Descriptor subtable */
293 struct acpi_csrt_descriptor
{
299 /* Resource-specific information immediately follows */
304 #define ACPI_CSRT_TYPE_INTERRUPT 0x0001
305 #define ACPI_CSRT_TYPE_TIMER 0x0002
306 #define ACPI_CSRT_TYPE_DMA 0x0003
308 /* Resource Subtypes */
310 #define ACPI_CSRT_XRUPT_LINE 0x0000
311 #define ACPI_CSRT_XRUPT_CONTROLLER 0x0001
312 #define ACPI_CSRT_TIMER 0x0000
313 #define ACPI_CSRT_DMA_CHANNEL 0x0000
314 #define ACPI_CSRT_DMA_CONTROLLER 0x0001
316 /*******************************************************************************
318 * DBG2 - Debug Port Table 2
319 * Version 0 (Both main table and subtables)
321 * Conforms to "Microsoft Debug Port Table 2 (DBG2)", May 22 2012.
323 ******************************************************************************/
325 struct acpi_table_dbg2
{
326 struct acpi_table_header header
; /* Common ACPI table header */
331 struct acpi_dbg2_header
{
336 /* Debug Device Information Subtable */
338 struct acpi_dbg2_device
{
341 u8 register_count
; /* Number of base_address registers */
349 u16 base_address_offset
;
350 u16 address_size_offset
;
353 * base_address (required) - Each in 12-byte Generic Address Structure format.
354 * address_size (required) - Array of u32 sizes corresponding to each base_address register.
355 * Namepath (required) - Null terminated string. Single dot if not supported.
356 * oem_data (optional) - Length is oem_data_length.
360 /* Types for port_type field above */
362 #define ACPI_DBG2_SERIAL_PORT 0x8000
363 #define ACPI_DBG2_1394_PORT 0x8001
364 #define ACPI_DBG2_USB_PORT 0x8002
365 #define ACPI_DBG2_NET_PORT 0x8003
367 /* Subtypes for port_subtype field above */
369 #define ACPI_DBG2_16550_COMPATIBLE 0x0000
370 #define ACPI_DBG2_16550_SUBSET 0x0001
372 #define ACPI_DBG2_1394_STANDARD 0x0000
374 #define ACPI_DBG2_USB_XHCI 0x0000
375 #define ACPI_DBG2_USB_EHCI 0x0001
377 /*******************************************************************************
379 * DBGP - Debug Port table
382 * Conforms to the "Debug Port Specification", Version 1.00, 2/9/2000
384 ******************************************************************************/
386 struct acpi_table_dbgp
{
387 struct acpi_table_header header
; /* Common ACPI table header */
388 u8 type
; /* 0=full 16550, 1=subset of 16550 */
390 struct acpi_generic_address debug_port
;
393 /*******************************************************************************
395 * DMAR - DMA Remapping table
398 * Conforms to "Intel Virtualization Technology for Directed I/O",
399 * Version 1.2, Sept. 2008
401 ******************************************************************************/
403 struct acpi_table_dmar
{
404 struct acpi_table_header header
; /* Common ACPI table header */
405 u8 width
; /* Host Address Width */
410 /* Masks for Flags field above */
412 #define ACPI_DMAR_INTR_REMAP (1)
414 /* DMAR subtable header */
416 struct acpi_dmar_header
{
421 /* Values for subtable type in struct acpi_dmar_header */
423 enum acpi_dmar_type
{
424 ACPI_DMAR_TYPE_HARDWARE_UNIT
= 0,
425 ACPI_DMAR_TYPE_RESERVED_MEMORY
= 1,
426 ACPI_DMAR_TYPE_ATSR
= 2,
427 ACPI_DMAR_HARDWARE_AFFINITY
= 3,
428 ACPI_DMAR_TYPE_ANDD
= 4,
429 ACPI_DMAR_TYPE_RESERVED
= 5 /* 5 and greater are reserved */
432 /* DMAR Device Scope structure */
434 struct acpi_dmar_device_scope
{
442 /* Values for entry_type in struct acpi_dmar_device_scope */
444 enum acpi_dmar_scope_type
{
445 ACPI_DMAR_SCOPE_TYPE_NOT_USED
= 0,
446 ACPI_DMAR_SCOPE_TYPE_ENDPOINT
= 1,
447 ACPI_DMAR_SCOPE_TYPE_BRIDGE
= 2,
448 ACPI_DMAR_SCOPE_TYPE_IOAPIC
= 3,
449 ACPI_DMAR_SCOPE_TYPE_HPET
= 4,
450 ACPI_DMAR_SCOPE_TYPE_ACPI
= 5,
451 ACPI_DMAR_SCOPE_TYPE_RESERVED
= 6 /* 6 and greater are reserved */
454 struct acpi_dmar_pci_path
{
460 * DMAR Subtables, correspond to Type in struct acpi_dmar_header
463 /* 0: Hardware Unit Definition */
465 struct acpi_dmar_hardware_unit
{
466 struct acpi_dmar_header header
;
470 u64 address
; /* Register Base Address */
473 /* Masks for Flags field above */
475 #define ACPI_DMAR_INCLUDE_ALL (1)
477 /* 1: Reserved Memory Defininition */
479 struct acpi_dmar_reserved_memory
{
480 struct acpi_dmar_header header
;
483 u64 base_address
; /* 4K aligned base address */
484 u64 end_address
; /* 4K aligned limit address */
487 /* Masks for Flags field above */
489 #define ACPI_DMAR_ALLOW_ALL (1)
491 /* 2: Root Port ATS Capability Reporting Structure */
493 struct acpi_dmar_atsr
{
494 struct acpi_dmar_header header
;
500 /* Masks for Flags field above */
502 #define ACPI_DMAR_ALL_PORTS (1)
504 /* 3: Remapping Hardware Static Affinity Structure */
506 struct acpi_dmar_rhsa
{
507 struct acpi_dmar_header header
;
510 u32 proximity_domain
;
513 /* 4: ACPI Namespace Device Declaration Structure */
515 struct acpi_dmar_andd
{
516 struct acpi_dmar_header header
;
522 /*******************************************************************************
524 * HPET - High Precision Event Timer table
527 * Conforms to "IA-PC HPET (High Precision Event Timers) Specification",
528 * Version 1.0a, October 2004
530 ******************************************************************************/
532 struct acpi_table_hpet
{
533 struct acpi_table_header header
; /* Common ACPI table header */
534 u32 id
; /* Hardware ID of event timer block */
535 struct acpi_generic_address address
; /* Address of event timer block */
536 u8 sequence
; /* HPET sequence number */
537 u16 minimum_tick
; /* Main counter min tick, periodic mode */
541 /* Masks for Flags field above */
543 #define ACPI_HPET_PAGE_PROTECT_MASK (3)
545 /* Values for Page Protect flags */
547 enum acpi_hpet_page_protect
{
548 ACPI_HPET_NO_PAGE_PROTECT
= 0,
549 ACPI_HPET_PAGE_PROTECT4
= 1,
550 ACPI_HPET_PAGE_PROTECT64
= 2
553 /*******************************************************************************
555 * IBFT - Boot Firmware Table
558 * Conforms to "iSCSI Boot Firmware Table (iBFT) as Defined in ACPI 3.0b
559 * Specification", Version 1.01, March 1, 2007
561 * Note: It appears that this table is not intended to appear in the RSDT/XSDT.
562 * Therefore, it is not currently supported by the disassembler.
564 ******************************************************************************/
566 struct acpi_table_ibft
{
567 struct acpi_table_header header
; /* Common ACPI table header */
571 /* IBFT common subtable header */
573 struct acpi_ibft_header
{
581 /* Values for Type field above */
583 enum acpi_ibft_type
{
584 ACPI_IBFT_TYPE_NOT_USED
= 0,
585 ACPI_IBFT_TYPE_CONTROL
= 1,
586 ACPI_IBFT_TYPE_INITIATOR
= 2,
587 ACPI_IBFT_TYPE_NIC
= 3,
588 ACPI_IBFT_TYPE_TARGET
= 4,
589 ACPI_IBFT_TYPE_EXTENSIONS
= 5,
590 ACPI_IBFT_TYPE_RESERVED
= 6 /* 6 and greater are reserved */
595 struct acpi_ibft_control
{
596 struct acpi_ibft_header header
;
598 u16 initiator_offset
;
605 struct acpi_ibft_initiator
{
606 struct acpi_ibft_header header
;
609 u8 primary_server
[16];
610 u8 secondary_server
[16];
615 struct acpi_ibft_nic
{
616 struct acpi_ibft_header header
;
618 u8 subnet_mask_prefix
;
622 u8 secondary_dns
[16];
631 struct acpi_ibft_target
{
632 struct acpi_ibft_header header
;
633 u8 target_ip_address
[16];
634 u16 target_ip_socket
;
635 u8 target_boot_lun
[8];
638 u16 target_name_length
;
639 u16 target_name_offset
;
640 u16 chap_name_length
;
641 u16 chap_name_offset
;
642 u16 chap_secret_length
;
643 u16 chap_secret_offset
;
644 u16 reverse_chap_name_length
;
645 u16 reverse_chap_name_offset
;
646 u16 reverse_chap_secret_length
;
647 u16 reverse_chap_secret_offset
;
650 /*******************************************************************************
652 * IVRS - I/O Virtualization Reporting Structure
655 * Conforms to "AMD I/O Virtualization Technology (IOMMU) Specification",
656 * Revision 1.26, February 2009.
658 ******************************************************************************/
660 struct acpi_table_ivrs
{
661 struct acpi_table_header header
; /* Common ACPI table header */
662 u32 info
; /* Common virtualization info */
666 /* Values for Info field above */
668 #define ACPI_IVRS_PHYSICAL_SIZE 0x00007F00 /* 7 bits, physical address size */
669 #define ACPI_IVRS_VIRTUAL_SIZE 0x003F8000 /* 7 bits, virtual address size */
670 #define ACPI_IVRS_ATS_RESERVED 0x00400000 /* ATS address translation range reserved */
672 /* IVRS subtable header */
674 struct acpi_ivrs_header
{
675 u8 type
; /* Subtable type */
677 u16 length
; /* Subtable length */
678 u16 device_id
; /* ID of IOMMU */
681 /* Values for subtable Type above */
683 enum acpi_ivrs_type
{
684 ACPI_IVRS_TYPE_HARDWARE
= 0x10,
685 ACPI_IVRS_TYPE_MEMORY1
= 0x20,
686 ACPI_IVRS_TYPE_MEMORY2
= 0x21,
687 ACPI_IVRS_TYPE_MEMORY3
= 0x22
690 /* Masks for Flags field above for IVHD subtable */
692 #define ACPI_IVHD_TT_ENABLE (1)
693 #define ACPI_IVHD_PASS_PW (1<<1)
694 #define ACPI_IVHD_RES_PASS_PW (1<<2)
695 #define ACPI_IVHD_ISOC (1<<3)
696 #define ACPI_IVHD_IOTLB (1<<4)
698 /* Masks for Flags field above for IVMD subtable */
700 #define ACPI_IVMD_UNITY (1)
701 #define ACPI_IVMD_READ (1<<1)
702 #define ACPI_IVMD_WRITE (1<<2)
703 #define ACPI_IVMD_EXCLUSION_RANGE (1<<3)
706 * IVRS subtables, correspond to Type in struct acpi_ivrs_header
709 /* 0x10: I/O Virtualization Hardware Definition Block (IVHD) */
711 struct acpi_ivrs_hardware
{
712 struct acpi_ivrs_header header
;
713 u16 capability_offset
; /* Offset for IOMMU control fields */
714 u64 base_address
; /* IOMMU control registers */
715 u16 pci_segment_group
;
716 u16 info
; /* MSI number and unit ID */
720 /* Masks for Info field above */
722 #define ACPI_IVHD_MSI_NUMBER_MASK 0x001F /* 5 bits, MSI message number */
723 #define ACPI_IVHD_UNIT_ID_MASK 0x1F00 /* 5 bits, unit_ID */
726 * Device Entries for IVHD subtable, appear after struct acpi_ivrs_hardware structure.
727 * Upper two bits of the Type field are the (encoded) length of the structure.
728 * Currently, only 4 and 8 byte entries are defined. 16 and 32 byte entries
729 * are reserved for future use but not defined.
731 struct acpi_ivrs_de_header
{
737 /* Length of device entry is in the top two bits of Type field above */
739 #define ACPI_IVHD_ENTRY_LENGTH 0xC0
741 /* Values for device entry Type field above */
743 enum acpi_ivrs_device_entry_type
{
744 /* 4-byte device entries, all use struct acpi_ivrs_device4 */
746 ACPI_IVRS_TYPE_PAD4
= 0,
747 ACPI_IVRS_TYPE_ALL
= 1,
748 ACPI_IVRS_TYPE_SELECT
= 2,
749 ACPI_IVRS_TYPE_START
= 3,
750 ACPI_IVRS_TYPE_END
= 4,
752 /* 8-byte device entries */
754 ACPI_IVRS_TYPE_PAD8
= 64,
755 ACPI_IVRS_TYPE_NOT_USED
= 65,
756 ACPI_IVRS_TYPE_ALIAS_SELECT
= 66, /* Uses struct acpi_ivrs_device8a */
757 ACPI_IVRS_TYPE_ALIAS_START
= 67, /* Uses struct acpi_ivrs_device8a */
758 ACPI_IVRS_TYPE_EXT_SELECT
= 70, /* Uses struct acpi_ivrs_device8b */
759 ACPI_IVRS_TYPE_EXT_START
= 71, /* Uses struct acpi_ivrs_device8b */
760 ACPI_IVRS_TYPE_SPECIAL
= 72 /* Uses struct acpi_ivrs_device8c */
763 /* Values for Data field above */
765 #define ACPI_IVHD_INIT_PASS (1)
766 #define ACPI_IVHD_EINT_PASS (1<<1)
767 #define ACPI_IVHD_NMI_PASS (1<<2)
768 #define ACPI_IVHD_SYSTEM_MGMT (3<<4)
769 #define ACPI_IVHD_LINT0_PASS (1<<6)
770 #define ACPI_IVHD_LINT1_PASS (1<<7)
772 /* Types 0-4: 4-byte device entry */
774 struct acpi_ivrs_device4
{
775 struct acpi_ivrs_de_header header
;
778 /* Types 66-67: 8-byte device entry */
780 struct acpi_ivrs_device8a
{
781 struct acpi_ivrs_de_header header
;
787 /* Types 70-71: 8-byte device entry */
789 struct acpi_ivrs_device8b
{
790 struct acpi_ivrs_de_header header
;
794 /* Values for extended_data above */
796 #define ACPI_IVHD_ATS_DISABLED (1<<31)
798 /* Type 72: 8-byte device entry */
800 struct acpi_ivrs_device8c
{
801 struct acpi_ivrs_de_header header
;
807 /* Values for Variety field above */
809 #define ACPI_IVHD_IOAPIC 1
810 #define ACPI_IVHD_HPET 2
812 /* 0x20, 0x21, 0x22: I/O Virtualization Memory Definition Block (IVMD) */
814 struct acpi_ivrs_memory
{
815 struct acpi_ivrs_header header
;
822 /*******************************************************************************
824 * LPIT - Low Power Idle Table
826 * Conforms to "ACPI Low Power Idle Table (LPIT) and _LPD Proposal (DRAFT)"
828 ******************************************************************************/
830 struct acpi_table_lpit
{
831 struct acpi_table_header header
; /* Common ACPI table header */
834 /* LPIT subtable header */
836 struct acpi_lpit_header
{
837 u32 type
; /* Subtable type */
838 u32 length
; /* Subtable length */
844 /* Values for subtable Type above */
846 enum acpi_lpit_type
{
847 ACPI_LPIT_TYPE_NATIVE_CSTATE
= 0x00,
848 ACPI_LPIT_TYPE_SIMPLE_IO
= 0x01
851 /* Masks for Flags field above */
853 #define ACPI_LPIT_STATE_DISABLED (1)
854 #define ACPI_LPIT_NO_COUNTER (1<<1)
857 * LPIT subtables, correspond to Type in struct acpi_lpit_header
860 /* 0x00: Native C-state instruction based LPI structure */
862 struct acpi_lpit_native
{
863 struct acpi_lpit_header header
;
864 struct acpi_generic_address entry_trigger
;
867 struct acpi_generic_address residency_counter
;
868 u64 counter_frequency
;
871 /* 0x01: Simple I/O based LPI structure */
873 struct acpi_lpit_io
{
874 struct acpi_lpit_header header
;
875 struct acpi_generic_address entry_trigger
;
879 struct acpi_generic_address minimum_idle_state
;
882 struct acpi_generic_address residency_counter
;
883 u64 counter_frequency
;
886 /*******************************************************************************
888 * MCFG - PCI Memory Mapped Configuration table and subtable
891 * Conforms to "PCI Firmware Specification", Revision 3.0, June 20, 2005
893 ******************************************************************************/
895 struct acpi_table_mcfg
{
896 struct acpi_table_header header
; /* Common ACPI table header */
902 struct acpi_mcfg_allocation
{
903 u64 address
; /* Base address, processor-relative */
904 u16 pci_segment
; /* PCI segment group number */
905 u8 start_bus_number
; /* Starting PCI Bus number */
906 u8 end_bus_number
; /* Final PCI Bus number */
910 /*******************************************************************************
912 * MCHI - Management Controller Host Interface Table
915 * Conforms to "Management Component Transport Protocol (MCTP) Host
916 * Interface Specification", Revision 1.0.0a, October 13, 2009
918 ******************************************************************************/
920 struct acpi_table_mchi
{
921 struct acpi_table_header header
; /* Common ACPI table header */
928 u32 global_interrupt
;
929 struct acpi_generic_address control_register
;
936 /*******************************************************************************
938 * MTMR - MID Timer Table
941 * Conforms to "Simple Firmware Interface Specification",
942 * Draft 0.8.2, Oct 19, 2010
943 * NOTE: The ACPI MTMR is equivalent to the SFI MTMR table.
945 ******************************************************************************/
947 struct acpi_table_mtmr
{
948 struct acpi_table_header header
; /* Common ACPI table header */
953 struct acpi_mtmr_entry
{
954 struct acpi_generic_address physical_address
;
959 /*******************************************************************************
961 * SLIC - Software Licensing Description Table
964 * Conforms to "OEM Activation 2.0 for Windows Vista Operating Systems",
967 ******************************************************************************/
969 /* Basic SLIC table is only the common ACPI header */
971 struct acpi_table_slic
{
972 struct acpi_table_header header
; /* Common ACPI table header */
975 /* Common SLIC subtable header */
977 struct acpi_slic_header
{
982 /* Values for Type field above */
984 enum acpi_slic_type
{
985 ACPI_SLIC_TYPE_PUBLIC_KEY
= 0,
986 ACPI_SLIC_TYPE_WINDOWS_MARKER
= 1,
987 ACPI_SLIC_TYPE_RESERVED
= 2 /* 2 and greater are reserved */
991 * SLIC Subtables, correspond to Type in struct acpi_slic_header
994 /* 0: Public Key Structure */
996 struct acpi_slic_key
{
997 struct acpi_slic_header header
;
1008 /* 1: Windows Marker Structure */
1010 struct acpi_slic_marker
{
1011 struct acpi_slic_header header
;
1013 char oem_id
[ACPI_OEM_ID_SIZE
]; /* ASCII OEM identification */
1014 char oem_table_id
[ACPI_OEM_TABLE_ID_SIZE
]; /* ASCII OEM table identification */
1015 char windows_flag
[8];
1021 /*******************************************************************************
1023 * SPCR - Serial Port Console Redirection table
1026 * Conforms to "Serial Port Console Redirection Table",
1027 * Version 1.00, January 11, 2002
1029 ******************************************************************************/
1031 struct acpi_table_spcr
{
1032 struct acpi_table_header header
; /* Common ACPI table header */
1033 u8 interface_type
; /* 0=full 16550, 1=subset of 16550 */
1035 struct acpi_generic_address serial_port
;
1055 /* Masks for pci_flags field above */
1057 #define ACPI_SPCR_DO_NOT_DISABLE (1)
1059 /*******************************************************************************
1061 * SPMI - Server Platform Management Interface table
1064 * Conforms to "Intelligent Platform Management Interface Specification
1065 * Second Generation v2.0", Document Revision 1.0, February 12, 2004 with
1066 * June 12, 2009 markup.
1068 ******************************************************************************/
1070 struct acpi_table_spmi
{
1071 struct acpi_table_header header
; /* Common ACPI table header */
1073 u8 reserved
; /* Must be 1 */
1074 u16 spec_revision
; /* Version of IPMI */
1076 u8 gpe_number
; /* GPE assigned */
1080 struct acpi_generic_address ipmi_register
;
1088 /* Values for interface_type above */
1090 enum acpi_spmi_interface_types
{
1091 ACPI_SPMI_NOT_USED
= 0,
1092 ACPI_SPMI_KEYBOARD
= 1,
1094 ACPI_SPMI_BLOCK_TRANSFER
= 3,
1095 ACPI_SPMI_SMBUS
= 4,
1096 ACPI_SPMI_RESERVED
= 5 /* 5 and above are reserved */
1099 /*******************************************************************************
1101 * TCPA - Trusted Computing Platform Alliance table
1104 * Conforms to "TCG PC Specific Implementation Specification",
1105 * Version 1.1, August 18, 2003
1107 ******************************************************************************/
1109 struct acpi_table_tcpa
{
1110 struct acpi_table_header header
; /* Common ACPI table header */
1112 u32 max_log_length
; /* Maximum length for the event log area */
1113 u64 log_address
; /* Address of the event log area */
1116 /*******************************************************************************
1118 * UEFI - UEFI Boot optimization Table
1121 * Conforms to "Unified Extensible Firmware Interface Specification",
1122 * Version 2.3, May 8, 2009
1124 ******************************************************************************/
1126 struct acpi_table_uefi
{
1127 struct acpi_table_header header
; /* Common ACPI table header */
1128 u8 identifier
[16]; /* UUID identifier */
1129 u16 data_offset
; /* Offset of remaining data in table */
1132 /*******************************************************************************
1134 * VRTC - Virtual Real Time Clock Table
1137 * Conforms to "Simple Firmware Interface Specification",
1138 * Draft 0.8.2, Oct 19, 2010
1139 * NOTE: The ACPI VRTC is equivalent to The SFI MRTC table.
1141 ******************************************************************************/
1143 struct acpi_table_vrtc
{
1144 struct acpi_table_header header
; /* Common ACPI table header */
1149 struct acpi_vrtc_entry
{
1150 struct acpi_generic_address physical_address
;
1154 /*******************************************************************************
1156 * WAET - Windows ACPI Emulated devices Table
1159 * Conforms to "Windows ACPI Emulated Devices Table", version 1.0, April 6, 2009
1161 ******************************************************************************/
1163 struct acpi_table_waet
{
1164 struct acpi_table_header header
; /* Common ACPI table header */
1168 /* Masks for Flags field above */
1170 #define ACPI_WAET_RTC_NO_ACK (1) /* RTC requires no int acknowledge */
1171 #define ACPI_WAET_TIMER_ONE_READ (1<<1) /* PM timer requires only one read */
1173 /*******************************************************************************
1175 * WDAT - Watchdog Action Table
1178 * Conforms to "Hardware Watchdog Timers Design Specification",
1179 * Copyright 2006 Microsoft Corporation.
1181 ******************************************************************************/
1183 struct acpi_table_wdat
{
1184 struct acpi_table_header header
; /* Common ACPI table header */
1185 u32 header_length
; /* Watchdog Header Length */
1186 u16 pci_segment
; /* PCI Segment number */
1187 u8 pci_bus
; /* PCI Bus number */
1188 u8 pci_device
; /* PCI Device number */
1189 u8 pci_function
; /* PCI Function number */
1191 u32 timer_period
; /* Period of one timer count (msec) */
1192 u32 max_count
; /* Maximum counter value supported */
1193 u32 min_count
; /* Minimum counter value */
1196 u32 entries
; /* Number of watchdog entries that follow */
1199 /* Masks for Flags field above */
1201 #define ACPI_WDAT_ENABLED (1)
1202 #define ACPI_WDAT_STOPPED 0x80
1204 /* WDAT Instruction Entries (actions) */
1206 struct acpi_wdat_entry
{
1210 struct acpi_generic_address register_region
;
1211 u32 value
; /* Value used with Read/Write register */
1212 u32 mask
; /* Bitmask required for this register instruction */
1215 /* Values for Action field above */
1217 enum acpi_wdat_actions
{
1218 ACPI_WDAT_RESET
= 1,
1219 ACPI_WDAT_GET_CURRENT_COUNTDOWN
= 4,
1220 ACPI_WDAT_GET_COUNTDOWN
= 5,
1221 ACPI_WDAT_SET_COUNTDOWN
= 6,
1222 ACPI_WDAT_GET_RUNNING_STATE
= 8,
1223 ACPI_WDAT_SET_RUNNING_STATE
= 9,
1224 ACPI_WDAT_GET_STOPPED_STATE
= 10,
1225 ACPI_WDAT_SET_STOPPED_STATE
= 11,
1226 ACPI_WDAT_GET_REBOOT
= 16,
1227 ACPI_WDAT_SET_REBOOT
= 17,
1228 ACPI_WDAT_GET_SHUTDOWN
= 18,
1229 ACPI_WDAT_SET_SHUTDOWN
= 19,
1230 ACPI_WDAT_GET_STATUS
= 32,
1231 ACPI_WDAT_SET_STATUS
= 33,
1232 ACPI_WDAT_ACTION_RESERVED
= 34 /* 34 and greater are reserved */
1235 /* Values for Instruction field above */
1237 enum acpi_wdat_instructions
{
1238 ACPI_WDAT_READ_VALUE
= 0,
1239 ACPI_WDAT_READ_COUNTDOWN
= 1,
1240 ACPI_WDAT_WRITE_VALUE
= 2,
1241 ACPI_WDAT_WRITE_COUNTDOWN
= 3,
1242 ACPI_WDAT_INSTRUCTION_RESERVED
= 4, /* 4 and greater are reserved */
1243 ACPI_WDAT_PRESERVE_REGISTER
= 0x80 /* Except for this value */
1246 /*******************************************************************************
1248 * WDDT - Watchdog Descriptor Table
1251 * Conforms to "Using the Intel ICH Family Watchdog Timer (WDT)",
1252 * Version 001, September 2002
1254 ******************************************************************************/
1256 struct acpi_table_wddt
{
1257 struct acpi_table_header header
; /* Common ACPI table header */
1261 struct acpi_generic_address address
;
1262 u16 max_count
; /* Maximum counter value supported */
1263 u16 min_count
; /* Minimum counter value supported */
1269 /* Flags for Status field above */
1271 #define ACPI_WDDT_AVAILABLE (1)
1272 #define ACPI_WDDT_ACTIVE (1<<1)
1273 #define ACPI_WDDT_TCO_OS_OWNED (1<<2)
1274 #define ACPI_WDDT_USER_RESET (1<<11)
1275 #define ACPI_WDDT_WDT_RESET (1<<12)
1276 #define ACPI_WDDT_POWER_FAIL (1<<13)
1277 #define ACPI_WDDT_UNKNOWN_RESET (1<<14)
1279 /* Flags for Capability field above */
1281 #define ACPI_WDDT_AUTO_RESET (1)
1282 #define ACPI_WDDT_ALERT_SUPPORT (1<<1)
1284 /*******************************************************************************
1286 * WDRT - Watchdog Resource Table
1289 * Conforms to "Watchdog Timer Hardware Requirements for Windows Server 2003",
1290 * Version 1.01, August 28, 2006
1292 ******************************************************************************/
1294 struct acpi_table_wdrt
{
1295 struct acpi_table_header header
; /* Common ACPI table header */
1296 struct acpi_generic_address control_register
;
1297 struct acpi_generic_address count_register
;
1300 u8 pci_bus
; /* PCI Bus number */
1301 u8 pci_device
; /* PCI Device number */
1302 u8 pci_function
; /* PCI Function number */
1303 u8 pci_segment
; /* PCI Segment number */
1304 u16 max_count
; /* Maximum counter value supported */
1308 /* Reset to default packing */
1312 #endif /* __ACTBL2_H__ */