blob: 0a9f269075ee2eef49dc17c9f995d76b64a82af3 [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
56#endif /* CONFIG_PM_SLEEP */
57
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +010058#ifdef CONFIG_PM_DEBUG
59int pm_test_level = TEST_NONE;
60
61static int suspend_test(int level)
62{
63 if (pm_test_level == level) {
64 printk(KERN_INFO "suspend debug: Waiting for 5 seconds.\n");
65 mdelay(5000);
66 return 1;
67 }
68 return 0;
69}
70
71static const char * const pm_tests[__TEST_AFTER_LAST] = {
72 [TEST_NONE] = "none",
73 [TEST_CORE] = "core",
74 [TEST_CPUS] = "processors",
75 [TEST_PLATFORM] = "platform",
76 [TEST_DEVICES] = "devices",
77 [TEST_FREEZER] = "freezer",
78};
79
Rafael J. Wysocki039a75c2008-01-29 00:29:06 +010080static ssize_t pm_test_show(struct kobject *kobj, struct kobj_attribute *attr,
81 char *buf)
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +010082{
83 char *s = buf;
84 int level;
85
86 for (level = TEST_FIRST; level <= TEST_MAX; level++)
87 if (pm_tests[level]) {
88 if (level == pm_test_level)
89 s += sprintf(s, "[%s] ", pm_tests[level]);
90 else
91 s += sprintf(s, "%s ", pm_tests[level]);
92 }
93
94 if (s != buf)
95 /* convert the last space to a newline */
96 *(s-1) = '\n';
97
98 return (s - buf);
99}
100
Rafael J. Wysocki039a75c2008-01-29 00:29:06 +0100101static ssize_t pm_test_store(struct kobject *kobj, struct kobj_attribute *attr,
102 const char *buf, size_t n)
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100103{
104 const char * const *s;
105 int level;
106 char *p;
107 int len;
108 int error = -EINVAL;
109
110 p = memchr(buf, '\n', n);
111 len = p ? p - buf : n;
112
113 mutex_lock(&pm_mutex);
114
115 level = TEST_FIRST;
116 for (s = &pm_tests[level]; level <= TEST_MAX; s++, level++)
117 if (*s && len == strlen(*s) && !strncmp(buf, *s, len)) {
118 pm_test_level = level;
119 error = 0;
120 break;
121 }
122
123 mutex_unlock(&pm_mutex);
124
125 return error ? error : n;
126}
127
128power_attr(pm_test);
129#else /* !CONFIG_PM_DEBUG */
130static inline int suspend_test(int level) { return 0; }
131#endif /* !CONFIG_PM_DEBUG */
132
Rafael J. Wysocki039a75c2008-01-29 00:29:06 +0100133
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200134#ifdef CONFIG_SUSPEND
135
136/* This is just an arbitrary number */
137#define FREE_PAGE_NUMBER (100)
138
Rafael J. Wysockif242d912007-10-18 03:04:41 -0700139static struct platform_suspend_ops *suspend_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
141/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700142 * suspend_set_ops - Set the global suspend method table.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 * @ops: Pointer to ops structure.
144 */
145
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700146void suspend_set_ops(struct platform_suspend_ops *ops)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800148 mutex_lock(&pm_mutex);
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700149 suspend_ops = ops;
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800150 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Johannes Berge8c9c502007-04-30 15:09:54 -0700153/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700154 * suspend_valid_only_mem - generic memory-only valid callback
Johannes Berge8c9c502007-04-30 15:09:54 -0700155 *
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700156 * Platform drivers that implement mem suspend only and only need
Johannes Berge8c9c502007-04-30 15:09:54 -0700157 * to check for that in their .valid callback can use this instead
158 * of rolling their own .valid callback.
159 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700160int suspend_valid_only_mem(suspend_state_t state)
Johannes Berge8c9c502007-04-30 15:09:54 -0700161{
162 return state == PM_SUSPEND_MEM;
163}
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/**
166 * suspend_prepare - Do prep work before entering low-power state.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 *
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700168 * This is common code that is called for each state that we're entering.
169 * Run suspend notifiers, allocate a console and stop all processes.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 */
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700171static int suspend_prepare(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Rafael J. Wysockie3920fb2006-09-25 23:32:48 -0700173 int error;
David Shaohua Li5ae947e2005-03-18 16:27:13 -0500174 unsigned int free_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700176 if (!suspend_ops || !suspend_ops->enter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 return -EPERM;
178
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700179 error = pm_notifier_call_chain(PM_SUSPEND_PREPARE);
180 if (error)
181 goto Finish;
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 pm_prepare_console();
184
185 if (freeze_processes()) {
186 error = -EAGAIN;
187 goto Thaw;
188 }
189
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700190 free_pages = global_page_state(NR_FREE_PAGES);
191 if (free_pages < FREE_PAGE_NUMBER) {
David Shaohua Li5ae947e2005-03-18 16:27:13 -0500192 pr_debug("PM: free some memory\n");
193 shrink_all_memory(FREE_PAGE_NUMBER - free_pages);
194 if (nr_free_pages() < FREE_PAGE_NUMBER) {
195 error = -ENOMEM;
196 printk(KERN_ERR "PM: No enough memory\n");
David Shaohua Li5ae947e2005-03-18 16:27:13 -0500197 }
198 }
Rafael J. Wysockie3c7db622007-02-10 01:43:31 -0800199 if (!error)
200 return 0;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 Thaw:
203 thaw_processes();
204 pm_restore_console();
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700205 Finish:
206 pm_notifier_call_chain(PM_POST_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 return error;
208}
209
Johannes Berga53c46d2007-04-26 11:43:58 +0200210/* default implementation */
211void __attribute__ ((weak)) arch_suspend_disable_irqs(void)
212{
213 local_irq_disable();
214}
215
216/* default implementation */
217void __attribute__ ((weak)) arch_suspend_enable_irqs(void)
218{
219 local_irq_enable();
220}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700222/**
223 * suspend_enter - enter the desired system sleep state.
224 * @state: state to enter
225 *
226 * This function should be called after devices have been suspended.
227 */
Adrian Bunka065c862007-10-18 03:04:37 -0700228static int suspend_enter(suspend_state_t state)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229{
230 int error = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
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))) {
236 printk(KERN_ERR "Some devices failed to power down\n");
237 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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243 device_power_up();
244 Done:
Johannes Berga53c46d2007-04-26 11:43:58 +0200245 arch_suspend_enable_irqs();
246 BUG_ON(irqs_disabled());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 return error;
248}
249
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700250/**
251 * suspend_devices_and_enter - suspend devices and enter the desired system sleep
252 * state.
253 * @state: state to enter
254 */
255int suspend_devices_and_enter(suspend_state_t state)
256{
257 int error;
258
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700259 if (!suspend_ops)
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700260 return -ENOSYS;
261
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700262 if (suspend_ops->set_target) {
263 error = suspend_ops->set_target(state);
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700264 if (error)
265 return error;
266 }
267 suspend_console();
268 error = device_suspend(PMSG_SUSPEND);
269 if (error) {
270 printk(KERN_ERR "Some devices failed to suspend\n");
271 goto Resume_console;
272 }
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100273
274 if (suspend_test(TEST_DEVICES))
275 goto Resume_devices;
276
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700277 if (suspend_ops->prepare) {
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700278 error = suspend_ops->prepare();
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700279 if (error)
280 goto Resume_devices;
281 }
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100282
283 if (suspend_test(TEST_PLATFORM))
284 goto Finish;
285
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700286 error = disable_nonboot_cpus();
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100287 if (!error && !suspend_test(TEST_CPUS))
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700288 suspend_enter(state);
289
290 enable_nonboot_cpus();
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100291 Finish:
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700292 if (suspend_ops->finish)
293 suspend_ops->finish();
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700294 Resume_devices:
295 device_resume();
296 Resume_console:
297 resume_console();
298 return error;
299}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300
301/**
302 * suspend_finish - Do final work before exiting suspend sequence.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 *
304 * Call platform code to clean up, restart processes, and free the
305 * console that we've allocated. This is not called for suspend-to-disk.
306 */
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700307static void suspend_finish(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 thaw_processes();
310 pm_restore_console();
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700311 pm_notifier_call_chain(PM_POST_SUSPEND);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
313
314
315
316
Andreas Mohr3b364b82006-06-25 05:47:56 -0700317static const char * const pm_states[PM_SUSPEND_MAX] = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 [PM_SUSPEND_STANDBY] = "standby",
319 [PM_SUSPEND_MEM] = "mem",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320};
321
Pavel Machek123d3c12005-11-29 19:34:37 -0800322static inline int valid_state(suspend_state_t state)
323{
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700324 /* All states need lowlevel support and need to be valid
325 * to the lowlevel implementation, no valid callback
Johannes Berg9684e512007-04-30 15:09:55 -0700326 * implies that none are valid. */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700327 if (!suspend_ops || !suspend_ops->valid || !suspend_ops->valid(state))
Pavel Machek123d3c12005-11-29 19:34:37 -0800328 return 0;
329 return 1;
330}
331
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
333/**
334 * enter_state - Do common work of entering low-power state.
335 * @state: pm_state structure for state we're entering.
336 *
337 * Make sure we're the only ones trying to enter a sleep state. Fail
338 * if someone has beat us to it, since we don't want anything weird to
339 * happen when we wake up.
340 * Then, do the setup for suspend, enter the state, and cleaup (after
341 * we've woken up).
342 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static int enter_state(suspend_state_t state)
344{
345 int error;
346
Pavel Machek123d3c12005-11-29 19:34:37 -0800347 if (!valid_state(state))
Shaohua Lieb9289e2005-10-30 15:00:01 -0800348 return -ENODEV;
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700349
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800350 if (!mutex_trylock(&pm_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return -EBUSY;
352
Rafael J. Wysocki232b1432007-10-18 03:04:44 -0700353 printk("Syncing filesystems ... ");
354 sys_sync();
355 printk("done.\n");
356
David Brownell82428b62005-05-09 08:07:00 -0700357 pr_debug("PM: Preparing system for %s sleep\n", pm_states[state]);
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100358 error = suspend_prepare();
359 if (error)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 goto Unlock;
361
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100362 if (suspend_test(TEST_FREEZER))
363 goto Finish;
364
David Brownell82428b62005-05-09 08:07:00 -0700365 pr_debug("PM: Entering %s sleep\n", pm_states[state]);
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700366 error = suspend_devices_and_enter(state);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100368 Finish:
David Brownell82428b62005-05-09 08:07:00 -0700369 pr_debug("PM: Finishing wakeup.\n");
Rafael J. Wysocki6c961df2007-07-19 01:47:38 -0700370 suspend_finish();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 Unlock:
Stephen Hemmingera6d70982006-12-06 20:34:35 -0800372 mutex_unlock(&pm_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return error;
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
377/**
378 * pm_suspend - Externally visible function for suspending system.
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700379 * @state: Enumerated value of state to enter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 *
381 * Determine whether or not value is within range, get state
382 * structure, and enter (above).
383 */
384
385int pm_suspend(suspend_state_t state)
386{
Alexey Starikovskiye2a5b422005-03-18 16:20:46 -0500387 if (state > PM_SUSPEND_ON && state <= PM_SUSPEND_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 return enter_state(state);
389 return -EINVAL;
390}
391
Ralf Baechle4cf30342006-12-06 20:36:06 -0800392EXPORT_SYMBOL(pm_suspend);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200394#endif /* CONFIG_SUSPEND */
395
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800396struct kobject *power_kobj;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397
398/**
399 * state - control system power state.
400 *
401 * show() returns what states are supported, which is hard-coded to
402 * 'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and
403 * 'disk' (Suspend-to-Disk).
404 *
405 * store() accepts one of those strings, translates it into the
406 * proper enumerated value, and initiates a suspend transition.
407 */
408
Kay Sievers386f2752007-11-02 13:47:53 +0100409static ssize_t state_show(struct kobject *kobj, struct kobj_attribute *attr,
410 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200412 char *s = buf;
413#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
416 for (i = 0; i < PM_SUSPEND_MAX; i++) {
Pavel Machek123d3c12005-11-29 19:34:37 -0800417 if (pm_states[i] && valid_state(i))
418 s += sprintf(s,"%s ", pm_states[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 }
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200420#endif
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200421#ifdef CONFIG_HIBERNATION
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700422 s += sprintf(s, "%s\n", "disk");
423#else
424 if (s != buf)
425 /* convert the last space to a newline */
426 *(s-1) = '\n';
427#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 return (s - buf);
429}
430
Kay Sievers386f2752007-11-02 13:47:53 +0100431static ssize_t state_store(struct kobject *kobj, struct kobj_attribute *attr,
432 const char *buf, size_t n)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200434#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 suspend_state_t state = PM_SUSPEND_STANDBY;
Andreas Mohr3b364b82006-06-25 05:47:56 -0700436 const char * const *s;
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200437#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 char *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 int len;
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200440 int error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
442 p = memchr(buf, '\n', n);
443 len = p ? p - buf : n;
444
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700445 /* First, check if we are requested to hibernate */
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700446 if (len == 4 && !strncmp(buf, "disk", len)) {
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700447 error = hibernate();
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200448 goto Exit;
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700449 }
450
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200451#ifdef CONFIG_SUSPEND
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 for (s = &pm_states[state]; state < PM_SUSPEND_MAX; s++, state++) {
Rafael J. Wysocki8d98a692007-05-16 22:11:19 -0700453 if (*s && len == strlen(*s) && !strncmp(buf, *s, len))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 break;
455 }
dean gaudet47bb7892006-04-27 18:39:17 -0700456 if (state < PM_SUSPEND_MAX && *s)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 error = enter_state(state);
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200458#endif
459
460 Exit:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 return error ? error : n;
462}
463
464power_attr(state);
465
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700466#ifdef CONFIG_PM_TRACE
467int pm_trace_enabled;
468
Kay Sievers386f2752007-11-02 13:47:53 +0100469static ssize_t pm_trace_show(struct kobject *kobj, struct kobj_attribute *attr,
470 char *buf)
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700471{
472 return sprintf(buf, "%d\n", pm_trace_enabled);
473}
474
475static ssize_t
Kay Sievers386f2752007-11-02 13:47:53 +0100476pm_trace_store(struct kobject *kobj, struct kobj_attribute *attr,
477 const char *buf, size_t n)
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700478{
479 int val;
480
481 if (sscanf(buf, "%d", &val) == 1) {
482 pm_trace_enabled = !!val;
483 return n;
484 }
485 return -EINVAL;
486}
487
488power_attr(pm_trace);
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100489#endif /* CONFIG_PM_TRACE */
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700490
491static struct attribute * g[] = {
492 &state_attr.attr,
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100493#ifdef CONFIG_PM_TRACE
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700494 &pm_trace_attr.attr,
Rafael J. Wysocki0e7d56e2007-11-19 23:41:19 +0100495#endif
496#ifdef CONFIG_PM_DEBUG
497 &pm_test_attr.attr,
498#endif
Rafael J. Wysockic5c6ba42006-09-25 23:32:58 -0700499 NULL,
500};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
502static struct attribute_group attr_group = {
503 .attrs = g,
504};
505
506
507static int __init pm_init(void)
508{
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800509 power_kobj = kobject_create_and_add("power", NULL);
510 if (!power_kobj)
Greg Kroah-Hartman039a5dc2007-11-01 10:39:50 -0700511 return -ENOMEM;
Greg Kroah-Hartmand76e15f2007-11-27 11:28:26 -0800512 return sysfs_create_group(power_kobj, &attr_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
514
515core_initcall(pm_init);