提交 5132f2fa 编写于 作者: B Bob Moore 提交者: Rafael J. Wysocki

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/a2c590ceSigned-off-by: NBob Moore <robert.moore@intel.com>
Signed-off-by: NLv Zheng <lv.zheng@intel.com>
Signed-off-by: NRafael J. Wysocki <rafael.j.wysocki@intel.com>
上级 64645c3f
...@@ -73,6 +73,7 @@ ...@@ -73,6 +73,7 @@
#define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */ #define ACPI_SIG_LPIT "LPIT" /* Low Power Idle Table */
#define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */
#define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */
#define ACPI_SIG_MSDM "MSDM" /* Microsoft Data Management Table */
#define ACPI_SIG_MTMR "MTMR" /* MID Timer table */ #define ACPI_SIG_MTMR "MTMR" /* MID Timer table */
#define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */ #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */
#define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */ #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */
...@@ -933,6 +934,21 @@ struct acpi_table_mchi { ...@@ -933,6 +934,21 @@ struct acpi_table_mchi {
u8 pci_function; u8 pci_function;
}; };
/*******************************************************************************
*
* MSDM - Microsoft Data Management table
*
* Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)",
* November 29, 2011. Copyright 2011 Microsoft
*
******************************************************************************/
/* Basic MSDM table is only the common ACPI header */
struct acpi_table_msdm {
struct acpi_table_header header; /* Common ACPI table header */
};
/******************************************************************************* /*******************************************************************************
* *
* MTMR - MID Timer Table * MTMR - MID Timer Table
...@@ -961,8 +977,7 @@ struct acpi_mtmr_entry { ...@@ -961,8 +977,7 @@ struct acpi_mtmr_entry {
* SLIC - Software Licensing Description Table * SLIC - Software Licensing Description Table
* *
* Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)", * Conforms to "Microsoft Software Licensing Tables (SLIC and MSDM)",
* November 29, 2011 * November 29, 2011. Copyright 2011 Microsoft
* Copyright 2011 Microsoft
* *
******************************************************************************/ ******************************************************************************/
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册