blob: 0acab9d7f96f6cfc0d46906a21295c94215295bc [file] [log] [blame]
Rafael J. Wysockia9d70522009-06-10 01:27:12 +02001/*
2 * kernel/power/suspend.c - Suspend to RAM and standby functionality.
3 *
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
6 * Copyright (c) 2009 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
7 *
8 * This file is released under the GPLv2.
9 */
10
11#include <linux/string.h>
12#include <linux/delay.h>
13#include <linux/errno.h>
14#include <linux/init.h>
15#include <linux/console.h>
16#include <linux/cpu.h>
Rafael J. Wysockif3f12532014-04-20 23:43:01 +020017#include <linux/cpuidle.h>
Rafael J. Wysockia9d70522009-06-10 01:27:12 +020018#include <linux/syscalls.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/gfp.h>
Matthew Garrettdd4c4f12010-05-28 16:32:14 -040020#include <linux/io.h>
21#include <linux/kernel.h>
22#include <linux/list.h>
23#include <linux/mm.h>
24#include <linux/slab.h>
Paul Gortmaker6e5fdee2011-05-26 16:00:52 -040025#include <linux/export.h>
Matthew Garrettdd4c4f12010-05-28 16:32:14 -040026#include <linux/suspend.h>
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +010027#include <linux/syscore_ops.h>
Srivatsa S. Bhat443772d42012-06-16 15:30:45 +020028#include <linux/ftrace.h>
Jean Pihet938cfed2011-01-05 19:49:01 +010029#include <trace/events/power.h>
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -070030#include <linux/compiler.h>
Brian Norris1d4a9c12015-02-22 21:16:49 -080031#include <linux/moduleparam.h>
Rafael J. Wysockia9d70522009-06-10 01:27:12 +020032
33#include "power.h"
34
Rafael J. Wysocki62109b42014-09-03 01:21:03 +020035const char *pm_labels[] = { "mem", "standby", "freeze", NULL };
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +020036const char *pm_states[PM_SUSPEND_MAX];
Rafael J. Wysockia9d70522009-06-10 01:27:12 +020037
Rafael J. Wysockief25ba02015-10-07 00:49:34 +020038unsigned int pm_suspend_global_flags;
39EXPORT_SYMBOL_GPL(pm_suspend_global_flags);
40
Lionel Debroux2f55ac02010-11-16 14:14:02 +010041static const struct platform_suspend_ops *suspend_ops;
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +020042static const struct platform_freeze_ops *freeze_ops;
Zhang Rui7e73c5a2013-02-06 13:00:36 +010043static DECLARE_WAIT_QUEUE_HEAD(suspend_freeze_wait_head);
Rafael J. Wysocki38106312015-02-12 23:33:15 +010044
45enum freeze_state __read_mostly suspend_freeze_state;
46static DEFINE_SPINLOCK(suspend_freeze_lock);
Zhang Rui7e73c5a2013-02-06 13:00:36 +010047
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +020048void freeze_set_ops(const struct platform_freeze_ops *ops)
49{
50 lock_system_sleep();
51 freeze_ops = ops;
52 unlock_system_sleep();
53}
54
Zhang Rui7e73c5a2013-02-06 13:00:36 +010055static void freeze_begin(void)
56{
Rafael J. Wysocki38106312015-02-12 23:33:15 +010057 suspend_freeze_state = FREEZE_STATE_NONE;
Zhang Rui7e73c5a2013-02-06 13:00:36 +010058}
59
60static void freeze_enter(void)
61{
Rafael J. Wysocki38106312015-02-12 23:33:15 +010062 spin_lock_irq(&suspend_freeze_lock);
63 if (pm_wakeup_pending())
64 goto out;
65
66 suspend_freeze_state = FREEZE_STATE_ENTER;
67 spin_unlock_irq(&suspend_freeze_lock);
68
69 get_online_cpus();
Rafael J. Wysockif3f12532014-04-20 23:43:01 +020070 cpuidle_resume();
Rafael J. Wysocki38106312015-02-12 23:33:15 +010071
72 /* Push all the CPUs into the idle loop. */
73 wake_up_all_idle_cpus();
74 pr_debug("PM: suspend-to-idle\n");
75 /* Make the current CPU wait so it can enter the idle loop too. */
76 wait_event(suspend_freeze_wait_head,
77 suspend_freeze_state == FREEZE_STATE_WAKE);
78 pr_debug("PM: resume from suspend-to-idle\n");
79
Rafael J. Wysockif3f12532014-04-20 23:43:01 +020080 cpuidle_pause();
Rafael J. Wysocki38106312015-02-12 23:33:15 +010081 put_online_cpus();
82
83 spin_lock_irq(&suspend_freeze_lock);
84
85 out:
86 suspend_freeze_state = FREEZE_STATE_NONE;
87 spin_unlock_irq(&suspend_freeze_lock);
Zhang Rui7e73c5a2013-02-06 13:00:36 +010088}
89
90void freeze_wake(void)
91{
Rafael J. Wysocki38106312015-02-12 23:33:15 +010092 unsigned long flags;
93
94 spin_lock_irqsave(&suspend_freeze_lock, flags);
95 if (suspend_freeze_state > FREEZE_STATE_NONE) {
96 suspend_freeze_state = FREEZE_STATE_WAKE;
97 wake_up(&suspend_freeze_wait_head);
98 }
99 spin_unlock_irqrestore(&suspend_freeze_lock, flags);
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100100}
101EXPORT_SYMBOL_GPL(freeze_wake);
102
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200103static bool valid_state(suspend_state_t state)
104{
105 /*
106 * PM_SUSPEND_STANDBY and PM_SUSPEND_MEM states need low level
107 * support and need to be valid to the low level
108 * implementation, no valid callback implies that none are valid.
109 */
110 return suspend_ops && suspend_ops->valid && suspend_ops->valid(state);
111}
112
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +0200113/*
114 * If this is set, the "mem" label always corresponds to the deepest sleep state
115 * available, the "standby" label corresponds to the second deepest sleep state
116 * available (if any), and the "freeze" label corresponds to the remaining
117 * available sleep state (if there is one).
118 */
119static bool relative_states;
120
121static int __init sleep_states_setup(char *str)
122{
123 relative_states = !strncmp(str, "1", 1);
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200124 pm_states[PM_SUSPEND_FREEZE] = pm_labels[relative_states ? 0 : 2];
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +0200125 return 1;
126}
127
128__setup("relative_sleep_states=", sleep_states_setup);
129
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200130/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100131 * suspend_set_ops - Set the global suspend method table.
132 * @ops: Suspend operations to use.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200133 */
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100134void suspend_set_ops(const struct platform_suspend_ops *ops)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200135{
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200136 suspend_state_t i;
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200137 int j = 0;
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200138
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100139 lock_system_sleep();
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200140
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200141 suspend_ops = ops;
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +0200142 for (i = PM_SUSPEND_MEM; i >= PM_SUSPEND_STANDBY; i--)
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200143 if (valid_state(i)) {
144 pm_states[i] = pm_labels[j++];
145 } else if (!relative_states) {
146 pm_states[i] = NULL;
147 j++;
148 }
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +0200149
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200150 pm_states[PM_SUSPEND_FREEZE] = pm_labels[j];
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200151
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100152 unlock_system_sleep();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200153}
Kevin Hilmana5e4fd82011-06-27 01:01:07 +0200154EXPORT_SYMBOL_GPL(suspend_set_ops);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200155
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200156/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100157 * suspend_valid_only_mem - Generic memory-only valid callback.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200158 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100159 * Platform drivers that implement mem suspend only and only need to check for
160 * that in their .valid() callback can use this instead of rolling their own
161 * .valid() callback.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200162 */
163int suspend_valid_only_mem(suspend_state_t state)
164{
165 return state == PM_SUSPEND_MEM;
166}
Kevin Hilmana5e4fd82011-06-27 01:01:07 +0200167EXPORT_SYMBOL_GPL(suspend_valid_only_mem);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200168
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200169static bool sleep_state_supported(suspend_state_t state)
170{
171 return state == PM_SUSPEND_FREEZE || (suspend_ops && suspend_ops->enter);
172}
173
174static int platform_suspend_prepare(suspend_state_t state)
175{
176 return state != PM_SUSPEND_FREEZE && suspend_ops->prepare ?
177 suspend_ops->prepare() : 0;
178}
179
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200180static int platform_suspend_prepare_late(suspend_state_t state)
181{
Dmitry Eremin-Solenikov403b9632014-11-08 19:17:13 +0300182 return state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->prepare ?
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200183 freeze_ops->prepare() : 0;
184}
185
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200186static int platform_suspend_prepare_noirq(suspend_state_t state)
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200187{
188 return state != PM_SUSPEND_FREEZE && suspend_ops->prepare_late ?
189 suspend_ops->prepare_late() : 0;
190}
191
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200192static void platform_resume_noirq(suspend_state_t state)
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200193{
194 if (state != PM_SUSPEND_FREEZE && suspend_ops->wake)
195 suspend_ops->wake();
196}
197
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200198static void platform_resume_early(suspend_state_t state)
199{
Dmitry Eremin-Solenikov403b9632014-11-08 19:17:13 +0300200 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->restore)
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200201 freeze_ops->restore();
202}
203
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200204static void platform_resume_finish(suspend_state_t state)
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200205{
206 if (state != PM_SUSPEND_FREEZE && suspend_ops->finish)
207 suspend_ops->finish();
208}
209
210static int platform_suspend_begin(suspend_state_t state)
211{
212 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->begin)
213 return freeze_ops->begin();
214 else if (suspend_ops->begin)
215 return suspend_ops->begin(state);
216 else
217 return 0;
218}
219
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200220static void platform_resume_end(suspend_state_t state)
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200221{
222 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->end)
223 freeze_ops->end();
224 else if (suspend_ops->end)
225 suspend_ops->end();
226}
227
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200228static void platform_recover(suspend_state_t state)
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200229{
230 if (state != PM_SUSPEND_FREEZE && suspend_ops->recover)
231 suspend_ops->recover();
232}
233
234static bool platform_suspend_again(suspend_state_t state)
235{
236 return state != PM_SUSPEND_FREEZE && suspend_ops->suspend_again ?
237 suspend_ops->suspend_again() : false;
238}
239
Brian Norris1d4a9c12015-02-22 21:16:49 -0800240#ifdef CONFIG_PM_DEBUG
241static unsigned int pm_test_delay = 5;
242module_param(pm_test_delay, uint, 0644);
243MODULE_PARM_DESC(pm_test_delay,
244 "Number of seconds to wait before resuming from suspend test");
245#endif
246
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200247static int suspend_test(int level)
248{
249#ifdef CONFIG_PM_DEBUG
250 if (pm_test_level == level) {
saurabh22e09b32015-10-28 08:54:01 +0530251 pr_info("suspend debug: Waiting for %d second(s).\n",
Brian Norris1d4a9c12015-02-22 21:16:49 -0800252 pm_test_delay);
253 mdelay(pm_test_delay * 1000);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200254 return 1;
255 }
256#endif /* !CONFIG_PM_DEBUG */
257 return 0;
258}
259
260/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100261 * suspend_prepare - Prepare for entering system sleep state.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200262 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100263 * Common code run for every system sleep state that can be entered (except for
264 * hibernation). Run suspend notifiers, allocate the "suspend" console and
265 * freeze processes.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200266 */
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100267static int suspend_prepare(suspend_state_t state)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200268{
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700269 int error, nr_calls = 0;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200270
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200271 if (!sleep_state_supported(state))
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200272 return -EPERM;
273
274 pm_prepare_console();
275
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700276 error = __pm_notifier_call_chain(PM_SUSPEND_PREPARE, -1, &nr_calls);
277 if (error) {
278 nr_calls--;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200279 goto Finish;
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700280 }
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200281
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700282 trace_suspend_resume(TPS("freeze_processes"), 0, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200283 error = suspend_freeze_processes();
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700284 trace_suspend_resume(TPS("freeze_processes"), 0, false);
Tejun Heo03afed82011-11-21 12:32:24 -0800285 if (!error)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200286 return 0;
287
Tejun Heo03afed82011-11-21 12:32:24 -0800288 suspend_stats.failed_freeze++;
289 dpm_save_failed_step(SUSPEND_FREEZE);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200290 Finish:
Lianwei Wangea00f4f2016-06-19 23:52:27 -0700291 __pm_notifier_call_chain(PM_POST_SUSPEND, nr_calls, NULL);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200292 pm_restore_console();
293 return error;
294}
295
296/* default implementation */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700297void __weak arch_suspend_disable_irqs(void)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200298{
299 local_irq_disable();
300}
301
302/* default implementation */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700303void __weak arch_suspend_enable_irqs(void)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200304{
305 local_irq_enable();
306}
307
308/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100309 * suspend_enter - Make the system enter the given sleep state.
310 * @state: System sleep state to enter.
311 * @wakeup: Returns information that the sleep state should not be re-entered.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200312 *
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200313 * This function should be called after devices have been suspended.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200314 */
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200315static int suspend_enter(suspend_state_t state, bool *wakeup)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200316{
317 int error;
318
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200319 error = platform_suspend_prepare(state);
320 if (error)
321 goto Platform_finish;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200322
Rafael J. Wysocki2a8a8ce2014-09-30 02:21:34 +0200323 error = dpm_suspend_late(PMSG_SUSPEND);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200324 if (error) {
saurabh22e09b32015-10-28 08:54:01 +0530325 pr_err("PM: late suspend of devices failed\n");
Rafael J. Wysockice441012010-07-07 23:43:45 +0200326 goto Platform_finish;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200327 }
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200328 error = platform_suspend_prepare_late(state);
329 if (error)
330 goto Devices_early_resume;
331
Rafael J. Wysocki2a8a8ce2014-09-30 02:21:34 +0200332 error = dpm_suspend_noirq(PMSG_SUSPEND);
333 if (error) {
saurabh22e09b32015-10-28 08:54:01 +0530334 pr_err("PM: noirq suspend of devices failed\n");
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200335 goto Platform_early_resume;
Rafael J. Wysocki2a8a8ce2014-09-30 02:21:34 +0200336 }
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200337 error = platform_suspend_prepare_noirq(state);
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200338 if (error)
339 goto Platform_wake;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200340
Zhang Rui08605ac2013-03-27 03:36:10 +0000341 if (suspend_test(TEST_PLATFORM))
342 goto Platform_wake;
343
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100344 /*
345 * PM_SUSPEND_FREEZE equals
346 * frozen processes + suspended devices + idle processors.
347 * Thus we should invoke freeze_enter() soon after
348 * all the devices are suspended.
349 */
350 if (state == PM_SUSPEND_FREEZE) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700351 trace_suspend_resume(TPS("machine_suspend"), state, true);
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100352 freeze_enter();
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700353 trace_suspend_resume(TPS("machine_suspend"), state, false);
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100354 goto Platform_wake;
355 }
356
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200357 error = disable_nonboot_cpus();
358 if (error || suspend_test(TEST_CPUS))
359 goto Enable_cpus;
360
361 arch_suspend_disable_irqs();
362 BUG_ON(!irqs_disabled());
363
Rafael J. Wysocki2e711c02011-04-26 19:15:07 +0200364 error = syscore_suspend();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200365 if (!error) {
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200366 *wakeup = pm_wakeup_pending();
367 if (!(suspend_test(TEST_CORE) || *wakeup)) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700368 trace_suspend_resume(TPS("machine_suspend"),
369 state, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200370 error = suspend_ops->enter(state);
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700371 trace_suspend_resume(TPS("machine_suspend"),
372 state, false);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200373 events_check_enabled = false;
Ruchi Kandoi67176732015-05-07 19:07:42 -0700374 } else if (*wakeup) {
375 error = -EBUSY;
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200376 }
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100377 syscore_resume();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200378 }
379
380 arch_suspend_enable_irqs();
381 BUG_ON(irqs_disabled());
382
383 Enable_cpus:
384 enable_nonboot_cpus();
385
386 Platform_wake:
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200387 platform_resume_noirq(state);
Rafael J. Wysocki2a8a8ce2014-09-30 02:21:34 +0200388 dpm_resume_noirq(PMSG_RESUME);
389
Rafael J. Wysockia8d46b92014-09-30 02:29:01 +0200390 Platform_early_resume:
391 platform_resume_early(state);
392
Rafael J. Wysocki2a8a8ce2014-09-30 02:21:34 +0200393 Devices_early_resume:
394 dpm_resume_early(PMSG_RESUME);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200395
Rafael J. Wysockice441012010-07-07 23:43:45 +0200396 Platform_finish:
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200397 platform_resume_finish(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200398 return error;
399}
400
401/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100402 * suspend_devices_and_enter - Suspend devices and enter system sleep state.
403 * @state: System sleep state to enter.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200404 */
405int suspend_devices_and_enter(suspend_state_t state)
406{
407 int error;
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200408 bool wakeup = false;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200409
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200410 if (!sleep_state_supported(state))
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200411 return -ENOSYS;
412
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200413 error = platform_suspend_begin(state);
414 if (error)
415 goto Close;
416
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200417 suspend_console();
418 suspend_test_start();
419 error = dpm_suspend_start(PMSG_SUSPEND);
420 if (error) {
Bernie Thompson9350de062013-06-01 00:47:43 +0000421 pr_err("PM: Some devices failed to suspend, or early wake event detected\n");
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200422 goto Recover_platform;
423 }
424 suspend_test_finish("suspend devices");
425 if (suspend_test(TEST_DEVICES))
426 goto Recover_platform;
427
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200428 do {
429 error = suspend_enter(state, &wakeup);
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200430 } while (!error && !wakeup && platform_suspend_again(state));
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200431
432 Resume_devices:
433 suspend_test_start();
434 dpm_resume_end(PMSG_RESUME);
435 suspend_test_finish("resume devices");
Todd E Brandt0cadc702014-09-19 14:07:12 -0700436 trace_suspend_resume(TPS("resume_console"), state, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200437 resume_console();
Todd E Brandt0cadc702014-09-19 14:07:12 -0700438 trace_suspend_resume(TPS("resume_console"), state, false);
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200439
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200440 Close:
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200441 platform_resume_end(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200442 return error;
443
444 Recover_platform:
Rafael J. Wysockiebc3e412014-09-30 02:22:24 +0200445 platform_recover(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200446 goto Resume_devices;
447}
448
449/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100450 * suspend_finish - Clean up before finishing the suspend sequence.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200451 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100452 * Call platform code to clean up, restart processes, and free the console that
453 * we've allocated. This routine is not called for hibernation.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200454 */
455static void suspend_finish(void)
456{
457 suspend_thaw_processes();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200458 pm_notifier_call_chain(PM_POST_SUSPEND);
459 pm_restore_console();
460}
461
462/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100463 * enter_state - Do common work needed to enter system sleep state.
464 * @state: System sleep state to enter.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200465 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100466 * Make sure that no one else is trying to put the system into a sleep state.
467 * Fail if that's not the case. Otherwise, prepare for system suspend, make the
468 * system enter the given sleep state and clean up after wakeup.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200469 */
Rafael J. Wysocki93e1ee42012-02-13 16:29:24 +0100470static int enter_state(suspend_state_t state)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200471{
472 int error;
473
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700474 trace_suspend_resume(TPS("suspend_enter"), state, true);
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200475 if (state == PM_SUSPEND_FREEZE) {
476#ifdef CONFIG_PM_DEBUG
477 if (pm_test_level != TEST_NONE && pm_test_level <= TEST_CPUS) {
Joe Perchesa395d6a2016-03-22 14:28:09 -0700478 pr_warn("PM: Unsupported test mode for suspend to idle, please choose none/freezer/devices/platform.\n");
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200479 return -EAGAIN;
480 }
481#endif
482 } else if (!valid_state(state)) {
483 return -EINVAL;
484 }
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200485 if (!mutex_trylock(&pm_mutex))
486 return -EBUSY;
487
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100488 if (state == PM_SUSPEND_FREEZE)
489 freeze_begin();
490
Len Brown2fd77ff2015-07-31 12:46:17 -0400491#ifndef CONFIG_SUSPEND_SKIP_SYNC
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700492 trace_suspend_resume(TPS("sync_filesystems"), 0, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200493 printk(KERN_INFO "PM: Syncing filesystems ... ");
494 sys_sync();
495 printk("done.\n");
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700496 trace_suspend_resume(TPS("sync_filesystems"), 0, false);
Len Brown2fd77ff2015-07-31 12:46:17 -0400497#endif
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200498
Rafael J. Wysockia9215042015-05-05 23:42:25 +0200499 pr_debug("PM: Preparing system for sleep (%s)\n", pm_states[state]);
Rafael J. Wysockief25ba02015-10-07 00:49:34 +0200500 pm_suspend_clear_flags();
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100501 error = suspend_prepare(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200502 if (error)
503 goto Unlock;
504
505 if (suspend_test(TEST_FREEZER))
506 goto Finish;
507
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700508 trace_suspend_resume(TPS("suspend_enter"), state, false);
Rafael J. Wysockia9215042015-05-05 23:42:25 +0200509 pr_debug("PM: Suspending system (%s)\n", pm_states[state]);
Rafael J. Wysocki87186472011-05-10 21:09:53 +0200510 pm_restrict_gfp_mask();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200511 error = suspend_devices_and_enter(state);
Rafael J. Wysocki87186472011-05-10 21:09:53 +0200512 pm_restore_gfp_mask();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200513
514 Finish:
515 pr_debug("PM: Finishing wakeup.\n");
516 suspend_finish();
517 Unlock:
518 mutex_unlock(&pm_mutex);
519 return error;
520}
521
522/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100523 * pm_suspend - Externally visible function for suspending the system.
524 * @state: System sleep state to enter.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200525 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100526 * Check if the value of @state represents one of the supported states,
527 * execute enter_state() and update system suspend statistics.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200528 */
529int pm_suspend(suspend_state_t state)
530{
Rafael J. Wysockibc25cf52012-02-13 16:29:33 +0100531 int error;
532
533 if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX)
534 return -EINVAL;
535
536 error = enter_state(state);
537 if (error) {
538 suspend_stats.fail++;
539 dpm_save_failed_errno(error);
540 } else {
541 suspend_stats.success++;
ShuoX Liu2a77c462011-08-10 23:01:26 +0200542 }
Rafael J. Wysockibc25cf52012-02-13 16:29:33 +0100543 return error;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200544}
545EXPORT_SYMBOL(pm_suspend);