blob: 7a2e4d45b266724c536ce87361c7eb1a2a6e007c [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>
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +020017#include <linux/interrupt.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/suspend.h>
Zhao Yakuie49f7112008-08-12 10:20:22 +080019#include <linux/reboot.h>
H. Peter Anvind1ee4332011-02-14 15:42:46 -080020#include <linux/acpi.h>
Lin Minga2ef5c42012-03-21 10:58:46 +080021#include <linux/module.h>
Sudeep Holla504997c2016-02-17 12:03:23 +000022#include <linux/syscore_ops.h>
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +040023#include <asm/io.h>
Todd E Brandtbb3632c2014-06-06 05:40:17 -070024#include <trace/events/power.h>
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +040025
Bjorn Helgaase60cc7a2009-03-13 12:08:26 -060026#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include "sleep.h"
28
Chen Yu13737182016-03-22 08:51:10 +080029/*
30 * Some HW-full platforms do not have _S5, so they may need
31 * to leverage efi power off for a shutdown.
32 */
33bool acpi_no_s5;
Stephen Hemminger01eac602010-10-18 18:47:25 -070034static u8 sleep_states[ACPI_S_STATE_COUNT];
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Zhao Yakuie49f7112008-08-12 10:20:22 +080036static void acpi_sleep_tts_switch(u32 acpi_state)
37{
Jiang Liu0db98202013-06-29 00:24:39 +080038 acpi_status status;
Zhao Yakuie49f7112008-08-12 10:20:22 +080039
Jiang Liu0db98202013-06-29 00:24:39 +080040 status = acpi_execute_simple_method(NULL, "\\_TTS", acpi_state);
Zhao Yakuie49f7112008-08-12 10:20:22 +080041 if (ACPI_FAILURE(status) && status != AE_NOT_FOUND) {
42 /*
43 * OS can't evaluate the _TTS object correctly. Some warning
44 * message will be printed. But it won't break anything.
45 */
46 printk(KERN_NOTICE "Failure in evaluating _TTS object\n");
47 }
48}
49
Rafael J. Wysocki9713adc2016-11-21 14:25:49 +010050static int tts_notify_reboot(struct notifier_block *this,
Zhao Yakuie49f7112008-08-12 10:20:22 +080051 unsigned long code, void *x)
52{
53 acpi_sleep_tts_switch(ACPI_STATE_S5);
54 return NOTIFY_DONE;
55}
56
Rafael J. Wysocki9713adc2016-11-21 14:25:49 +010057static struct notifier_block tts_notifier = {
58 .notifier_call = tts_notify_reboot,
Zhao Yakuie49f7112008-08-12 10:20:22 +080059 .next = NULL,
60 .priority = 0,
61};
62
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +010063static int acpi_sleep_prepare(u32 acpi_state)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020064{
65#ifdef CONFIG_ACPI_SLEEP
66 /* do we have a wakeup address for S2 and S3? */
67 if (acpi_state == ACPI_STATE_S3) {
H. Peter Anvin319b6ff2012-05-30 12:33:41 +030068 if (!acpi_wakeup_address)
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020069 return -EFAULT;
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +010070 acpi_set_waking_vector(acpi_wakeup_address);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020071
72 }
73 ACPI_FLUSH_CPU_CACHE();
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020074#endif
Rafael J. Wysockic9b6c8f2008-01-08 00:10:57 +010075 printk(KERN_INFO PREFIX "Preparing to enter system sleep state S%d\n",
76 acpi_state);
Rafael J. Wysocki78f5f022010-07-06 22:09:38 -040077 acpi_enable_wakeup_devices(acpi_state);
Alexey Starikovskiy2f3f22262007-09-24 14:33:21 +020078 acpi_enter_sleep_state_prep(acpi_state);
79 return 0;
80}
81
Rafael J. Wysockia4e90be2014-03-13 22:11:39 +010082static bool acpi_sleep_state_supported(u8 sleep_state)
83{
84 acpi_status status;
85 u8 type_a, type_b;
86
87 status = acpi_get_sleep_type_data(sleep_state, &type_a, &type_b);
88 return ACPI_SUCCESS(status) && (!acpi_gbl_reduced_hardware
89 || (acpi_gbl_FADT.sleep_control.address
90 && acpi_gbl_FADT.sleep_status.address));
91}
92
Rafael J. Wysocki5d1e0722008-10-22 14:58:43 -040093#ifdef CONFIG_ACPI_SLEEP
Jan Beulich091aad62010-12-07 14:52:25 +000094static u32 acpi_target_sleep_state = ACPI_STATE_S0;
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +010095
96u32 acpi_target_system_state(void)
97{
98 return acpi_target_sleep_state;
99}
Rafael J. Wysockifad16dd2014-05-08 23:22:15 +0200100EXPORT_SYMBOL_GPL(acpi_target_system_state);
Rafael J. Wysockia6ae7592012-11-02 01:40:53 +0100101
Rafael J. Wysockia5ca7342012-07-23 21:01:02 +0200102static bool pwr_btn_event_pending;
Jan Beulich091aad62010-12-07 14:52:25 +0000103
Zhang Ruid7f0eea2009-12-30 15:36:42 +0800104/*
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200105 * The ACPI specification wants us to save NVS memory regions during hibernation
106 * and to restore them during the subsequent resume. Windows does that also for
107 * suspend to RAM. However, it is known that this mechanism does not work on
108 * all machines, so we allow the user to disable it with the help of the
109 * 'acpi_sleep=nonvs' kernel command line option.
110 */
111static bool nvs_nosave;
112
113void __init acpi_nvs_nosave(void)
114{
115 nvs_nosave = true;
116}
117
118/*
Kristen Carlson Accardi1bad2f12012-10-26 13:39:15 +0200119 * The ACPI specification wants us to save NVS memory regions during hibernation
120 * but says nothing about saving NVS during S3. Not all versions of Windows
121 * save NVS on S3 suspend either, and it is clear that not all systems need
122 * NVS to be saved at S3 time. To improve suspend/resume time, allow the
123 * user to disable saving NVS on S3 if their system does not require it, but
124 * continue to save/restore NVS for S4 as specified.
125 */
126static bool nvs_nosave_s3;
127
128void __init acpi_nvs_nosave_s3(void)
129{
130 nvs_nosave_s3 = true;
131}
132
133/*
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200134 * ACPI 1.0 wants us to execute _PTS before suspending devices, so we allow the
135 * user to request that behavior by using the 'acpi_old_suspend_ordering'
136 * kernel command line option that causes the following variable to be set.
137 */
138static bool old_suspend_ordering;
139
140void __init acpi_old_suspend_ordering(void)
141{
142 old_suspend_ordering = true;
143}
144
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700145static int __init init_old_suspend_ordering(const struct dmi_system_id *d)
146{
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100147 acpi_old_suspend_ordering();
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700148 return 0;
149}
150
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400151static int __init init_nvs_nosave(const struct dmi_system_id *d)
152{
153 acpi_nvs_nosave();
154 return 0;
155}
156
Sachin Kamat3e4376f2013-08-07 17:16:57 +0530157static struct dmi_system_id acpisleep_dmi_table[] __initdata = {
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700158 {
159 .callback = init_old_suspend_ordering,
160 .ident = "Abit KN9 (nForce4 variant)",
161 .matches = {
162 DMI_MATCH(DMI_BOARD_VENDOR, "http://www.abit.com.tw/"),
163 DMI_MATCH(DMI_BOARD_NAME, "KN9 Series(NF-CK804)"),
164 },
165 },
Rafael J. Wysocki4fb507b2008-10-14 22:54:06 +0200166 {
167 .callback = init_old_suspend_ordering,
168 .ident = "HP xw4600 Workstation",
169 .matches = {
170 DMI_MATCH(DMI_SYS_VENDOR, "Hewlett-Packard"),
171 DMI_MATCH(DMI_PRODUCT_NAME, "HP xw4600 Workstation"),
172 },
173 },
Rafael J. Wysocki65df7842008-11-26 17:53:13 -0500174 {
Andy Whitcrofta1404492009-02-11 18:11:22 +0000175 .callback = init_old_suspend_ordering,
176 .ident = "Asus Pundit P1-AH2 (M2N8L motherboard)",
177 .matches = {
178 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTek Computer INC."),
179 DMI_MATCH(DMI_BOARD_NAME, "M2N8L"),
180 },
181 },
Zhang Rui45e77982009-03-15 22:13:44 -0400182 {
Zhao Yakui2a9ef8e2009-03-18 16:36:25 +0800183 .callback = init_old_suspend_ordering,
184 .ident = "Panasonic CF51-2L",
185 .matches = {
186 DMI_MATCH(DMI_BOARD_VENDOR,
187 "Matsushita Electric Industrial Co.,Ltd."),
188 DMI_MATCH(DMI_BOARD_NAME, "CF51-2L"),
189 },
190 },
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400191 {
192 .callback = init_nvs_nosave,
Joseph Salisbury66f2fda2013-02-05 00:16:29 +0000193 .ident = "Sony Vaio VGN-FW41E_H",
194 .matches = {
195 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
196 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW41E_H"),
197 },
198 },
199 {
200 .callback = init_nvs_nosave,
Dave Jonesd11c78e2011-10-19 23:15:11 +0200201 .ident = "Sony Vaio VGN-FW21E",
202 .matches = {
203 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
204 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW21E"),
205 },
206 },
207 {
208 .callback = init_nvs_nosave,
Fabio Valentini469dd1c2013-03-11 19:16:34 +0000209 .ident = "Sony Vaio VGN-FW21M",
210 .matches = {
211 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
212 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW21M"),
213 },
214 },
215 {
216 .callback = init_nvs_nosave,
Dave Jonesddf6ce42011-11-03 00:58:59 +0100217 .ident = "Sony Vaio VPCEB17FX",
218 .matches = {
219 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
220 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB17FX"),
221 },
222 },
223 {
224 .callback = init_nvs_nosave,
Rafael J. Wysocki53998642010-09-24 16:46:14 -0400225 .ident = "Sony Vaio VGN-SR11M",
226 .matches = {
227 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
228 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR11M"),
229 },
230 },
231 {
232 .callback = init_nvs_nosave,
233 .ident = "Everex StepNote Series",
234 .matches = {
235 DMI_MATCH(DMI_SYS_VENDOR, "Everex Systems, Inc."),
236 DMI_MATCH(DMI_PRODUCT_NAME, "Everex StepNote Series"),
237 },
238 },
Rafael J. Wysockiaf489312010-10-17 21:01:21 +0200239 {
240 .callback = init_nvs_nosave,
241 .ident = "Sony Vaio VPCEB1Z1E",
242 .matches = {
243 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
244 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1Z1E"),
245 },
246 },
Rafael J. Wysocki291a73c2010-12-12 21:10:42 +0100247 {
248 .callback = init_nvs_nosave,
249 .ident = "Sony Vaio VGN-NW130D",
250 .matches = {
251 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
252 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-NW130D"),
253 },
254 },
Rafael J. Wysocki7b330702011-01-06 23:37:01 +0100255 {
256 .callback = init_nvs_nosave,
Lan Tianyu93f77082012-01-21 09:23:56 +0800257 .ident = "Sony Vaio VPCCW29FX",
258 .matches = {
259 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
260 DMI_MATCH(DMI_PRODUCT_NAME, "VPCCW29FX"),
261 },
262 },
263 {
264 .callback = init_nvs_nosave,
Rafael J. Wysocki7b330702011-01-06 23:37:01 +0100265 .ident = "Averatec AV1020-ED2",
266 .matches = {
267 DMI_MATCH(DMI_SYS_VENDOR, "AVERATEC"),
268 DMI_MATCH(DMI_PRODUCT_NAME, "1000 Series"),
269 },
270 },
Zhang Ruibb0c5ed2011-07-30 01:40:48 -0400271 {
272 .callback = init_old_suspend_ordering,
273 .ident = "Asus A8N-SLI DELUXE",
274 .matches = {
275 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
276 DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI DELUXE"),
277 },
278 },
279 {
280 .callback = init_old_suspend_ordering,
281 .ident = "Asus A8N-SLI Premium",
282 .matches = {
283 DMI_MATCH(DMI_BOARD_VENDOR, "ASUSTeK Computer INC."),
284 DMI_MATCH(DMI_BOARD_NAME, "A8N-SLI Premium"),
285 },
286 },
Rafael J. Wysocki89e8ea12011-10-06 20:35:03 +0200287 {
288 .callback = init_nvs_nosave,
289 .ident = "Sony Vaio VGN-SR26GN_P",
290 .matches = {
291 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
292 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-SR26GN_P"),
293 },
294 },
Bogdan Radulescu731b25a2011-10-06 20:35:12 +0200295 {
296 .callback = init_nvs_nosave,
Lan Tianyu876ab792012-11-21 23:12:12 +0100297 .ident = "Sony Vaio VPCEB1S1E",
298 .matches = {
299 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
300 DMI_MATCH(DMI_PRODUCT_NAME, "VPCEB1S1E"),
301 },
302 },
303 {
304 .callback = init_nvs_nosave,
Bogdan Radulescu731b25a2011-10-06 20:35:12 +0200305 .ident = "Sony Vaio VGN-FW520F",
306 .matches = {
307 DMI_MATCH(DMI_SYS_VENDOR, "Sony Corporation"),
308 DMI_MATCH(DMI_PRODUCT_NAME, "VGN-FW520F"),
309 },
310 },
Keng-Yu Lin5a50a7c2011-12-02 00:04:23 +0100311 {
312 .callback = init_nvs_nosave,
313 .ident = "Asus K54C",
314 .matches = {
315 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
316 DMI_MATCH(DMI_PRODUCT_NAME, "K54C"),
317 },
318 },
319 {
320 .callback = init_nvs_nosave,
321 .ident = "Asus K54HR",
322 .matches = {
323 DMI_MATCH(DMI_SYS_VENDOR, "ASUSTeK Computer Inc."),
324 DMI_MATCH(DMI_PRODUCT_NAME, "K54HR"),
325 },
326 },
Carlos Corbachoe41fb7c2008-07-23 21:28:43 -0700327 {},
328};
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100329
Jan Beulich8b691c92015-01-23 08:12:06 +0000330static void __init acpi_sleep_dmi_check(void)
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100331{
Lan Tianyu821d6f032014-07-23 14:42:33 +0800332 int year;
333
334 if (dmi_get_date(DMI_BIOS_DATE, &year, NULL, NULL) && year >= 2012)
335 acpi_nvs_nosave_s3();
336
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100337 dmi_check_system(acpisleep_dmi_table);
338}
339
340/**
341 * acpi_pm_freeze - Disable the GPEs and suspend EC transactions.
342 */
343static int acpi_pm_freeze(void)
344{
345 acpi_disable_all_gpes();
346 acpi_os_wait_events_complete();
347 acpi_ec_block_transactions();
348 return 0;
349}
350
351/**
352 * acpi_pre_suspend - Enable wakeup devices, "freeze" EC and save NVS.
353 */
354static int acpi_pm_pre_suspend(void)
355{
356 acpi_pm_freeze();
357 return suspend_nvs_save();
358}
359
360/**
361 * __acpi_pm_prepare - Prepare the platform to enter the target state.
362 *
363 * If necessary, set the firmware waking vector and do arch-specific
364 * nastiness to get the wakeup code to the waking vector.
365 */
366static int __acpi_pm_prepare(void)
367{
368 int error = acpi_sleep_prepare(acpi_target_sleep_state);
369 if (error)
370 acpi_target_sleep_state = ACPI_STATE_S0;
371
372 return error;
373}
374
375/**
376 * acpi_pm_prepare - Prepare the platform to enter the target sleep
377 * state and disable the GPEs.
378 */
379static int acpi_pm_prepare(void)
380{
381 int error = __acpi_pm_prepare();
382 if (!error)
383 error = acpi_pm_pre_suspend();
384
385 return error;
386}
387
388static int find_powerf_dev(struct device *dev, void *data)
389{
390 struct acpi_device *device = to_acpi_device(dev);
391 const char *hid = acpi_device_hid(device);
392
393 return !strcmp(hid, ACPI_BUTTON_HID_POWERF);
394}
395
396/**
397 * acpi_pm_finish - Instruct the platform to leave a sleep state.
398 *
399 * This is called after we wake back up (or if entering the sleep state
400 * failed).
401 */
402static void acpi_pm_finish(void)
403{
404 struct device *pwr_btn_dev;
405 u32 acpi_state = acpi_target_sleep_state;
406
407 acpi_ec_unblock_transactions();
408 suspend_nvs_free();
409
410 if (acpi_state == ACPI_STATE_S0)
411 return;
412
413 printk(KERN_INFO PREFIX "Waking up from system sleep state S%d\n",
414 acpi_state);
415 acpi_disable_wakeup_devices(acpi_state);
416 acpi_leave_sleep_state(acpi_state);
417
418 /* reset firmware waking vector */
Rafael J. Wysockie3e9b572016-01-04 22:05:20 +0100419 acpi_set_waking_vector(0);
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100420
421 acpi_target_sleep_state = ACPI_STATE_S0;
422
Rafael J. Wysocki781d7372013-01-17 14:11:06 +0100423 acpi_resume_power_resources();
424
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100425 /* If we were woken with the fixed power button, provide a small
426 * hint to userspace in the form of a wakeup event on the fixed power
427 * button device (if it can be found).
428 *
429 * We delay the event generation til now, as the PM layer requires
430 * timekeeping to be running before we generate events. */
431 if (!pwr_btn_event_pending)
432 return;
433
434 pwr_btn_event_pending = false;
435 pwr_btn_dev = bus_find_device(&acpi_bus_type, NULL, NULL,
436 find_powerf_dev);
437 if (pwr_btn_dev) {
438 pm_wakeup_event(pwr_btn_dev, 0);
439 put_device(pwr_btn_dev);
440 }
441}
442
443/**
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200444 * acpi_pm_start - Start system PM transition.
445 */
446static void acpi_pm_start(u32 acpi_state)
447{
448 acpi_target_sleep_state = acpi_state;
449 acpi_sleep_tts_switch(acpi_target_sleep_state);
450 acpi_scan_lock_acquire();
451}
452
453/**
454 * acpi_pm_end - Finish up system PM transition.
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100455 */
456static void acpi_pm_end(void)
457{
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200458 acpi_scan_lock_release();
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100459 /*
460 * This is necessary in case acpi_pm_finish() is not called during a
461 * failing transition to a sleep state.
462 */
463 acpi_target_sleep_state = ACPI_STATE_S0;
464 acpi_sleep_tts_switch(acpi_target_sleep_state);
465}
466#else /* !CONFIG_ACPI_SLEEP */
467#define acpi_target_sleep_state ACPI_STATE_S0
468static inline void acpi_sleep_dmi_check(void) {}
469#endif /* CONFIG_ACPI_SLEEP */
470
471#ifdef CONFIG_SUSPEND
472static u32 acpi_suspend_states[] = {
473 [PM_SUSPEND_ON] = ACPI_STATE_S0,
474 [PM_SUSPEND_STANDBY] = ACPI_STATE_S1,
475 [PM_SUSPEND_MEM] = ACPI_STATE_S3,
476 [PM_SUSPEND_MAX] = ACPI_STATE_S5
477};
478
479/**
480 * acpi_suspend_begin - Set the target system sleep state to the state
481 * associated with given @pm_state, if supported.
482 */
483static int acpi_suspend_begin(suspend_state_t pm_state)
484{
485 u32 acpi_state = acpi_suspend_states[pm_state];
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200486 int error;
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100487
488 error = (nvs_nosave || nvs_nosave_s3) ? 0 : suspend_nvs_alloc();
489 if (error)
490 return error;
491
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200492 if (!sleep_states[acpi_state]) {
493 pr_err("ACPI does not support sleep state S%u\n", acpi_state);
494 return -ENOSYS;
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100495 }
Rafael J. Wysockief25ba02015-10-07 00:49:34 +0200496 if (acpi_state > ACPI_STATE_S1)
497 pm_set_suspend_via_firmware();
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200498
499 acpi_pm_start(acpi_state);
500 return 0;
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100501}
502
503/**
504 * acpi_suspend_enter - Actually enter a sleep state.
505 * @pm_state: ignored
506 *
507 * Flush caches and go to sleep. For STR we have to call arch-specific
508 * assembly, which in turn call acpi_enter_sleep_state().
509 * It's unfortunate, but it works. Please fix if you're feeling frisky.
510 */
511static int acpi_suspend_enter(suspend_state_t pm_state)
512{
513 acpi_status status = AE_OK;
514 u32 acpi_state = acpi_target_sleep_state;
515 int error;
516
517 ACPI_FLUSH_CPU_CACHE();
518
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700519 trace_suspend_resume(TPS("acpi_suspend"), acpi_state, true);
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100520 switch (acpi_state) {
521 case ACPI_STATE_S1:
522 barrier();
523 status = acpi_enter_sleep_state(acpi_state);
524 break;
525
526 case ACPI_STATE_S3:
Konrad Rzeszutek Wilkd6a77ea2013-05-14 17:09:16 +0000527 if (!acpi_suspend_lowlevel)
528 return -ENOSYS;
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100529 error = acpi_suspend_lowlevel();
530 if (error)
531 return error;
532 pr_info(PREFIX "Low-level resume complete\n");
Rafael J. Wysockief25ba02015-10-07 00:49:34 +0200533 pm_set_resume_via_firmware();
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100534 break;
535 }
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700536 trace_suspend_resume(TPS("acpi_suspend"), acpi_state, false);
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100537
538 /* This violates the spec but is required for bug compatibility. */
539 acpi_write_bit_register(ACPI_BITREG_SCI_ENABLE, 1);
540
541 /* Reprogram control registers */
542 acpi_leave_sleep_state_prep(acpi_state);
543
544 /* ACPI 3.0 specs (P62) says that it's the responsibility
545 * of the OSPM to clear the status bit [ implying that the
546 * POWER_BUTTON event should not reach userspace ]
547 *
548 * However, we do generate a small hint for userspace in the form of
549 * a wakeup event. We flag this condition for now and generate the
550 * event later, as we're currently too early in resume to be able to
551 * generate wakeup events.
552 */
553 if (ACPI_SUCCESS(status) && (acpi_state == ACPI_STATE_S3)) {
Al Stone51468a92013-11-20 15:45:51 -0700554 acpi_event_status pwr_btn_status = ACPI_EVENT_FLAG_DISABLED;
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100555
556 acpi_get_event_status(ACPI_EVENT_POWER_BUTTON, &pwr_btn_status);
557
558 if (pwr_btn_status & ACPI_EVENT_FLAG_SET) {
559 acpi_clear_event(ACPI_EVENT_POWER_BUTTON);
560 /* Flag for later */
561 pwr_btn_event_pending = true;
562 }
563 }
564
565 /*
566 * Disable and clear GPE status before interrupt is enabled. Some GPEs
567 * (like wakeup GPE) haven't handler, this can avoid such GPE misfire.
568 * acpi_leave_sleep_state will reenable specific GPEs later
569 */
570 acpi_disable_all_gpes();
571 /* Allow EC transactions to happen. */
572 acpi_ec_unblock_transactions_early();
573
574 suspend_nvs_restore();
575
576 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
577}
578
579static int acpi_suspend_state_valid(suspend_state_t pm_state)
580{
581 u32 acpi_state;
582
583 switch (pm_state) {
584 case PM_SUSPEND_ON:
585 case PM_SUSPEND_STANDBY:
586 case PM_SUSPEND_MEM:
587 acpi_state = acpi_suspend_states[pm_state];
588
589 return sleep_states[acpi_state];
590 default:
591 return 0;
592 }
593}
594
595static const struct platform_suspend_ops acpi_suspend_ops = {
596 .valid = acpi_suspend_state_valid,
597 .begin = acpi_suspend_begin,
598 .prepare_late = acpi_pm_prepare,
599 .enter = acpi_suspend_enter,
600 .wake = acpi_pm_finish,
601 .end = acpi_pm_end,
602};
603
604/**
605 * acpi_suspend_begin_old - Set the target system sleep state to the
606 * state associated with given @pm_state, if supported, and
607 * execute the _PTS control method. This function is used if the
608 * pre-ACPI 2.0 suspend ordering has been requested.
609 */
610static int acpi_suspend_begin_old(suspend_state_t pm_state)
611{
612 int error = acpi_suspend_begin(pm_state);
613 if (!error)
614 error = __acpi_pm_prepare();
615
616 return error;
617}
618
619/*
620 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
621 * been requested.
622 */
623static const struct platform_suspend_ops acpi_suspend_ops_old = {
624 .valid = acpi_suspend_state_valid,
625 .begin = acpi_suspend_begin_old,
626 .prepare_late = acpi_pm_pre_suspend,
627 .enter = acpi_suspend_enter,
628 .wake = acpi_pm_finish,
629 .end = acpi_pm_end,
630 .recover = acpi_pm_finish,
631};
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100632
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200633static int acpi_freeze_begin(void)
634{
635 acpi_scan_lock_acquire();
636 return 0;
637}
638
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200639static int acpi_freeze_prepare(void)
640{
Chen Yu7b02cce2015-03-27 18:08:48 +0800641 acpi_enable_wakeup_devices(ACPI_STATE_S0);
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200642 acpi_enable_all_wakeup_gpes();
Rafael J. Wysockic52fa702014-12-01 23:51:13 +0100643 acpi_os_wait_events_complete();
Chen Yu8c012752015-10-25 01:02:46 +0800644 if (acpi_sci_irq_valid())
645 enable_irq_wake(acpi_sci_irq);
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200646 return 0;
647}
648
649static void acpi_freeze_restore(void)
650{
Chen Yu7b02cce2015-03-27 18:08:48 +0800651 acpi_disable_wakeup_devices(ACPI_STATE_S0);
Chen Yu8c012752015-10-25 01:02:46 +0800652 if (acpi_sci_irq_valid())
653 disable_irq_wake(acpi_sci_irq);
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200654 acpi_enable_all_runtime_gpes();
655}
656
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200657static void acpi_freeze_end(void)
658{
659 acpi_scan_lock_release();
660}
661
662static const struct platform_freeze_ops acpi_freeze_ops = {
663 .begin = acpi_freeze_begin,
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200664 .prepare = acpi_freeze_prepare,
665 .restore = acpi_freeze_restore,
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200666 .end = acpi_freeze_end,
667};
668
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100669static void acpi_sleep_suspend_setup(void)
670{
671 int i;
672
Rafael J. Wysockia4e90be2014-03-13 22:11:39 +0100673 for (i = ACPI_STATE_S1; i < ACPI_STATE_S4; i++)
674 if (acpi_sleep_state_supported(i))
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100675 sleep_states[i] = 1;
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100676
677 suspend_set_ops(old_suspend_ordering ?
678 &acpi_suspend_ops_old : &acpi_suspend_ops);
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200679 freeze_set_ops(&acpi_freeze_ops);
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100680}
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200681
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100682#else /* !CONFIG_SUSPEND */
683static inline void acpi_sleep_suspend_setup(void) {}
684#endif /* !CONFIG_SUSPEND */
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200685
Sudeep Holla504997c2016-02-17 12:03:23 +0000686#ifdef CONFIG_PM_SLEEP
687static u32 saved_bm_rld;
688
689static int acpi_save_bm_rld(void)
690{
691 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_RLD, &saved_bm_rld);
692 return 0;
693}
694
695static void acpi_restore_bm_rld(void)
696{
697 u32 resumed_bm_rld = 0;
698
699 acpi_read_bit_register(ACPI_BITREG_BUS_MASTER_RLD, &resumed_bm_rld);
700 if (resumed_bm_rld == saved_bm_rld)
701 return;
702
703 acpi_write_bit_register(ACPI_BITREG_BUS_MASTER_RLD, saved_bm_rld);
704}
705
706static struct syscore_ops acpi_sleep_syscore_ops = {
707 .suspend = acpi_save_bm_rld,
708 .resume = acpi_restore_bm_rld,
709};
710
711void acpi_sleep_syscore_init(void)
712{
713 register_syscore_ops(&acpi_sleep_syscore_ops);
714}
715#else
716static inline void acpi_sleep_syscore_init(void) {}
717#endif /* CONFIG_PM_SLEEP */
718
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200719#ifdef CONFIG_HIBERNATION
Shaohua Libdfe6b72008-07-23 21:28:41 -0700720static unsigned long s4_hardware_signature;
721static struct acpi_table_facs *facs;
722static bool nosigcheck;
723
724void __init acpi_no_s4_hw_signature(void)
725{
726 nosigcheck = true;
727}
728
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100729static int acpi_hibernation_begin(void)
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700730{
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100731 int error;
732
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200733 error = nvs_nosave ? 0 : suspend_nvs_alloc();
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200734 if (!error)
735 acpi_pm_start(ACPI_STATE_S4);
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100736
737 return error;
738}
739
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700740static int acpi_hibernation_enter(void)
741{
742 acpi_status status = AE_OK;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700743
744 ACPI_FLUSH_CPU_CACHE();
745
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700746 /* This shouldn't return. If it returns, we have a problem */
Len Brown3f6f49c2012-07-26 20:08:54 -0400747 status = acpi_enter_sleep_state(ACPI_STATE_S4);
748 /* Reprogram control registers */
749 acpi_leave_sleep_state_prep(ACPI_STATE_S4);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700750
751 return ACPI_SUCCESS(status) ? 0 : -EFAULT;
752}
753
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700754static void acpi_hibernation_leave(void)
755{
Lukas Wunnerfbda4b32016-03-23 00:11:20 +0100756 pm_set_resume_via_firmware();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700757 /*
758 * If ACPI is not enabled by the BIOS and the boot kernel, we need to
759 * enable it here.
760 */
761 acpi_enable();
Len Brown3f6f49c2012-07-26 20:08:54 -0400762 /* Reprogram control registers */
763 acpi_leave_sleep_state_prep(ACPI_STATE_S4);
Shaohua Libdfe6b72008-07-23 21:28:41 -0700764 /* Check the hardware signature */
Oliver Neukum5c551e62014-01-10 10:51:53 +0100765 if (facs && s4_hardware_signature != facs->hardware_signature)
766 pr_crit("ACPI: Hardware changed while hibernated, success doubtful!\n");
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100767 /* Restore the NVS memory area */
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400768 suspend_nvs_restore();
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200769 /* Allow EC transactions to happen. */
Rafael J. Wysockife955682010-04-09 01:40:38 +0200770 acpi_ec_unblock_transactions_early();
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700771}
772
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200773static void acpi_pm_thaw(void)
Rafael J. Wysockif6bb13a2010-03-04 01:52:58 +0100774{
Rafael J. Wysockife955682010-04-09 01:40:38 +0200775 acpi_ec_unblock_transactions();
Lin Ming3d97e422008-12-16 16:57:46 +0800776 acpi_enable_all_runtime_gpes();
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700777}
778
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100779static const struct platform_hibernation_ops acpi_hibernation_ops = {
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100780 .begin = acpi_hibernation_begin,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200781 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200782 .pre_snapshot = acpi_pm_prepare,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400783 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200784 .prepare = acpi_pm_prepare,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700785 .enter = acpi_hibernation_enter,
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700786 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200787 .pre_restore = acpi_pm_freeze,
788 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700789};
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200790
791/**
792 * acpi_hibernation_begin_old - Set the target system sleep state to
793 * ACPI_STATE_S4 and execute the _PTS control method. This
794 * function is used if the pre-ACPI 2.0 suspend ordering has been
795 * requested.
796 */
797static int acpi_hibernation_begin_old(void)
798{
Zhao Yakuie49f7112008-08-12 10:20:22 +0800799 int error;
800 /*
801 * The _TTS object should always be evaluated before the _PTS object.
802 * When the old_suspended_ordering is true, the _PTS object is
803 * evaluated in the acpi_sleep_prepare.
804 */
805 acpi_sleep_tts_switch(ACPI_STATE_S4);
806
807 error = acpi_sleep_prepare(ACPI_STATE_S4);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200808
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100809 if (!error) {
Rafael J. Wysocki72ad5d72010-07-23 22:59:09 +0200810 if (!nvs_nosave)
Matthew Garrettdd4c4f12010-05-28 16:32:14 -0400811 error = suspend_nvs_alloc();
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200812 if (!error) {
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100813 acpi_target_sleep_state = ACPI_STATE_S4;
Rafael J. Wysockiad072772013-08-20 01:42:32 +0200814 acpi_scan_lock_acquire();
815 }
Rafael J. Wysocki3f4b0ef2008-10-26 20:52:15 +0100816 }
817 return error;
818}
819
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200820/*
821 * The following callbacks are used if the pre-ACPI 2.0 suspend ordering has
822 * been requested.
823 */
Lionel Debroux073ef1f2010-11-09 21:48:49 +0100824static const struct platform_hibernation_ops acpi_hibernation_ops_old = {
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200825 .begin = acpi_hibernation_begin_old,
826 .end = acpi_pm_end,
Rafael J. Wysockic5f7a1b2010-07-02 00:14:09 +0200827 .pre_snapshot = acpi_pm_pre_suspend,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200828 .prepare = acpi_pm_freeze,
Matthew Garrett2a6b6972010-05-28 16:32:15 -0400829 .finish = acpi_pm_finish,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200830 .enter = acpi_hibernation_enter,
831 .leave = acpi_hibernation_leave,
Rafael J. Wysockid5a64512010-04-09 01:39:40 +0200832 .pre_restore = acpi_pm_freeze,
833 .restore_cleanup = acpi_pm_thaw,
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200834 .recover = acpi_pm_finish,
835};
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100836
837static void acpi_sleep_hibernate_setup(void)
838{
Rafael J. Wysockia4e90be2014-03-13 22:11:39 +0100839 if (!acpi_sleep_state_supported(ACPI_STATE_S4))
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100840 return;
841
842 hibernation_set_ops(old_suspend_ordering ?
843 &acpi_hibernation_ops_old : &acpi_hibernation_ops);
844 sleep_states[ACPI_STATE_S4] = 1;
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100845 if (nosigcheck)
846 return;
847
848 acpi_get_table(ACPI_SIG_FACS, 1, (struct acpi_table_header **)&facs);
849 if (facs)
850 s4_hardware_signature = facs->hardware_signature;
851}
852#else /* !CONFIG_HIBERNATION */
853static inline void acpi_sleep_hibernate_setup(void) {}
854#endif /* !CONFIG_HIBERNATION */
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700855
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400856static void acpi_power_off_prepare(void)
857{
858 /* Prepare to power off the system */
859 acpi_sleep_prepare(ACPI_STATE_S5);
Lin Ming3d97e422008-12-16 16:57:46 +0800860 acpi_disable_all_gpes();
Rafael J. Wysockic52fa702014-12-01 23:51:13 +0100861 acpi_os_wait_events_complete();
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400862}
863
864static void acpi_power_off(void)
865{
866 /* acpi_sleep_prepare(ACPI_STATE_S5) should have already been called */
Frank Seidel4d939152009-02-04 17:03:07 +0100867 printk(KERN_DEBUG "%s called\n", __func__);
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400868 local_irq_disable();
Len Brown3f6f49c2012-07-26 20:08:54 -0400869 acpi_enter_sleep_state(ACPI_STATE_S5);
Len Brown96f15ef2009-04-17 23:32:20 -0400870}
871
Alexey Starikovskiyaafbcd12007-02-10 01:32:16 -0500872int __init acpi_sleep_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873{
Joe Perchesed4cf5b2013-02-22 07:37:36 +0000874 char supported[ACPI_S_STATE_COUNT * 3 + 1];
875 char *pos = supported;
876 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Zhang Rui0ac1b1d2012-11-30 12:57:03 +0100878 acpi_sleep_dmi_check();
879
Frans Pop5a50fe72007-09-20 22:27:44 +0200880 sleep_states[ACPI_STATE_S0] = 1;
Frans Pop5a50fe72007-09-20 22:27:44 +0200881
Sudeep Holla504997c2016-02-17 12:03:23 +0000882 acpi_sleep_syscore_init();
Rafael J. Wysocki02040f02013-01-17 14:11:09 +0100883 acpi_sleep_suspend_setup();
884 acpi_sleep_hibernate_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885
Rafael J. Wysockia4e90be2014-03-13 22:11:39 +0100886 if (acpi_sleep_state_supported(ACPI_STATE_S5)) {
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400887 sleep_states[ACPI_STATE_S5] = 1;
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400888 pm_power_off_prepare = acpi_power_off_prepare;
889 pm_power_off = acpi_power_off;
Chen Yu13737182016-03-22 08:51:10 +0800890 } else {
891 acpi_no_s5 = true;
Alexey Starikovskiyf216cc32007-09-20 21:32:35 +0400892 }
Joe Perchesed4cf5b2013-02-22 07:37:36 +0000893
894 supported[0] = 0;
895 for (i = 0; i < ACPI_S_STATE_COUNT; i++) {
896 if (sleep_states[i])
897 pos += sprintf(pos, " S%d", i);
898 }
899 pr_info(PREFIX "(supports%s)\n", supported);
900
Zhao Yakuie49f7112008-08-12 10:20:22 +0800901 /*
Rafael J. Wysocki9713adc2016-11-21 14:25:49 +0100902 * Register the tts_notifier to reboot notifier list so that the _TTS
903 * object can also be evaluated when the system enters S5.
Zhao Yakuie49f7112008-08-12 10:20:22 +0800904 */
Rafael J. Wysocki9713adc2016-11-21 14:25:49 +0100905 register_reboot_notifier(&tts_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 return 0;
907}