diff options
author | Bob Moore <robert.moore@intel.com> | 2010-03-03 03:30:35 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2010-04-20 10:42:50 -0400 |
commit | 0e264f0bc22207b99f33ee06e614186480682f15 (patch) | |
tree | 96e88ebdf93db9b0db1228812eb2470125fb59e0 /include/acpi/actbl2.h | |
parent | 4cdf1a562bfb5852954aadbe8515557b8acc8168 (diff) |
ACPICA: Add support for MCHI table
Disassembler and header file support for MCHI - Managment
Controller Host Interface table.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/actbl2.h')
-rw-r--r-- | include/acpi/actbl2.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/acpi/actbl2.h b/include/acpi/actbl2.h index 5b02e307bff3..95f4d0ef4819 100644 --- a/include/acpi/actbl2.h +++ b/include/acpi/actbl2.h | |||
@@ -69,6 +69,7 @@ | |||
69 | #define ACPI_SIG_IBFT "IBFT" /* i_sCSI Boot Firmware Table */ | 69 | #define ACPI_SIG_IBFT "IBFT" /* i_sCSI Boot Firmware Table */ |
70 | #define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */ | 70 | #define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */ |
71 | #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ | 71 | #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ |
72 | #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ | ||
72 | #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */ | 73 | #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */ |
73 | #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */ | 74 | #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */ |
74 | #define ACPI_SIG_SPMI "SPMI" /* Server Platform Management Interface table */ | 75 | #define ACPI_SIG_SPMI "SPMI" /* Server Platform Management Interface table */ |
@@ -679,6 +680,32 @@ struct acpi_mcfg_allocation { | |||
679 | 680 | ||
680 | /******************************************************************************* | 681 | /******************************************************************************* |
681 | * | 682 | * |
683 | * MCHI - Management Controller Host Interface Table | ||
684 | * Version 1 | ||
685 | * | ||
686 | * Conforms to "Management Component Transport Protocol (MCTP) Host | ||
687 | * Interface Specification", Revision 1.0.0a, October 13, 2009 | ||
688 | * | ||
689 | ******************************************************************************/ | ||
690 | |||
691 | struct acpi_table_mchi { | ||
692 | struct acpi_table_header header; /* Common ACPI table header */ | ||
693 | u8 interface_type; | ||
694 | u8 protocol; | ||
695 | u64 protocol_data; | ||
696 | u8 interrupt_type; | ||
697 | u8 gpe; | ||
698 | u8 pci_device_flag; | ||
699 | u32 global_interrupt; | ||
700 | struct acpi_generic_address control_register; | ||
701 | u8 pci_segment; | ||
702 | u8 pci_bus; | ||
703 | u8 pci_device; | ||
704 | u8 pci_function; | ||
705 | }; | ||
706 | |||
707 | /******************************************************************************* | ||
708 | * | ||
682 | * SPCR - Serial Port Console Redirection table | 709 | * SPCR - Serial Port Console Redirection table |
683 | * Version 1 | 710 | * Version 1 |
684 | * | 711 | * |