blob: 74ee4ab577b67b2dd22b1068240c4c651f1e2e3a [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];
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
Zhao Yakuie49f7112008-08-12 10:20:22 +080061static void acpi_sleep_tts_switch(u32 acpi_state)
62{
63 union acpi_object in_arg = { ACPI_TYPE_INTEGER };
64 struct acpi_object_list arg_list = { 1, &in_arg };
65 acpi_status status = AE_OK;
66
67 in_arg.integer.value = acpi_state;
68 status = acpi_evaluate_object(NULL, "\\_TTS", &arg_list, NULL);
69 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
70 /*
71 * OS can't evaluate the _TTS object correctly. Some warning
72 * message will be printed. But it won't break anything.
73 */
74 printk(KERN_NOTICE "Failure in evaluating _TTS object\n");
75 }
76}
77
78static int tts_notify_reboot(struct notifier_block *this,
79 unsigned long code, void *x)
80{
81 acpi_sleep_tts_switch(ACPI_STATE_S5);
82 return NOTIFY_DONE;
83}
84
85static struct notifier_block tts_notifier = {
86 .notifier_call = tts_notify_reboot,
87 .next = NULL,
88 .priority = 0,
89};
90
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +010091static int acpi_sleep_prepare(u32 acpi_state)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020092{
93#ifdef CONFIG_ACPI_SLEEP
94 /* do we have a wakeup address for S2 and S3? */
95 if (acpi_state == ACPI_STATE_S3) {
H. Peter Anvin319b6ff2012-05-30 12:33:41 +030096 if (!acpi_wakeup_address)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020097 return -EFAULT;
H. Peter Anvin319b6ff2012-05-30 12:33:41 +030098 acpi_set_firmware_waking_vector(acpi_wakeup_address);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020099
100 }
101 ACPI_FLUSH_CPU_CACHE();
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +0200102#endif
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +0100103 printk(KERN_INFO PREFIX "Preparing to enter system sleep state S%d\n",
104 acpi_state);
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -0400105 acpi_enable_wakeup_devices(acpi_state);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +0200106 acpi_enter_sleep_state_prep(acpi_state);
107 return 0;
108}
109
Rafael J. Wysocki5d1e0722008-10-22 14:58:43 -0400110#ifdef CONFIG_ACPI_SLEEP
Jan Beulich091aad62010-12-07 14:52:25 +0000111static u32 acpi_target_sleep_state = ACPI_STATE_S0;
112
Zhang Ruid7f0eea2009-12-30 15:36:42 +0800113/*
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200114 * The ACPI specification wants us to save NVS memory regions during hibernation
115 * and to restore them during the subsequent resume. Windows does that also for
116 * suspend to RAM. However, it is known that this mechanism does not work on
117 * all machines, so we allow the user to disable it with the help of the
118 * 'acpi_sleep=nonvs' kernel command line option.
119 */
120static bool nvs_nosave;
121
122void __init acpi_nvs_nosave(void)
123{
124 nvs_nosave = true;
125}
126
127/*
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200128 * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the
129 * user to request that behavior by using the 'acpi_old_suspend_ordering'
130 * kernel command line option that causes the following variable to be set.
131 */
132static bool old_suspend_ordering;
133
134void __init acpi_old_suspend_ordering(void)
135{
136 old_suspend_ordering = true;
137}
138
139/**
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200140 * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200141 */
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200142static int acpi_pm_freeze(void)
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200143{
Lin Ming3d97e422008-12-16 16:57:46 +0800144 acpi_disable_all_gpes();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200145 acpi_os_wait_events_complete(NULL);
Rafael J. Wysockife955682010-04-09 01:40:38 +0200146 acpi_ec_block_transactions();
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200147 return 0;
148}
149
150/**
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200151 * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
152 */
153static int acpi_pm_pre_suspend(void)
154{
155 acpi_pm_freeze();
Jiri Slaby26fcaf62011-01-07 01:42:31 +0100156 return suspend_nvs_save();
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200157}
158
159/**
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200160 * __acpi_pm_prepare - Prepare the platform to enter the target state.
161 *
162 * If necessary, set the firmware waking vector and do arch-specific
163 * nastiness to get the wakeup code to the waking vector.
164 */
165static int __acpi_pm_prepare(void)
166{
167 int error = acpi_sleep_prepare(acpi_target_sleep_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200168 if (error)
169 acpi_target_sleep_state = ACPI_STATE_S0;
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200170
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200171 return error;
172}
173
174/**
175 * acpi_pm_prepare - Prepare the platform to enter the target sleep
176 * state and disable the GPEs.
177 */
178static int acpi_pm_prepare(void)
179{
180 int error = __acpi_pm_prepare();
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200181 if (!error)
Jiri Slaby26fcaf62011-01-07 01:42:31 +0100182 error = acpi_pm_pre_suspend();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200183
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200184 return error;
185}
186
187/**
188 * acpi_pm_finish - Instruct the platform to leave a sleep state.
189 *
190 * This is called after we wake back up (or if entering the sleep state
191 * failed).
192 */
193static void acpi_pm_finish(void)
194{
195 u32 acpi_state = acpi_target_sleep_state;
196
Len Brown42de5532010-06-12 01:15:40 -0400197 acpi_ec_unblock_transactions();
Rafael J. Wysockid551d812011-01-19 22:27:55 +0100198 suspend_nvs_free();
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400199
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200200 if (acpi_state == ACPI_STATE_S0)
201 return;
202
203 printk(KERN_INFO PREFIX "Waking up from system sleep state S%d\n",
204 acpi_state);
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -0400205 acpi_disable_wakeup_devices(acpi_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200206 acpi_leave_sleep_state(acpi_state);
207
208 /* reset firmware waking vector */
209 acpi_set_firmware_waking_vector((acpi_physical_address) 0);
210
211 acpi_target_sleep_state = ACPI_STATE_S0;
212}
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();
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400281 status = acpi_enter_sleep_state(acpi_state, wake_sleep_flags);
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
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100295 /* Reprogram control registers and execute _BFS */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400296 acpi_leave_sleep_state_prep(acpi_state, wake_sleep_flags);
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 ]
301 */
302 if (ACPI_SUCCESS(status) && (acpi_state == ACPI_STATE_S3))
303 acpi_clear_event(ACPI_EVENT_POWER_BUTTON);
304
Shaohua Lia3627f62007-06-20 09:17:58 +0800305 /*
306 * Disable and clear GPE status before interrupt is enabled. Some GPEs
307 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
308 * acpi_leave_sleep_state will reenable specific GPEs later
309 */
Lin Ming3d97e422008-12-16 16:57:46 +0800310 acpi_disable_all_gpes();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200311 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200312 acpi_ec_unblock_transactions_early();
Shaohua Lia3627f62007-06-20 09:17:58 +0800313
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400314 suspend_nvs_restore();
315
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
317}
318
Len Brown2c6e33c2008-04-23 18:02:52 -0400319static int acpi_suspend_state_valid(suspend_state_t pm_state)
Shaohua Lieb9289e2005-10-30 15:00:01 -0800320{
Johannes Berge8c9c502007-04-30 15:09:54 -0700321 u32 acpi_state;
Shaohua Lieb9289e2005-10-30 15:00:01 -0800322
Johannes Berge8c9c502007-04-30 15:09:54 -0700323 switch (pm_state) {
324 case PM_SUSPEND_ON:
325 case PM_SUSPEND_STANDBY:
326 case PM_SUSPEND_MEM:
327 acpi_state = acpi_suspend_states[pm_state];
328
329 return sleep_states[acpi_state];
330 default:
331 return 0;
332 }
Shaohua Lieb9289e2005-10-30 15:00:01 -0800333}
334
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100335static const struct platform_suspend_ops acpi_suspend_ops = {
Len Brown2c6e33c2008-04-23 18:02:52 -0400336 .valid = acpi_suspend_state_valid,
337 .begin = acpi_suspend_begin,
Rafael J. Wysocki6a7c7ea2009-04-19 20:08:42 +0200338 .prepare_late = acpi_pm_prepare,
Len Brown2c6e33c2008-04-23 18:02:52 -0400339 .enter = acpi_suspend_enter,
Rafael J. Wysocki618d7fd2010-07-02 00:14:57 +0200340 .wake = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200341 .end = acpi_pm_end,
342};
343
344/**
345 * acpi_suspend_begin_old - Set the target system sleep state to the
346 * state associated with given @pm_state, if supported, and
347 * execute the _PTS control method. This function is used if the
348 * pre-ACPI 2.0 suspend ordering has been requested.
349 */
350static int acpi_suspend_begin_old(suspend_state_t pm_state)
351{
352 int error = acpi_suspend_begin(pm_state);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200353 if (!error)
354 error = __acpi_pm_prepare();
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200355
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200356 return error;
357}
358
359/*
360 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
361 * been requested.
362 */
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100363static const struct platform_suspend_ops acpi_suspend_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200364 .valid = acpi_suspend_state_valid,
365 .begin = acpi_suspend_begin_old,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200366 .prepare_late = acpi_pm_pre_suspend,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200367 .enter = acpi_suspend_enter,
Rafael J. Wysocki618d7fd2010-07-02 00:14:57 +0200368 .wake = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200369 .end = acpi_pm_end,
370 .recover = acpi_pm_finish,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371};
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700372
373static int __init init_old_suspend_ordering(const struct dmi_system_id *d)
374{
375 old_suspend_ordering = true;
376 return 0;
377}
378
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400379static int __init init_nvs_nosave(const struct dmi_system_id *d)
380{
381 acpi_nvs_nosave();
382 return 0;
383}
384
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700385static struct dmi_system_id __initdata acpisleep_dmi_table[] = {
386 {
387 .callback = init_old_suspend_ordering,
388 .ident = "Abit KN9 (nForce4 variant)",
389 .matches = {
390 DMI_MATCH(DMI_BOARD_VENDOR, "http://www.abit.com.tw/"),
391 DMI_MATCH(DMI_BOARD_NAME, "KN9 Series(NF-CK804)"),
392 },
393 },
Rafael J. Wysocki4fb507b2008-10-14 22:54:06 +0200394 {
395 .callback = init_old_suspend_ordering,
396 .ident = "HP xw4600 Workstation",
397 .matches = {
398 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
399 DMI_MATCH(DMI_PRODUCT_NAME, "HP xw4600 Workstation"),
400 },
401 },
Rafael J. Wysocki65df7842008-11-26 17:53:13 -0500402 {
Andy Whitcrofta1404492009-02-11 18:11:22 +0000403 .callback = init_old_suspend_ordering,
404 .ident = "Asus Pundit P1-AH2 (M2N8L motherboard)",
405 .matches = {
406 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTek Computer INC."),
407 DMI_MATCH(DMI_BOARD_NAME, "M2N8L"),
408 },
409 },
Zhang Rui45e77982009-03-15 22:13:44 -0400410 {
Zhao Yakui2a9ef8e2009-03-18 16:36:25 +0800411 .callback = init_old_suspend_ordering,
412 .ident = "Panasonic CF51-2L",
413 .matches = {
414 DMI_MATCH(DMI_BOARD_VENDOR,
415 "Matsushita Electric Industrial Co.,Ltd."),
416 DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
417 },
418 },
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400419 {
420 .callback = init_nvs_nosave,
Dave Jonesd11c78e2011-10-19 23:15:11 +0200421 .ident = "Sony Vaio VGN-FW21E",
422 .matches = {
423 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
424 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW21E"),
425 },
426 },
427 {
428 .callback = init_nvs_nosave,
Dave Jonesddf6ce42011-11-03 00:58:59 +0100429 .ident = "Sony Vaio VPCEB17FX",
430 .matches = {
431 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
432 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB17FX"),
433 },
434 },
435 {
436 .callback = init_nvs_nosave,
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400437 .ident = "Sony Vaio VGN-SR11M",
438 .matches = {
439 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
440 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR11M"),
441 },
442 },
443 {
444 .callback = init_nvs_nosave,
445 .ident = "Everex StepNote Series",
446 .matches = {
447 DMI_MATCH(DMI_SYS_VENDOR, "Everex Systems, Inc."),
448 DMI_MATCH(DMI_PRODUCT_NAME, "Everex StepNote Series"),
449 },
450 },
Rafael J. Wysockiaf489312010-10-17 21:01:21 +0200451 {
452 .callback = init_nvs_nosave,
453 .ident = "Sony Vaio VPCEB1Z1E",
454 .matches = {
455 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
456 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1Z1E"),
457 },
458 },
Rafael J. Wysocki291a73c2010-12-12 21:10:42 +0100459 {
460 .callback = init_nvs_nosave,
461 .ident = "Sony Vaio VGN-NW130D",
462 .matches = {
463 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
464 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NW130D"),
465 },
466 },
Rafael J. Wysocki7b330702011-01-06 23:37:01 +0100467 {
468 .callback = init_nvs_nosave,
Lan Tianyu93f77082012-01-21 09:23:56 +0800469 .ident = "Sony Vaio VPCCW29FX",
470 .matches = {
471 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
472 DMI_MATCH(DMI_PRODUCT_NAME, "VPCCW29FX"),
473 },
474 },
475 {
476 .callback = init_nvs_nosave,
Rafael J. Wysocki7b330702011-01-06 23:37:01 +0100477 .ident = "Averatec AV1020-ED2",
478 .matches = {
479 DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"),
480 DMI_MATCH(DMI_PRODUCT_NAME, "1000 Series"),
481 },
482 },
Zhang Ruibb0c5ed2011-07-30 01:40:48 -0400483 {
484 .callback = init_old_suspend_ordering,
485 .ident = "Asus A8N-SLI DELUXE",
486 .matches = {
487 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
488 DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI DELUXE"),
489 },
490 },
491 {
492 .callback = init_old_suspend_ordering,
493 .ident = "Asus A8N-SLI Premium",
494 .matches = {
495 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
496 DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI Premium"),
497 },
498 },
Rafael J. Wysocki89e8ea12011-10-06 20:35:03 +0200499 {
500 .callback = init_nvs_nosave,
501 .ident = "Sony Vaio VGN-SR26GN_P",
502 .matches = {
503 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
504 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR26GN_P"),
505 },
506 },
Bogdan Radulescu731b25a2011-10-06 20:35:12 +0200507 {
508 .callback = init_nvs_nosave,
509 .ident = "Sony Vaio VGN-FW520F",
510 .matches = {
511 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
512 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW520F"),
513 },
514 },
Keng-Yu Lin5a50a7c2011-12-02 00:04:23 +0100515 {
516 .callback = init_nvs_nosave,
517 .ident = "Asus K54C",
518 .matches = {
519 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
520 DMI_MATCH(DMI_PRODUCT_NAME, "K54C"),
521 },
522 },
523 {
524 .callback = init_nvs_nosave,
525 .ident = "Asus K54HR",
526 .matches = {
527 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
528 DMI_MATCH(DMI_PRODUCT_NAME, "K54HR"),
529 },
530 },
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700531 {},
532};
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200533#endif /* CONFIG_SUSPEND */
534
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200535#ifdef CONFIG_HIBERNATION
Shaohua Libdfe6b72008-07-23 21:28:41 -0700536static unsigned long s4_hardware_signature;
537static struct acpi_table_facs *facs;
538static bool nosigcheck;
539
540void __init acpi_no_s4_hw_signature(void)
541{
542 nosigcheck = true;
543}
544
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100545static int acpi_hibernation_begin(void)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700546{
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100547 int error;
548
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200549 error = nvs_nosave ? 0 : suspend_nvs_alloc();
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100550 if (!error) {
551 acpi_target_sleep_state = ACPI_STATE_S4;
552 acpi_sleep_tts_switch(acpi_target_sleep_state);
553 }
554
555 return error;
556}
557
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700558static int acpi_hibernation_enter(void)
559{
560 acpi_status status = AE_OK;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700561
562 ACPI_FLUSH_CPU_CACHE();
563
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700564 /* This shouldn't return. If it returns, we have a problem */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400565 status = acpi_enter_sleep_state(ACPI_STATE_S4, wake_sleep_flags);
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100566 /* Reprogram control registers and execute _BFS */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400567 acpi_leave_sleep_state_prep(ACPI_STATE_S4, wake_sleep_flags);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700568
569 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
570}
571
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700572static void acpi_hibernation_leave(void)
573{
574 /*
575 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
576 * enable it here.
577 */
578 acpi_enable();
Rafael J. Wysockic95d47a2008-01-08 00:05:21 +0100579 /* Reprogram control registers and execute _BFS */
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400580 acpi_leave_sleep_state_prep(ACPI_STATE_S4, wake_sleep_flags);
Shaohua Libdfe6b72008-07-23 21:28:41 -0700581 /* Check the hardware signature */
582 if (facs && s4_hardware_signature != facs->hardware_signature) {
583 printk(KERN_EMERG "ACPI: Hardware changed while hibernated, "
584 "cannot resume!\n");
585 panic("ACPI S4 hardware signature mismatch");
586 }
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100587 /* Restore the NVS memory area */
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400588 suspend_nvs_restore();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200589 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200590 acpi_ec_unblock_transactions_early();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700591}
592
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200593static void acpi_pm_thaw(void)
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100594{
Rafael J. Wysockife955682010-04-09 01:40:38 +0200595 acpi_ec_unblock_transactions();
Lin Ming3d97e422008-12-16 16:57:46 +0800596 acpi_enable_all_runtime_gpes();
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700597}
598
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100599static const struct platform_hibernation_ops acpi_hibernation_ops = {
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100600 .begin = acpi_hibernation_begin,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200601 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200602 .pre_snapshot = acpi_pm_prepare,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400603 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200604 .prepare = acpi_pm_prepare,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700605 .enter = acpi_hibernation_enter,
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700606 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200607 .pre_restore = acpi_pm_freeze,
608 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700609};
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200610
611/**
612 * acpi_hibernation_begin_old - Set the target system sleep state to
613 * ACPI_STATE_S4 and execute the _PTS control method. This
614 * function is used if the pre-ACPI 2.0 suspend ordering has been
615 * requested.
616 */
617static int acpi_hibernation_begin_old(void)
618{
Zhao Yakuie49f7112008-08-12 10:20:22 +0800619 int error;
620 /*
621 * The _TTS object should always be evaluated before the _PTS object.
622 * When the old_suspended_ordering is true, the _PTS object is
623 * evaluated in the acpi_sleep_prepare.
624 */
625 acpi_sleep_tts_switch(ACPI_STATE_S4);
626
627 error = acpi_sleep_prepare(ACPI_STATE_S4);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200628
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100629 if (!error) {
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200630 if (!nvs_nosave)
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400631 error = suspend_nvs_alloc();
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100632 if (!error)
633 acpi_target_sleep_state = ACPI_STATE_S4;
634 }
635 return error;
636}
637
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200638/*
639 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
640 * been requested.
641 */
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100642static const struct platform_hibernation_ops acpi_hibernation_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200643 .begin = acpi_hibernation_begin_old,
644 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200645 .pre_snapshot = acpi_pm_pre_suspend,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200646 .prepare = acpi_pm_freeze,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400647 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200648 .enter = acpi_hibernation_enter,
649 .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. Wysockid8f3de02008-06-12 23:24:06 +0200652 .recover = acpi_pm_finish,
653};
654#endif /* CONFIG_HIBERNATION */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700655
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200656int acpi_suspend(u32 acpi_state)
657{
658 suspend_state_t states[] = {
659 [1] = PM_SUSPEND_STANDBY,
660 [3] = PM_SUSPEND_MEM,
661 [5] = PM_SUSPEND_MAX
662 };
663
664 if (acpi_state < 6 && states[acpi_state])
665 return pm_suspend(states[acpi_state]);
666 if (acpi_state == 4)
667 return hibernate();
668 return -EINVAL;
669}
670
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100671#ifdef CONFIG_PM
Shaohua Lifd4aff12007-07-17 22:40:25 +0200672/**
673 * acpi_pm_device_sleep_state - return preferred power state of ACPI device
674 * in the system sleep state given by %acpi_target_sleep_state
David Brownell2fe2de52008-06-05 01:15:40 +0200675 * @dev: device to examine; its driver model wakeup flags control
676 * whether it should be able to wake up the system
Shaohua Lifd4aff12007-07-17 22:40:25 +0200677 * @d_min_p: used to store the upper limit of allowed states range
678 * Return value: preferred power state of the device on success, -ENODEV on
679 * failure (ie. if there's no 'struct acpi_device' for @dev)
680 *
681 * Find the lowest power (highest number) ACPI device power state that
682 * device @dev can be in while the system is in the sleep state represented
683 * by %acpi_target_sleep_state. If @wake is nonzero, the device should be
684 * able to wake up the system from this sleep state. If @d_min_p is set,
685 * the highest power (lowest number) device power state of @dev allowed
686 * in this system sleep state is stored at the location pointed to by it.
687 *
688 * The caller must ensure that @dev is valid before using this function.
689 * The caller is also responsible for figuring out if the device is
690 * supposed to be able to wake up the system and passing this information
691 * via @wake.
692 */
693
David Brownell2fe2de52008-06-05 01:15:40 +0200694int acpi_pm_device_sleep_state(struct device *dev, int *d_min_p)
Shaohua Lifd4aff12007-07-17 22:40:25 +0200695{
696 acpi_handle handle = DEVICE_ACPI_HANDLE(dev);
697 struct acpi_device *adev;
698 char acpi_method[] = "_SxD";
Matthew Wilcox27663c52008-10-10 02:22:59 -0400699 unsigned long long d_min, d_max;
Shaohua Lifd4aff12007-07-17 22:40:25 +0200700
701 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
Shaohua Liead77592007-08-23 15:01:13 +0800702 printk(KERN_DEBUG "ACPI handle has no context!\n");
Shaohua Lifd4aff12007-07-17 22:40:25 +0200703 return -ENODEV;
704 }
705
706 acpi_method[2] = '0' + acpi_target_sleep_state;
707 /*
708 * If the sleep state is S0, we will return D3, but if the device has
709 * _S0W, we will use the value from _S0W
710 */
711 d_min = ACPI_STATE_D0;
712 d_max = ACPI_STATE_D3;
713
714 /*
715 * If present, _SxD methods return the minimum D-state (highest power
716 * state) we can use for the corresponding S-states. Otherwise, the
717 * minimum D-state is D0 (ACPI 3.x).
718 *
719 * NOTE: We rely on acpi_evaluate_integer() not clobbering the integer
720 * provided -- that's our fault recovery, we ignore retval.
721 */
722 if (acpi_target_sleep_state > ACPI_STATE_S0)
723 acpi_evaluate_integer(handle, acpi_method, NULL, &d_min);
724
725 /*
726 * If _PRW says we can wake up the system from the target sleep state,
727 * the D-state returned by _SxD is sufficient for that (we assume a
728 * wakeup-aware driver if wake is set). Still, if _SxW exists
729 * (ACPI 3.x), it should return the maximum (lowest power) D-state that
730 * can wake the system. _S0W may be valid, too.
731 */
732 if (acpi_target_sleep_state == ACPI_STATE_S0 ||
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200733 (device_may_wakeup(dev) &&
Shaohua Lifd4aff12007-07-17 22:40:25 +0200734 adev->wakeup.sleep_state <= acpi_target_sleep_state)) {
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100735 acpi_status status;
736
Shaohua Lifd4aff12007-07-17 22:40:25 +0200737 acpi_method[3] = 'W';
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100738 status = acpi_evaluate_integer(handle, acpi_method, NULL,
739 &d_max);
740 if (ACPI_FAILURE(status)) {
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200741 if (acpi_target_sleep_state != ACPI_STATE_S0 ||
742 status != AE_NOT_FOUND)
743 d_max = d_min;
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100744 } else if (d_max < d_min) {
745 /* Warn the user of the broken DSDT */
746 printk(KERN_WARNING "ACPI: Wrong value from %s\n",
747 acpi_method);
748 /* Sanitize it */
Shaohua Lifd4aff12007-07-17 22:40:25 +0200749 d_min = d_max;
Rafael J. Wysockiad3399c2008-01-11 00:10:38 +0100750 }
Shaohua Lifd4aff12007-07-17 22:40:25 +0200751 }
752
753 if (d_min_p)
754 *d_min_p = d_min;
755 return d_max;
756}
Rafael J. Wysockiaa338602011-02-11 00:06:54 +0100757#endif /* CONFIG_PM */
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200758
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200759#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200760/**
Lin Mingb24e5092012-03-27 15:43:25 +0800761 * acpi_pm_device_run_wake - Enable/disable wake-up for given device.
762 * @phys_dev: Device to enable/disable the platform to wake-up the system for.
763 * @enable: Whether enable or disable the wake-up functionality.
764 *
765 * Find the ACPI device object corresponding to @pci_dev and try to
766 * enable/disable the GPE associated with it.
767 */
768int acpi_pm_device_run_wake(struct device *phys_dev, bool enable)
769{
770 struct acpi_device *dev;
771 acpi_handle handle;
772
773 if (!device_run_wake(phys_dev))
774 return -EINVAL;
775
776 handle = DEVICE_ACPI_HANDLE(phys_dev);
777 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &dev))) {
778 dev_dbg(phys_dev, "ACPI handle has no context in %s!\n",
779 __func__);
780 return -ENODEV;
781 }
782
783 if (enable) {
784 acpi_enable_wakeup_device_power(dev, ACPI_STATE_S0);
785 acpi_enable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number);
786 } else {
787 acpi_disable_gpe(dev->wakeup.gpe_device, dev->wakeup.gpe_number);
788 acpi_disable_wakeup_device_power(dev);
789 }
790
791 return 0;
792}
793
794/**
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200795 * acpi_pm_device_sleep_wake - enable or disable the system wake-up
796 * capability of given device
797 * @dev: device to handle
798 * @enable: 'true' - enable, 'false' - disable the wake-up capability
799 */
800int acpi_pm_device_sleep_wake(struct device *dev, bool enable)
801{
802 acpi_handle handle;
803 struct acpi_device *adev;
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200804 int error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200805
Rafael J. Wysocki0baed8d2009-09-08 23:16:24 +0200806 if (!device_can_wakeup(dev))
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200807 return -EINVAL;
808
809 handle = DEVICE_ACPI_HANDLE(dev);
810 if (!handle || ACPI_FAILURE(acpi_bus_get_device(handle, &adev))) {
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200811 dev_dbg(dev, "ACPI handle has no context in %s!\n", __func__);
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200812 return -ENODEV;
813 }
814
Rafael J. Wysockie8b6f972010-06-25 01:18:39 +0200815 error = enable ?
816 acpi_enable_wakeup_device_power(adev, acpi_target_sleep_state) :
817 acpi_disable_wakeup_device_power(adev);
Rafael J. Wysockidf8db912009-09-08 23:13:49 +0200818 if (!error)
819 dev_info(dev, "wake-up capability %s by ACPI\n",
820 enable ? "enabled" : "disabled");
821
822 return error;
Rafael J. Wysockieb9d0fe2008-07-07 03:34:48 +0200823}
Rafael J. Wysocki761afb82010-10-14 23:24:13 +0200824#endif /* CONFIG_PM_SLEEP */
Shaohua Lifd4aff12007-07-17 22:40:25 +0200825
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400826static void acpi_power_off_prepare(void)
827{
828 /* Prepare to power off the system */
829 acpi_sleep_prepare(ACPI_STATE_S5);
Lin Ming3d97e422008-12-16 16:57:46 +0800830 acpi_disable_all_gpes();
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400831}
832
833static void acpi_power_off(void)
834{
835 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
Frank Seidel4d939152009-02-04 17:03:07 +0100836 printk(KERN_DEBUG "%s called\n", __func__);
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400837 local_irq_disable();
Konrad Rzeszutek Wilk2a14e542012-04-22 23:03:17 -0400838 acpi_enter_sleep_state(ACPI_STATE_S5, wake_sleep_flags);
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400839}
840
Len Brown96f15ef2009-04-17 23:32:20 -0400841/*
842 * ACPI 2.0 created the optional _GTS and _BFS,
843 * but industry adoption has been neither rapid nor broad.
844 *
845 * Linux gets into trouble when it executes poorly validated
846 * paths through the BIOS, so disable _GTS and _BFS by default,
847 * but do speak up and offer the option to enable them.
848 */
Stephen Hemminger01eac602010-10-18 18:47:25 -0700849static void __init acpi_gts_bfs_check(void)
Len Brown96f15ef2009-04-17 23:32:20 -0400850{
851 acpi_handle dummy;
852
Bob Moore4efeeec2012-03-21 09:42:45 +0800853 if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_PATHNAME__GTS, &dummy)))
Len Brown96f15ef2009-04-17 23:32:20 -0400854 {
855 printk(KERN_NOTICE PREFIX "BIOS offers _GTS\n");
856 printk(KERN_NOTICE PREFIX "If \"acpi.gts=1\" improves suspend, "
857 "please notify linux-acpi@vger.kernel.org\n");
858 }
Bob Moore4efeeec2012-03-21 09:42:45 +0800859 if (ACPI_SUCCESS(acpi_get_handle(ACPI_ROOT_OBJECT, METHOD_PATHNAME__BFS, &dummy)))
Len Brown96f15ef2009-04-17 23:32:20 -0400860 {
861 printk(KERN_NOTICE PREFIX "BIOS offers _BFS\n");
862 printk(KERN_NOTICE PREFIX "If \"acpi.bfs=1\" improves resume, "
863 "please notify linux-acpi@vger.kernel.org\n");
864 }
865}
866
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500867int __init acpi_sleep_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200869 acpi_status status;
870 u8 type_a, type_b;
871#ifdef CONFIG_SUSPEND
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500872 int i = 0;
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700873
874 dmi_check_system(acpisleep_dmi_table);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200875#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
877 if (acpi_disabled)
878 return 0;
879
Frans Pop5a50fe72007-09-20 22:27:44 +0200880 sleep_states[ACPI_STATE_S0] = 1;
881 printk(KERN_INFO PREFIX "(supports S0");
882
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200883#ifdef CONFIG_SUSPEND
Frans Pop5a50fe72007-09-20 22:27:44 +0200884 for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 status = acpi_get_sleep_type_data(i, &type_a, &type_b);
886 if (ACPI_SUCCESS(status)) {
887 sleep_states[i] = 1;
Kay Sieversbe964472012-05-08 17:24:20 +0200888 printk(KERN_CONT " S%d", i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200892 suspend_set_ops(old_suspend_ordering ?
893 &acpi_suspend_ops_old : &acpi_suspend_ops);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200894#endif
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700895
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200896#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200897 status = acpi_get_sleep_type_data(ACPI_STATE_S4, &type_a, &type_b);
898 if (ACPI_SUCCESS(status)) {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200899 hibernation_set_ops(old_suspend_ordering ?
900 &acpi_hibernation_ops_old : &acpi_hibernation_ops);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200901 sleep_states[ACPI_STATE_S4] = 1;
Kay Sieversbe964472012-05-08 17:24:20 +0200902 printk(KERN_CONT " S4");
Shaohua Libdfe6b72008-07-23 21:28:41 -0700903 if (!nosigcheck) {
Lin Ming3d97e422008-12-16 16:57:46 +0800904 acpi_get_table(ACPI_SIG_FACS, 1,
Shaohua Libdfe6b72008-07-23 21:28:41 -0700905 (struct acpi_table_header **)&facs);
906 if (facs)
907 s4_hardware_signature =
908 facs->hardware_signature;
909 }
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200910 }
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700911#endif
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400912 status = acpi_get_sleep_type_data(ACPI_STATE_S5, &type_a, &type_b);
913 if (ACPI_SUCCESS(status)) {
914 sleep_states[ACPI_STATE_S5] = 1;
Kay Sieversbe964472012-05-08 17:24:20 +0200915 printk(KERN_CONT " S5");
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400916 pm_power_off_prepare = acpi_power_off_prepare;
917 pm_power_off = acpi_power_off;
918 }
Kay Sieversbe964472012-05-08 17:24:20 +0200919 printk(KERN_CONT ")\n");
Zhao Yakuie49f7112008-08-12 10:20:22 +0800920 /*
921 * Register the tts_notifier to reboot notifier list so that the _TTS
922 * object can also be evaluated when the system enters S5.
923 */
924 register_reboot_notifier(&tts_notifier);
Len Brown96f15ef2009-04-17 23:32:20 -0400925 acpi_gts_bfs_check();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 return 0;
927}