From 7c061c9e57d723b4df39e57b07d5c47403c96439 Mon Sep 17 00:00:00 2001 From: Lv Zheng Date: Fri, 8 Mar 2013 09:20:45 +0000 Subject: [PATCH] --- yaml --- r: 367563 b: refs/heads/master c: 98b5c9934ccdf6c04413e0d03c1ddeb32592d8c6 h: refs/heads/master i: 367561: 876b998ef3b7ef517d2f4d86e13ffa3035c58fc5 367559: c02d4dfe9bcce046f35c6ea4d1979f1cfa98e985 v: v3 --- [refs] | 2 +- trunk/include/acpi/actbl2.h | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 1 deletion(-) diff --git a/[refs] b/[refs] index 8ba15d6416ef..217178aa8790 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 25c0330aa6bba60e36ac460d12ef954332852426 +refs/heads/master: 98b5c9934ccdf6c04413e0d03c1ddeb32592d8c6 diff --git a/trunk/include/acpi/actbl2.h b/trunk/include/acpi/actbl2.h index 3f1b0a474ae6..ffaac0e7e0c6 100644 --- a/trunk/include/acpi/actbl2.h +++ b/trunk/include/acpi/actbl2.h @@ -72,6 +72,7 @@ #define ACPI_SIG_IVRS "IVRS" /* I/O Virtualization Reporting Structure */ #define ACPI_SIG_MCFG "MCFG" /* PCI Memory Mapped Configuration table */ #define ACPI_SIG_MCHI "MCHI" /* Management Controller Host Interface table */ +#define ACPI_SIG_MTMR "MTMR" /* MID Timer table */ #define ACPI_SIG_SLIC "SLIC" /* Software Licensing Description Table */ #define ACPI_SIG_SPCR "SPCR" /* Serial Port Console Redirection table */ #define ACPI_SIG_SPMI "SPMI" /* Server Platform Management Interface table */ @@ -851,6 +852,29 @@ struct acpi_table_mchi { u8 pci_function; }; +/******************************************************************************* + * + * MTMR - MID Timer Table + * Version 1 + * + * Conforms to "Simple Firmware Interface Specification", + * Draft 0.8.2, Oct 19, 2010 + * NOTE: The ACPI MTMR is equivalent to the SFI MTMR table. + * + ******************************************************************************/ + +struct acpi_table_mtmr { + struct acpi_table_header header; /* Common ACPI table header */ +}; + +/* MTMR entry */ + +struct acpi_mtmr_entry { + struct acpi_generic_address physical_address; + u32 frequency; + u32 irq; +}; + /******************************************************************************* * * SLIC - Software Licensing Description Table