Skip to content

Commit f083906

Browse files
Erik Kanedarafaeljw
authored andcommitted
ACPICA: iASL: add new OperationRegion subtype keyword PlatformRtMechanism
ACPICA commit 2c2eefa827bd37297f5f9ca4b263fcba829aaf3f Link: acpica/acpica@2c2eefa8 Signed-off-by: Erik Kaneda <[email protected]> Signed-off-by: Bob Moore <[email protected]> Signed-off-by: Rafael J. Wysocki <[email protected]>
1 parent d82faa0 commit f083906

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

drivers/acpi/acpica/dbdisply.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,8 @@ static acpi_adr_space_type acpi_gbl_space_id_list[] = {
5151
ACPI_ADR_SPACE_IPMI,
5252
ACPI_ADR_SPACE_GPIO,
5353
ACPI_ADR_SPACE_GSBUS,
54+
ACPI_ADR_SPACE_PLATFORM_COMM,
55+
ACPI_ADR_SPACE_PLATFORM_RT,
5456
ACPI_ADR_SPACE_DATA_TABLE,
5557
ACPI_ADR_SPACE_FIXED_HARDWARE
5658
};

drivers/acpi/acpica/utdecode.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ const char *acpi_gbl_region_types[ACPI_NUM_PREDEFINED_REGIONS] = {
7878
"IPMI", /* 0x07 */
7979
"GeneralPurposeIo", /* 0x08 */
8080
"GenericSerialBus", /* 0x09 */
81-
"PCC" /* 0x0A */
81+
"PCC", /* 0x0A */
82+
"PlatformRtMechanism" /* 0x0B */
8283
};
8384

8485
const char *acpi_ut_get_region_name(u8 space_id)

include/acpi/actypes.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -815,8 +815,9 @@ typedef u8 acpi_adr_space_type;
815815
#define ACPI_ADR_SPACE_GPIO (acpi_adr_space_type) 8
816816
#define ACPI_ADR_SPACE_GSBUS (acpi_adr_space_type) 9
817817
#define ACPI_ADR_SPACE_PLATFORM_COMM (acpi_adr_space_type) 10
818+
#define ACPI_ADR_SPACE_PLATFORM_RT (acpi_adr_space_type) 11
818819

819-
#define ACPI_NUM_PREDEFINED_REGIONS 11
820+
#define ACPI_NUM_PREDEFINED_REGIONS 12
820821

821822
/*
822823
* Special Address Spaces

0 commit comments

Comments
 (0)