Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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=772



Signed-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
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -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 */
+1 −0
Original line number Original line Diff line number Diff line
@@ -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;
+1 −0
Original line number Original line Diff line number Diff line
@@ -359,6 +359,7 @@ const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
	"SMBus",
	"SMBus",
	"SystemCMOS",
	"SystemCMOS",
	"PCIBARTarget",
	"PCIBARTarget",
	"IPMI",
	"DataTable"
	"DataTable"
};
};