Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * kernel/power/main.c - PM subsystem core functionality. |
| 3 | * |
| 4 | * Copyright (c) 2003 Patrick Mochel |
| 5 | * Copyright (c) 2003 Open Source Development Lab |
| 6 | * |
| 7 | * This file is released under the GPLv2 |
| 8 | * |
| 9 | */ |
| 10 | |
Ralf Baechle | 4cf3034 | 2006-12-06 20:36:06 -0800 | [diff] [blame] | 11 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/suspend.h> |
| 13 | #include <linux/kobject.h> |
| 14 | #include <linux/string.h> |
| 15 | #include <linux/delay.h> |
| 16 | #include <linux/errno.h> |
| 17 | #include <linux/init.h> |
Andrew Morton | 6cc0719 | 2006-06-22 14:47:18 -0700 | [diff] [blame] | 18 | #include <linux/console.h> |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 19 | #include <linux/cpu.h> |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 20 | #include <linux/resume-trace.h> |
Nigel Cunningham | 7dfb710 | 2006-12-06 20:34:23 -0800 | [diff] [blame] | 21 | #include <linux/freezer.h> |
Christoph Lameter | 9617729 | 2007-02-10 01:43:03 -0800 | [diff] [blame] | 22 | #include <linux/vmstat.h> |
Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 23 | #include <linux/syscalls.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #include "power.h" |
| 26 | |
Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 27 | DEFINE_MUTEX(pm_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | |
Len Brown | 9f9adec | 2007-12-13 17:38:03 -0500 | [diff] [blame] | 29 | unsigned int pm_flags; |
| 30 | EXPORT_SYMBOL(pm_flags); |
| 31 | |
Alan Stern | 8252575 | 2007-11-19 23:49:18 +0100 | [diff] [blame] | 32 | #ifdef CONFIG_PM_SLEEP |
| 33 | |
| 34 | /* Routines for PM-transition notifications */ |
| 35 | |
| 36 | static BLOCKING_NOTIFIER_HEAD(pm_chain_head); |
| 37 | |
| 38 | int register_pm_notifier(struct notifier_block *nb) |
| 39 | { |
| 40 | return blocking_notifier_chain_register(&pm_chain_head, nb); |
| 41 | } |
| 42 | EXPORT_SYMBOL_GPL(register_pm_notifier); |
| 43 | |
| 44 | int unregister_pm_notifier(struct notifier_block *nb) |
| 45 | { |
| 46 | return blocking_notifier_chain_unregister(&pm_chain_head, nb); |
| 47 | } |
| 48 | EXPORT_SYMBOL_GPL(unregister_pm_notifier); |
| 49 | |
| 50 | int pm_notifier_call_chain(unsigned long val) |
| 51 | { |
| 52 | return (blocking_notifier_call_chain(&pm_chain_head, val, NULL) |
| 53 | == NOTIFY_BAD) ? -EINVAL : 0; |
| 54 | } |
| 55 | |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 56 | #ifdef CONFIG_PM_DEBUG |
| 57 | int pm_test_level = TEST_NONE; |
| 58 | |
| 59 | static int suspend_test(int level) |
| 60 | { |
| 61 | if (pm_test_level == level) { |
| 62 | printk(KERN_INFO "suspend debug: Waiting for 5 seconds.\n"); |
| 63 | mdelay(5000); |
| 64 | return 1; |
| 65 | } |
| 66 | return 0; |
| 67 | } |
| 68 | |
| 69 | static const char * const pm_tests[__TEST_AFTER_LAST] = { |
| 70 | [TEST_NONE] = "none", |
| 71 | [TEST_CORE] = "core", |
| 72 | [TEST_CPUS] = "processors", |
| 73 | [TEST_PLATFORM] = "platform", |
| 74 | [TEST_DEVICES] = "devices", |
| 75 | [TEST_FREEZER] = "freezer", |
| 76 | }; |
| 77 | |
Rafael J. Wysocki | 039a75c | 2008-01-29 00:29:06 +0100 | [diff] [blame] | 78 | static ssize_t pm_test_show(struct kobject *kobj, struct kobj_attribute *attr, |
| 79 | char *buf) |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 80 | { |
| 81 | char *s = buf; |
| 82 | int level; |
| 83 | |
| 84 | for (level = TEST_FIRST; level <= TEST_MAX; level++) |
| 85 | if (pm_tests[level]) { |
| 86 | if (level == pm_test_level) |
| 87 | s += sprintf(s, "[%s] ", pm_tests[level]); |
| 88 | else |
| 89 | s += sprintf(s, "%s ", pm_tests[level]); |
| 90 | } |
| 91 | |
| 92 | if (s != buf) |
| 93 | /* convert the last space to a newline */ |
| 94 | *(s-1) = '\n'; |
| 95 | |
| 96 | return (s - buf); |
| 97 | } |
| 98 | |
Rafael J. Wysocki | 039a75c | 2008-01-29 00:29:06 +0100 | [diff] [blame] | 99 | static ssize_t pm_test_store(struct kobject *kobj, struct kobj_attribute *attr, |
| 100 | const char *buf, size_t n) |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 101 | { |
| 102 | const char * const *s; |
| 103 | int level; |
| 104 | char *p; |
| 105 | int len; |
| 106 | int error = -EINVAL; |
| 107 | |
| 108 | p = memchr(buf, '\n', n); |
| 109 | len = p ? p - buf : n; |
| 110 | |
| 111 | mutex_lock(&pm_mutex); |
| 112 | |
| 113 | level = TEST_FIRST; |
| 114 | for (s = &pm_tests[level]; level <= TEST_MAX; s++, level++) |
| 115 | if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) { |
| 116 | pm_test_level = level; |
| 117 | error = 0; |
| 118 | break; |
| 119 | } |
| 120 | |
| 121 | mutex_unlock(&pm_mutex); |
| 122 | |
| 123 | return error ? error : n; |
| 124 | } |
| 125 | |
| 126 | power_attr(pm_test); |
| 127 | #else /* !CONFIG_PM_DEBUG */ |
| 128 | static inline int suspend_test(int level) { return 0; } |
| 129 | #endif /* !CONFIG_PM_DEBUG */ |
| 130 | |
Rafael J. Wysocki | 7671b8a | 2007-12-14 01:07:13 +0100 | [diff] [blame] | 131 | #endif /* CONFIG_PM_SLEEP */ |
Rafael J. Wysocki | 039a75c | 2008-01-29 00:29:06 +0100 | [diff] [blame] | 132 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 133 | #ifdef CONFIG_SUSPEND |
| 134 | |
| 135 | /* This is just an arbitrary number */ |
| 136 | #define FREE_PAGE_NUMBER (100) |
| 137 | |
Rafael J. Wysocki | f242d91 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 138 | static struct platform_suspend_ops *suspend_ops; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
| 140 | /** |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 141 | * suspend_set_ops - Set the global suspend method table. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | * @ops: Pointer to ops structure. |
| 143 | */ |
| 144 | |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 145 | void suspend_set_ops(struct platform_suspend_ops *ops) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | { |
Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 147 | mutex_lock(&pm_mutex); |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 148 | suspend_ops = ops; |
Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 149 | mutex_unlock(&pm_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | } |
| 151 | |
Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 152 | /** |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 153 | * suspend_valid_only_mem - generic memory-only valid callback |
Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 154 | * |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 155 | * Platform drivers that implement mem suspend only and only need |
Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 156 | * to check for that in their .valid callback can use this instead |
| 157 | * of rolling their own .valid callback. |
| 158 | */ |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 159 | int suspend_valid_only_mem(suspend_state_t state) |
Johannes Berg | e8c9c50 | 2007-04-30 15:09:54 -0700 | [diff] [blame] | 160 | { |
| 161 | return state == PM_SUSPEND_MEM; |
| 162 | } |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /** |
| 165 | * suspend_prepare - Do prep work before entering low-power state. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 166 | * |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 167 | * This is common code that is called for each state that we're entering. |
| 168 | * Run suspend notifiers, allocate a console and stop all processes. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | */ |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 170 | static int suspend_prepare(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | { |
Rafael J. Wysocki | e3920fb | 2006-09-25 23:32:48 -0700 | [diff] [blame] | 172 | int error; |
David Shaohua Li | 5ae947e | 2005-03-18 16:27:13 -0500 | [diff] [blame] | 173 | unsigned int free_pages; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 174 | |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 175 | if (!suspend_ops || !suspend_ops->enter) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 176 | return -EPERM; |
| 177 | |
Johannes Berg | af258f5 | 2008-01-11 01:22:23 +0100 | [diff] [blame] | 178 | pm_prepare_console(); |
| 179 | |
Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 180 | error = pm_notifier_call_chain(PM_SUSPEND_PREPARE); |
| 181 | if (error) |
| 182 | goto Finish; |
| 183 | |
Johannes Berg | b28f508 | 2008-01-15 23:17:00 -0500 | [diff] [blame] | 184 | if (suspend_freeze_processes()) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | error = -EAGAIN; |
| 186 | goto Thaw; |
| 187 | } |
| 188 | |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 189 | free_pages = global_page_state(NR_FREE_PAGES); |
| 190 | if (free_pages < FREE_PAGE_NUMBER) { |
David Shaohua Li | 5ae947e | 2005-03-18 16:27:13 -0500 | [diff] [blame] | 191 | pr_debug("PM: free some memory\n"); |
| 192 | shrink_all_memory(FREE_PAGE_NUMBER - free_pages); |
| 193 | if (nr_free_pages() < FREE_PAGE_NUMBER) { |
| 194 | error = -ENOMEM; |
| 195 | printk(KERN_ERR "PM: No enough memory\n"); |
David Shaohua Li | 5ae947e | 2005-03-18 16:27:13 -0500 | [diff] [blame] | 196 | } |
| 197 | } |
Rafael J. Wysocki | e3c7db62 | 2007-02-10 01:43:31 -0800 | [diff] [blame] | 198 | if (!error) |
| 199 | return 0; |
| 200 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | Thaw: |
Johannes Berg | b28f508 | 2008-01-15 23:17:00 -0500 | [diff] [blame] | 202 | suspend_thaw_processes(); |
Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 203 | Finish: |
| 204 | pm_notifier_call_chain(PM_POST_SUSPEND); |
Johannes Berg | af258f5 | 2008-01-11 01:22:23 +0100 | [diff] [blame] | 205 | pm_restore_console(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | return error; |
| 207 | } |
| 208 | |
Johannes Berg | a53c46d | 2007-04-26 11:43:58 +0200 | [diff] [blame] | 209 | /* default implementation */ |
| 210 | void __attribute__ ((weak)) arch_suspend_disable_irqs(void) |
| 211 | { |
| 212 | local_irq_disable(); |
| 213 | } |
| 214 | |
| 215 | /* default implementation */ |
| 216 | void __attribute__ ((weak)) arch_suspend_enable_irqs(void) |
| 217 | { |
| 218 | local_irq_enable(); |
| 219 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 221 | /** |
| 222 | * suspend_enter - enter the desired system sleep state. |
| 223 | * @state: state to enter |
| 224 | * |
| 225 | * This function should be called after devices have been suspended. |
| 226 | */ |
Adrian Bunk | a065c86 | 2007-10-18 03:04:37 -0700 | [diff] [blame] | 227 | static int suspend_enter(suspend_state_t state) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | { |
| 229 | int error = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Johannes Berg | a53c46d | 2007-04-26 11:43:58 +0200 | [diff] [blame] | 231 | arch_suspend_disable_irqs(); |
| 232 | BUG_ON(!irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | |
| 234 | if ((error = device_power_down(PMSG_SUSPEND))) { |
Rafael J. Wysocki | 465d2b4 | 2007-12-08 02:08:38 +0100 | [diff] [blame] | 235 | printk(KERN_ERR "PM: Some devices failed to power down\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | goto Done; |
| 237 | } |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 238 | |
| 239 | if (!suspend_test(TEST_CORE)) |
| 240 | error = suspend_ops->enter(state); |
| 241 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | device_power_up(); |
| 243 | Done: |
Johannes Berg | a53c46d | 2007-04-26 11:43:58 +0200 | [diff] [blame] | 244 | arch_suspend_enable_irqs(); |
| 245 | BUG_ON(irqs_disabled()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | return error; |
| 247 | } |
| 248 | |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 249 | /** |
Rafael J. Wysocki | 9628c0e | 2007-12-08 02:06:00 +0100 | [diff] [blame] | 250 | * suspend_devices_and_enter - suspend devices and enter the desired system |
| 251 | * sleep state. |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 252 | * @state: state to enter |
| 253 | */ |
| 254 | int suspend_devices_and_enter(suspend_state_t state) |
| 255 | { |
| 256 | int error; |
| 257 | |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 258 | if (!suspend_ops) |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 259 | return -ENOSYS; |
| 260 | |
Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 261 | if (suspend_ops->begin) { |
| 262 | error = suspend_ops->begin(state); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 263 | if (error) |
Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 264 | goto Close; |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 265 | } |
| 266 | suspend_console(); |
| 267 | error = device_suspend(PMSG_SUSPEND); |
| 268 | if (error) { |
Rafael J. Wysocki | 465d2b4 | 2007-12-08 02:08:38 +0100 | [diff] [blame] | 269 | printk(KERN_ERR "PM: Some devices failed to suspend\n"); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 270 | goto Resume_console; |
| 271 | } |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 272 | |
| 273 | if (suspend_test(TEST_DEVICES)) |
| 274 | goto Resume_devices; |
| 275 | |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 276 | if (suspend_ops->prepare) { |
Rafael J. Wysocki | e6c5eb9 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 277 | error = suspend_ops->prepare(); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 278 | if (error) |
| 279 | goto Resume_devices; |
| 280 | } |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 281 | |
| 282 | if (suspend_test(TEST_PLATFORM)) |
| 283 | goto Finish; |
| 284 | |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 285 | error = disable_nonboot_cpus(); |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 286 | if (!error && !suspend_test(TEST_CPUS)) |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 287 | suspend_enter(state); |
| 288 | |
| 289 | enable_nonboot_cpus(); |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 290 | Finish: |
Rafael J. Wysocki | e6c5eb9 | 2007-10-18 03:04:41 -0700 | [diff] [blame] | 291 | if (suspend_ops->finish) |
| 292 | suspend_ops->finish(); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 293 | Resume_devices: |
| 294 | device_resume(); |
| 295 | Resume_console: |
| 296 | resume_console(); |
Rafael J. Wysocki | c697eec | 2008-01-08 00:04:17 +0100 | [diff] [blame] | 297 | Close: |
| 298 | if (suspend_ops->end) |
| 299 | suspend_ops->end(); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 300 | return error; |
| 301 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | |
| 303 | /** |
| 304 | * suspend_finish - Do final work before exiting suspend sequence. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | * |
| 306 | * Call platform code to clean up, restart processes, and free the |
| 307 | * console that we've allocated. This is not called for suspend-to-disk. |
| 308 | */ |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 309 | static void suspend_finish(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 310 | { |
Johannes Berg | b28f508 | 2008-01-15 23:17:00 -0500 | [diff] [blame] | 311 | suspend_thaw_processes(); |
Rafael J. Wysocki | b10d911 | 2007-07-19 01:47:36 -0700 | [diff] [blame] | 312 | pm_notifier_call_chain(PM_POST_SUSPEND); |
Johannes Berg | af258f5 | 2008-01-11 01:22:23 +0100 | [diff] [blame] | 313 | pm_restore_console(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | } |
| 315 | |
| 316 | |
| 317 | |
| 318 | |
Andreas Mohr | 3b364b8 | 2006-06-25 05:47:56 -0700 | [diff] [blame] | 319 | static const char * const pm_states[PM_SUSPEND_MAX] = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | [PM_SUSPEND_STANDBY] = "standby", |
| 321 | [PM_SUSPEND_MEM] = "mem", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | }; |
| 323 | |
Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 324 | static inline int valid_state(suspend_state_t state) |
| 325 | { |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 326 | /* All states need lowlevel support and need to be valid |
| 327 | * to the lowlevel implementation, no valid callback |
Johannes Berg | 9684e51 | 2007-04-30 15:09:55 -0700 | [diff] [blame] | 328 | * implies that none are valid. */ |
Rafael J. Wysocki | 26398a7 | 2007-10-18 03:04:40 -0700 | [diff] [blame] | 329 | if (!suspend_ops || !suspend_ops->valid || !suspend_ops->valid(state)) |
Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 330 | return 0; |
| 331 | return 1; |
| 332 | } |
| 333 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | |
| 335 | /** |
| 336 | * enter_state - Do common work of entering low-power state. |
| 337 | * @state: pm_state structure for state we're entering. |
| 338 | * |
| 339 | * Make sure we're the only ones trying to enter a sleep state. Fail |
| 340 | * if someone has beat us to it, since we don't want anything weird to |
| 341 | * happen when we wake up. |
| 342 | * Then, do the setup for suspend, enter the state, and cleaup (after |
| 343 | * we've woken up). |
| 344 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | static int enter_state(suspend_state_t state) |
| 346 | { |
| 347 | int error; |
| 348 | |
Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 349 | if (!valid_state(state)) |
Shaohua Li | eb9289e | 2005-10-30 15:00:01 -0800 | [diff] [blame] | 350 | return -ENODEV; |
Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 351 | |
Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 352 | if (!mutex_trylock(&pm_mutex)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | return -EBUSY; |
| 354 | |
Rafael J. Wysocki | 465d2b4 | 2007-12-08 02:08:38 +0100 | [diff] [blame] | 355 | printk(KERN_INFO "PM: Syncing filesystems ... "); |
Rafael J. Wysocki | 232b143 | 2007-10-18 03:04:44 -0700 | [diff] [blame] | 356 | sys_sync(); |
| 357 | printk("done.\n"); |
| 358 | |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 359 | pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]); |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 360 | error = suspend_prepare(); |
| 361 | if (error) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | goto Unlock; |
| 363 | |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 364 | if (suspend_test(TEST_FREEZER)) |
| 365 | goto Finish; |
| 366 | |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 367 | pr_debug("PM: Entering %s sleep\n", pm_states[state]); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 368 | error = suspend_devices_and_enter(state); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 370 | Finish: |
David Brownell | 82428b6 | 2005-05-09 08:07:00 -0700 | [diff] [blame] | 371 | pr_debug("PM: Finishing wakeup.\n"); |
Rafael J. Wysocki | 6c961df | 2007-07-19 01:47:38 -0700 | [diff] [blame] | 372 | suspend_finish(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 373 | Unlock: |
Stephen Hemminger | a6d7098 | 2006-12-06 20:34:35 -0800 | [diff] [blame] | 374 | mutex_unlock(&pm_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | return error; |
| 376 | } |
| 377 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | |
| 379 | /** |
| 380 | * pm_suspend - Externally visible function for suspending system. |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 381 | * @state: Enumerated value of state to enter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 382 | * |
| 383 | * Determine whether or not value is within range, get state |
| 384 | * structure, and enter (above). |
| 385 | */ |
| 386 | |
| 387 | int pm_suspend(suspend_state_t state) |
| 388 | { |
Alexey Starikovskiy | e2a5b42 | 2005-03-18 16:20:46 -0500 | [diff] [blame] | 389 | if (state > PM_SUSPEND_ON && state <= PM_SUSPEND_MAX) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 390 | return enter_state(state); |
| 391 | return -EINVAL; |
| 392 | } |
| 393 | |
Ralf Baechle | 4cf3034 | 2006-12-06 20:36:06 -0800 | [diff] [blame] | 394 | EXPORT_SYMBOL(pm_suspend); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 396 | #endif /* CONFIG_SUSPEND */ |
| 397 | |
Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 398 | struct kobject *power_kobj; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 399 | |
| 400 | /** |
| 401 | * state - control system power state. |
| 402 | * |
| 403 | * show() returns what states are supported, which is hard-coded to |
| 404 | * 'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and |
| 405 | * 'disk' (Suspend-to-Disk). |
| 406 | * |
| 407 | * store() accepts one of those strings, translates it into the |
| 408 | * proper enumerated value, and initiates a suspend transition. |
| 409 | */ |
| 410 | |
Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 411 | static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr, |
| 412 | char *buf) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | { |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 414 | char *s = buf; |
| 415 | #ifdef CONFIG_SUSPEND |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 416 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | |
| 418 | for (i = 0; i < PM_SUSPEND_MAX; i++) { |
Pavel Machek | 123d3c1 | 2005-11-29 19:34:37 -0800 | [diff] [blame] | 419 | if (pm_states[i] && valid_state(i)) |
| 420 | s += sprintf(s,"%s ", pm_states[i]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | } |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 422 | #endif |
Rafael J. Wysocki | b0cb1a1 | 2007-07-29 23:24:36 +0200 | [diff] [blame] | 423 | #ifdef CONFIG_HIBERNATION |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 424 | s += sprintf(s, "%s\n", "disk"); |
| 425 | #else |
| 426 | if (s != buf) |
| 427 | /* convert the last space to a newline */ |
| 428 | *(s-1) = '\n'; |
| 429 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | return (s - buf); |
| 431 | } |
| 432 | |
Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 433 | static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr, |
| 434 | const char *buf, size_t n) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 435 | { |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 436 | #ifdef CONFIG_SUSPEND |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | suspend_state_t state = PM_SUSPEND_STANDBY; |
Andreas Mohr | 3b364b8 | 2006-06-25 05:47:56 -0700 | [diff] [blame] | 438 | const char * const *s; |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 439 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | char *p; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | int len; |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 442 | int error = -EINVAL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 443 | |
| 444 | p = memchr(buf, '\n', n); |
| 445 | len = p ? p - buf : n; |
| 446 | |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 447 | /* First, check if we are requested to hibernate */ |
Rafael J. Wysocki | 8d98a69 | 2007-05-16 22:11:19 -0700 | [diff] [blame] | 448 | if (len == 4 && !strncmp(buf, "disk", len)) { |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 449 | error = hibernate(); |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 450 | goto Exit; |
Rafael J. Wysocki | a3d25c2 | 2007-05-09 02:33:18 -0700 | [diff] [blame] | 451 | } |
| 452 | |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 453 | #ifdef CONFIG_SUSPEND |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | for (s = &pm_states[state]; state < PM_SUSPEND_MAX; s++, state++) { |
Rafael J. Wysocki | 8d98a69 | 2007-05-16 22:11:19 -0700 | [diff] [blame] | 455 | if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 456 | break; |
| 457 | } |
dean gaudet | 47bb789 | 2006-04-27 18:39:17 -0700 | [diff] [blame] | 458 | if (state < PM_SUSPEND_MAX && *s) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 459 | error = enter_state(state); |
Rafael J. Wysocki | 296699d | 2007-07-29 23:27:18 +0200 | [diff] [blame] | 460 | #endif |
| 461 | |
| 462 | Exit: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 463 | return error ? error : n; |
| 464 | } |
| 465 | |
| 466 | power_attr(state); |
| 467 | |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 468 | #ifdef CONFIG_PM_TRACE |
| 469 | int pm_trace_enabled; |
| 470 | |
Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 471 | static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr, |
| 472 | char *buf) |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 473 | { |
| 474 | return sprintf(buf, "%d\n", pm_trace_enabled); |
| 475 | } |
| 476 | |
| 477 | static ssize_t |
Kay Sievers | 386f275 | 2007-11-02 13:47:53 +0100 | [diff] [blame] | 478 | pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr, |
| 479 | const char *buf, size_t n) |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 480 | { |
| 481 | int val; |
| 482 | |
| 483 | if (sscanf(buf, "%d", &val) == 1) { |
| 484 | pm_trace_enabled = !!val; |
| 485 | return n; |
| 486 | } |
| 487 | return -EINVAL; |
| 488 | } |
| 489 | |
| 490 | power_attr(pm_trace); |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 491 | #endif /* CONFIG_PM_TRACE */ |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 492 | |
| 493 | static struct attribute * g[] = { |
| 494 | &state_attr.attr, |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 495 | #ifdef CONFIG_PM_TRACE |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 496 | &pm_trace_attr.attr, |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 497 | #endif |
Rafael J. Wysocki | 7671b8a | 2007-12-14 01:07:13 +0100 | [diff] [blame] | 498 | #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_PM_DEBUG) |
Rafael J. Wysocki | 0e7d56e | 2007-11-19 23:41:19 +0100 | [diff] [blame] | 499 | &pm_test_attr.attr, |
| 500 | #endif |
Rafael J. Wysocki | c5c6ba4 | 2006-09-25 23:32:58 -0700 | [diff] [blame] | 501 | NULL, |
| 502 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | |
| 504 | static struct attribute_group attr_group = { |
| 505 | .attrs = g, |
| 506 | }; |
| 507 | |
| 508 | |
| 509 | static int __init pm_init(void) |
| 510 | { |
Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 511 | power_kobj = kobject_create_and_add("power", NULL); |
| 512 | if (!power_kobj) |
Greg Kroah-Hartman | 039a5dc | 2007-11-01 10:39:50 -0700 | [diff] [blame] | 513 | return -ENOMEM; |
Greg Kroah-Hartman | d76e15f | 2007-11-27 11:28:26 -0800 | [diff] [blame] | 514 | return sysfs_create_group(power_kobj, &attr_group); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | core_initcall(pm_init); |