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