Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 1 | /* |
| 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. Wysocki | f3f1253 | 2014-04-20 23:43:01 +0200 | [diff] [blame] | 17 | #include <linux/cpuidle.h> |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 18 | #include <linux/syscalls.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 19 | #include <linux/gfp.h> |
Matthew Garrett | dd4c4f1 | 2010-05-28 16:32:14 -0400 | [diff] [blame] | 20 | #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 Gortmaker | 6e5fdee | 2011-05-26 16:00:52 -0400 | [diff] [blame] | 25 | #include <linux/export.h> |
Matthew Garrett | dd4c4f1 | 2010-05-28 16:32:14 -0400 | [diff] [blame] | 26 | #include <linux/suspend.h> |
Rafael J. Wysocki | 40dc166 | 2011-03-15 00:43:46 +0100 | [diff] [blame] | 27 | #include <linux/syscore_ops.h> |
Srivatsa S. Bhat | 443772d4 | 2012-06-16 15:30:45 +0200 | [diff] [blame] | 28 | #include <linux/ftrace.h> |
Jean Pihet | 938cfed | 2011-01-05 19:49:01 +0100 | [diff] [blame] | 29 | #include <trace/events/power.h> |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 30 | #include <linux/compiler.h> |
Brian Norris | 1d4a9c1 | 2015-02-22 21:16:49 -0800 | [diff] [blame] | 31 | #include <linux/moduleparam.h> |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 32 | |
| 33 | #include "power.h" |
| 34 | |
Rafael J. Wysocki | 62109b4 | 2014-09-03 01:21:03 +0200 | [diff] [blame] | 35 | const char *pm_labels[] = { "mem", "standby", "freeze", NULL }; |
Rafael J. Wysocki | d431cbc | 2014-07-15 22:02:11 +0200 | [diff] [blame] | 36 | const char *pm_states[PM_SUSPEND_MAX]; |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 37 | |
Lionel Debroux | 2f55ac0 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 38 | static const struct platform_suspend_ops *suspend_ops; |
Rafael J. Wysocki | 1f0b638 | 2014-05-15 23:29:57 +0200 | [diff] [blame] | 39 | static const struct platform_freeze_ops *freeze_ops; |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 40 | static DECLARE_WAIT_QUEUE_HEAD(suspend_freeze_wait_head); |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 41 | |
| 42 | enum freeze_state __read_mostly suspend_freeze_state; |
| 43 | static DEFINE_SPINLOCK(suspend_freeze_lock); |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 44 | |
Rafael J. Wysocki | 1f0b638 | 2014-05-15 23:29:57 +0200 | [diff] [blame] | 45 | void freeze_set_ops(const struct platform_freeze_ops *ops) |
| 46 | { |
| 47 | lock_system_sleep(); |
| 48 | freeze_ops = ops; |
| 49 | unlock_system_sleep(); |
| 50 | } |
| 51 | |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 52 | static void freeze_begin(void) |
| 53 | { |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 54 | suspend_freeze_state = FREEZE_STATE_NONE; |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | static void freeze_enter(void) |
| 58 | { |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 59 | spin_lock_irq(&suspend_freeze_lock); |
| 60 | if (pm_wakeup_pending()) |
| 61 | goto out; |
| 62 | |
| 63 | suspend_freeze_state = FREEZE_STATE_ENTER; |
| 64 | spin_unlock_irq(&suspend_freeze_lock); |
| 65 | |
| 66 | get_online_cpus(); |
Rafael J. Wysocki | f3f1253 | 2014-04-20 23:43:01 +0200 | [diff] [blame] | 67 | cpuidle_resume(); |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 68 | |
| 69 | /* Push all the CPUs into the idle loop. */ |
| 70 | wake_up_all_idle_cpus(); |
| 71 | pr_debug("PM: suspend-to-idle\n"); |
| 72 | /* Make the current CPU wait so it can enter the idle loop too. */ |
| 73 | wait_event(suspend_freeze_wait_head, |
| 74 | suspend_freeze_state == FREEZE_STATE_WAKE); |
| 75 | pr_debug("PM: resume from suspend-to-idle\n"); |
| 76 | |
Rafael J. Wysocki | f3f1253 | 2014-04-20 23:43:01 +0200 | [diff] [blame] | 77 | cpuidle_pause(); |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 78 | put_online_cpus(); |
| 79 | |
| 80 | spin_lock_irq(&suspend_freeze_lock); |
| 81 | |
| 82 | out: |
| 83 | suspend_freeze_state = FREEZE_STATE_NONE; |
| 84 | spin_unlock_irq(&suspend_freeze_lock); |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | void freeze_wake(void) |
| 88 | { |
Rafael J. Wysocki | 3810631 | 2015-02-12 23:33:15 +0100 | [diff] [blame] | 89 | unsigned long flags; |
| 90 | |
| 91 | spin_lock_irqsave(&suspend_freeze_lock, flags); |
| 92 | if (suspend_freeze_state > FREEZE_STATE_NONE) { |
| 93 | suspend_freeze_state = FREEZE_STATE_WAKE; |
| 94 | wake_up(&suspend_freeze_wait_head); |
| 95 | } |
| 96 | spin_unlock_irqrestore(&suspend_freeze_lock, flags); |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 97 | } |
| 98 | EXPORT_SYMBOL_GPL(freeze_wake); |
| 99 | |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 100 | static bool valid_state(suspend_state_t state) |
| 101 | { |
| 102 | /* |
| 103 | * PM_SUSPEND_STANDBY and PM_SUSPEND_MEM states need low level |
| 104 | * support and need to be valid to the low level |
| 105 | * implementation, no valid callback implies that none are valid. |
| 106 | */ |
| 107 | return suspend_ops && suspend_ops->valid && suspend_ops->valid(state); |
| 108 | } |
| 109 | |
Rafael J. Wysocki | 0399d4d | 2014-05-26 13:40:59 +0200 | [diff] [blame] | 110 | /* |
| 111 | * If this is set, the "mem" label always corresponds to the deepest sleep state |
| 112 | * available, the "standby" label corresponds to the second deepest sleep state |
| 113 | * available (if any), and the "freeze" label corresponds to the remaining |
| 114 | * available sleep state (if there is one). |
| 115 | */ |
| 116 | static bool relative_states; |
| 117 | |
| 118 | static int __init sleep_states_setup(char *str) |
| 119 | { |
| 120 | relative_states = !strncmp(str, "1", 1); |
Rafael J. Wysocki | d431cbc | 2014-07-15 22:02:11 +0200 | [diff] [blame] | 121 | pm_states[PM_SUSPEND_FREEZE] = pm_labels[relative_states ? 0 : 2]; |
Rafael J. Wysocki | 0399d4d | 2014-05-26 13:40:59 +0200 | [diff] [blame] | 122 | return 1; |
| 123 | } |
| 124 | |
| 125 | __setup("relative_sleep_states=", sleep_states_setup); |
| 126 | |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 127 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 128 | * suspend_set_ops - Set the global suspend method table. |
| 129 | * @ops: Suspend operations to use. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 130 | */ |
Lionel Debroux | 2f55ac0 | 2010-11-16 14:14:02 +0100 | [diff] [blame] | 131 | void suspend_set_ops(const struct platform_suspend_ops *ops) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 132 | { |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 133 | suspend_state_t i; |
Rafael J. Wysocki | d431cbc | 2014-07-15 22:02:11 +0200 | [diff] [blame] | 134 | int j = 0; |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 135 | |
Srivatsa S. Bhat | bcda53f | 2011-12-07 22:29:54 +0100 | [diff] [blame] | 136 | lock_system_sleep(); |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 137 | |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 138 | suspend_ops = ops; |
Rafael J. Wysocki | 0399d4d | 2014-05-26 13:40:59 +0200 | [diff] [blame] | 139 | for (i = PM_SUSPEND_MEM; i >= PM_SUSPEND_STANDBY; i--) |
Rafael J. Wysocki | d431cbc | 2014-07-15 22:02:11 +0200 | [diff] [blame] | 140 | if (valid_state(i)) { |
| 141 | pm_states[i] = pm_labels[j++]; |
| 142 | } else if (!relative_states) { |
| 143 | pm_states[i] = NULL; |
| 144 | j++; |
| 145 | } |
Rafael J. Wysocki | 0399d4d | 2014-05-26 13:40:59 +0200 | [diff] [blame] | 146 | |
Rafael J. Wysocki | d431cbc | 2014-07-15 22:02:11 +0200 | [diff] [blame] | 147 | pm_states[PM_SUSPEND_FREEZE] = pm_labels[j]; |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 148 | |
Srivatsa S. Bhat | bcda53f | 2011-12-07 22:29:54 +0100 | [diff] [blame] | 149 | unlock_system_sleep(); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 150 | } |
Kevin Hilman | a5e4fd8 | 2011-06-27 01:01:07 +0200 | [diff] [blame] | 151 | EXPORT_SYMBOL_GPL(suspend_set_ops); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 152 | |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 153 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 154 | * suspend_valid_only_mem - Generic memory-only valid callback. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 155 | * |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 156 | * Platform drivers that implement mem suspend only and only need to check for |
| 157 | * that in their .valid() callback can use this instead of rolling their own |
| 158 | * .valid() callback. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 159 | */ |
| 160 | int suspend_valid_only_mem(suspend_state_t state) |
| 161 | { |
| 162 | return state == PM_SUSPEND_MEM; |
| 163 | } |
Kevin Hilman | a5e4fd8 | 2011-06-27 01:01:07 +0200 | [diff] [blame] | 164 | EXPORT_SYMBOL_GPL(suspend_valid_only_mem); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 165 | |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 166 | static bool sleep_state_supported(suspend_state_t state) |
| 167 | { |
| 168 | return state == PM_SUSPEND_FREEZE || (suspend_ops && suspend_ops->enter); |
| 169 | } |
| 170 | |
| 171 | static int platform_suspend_prepare(suspend_state_t state) |
| 172 | { |
| 173 | return state != PM_SUSPEND_FREEZE && suspend_ops->prepare ? |
| 174 | suspend_ops->prepare() : 0; |
| 175 | } |
| 176 | |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 177 | static int platform_suspend_prepare_late(suspend_state_t state) |
| 178 | { |
Dmitry Eremin-Solenikov | 403b963 | 2014-11-08 19:17:13 +0300 | [diff] [blame] | 179 | return state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->prepare ? |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 180 | freeze_ops->prepare() : 0; |
| 181 | } |
| 182 | |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 183 | static int platform_suspend_prepare_noirq(suspend_state_t state) |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 184 | { |
| 185 | return state != PM_SUSPEND_FREEZE && suspend_ops->prepare_late ? |
| 186 | suspend_ops->prepare_late() : 0; |
| 187 | } |
| 188 | |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 189 | static void platform_resume_noirq(suspend_state_t state) |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 190 | { |
| 191 | if (state != PM_SUSPEND_FREEZE && suspend_ops->wake) |
| 192 | suspend_ops->wake(); |
| 193 | } |
| 194 | |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 195 | static void platform_resume_early(suspend_state_t state) |
| 196 | { |
Dmitry Eremin-Solenikov | 403b963 | 2014-11-08 19:17:13 +0300 | [diff] [blame] | 197 | if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->restore) |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 198 | freeze_ops->restore(); |
| 199 | } |
| 200 | |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 201 | static void platform_resume_finish(suspend_state_t state) |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 202 | { |
| 203 | if (state != PM_SUSPEND_FREEZE && suspend_ops->finish) |
| 204 | suspend_ops->finish(); |
| 205 | } |
| 206 | |
| 207 | static int platform_suspend_begin(suspend_state_t state) |
| 208 | { |
| 209 | if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->begin) |
| 210 | return freeze_ops->begin(); |
| 211 | else if (suspend_ops->begin) |
| 212 | return suspend_ops->begin(state); |
| 213 | else |
| 214 | return 0; |
| 215 | } |
| 216 | |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 217 | static void platform_resume_end(suspend_state_t state) |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 218 | { |
| 219 | if (state == PM_SUSPEND_FREEZE && freeze_ops && freeze_ops->end) |
| 220 | freeze_ops->end(); |
| 221 | else if (suspend_ops->end) |
| 222 | suspend_ops->end(); |
| 223 | } |
| 224 | |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 225 | static void platform_recover(suspend_state_t state) |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 226 | { |
| 227 | if (state != PM_SUSPEND_FREEZE && suspend_ops->recover) |
| 228 | suspend_ops->recover(); |
| 229 | } |
| 230 | |
| 231 | static bool platform_suspend_again(suspend_state_t state) |
| 232 | { |
| 233 | return state != PM_SUSPEND_FREEZE && suspend_ops->suspend_again ? |
| 234 | suspend_ops->suspend_again() : false; |
| 235 | } |
| 236 | |
Brian Norris | 1d4a9c1 | 2015-02-22 21:16:49 -0800 | [diff] [blame] | 237 | #ifdef CONFIG_PM_DEBUG |
| 238 | static unsigned int pm_test_delay = 5; |
| 239 | module_param(pm_test_delay, uint, 0644); |
| 240 | MODULE_PARM_DESC(pm_test_delay, |
| 241 | "Number of seconds to wait before resuming from suspend test"); |
| 242 | #endif |
| 243 | |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 244 | static int suspend_test(int level) |
| 245 | { |
| 246 | #ifdef CONFIG_PM_DEBUG |
| 247 | if (pm_test_level == level) { |
Brian Norris | 1d4a9c1 | 2015-02-22 21:16:49 -0800 | [diff] [blame] | 248 | printk(KERN_INFO "suspend debug: Waiting for %d second(s).\n", |
| 249 | pm_test_delay); |
| 250 | mdelay(pm_test_delay * 1000); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 251 | return 1; |
| 252 | } |
| 253 | #endif /* !CONFIG_PM_DEBUG */ |
| 254 | return 0; |
| 255 | } |
| 256 | |
| 257 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 258 | * suspend_prepare - Prepare for entering system sleep state. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 259 | * |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 260 | * Common code run for every system sleep state that can be entered (except for |
| 261 | * hibernation). Run suspend notifiers, allocate the "suspend" console and |
| 262 | * freeze processes. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 263 | */ |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 264 | static int suspend_prepare(suspend_state_t state) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 265 | { |
| 266 | int error; |
| 267 | |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 268 | if (!sleep_state_supported(state)) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 269 | return -EPERM; |
| 270 | |
| 271 | pm_prepare_console(); |
| 272 | |
| 273 | error = pm_notifier_call_chain(PM_SUSPEND_PREPARE); |
| 274 | if (error) |
| 275 | goto Finish; |
| 276 | |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 277 | trace_suspend_resume(TPS("freeze_processes"), 0, true); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 278 | error = suspend_freeze_processes(); |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 279 | trace_suspend_resume(TPS("freeze_processes"), 0, false); |
Tejun Heo | 03afed8 | 2011-11-21 12:32:24 -0800 | [diff] [blame] | 280 | if (!error) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 281 | return 0; |
| 282 | |
Tejun Heo | 03afed8 | 2011-11-21 12:32:24 -0800 | [diff] [blame] | 283 | suspend_stats.failed_freeze++; |
| 284 | dpm_save_failed_step(SUSPEND_FREEZE); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 285 | Finish: |
| 286 | pm_notifier_call_chain(PM_POST_SUSPEND); |
| 287 | pm_restore_console(); |
| 288 | return error; |
| 289 | } |
| 290 | |
| 291 | /* default implementation */ |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 292 | void __weak arch_suspend_disable_irqs(void) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 293 | { |
| 294 | local_irq_disable(); |
| 295 | } |
| 296 | |
| 297 | /* default implementation */ |
Gideon Israel Dsouza | 52f5684c | 2014-04-07 15:39:20 -0700 | [diff] [blame] | 298 | void __weak arch_suspend_enable_irqs(void) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 299 | { |
| 300 | local_irq_enable(); |
| 301 | } |
| 302 | |
| 303 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 304 | * suspend_enter - Make the system enter the given sleep state. |
| 305 | * @state: System sleep state to enter. |
| 306 | * @wakeup: Returns information that the sleep state should not be re-entered. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 307 | * |
MyungJoo Ham | 3b5fe85 | 2011-06-12 15:57:05 +0200 | [diff] [blame] | 308 | * This function should be called after devices have been suspended. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 309 | */ |
MyungJoo Ham | 3b5fe85 | 2011-06-12 15:57:05 +0200 | [diff] [blame] | 310 | static int suspend_enter(suspend_state_t state, bool *wakeup) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 311 | { |
| 312 | int error; |
| 313 | |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 314 | error = platform_suspend_prepare(state); |
| 315 | if (error) |
| 316 | goto Platform_finish; |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 317 | |
Rafael J. Wysocki | 2a8a8ce | 2014-09-30 02:21:34 +0200 | [diff] [blame] | 318 | error = dpm_suspend_late(PMSG_SUSPEND); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 319 | if (error) { |
Rafael J. Wysocki | 2a8a8ce | 2014-09-30 02:21:34 +0200 | [diff] [blame] | 320 | printk(KERN_ERR "PM: late suspend of devices failed\n"); |
Rafael J. Wysocki | ce44101 | 2010-07-07 23:43:45 +0200 | [diff] [blame] | 321 | goto Platform_finish; |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 322 | } |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 323 | error = platform_suspend_prepare_late(state); |
| 324 | if (error) |
| 325 | goto Devices_early_resume; |
| 326 | |
Rafael J. Wysocki | 2a8a8ce | 2014-09-30 02:21:34 +0200 | [diff] [blame] | 327 | error = dpm_suspend_noirq(PMSG_SUSPEND); |
| 328 | if (error) { |
| 329 | printk(KERN_ERR "PM: noirq suspend of devices failed\n"); |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 330 | goto Platform_early_resume; |
Rafael J. Wysocki | 2a8a8ce | 2014-09-30 02:21:34 +0200 | [diff] [blame] | 331 | } |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 332 | error = platform_suspend_prepare_noirq(state); |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 333 | if (error) |
| 334 | goto Platform_wake; |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 335 | |
Zhang Rui | 08605ac | 2013-03-27 03:36:10 +0000 | [diff] [blame] | 336 | if (suspend_test(TEST_PLATFORM)) |
| 337 | goto Platform_wake; |
| 338 | |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 339 | /* |
| 340 | * PM_SUSPEND_FREEZE equals |
| 341 | * frozen processes + suspended devices + idle processors. |
| 342 | * Thus we should invoke freeze_enter() soon after |
| 343 | * all the devices are suspended. |
| 344 | */ |
| 345 | if (state == PM_SUSPEND_FREEZE) { |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 346 | trace_suspend_resume(TPS("machine_suspend"), state, true); |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 347 | freeze_enter(); |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 348 | trace_suspend_resume(TPS("machine_suspend"), state, false); |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 349 | goto Platform_wake; |
| 350 | } |
| 351 | |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 352 | error = disable_nonboot_cpus(); |
| 353 | if (error || suspend_test(TEST_CPUS)) |
| 354 | goto Enable_cpus; |
| 355 | |
| 356 | arch_suspend_disable_irqs(); |
| 357 | BUG_ON(!irqs_disabled()); |
| 358 | |
Rafael J. Wysocki | 2e711c0 | 2011-04-26 19:15:07 +0200 | [diff] [blame] | 359 | error = syscore_suspend(); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 360 | if (!error) { |
MyungJoo Ham | 3b5fe85 | 2011-06-12 15:57:05 +0200 | [diff] [blame] | 361 | *wakeup = pm_wakeup_pending(); |
| 362 | if (!(suspend_test(TEST_CORE) || *wakeup)) { |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 363 | trace_suspend_resume(TPS("machine_suspend"), |
| 364 | state, true); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 365 | error = suspend_ops->enter(state); |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 366 | trace_suspend_resume(TPS("machine_suspend"), |
| 367 | state, false); |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 368 | events_check_enabled = false; |
Ruchi Kandoi | 6717673 | 2015-05-07 19:07:42 -0700 | [diff] [blame] | 369 | } else if (*wakeup) { |
| 370 | error = -EBUSY; |
Rafael J. Wysocki | c125e96 | 2010-07-05 22:43:53 +0200 | [diff] [blame] | 371 | } |
Rafael J. Wysocki | 40dc166 | 2011-03-15 00:43:46 +0100 | [diff] [blame] | 372 | syscore_resume(); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | arch_suspend_enable_irqs(); |
| 376 | BUG_ON(irqs_disabled()); |
| 377 | |
| 378 | Enable_cpus: |
| 379 | enable_nonboot_cpus(); |
| 380 | |
| 381 | Platform_wake: |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 382 | platform_resume_noirq(state); |
Rafael J. Wysocki | 2a8a8ce | 2014-09-30 02:21:34 +0200 | [diff] [blame] | 383 | dpm_resume_noirq(PMSG_RESUME); |
| 384 | |
Rafael J. Wysocki | a8d46b9 | 2014-09-30 02:29:01 +0200 | [diff] [blame] | 385 | Platform_early_resume: |
| 386 | platform_resume_early(state); |
| 387 | |
Rafael J. Wysocki | 2a8a8ce | 2014-09-30 02:21:34 +0200 | [diff] [blame] | 388 | Devices_early_resume: |
| 389 | dpm_resume_early(PMSG_RESUME); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 390 | |
Rafael J. Wysocki | ce44101 | 2010-07-07 23:43:45 +0200 | [diff] [blame] | 391 | Platform_finish: |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 392 | platform_resume_finish(state); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 393 | return error; |
| 394 | } |
| 395 | |
| 396 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 397 | * suspend_devices_and_enter - Suspend devices and enter system sleep state. |
| 398 | * @state: System sleep state to enter. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 399 | */ |
| 400 | int suspend_devices_and_enter(suspend_state_t state) |
| 401 | { |
| 402 | int error; |
MyungJoo Ham | 3b5fe85 | 2011-06-12 15:57:05 +0200 | [diff] [blame] | 403 | bool wakeup = false; |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 404 | |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 405 | if (!sleep_state_supported(state)) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 406 | return -ENOSYS; |
| 407 | |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 408 | error = platform_suspend_begin(state); |
| 409 | if (error) |
| 410 | goto Close; |
| 411 | |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 412 | suspend_console(); |
| 413 | suspend_test_start(); |
| 414 | error = dpm_suspend_start(PMSG_SUSPEND); |
| 415 | if (error) { |
Bernie Thompson | 9350de06 | 2013-06-01 00:47:43 +0000 | [diff] [blame] | 416 | pr_err("PM: Some devices failed to suspend, or early wake event detected\n"); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 417 | goto Recover_platform; |
| 418 | } |
| 419 | suspend_test_finish("suspend devices"); |
| 420 | if (suspend_test(TEST_DEVICES)) |
| 421 | goto Recover_platform; |
| 422 | |
MyungJoo Ham | 3b5fe85 | 2011-06-12 15:57:05 +0200 | [diff] [blame] | 423 | do { |
| 424 | error = suspend_enter(state, &wakeup); |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 425 | } while (!error && !wakeup && platform_suspend_again(state)); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 426 | |
| 427 | Resume_devices: |
| 428 | suspend_test_start(); |
| 429 | dpm_resume_end(PMSG_RESUME); |
| 430 | suspend_test_finish("resume devices"); |
Todd E Brandt | 0cadc70 | 2014-09-19 14:07:12 -0700 | [diff] [blame] | 431 | trace_suspend_resume(TPS("resume_console"), state, true); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 432 | resume_console(); |
Todd E Brandt | 0cadc70 | 2014-09-19 14:07:12 -0700 | [diff] [blame] | 433 | trace_suspend_resume(TPS("resume_console"), state, false); |
Rafael J. Wysocki | 1f0b638 | 2014-05-15 23:29:57 +0200 | [diff] [blame] | 434 | |
Rafael J. Wysocki | 8490fdf | 2014-07-23 00:57:53 +0200 | [diff] [blame] | 435 | Close: |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 436 | platform_resume_end(state); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 437 | return error; |
| 438 | |
| 439 | Recover_platform: |
Rafael J. Wysocki | ebc3e41 | 2014-09-30 02:22:24 +0200 | [diff] [blame] | 440 | platform_recover(state); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 441 | goto Resume_devices; |
| 442 | } |
| 443 | |
| 444 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 445 | * suspend_finish - Clean up before finishing the suspend sequence. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 446 | * |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 447 | * Call platform code to clean up, restart processes, and free the console that |
| 448 | * we've allocated. This routine is not called for hibernation. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 449 | */ |
| 450 | static void suspend_finish(void) |
| 451 | { |
| 452 | suspend_thaw_processes(); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 453 | pm_notifier_call_chain(PM_POST_SUSPEND); |
| 454 | pm_restore_console(); |
| 455 | } |
| 456 | |
| 457 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 458 | * enter_state - Do common work needed to enter system sleep state. |
| 459 | * @state: System sleep state to enter. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 460 | * |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 461 | * Make sure that no one else is trying to put the system into a sleep state. |
| 462 | * Fail if that's not the case. Otherwise, prepare for system suspend, make the |
| 463 | * system enter the given sleep state and clean up after wakeup. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 464 | */ |
Rafael J. Wysocki | 93e1ee4 | 2012-02-13 16:29:24 +0100 | [diff] [blame] | 465 | static int enter_state(suspend_state_t state) |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 466 | { |
| 467 | int error; |
| 468 | |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 469 | trace_suspend_resume(TPS("suspend_enter"), state, true); |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 470 | if (state == PM_SUSPEND_FREEZE) { |
| 471 | #ifdef CONFIG_PM_DEBUG |
| 472 | if (pm_test_level != TEST_NONE && pm_test_level <= TEST_CPUS) { |
Rafael J. Wysocki | a921504 | 2015-05-05 23:42:25 +0200 | [diff] [blame] | 473 | pr_warning("PM: Unsupported test mode for suspend to idle," |
Rafael J. Wysocki | 43e8317 | 2014-05-26 13:40:53 +0200 | [diff] [blame] | 474 | "please choose none/freezer/devices/platform.\n"); |
| 475 | return -EAGAIN; |
| 476 | } |
| 477 | #endif |
| 478 | } else if (!valid_state(state)) { |
| 479 | return -EINVAL; |
| 480 | } |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 481 | if (!mutex_trylock(&pm_mutex)) |
| 482 | return -EBUSY; |
| 483 | |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 484 | if (state == PM_SUSPEND_FREEZE) |
| 485 | freeze_begin(); |
| 486 | |
Len Brown | 2fd77ff | 2015-07-31 12:46:17 -0400 | [diff] [blame] | 487 | #ifndef CONFIG_SUSPEND_SKIP_SYNC |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 488 | trace_suspend_resume(TPS("sync_filesystems"), 0, true); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 489 | printk(KERN_INFO "PM: Syncing filesystems ... "); |
| 490 | sys_sync(); |
| 491 | printk("done.\n"); |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 492 | trace_suspend_resume(TPS("sync_filesystems"), 0, false); |
Len Brown | 2fd77ff | 2015-07-31 12:46:17 -0400 | [diff] [blame] | 493 | #endif |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 494 | |
Rafael J. Wysocki | a921504 | 2015-05-05 23:42:25 +0200 | [diff] [blame] | 495 | pr_debug("PM: Preparing system for sleep (%s)\n", pm_states[state]); |
Zhang Rui | 7e73c5ae | 2013-02-06 13:00:36 +0100 | [diff] [blame] | 496 | error = suspend_prepare(state); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 497 | if (error) |
| 498 | goto Unlock; |
| 499 | |
| 500 | if (suspend_test(TEST_FREEZER)) |
| 501 | goto Finish; |
| 502 | |
Todd E Brandt | bb3632c | 2014-06-06 05:40:17 -0700 | [diff] [blame] | 503 | trace_suspend_resume(TPS("suspend_enter"), state, false); |
Rafael J. Wysocki | a921504 | 2015-05-05 23:42:25 +0200 | [diff] [blame] | 504 | pr_debug("PM: Suspending system (%s)\n", pm_states[state]); |
Rafael J. Wysocki | 8718647 | 2011-05-10 21:09:53 +0200 | [diff] [blame] | 505 | pm_restrict_gfp_mask(); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 506 | error = suspend_devices_and_enter(state); |
Rafael J. Wysocki | 8718647 | 2011-05-10 21:09:53 +0200 | [diff] [blame] | 507 | pm_restore_gfp_mask(); |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 508 | |
| 509 | Finish: |
| 510 | pr_debug("PM: Finishing wakeup.\n"); |
| 511 | suspend_finish(); |
| 512 | Unlock: |
| 513 | mutex_unlock(&pm_mutex); |
| 514 | return error; |
| 515 | } |
| 516 | |
| 517 | /** |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 518 | * pm_suspend - Externally visible function for suspending the system. |
| 519 | * @state: System sleep state to enter. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 520 | * |
Rafael J. Wysocki | 55ae451 | 2012-02-13 16:29:14 +0100 | [diff] [blame] | 521 | * Check if the value of @state represents one of the supported states, |
| 522 | * execute enter_state() and update system suspend statistics. |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 523 | */ |
| 524 | int pm_suspend(suspend_state_t state) |
| 525 | { |
Rafael J. Wysocki | bc25cf5 | 2012-02-13 16:29:33 +0100 | [diff] [blame] | 526 | int error; |
| 527 | |
| 528 | if (state <= PM_SUSPEND_ON || state >= PM_SUSPEND_MAX) |
| 529 | return -EINVAL; |
| 530 | |
| 531 | error = enter_state(state); |
| 532 | if (error) { |
| 533 | suspend_stats.fail++; |
| 534 | dpm_save_failed_errno(error); |
| 535 | } else { |
| 536 | suspend_stats.success++; |
ShuoX Liu | 2a77c46 | 2011-08-10 23:01:26 +0200 | [diff] [blame] | 537 | } |
Rafael J. Wysocki | bc25cf5 | 2012-02-13 16:29:33 +0100 | [diff] [blame] | 538 | return error; |
Rafael J. Wysocki | a9d7052 | 2009-06-10 01:27:12 +0200 | [diff] [blame] | 539 | } |
| 540 | EXPORT_SYMBOL(pm_suspend); |