blob: 6dadb25cb0d8023f987c2c0961f1f81b7fedb0ce [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>
Rafael J. Wysockia9d70522009-06-10 01:27:12 +020031
32#include "power.h"
33
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +020034static const char *pm_labels[] = { "mem", "standby", "freeze", };
35const char *pm_states[PM_SUSPEND_MAX];
Rafael J. Wysockia9d70522009-06-10 01:27:12 +020036
Lionel Debroux2f55ac02010-11-16 14:14:02 +010037static const struct platform_suspend_ops *suspend_ops;
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +020038static const struct platform_freeze_ops *freeze_ops;
Zhang Rui7e73c5a2013-02-06 13:00:36 +010039static DECLARE_WAIT_QUEUE_HEAD(suspend_freeze_wait_head);
40static bool suspend_freeze_wake;
41
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +020042void freeze_set_ops(const struct platform_freeze_ops *ops)
43{
44 lock_system_sleep();
45 freeze_ops = ops;
46 unlock_system_sleep();
47}
48
Zhang Rui7e73c5a2013-02-06 13:00:36 +010049static void freeze_begin(void)
50{
51 suspend_freeze_wake = false;
52}
53
54static void freeze_enter(void)
55{
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020056 cpuidle_use_deepest_state(true);
Rafael J. Wysockif3f12532014-04-20 23:43:01 +020057 cpuidle_resume();
Zhang Rui7e73c5a2013-02-06 13:00:36 +010058 wait_event(suspend_freeze_wait_head, suspend_freeze_wake);
Rafael J. Wysockif3f12532014-04-20 23:43:01 +020059 cpuidle_pause();
Rafael J. Wysockia6220fc2014-05-05 00:51:54 +020060 cpuidle_use_deepest_state(false);
Zhang Rui7e73c5a2013-02-06 13:00:36 +010061}
62
63void freeze_wake(void)
64{
65 suspend_freeze_wake = true;
66 wake_up(&suspend_freeze_wait_head);
67}
68EXPORT_SYMBOL_GPL(freeze_wake);
69
Rafael J. Wysocki43e83172014-05-26 13:40:53 +020070static bool valid_state(suspend_state_t state)
71{
72 /*
73 * PM_SUSPEND_STANDBY and PM_SUSPEND_MEM states need low level
74 * support and need to be valid to the low level
75 * implementation, no valid callback implies that none are valid.
76 */
77 return suspend_ops && suspend_ops->valid && suspend_ops->valid(state);
78}
79
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +020080/*
81 * If this is set, the "mem" label always corresponds to the deepest sleep state
82 * available, the "standby" label corresponds to the second deepest sleep state
83 * available (if any), and the "freeze" label corresponds to the remaining
84 * available sleep state (if there is one).
85 */
86static bool relative_states;
87
88static int __init sleep_states_setup(char *str)
89{
90 relative_states = !strncmp(str, "1", 1);
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +020091 pm_states[PM_SUSPEND_FREEZE] = pm_labels[relative_states ? 0 : 2];
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +020092 return 1;
93}
94
95__setup("relative_sleep_states=", sleep_states_setup);
96
Rafael J. Wysockia9d70522009-06-10 01:27:12 +020097/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +010098 * suspend_set_ops - Set the global suspend method table.
99 * @ops: Suspend operations to use.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200100 */
Lionel Debroux2f55ac02010-11-16 14:14:02 +0100101void suspend_set_ops(const struct platform_suspend_ops *ops)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200102{
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200103 suspend_state_t i;
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200104 int j = 0;
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200105
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100106 lock_system_sleep();
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200107
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200108 suspend_ops = ops;
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +0200109 for (i = PM_SUSPEND_MEM; i >= PM_SUSPEND_STANDBY; i--)
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200110 if (valid_state(i)) {
111 pm_states[i] = pm_labels[j++];
112 } else if (!relative_states) {
113 pm_states[i] = NULL;
114 j++;
115 }
Rafael J. Wysocki0399d4d2014-05-26 13:40:59 +0200116
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200117 pm_states[PM_SUSPEND_FREEZE] = pm_labels[j];
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200118
Srivatsa S. Bhatbcda53f2011-12-07 22:29:54 +0100119 unlock_system_sleep();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200120}
Kevin Hilmana5e4fd82011-06-27 01:01:07 +0200121EXPORT_SYMBOL_GPL(suspend_set_ops);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200122
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200123/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100124 * suspend_valid_only_mem - Generic memory-only valid callback.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200125 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100126 * Platform drivers that implement mem suspend only and only need to check for
127 * that in their .valid() callback can use this instead of rolling their own
128 * .valid() callback.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200129 */
130int suspend_valid_only_mem(suspend_state_t state)
131{
132 return state == PM_SUSPEND_MEM;
133}
Kevin Hilmana5e4fd82011-06-27 01:01:07 +0200134EXPORT_SYMBOL_GPL(suspend_valid_only_mem);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200135
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200136static bool sleep_state_supported(suspend_state_t state)
137{
138 return state == PM_SUSPEND_FREEZE || (suspend_ops && suspend_ops->enter);
139}
140
141static int platform_suspend_prepare(suspend_state_t state)
142{
143 return state != PM_SUSPEND_FREEZE && suspend_ops->prepare ?
144 suspend_ops->prepare() : 0;
145}
146
147static int platform_suspend_prepare_late(suspend_state_t state)
148{
149 return state != PM_SUSPEND_FREEZE && suspend_ops->prepare_late ?
150 suspend_ops->prepare_late() : 0;
151}
152
153static void platform_suspend_wake(suspend_state_t state)
154{
155 if (state != PM_SUSPEND_FREEZE && suspend_ops->wake)
156 suspend_ops->wake();
157}
158
159static void platform_suspend_finish(suspend_state_t state)
160{
161 if (state != PM_SUSPEND_FREEZE && suspend_ops->finish)
162 suspend_ops->finish();
163}
164
165static int platform_suspend_begin(suspend_state_t state)
166{
167 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->begin)
168 return freeze_ops->begin();
169 else if (suspend_ops->begin)
170 return suspend_ops->begin(state);
171 else
172 return 0;
173}
174
175static void platform_suspend_end(suspend_state_t state)
176{
177 if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->end)
178 freeze_ops->end();
179 else if (suspend_ops->end)
180 suspend_ops->end();
181}
182
183static void platform_suspend_recover(suspend_state_t state)
184{
185 if (state != PM_SUSPEND_FREEZE && suspend_ops->recover)
186 suspend_ops->recover();
187}
188
189static bool platform_suspend_again(suspend_state_t state)
190{
191 return state != PM_SUSPEND_FREEZE && suspend_ops->suspend_again ?
192 suspend_ops->suspend_again() : false;
193}
194
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200195static int suspend_test(int level)
196{
197#ifdef CONFIG_PM_DEBUG
198 if (pm_test_level == level) {
199 printk(KERN_INFO "suspend debug: Waiting for 5 seconds.\n");
200 mdelay(5000);
201 return 1;
202 }
203#endif /* !CONFIG_PM_DEBUG */
204 return 0;
205}
206
207/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100208 * suspend_prepare - Prepare for entering system sleep state.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200209 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100210 * Common code run for every system sleep state that can be entered (except for
211 * hibernation). Run suspend notifiers, allocate the "suspend" console and
212 * freeze processes.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200213 */
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100214static int suspend_prepare(suspend_state_t state)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200215{
216 int error;
217
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200218 if (!sleep_state_supported(state))
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200219 return -EPERM;
220
221 pm_prepare_console();
222
223 error = pm_notifier_call_chain(PM_SUSPEND_PREPARE);
224 if (error)
225 goto Finish;
226
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700227 trace_suspend_resume(TPS("freeze_processes"), 0, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200228 error = suspend_freeze_processes();
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700229 trace_suspend_resume(TPS("freeze_processes"), 0, false);
Tejun Heo03afed82011-11-21 12:32:24 -0800230 if (!error)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200231 return 0;
232
Tejun Heo03afed82011-11-21 12:32:24 -0800233 suspend_stats.failed_freeze++;
234 dpm_save_failed_step(SUSPEND_FREEZE);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200235 Finish:
236 pm_notifier_call_chain(PM_POST_SUSPEND);
237 pm_restore_console();
238 return error;
239}
240
241/* default implementation */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700242void __weak arch_suspend_disable_irqs(void)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200243{
244 local_irq_disable();
245}
246
247/* default implementation */
Gideon Israel Dsouza52f5684c2014-04-07 15:39:20 -0700248void __weak arch_suspend_enable_irqs(void)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200249{
250 local_irq_enable();
251}
252
253/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100254 * suspend_enter - Make the system enter the given sleep state.
255 * @state: System sleep state to enter.
256 * @wakeup: Returns information that the sleep state should not be re-entered.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200257 *
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200258 * This function should be called after devices have been suspended.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200259 */
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200260static int suspend_enter(suspend_state_t state, bool *wakeup)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200261{
262 int error;
263
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200264 error = platform_suspend_prepare(state);
265 if (error)
266 goto Platform_finish;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200267
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100268 error = dpm_suspend_end(PMSG_SUSPEND);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200269 if (error) {
270 printk(KERN_ERR "PM: Some devices failed to power down\n");
Rafael J. Wysockice441012010-07-07 23:43:45 +0200271 goto Platform_finish;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200272 }
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200273 error = platform_suspend_prepare_late(state);
274 if (error)
275 goto Platform_wake;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200276
Zhang Rui08605ac2013-03-27 03:36:10 +0000277 if (suspend_test(TEST_PLATFORM))
278 goto Platform_wake;
279
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100280 /*
281 * PM_SUSPEND_FREEZE equals
282 * frozen processes + suspended devices + idle processors.
283 * Thus we should invoke freeze_enter() soon after
284 * all the devices are suspended.
285 */
286 if (state == PM_SUSPEND_FREEZE) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700287 trace_suspend_resume(TPS("machine_suspend"), state, true);
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100288 freeze_enter();
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700289 trace_suspend_resume(TPS("machine_suspend"), state, false);
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100290 goto Platform_wake;
291 }
292
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200293 error = disable_nonboot_cpus();
294 if (error || suspend_test(TEST_CPUS))
295 goto Enable_cpus;
296
297 arch_suspend_disable_irqs();
298 BUG_ON(!irqs_disabled());
299
Rafael J. Wysocki2e711c02011-04-26 19:15:07 +0200300 error = syscore_suspend();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200301 if (!error) {
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200302 *wakeup = pm_wakeup_pending();
303 if (!(suspend_test(TEST_CORE) || *wakeup)) {
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700304 trace_suspend_resume(TPS("machine_suspend"),
305 state, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200306 error = suspend_ops->enter(state);
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700307 trace_suspend_resume(TPS("machine_suspend"),
308 state, false);
Rafael J. Wysockic125e962010-07-05 22:43:53 +0200309 events_check_enabled = false;
310 }
Rafael J. Wysocki40dc1662011-03-15 00:43:46 +0100311 syscore_resume();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200312 }
313
314 arch_suspend_enable_irqs();
315 BUG_ON(irqs_disabled());
316
317 Enable_cpus:
318 enable_nonboot_cpus();
319
320 Platform_wake:
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200321 platform_suspend_wake(state);
Rafael J. Wysockicf579df2012-01-29 20:38:29 +0100322 dpm_resume_start(PMSG_RESUME);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200323
Rafael J. Wysockice441012010-07-07 23:43:45 +0200324 Platform_finish:
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200325 platform_suspend_finish(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200326 return error;
327}
328
329/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100330 * suspend_devices_and_enter - Suspend devices and enter system sleep state.
331 * @state: System sleep state to enter.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200332 */
333int suspend_devices_and_enter(suspend_state_t state)
334{
335 int error;
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200336 bool wakeup = false;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200337
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200338 if (!sleep_state_supported(state))
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200339 return -ENOSYS;
340
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200341 error = platform_suspend_begin(state);
342 if (error)
343 goto Close;
344
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200345 suspend_console();
346 suspend_test_start();
347 error = dpm_suspend_start(PMSG_SUSPEND);
348 if (error) {
Bernie Thompson9350de062013-06-01 00:47:43 +0000349 pr_err("PM: Some devices failed to suspend, or early wake event detected\n");
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200350 goto Recover_platform;
351 }
352 suspend_test_finish("suspend devices");
353 if (suspend_test(TEST_DEVICES))
354 goto Recover_platform;
355
MyungJoo Ham3b5fe852011-06-12 15:57:05 +0200356 do {
357 error = suspend_enter(state, &wakeup);
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200358 } while (!error && !wakeup && platform_suspend_again(state));
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200359
360 Resume_devices:
361 suspend_test_start();
362 dpm_resume_end(PMSG_RESUME);
363 suspend_test_finish("resume devices");
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200364 resume_console();
Rafael J. Wysocki1f0b6382014-05-15 23:29:57 +0200365
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200366 Close:
367 platform_suspend_end(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200368 return error;
369
370 Recover_platform:
Rafael J. Wysocki8490fdf2014-07-23 00:57:53 +0200371 platform_suspend_recover(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200372 goto Resume_devices;
373}
374
375/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100376 * suspend_finish - Clean up before finishing the suspend sequence.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200377 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100378 * Call platform code to clean up, restart processes, and free the console that
379 * we've allocated. This routine is not called for hibernation.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200380 */
381static void suspend_finish(void)
382{
383 suspend_thaw_processes();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200384 pm_notifier_call_chain(PM_POST_SUSPEND);
385 pm_restore_console();
386}
387
388/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100389 * enter_state - Do common work needed to enter system sleep state.
390 * @state: System sleep state to enter.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200391 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100392 * Make sure that no one else is trying to put the system into a sleep state.
393 * Fail if that's not the case. Otherwise, prepare for system suspend, make the
394 * system enter the given sleep state and clean up after wakeup.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200395 */
Rafael J. Wysocki93e1ee42012-02-13 16:29:24 +0100396static int enter_state(suspend_state_t state)
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200397{
398 int error;
399
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700400 trace_suspend_resume(TPS("suspend_enter"), state, true);
Rafael J. Wysocki43e83172014-05-26 13:40:53 +0200401 if (state == PM_SUSPEND_FREEZE) {
402#ifdef CONFIG_PM_DEBUG
403 if (pm_test_level != TEST_NONE && pm_test_level <= TEST_CPUS) {
404 pr_warning("PM: Unsupported test mode for freeze state,"
405 "please choose none/freezer/devices/platform.\n");
406 return -EAGAIN;
407 }
408#endif
409 } else if (!valid_state(state)) {
410 return -EINVAL;
411 }
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200412 if (!mutex_trylock(&pm_mutex))
413 return -EBUSY;
414
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100415 if (state == PM_SUSPEND_FREEZE)
416 freeze_begin();
417
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700418 trace_suspend_resume(TPS("sync_filesystems"), 0, true);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200419 printk(KERN_INFO "PM: Syncing filesystems ... ");
420 sys_sync();
421 printk("done.\n");
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700422 trace_suspend_resume(TPS("sync_filesystems"), 0, false);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200423
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200424 pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]);
Zhang Rui7e73c5a2013-02-06 13:00:36 +0100425 error = suspend_prepare(state);
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200426 if (error)
427 goto Unlock;
428
429 if (suspend_test(TEST_FREEZER))
430 goto Finish;
431
Todd E Brandtbb3632c2014-06-06 05:40:17 -0700432 trace_suspend_resume(TPS("suspend_enter"), state, false);
Rafael J. Wysockid431cbc2014-07-15 22:02:11 +0200433 pr_debug("PM: Entering %s sleep\n", pm_states[state]);
Rafael J. Wysocki87186472011-05-10 21:09:53 +0200434 pm_restrict_gfp_mask();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200435 error = suspend_devices_and_enter(state);
Rafael J. Wysocki87186472011-05-10 21:09:53 +0200436 pm_restore_gfp_mask();
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200437
438 Finish:
439 pr_debug("PM: Finishing wakeup.\n");
440 suspend_finish();
441 Unlock:
442 mutex_unlock(&pm_mutex);
443 return error;
444}
445
446/**
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100447 * pm_suspend - Externally visible function for suspending the system.
448 * @state: System sleep state to enter.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200449 *
Rafael J. Wysocki55ae4512012-02-13 16:29:14 +0100450 * Check if the value of @state represents one of the supported states,
451 * execute enter_state() and update system suspend statistics.
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200452 */
453int pm_suspend(suspend_state_t state)
454{
Rafael J. Wysockibc25cf52012-02-13 16:29:33 +0100455 int error;
456
457 if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX)
458 return -EINVAL;
459
460 error = enter_state(state);
461 if (error) {
462 suspend_stats.fail++;
463 dpm_save_failed_errno(error);
464 } else {
465 suspend_stats.success++;
ShuoX Liu2a77c462011-08-10 23:01:26 +0200466 }
Rafael J. Wysockibc25cf52012-02-13 16:29:33 +0100467 return error;
Rafael J. Wysockia9d70522009-06-10 01:27:12 +0200468}
469EXPORT_SYMBOL(pm_suspend);