diff options
author | Bob Moore <robert.moore@intel.com> | 2015-05-20 22:30:24 -0400 |
---|---|---|
committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-05-21 21:22:19 -0400 |
commit | b6944efd638d746653f69bc6cbbef7986c0ff962 (patch) | |
tree | 0eaff108e8227ac3bbf791c83d60b50d76ef1162 /include/acpi | |
parent | e34a7813cf7841ab351d1cb4152c2f4ceaa00070 (diff) |
ACPICA: ACPI 6.0: Add support for XENV table.
ACPICA commit 08c4197cf4ddd45f0c961078220b0fc19c10745c
Xen Environment table.
Link: https://github.com/acpica/acpica/commit/08c4197c
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lv Zheng <lv.zheng@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Diffstat (limited to 'include/acpi')
-rw-r--r-- | include/acpi/actbl3.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/acpi/actbl3.h b/include/acpi/actbl3.h index eb994e97fbb3..3eed4c870a8a 100644 --- a/include/acpi/actbl3.h +++ b/include/acpi/actbl3.h | |||
@@ -70,6 +70,7 @@ | |||
70 | #define ACPI_SIG_RASF "RASF" /* RAS Feature table */ | 70 | #define ACPI_SIG_RASF "RASF" /* RAS Feature table */ |
71 | #define ACPI_SIG_STAO "STAO" /* Status Override table */ | 71 | #define ACPI_SIG_STAO "STAO" /* Status Override table */ |
72 | #define ACPI_SIG_TPM2 "TPM2" /* Trusted Platform Module 2.0 H/W interface table */ | 72 | #define ACPI_SIG_TPM2 "TPM2" /* Trusted Platform Module 2.0 H/W interface table */ |
73 | #define ACPI_SIG_XENV "XENV" /* Xen Environment table */ | ||
73 | 74 | ||
74 | #define ACPI_SIG_S3PT "S3PT" /* S3 Performance (sub)Table */ | 75 | #define ACPI_SIG_S3PT "S3PT" /* S3 Performance (sub)Table */ |
75 | #define ACPI_SIG_PCCS "PCC" /* PCC Shared Memory Region */ | 76 | #define ACPI_SIG_PCCS "PCC" /* PCC Shared Memory Region */ |
@@ -729,6 +730,23 @@ struct acpi_tpm2_control { | |||
729 | u64 response_address; | 730 | u64 response_address; |
730 | }; | 731 | }; |
731 | 732 | ||
733 | /******************************************************************************* | ||
734 | * | ||
735 | * XENV - Xen Environment Table (ACPI 6.0) | ||
736 | * Version 1 | ||
737 | * | ||
738 | * Conforms to "ACPI Specification for Xen Environment Table" 4 January 2015 | ||
739 | * | ||
740 | ******************************************************************************/ | ||
741 | |||
742 | struct acpi_table_xenv { | ||
743 | struct acpi_table_header header; /* Common ACPI table header */ | ||
744 | u64 grant_table_address; | ||
745 | u64 grant_table_size; | ||
746 | u32 event_interrupt; | ||
747 | u8 event_flags; | ||
748 | }; | ||
749 | |||
732 | /* Reset to default packing */ | 750 | /* Reset to default packing */ |
733 | 751 | ||
734 | #pragma pack() | 752 | #pragma pack() |