Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * sleep.c - ACPI sleep support. |
| 3 | * |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 4 | * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * Copyright (c) 2004 David Shaohua Li <shaohua.li@intel.com> |
| 6 | * Copyright (c) 2000-2003 Patrick Mochel |
| 7 | * Copyright (c) 2003 Open Source Development Lab |
| 8 | * |
| 9 | * This file is released under the GPLv2. |
| 10 | * |
| 11 | */ |
| 12 | |
| 13 | #include <linux/delay.h> |
| 14 | #include <linux/irq.h> |
| 15 | #include <linux/dmi.h> |
| 16 | #include <linux/device.h> |
| 17 | #include <linux/suspend.h> |
Zhao Yakui | e49f711 | 2008-08-12 10:20:22 +0800 | [diff] [blame] | 18 | #include <linux/reboot.h> |
H. Peter Anvin | d1ee433 | 2011-02-14 15:42:46 -0800 | [diff] [blame] | 19 | #include <linux/acpi.h> |
Lin Ming | a2ef5c4 | 2012-03-21 10:58:46 +0800 | [diff] [blame] | 20 | #include <linux/module.h> |
Lin Ming | b24e509 | 2012-03-27 15:43:25 +0800 | [diff] [blame] | 21 | #include <linux/pm_runtime.h> |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 22 | |
| 23 | #include <asm/io.h> |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <acpi/acpi_bus.h> |
| 26 | #include <acpi/acpi_drivers.h> |
Bjorn Helgaas | e60cc7a | 2009-03-13 12:08:26 -0600 | [diff] [blame] | 27 | |
| 28 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include "sleep.h" |
| 30 | |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 31 | u8 wake_sleep_flags = ACPI_NO_OPTIONAL_METHODS; |
Lin Ming | a2ef5c4 | 2012-03-21 10:58:46 +0800 | [diff] [blame] | 32 | static unsigned int gts, bfs; |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 33 | static int set_param_wake_flag(const char *val, struct kernel_param *kp) |
| 34 | { |
| 35 | int ret = param_set_int(val, kp); |
| 36 | |
| 37 | if (ret) |
| 38 | return ret; |
| 39 | |
| 40 | if (kp->arg == (const char *)>s) { |
| 41 | if (gts) |
| 42 | wake_sleep_flags |= ACPI_EXECUTE_GTS; |
| 43 | else |
| 44 | wake_sleep_flags &= ~ACPI_EXECUTE_GTS; |
| 45 | } |
| 46 | if (kp->arg == (const char *)&bfs) { |
| 47 | if (bfs) |
| 48 | wake_sleep_flags |= ACPI_EXECUTE_BFS; |
| 49 | else |
| 50 | wake_sleep_flags &= ~ACPI_EXECUTE_BFS; |
| 51 | } |
| 52 | return ret; |
| 53 | } |
| 54 | module_param_call(gts, set_param_wake_flag, param_get_int, >s, 0644); |
| 55 | module_param_call(bfs, set_param_wake_flag, param_get_int, &bfs, 0644); |
Lin Ming | a2ef5c4 | 2012-03-21 10:58:46 +0800 | [diff] [blame] | 56 | MODULE_PARM_DESC(gts, "Enable evaluation of _GTS on suspend."); |
| 57 | MODULE_PARM_DESC(bfs, "Enable evaluation of _BFS on resume".); |
| 58 | |
Stephen Hemminger | 01eac60 | 2010-10-18 18:47:25 -0700 | [diff] [blame] | 59 | static u8 sleep_states[ACPI_S_STATE_COUNT]; |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame^] | 60 | static bool pwr_btn_event_pending; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
Zhao Yakui | e49f711 | 2008-08-12 10:20:22 +0800 | [diff] [blame] | 62 | static void acpi_sleep_tts_switch(u32 acpi_state) |
| 63 | { |
| 64 | union acpi_object in_arg = { ACPI_TYPE_INTEGER }; |
| 65 | struct acpi_object_list arg_list = { 1, &in_arg }; |
| 66 | acpi_status status = AE_OK; |
| 67 | |
| 68 | in_arg.integer.value = acpi_state; |
| 69 | status = acpi_evaluate_object(NULL, "\\_TTS", &arg_list, NULL); |
| 70 | if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) { |
| 71 | /* |
| 72 | * OS can't evaluate the _TTS object correctly. Some warning |
| 73 | * message will be printed. But it won't break anything. |
| 74 | */ |
| 75 | printk(KERN_NOTICE "Failure in evaluating _TTS object\n"); |
| 76 | } |
| 77 | } |
| 78 | |
| 79 | static int tts_notify_reboot(struct notifier_block *this, |
| 80 | unsigned long code, void *x) |
| 81 | { |
| 82 | acpi_sleep_tts_switch(ACPI_STATE_S5); |
| 83 | return NOTIFY_DONE; |
| 84 | } |
| 85 | |
| 86 | static struct notifier_block tts_notifier = { |
| 87 | .notifier_call = tts_notify_reboot, |
| 88 | .next = NULL, |
| 89 | .priority = 0, |
| 90 | }; |
| 91 | |
Rafael J. Wysocki | c9b6c8f | 2008-01-08 00:10:57 +0100 | [diff] [blame] | 92 | static int acpi_sleep_prepare(u32 acpi_state) |
Alexey Starikovskiy | 2f3f2226 | 2007-09-24 14:33:21 +0200 | [diff] [blame] | 93 | { |
| 94 | #ifdef CONFIG_ACPI_SLEEP |
| 95 | /* do we have a wakeup address for S2 and S3? */ |
| 96 | if (acpi_state == ACPI_STATE_S3) { |
| 97 | if (!acpi_wakeup_address) { |
| 98 | return -EFAULT; |
| 99 | } |
H. Peter Anvin | 4b4f728 | 2008-06-24 23:03:48 +0200 | [diff] [blame] | 100 | acpi_set_firmware_waking_vector( |
| 101 | (acpi_physical_address)acpi_wakeup_address); |
Alexey Starikovskiy | 2f3f2226 | 2007-09-24 14:33:21 +0200 | [diff] [blame] | 102 | |
| 103 | } |
| 104 | ACPI_FLUSH_CPU_CACHE(); |
Alexey Starikovskiy | 2f3f2226 | 2007-09-24 14:33:21 +0200 | [diff] [blame] | 105 | #endif |
Rafael J. Wysocki | c9b6c8f | 2008-01-08 00:10:57 +0100 | [diff] [blame] | 106 | printk(KERN_INFO PREFIX "Preparing to enter system sleep state S%d\n", |
| 107 | acpi_state); |
Rafael J. Wysocki | 78f5f02 | 2010-07-06 22:09:38 -0400 | [diff] [blame] | 108 | acpi_enable_wakeup_devices(acpi_state); |
Alexey Starikovskiy | 2f3f2226 | 2007-09-24 14:33:21 +0200 | [diff] [blame] | 109 | acpi_enter_sleep_state_prep(acpi_state); |
| 110 | return 0; |
| 111 | } |
| 112 | |
Rafael J. Wysocki | 5d1e072 | 2008-10-22 14:58:43 -0400 | [diff] [blame] | 113 | #ifdef CONFIG_ACPI_SLEEP |
Jan Beulich | 091aad6 | 2010-12-07 14:52:25 +0000 | [diff] [blame] | 114 | static u32 acpi_target_sleep_state = ACPI_STATE_S0; |
| 115 | |
Zhang Rui | d7f0eea | 2009-12-30 15:36:42 +0800 | [diff] [blame] | 116 | /* |
Rafael J. Wysocki | 72ad5d7 | 2010-07-23 22:59:09 +0200 | [diff] [blame] | 117 | * The ACPI specification wants us to save NVS memory regions during hibernation |
| 118 | * and to restore them during the subsequent resume. Windows does that also for |
| 119 | * suspend to RAM. However, it is known that this mechanism does not work on |
| 120 | * all machines, so we allow the user to disable it with the help of the |
| 121 | * 'acpi_sleep=nonvs' kernel command line option. |
| 122 | */ |
| 123 | static bool nvs_nosave; |
| 124 | |
| 125 | void __init acpi_nvs_nosave(void) |
| 126 | { |
| 127 | nvs_nosave = true; |
| 128 | } |
| 129 | |
| 130 | /* |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 131 | * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the |
| 132 | * user to request that behavior by using the 'acpi_old_suspend_ordering' |
| 133 | * kernel command line option that causes the following variable to be set. |
| 134 | */ |
| 135 | static bool old_suspend_ordering; |
| 136 | |
| 137 | void __init acpi_old_suspend_ordering(void) |
| 138 | { |
| 139 | old_suspend_ordering = true; |
| 140 | } |
| 141 | |
| 142 | /** |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 143 | * acpi_pm_freeze - Disable the GPEs and suspend EC transactions. |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 144 | */ |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 145 | static int acpi_pm_freeze(void) |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 146 | { |
Lin Ming | 3d97e42 | 2008-12-16 16:57:46 +0800 | [diff] [blame] | 147 | acpi_disable_all_gpes(); |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 148 | acpi_os_wait_events_complete(NULL); |
Rafael J. Wysocki | fe95568 | 2010-04-09 01:40:38 +0200 | [diff] [blame] | 149 | acpi_ec_block_transactions(); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 150 | return 0; |
| 151 | } |
| 152 | |
| 153 | /** |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 154 | * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS. |
| 155 | */ |
| 156 | static int acpi_pm_pre_suspend(void) |
| 157 | { |
| 158 | acpi_pm_freeze(); |
Jiri Slaby | 26fcaf6 | 2011-01-07 01:42:31 +0100 | [diff] [blame] | 159 | return suspend_nvs_save(); |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | /** |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 163 | * __acpi_pm_prepare - Prepare the platform to enter the target state. |
| 164 | * |
| 165 | * If necessary, set the firmware waking vector and do arch-specific |
| 166 | * nastiness to get the wakeup code to the waking vector. |
| 167 | */ |
| 168 | static int __acpi_pm_prepare(void) |
| 169 | { |
| 170 | int error = acpi_sleep_prepare(acpi_target_sleep_state); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 171 | if (error) |
| 172 | acpi_target_sleep_state = ACPI_STATE_S0; |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 173 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 174 | return error; |
| 175 | } |
| 176 | |
| 177 | /** |
| 178 | * acpi_pm_prepare - Prepare the platform to enter the target sleep |
| 179 | * state and disable the GPEs. |
| 180 | */ |
| 181 | static int acpi_pm_prepare(void) |
| 182 | { |
| 183 | int error = __acpi_pm_prepare(); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 184 | if (!error) |
Jiri Slaby | 26fcaf6 | 2011-01-07 01:42:31 +0100 | [diff] [blame] | 185 | error = acpi_pm_pre_suspend(); |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 186 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 187 | return error; |
| 188 | } |
| 189 | |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame^] | 190 | static int find_powerf_dev(struct device *dev, void *data) |
| 191 | { |
| 192 | struct acpi_device *device = to_acpi_device(dev); |
| 193 | const char *hid = acpi_device_hid(device); |
| 194 | |
| 195 | return !strcmp(hid, ACPI_BUTTON_HID_POWERF); |
| 196 | } |
| 197 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 198 | /** |
| 199 | * acpi_pm_finish - Instruct the platform to leave a sleep state. |
| 200 | * |
| 201 | * This is called after we wake back up (or if entering the sleep state |
| 202 | * failed). |
| 203 | */ |
| 204 | static void acpi_pm_finish(void) |
| 205 | { |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame^] | 206 | struct device *pwr_btn_dev; |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 207 | u32 acpi_state = acpi_target_sleep_state; |
| 208 | |
Len Brown | 42de553 | 2010-06-12 01:15:40 -0400 | [diff] [blame] | 209 | acpi_ec_unblock_transactions(); |
Rafael J. Wysocki | d551d81 | 2011-01-19 22:27:55 +0100 | [diff] [blame] | 210 | suspend_nvs_free(); |
Matthew Garrett | 2a6b697 | 2010-05-28 16:32:15 -0400 | [diff] [blame] | 211 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 212 | if (acpi_state == ACPI_STATE_S0) |
| 213 | return; |
| 214 | |
| 215 | printk(KERN_INFO PREFIX "Waking up from system sleep state S%d\n", |
| 216 | acpi_state); |
Rafael J. Wysocki | 78f5f02 | 2010-07-06 22:09:38 -0400 | [diff] [blame] | 217 | acpi_disable_wakeup_devices(acpi_state); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 218 | acpi_leave_sleep_state(acpi_state); |
| 219 | |
| 220 | /* reset firmware waking vector */ |
| 221 | acpi_set_firmware_waking_vector((acpi_physical_address) 0); |
| 222 | |
| 223 | acpi_target_sleep_state = ACPI_STATE_S0; |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame^] | 224 | |
| 225 | /* If we were woken with the fixed power button, provide a small |
| 226 | * hint to userspace in the form of a wakeup event on the fixed power |
| 227 | * button device (if it can be found). |
| 228 | * |
| 229 | * We delay the event generation til now, as the PM layer requires |
| 230 | * timekeeping to be running before we generate events. */ |
| 231 | if (!pwr_btn_event_pending) |
| 232 | return; |
| 233 | |
| 234 | pwr_btn_event_pending = false; |
| 235 | pwr_btn_dev = bus_find_device(&acpi_bus_type, NULL, NULL, |
| 236 | find_powerf_dev); |
| 237 | if (pwr_btn_dev) { |
| 238 | pm_wakeup_event(pwr_btn_dev, 0); |
| 239 | put_device(pwr_btn_dev); |
| 240 | } |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 241 | } |
| 242 | |
| 243 | /** |
| 244 | * acpi_pm_end - Finish up suspend sequence. |
| 245 | */ |
| 246 | static void acpi_pm_end(void) |
| 247 | { |
| 248 | /* |
| 249 | * This is necessary in case acpi_pm_finish() is not called during a |
| 250 | * failing transition to a sleep state. |
| 251 | */ |
| 252 | acpi_target_sleep_state = ACPI_STATE_S0; |
Zhao Yakui | e49f711 | 2008-08-12 10:20:22 +0800 | [diff] [blame] | 253 | acpi_sleep_tts_switch(acpi_target_sleep_state); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 254 | } |
Rafael J. Wysocki | 92daa7b | 2008-10-23 21:46:43 +0200 | [diff] [blame] | 255 | #else /* !CONFIG_ACPI_SLEEP */ |
| 256 | #define acpi_target_sleep_state ACPI_STATE_S0 |
Rafael J. Wysocki | 5d1e072 | 2008-10-22 14:58:43 -0400 | [diff] [blame] | 257 | #endif /* CONFIG_ACPI_SLEEP */ |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 258 | |
| 259 | #ifdef CONFIG_SUSPEND |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | static u32 acpi_suspend_states[] = { |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 261 | [PM_SUSPEND_ON] = ACPI_STATE_S0, |
| 262 | [PM_SUSPEND_STANDBY] = ACPI_STATE_S1, |
| 263 | [PM_SUSPEND_MEM] = ACPI_STATE_S3, |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 264 | [PM_SUSPEND_MAX] = ACPI_STATE_S5 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 265 | }; |
| 266 | |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 267 | /** |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 268 | * acpi_suspend_begin - Set the target system sleep state to the state |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 269 | * associated with given @pm_state, if supported. |
| 270 | */ |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 271 | static int acpi_suspend_begin(suspend_state_t pm_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 272 | { |
| 273 | u32 acpi_state = acpi_suspend_states[pm_state]; |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 274 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | |
Rafael J. Wysocki | 72ad5d7 | 2010-07-23 22:59:09 +0200 | [diff] [blame] | 276 | error = nvs_nosave ? 0 : suspend_nvs_alloc(); |
Matthew Garrett | 2a6b697 | 2010-05-28 16:32:15 -0400 | [diff] [blame] | 277 | if (error) |
| 278 | return error; |
| 279 | |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 280 | if (sleep_states[acpi_state]) { |
| 281 | acpi_target_sleep_state = acpi_state; |
Zhao Yakui | e49f711 | 2008-08-12 10:20:22 +0800 | [diff] [blame] | 282 | acpi_sleep_tts_switch(acpi_target_sleep_state); |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 283 | } else { |
| 284 | printk(KERN_ERR "ACPI does not support this state: %d\n", |
| 285 | pm_state); |
| 286 | error = -ENOSYS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 287 | } |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 288 | return error; |
| 289 | } |
| 290 | |
| 291 | /** |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 292 | * acpi_suspend_enter - Actually enter a sleep state. |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 293 | * @pm_state: ignored |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | * |
Rafael J. Wysocki | 50ad147 | 2007-07-24 11:58:39 +0200 | [diff] [blame] | 295 | * Flush caches and go to sleep. For STR we have to call arch-specific |
| 296 | * assembly, which in turn call acpi_enter_sleep_state(). |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 297 | * It's unfortunate, but it works. Please fix if you're feeling frisky. |
| 298 | */ |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 299 | static int acpi_suspend_enter(suspend_state_t pm_state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | { |
| 301 | acpi_status status = AE_OK; |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 302 | u32 acpi_state = acpi_target_sleep_state; |
Rafael J. Wysocki | 979f11b | 2011-02-08 23:42:09 +0100 | [diff] [blame] | 303 | int error; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 304 | |
| 305 | ACPI_FLUSH_CPU_CACHE(); |
| 306 | |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 307 | switch (acpi_state) { |
| 308 | case ACPI_STATE_S1: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | barrier(); |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 310 | status = acpi_enter_sleep_state(acpi_state, wake_sleep_flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | break; |
| 312 | |
Rafael J. Wysocki | e9b3aba | 2007-07-17 22:40:06 +0200 | [diff] [blame] | 313 | case ACPI_STATE_S3: |
Rafael J. Wysocki | f1a2003 | 2011-02-08 23:42:22 +0100 | [diff] [blame] | 314 | error = acpi_suspend_lowlevel(); |
Rafael J. Wysocki | 979f11b | 2011-02-08 23:42:09 +0100 | [diff] [blame] | 315 | if (error) |
| 316 | return error; |
Rafael J. Wysocki | 7a63f08 | 2011-02-08 23:41:57 +0100 | [diff] [blame] | 317 | pr_info(PREFIX "Low-level resume complete\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 318 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | } |
Arnaud Patard | 872d83d | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 320 | |
Matthew Garrett | b6dacf6 | 2010-05-11 13:49:25 -0400 | [diff] [blame] | 321 | /* This violates the spec but is required for bug compatibility. */ |
| 322 | acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE, 1); |
Rafael J. Wysocki | 65df784 | 2008-11-26 17:53:13 -0500 | [diff] [blame] | 323 | |
Rafael J. Wysocki | c95d47a | 2008-01-08 00:05:21 +0100 | [diff] [blame] | 324 | /* Reprogram control registers and execute _BFS */ |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 325 | acpi_leave_sleep_state_prep(acpi_state, wake_sleep_flags); |
Rafael J. Wysocki | c95d47a | 2008-01-08 00:05:21 +0100 | [diff] [blame] | 326 | |
Pavel Machek | 23b168d | 2008-02-05 19:27:12 +0100 | [diff] [blame] | 327 | /* ACPI 3.0 specs (P62) says that it's the responsibility |
Arnaud Patard | 872d83d | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 328 | * of the OSPM to clear the status bit [ implying that the |
| 329 | * POWER_BUTTON event should not reach userspace ] |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame^] | 330 | * |
| 331 | * However, we do generate a small hint for userspace in the form of |
| 332 | * a wakeup event. We flag this condition for now and generate the |
| 333 | * event later, as we're currently too early in resume to be able to |
| 334 | * generate wakeup events. |
Arnaud Patard | 872d83d | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 335 | */ |
Daniel Drake | c10d7a1 | 2012-05-10 00:08:43 +0100 | [diff] [blame^] | 336 | if (ACPI_SUCCESS(status) && (acpi_state == ACPI_STATE_S3)) { |
| 337 | acpi_event_status pwr_btn_status; |
| 338 | |
| 339 | acpi_get_event_status(ACPI_EVENT_POWER_BUTTON, &pwr_btn_status); |
| 340 | |
| 341 | if (pwr_btn_status & ACPI_EVENT_FLAG_SET) { |
| 342 | acpi_clear_event(ACPI_EVENT_POWER_BUTTON); |
| 343 | /* Flag for later */ |
| 344 | pwr_btn_event_pending = true; |
| 345 | } |
| 346 | } |
Arnaud Patard | 872d83d | 2006-04-27 05:25:00 -0400 | [diff] [blame] | 347 | |
Shaohua Li | a3627f6 | 2007-06-20 09:17:58 +0800 | [diff] [blame] | 348 | /* |
| 349 | * Disable and clear GPE status before interrupt is enabled. Some GPEs |
| 350 | * (like wakeup GPE) haven't handler, this can avoid such GPE misfire. |
| 351 | * acpi_leave_sleep_state will reenable specific GPEs later |
| 352 | */ |
Lin Ming | 3d97e42 | 2008-12-16 16:57:46 +0800 | [diff] [blame] | 353 | acpi_disable_all_gpes(); |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 354 | /* Allow EC transactions to happen. */ |
Rafael J. Wysocki | fe95568 | 2010-04-09 01:40:38 +0200 | [diff] [blame] | 355 | acpi_ec_unblock_transactions_early(); |
Shaohua Li | a3627f6 | 2007-06-20 09:17:58 +0800 | [diff] [blame] | 356 | |
Matthew Garrett | 2a6b697 | 2010-05-28 16:32:15 -0400 | [diff] [blame] | 357 | suspend_nvs_restore(); |
| 358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 359 | return ACPI_SUCCESS(status) ? 0 : -EFAULT; |
| 360 | } |
| 361 | |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 362 | static int acpi_suspend_state_valid(suspend_state_t pm_state) |
Shaohua Li | eb9289e | 2005-10-30 15:00:01 -0800 | [diff] [blame] | 363 | { |
Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 364 | u32 acpi_state; |
Shaohua Li | eb9289e | 2005-10-30 15:00:01 -0800 | [diff] [blame] | 365 | |
Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 366 | switch (pm_state) { |
| 367 | case PM_SUSPEND_ON: |
| 368 | case PM_SUSPEND_STANDBY: |
| 369 | case PM_SUSPEND_MEM: |
| 370 | acpi_state = acpi_suspend_states[pm_state]; |
| 371 | |
| 372 | return sleep_states[acpi_state]; |
| 373 | default: |
| 374 | return 0; |
| 375 | } |
Shaohua Li | eb9289e | 2005-10-30 15:00:01 -0800 | [diff] [blame] | 376 | } |
| 377 | |
Lionel Debroux | 2f55ac0 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 378 | static const struct platform_suspend_ops acpi_suspend_ops = { |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 379 | .valid = acpi_suspend_state_valid, |
| 380 | .begin = acpi_suspend_begin, |
Rafael J. Wysocki | 6a7c7ea | 2009-04-19 20:08:42 +0200 | [diff] [blame] | 381 | .prepare_late = acpi_pm_prepare, |
Len Brown | 2c6e33c | 2008-04-23 18:02:52 -0400 | [diff] [blame] | 382 | .enter = acpi_suspend_enter, |
Rafael J. Wysocki | 618d7fd | 2010-07-02 00:14:57 +0200 | [diff] [blame] | 383 | .wake = acpi_pm_finish, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 384 | .end = acpi_pm_end, |
| 385 | }; |
| 386 | |
| 387 | /** |
| 388 | * acpi_suspend_begin_old - Set the target system sleep state to the |
| 389 | * state associated with given @pm_state, if supported, and |
| 390 | * execute the _PTS control method. This function is used if the |
| 391 | * pre-ACPI 2.0 suspend ordering has been requested. |
| 392 | */ |
| 393 | static int acpi_suspend_begin_old(suspend_state_t pm_state) |
| 394 | { |
| 395 | int error = acpi_suspend_begin(pm_state); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 396 | if (!error) |
| 397 | error = __acpi_pm_prepare(); |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 398 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 399 | return error; |
| 400 | } |
| 401 | |
| 402 | /* |
| 403 | * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has |
| 404 | * been requested. |
| 405 | */ |
Lionel Debroux | 2f55ac0 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 406 | static const struct platform_suspend_ops acpi_suspend_ops_old = { |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 407 | .valid = acpi_suspend_state_valid, |
| 408 | .begin = acpi_suspend_begin_old, |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 409 | .prepare_late = acpi_pm_pre_suspend, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 410 | .enter = acpi_suspend_enter, |
Rafael J. Wysocki | 618d7fd | 2010-07-02 00:14:57 +0200 | [diff] [blame] | 411 | .wake = acpi_pm_finish, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 412 | .end = acpi_pm_end, |
| 413 | .recover = acpi_pm_finish, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 414 | }; |
Carlos Corbacho | e41fb7c | 2008-07-23 21:28:43 -0700 | [diff] [blame] | 415 | |
| 416 | static int __init init_old_suspend_ordering(const struct dmi_system_id *d) |
| 417 | { |
| 418 | old_suspend_ordering = true; |
| 419 | return 0; |
| 420 | } |
| 421 | |
Rafael J. Wysocki | 5399864 | 2010-09-24 16:46:14 -0400 | [diff] [blame] | 422 | static int __init init_nvs_nosave(const struct dmi_system_id *d) |
| 423 | { |
| 424 | acpi_nvs_nosave(); |
| 425 | return 0; |
| 426 | } |
| 427 | |
Carlos Corbacho | e41fb7c | 2008-07-23 21:28:43 -0700 | [diff] [blame] | 428 | static struct dmi_system_id __initdata acpisleep_dmi_table[] = { |
| 429 | { |
| 430 | .callback = init_old_suspend_ordering, |
| 431 | .ident = "Abit KN9 (nForce4 variant)", |
| 432 | .matches = { |
| 433 | DMI_MATCH(DMI_BOARD_VENDOR, "http://www.abit.com.tw/"), |
| 434 | DMI_MATCH(DMI_BOARD_NAME, "KN9 Series(NF-CK804)"), |
| 435 | }, |
| 436 | }, |
Rafael J. Wysocki | 4fb507b | 2008-10-14 22:54:06 +0200 | [diff] [blame] | 437 | { |
| 438 | .callback = init_old_suspend_ordering, |
| 439 | .ident = "HP xw4600 Workstation", |
| 440 | .matches = { |
| 441 | DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"), |
| 442 | DMI_MATCH(DMI_PRODUCT_NAME, "HP xw4600 Workstation"), |
| 443 | }, |
| 444 | }, |
Rafael J. Wysocki | 65df784 | 2008-11-26 17:53:13 -0500 | [diff] [blame] | 445 | { |
Andy Whitcroft | a140449 | 2009-02-11 18:11:22 +0000 | [diff] [blame] | 446 | .callback = init_old_suspend_ordering, |
| 447 | .ident = "Asus Pundit P1-AH2 (M2N8L motherboard)", |
| 448 | .matches = { |
| 449 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTek Computer INC."), |
| 450 | DMI_MATCH(DMI_BOARD_NAME, "M2N8L"), |
| 451 | }, |
| 452 | }, |
Zhang Rui | 45e7798 | 2009-03-15 22:13:44 -0400 | [diff] [blame] | 453 | { |
Zhao Yakui | 2a9ef8e | 2009-03-18 16:36:25 +0800 | [diff] [blame] | 454 | .callback = init_old_suspend_ordering, |
| 455 | .ident = "Panasonic CF51-2L", |
| 456 | .matches = { |
| 457 | DMI_MATCH(DMI_BOARD_VENDOR, |
| 458 | "Matsushita Electric Industrial Co.,Ltd."), |
| 459 | DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"), |
| 460 | }, |
| 461 | }, |
Rafael J. Wysocki | 5399864 | 2010-09-24 16:46:14 -0400 | [diff] [blame] | 462 | { |
| 463 | .callback = init_nvs_nosave, |
Dave Jones | d11c78e | 2011-10-19 23:15:11 +0200 | [diff] [blame] | 464 | .ident = "Sony Vaio VGN-FW21E", |
| 465 | .matches = { |
| 466 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 467 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW21E"), |
| 468 | }, |
| 469 | }, |
| 470 | { |
| 471 | .callback = init_nvs_nosave, |
Dave Jones | ddf6ce4 | 2011-11-03 00:58:59 +0100 | [diff] [blame] | 472 | .ident = "Sony Vaio VPCEB17FX", |
| 473 | .matches = { |
| 474 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 475 | DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB17FX"), |
| 476 | }, |
| 477 | }, |
| 478 | { |
| 479 | .callback = init_nvs_nosave, |
Rafael J. Wysocki | 5399864 | 2010-09-24 16:46:14 -0400 | [diff] [blame] | 480 | .ident = "Sony Vaio VGN-SR11M", |
| 481 | .matches = { |
| 482 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 483 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR11M"), |
| 484 | }, |
| 485 | }, |
| 486 | { |
| 487 | .callback = init_nvs_nosave, |
| 488 | .ident = "Everex StepNote Series", |
| 489 | .matches = { |
| 490 | DMI_MATCH(DMI_SYS_VENDOR, "Everex Systems, Inc."), |
| 491 | DMI_MATCH(DMI_PRODUCT_NAME, "Everex StepNote Series"), |
| 492 | }, |
| 493 | }, |
Rafael J. Wysocki | af48931 | 2010-10-17 21:01:21 +0200 | [diff] [blame] | 494 | { |
| 495 | .callback = init_nvs_nosave, |
| 496 | .ident = "Sony Vaio VPCEB1Z1E", |
| 497 | .matches = { |
| 498 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 499 | DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1Z1E"), |
| 500 | }, |
| 501 | }, |
Rafael J. Wysocki | 291a73c | 2010-12-12 21:10:42 +0100 | [diff] [blame] | 502 | { |
| 503 | .callback = init_nvs_nosave, |
| 504 | .ident = "Sony Vaio VGN-NW130D", |
| 505 | .matches = { |
| 506 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 507 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NW130D"), |
| 508 | }, |
| 509 | }, |
Rafael J. Wysocki | 7b33070 | 2011-01-06 23:37:01 +0100 | [diff] [blame] | 510 | { |
| 511 | .callback = init_nvs_nosave, |
Lan Tianyu | 93f7708 | 2012-01-21 09:23:56 +0800 | [diff] [blame] | 512 | .ident = "Sony Vaio VPCCW29FX", |
| 513 | .matches = { |
| 514 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 515 | DMI_MATCH(DMI_PRODUCT_NAME, "VPCCW29FX"), |
| 516 | }, |
| 517 | }, |
| 518 | { |
| 519 | .callback = init_nvs_nosave, |
Rafael J. Wysocki | 7b33070 | 2011-01-06 23:37:01 +0100 | [diff] [blame] | 520 | .ident = "Averatec AV1020-ED2", |
| 521 | .matches = { |
| 522 | DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"), |
| 523 | DMI_MATCH(DMI_PRODUCT_NAME, "1000 Series"), |
| 524 | }, |
| 525 | }, |
Zhang Rui | bb0c5ed | 2011-07-30 01:40:48 -0400 | [diff] [blame] | 526 | { |
| 527 | .callback = init_old_suspend_ordering, |
| 528 | .ident = "Asus A8N-SLI DELUXE", |
| 529 | .matches = { |
| 530 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 531 | DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI DELUXE"), |
| 532 | }, |
| 533 | }, |
| 534 | { |
| 535 | .callback = init_old_suspend_ordering, |
| 536 | .ident = "Asus A8N-SLI Premium", |
| 537 | .matches = { |
| 538 | DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."), |
| 539 | DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI Premium"), |
| 540 | }, |
| 541 | }, |
Rafael J. Wysocki | 89e8ea1 | 2011-10-06 20:35:03 +0200 | [diff] [blame] | 542 | { |
| 543 | .callback = init_nvs_nosave, |
| 544 | .ident = "Sony Vaio VGN-SR26GN_P", |
| 545 | .matches = { |
| 546 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 547 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR26GN_P"), |
| 548 | }, |
| 549 | }, |
Bogdan Radulescu | 731b25a | 2011-10-06 20:35:12 +0200 | [diff] [blame] | 550 | { |
| 551 | .callback = init_nvs_nosave, |
| 552 | .ident = "Sony Vaio VGN-FW520F", |
| 553 | .matches = { |
| 554 | DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"), |
| 555 | DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW520F"), |
| 556 | }, |
| 557 | }, |
Keng-Yu Lin | 5a50a7c | 2011-12-02 00:04:23 +0100 | [diff] [blame] | 558 | { |
| 559 | .callback = init_nvs_nosave, |
| 560 | .ident = "Asus K54C", |
| 561 | .matches = { |
| 562 | DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), |
| 563 | DMI_MATCH(DMI_PRODUCT_NAME, "K54C"), |
| 564 | }, |
| 565 | }, |
| 566 | { |
| 567 | .callback = init_nvs_nosave, |
| 568 | .ident = "Asus K54HR", |
| 569 | .matches = { |
| 570 | DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."), |
| 571 | DMI_MATCH(DMI_PRODUCT_NAME, "K54HR"), |
| 572 | }, |
| 573 | }, |
Carlos Corbacho | e41fb7c | 2008-07-23 21:28:43 -0700 | [diff] [blame] | 574 | {}, |
| 575 | }; |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 576 | #endif /* CONFIG_SUSPEND */ |
| 577 | |
Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 578 | #ifdef CONFIG_HIBERNATION |
Shaohua Li | bdfe6b7 | 2008-07-23 21:28:41 -0700 | [diff] [blame] | 579 | static unsigned long s4_hardware_signature; |
| 580 | static struct acpi_table_facs *facs; |
| 581 | static bool nosigcheck; |
| 582 | |
| 583 | void __init acpi_no_s4_hw_signature(void) |
| 584 | { |
| 585 | nosigcheck = true; |
| 586 | } |
| 587 | |
Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 588 | static int acpi_hibernation_begin(void) |
Rafael J. Wysocki | 74f270a | 2007-10-18 03:04:42 -0700 | [diff] [blame] | 589 | { |
Rafael J. Wysocki | 3f4b0ef | 2008-10-26 20:52:15 +0100 | [diff] [blame] | 590 | int error; |
| 591 | |
Rafael J. Wysocki | 72ad5d7 | 2010-07-23 22:59:09 +0200 | [diff] [blame] | 592 | error = nvs_nosave ? 0 : suspend_nvs_alloc(); |
Rafael J. Wysocki | 3f4b0ef | 2008-10-26 20:52:15 +0100 | [diff] [blame] | 593 | if (!error) { |
| 594 | acpi_target_sleep_state = ACPI_STATE_S4; |
| 595 | acpi_sleep_tts_switch(acpi_target_sleep_state); |
| 596 | } |
| 597 | |
| 598 | return error; |
| 599 | } |
| 600 | |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 601 | static int acpi_hibernation_enter(void) |
| 602 | { |
| 603 | acpi_status status = AE_OK; |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 604 | |
| 605 | ACPI_FLUSH_CPU_CACHE(); |
| 606 | |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 607 | /* This shouldn't return. If it returns, we have a problem */ |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 608 | status = acpi_enter_sleep_state(ACPI_STATE_S4, wake_sleep_flags); |
Rafael J. Wysocki | c95d47a | 2008-01-08 00:05:21 +0100 | [diff] [blame] | 609 | /* Reprogram control registers and execute _BFS */ |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 610 | acpi_leave_sleep_state_prep(ACPI_STATE_S4, wake_sleep_flags); |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 611 | |
| 612 | return ACPI_SUCCESS(status) ? 0 : -EFAULT; |
| 613 | } |
| 614 | |
Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 615 | static void acpi_hibernation_leave(void) |
| 616 | { |
| 617 | /* |
| 618 | * If ACPI is not enabled by the BIOS and the boot kernel, we need to |
| 619 | * enable it here. |
| 620 | */ |
| 621 | acpi_enable(); |
Rafael J. Wysocki | c95d47a | 2008-01-08 00:05:21 +0100 | [diff] [blame] | 622 | /* Reprogram control registers and execute _BFS */ |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 623 | acpi_leave_sleep_state_prep(ACPI_STATE_S4, wake_sleep_flags); |
Shaohua Li | bdfe6b7 | 2008-07-23 21:28:41 -0700 | [diff] [blame] | 624 | /* Check the hardware signature */ |
| 625 | if (facs && s4_hardware_signature != facs->hardware_signature) { |
| 626 | printk(KERN_EMERG "ACPI: Hardware changed while hibernated, " |
| 627 | "cannot resume!\n"); |
| 628 | panic("ACPI S4 hardware signature mismatch"); |
| 629 | } |
Rafael J. Wysocki | 3f4b0ef | 2008-10-26 20:52:15 +0100 | [diff] [blame] | 630 | /* Restore the NVS memory area */ |
Matthew Garrett | dd4c4f1 | 2010-05-28 16:32:14 -0400 | [diff] [blame] | 631 | suspend_nvs_restore(); |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 632 | /* Allow EC transactions to happen. */ |
Rafael J. Wysocki | fe95568 | 2010-04-09 01:40:38 +0200 | [diff] [blame] | 633 | acpi_ec_unblock_transactions_early(); |
Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 634 | } |
| 635 | |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 636 | static void acpi_pm_thaw(void) |
Rafael J. Wysocki | f6bb13a | 2010-03-04 01:52:58 +0100 | [diff] [blame] | 637 | { |
Rafael J. Wysocki | fe95568 | 2010-04-09 01:40:38 +0200 | [diff] [blame] | 638 | acpi_ec_unblock_transactions(); |
Lin Ming | 3d97e42 | 2008-12-16 16:57:46 +0800 | [diff] [blame] | 639 | acpi_enable_all_runtime_gpes(); |
Rafael J. Wysocki | a634cc1 | 2007-07-19 01:47:30 -0700 | [diff] [blame] | 640 | } |
| 641 | |
Lionel Debroux | 073ef1f | 2010-11-09 21:48:49 +0100 | [diff] [blame] | 642 | static const struct platform_hibernation_ops acpi_hibernation_ops = { |
Rafael J. Wysocki | caea99e | 2008-01-08 00:08:44 +0100 | [diff] [blame] | 643 | .begin = acpi_hibernation_begin, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 644 | .end = acpi_pm_end, |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 645 | .pre_snapshot = acpi_pm_prepare, |
Matthew Garrett | 2a6b697 | 2010-05-28 16:32:15 -0400 | [diff] [blame] | 646 | .finish = acpi_pm_finish, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 647 | .prepare = acpi_pm_prepare, |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 648 | .enter = acpi_hibernation_enter, |
Rafael J. Wysocki | c7e0831 | 2007-10-18 03:04:55 -0700 | [diff] [blame] | 649 | .leave = acpi_hibernation_leave, |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 650 | .pre_restore = acpi_pm_freeze, |
| 651 | .restore_cleanup = acpi_pm_thaw, |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 652 | }; |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 653 | |
| 654 | /** |
| 655 | * acpi_hibernation_begin_old - Set the target system sleep state to |
| 656 | * ACPI_STATE_S4 and execute the _PTS control method. This |
| 657 | * function is used if the pre-ACPI 2.0 suspend ordering has been |
| 658 | * requested. |
| 659 | */ |
| 660 | static int acpi_hibernation_begin_old(void) |
| 661 | { |
Zhao Yakui | e49f711 | 2008-08-12 10:20:22 +0800 | [diff] [blame] | 662 | int error; |
| 663 | /* |
| 664 | * The _TTS object should always be evaluated before the _PTS object. |
| 665 | * When the old_suspended_ordering is true, the _PTS object is |
| 666 | * evaluated in the acpi_sleep_prepare. |
| 667 | */ |
| 668 | acpi_sleep_tts_switch(ACPI_STATE_S4); |
| 669 | |
| 670 | error = acpi_sleep_prepare(ACPI_STATE_S4); |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 671 | |
Rafael J. Wysocki | 3f4b0ef | 2008-10-26 20:52:15 +0100 | [diff] [blame] | 672 | if (!error) { |
Rafael J. Wysocki | 72ad5d7 | 2010-07-23 22:59:09 +0200 | [diff] [blame] | 673 | if (!nvs_nosave) |
Matthew Garrett | dd4c4f1 | 2010-05-28 16:32:14 -0400 | [diff] [blame] | 674 | error = suspend_nvs_alloc(); |
Rafael J. Wysocki | 3f4b0ef | 2008-10-26 20:52:15 +0100 | [diff] [blame] | 675 | if (!error) |
| 676 | acpi_target_sleep_state = ACPI_STATE_S4; |
| 677 | } |
| 678 | return error; |
| 679 | } |
| 680 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 681 | /* |
| 682 | * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has |
| 683 | * been requested. |
| 684 | */ |
Lionel Debroux | 073ef1f | 2010-11-09 21:48:49 +0100 | [diff] [blame] | 685 | static const struct platform_hibernation_ops acpi_hibernation_ops_old = { |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 686 | .begin = acpi_hibernation_begin_old, |
| 687 | .end = acpi_pm_end, |
Rafael J. Wysocki | c5f7a1b | 2010-07-02 00:14:09 +0200 | [diff] [blame] | 688 | .pre_snapshot = acpi_pm_pre_suspend, |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 689 | .prepare = acpi_pm_freeze, |
Matthew Garrett | 2a6b697 | 2010-05-28 16:32:15 -0400 | [diff] [blame] | 690 | .finish = acpi_pm_finish, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 691 | .enter = acpi_hibernation_enter, |
| 692 | .leave = acpi_hibernation_leave, |
Rafael J. Wysocki | d5a6451 | 2010-04-09 01:39:40 +0200 | [diff] [blame] | 693 | .pre_restore = acpi_pm_freeze, |
| 694 | .restore_cleanup = acpi_pm_thaw, |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 695 | .recover = acpi_pm_finish, |
| 696 | }; |
| 697 | #endif /* CONFIG_HIBERNATION */ |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 698 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 699 | int acpi_suspend(u32 acpi_state) |
| 700 | { |
| 701 | suspend_state_t states[] = { |
| 702 | [1] = PM_SUSPEND_STANDBY, |
| 703 | [3] = PM_SUSPEND_MEM, |
| 704 | [5] = PM_SUSPEND_MAX |
| 705 | }; |
| 706 | |
| 707 | if (acpi_state < 6 && states[acpi_state]) |
| 708 | return pm_suspend(states[acpi_state]); |
| 709 | if (acpi_state == 4) |
| 710 | return hibernate(); |
| 711 | return -EINVAL; |
| 712 | } |
| 713 | |
Rafael J. Wysocki | aa33860 | 2011-02-11 00:06:54 +0100 | [diff] [blame] | 714 | #ifdef CONFIG_PM |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 715 | /** |
| 716 | * acpi_pm_device_sleep_state - return preferred power state of ACPI device |
| 717 | * in the system sleep state given by %acpi_target_sleep_state |
David Brownell | 2fe2de5 | 2008-06-05 01:15:40 +0200 | [diff] [blame] | 718 | * @dev: device to examine; its driver model wakeup flags control |
| 719 | * whether it should be able to wake up the system |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 720 | * @d_min_p: used to store the upper limit of allowed states range |
| 721 | * Return value: preferred power state of the device on success, -ENODEV on |
| 722 | * failure (ie. if there's no 'struct acpi_device' for @dev) |
| 723 | * |
| 724 | * Find the lowest power (highest number) ACPI device power state that |
| 725 | * device @dev can be in while the system is in the sleep state represented |
| 726 | * by %acpi_target_sleep_state. If @wake is nonzero, the device should be |
| 727 | * able to wake up the system from this sleep state. If @d_min_p is set, |
| 728 | * the highest power (lowest number) device power state of @dev allowed |
| 729 | * in this system sleep state is stored at the location pointed to by it. |
| 730 | * |
| 731 | * The caller must ensure that @dev is valid before using this function. |
| 732 | * The caller is also responsible for figuring out if the device is |
| 733 | * supposed to be able to wake up the system and passing this information |
| 734 | * via @wake. |
| 735 | */ |
| 736 | |
David Brownell | 2fe2de5 | 2008-06-05 01:15:40 +0200 | [diff] [blame] | 737 | int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p) |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 738 | { |
| 739 | acpi_handle handle = DEVICE_ACPI_HANDLE(dev); |
| 740 | struct acpi_device *adev; |
| 741 | char acpi_method[] = "_SxD"; |
Matthew Wilcox | 27663c5 | 2008-10-10 02:22:59 -0400 | [diff] [blame] | 742 | unsigned long long d_min, d_max; |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 743 | |
| 744 | if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) { |
Shaohua Li | ead7759 | 2007-08-23 15:01:13 +0800 | [diff] [blame] | 745 | printk(KERN_DEBUG "ACPI handle has no context!\n"); |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 746 | return -ENODEV; |
| 747 | } |
| 748 | |
| 749 | acpi_method[2] = '0' + acpi_target_sleep_state; |
| 750 | /* |
| 751 | * If the sleep state is S0, we will return D3, but if the device has |
| 752 | * _S0W, we will use the value from _S0W |
| 753 | */ |
| 754 | d_min = ACPI_STATE_D0; |
| 755 | d_max = ACPI_STATE_D3; |
| 756 | |
| 757 | /* |
| 758 | * If present, _SxD methods return the minimum D-state (highest power |
| 759 | * state) we can use for the corresponding S-states. Otherwise, the |
| 760 | * minimum D-state is D0 (ACPI 3.x). |
| 761 | * |
| 762 | * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer |
| 763 | * provided -- that's our fault recovery, we ignore retval. |
| 764 | */ |
| 765 | if (acpi_target_sleep_state > ACPI_STATE_S0) |
| 766 | acpi_evaluate_integer(handle, acpi_method, NULL, &d_min); |
| 767 | |
| 768 | /* |
| 769 | * If _PRW says we can wake up the system from the target sleep state, |
| 770 | * the D-state returned by _SxD is sufficient for that (we assume a |
| 771 | * wakeup-aware driver if wake is set). Still, if _SxW exists |
| 772 | * (ACPI 3.x), it should return the maximum (lowest power) D-state that |
| 773 | * can wake the system. _S0W may be valid, too. |
| 774 | */ |
| 775 | if (acpi_target_sleep_state == ACPI_STATE_S0 || |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 776 | (device_may_wakeup(dev) && |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 777 | adev->wakeup.sleep_state <= acpi_target_sleep_state)) { |
Rafael J. Wysocki | ad3399c | 2008-01-11 00:10:38 +0100 | [diff] [blame] | 778 | acpi_status status; |
| 779 | |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 780 | acpi_method[3] = 'W'; |
Rafael J. Wysocki | ad3399c | 2008-01-11 00:10:38 +0100 | [diff] [blame] | 781 | status = acpi_evaluate_integer(handle, acpi_method, NULL, |
| 782 | &d_max); |
| 783 | if (ACPI_FAILURE(status)) { |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 784 | if (acpi_target_sleep_state != ACPI_STATE_S0 || |
| 785 | status != AE_NOT_FOUND) |
| 786 | d_max = d_min; |
Rafael J. Wysocki | ad3399c | 2008-01-11 00:10:38 +0100 | [diff] [blame] | 787 | } else if (d_max < d_min) { |
| 788 | /* Warn the user of the broken DSDT */ |
| 789 | printk(KERN_WARNING "ACPI: Wrong value from %s\n", |
| 790 | acpi_method); |
| 791 | /* Sanitize it */ |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 792 | d_min = d_max; |
Rafael J. Wysocki | ad3399c | 2008-01-11 00:10:38 +0100 | [diff] [blame] | 793 | } |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 794 | } |
| 795 | |
| 796 | if (d_min_p) |
| 797 | *d_min_p = d_min; |
| 798 | return d_max; |
| 799 | } |
Rafael J. Wysocki | aa33860 | 2011-02-11 00:06:54 +0100 | [diff] [blame] | 800 | #endif /* CONFIG_PM */ |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 801 | |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 802 | #ifdef CONFIG_PM_SLEEP |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 803 | /** |
Lin Ming | b24e509 | 2012-03-27 15:43:25 +0800 | [diff] [blame] | 804 | * acpi_pm_device_run_wake - Enable/disable wake-up for given device. |
| 805 | * @phys_dev: Device to enable/disable the platform to wake-up the system for. |
| 806 | * @enable: Whether enable or disable the wake-up functionality. |
| 807 | * |
| 808 | * Find the ACPI device object corresponding to @pci_dev and try to |
| 809 | * enable/disable the GPE associated with it. |
| 810 | */ |
| 811 | int acpi_pm_device_run_wake(struct device *phys_dev, bool enable) |
| 812 | { |
| 813 | struct acpi_device *dev; |
| 814 | acpi_handle handle; |
| 815 | |
| 816 | if (!device_run_wake(phys_dev)) |
| 817 | return -EINVAL; |
| 818 | |
| 819 | handle = DEVICE_ACPI_HANDLE(phys_dev); |
| 820 | if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &dev))) { |
| 821 | dev_dbg(phys_dev, "ACPI handle has no context in %s!\n", |
| 822 | __func__); |
| 823 | return -ENODEV; |
| 824 | } |
| 825 | |
| 826 | if (enable) { |
| 827 | acpi_enable_wakeup_device_power(dev, ACPI_STATE_S0); |
| 828 | acpi_enable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number); |
| 829 | } else { |
| 830 | acpi_disable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number); |
| 831 | acpi_disable_wakeup_device_power(dev); |
| 832 | } |
| 833 | |
| 834 | return 0; |
| 835 | } |
| 836 | |
| 837 | /** |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 838 | * acpi_pm_device_sleep_wake - enable or disable the system wake-up |
| 839 | * capability of given device |
| 840 | * @dev: device to handle |
| 841 | * @enable: 'true' - enable, 'false' - disable the wake-up capability |
| 842 | */ |
| 843 | int acpi_pm_device_sleep_wake(struct device *dev, bool enable) |
| 844 | { |
| 845 | acpi_handle handle; |
| 846 | struct acpi_device *adev; |
Rafael J. Wysocki | df8db91 | 2009-09-08 23:13:49 +0200 | [diff] [blame] | 847 | int error; |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 848 | |
Rafael J. Wysocki | 0baed8d | 2009-09-08 23:16:24 +0200 | [diff] [blame] | 849 | if (!device_can_wakeup(dev)) |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 850 | return -EINVAL; |
| 851 | |
| 852 | handle = DEVICE_ACPI_HANDLE(dev); |
| 853 | if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) { |
Rafael J. Wysocki | df8db91 | 2009-09-08 23:13:49 +0200 | [diff] [blame] | 854 | dev_dbg(dev, "ACPI handle has no context in %s!\n", __func__); |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 855 | return -ENODEV; |
| 856 | } |
| 857 | |
Rafael J. Wysocki | e8b6f97 | 2010-06-25 01:18:39 +0200 | [diff] [blame] | 858 | error = enable ? |
| 859 | acpi_enable_wakeup_device_power(adev, acpi_target_sleep_state) : |
| 860 | acpi_disable_wakeup_device_power(adev); |
Rafael J. Wysocki | df8db91 | 2009-09-08 23:13:49 +0200 | [diff] [blame] | 861 | if (!error) |
| 862 | dev_info(dev, "wake-up capability %s by ACPI\n", |
| 863 | enable ? "enabled" : "disabled"); |
| 864 | |
| 865 | return error; |
Rafael J. Wysocki | eb9d0fe | 2008-07-07 03:34:48 +0200 | [diff] [blame] | 866 | } |
Rafael J. Wysocki | 761afb8 | 2010-10-14 23:24:13 +0200 | [diff] [blame] | 867 | #endif /* CONFIG_PM_SLEEP */ |
Shaohua Li | fd4aff1 | 2007-07-17 22:40:25 +0200 | [diff] [blame] | 868 | |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 869 | static void acpi_power_off_prepare(void) |
| 870 | { |
| 871 | /* Prepare to power off the system */ |
| 872 | acpi_sleep_prepare(ACPI_STATE_S5); |
Lin Ming | 3d97e42 | 2008-12-16 16:57:46 +0800 | [diff] [blame] | 873 | acpi_disable_all_gpes(); |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 874 | } |
| 875 | |
| 876 | static void acpi_power_off(void) |
| 877 | { |
| 878 | /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */ |
Frank Seidel | 4d93915 | 2009-02-04 17:03:07 +0100 | [diff] [blame] | 879 | printk(KERN_DEBUG "%s called\n", __func__); |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 880 | local_irq_disable(); |
Konrad Rzeszutek Wilk | 2a14e54 | 2012-04-22 23:03:17 -0400 | [diff] [blame] | 881 | acpi_enter_sleep_state(ACPI_STATE_S5, wake_sleep_flags); |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 882 | } |
| 883 | |
Len Brown | 96f15ef | 2009-04-17 23:32:20 -0400 | [diff] [blame] | 884 | /* |
| 885 | * ACPI 2.0 created the optional _GTS and _BFS, |
| 886 | * but industry adoption has been neither rapid nor broad. |
| 887 | * |
| 888 | * Linux gets into trouble when it executes poorly validated |
| 889 | * paths through the BIOS, so disable _GTS and _BFS by default, |
| 890 | * but do speak up and offer the option to enable them. |
| 891 | */ |
Stephen Hemminger | 01eac60 | 2010-10-18 18:47:25 -0700 | [diff] [blame] | 892 | static void __init acpi_gts_bfs_check(void) |
Len Brown | 96f15ef | 2009-04-17 23:32:20 -0400 | [diff] [blame] | 893 | { |
| 894 | acpi_handle dummy; |
| 895 | |
Bob Moore | 4efeeec | 2012-03-21 09:42:45 +0800 | [diff] [blame] | 896 | if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_PATHNAME__GTS, &dummy))) |
Len Brown | 96f15ef | 2009-04-17 23:32:20 -0400 | [diff] [blame] | 897 | { |
| 898 | printk(KERN_NOTICE PREFIX "BIOS offers _GTS\n"); |
| 899 | printk(KERN_NOTICE PREFIX "If \"acpi.gts=1\" improves suspend, " |
| 900 | "please notify linux-acpi@vger.kernel.org\n"); |
| 901 | } |
Bob Moore | 4efeeec | 2012-03-21 09:42:45 +0800 | [diff] [blame] | 902 | if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_PATHNAME__BFS, &dummy))) |
Len Brown | 96f15ef | 2009-04-17 23:32:20 -0400 | [diff] [blame] | 903 | { |
| 904 | printk(KERN_NOTICE PREFIX "BIOS offers _BFS\n"); |
| 905 | printk(KERN_NOTICE PREFIX "If \"acpi.bfs=1\" improves resume, " |
| 906 | "please notify linux-acpi@vger.kernel.org\n"); |
| 907 | } |
| 908 | } |
| 909 | |
Alexey Starikovskiy | aafbcd1 | 2007-02-10 01:32:16 -0500 | [diff] [blame] | 910 | int __init acpi_sleep_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 911 | { |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 912 | acpi_status status; |
| 913 | u8 type_a, type_b; |
| 914 | #ifdef CONFIG_SUSPEND |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 915 | int i = 0; |
Carlos Corbacho | e41fb7c | 2008-07-23 21:28:43 -0700 | [diff] [blame] | 916 | |
| 917 | dmi_check_system(acpisleep_dmi_table); |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 918 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 919 | |
| 920 | if (acpi_disabled) |
| 921 | return 0; |
| 922 | |
Frans Pop | 5a50fe7 | 2007-09-20 22:27:44 +0200 | [diff] [blame] | 923 | sleep_states[ACPI_STATE_S0] = 1; |
| 924 | printk(KERN_INFO PREFIX "(supports S0"); |
| 925 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 926 | #ifdef CONFIG_SUSPEND |
Frans Pop | 5a50fe7 | 2007-09-20 22:27:44 +0200 | [diff] [blame] | 927 | for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | status = acpi_get_sleep_type_data(i, &type_a, &type_b); |
| 929 | if (ACPI_SUCCESS(status)) { |
| 930 | sleep_states[i] = 1; |
| 931 | printk(" S%d", i); |
| 932 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 934 | |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 935 | suspend_set_ops(old_suspend_ordering ? |
| 936 | &acpi_suspend_ops_old : &acpi_suspend_ops); |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 937 | #endif |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 938 | |
Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 939 | #ifdef CONFIG_HIBERNATION |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 940 | status = acpi_get_sleep_type_data(ACPI_STATE_S4, &type_a, &type_b); |
| 941 | if (ACPI_SUCCESS(status)) { |
Rafael J. Wysocki | d8f3de0 | 2008-06-12 23:24:06 +0200 | [diff] [blame] | 942 | hibernation_set_ops(old_suspend_ordering ? |
| 943 | &acpi_hibernation_ops_old : &acpi_hibernation_ops); |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 944 | sleep_states[ACPI_STATE_S4] = 1; |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 945 | printk(" S4"); |
Shaohua Li | bdfe6b7 | 2008-07-23 21:28:41 -0700 | [diff] [blame] | 946 | if (!nosigcheck) { |
Lin Ming | 3d97e42 | 2008-12-16 16:57:46 +0800 | [diff] [blame] | 947 | acpi_get_table(ACPI_SIG_FACS, 1, |
Shaohua Li | bdfe6b7 | 2008-07-23 21:28:41 -0700 | [diff] [blame] | 948 | (struct acpi_table_header **)&facs); |
| 949 | if (facs) |
| 950 | s4_hardware_signature = |
| 951 | facs->hardware_signature; |
| 952 | } |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 953 | } |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 954 | #endif |
Alexey Starikovskiy | f216cc3 | 2007-09-20 21:32:35 +0400 | [diff] [blame] | 955 | status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b); |
| 956 | if (ACPI_SUCCESS(status)) { |
| 957 | sleep_states[ACPI_STATE_S5] = 1; |
| 958 | printk(" S5"); |
| 959 | pm_power_off_prepare = acpi_power_off_prepare; |
| 960 | pm_power_off = acpi_power_off; |
| 961 | } |
| 962 | printk(")\n"); |
Zhao Yakui | e49f711 | 2008-08-12 10:20:22 +0800 | [diff] [blame] | 963 | /* |
| 964 | * Register the tts_notifier to reboot notifier list so that the _TTS |
| 965 | * object can also be evaluated when the system enters S5. |
| 966 | */ |
| 967 | register_reboot_notifier(&tts_notifier); |
Len Brown | 96f15ef | 2009-04-17 23:32:20 -0400 | [diff] [blame] | 968 | acpi_gts_bfs_check(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 969 | return 0; |
| 970 | } |