Commit ddcfd66c authored by Erik Schmauss's avatar Erik Schmauss Committed by Rafael J. Wysocki

ACPICA: ACPI 6.3: add Error Disconnect Recover Notification value

ACPICA commit 205ac8fc721073f1e609df963b14ef2237aeba73

Link: https://github.com/acpica/acpica/commit/205ac8fcReviewed-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarErik Schmauss <erik.schmauss@intel.com>
Signed-off-by: default avatarBob Moore <robert.moore@intel.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent e646e0a5
...@@ -430,8 +430,10 @@ static const char *acpi_gbl_generic_notify[ACPI_GENERIC_NOTIFY_MAX + 1] = { ...@@ -430,8 +430,10 @@ static const char *acpi_gbl_generic_notify[ACPI_GENERIC_NOTIFY_MAX + 1] = {
/* 0C */ "Reserved (was previously Shutdown Request)", /* 0C */ "Reserved (was previously Shutdown Request)",
/* Reserved in ACPI 6.0 */ /* Reserved in ACPI 6.0 */
/* 0D */ "System Resource Affinity Update", /* 0D */ "System Resource Affinity Update",
/* 0E */ "Heterogeneous Memory Attributes Update" /* 0E */ "Heterogeneous Memory Attributes Update",
/* ACPI 6.2 */ /* ACPI 6.2 */
/* 0F */ "Error Disconnect Recover"
/* ACPI 6.3 */
}; };
static const char *acpi_gbl_device_notify[5] = { static const char *acpi_gbl_device_notify[5] = {
...@@ -461,13 +463,13 @@ static const char *acpi_gbl_thermal_notify[5] = { ...@@ -461,13 +463,13 @@ static const char *acpi_gbl_thermal_notify[5] = {
const char *acpi_ut_get_notify_name(u32 notify_value, acpi_object_type type) const char *acpi_ut_get_notify_name(u32 notify_value, acpi_object_type type)
{ {
/* 00 - 0D are "common to all object types" (from ACPI Spec) */ /* 00 - 0F are "common to all object types" (from ACPI Spec) */
if (notify_value <= ACPI_GENERIC_NOTIFY_MAX) { if (notify_value <= ACPI_GENERIC_NOTIFY_MAX) {
return (acpi_gbl_generic_notify[notify_value]); return (acpi_gbl_generic_notify[notify_value]);
} }
/* 0E - 7F are reserved */ /* 10 - 7F are reserved */
if (notify_value <= ACPI_MAX_SYS_NOTIFY) { if (notify_value <= ACPI_MAX_SYS_NOTIFY) {
return ("Reserved"); return ("Reserved");
......
...@@ -617,8 +617,9 @@ typedef u64 acpi_integer; ...@@ -617,8 +617,9 @@ typedef u64 acpi_integer;
#define ACPI_NOTIFY_SHUTDOWN_REQUEST (u8) 0x0C #define ACPI_NOTIFY_SHUTDOWN_REQUEST (u8) 0x0C
#define ACPI_NOTIFY_AFFINITY_UPDATE (u8) 0x0D #define ACPI_NOTIFY_AFFINITY_UPDATE (u8) 0x0D
#define ACPI_NOTIFY_MEMORY_UPDATE (u8) 0x0E #define ACPI_NOTIFY_MEMORY_UPDATE (u8) 0x0E
#define ACPI_NOTIFY_DISCONNECT_RECOVER (u8) 0x0F
#define ACPI_GENERIC_NOTIFY_MAX 0x0E #define ACPI_GENERIC_NOTIFY_MAX 0x0F
#define ACPI_SPECIFIC_NOTIFY_MAX 0x84 #define ACPI_SPECIFIC_NOTIFY_MAX 0x84
/* /*
......
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