blob: d023b6b584e58bf8e8e1d14a83a6f85a13640a8f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Baechle4cf30342006-12-06 20:36:06 -080011#include <linux/module.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#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 Morton6cc07192006-06-22 14:47:18 -070018#include <linux/console.h>
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -070019#include <linux/cpu.h>
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -070020#include <linux/resume-trace.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080021#include <linux/freezer.h>
Christoph Lameter96177292007-02-10 01:43:03 -080022#include <linux/vmstat.h>
Rafael J. Wysocki232b1432007-10-18 03:04:44 -070023#include <linux/syscalls.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include "power.h"
26
Stephen Hemmingera6d70982006-12-06 20:34:35 -080027DEFINE_MUTEX(pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070028
Len Brown9f9adec2007-12-13 17:38:03 -050029unsigned int pm_flags;
30EXPORT_SYMBOL(pm_flags);
31
Alan Stern82525752007-11-19 23:49:18 +010032#ifdef CONFIG_PM_SLEEP
33
34/* Routines for PM-transition notifications */
35
36static BLOCKING_NOTIFIER_HEAD(pm_chain_head);
37
38int register_pm_notifier(struct notifier_block *nb)
39{
40 return blocking_notifier_chain_register(&pm_chain_head, nb);
41}
42EXPORT_SYMBOL_GPL(register_pm_notifier);
43
44int unregister_pm_notifier(struct notifier_block *nb)
45{
46 return blocking_notifier_chain_unregister(&pm_chain_head, nb);
47}
48EXPORT_SYMBOL_GPL(unregister_pm_notifier);
49
50int 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. Wysocki0e7d56e2007-11-19 23:41:19 +010056#ifdef CONFIG_PM_DEBUG
57int pm_test_level = TEST_NONE;
58
59static 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
69static 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. Wysocki039a75c2008-01-29 00:29:06 +010078static ssize_t pm_test_show(struct kobject *kobj, struct kobj_attribute *attr,
79 char *buf)
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +010080{
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. Wysocki039a75c2008-01-29 00:29:06 +010099static ssize_t pm_test_store(struct kobject *kobj, struct kobj_attribute *attr,
100 const char *buf, size_t n)
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100101{
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
126power_attr(pm_test);
127#else /* !CONFIG_PM_DEBUG */
128static inline int suspend_test(int level) { return 0; }
129#endif /* !CONFIG_PM_DEBUG */
130
Rafael J. Wysocki7671b8a2007-12-14 01:07:13 +0100131#endif /* CONFIG_PM_SLEEP */
Rafael J. Wysocki039a75c2008-01-29 00:29:06 +0100132
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200133#ifdef CONFIG_SUSPEND
134
135/* This is just an arbitrary number */
136#define FREE_PAGE_NUMBER (100)
137
Rafael J. Wysockif242d912007-10-18 03:04:41 -0700138static struct platform_suspend_ops *suspend_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
140/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700141 * suspend_set_ops - Set the global suspend method table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 * @ops: Pointer to ops structure.
143 */
144
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700145void suspend_set_ops(struct platform_suspend_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800147 mutex_lock(&pm_mutex);
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700148 suspend_ops = ops;
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800149 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150}
151
Johannes Berge8c9c502007-04-30 15:09:54 -0700152/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700153 * suspend_valid_only_mem - generic memory-only valid callback
Johannes Berge8c9c502007-04-30 15:09:54 -0700154 *
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700155 * Platform drivers that implement mem suspend only and only need
Johannes Berge8c9c502007-04-30 15:09:54 -0700156 * to check for that in their .valid callback can use this instead
157 * of rolling their own .valid callback.
158 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700159int suspend_valid_only_mem(suspend_state_t state)
Johannes Berge8c9c502007-04-30 15:09:54 -0700160{
161 return state == PM_SUSPEND_MEM;
162}
163
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164/**
165 * suspend_prepare - Do prep work before entering low-power state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 *
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700167 * 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 Torvalds1da177e2005-04-16 15:20:36 -0700169 */
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700170static int suspend_prepare(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700172 int error;
David Shaohua Li5ae947e2005-03-18 16:27:13 -0500173 unsigned int free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700175 if (!suspend_ops || !suspend_ops->enter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 return -EPERM;
177
Johannes Bergaf258f52008-01-11 01:22:23 +0100178 pm_prepare_console();
179
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700180 error = pm_notifier_call_chain(PM_SUSPEND_PREPARE);
181 if (error)
182 goto Finish;
183
Johannes Bergb28f5082008-01-15 23:17:00 -0500184 if (suspend_freeze_processes()) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 error = -EAGAIN;
186 goto Thaw;
187 }
188
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700189 free_pages = global_page_state(NR_FREE_PAGES);
190 if (free_pages < FREE_PAGE_NUMBER) {
David Shaohua Li5ae947e2005-03-18 16:27:13 -0500191 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 Li5ae947e2005-03-18 16:27:13 -0500196 }
197 }
Rafael J. Wysockie3c7db622007-02-10 01:43:31 -0800198 if (!error)
199 return 0;
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 Thaw:
Johannes Bergb28f5082008-01-15 23:17:00 -0500202 suspend_thaw_processes();
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700203 Finish:
204 pm_notifier_call_chain(PM_POST_SUSPEND);
Johannes Bergaf258f52008-01-11 01:22:23 +0100205 pm_restore_console();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 return error;
207}
208
Johannes Berga53c46d2007-04-26 11:43:58 +0200209/* default implementation */
210void __attribute__ ((weak)) arch_suspend_disable_irqs(void)
211{
212 local_irq_disable();
213}
214
215/* default implementation */
216void __attribute__ ((weak)) arch_suspend_enable_irqs(void)
217{
218 local_irq_enable();
219}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700221/**
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 Bunka065c862007-10-18 03:04:37 -0700227static int suspend_enter(suspend_state_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
229 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200231 device_pm_lock();
Johannes Berga53c46d2007-04-26 11:43:58 +0200232 arch_suspend_disable_irqs();
233 BUG_ON(!irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
235 if ((error = device_power_down(PMSG_SUSPEND))) {
Rafael J. Wysocki465d2b42007-12-08 02:08:38 +0100236 printk(KERN_ERR "PM: Some devices failed to power down\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 goto Done;
238 }
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100239
240 if (!suspend_test(TEST_CORE))
241 error = suspend_ops->enter(state);
242
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200243 device_power_up(PMSG_RESUME);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 Done:
Johannes Berga53c46d2007-04-26 11:43:58 +0200245 arch_suspend_enable_irqs();
246 BUG_ON(irqs_disabled());
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200247 device_pm_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return error;
249}
250
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700251/**
Rafael J. Wysocki9628c0e2007-12-08 02:06:00 +0100252 * suspend_devices_and_enter - suspend devices and enter the desired system
253 * sleep state.
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700254 * @state: state to enter
255 */
256int suspend_devices_and_enter(suspend_state_t state)
257{
258 int error;
259
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700260 if (!suspend_ops)
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700261 return -ENOSYS;
262
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100263 if (suspend_ops->begin) {
264 error = suspend_ops->begin(state);
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700265 if (error)
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100266 goto Close;
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700267 }
268 suspend_console();
269 error = device_suspend(PMSG_SUSPEND);
270 if (error) {
Rafael J. Wysocki465d2b42007-12-08 02:08:38 +0100271 printk(KERN_ERR "PM: Some devices failed to suspend\n");
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700272 goto Resume_console;
273 }
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100274
275 if (suspend_test(TEST_DEVICES))
276 goto Resume_devices;
277
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700278 if (suspend_ops->prepare) {
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700279 error = suspend_ops->prepare();
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700280 if (error)
281 goto Resume_devices;
282 }
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100283
284 if (suspend_test(TEST_PLATFORM))
285 goto Finish;
286
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700287 error = disable_nonboot_cpus();
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100288 if (!error && !suspend_test(TEST_CPUS))
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700289 suspend_enter(state);
290
291 enable_nonboot_cpus();
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100292 Finish:
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700293 if (suspend_ops->finish)
294 suspend_ops->finish();
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700295 Resume_devices:
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200296 device_resume(PMSG_RESUME);
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700297 Resume_console:
298 resume_console();
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100299 Close:
300 if (suspend_ops->end)
301 suspend_ops->end();
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700302 return error;
303}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304
305/**
306 * suspend_finish - Do final work before exiting suspend sequence.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 *
308 * Call platform code to clean up, restart processes, and free the
309 * console that we've allocated. This is not called for suspend-to-disk.
310 */
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700311static void suspend_finish(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Johannes Bergb28f5082008-01-15 23:17:00 -0500313 suspend_thaw_processes();
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700314 pm_notifier_call_chain(PM_POST_SUSPEND);
Johannes Bergaf258f52008-01-11 01:22:23 +0100315 pm_restore_console();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316}
317
318
319
320
Andreas Mohr3b364b82006-06-25 05:47:56 -0700321static const char * const pm_states[PM_SUSPEND_MAX] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 [PM_SUSPEND_STANDBY] = "standby",
323 [PM_SUSPEND_MEM] = "mem",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324};
325
Pavel Machek123d3c12005-11-29 19:34:37 -0800326static inline int valid_state(suspend_state_t state)
327{
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700328 /* All states need lowlevel support and need to be valid
329 * to the lowlevel implementation, no valid callback
Johannes Berg9684e512007-04-30 15:09:55 -0700330 * implies that none are valid. */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700331 if (!suspend_ops || !suspend_ops->valid || !suspend_ops->valid(state))
Pavel Machek123d3c12005-11-29 19:34:37 -0800332 return 0;
333 return 1;
334}
335
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
337/**
338 * enter_state - Do common work of entering low-power state.
339 * @state: pm_state structure for state we're entering.
340 *
341 * Make sure we're the only ones trying to enter a sleep state. Fail
342 * if someone has beat us to it, since we don't want anything weird to
343 * happen when we wake up.
344 * Then, do the setup for suspend, enter the state, and cleaup (after
345 * we've woken up).
346 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347static int enter_state(suspend_state_t state)
348{
349 int error;
350
Pavel Machek123d3c12005-11-29 19:34:37 -0800351 if (!valid_state(state))
Shaohua Lieb9289e2005-10-30 15:00:01 -0800352 return -ENODEV;
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700353
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800354 if (!mutex_trylock(&pm_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return -EBUSY;
356
Rafael J. Wysocki465d2b42007-12-08 02:08:38 +0100357 printk(KERN_INFO "PM: Syncing filesystems ... ");
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700358 sys_sync();
359 printk("done.\n");
360
David Brownell82428b62005-05-09 08:07:00 -0700361 pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]);
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100362 error = suspend_prepare();
363 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 goto Unlock;
365
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100366 if (suspend_test(TEST_FREEZER))
367 goto Finish;
368
David Brownell82428b62005-05-09 08:07:00 -0700369 pr_debug("PM: Entering %s sleep\n", pm_states[state]);
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700370 error = suspend_devices_and_enter(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100372 Finish:
David Brownell82428b62005-05-09 08:07:00 -0700373 pr_debug("PM: Finishing wakeup.\n");
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700374 suspend_finish();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800376 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 return error;
378}
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
381/**
382 * pm_suspend - Externally visible function for suspending system.
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700383 * @state: Enumerated value of state to enter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 *
385 * Determine whether or not value is within range, get state
386 * structure, and enter (above).
387 */
388
389int pm_suspend(suspend_state_t state)
390{
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500391 if (state > PM_SUSPEND_ON && state <= PM_SUSPEND_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return enter_state(state);
393 return -EINVAL;
394}
395
Ralf Baechle4cf30342006-12-06 20:36:06 -0800396EXPORT_SYMBOL(pm_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200398#endif /* CONFIG_SUSPEND */
399
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800400struct kobject *power_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402/**
403 * state - control system power state.
404 *
405 * show() returns what states are supported, which is hard-coded to
406 * 'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and
407 * 'disk' (Suspend-to-Disk).
408 *
409 * store() accepts one of those strings, translates it into the
410 * proper enumerated value, and initiates a suspend transition.
411 */
412
Kay Sievers386f2752007-11-02 13:47:53 +0100413static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr,
414 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200416 char *s = buf;
417#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
420 for (i = 0; i < PM_SUSPEND_MAX; i++) {
Pavel Machek123d3c12005-11-29 19:34:37 -0800421 if (pm_states[i] && valid_state(i))
422 s += sprintf(s,"%s ", pm_states[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 }
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200424#endif
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200425#ifdef CONFIG_HIBERNATION
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700426 s += sprintf(s, "%s\n", "disk");
427#else
428 if (s != buf)
429 /* convert the last space to a newline */
430 *(s-1) = '\n';
431#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432 return (s - buf);
433}
434
Kay Sievers386f2752007-11-02 13:47:53 +0100435static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr,
436 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200438#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 suspend_state_t state = PM_SUSPEND_STANDBY;
Andreas Mohr3b364b82006-06-25 05:47:56 -0700440 const char * const *s;
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200441#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 int len;
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200444 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 p = memchr(buf, '\n', n);
447 len = p ? p - buf : n;
448
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700449 /* First, check if we are requested to hibernate */
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700450 if (len == 4 && !strncmp(buf, "disk", len)) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700451 error = hibernate();
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200452 goto Exit;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700453 }
454
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200455#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 for (s = &pm_states[state]; state < PM_SUSPEND_MAX; s++, state++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700457 if (*s && len == strlen(*s) && !strncmp(buf, *s, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 break;
459 }
dean gaudet47bb7892006-04-27 18:39:17 -0700460 if (state < PM_SUSPEND_MAX && *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 error = enter_state(state);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200462#endif
463
464 Exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 return error ? error : n;
466}
467
468power_attr(state);
469
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700470#ifdef CONFIG_PM_TRACE
471int pm_trace_enabled;
472
Kay Sievers386f2752007-11-02 13:47:53 +0100473static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr,
474 char *buf)
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700475{
476 return sprintf(buf, "%d\n", pm_trace_enabled);
477}
478
479static ssize_t
Kay Sievers386f2752007-11-02 13:47:53 +0100480pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr,
481 const char *buf, size_t n)
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700482{
483 int val;
484
485 if (sscanf(buf, "%d", &val) == 1) {
486 pm_trace_enabled = !!val;
487 return n;
488 }
489 return -EINVAL;
490}
491
492power_attr(pm_trace);
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100493#endif /* CONFIG_PM_TRACE */
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700494
495static struct attribute * g[] = {
496 &state_attr.attr,
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100497#ifdef CONFIG_PM_TRACE
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700498 &pm_trace_attr.attr,
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100499#endif
Rafael J. Wysocki7671b8a2007-12-14 01:07:13 +0100500#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_PM_DEBUG)
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100501 &pm_test_attr.attr,
502#endif
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700503 NULL,
504};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506static struct attribute_group attr_group = {
507 .attrs = g,
508};
509
510
511static int __init pm_init(void)
512{
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800513 power_kobj = kobject_create_and_add("power", NULL);
514 if (!power_kobj)
Greg Kroah-Hartman039a5dc2007-11-01 10:39:50 -0700515 return -ENOMEM;
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800516 return sysfs_create_group(power_kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517}
518
519core_initcall(pm_init);