blob: 4defa0297ee4a94b2161caaaa494e3612f9dae2a [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>
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +020022#include <linux/pm_qos.h>
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +040023
24#include <asm/io.h>
25
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <acpi/acpi_bus.h>
27#include <acpi/acpi_drivers.h>
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060028
29#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include "sleep.h"
31
Stephen Hemminger01eac602010-10-18 18:47:25 -070032static u8 sleep_states[ACPI_S_STATE_COUNT];
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Zhao Yakuie49f7112008-08-12 10:20:22 +080034static void acpi_sleep_tts_switch(u32 acpi_state)
35{
36 union acpi_object in_arg = { ACPI_TYPE_INTEGER };
37 struct acpi_object_list arg_list = { 1, &in_arg };
38 acpi_status status = AE_OK;
39
40 in_arg.integer.value = acpi_state;
41 status = acpi_evaluate_object(NULL, "\\_TTS", &arg_list, NULL);
42 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
43 /*
44 * OS can't evaluate the _TTS object correctly. Some warning
45 * message will be printed. But it won't break anything.
46 */
47 printk(KERN_NOTICE "Failure in evaluating _TTS object\n");
48 }
49}
50
51static int tts_notify_reboot(struct notifier_block *this,
52 unsigned long code, void *x)
53{
54 acpi_sleep_tts_switch(ACPI_STATE_S5);
55 return NOTIFY_DONE;
56}
57
58static struct notifier_block tts_notifier = {
59 .notifier_call = tts_notify_reboot,
60 .next = NULL,
61 .priority = 0,
62};
63
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +010064static int acpi_sleep_prepare(u32 acpi_state)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020065{
66#ifdef CONFIG_ACPI_SLEEP
67 /* do we have a wakeup address for S2 and S3? */
68 if (acpi_state == ACPI_STATE_S3) {
H. Peter Anvin319b6ff2012-05-30 12:33:41 +030069 if (!acpi_wakeup_address)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020070 return -EFAULT;
H. Peter Anvin319b6ff2012-05-30 12:33:41 +030071 acpi_set_firmware_waking_vector(acpi_wakeup_address);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020072
73 }
74 ACPI_FLUSH_CPU_CACHE();
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020075#endif
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +010076 printk(KERN_INFO PREFIX "Preparing to enter system sleep state S%d\n",
77 acpi_state);
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040078 acpi_enable_wakeup_devices(acpi_state);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020079 acpi_enter_sleep_state_prep(acpi_state);
80 return 0;
81}
82
Rafael J. Wysocki5d1e0722008-10-22 14:58:43 -040083#ifdef CONFIG_ACPI_SLEEP
Jan Beulich091aad62010-12-07 14:52:25 +000084static u32 acpi_target_sleep_state = ACPI_STATE_S0;
Rafael J. Wysockia5ca7342012-07-23 21:01:02 +020085static bool pwr_btn_event_pending;
Jan Beulich091aad62010-12-07 14:52:25 +000086
Zhang Ruid7f0eea2009-12-30 15:36:42 +080087/*
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +020088 * The ACPI specification wants us to save NVS memory regions during hibernation
89 * and to restore them during the subsequent resume. Windows does that also for
90 * suspend to RAM. However, it is known that this mechanism does not work on
91 * all machines, so we allow the user to disable it with the help of the
92 * 'acpi_sleep=nonvs' kernel command line option.
93 */
94static bool nvs_nosave;
95
96void __init acpi_nvs_nosave(void)
97{
98 nvs_nosave = true;
99}
100
101/*
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200102 * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the
103 * user to request that behavior by using the 'acpi_old_suspend_ordering'
104 * kernel command line option that causes the following variable to be set.
105 */
106static bool old_suspend_ordering;
107
108void __init acpi_old_suspend_ordering(void)
109{
110 old_suspend_ordering = true;
111}
112
113/**
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200114 * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200115 */
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200116static int acpi_pm_freeze(void)
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200117{
Lin Ming3d97e422008-12-16 16:57:46 +0800118 acpi_disable_all_gpes();
Lin Mingbd6f10a2012-05-22 16:43:49 +0800119 acpi_os_wait_events_complete();
Rafael J. Wysockife955682010-04-09 01:40:38 +0200120 acpi_ec_block_transactions();
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200121 return 0;
122}
123
124/**
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200125 * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
126 */
127static int acpi_pm_pre_suspend(void)
128{
129 acpi_pm_freeze();
Jiri Slaby26fcaf62011-01-07 01:42:31 +0100130 return suspend_nvs_save();
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200131}
132
133/**
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200134 * __acpi_pm_prepare - Prepare the platform to enter the target state.
135 *
136 * If necessary, set the firmware waking vector and do arch-specific
137 * nastiness to get the wakeup code to the waking vector.
138 */
139static int __acpi_pm_prepare(void)
140{
141 int error = acpi_sleep_prepare(acpi_target_sleep_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200142 if (error)
143 acpi_target_sleep_state = ACPI_STATE_S0;
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200144
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200145 return error;
146}
147
148/**
149 * acpi_pm_prepare - Prepare the platform to enter the target sleep
150 * state and disable the GPEs.
151 */
152static int acpi_pm_prepare(void)
153{
154 int error = __acpi_pm_prepare();
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200155 if (!error)
Jiri Slaby26fcaf62011-01-07 01:42:31 +0100156 error = acpi_pm_pre_suspend();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200157
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200158 return error;
159}
160
Daniel Drakec10d7a12012-05-10 00:08:43 +0100161static int find_powerf_dev(struct device *dev, void *data)
162{
163 struct acpi_device *device = to_acpi_device(dev);
164 const char *hid = acpi_device_hid(device);
165
166 return !strcmp(hid, ACPI_BUTTON_HID_POWERF);
167}
168
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200169/**
170 * acpi_pm_finish - Instruct the platform to leave a sleep state.
171 *
172 * This is called after we wake back up (or if entering the sleep state
173 * failed).
174 */
175static void acpi_pm_finish(void)
176{
Daniel Drakec10d7a12012-05-10 00:08:43 +0100177 struct device *pwr_btn_dev;
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200178 u32 acpi_state = acpi_target_sleep_state;
179
Len Brown42de5532010-06-12 01:15:40 -0400180 acpi_ec_unblock_transactions();
Rafael J. Wysockid551d812011-01-19 22:27:55 +0100181 suspend_nvs_free();
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400182
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200183 if (acpi_state == ACPI_STATE_S0)
184 return;
185
186 printk(KERN_INFO PREFIX "Waking up from system sleep state S%d\n",
187 acpi_state);
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -0400188 acpi_disable_wakeup_devices(acpi_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200189 acpi_leave_sleep_state(acpi_state);
190
191 /* reset firmware waking vector */
192 acpi_set_firmware_waking_vector((acpi_physical_address) 0);
193
194 acpi_target_sleep_state = ACPI_STATE_S0;
Daniel Drakec10d7a12012-05-10 00:08:43 +0100195
196 /* If we were woken with the fixed power button, provide a small
197 * hint to userspace in the form of a wakeup event on the fixed power
198 * button device (if it can be found).
199 *
200 * We delay the event generation til now, as the PM layer requires
201 * timekeeping to be running before we generate events. */
202 if (!pwr_btn_event_pending)
203 return;
204
205 pwr_btn_event_pending = false;
206 pwr_btn_dev = bus_find_device(&acpi_bus_type, NULL, NULL,
207 find_powerf_dev);
208 if (pwr_btn_dev) {
209 pm_wakeup_event(pwr_btn_dev, 0);
210 put_device(pwr_btn_dev);
211 }
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200212}
213
214/**
215 * acpi_pm_end - Finish up suspend sequence.
216 */
217static void acpi_pm_end(void)
218{
219 /*
220 * This is necessary in case acpi_pm_finish() is not called during a
221 * failing transition to a sleep state.
222 */
223 acpi_target_sleep_state = ACPI_STATE_S0;
Zhao Yakuie49f7112008-08-12 10:20:22 +0800224 acpi_sleep_tts_switch(acpi_target_sleep_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200225}
Rafael J. Wysocki92daa7b2008-10-23 21:46:43 +0200226#else /* !CONFIG_ACPI_SLEEP */
227#define acpi_target_sleep_state ACPI_STATE_S0
Rafael J. Wysocki5d1e0722008-10-22 14:58:43 -0400228#endif /* CONFIG_ACPI_SLEEP */
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200229
230#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231static u32 acpi_suspend_states[] = {
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500232 [PM_SUSPEND_ON] = ACPI_STATE_S0,
233 [PM_SUSPEND_STANDBY] = ACPI_STATE_S1,
234 [PM_SUSPEND_MEM] = ACPI_STATE_S3,
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500235 [PM_SUSPEND_MAX] = ACPI_STATE_S5
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200238/**
Len Brown2c6e33c2008-04-23 18:02:52 -0400239 * acpi_suspend_begin - Set the target system sleep state to the state
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200240 * associated with given @pm_state, if supported.
241 */
Len Brown2c6e33c2008-04-23 18:02:52 -0400242static int acpi_suspend_begin(suspend_state_t pm_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243{
244 u32 acpi_state = acpi_suspend_states[pm_state];
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200245 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200247 error = nvs_nosave ? 0 : suspend_nvs_alloc();
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400248 if (error)
249 return error;
250
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200251 if (sleep_states[acpi_state]) {
252 acpi_target_sleep_state = acpi_state;
Zhao Yakuie49f7112008-08-12 10:20:22 +0800253 acpi_sleep_tts_switch(acpi_target_sleep_state);
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200254 } else {
255 printk(KERN_ERR "ACPI does not support this state: %d\n",
256 pm_state);
257 error = -ENOSYS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 }
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200259 return error;
260}
261
262/**
Len Brown2c6e33c2008-04-23 18:02:52 -0400263 * acpi_suspend_enter - Actually enter a sleep state.
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200264 * @pm_state: ignored
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 *
Rafael J. Wysocki50ad1472007-07-24 11:58:39 +0200266 * Flush caches and go to sleep. For STR we have to call arch-specific
267 * assembly, which in turn call acpi_enter_sleep_state().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 * It's unfortunate, but it works. Please fix if you're feeling frisky.
269 */
Len Brown2c6e33c2008-04-23 18:02:52 -0400270static int acpi_suspend_enter(suspend_state_t pm_state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271{
272 acpi_status status = AE_OK;
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200273 u32 acpi_state = acpi_target_sleep_state;
Rafael J. Wysocki979f11b2011-02-08 23:42:09 +0100274 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275
276 ACPI_FLUSH_CPU_CACHE();
277
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200278 switch (acpi_state) {
279 case ACPI_STATE_S1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 barrier();
Len Brown3f6f49c2012-07-26 20:08:54 -0400281 status = acpi_enter_sleep_state(acpi_state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 break;
283
Rafael J. Wysockie9b3aba2007-07-17 22:40:06 +0200284 case ACPI_STATE_S3:
Rafael J. Wysockif1a20032011-02-08 23:42:22 +0100285 error = acpi_suspend_lowlevel();
Rafael J. Wysocki979f11b2011-02-08 23:42:09 +0100286 if (error)
287 return error;
Rafael J. Wysocki7a63f082011-02-08 23:41:57 +0100288 pr_info(PREFIX "Low-level resume complete\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 }
Arnaud Patard872d83d2006-04-27 05:25:00 -0400291
Matthew Garrettb6dacf62010-05-11 13:49:25 -0400292 /* This violates the spec but is required for bug compatibility. */
293 acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE, 1);
Rafael J. Wysocki65df7842008-11-26 17:53:13 -0500294
Len Brown3f6f49c2012-07-26 20:08:54 -0400295 /* Reprogram control registers */
296 acpi_leave_sleep_state_prep(acpi_state);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100297
Pavel Machek23b168d2008-02-05 19:27:12 +0100298 /* ACPI 3.0 specs (P62) says that it's the responsibility
Arnaud Patard872d83d2006-04-27 05:25:00 -0400299 * of the OSPM to clear the status bit [ implying that the
300 * POWER_BUTTON event should not reach userspace ]
Daniel Drakec10d7a12012-05-10 00:08:43 +0100301 *
302 * However, we do generate a small hint for userspace in the form of
303 * a wakeup event. We flag this condition for now and generate the
304 * event later, as we're currently too early in resume to be able to
305 * generate wakeup events.
Arnaud Patard872d83d2006-04-27 05:25:00 -0400306 */
Daniel Drakec10d7a12012-05-10 00:08:43 +0100307 if (ACPI_SUCCESS(status) && (acpi_state == ACPI_STATE_S3)) {
308 acpi_event_status pwr_btn_status;
309
310 acpi_get_event_status(ACPI_EVENT_POWER_BUTTON, &pwr_btn_status);
311
312 if (pwr_btn_status & ACPI_EVENT_FLAG_SET) {
313 acpi_clear_event(ACPI_EVENT_POWER_BUTTON);
314 /* Flag for later */
315 pwr_btn_event_pending = true;
316 }
317 }
Arnaud Patard872d83d2006-04-27 05:25:00 -0400318
Shaohua Lia3627f62007-06-20 09:17:58 +0800319 /*
320 * Disable and clear GPE status before interrupt is enabled. Some GPEs
321 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
322 * acpi_leave_sleep_state will reenable specific GPEs later
323 */
Lin Ming3d97e422008-12-16 16:57:46 +0800324 acpi_disable_all_gpes();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200325 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200326 acpi_ec_unblock_transactions_early();
Shaohua Lia3627f62007-06-20 09:17:58 +0800327
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400328 suspend_nvs_restore();
329
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
331}
332
Len Brown2c6e33c2008-04-23 18:02:52 -0400333static int acpi_suspend_state_valid(suspend_state_t pm_state)
Shaohua Lieb9289e2005-10-30 15:00:01 -0800334{
Johannes Berge8c9c502007-04-30 15:09:54 -0700335 u32 acpi_state;
Shaohua Lieb9289e2005-10-30 15:00:01 -0800336
Johannes Berge8c9c502007-04-30 15:09:54 -0700337 switch (pm_state) {
338 case PM_SUSPEND_ON:
339 case PM_SUSPEND_STANDBY:
340 case PM_SUSPEND_MEM:
341 acpi_state = acpi_suspend_states[pm_state];
342
343 return sleep_states[acpi_state];
344 default:
345 return 0;
346 }
Shaohua Lieb9289e2005-10-30 15:00:01 -0800347}
348
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100349static const struct platform_suspend_ops acpi_suspend_ops = {
Len Brown2c6e33c2008-04-23 18:02:52 -0400350 .valid = acpi_suspend_state_valid,
351 .begin = acpi_suspend_begin,
Rafael J. Wysocki6a7c7ea2009-04-19 20:08:42 +0200352 .prepare_late = acpi_pm_prepare,
Len Brown2c6e33c2008-04-23 18:02:52 -0400353 .enter = acpi_suspend_enter,
Rafael J. Wysocki618d7fd2010-07-02 00:14:57 +0200354 .wake = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200355 .end = acpi_pm_end,
356};
357
358/**
359 * acpi_suspend_begin_old - Set the target system sleep state to the
360 * state associated with given @pm_state, if supported, and
361 * execute the _PTS control method. This function is used if the
362 * pre-ACPI 2.0 suspend ordering has been requested.
363 */
364static int acpi_suspend_begin_old(suspend_state_t pm_state)
365{
366 int error = acpi_suspend_begin(pm_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200367 if (!error)
368 error = __acpi_pm_prepare();
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200369
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200370 return error;
371}
372
373/*
374 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
375 * been requested.
376 */
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100377static const struct platform_suspend_ops acpi_suspend_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200378 .valid = acpi_suspend_state_valid,
379 .begin = acpi_suspend_begin_old,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200380 .prepare_late = acpi_pm_pre_suspend,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200381 .enter = acpi_suspend_enter,
Rafael J. Wysocki618d7fd2010-07-02 00:14:57 +0200382 .wake = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200383 .end = acpi_pm_end,
384 .recover = acpi_pm_finish,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385};
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700386
387static int __init init_old_suspend_ordering(const struct dmi_system_id *d)
388{
389 old_suspend_ordering = true;
390 return 0;
391}
392
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400393static int __init init_nvs_nosave(const struct dmi_system_id *d)
394{
395 acpi_nvs_nosave();
396 return 0;
397}
398
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700399static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
400 {
401 .callback = init_old_suspend_ordering,
402 .ident = "Abit KN9 (nForce4 variant)",
403 .matches = {
404 DMI_MATCH(DMI_BOARD_VENDOR, "http://www.abit.com.tw/"),
405 DMI_MATCH(DMI_BOARD_NAME, "KN9 Series(NF-CK804)"),
406 },
407 },
Rafael J. Wysocki4fb507b2008-10-14 22:54:06 +0200408 {
409 .callback = init_old_suspend_ordering,
410 .ident = "HP xw4600 Workstation",
411 .matches = {
412 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
413 DMI_MATCH(DMI_PRODUCT_NAME, "HP xw4600 Workstation"),
414 },
415 },
Rafael J. Wysocki65df7842008-11-26 17:53:13 -0500416 {
Andy Whitcrofta1404492009-02-11 18:11:22 +0000417 .callback = init_old_suspend_ordering,
418 .ident = "Asus Pundit P1-AH2 (M2N8L motherboard)",
419 .matches = {
420 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTek Computer INC."),
421 DMI_MATCH(DMI_BOARD_NAME, "M2N8L"),
422 },
423 },
Zhang Rui45e77982009-03-15 22:13:44 -0400424 {
Zhao Yakui2a9ef8e2009-03-18 16:36:25 +0800425 .callback = init_old_suspend_ordering,
426 .ident = "Panasonic CF51-2L",
427 .matches = {
428 DMI_MATCH(DMI_BOARD_VENDOR,
429 "Matsushita Electric Industrial Co.,Ltd."),
430 DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
431 },
432 },
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400433 {
434 .callback = init_nvs_nosave,
Dave Jonesd11c78e2011-10-19 23:15:11 +0200435 .ident = "Sony Vaio VGN-FW21E",
436 .matches = {
437 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
438 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW21E"),
439 },
440 },
441 {
442 .callback = init_nvs_nosave,
Dave Jonesddf6ce42011-11-03 00:58:59 +0100443 .ident = "Sony Vaio VPCEB17FX",
444 .matches = {
445 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
446 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB17FX"),
447 },
448 },
449 {
450 .callback = init_nvs_nosave,
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400451 .ident = "Sony Vaio VGN-SR11M",
452 .matches = {
453 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
454 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR11M"),
455 },
456 },
457 {
458 .callback = init_nvs_nosave,
459 .ident = "Everex StepNote Series",
460 .matches = {
461 DMI_MATCH(DMI_SYS_VENDOR, "Everex Systems, Inc."),
462 DMI_MATCH(DMI_PRODUCT_NAME, "Everex StepNote Series"),
463 },
464 },
Rafael J. Wysockiaf489312010-10-17 21:01:21 +0200465 {
466 .callback = init_nvs_nosave,
467 .ident = "Sony Vaio VPCEB1Z1E",
468 .matches = {
469 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
470 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1Z1E"),
471 },
472 },
Rafael J. Wysocki291a73c2010-12-12 21:10:42 +0100473 {
474 .callback = init_nvs_nosave,
475 .ident = "Sony Vaio VGN-NW130D",
476 .matches = {
477 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
478 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NW130D"),
479 },
480 },
Rafael J. Wysocki7b330702011-01-06 23:37:01 +0100481 {
482 .callback = init_nvs_nosave,
Lan Tianyu93f77082012-01-21 09:23:56 +0800483 .ident = "Sony Vaio VPCCW29FX",
484 .matches = {
485 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
486 DMI_MATCH(DMI_PRODUCT_NAME, "VPCCW29FX"),
487 },
488 },
489 {
490 .callback = init_nvs_nosave,
Rafael J. Wysocki7b330702011-01-06 23:37:01 +0100491 .ident = "Averatec AV1020-ED2",
492 .matches = {
493 DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"),
494 DMI_MATCH(DMI_PRODUCT_NAME, "1000 Series"),
495 },
496 },
Zhang Ruibb0c5ed2011-07-30 01:40:48 -0400497 {
498 .callback = init_old_suspend_ordering,
499 .ident = "Asus A8N-SLI DELUXE",
500 .matches = {
501 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
502 DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI DELUXE"),
503 },
504 },
505 {
506 .callback = init_old_suspend_ordering,
507 .ident = "Asus A8N-SLI Premium",
508 .matches = {
509 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
510 DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI Premium"),
511 },
512 },
Rafael J. Wysocki89e8ea12011-10-06 20:35:03 +0200513 {
514 .callback = init_nvs_nosave,
515 .ident = "Sony Vaio VGN-SR26GN_P",
516 .matches = {
517 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
518 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR26GN_P"),
519 },
520 },
Bogdan Radulescu731b25a2011-10-06 20:35:12 +0200521 {
522 .callback = init_nvs_nosave,
523 .ident = "Sony Vaio VGN-FW520F",
524 .matches = {
525 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
526 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW520F"),
527 },
528 },
Keng-Yu Lin5a50a7c2011-12-02 00:04:23 +0100529 {
530 .callback = init_nvs_nosave,
531 .ident = "Asus K54C",
532 .matches = {
533 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
534 DMI_MATCH(DMI_PRODUCT_NAME, "K54C"),
535 },
536 },
537 {
538 .callback = init_nvs_nosave,
539 .ident = "Asus K54HR",
540 .matches = {
541 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
542 DMI_MATCH(DMI_PRODUCT_NAME, "K54HR"),
543 },
544 },
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700545 {},
546};
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200547#endif /* CONFIG_SUSPEND */
548
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200549#ifdef CONFIG_HIBERNATION
Shaohua Libdfe6b72008-07-23 21:28:41 -0700550static unsigned long s4_hardware_signature;
551static struct acpi_table_facs *facs;
552static bool nosigcheck;
553
554void __init acpi_no_s4_hw_signature(void)
555{
556 nosigcheck = true;
557}
558
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100559static int acpi_hibernation_begin(void)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700560{
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100561 int error;
562
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200563 error = nvs_nosave ? 0 : suspend_nvs_alloc();
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100564 if (!error) {
565 acpi_target_sleep_state = ACPI_STATE_S4;
566 acpi_sleep_tts_switch(acpi_target_sleep_state);
567 }
568
569 return error;
570}
571
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700572static int acpi_hibernation_enter(void)
573{
574 acpi_status status = AE_OK;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700575
576 ACPI_FLUSH_CPU_CACHE();
577
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700578 /* This shouldn't return. If it returns, we have a problem */
Len Brown3f6f49c2012-07-26 20:08:54 -0400579 status = acpi_enter_sleep_state(ACPI_STATE_S4);
580 /* Reprogram control registers */
581 acpi_leave_sleep_state_prep(ACPI_STATE_S4);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700582
583 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
584}
585
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700586static void acpi_hibernation_leave(void)
587{
588 /*
589 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
590 * enable it here.
591 */
592 acpi_enable();
Len Brown3f6f49c2012-07-26 20:08:54 -0400593 /* Reprogram control registers */
594 acpi_leave_sleep_state_prep(ACPI_STATE_S4);
Shaohua Libdfe6b72008-07-23 21:28:41 -0700595 /* Check the hardware signature */
596 if (facs && s4_hardware_signature != facs->hardware_signature) {
597 printk(KERN_EMERG "ACPI: Hardware changed while hibernated, "
598 "cannot resume!\n");
599 panic("ACPI S4 hardware signature mismatch");
600 }
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100601 /* Restore the NVS memory area */
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400602 suspend_nvs_restore();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200603 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200604 acpi_ec_unblock_transactions_early();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700605}
606
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200607static void acpi_pm_thaw(void)
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100608{
Rafael J. Wysockife955682010-04-09 01:40:38 +0200609 acpi_ec_unblock_transactions();
Lin Ming3d97e422008-12-16 16:57:46 +0800610 acpi_enable_all_runtime_gpes();
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700611}
612
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100613static const struct platform_hibernation_ops acpi_hibernation_ops = {
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100614 .begin = acpi_hibernation_begin,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200615 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200616 .pre_snapshot = acpi_pm_prepare,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400617 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200618 .prepare = acpi_pm_prepare,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700619 .enter = acpi_hibernation_enter,
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700620 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200621 .pre_restore = acpi_pm_freeze,
622 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700623};
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200624
625/**
626 * acpi_hibernation_begin_old - Set the target system sleep state to
627 * ACPI_STATE_S4 and execute the _PTS control method. This
628 * function is used if the pre-ACPI 2.0 suspend ordering has been
629 * requested.
630 */
631static int acpi_hibernation_begin_old(void)
632{
Zhao Yakuie49f7112008-08-12 10:20:22 +0800633 int error;
634 /*
635 * The _TTS object should always be evaluated before the _PTS object.
636 * When the old_suspended_ordering is true, the _PTS object is
637 * evaluated in the acpi_sleep_prepare.
638 */
639 acpi_sleep_tts_switch(ACPI_STATE_S4);
640
641 error = acpi_sleep_prepare(ACPI_STATE_S4);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200642
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100643 if (!error) {
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200644 if (!nvs_nosave)
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400645 error = suspend_nvs_alloc();
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100646 if (!error)
647 acpi_target_sleep_state = ACPI_STATE_S4;
648 }
649 return error;
650}
651
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200652/*
653 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
654 * been requested.
655 */
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100656static const struct platform_hibernation_ops acpi_hibernation_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200657 .begin = acpi_hibernation_begin_old,
658 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200659 .pre_snapshot = acpi_pm_pre_suspend,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200660 .prepare = acpi_pm_freeze,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400661 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200662 .enter = acpi_hibernation_enter,
663 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200664 .pre_restore = acpi_pm_freeze,
665 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200666 .recover = acpi_pm_finish,
667};
668#endif /* CONFIG_HIBERNATION */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700669
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200670int acpi_suspend(u32 acpi_state)
671{
672 suspend_state_t states[] = {
673 [1] = PM_SUSPEND_STANDBY,
674 [3] = PM_SUSPEND_MEM,
675 [5] = PM_SUSPEND_MAX
676 };
677
678 if (acpi_state < 6 && states[acpi_state])
679 return pm_suspend(states[acpi_state]);
680 if (acpi_state == 4)
681 return hibernate();
682 return -EINVAL;
683}
684
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100685#ifdef CONFIG_PM
Shaohua Lifd4aff12007-07-17 22:40:25 +0200686/**
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200687 * acpi_pm_device_sleep_state - Get preferred power state of ACPI device.
688 * @dev: Device whose preferred target power state to return.
689 * @d_min_p: Location to store the upper limit of the allowed states range.
690 * @d_max_in: Deepest low-power state to take into consideration.
691 * Return value: Preferred power state of the device on success, -ENODEV
692 * (if there's no 'struct acpi_device' for @dev) or -EINVAL on failure
Shaohua Lifd4aff12007-07-17 22:40:25 +0200693 *
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200694 * Find the lowest power (highest number) ACPI device power state that the
695 * device can be in while the system is in the sleep state represented
696 * by %acpi_target_sleep_state. If @d_min_p is set, the highest power (lowest
697 * number) device power state that @dev can be in for the given system sleep
698 * state is stored at the location pointed to by it.
Shaohua Lifd4aff12007-07-17 22:40:25 +0200699 *
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200700 * The caller must ensure that @dev is valid before using this function.
Shaohua Lifd4aff12007-07-17 22:40:25 +0200701 */
Huang Yingee85f542012-06-23 10:23:48 +0800702int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p, int d_max_in)
Shaohua Lifd4aff12007-07-17 22:40:25 +0200703{
704 acpi_handle handle = DEVICE_ACPI_HANDLE(dev);
705 struct acpi_device *adev;
706 char acpi_method[] = "_SxD";
Matthew Wilcox27663c52008-10-10 02:22:59 -0400707 unsigned long long d_min, d_max;
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +0200708 bool wakeup = false;
Shaohua Lifd4aff12007-07-17 22:40:25 +0200709
Huang Yingee85f542012-06-23 10:23:48 +0800710 if (d_max_in < ACPI_STATE_D0 || d_max_in > ACPI_STATE_D3)
711 return -EINVAL;
Shaohua Lifd4aff12007-07-17 22:40:25 +0200712 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
Shaohua Liead77592007-08-23 15:01:13 +0800713 printk(KERN_DEBUG "ACPI handle has no context!\n");
Shaohua Lifd4aff12007-07-17 22:40:25 +0200714 return -ENODEV;
715 }
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +0200716 if (d_max_in > ACPI_STATE_D3_HOT) {
717 enum pm_qos_flags_status stat;
718
719 stat = dev_pm_qos_flags(dev, PM_QOS_FLAG_NO_POWER_OFF);
720 if (stat == PM_QOS_FLAGS_ALL)
721 d_max_in = ACPI_STATE_D3_HOT;
722 }
Shaohua Lifd4aff12007-07-17 22:40:25 +0200723
724 acpi_method[2] = '0' + acpi_target_sleep_state;
725 /*
Huang Yingee85f542012-06-23 10:23:48 +0800726 * If the sleep state is S0, the lowest limit from ACPI is D3,
727 * but if the device has _S0W, we will use the value from _S0W
728 * as the lowest limit from ACPI. Finally, we will constrain
729 * the lowest limit with the specified one.
Shaohua Lifd4aff12007-07-17 22:40:25 +0200730 */
731 d_min = ACPI_STATE_D0;
732 d_max = ACPI_STATE_D3;
733
734 /*
735 * If present, _SxD methods return the minimum D-state (highest power
736 * state) we can use for the corresponding S-states. Otherwise, the
737 * minimum D-state is D0 (ACPI 3.x).
738 *
739 * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer
740 * provided -- that's our fault recovery, we ignore retval.
741 */
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +0200742 if (acpi_target_sleep_state > ACPI_STATE_S0) {
Shaohua Lifd4aff12007-07-17 22:40:25 +0200743 acpi_evaluate_integer(handle, acpi_method, NULL, &d_min);
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +0200744 wakeup = device_may_wakeup(dev) && adev->wakeup.flags.valid
745 && adev->wakeup.sleep_state >= acpi_target_sleep_state;
746 } else if (dev_pm_qos_flags(dev, PM_QOS_FLAG_REMOTE_WAKEUP) !=
747 PM_QOS_FLAGS_NONE) {
748 wakeup = adev->wakeup.flags.valid;
749 }
Shaohua Lifd4aff12007-07-17 22:40:25 +0200750
751 /*
752 * If _PRW says we can wake up the system from the target sleep state,
753 * the D-state returned by _SxD is sufficient for that (we assume a
754 * wakeup-aware driver if wake is set). Still, if _SxW exists
755 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
756 * can wake the system. _S0W may be valid, too.
757 */
Rafael J. Wysocki8b713a82012-10-24 02:08:38 +0200758 if (wakeup) {
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100759 acpi_status status;
760
Shaohua Lifd4aff12007-07-17 22:40:25 +0200761 acpi_method[3] = 'W';
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100762 status = acpi_evaluate_integer(handle, acpi_method, NULL,
763 &d_max);
764 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200765 if (acpi_target_sleep_state != ACPI_STATE_S0 ||
766 status != AE_NOT_FOUND)
767 d_max = d_min;
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100768 } else if (d_max < d_min) {
769 /* Warn the user of the broken DSDT */
770 printk(KERN_WARNING "ACPI: Wrong value from %s\n",
771 acpi_method);
772 /* Sanitize it */
Shaohua Lifd4aff12007-07-17 22:40:25 +0200773 d_min = d_max;
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100774 }
Shaohua Lifd4aff12007-07-17 22:40:25 +0200775 }
776
Huang Yingee85f542012-06-23 10:23:48 +0800777 if (d_max_in < d_min)
778 return -EINVAL;
Shaohua Lifd4aff12007-07-17 22:40:25 +0200779 if (d_min_p)
780 *d_min_p = d_min;
Huang Yingee85f542012-06-23 10:23:48 +0800781 /* constrain d_max with specified lowest limit (max number) */
782 if (d_max > d_max_in) {
783 for (d_max = d_max_in; d_max > d_min; d_max--) {
784 if (adev->power.states[d_max].flags.valid)
785 break;
786 }
787 }
Shaohua Lifd4aff12007-07-17 22:40:25 +0200788 return d_max;
789}
Lin Ming3bd46602012-06-25 16:13:06 +0800790EXPORT_SYMBOL(acpi_pm_device_sleep_state);
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100791#endif /* CONFIG_PM */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200792
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200793#ifdef CONFIG_PM_RUNTIME
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200794/**
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200795 * acpi_pm_device_run_wake - Enable/disable remote wakeup for given device.
796 * @phys_dev: Device to enable/disable the platform to wake up.
797 * @enable: Whether to enable or disable the wakeup functionality.
Lin Mingb24e5092012-03-27 15:43:25 +0800798 *
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200799 * Find the ACPI device object corresponding to @phys_dev and try to
800 * enable/disable the GPE associated with it, so that it can generate
801 * wakeup signals for the device in response to external (remote) events.
Lin Mingb24e5092012-03-27 15:43:25 +0800802 */
803int acpi_pm_device_run_wake(struct device *phys_dev, bool enable)
804{
805 struct acpi_device *dev;
806 acpi_handle handle;
807
808 if (!device_run_wake(phys_dev))
809 return -EINVAL;
810
811 handle = DEVICE_ACPI_HANDLE(phys_dev);
812 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &dev))) {
813 dev_dbg(phys_dev, "ACPI handle has no context in %s!\n",
814 __func__);
815 return -ENODEV;
816 }
817
818 if (enable) {
819 acpi_enable_wakeup_device_power(dev, ACPI_STATE_S0);
820 acpi_enable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number);
821 } else {
822 acpi_disable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number);
823 acpi_disable_wakeup_device_power(dev);
824 }
825
826 return 0;
827}
Lin Ming3bd46602012-06-25 16:13:06 +0800828EXPORT_SYMBOL(acpi_pm_device_run_wake);
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200829#endif /* CONFIG_PM_RUNTIME */
Lin Mingb24e5092012-03-27 15:43:25 +0800830
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200831#ifdef CONFIG_PM_SLEEP
Lin Mingb24e5092012-03-27 15:43:25 +0800832/**
Rafael J. Wysockibdda27f2012-10-26 13:40:04 +0200833 * acpi_pm_device_sleep_wake - Enable or disable device to wake up the system.
834 * @dev: Device to enable/desible to wake up the system from sleep states.
835 * @enable: Whether to enable or disable @dev to wake up the system.
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200836 */
837int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
838{
839 acpi_handle handle;
840 struct acpi_device *adev;
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200841 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200842
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +0200843 if (!device_can_wakeup(dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200844 return -EINVAL;
845
846 handle = DEVICE_ACPI_HANDLE(dev);
847 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200848 dev_dbg(dev, "ACPI handle has no context in %s!\n", __func__);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200849 return -ENODEV;
850 }
851
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200852 error = enable ?
853 acpi_enable_wakeup_device_power(adev, acpi_target_sleep_state) :
854 acpi_disable_wakeup_device_power(adev);
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200855 if (!error)
856 dev_info(dev, "wake-up capability %s by ACPI\n",
857 enable ? "enabled" : "disabled");
858
859 return error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200860}
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200861#endif /* CONFIG_PM_SLEEP */
Shaohua Lifd4aff12007-07-17 22:40:25 +0200862
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400863static void acpi_power_off_prepare(void)
864{
865 /* Prepare to power off the system */
866 acpi_sleep_prepare(ACPI_STATE_S5);
Lin Ming3d97e422008-12-16 16:57:46 +0800867 acpi_disable_all_gpes();
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400868}
869
870static void acpi_power_off(void)
871{
872 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
Frank Seidel4d939152009-02-04 17:03:07 +0100873 printk(KERN_DEBUG "%s called\n", __func__);
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400874 local_irq_disable();
Len Brown3f6f49c2012-07-26 20:08:54 -0400875 acpi_enter_sleep_state(ACPI_STATE_S5);
Len Brown96f15ef2009-04-17 23:32:20 -0400876}
877
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500878int __init acpi_sleep_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200880 acpi_status status;
881 u8 type_a, type_b;
882#ifdef CONFIG_SUSPEND
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500883 int i = 0;
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700884
885 dmi_check_system(acpisleep_dmi_table);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200886#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887
888 if (acpi_disabled)
889 return 0;
890
Frans Pop5a50fe72007-09-20 22:27:44 +0200891 sleep_states[ACPI_STATE_S0] = 1;
892 printk(KERN_INFO PREFIX "(supports S0");
893
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200894#ifdef CONFIG_SUSPEND
Frans Pop5a50fe72007-09-20 22:27:44 +0200895 for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 status = acpi_get_sleep_type_data(i, &type_a, &type_b);
897 if (ACPI_SUCCESS(status)) {
898 sleep_states[i] = 1;
Kay Sieversbe964472012-05-08 17:24:20 +0200899 printk(KERN_CONT " S%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200903 suspend_set_ops(old_suspend_ordering ?
904 &acpi_suspend_ops_old : &acpi_suspend_ops);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200905#endif
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700906
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200907#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200908 status = acpi_get_sleep_type_data(ACPI_STATE_S4, &type_a, &type_b);
909 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200910 hibernation_set_ops(old_suspend_ordering ?
911 &acpi_hibernation_ops_old : &acpi_hibernation_ops);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200912 sleep_states[ACPI_STATE_S4] = 1;
Kay Sieversbe964472012-05-08 17:24:20 +0200913 printk(KERN_CONT " S4");
Shaohua Libdfe6b72008-07-23 21:28:41 -0700914 if (!nosigcheck) {
Lin Ming3d97e422008-12-16 16:57:46 +0800915 acpi_get_table(ACPI_SIG_FACS, 1,
Shaohua Libdfe6b72008-07-23 21:28:41 -0700916 (struct acpi_table_header **)&facs);
917 if (facs)
918 s4_hardware_signature =
919 facs->hardware_signature;
920 }
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200921 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700922#endif
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400923 status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
924 if (ACPI_SUCCESS(status)) {
925 sleep_states[ACPI_STATE_S5] = 1;
Kay Sieversbe964472012-05-08 17:24:20 +0200926 printk(KERN_CONT " S5");
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400927 pm_power_off_prepare = acpi_power_off_prepare;
928 pm_power_off = acpi_power_off;
929 }
Kay Sieversbe964472012-05-08 17:24:20 +0200930 printk(KERN_CONT ")\n");
Zhao Yakuie49f7112008-08-12 10:20:22 +0800931 /*
932 * Register the tts_notifier to reboot notifier list so that the _TTS
933 * object can also be evaluated when the system enters S5.
934 */
935 register_reboot_notifier(&tts_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936 return 0;
937}