diff options
| author | Bob Moore <robert.moore@intel.com> | 2015-04-12 23:51:08 -0400 |
|---|---|---|
| committer | Rafael J. Wysocki <rafael.j.wysocki@intel.com> | 2015-04-14 08:51:55 -0400 |
| commit | 5132f2faa50454faf9e9b2dcbdbff389f4014e57 (patch) | |
| tree | feaa56a3f0c5d4b4612faba43c17f508ff1cc797 /include/acpi | |
| parent | 64645c3fb0a70daa9d798c79e7411ae583374aa2 (diff) | |
ACPICA: iASL: Add support for MSDM ACPI table.
ACPICA commit a2c590ce9bff850e3abf4fd430cede860a3cb1fa
This is the Microsoft Data Management table.
MSDM table is not used in the Linux kernel.
Link: https://github.com/acpica/acpica/commit/a2c590ce
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/actbl2.h | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/include/acpi/actbl2.h b/include/acpi/actbl2.h index df729bf0537f..e3ab1ff8a828 100644 --- a/include/acpi/actbl2.h +++ b/include/acpi/actbl2.h | |||
| @@ -73,6 +73,7 @@ | |||
| 73 | #define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */ | 73 | #define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */ |
| 74 | #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ | 74 | #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ |
| 75 | #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ | 75 | #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ |
| 76 | #define ACPI_SIG_MSDM "MSDM" /* Microsoft Data Management Table */ | ||
| 76 | #define ACPI_SIG_MTMR "MTMR" /* MID Timer table */ | 77 | #define ACPI_SIG_MTMR "MTMR" /* MID Timer table */ |
| 77 | #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */ | 78 | #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */ |
| 78 | #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */ | 79 | #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */ |
| @@ -935,6 +936,21 @@ struct acpi_table_mchi { | |||
| 935 | 936 | ||
| 936 | /******************************************************************************* | 937 | /******************************************************************************* |
| 937 | * | 938 | * |
| 939 | * MSDM - Microsoft Data Management table | ||
| 940 | * | ||
| 941 | * Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)", | ||
| 942 | * November 29, 2011. Copyright 2011 Microsoft | ||
| 943 | * | ||
| 944 | ******************************************************************************/ | ||
| 945 | |||
| 946 | /* Basic MSDM table is only the common ACPI header */ | ||
| 947 | |||
| 948 | struct acpi_table_msdm { | ||
| 949 | struct acpi_table_header header; /* Common ACPI table header */ | ||
| 950 | }; | ||
| 951 | |||
| 952 | /******************************************************************************* | ||
| 953 | * | ||
| 938 | * MTMR - MID Timer Table | 954 | * MTMR - MID Timer Table |
| 939 | * Version 1 | 955 | * Version 1 |
| 940 | * | 956 | * |
| @@ -961,8 +977,7 @@ struct acpi_mtmr_entry { | |||
| 961 | * SLIC - Software Licensing Description Table | 977 | * SLIC - Software Licensing Description Table |
| 962 | * | 978 | * |
| 963 | * Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)", | 979 | * Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)", |
| 964 | * November 29, 2011 | 980 | * November 29, 2011. Copyright 2011 Microsoft |
| 965 | * Copyright 2011 Microsoft | ||
| 966 | * | 981 | * |
| 967 | ******************************************************************************/ | 982 | ******************************************************************************/ |
| 968 | 983 | ||
