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 /drivers/acpi/acpica/achware.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 'drivers/acpi/acpica/achware.h')
-rw-r--r-- | drivers/acpi/acpica/achware.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/drivers/acpi/acpica/achware.h b/drivers/acpi/acpica/achware.h index 677793e938f5..087f7106412d 100644 --- a/drivers/acpi/acpica/achware.h +++ b/drivers/acpi/acpica/achware.h | |||
@@ -81,6 +81,23 @@ acpi_status acpi_hw_register_write(u32 register_id, u32 value); | |||
81 | acpi_status acpi_hw_clear_acpi_status(void); | 81 | acpi_status acpi_hw_clear_acpi_status(void); |
82 | 82 | ||
83 | /* | 83 | /* |
84 | * hwsleep - sleep/wake support | ||
85 | */ | ||
86 | void acpi_hw_execute_SST(u32 value); | ||
87 | |||
88 | acpi_status acpi_hw_extended_sleep(u8 sleep_state); | ||
89 | |||
90 | acpi_status acpi_hw_legacy_sleep(u8 sleep_state); | ||
91 | |||
92 | acpi_status acpi_hw_extended_wake_prep(u8 sleep_state); | ||
93 | |||
94 | acpi_status acpi_hw_extended_wake(u8 sleep_state); | ||
95 | |||
96 | acpi_status acpi_hw_legacy_wake_prep(u8 sleep_state); | ||
97 | |||
98 | acpi_status acpi_hw_legacy_wake(u8 sleep_state); | ||
99 | |||
100 | /* | ||
84 | * hwvalid - Port I/O with validation | 101 | * hwvalid - Port I/O with validation |
85 | */ | 102 | */ |
86 | acpi_status acpi_hw_read_port(acpi_io_address address, u32 *value, u32 width); | 103 | acpi_status acpi_hw_read_port(acpi_io_address address, u32 *value, u32 width); |