diff options
author | Bob Moore <robert.moore@intel.com> | 2012-02-14 02:00:53 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2012-03-22 01:44:34 -0400 |
commit | 2feec47d4c5f80b05f1650f5a24865718978eea4 (patch) | |
tree | 71fc838990113004d07186997efd83875af3a3d8 /include/acpi/actbl.h | |
parent | 384fe875efdc99f367a58920acb89c63f7465479 (diff) |
ACPICA: ACPI 5: Support for new FADT SleepStatus, SleepControl registers
Adds sleep and wake support for systems with these registers.
One new file, hwxfsleep.c
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'include/acpi/actbl.h')
-rw-r--r-- | include/acpi/actbl.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/acpi/actbl.h b/include/acpi/actbl.h index 8e1b92f6f650..8dea54665dcf 100644 --- a/include/acpi/actbl.h +++ b/include/acpi/actbl.h | |||
@@ -309,6 +309,13 @@ enum acpi_prefered_pm_profiles { | |||
309 | PM_TABLET = 8 | 309 | PM_TABLET = 8 |
310 | }; | 310 | }; |
311 | 311 | ||
312 | /* Values for sleep_status and sleep_control registers (V5 FADT) */ | ||
313 | |||
314 | #define ACPI_X_WAKE_STATUS 0x80 | ||
315 | #define ACPI_X_SLEEP_TYPE_MASK 0x1C | ||
316 | #define ACPI_X_SLEEP_TYPE_POSITION 0x02 | ||
317 | #define ACPI_X_SLEEP_ENABLE 0x20 | ||
318 | |||
312 | /* Reset to default packing */ | 319 | /* Reset to default packing */ |
313 | 320 | ||
314 | #pragma pack() | 321 | #pragma pack() |