blob: a564fc3ffa1cefb31caacfc5a0e28cde1eabc35b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * sleep.c - ACPI sleep support.
3 *
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -05004 * Copyright (c) 2005 Alexey Starikovskiy <alexey.y.starikovskiy@intel.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * 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 Yakuie49f7112008-08-12 10:20:22 +080018#include <linux/reboot.h>
H. Peter Anvind1ee4332011-02-14 15:42:46 -080019#include <linux/acpi.h>
Lin Minga2ef5c42012-03-21 10:58:46 +080020#include <linux/module.h>
Lin Mingb24e5092012-03-27 15:43:25 +080021#include <linux/pm_runtime.h>
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +040022
23#include <asm/io.h>
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <acpi/acpi_bus.h>
26#include <acpi/acpi_drivers.h>
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060027
28#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include "sleep.h"
30
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -040031u8 wake_sleep_flags = ACPI_NO_OPTIONAL_METHODS;
Lin Minga2ef5c42012-03-21 10:58:46 +080032static unsigned int gts, bfs;
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -040033static 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 *)&gts) {
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}
54module_param_call(gts, set_param_wake_flag, param_get_int, &gts, 0644);
55module_param_call(bfs, set_param_wake_flag, param_get_int, &bfs, 0644);
Lin Minga2ef5c42012-03-21 10:58:46 +080056MODULE_PARM_DESC(gts, "Enable evaluation of _GTS on suspend.");
57MODULE_PARM_DESC(bfs, "Enable evaluation of _BFS on resume".);
58
Stephen Hemminger01eac602010-10-18 18:47:25 -070059static u8 sleep_states[ACPI_S_STATE_COUNT];
Daniel Drakec10d7a12012-05-10 00:08:43 +010060static bool pwr_btn_event_pending;
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Zhao Yakuie49f7112008-08-12 10:20:22 +080062static 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
79static 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
86static struct notifier_block tts_notifier = {
87 .notifier_call = tts_notify_reboot,
88 .next = NULL,
89 .priority = 0,
90};
91
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +010092static int acpi_sleep_prepare(u32 acpi_state)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020093{
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 Anvin4b4f7282008-06-24 23:03:48 +0200100 acpi_set_firmware_waking_vector(
101 (acpi_physical_address)acpi_wakeup_address);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +0200102
103 }
104 ACPI_FLUSH_CPU_CACHE();
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +0200105#endif
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +0100106 printk(KERN_INFO PREFIX "Preparing to enter system sleep state S%d\n",
107 acpi_state);
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -0400108 acpi_enable_wakeup_devices(acpi_state);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +0200109 acpi_enter_sleep_state_prep(acpi_state);
110 return 0;
111}
112
Rafael J. Wysocki5d1e0722008-10-22 14:58:43 -0400113#ifdef CONFIG_ACPI_SLEEP
Jan Beulich091aad62010-12-07 14:52:25 +0000114static u32 acpi_target_sleep_state = ACPI_STATE_S0;
115
Zhang Ruid7f0eea2009-12-30 15:36:42 +0800116/*
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200117 * 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 */
123static bool nvs_nosave;
124
125void __init acpi_nvs_nosave(void)
126{
127 nvs_nosave = true;
128}
129
130/*
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200131 * 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 */
135static bool old_suspend_ordering;
136
137void __init acpi_old_suspend_ordering(void)
138{
139 old_suspend_ordering = true;
140}
141
142/**
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200143 * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200144 */
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200145static int acpi_pm_freeze(void)
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200146{
Lin Ming3d97e422008-12-16 16:57:46 +0800147 acpi_disable_all_gpes();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200148 acpi_os_wait_events_complete(NULL);
Rafael J. Wysockife955682010-04-09 01:40:38 +0200149 acpi_ec_block_transactions();
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200150 return 0;
151}
152
153/**
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200154 * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
155 */
156static int acpi_pm_pre_suspend(void)
157{
158 acpi_pm_freeze();
Jiri Slaby26fcaf62011-01-07 01:42:31 +0100159 return suspend_nvs_save();
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200160}
161
162/**
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200163 * __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 */
168static int __acpi_pm_prepare(void)
169{
170 int error = acpi_sleep_prepare(acpi_target_sleep_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200171 if (error)
172 acpi_target_sleep_state = ACPI_STATE_S0;
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200173
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200174 return error;
175}
176
177/**
178 * acpi_pm_prepare - Prepare the platform to enter the target sleep
179 * state and disable the GPEs.
180 */
181static int acpi_pm_prepare(void)
182{
183 int error = __acpi_pm_prepare();
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200184 if (!error)
Jiri Slaby26fcaf62011-01-07 01:42:31 +0100185 error = acpi_pm_pre_suspend();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200186
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200187 return error;
188}
189
Daniel Drakec10d7a12012-05-10 00:08:43 +0100190static 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. Wysockid8f3de02008-06-12 23:24:06 +0200198/**
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 */
204static void acpi_pm_finish(void)
205{
Daniel Drakec10d7a12012-05-10 00:08:43 +0100206 struct device *pwr_btn_dev;
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200207 u32 acpi_state = acpi_target_sleep_state;
208
Len Brown42de5532010-06-12 01:15:40 -0400209 acpi_ec_unblock_transactions();
Rafael J. Wysockid551d812011-01-19 22:27:55 +0100210 suspend_nvs_free();
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400211
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200212 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. Wysocki78f5f022010-07-06 22:09:38 -0400217 acpi_disable_wakeup_devices(acpi_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200218 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 Drakec10d7a12012-05-10 00:08:43 +0100224
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. Wysockid8f3de02008-06-12 23:24:06 +0200241}
242
243/**
244 * acpi_pm_end - Finish up suspend sequence.
245 */
246static 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 Yakuie49f7112008-08-12 10:20:22 +0800253 acpi_sleep_tts_switch(acpi_target_sleep_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200254}
Rafael J. Wysocki92daa7b2008-10-23 21:46:43 +0200255#else /* !CONFIG_ACPI_SLEEP */
256#define acpi_target_sleep_state ACPI_STATE_S0
Rafael J. Wysocki5d1e0722008-10-22 14:58:43 -0400257#endif /* CONFIG_ACPI_SLEEP */
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200258
259#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260static u32 acpi_suspend_states[] = {
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500261 [PM_SUSPEND_ON] = ACPI_STATE_S0,
262 [PM_SUSPEND_STANDBY] = ACPI_STATE_S1,
263 [PM_SUSPEND_MEM] = ACPI_STATE_S3,
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500264 [PM_SUSPEND_MAX] = ACPI_STATE_S5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265};
266
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200267/**
Len Brown2c6e33c2008-04-23 18:02:52 -0400268 * acpi_suspend_begin - Set the target system sleep state to the state
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200269 * associated with given @pm_state, if supported.
270 */
Len Brown2c6e33c2008-04-23 18:02:52 -0400271static int acpi_suspend_begin(suspend_state_t pm_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 u32 acpi_state = acpi_suspend_states[pm_state];
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200274 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200276 error = nvs_nosave ? 0 : suspend_nvs_alloc();
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400277 if (error)
278 return error;
279
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200280 if (sleep_states[acpi_state]) {
281 acpi_target_sleep_state = acpi_state;
Zhao Yakuie49f7112008-08-12 10:20:22 +0800282 acpi_sleep_tts_switch(acpi_target_sleep_state);
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200283 } else {
284 printk(KERN_ERR "ACPI does not support this state: %d\n",
285 pm_state);
286 error = -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 }
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200288 return error;
289}
290
291/**
Len Brown2c6e33c2008-04-23 18:02:52 -0400292 * acpi_suspend_enter - Actually enter a sleep state.
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200293 * @pm_state: ignored
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
Rafael J. Wysocki50ad1472007-07-24 11:58:39 +0200295 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700297 * It's unfortunate, but it works. Please fix if you're feeling frisky.
298 */
Len Brown2c6e33c2008-04-23 18:02:52 -0400299static int acpi_suspend_enter(suspend_state_t pm_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 acpi_status status = AE_OK;
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200302 u32 acpi_state = acpi_target_sleep_state;
Rafael J. Wysocki979f11b2011-02-08 23:42:09 +0100303 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305 ACPI_FLUSH_CPU_CACHE();
306
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200307 switch (acpi_state) {
308 case ACPI_STATE_S1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 barrier();
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400310 status = acpi_enter_sleep_state(acpi_state, wake_sleep_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 break;
312
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200313 case ACPI_STATE_S3:
Rafael J. Wysockif1a20032011-02-08 23:42:22 +0100314 error = acpi_suspend_lowlevel();
Rafael J. Wysocki979f11b2011-02-08 23:42:09 +0100315 if (error)
316 return error;
Rafael J. Wysocki7a63f082011-02-08 23:41:57 +0100317 pr_info(PREFIX "Low-level resume complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 }
Arnaud Patard872d83d2006-04-27 05:25:00 -0400320
Matthew Garrettb6dacf62010-05-11 13:49:25 -0400321 /* This violates the spec but is required for bug compatibility. */
322 acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE, 1);
Rafael J. Wysocki65df7842008-11-26 17:53:13 -0500323
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100324 /* Reprogram control registers and execute _BFS */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400325 acpi_leave_sleep_state_prep(acpi_state, wake_sleep_flags);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100326
Pavel Machek23b168d2008-02-05 19:27:12 +0100327 /* ACPI 3.0 specs (P62) says that it's the responsibility
Arnaud Patard872d83d2006-04-27 05:25:00 -0400328 * of the OSPM to clear the status bit [ implying that the
329 * POWER_BUTTON event should not reach userspace ]
Daniel Drakec10d7a12012-05-10 00:08:43 +0100330 *
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 Patard872d83d2006-04-27 05:25:00 -0400335 */
Daniel Drakec10d7a12012-05-10 00:08:43 +0100336 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 Patard872d83d2006-04-27 05:25:00 -0400347
Shaohua Lia3627f62007-06-20 09:17:58 +0800348 /*
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 Ming3d97e422008-12-16 16:57:46 +0800353 acpi_disable_all_gpes();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200354 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200355 acpi_ec_unblock_transactions_early();
Shaohua Lia3627f62007-06-20 09:17:58 +0800356
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400357 suspend_nvs_restore();
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
360}
361
Len Brown2c6e33c2008-04-23 18:02:52 -0400362static int acpi_suspend_state_valid(suspend_state_t pm_state)
Shaohua Lieb9289e2005-10-30 15:00:01 -0800363{
Johannes Berge8c9c502007-04-30 15:09:54 -0700364 u32 acpi_state;
Shaohua Lieb9289e2005-10-30 15:00:01 -0800365
Johannes Berge8c9c502007-04-30 15:09:54 -0700366 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 Lieb9289e2005-10-30 15:00:01 -0800376}
377
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100378static const struct platform_suspend_ops acpi_suspend_ops = {
Len Brown2c6e33c2008-04-23 18:02:52 -0400379 .valid = acpi_suspend_state_valid,
380 .begin = acpi_suspend_begin,
Rafael J. Wysocki6a7c7ea2009-04-19 20:08:42 +0200381 .prepare_late = acpi_pm_prepare,
Len Brown2c6e33c2008-04-23 18:02:52 -0400382 .enter = acpi_suspend_enter,
Rafael J. Wysocki618d7fd2010-07-02 00:14:57 +0200383 .wake = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200384 .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 */
393static int acpi_suspend_begin_old(suspend_state_t pm_state)
394{
395 int error = acpi_suspend_begin(pm_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200396 if (!error)
397 error = __acpi_pm_prepare();
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200398
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200399 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 Debroux2f55ac02010-11-16 14:14:02 +0100406static const struct platform_suspend_ops acpi_suspend_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200407 .valid = acpi_suspend_state_valid,
408 .begin = acpi_suspend_begin_old,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200409 .prepare_late = acpi_pm_pre_suspend,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200410 .enter = acpi_suspend_enter,
Rafael J. Wysocki618d7fd2010-07-02 00:14:57 +0200411 .wake = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200412 .end = acpi_pm_end,
413 .recover = acpi_pm_finish,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414};
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700415
416static 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. Wysocki53998642010-09-24 16:46:14 -0400422static int __init init_nvs_nosave(const struct dmi_system_id *d)
423{
424 acpi_nvs_nosave();
425 return 0;
426}
427
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700428static 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. Wysocki4fb507b2008-10-14 22:54:06 +0200437 {
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. Wysocki65df7842008-11-26 17:53:13 -0500445 {
Andy Whitcrofta1404492009-02-11 18:11:22 +0000446 .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 Rui45e77982009-03-15 22:13:44 -0400453 {
Zhao Yakui2a9ef8e2009-03-18 16:36:25 +0800454 .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. Wysocki53998642010-09-24 16:46:14 -0400462 {
463 .callback = init_nvs_nosave,
Dave Jonesd11c78e2011-10-19 23:15:11 +0200464 .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 Jonesddf6ce42011-11-03 00:58:59 +0100472 .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. Wysocki53998642010-09-24 16:46:14 -0400480 .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. Wysockiaf489312010-10-17 21:01:21 +0200494 {
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. Wysocki291a73c2010-12-12 21:10:42 +0100502 {
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. Wysocki7b330702011-01-06 23:37:01 +0100510 {
511 .callback = init_nvs_nosave,
Lan Tianyu93f77082012-01-21 09:23:56 +0800512 .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. Wysocki7b330702011-01-06 23:37:01 +0100520 .ident = "Averatec AV1020-ED2",
521 .matches = {
522 DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"),
523 DMI_MATCH(DMI_PRODUCT_NAME, "1000 Series"),
524 },
525 },
Zhang Ruibb0c5ed2011-07-30 01:40:48 -0400526 {
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. Wysocki89e8ea12011-10-06 20:35:03 +0200542 {
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 Radulescu731b25a2011-10-06 20:35:12 +0200550 {
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 Lin5a50a7c2011-12-02 00:04:23 +0100558 {
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 Corbachoe41fb7c2008-07-23 21:28:43 -0700574 {},
575};
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200576#endif /* CONFIG_SUSPEND */
577
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200578#ifdef CONFIG_HIBERNATION
Shaohua Libdfe6b72008-07-23 21:28:41 -0700579static unsigned long s4_hardware_signature;
580static struct acpi_table_facs *facs;
581static bool nosigcheck;
582
583void __init acpi_no_s4_hw_signature(void)
584{
585 nosigcheck = true;
586}
587
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100588static int acpi_hibernation_begin(void)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700589{
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100590 int error;
591
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200592 error = nvs_nosave ? 0 : suspend_nvs_alloc();
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100593 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. Wysockia3d25c22007-05-09 02:33:18 -0700601static int acpi_hibernation_enter(void)
602{
603 acpi_status status = AE_OK;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700604
605 ACPI_FLUSH_CPU_CACHE();
606
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700607 /* This shouldn't return. If it returns, we have a problem */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400608 status = acpi_enter_sleep_state(ACPI_STATE_S4, wake_sleep_flags);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100609 /* Reprogram control registers and execute _BFS */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400610 acpi_leave_sleep_state_prep(ACPI_STATE_S4, wake_sleep_flags);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700611
612 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
613}
614
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700615static 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. Wysockic95d47a2008-01-08 00:05:21 +0100622 /* Reprogram control registers and execute _BFS */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400623 acpi_leave_sleep_state_prep(ACPI_STATE_S4, wake_sleep_flags);
Shaohua Libdfe6b72008-07-23 21:28:41 -0700624 /* 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. Wysocki3f4b0ef2008-10-26 20:52:15 +0100630 /* Restore the NVS memory area */
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400631 suspend_nvs_restore();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200632 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200633 acpi_ec_unblock_transactions_early();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700634}
635
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200636static void acpi_pm_thaw(void)
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100637{
Rafael J. Wysockife955682010-04-09 01:40:38 +0200638 acpi_ec_unblock_transactions();
Lin Ming3d97e422008-12-16 16:57:46 +0800639 acpi_enable_all_runtime_gpes();
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700640}
641
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100642static const struct platform_hibernation_ops acpi_hibernation_ops = {
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100643 .begin = acpi_hibernation_begin,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200644 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200645 .pre_snapshot = acpi_pm_prepare,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400646 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200647 .prepare = acpi_pm_prepare,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700648 .enter = acpi_hibernation_enter,
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700649 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200650 .pre_restore = acpi_pm_freeze,
651 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700652};
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200653
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 */
660static int acpi_hibernation_begin_old(void)
661{
Zhao Yakuie49f7112008-08-12 10:20:22 +0800662 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. Wysockid8f3de02008-06-12 23:24:06 +0200671
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100672 if (!error) {
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200673 if (!nvs_nosave)
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400674 error = suspend_nvs_alloc();
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100675 if (!error)
676 acpi_target_sleep_state = ACPI_STATE_S4;
677 }
678 return error;
679}
680
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200681/*
682 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
683 * been requested.
684 */
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100685static const struct platform_hibernation_ops acpi_hibernation_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200686 .begin = acpi_hibernation_begin_old,
687 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200688 .pre_snapshot = acpi_pm_pre_suspend,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200689 .prepare = acpi_pm_freeze,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400690 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200691 .enter = acpi_hibernation_enter,
692 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200693 .pre_restore = acpi_pm_freeze,
694 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200695 .recover = acpi_pm_finish,
696};
697#endif /* CONFIG_HIBERNATION */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700698
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200699int 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. Wysockiaa338602011-02-11 00:06:54 +0100714#ifdef CONFIG_PM
Shaohua Lifd4aff12007-07-17 22:40:25 +0200715/**
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 Brownell2fe2de52008-06-05 01:15:40 +0200718 * @dev: device to examine; its driver model wakeup flags control
719 * whether it should be able to wake up the system
Shaohua Lifd4aff12007-07-17 22:40:25 +0200720 * @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 Brownell2fe2de52008-06-05 01:15:40 +0200737int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p)
Shaohua Lifd4aff12007-07-17 22:40:25 +0200738{
739 acpi_handle handle = DEVICE_ACPI_HANDLE(dev);
740 struct acpi_device *adev;
741 char acpi_method[] = "_SxD";
Matthew Wilcox27663c52008-10-10 02:22:59 -0400742 unsigned long long d_min, d_max;
Shaohua Lifd4aff12007-07-17 22:40:25 +0200743
744 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
Shaohua Liead77592007-08-23 15:01:13 +0800745 printk(KERN_DEBUG "ACPI handle has no context!\n");
Shaohua Lifd4aff12007-07-17 22:40:25 +0200746 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. Wysocki761afb82010-10-14 23:24:13 +0200776 (device_may_wakeup(dev) &&
Shaohua Lifd4aff12007-07-17 22:40:25 +0200777 adev->wakeup.sleep_state <= acpi_target_sleep_state)) {
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100778 acpi_status status;
779
Shaohua Lifd4aff12007-07-17 22:40:25 +0200780 acpi_method[3] = 'W';
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100781 status = acpi_evaluate_integer(handle, acpi_method, NULL,
782 &d_max);
783 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200784 if (acpi_target_sleep_state != ACPI_STATE_S0 ||
785 status != AE_NOT_FOUND)
786 d_max = d_min;
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100787 } 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 Lifd4aff12007-07-17 22:40:25 +0200792 d_min = d_max;
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100793 }
Shaohua Lifd4aff12007-07-17 22:40:25 +0200794 }
795
796 if (d_min_p)
797 *d_min_p = d_min;
798 return d_max;
799}
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100800#endif /* CONFIG_PM */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200801
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200802#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200803/**
Lin Mingb24e5092012-03-27 15:43:25 +0800804 * 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 */
811int 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. Wysockieb9d0fe2008-07-07 03:34:48 +0200838 * 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 */
843int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
844{
845 acpi_handle handle;
846 struct acpi_device *adev;
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200847 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200848
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +0200849 if (!device_can_wakeup(dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200850 return -EINVAL;
851
852 handle = DEVICE_ACPI_HANDLE(dev);
853 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200854 dev_dbg(dev, "ACPI handle has no context in %s!\n", __func__);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200855 return -ENODEV;
856 }
857
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200858 error = enable ?
859 acpi_enable_wakeup_device_power(adev, acpi_target_sleep_state) :
860 acpi_disable_wakeup_device_power(adev);
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200861 if (!error)
862 dev_info(dev, "wake-up capability %s by ACPI\n",
863 enable ? "enabled" : "disabled");
864
865 return error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200866}
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200867#endif /* CONFIG_PM_SLEEP */
Shaohua Lifd4aff12007-07-17 22:40:25 +0200868
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400869static void acpi_power_off_prepare(void)
870{
871 /* Prepare to power off the system */
872 acpi_sleep_prepare(ACPI_STATE_S5);
Lin Ming3d97e422008-12-16 16:57:46 +0800873 acpi_disable_all_gpes();
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400874}
875
876static void acpi_power_off(void)
877{
878 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
Frank Seidel4d939152009-02-04 17:03:07 +0100879 printk(KERN_DEBUG "%s called\n", __func__);
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400880 local_irq_disable();
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400881 acpi_enter_sleep_state(ACPI_STATE_S5, wake_sleep_flags);
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400882}
883
Len Brown96f15ef2009-04-17 23:32:20 -0400884/*
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 Hemminger01eac602010-10-18 18:47:25 -0700892static void __init acpi_gts_bfs_check(void)
Len Brown96f15ef2009-04-17 23:32:20 -0400893{
894 acpi_handle dummy;
895
Bob Moore4efeeec2012-03-21 09:42:45 +0800896 if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_PATHNAME__GTS, &dummy)))
Len Brown96f15ef2009-04-17 23:32:20 -0400897 {
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 Moore4efeeec2012-03-21 09:42:45 +0800902 if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_PATHNAME__BFS, &dummy)))
Len Brown96f15ef2009-04-17 23:32:20 -0400903 {
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 Starikovskiyaafbcd12007-02-10 01:32:16 -0500910int __init acpi_sleep_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200912 acpi_status status;
913 u8 type_a, type_b;
914#ifdef CONFIG_SUSPEND
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500915 int i = 0;
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700916
917 dmi_check_system(acpisleep_dmi_table);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200918#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 if (acpi_disabled)
921 return 0;
922
Frans Pop5a50fe72007-09-20 22:27:44 +0200923 sleep_states[ACPI_STATE_S0] = 1;
924 printk(KERN_INFO PREFIX "(supports S0");
925
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200926#ifdef CONFIG_SUSPEND
Frans Pop5a50fe72007-09-20 22:27:44 +0200927 for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 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 Torvalds1da177e2005-04-16 15:20:36 -0700933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200935 suspend_set_ops(old_suspend_ordering ?
936 &acpi_suspend_ops_old : &acpi_suspend_ops);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200937#endif
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700938
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200939#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200940 status = acpi_get_sleep_type_data(ACPI_STATE_S4, &type_a, &type_b);
941 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200942 hibernation_set_ops(old_suspend_ordering ?
943 &acpi_hibernation_ops_old : &acpi_hibernation_ops);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200944 sleep_states[ACPI_STATE_S4] = 1;
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400945 printk(" S4");
Shaohua Libdfe6b72008-07-23 21:28:41 -0700946 if (!nosigcheck) {
Lin Ming3d97e422008-12-16 16:57:46 +0800947 acpi_get_table(ACPI_SIG_FACS, 1,
Shaohua Libdfe6b72008-07-23 21:28:41 -0700948 (struct acpi_table_header **)&facs);
949 if (facs)
950 s4_hardware_signature =
951 facs->hardware_signature;
952 }
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200953 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700954#endif
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400955 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 Yakuie49f7112008-08-12 10:20:22 +0800963 /*
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 Brown96f15ef2009-04-17 23:32:20 -0400968 acpi_gts_bfs_check();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969 return 0;
970}