diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/acpi/actypes.h | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/include/acpi/actypes.h b/include/acpi/actypes.h index 64f838beaabf..ad77c613c743 100644 --- a/include/acpi/actypes.h +++ b/include/acpi/actypes.h | |||
@@ -712,8 +712,17 @@ typedef u8 acpi_adr_space_type; | |||
712 | #define ACPI_ADR_SPACE_CMOS (acpi_adr_space_type) 5 | 712 | #define ACPI_ADR_SPACE_CMOS (acpi_adr_space_type) 5 |
713 | #define ACPI_ADR_SPACE_PCI_BAR_TARGET (acpi_adr_space_type) 6 | 713 | #define ACPI_ADR_SPACE_PCI_BAR_TARGET (acpi_adr_space_type) 6 |
714 | #define ACPI_ADR_SPACE_IPMI (acpi_adr_space_type) 7 | 714 | #define ACPI_ADR_SPACE_IPMI (acpi_adr_space_type) 7 |
715 | #define ACPI_ADR_SPACE_DATA_TABLE (acpi_adr_space_type) 8 | 715 | |
716 | #define ACPI_ADR_SPACE_FIXED_HARDWARE (acpi_adr_space_type) 127 | 716 | /* |
717 | * Special region types | ||
718 | * | ||
719 | * Note: A Data Table region is a special type of operation region | ||
720 | * that has its own AML opcode. However, internally, the AML | ||
721 | * interpreter simply creates an operation region with an an address | ||
722 | * space type of ACPI_ADR_SPACE_DATA_TABLE. | ||
723 | */ | ||
724 | #define ACPI_ADR_SPACE_DATA_TABLE (acpi_adr_space_type) 0x7E /* Internal to ACPICA only */ | ||
725 | #define ACPI_ADR_SPACE_FIXED_HARDWARE (acpi_adr_space_type) 0x7F | ||
717 | 726 | ||
718 | /* | 727 | /* |
719 | * bit_register IDs | 728 | * bit_register IDs |