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