Commit 3db20bed authored by Lin Ming's avatar Lin Ming Committed by Len Brown

ACPICA: ACPI 4.0: iASL/Disassembler - IPMI keyword support.

Adds support for the new IPMI operation region keyword.
ACPICA BZ 771, 772.

http://acpica.org/bugzilla/show_bug.cgi?id=771
http://acpica.org/bugzilla/show_bug.cgi?id=772Signed-off-by: default avatarLin Ming <ming.m.lin@intel.com>
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarLen Brown <len.brown@intel.com>
parent dbdc8f02
...@@ -183,7 +183,7 @@ ...@@ -183,7 +183,7 @@
/* Operation regions */ /* Operation regions */
#define ACPI_NUM_PREDEFINED_REGIONS 8 #define ACPI_NUM_PREDEFINED_REGIONS 9
#define ACPI_USER_REGION_BEGIN 0x80 #define ACPI_USER_REGION_BEGIN 0x80
/* Maximum space_ids for Operation Regions */ /* Maximum space_ids for Operation Regions */
......
...@@ -404,6 +404,7 @@ typedef enum { ...@@ -404,6 +404,7 @@ typedef enum {
REGION_SMBUS, REGION_SMBUS,
REGION_CMOS, REGION_CMOS,
REGION_PCI_BAR, REGION_PCI_BAR,
REGION_IPMI,
REGION_DATA_TABLE, /* Internal use only */ REGION_DATA_TABLE, /* Internal use only */
REGION_FIXED_HW = 0x7F REGION_FIXED_HW = 0x7F
} AML_REGION_TYPES; } AML_REGION_TYPES;
......
...@@ -359,6 +359,7 @@ const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = { ...@@ -359,6 +359,7 @@ const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
"SMBus", "SMBus",
"SystemCMOS", "SystemCMOS",
"PCIBARTarget", "PCIBARTarget",
"IPMI",
"DataTable" "DataTable"
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment