2 * kernel/power/main.c - PM subsystem core functionality.
4 * Copyright (c) 2003 Patrick Mochel
5 * Copyright (c) 2003 Open Source Development Lab
7 * This file is released under the GPLv2
11 #include <linux/module.h>
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/kmod.h>
18 #include <linux/init.h>
19 #include <linux/console.h>
20 #include <linux/cpu.h>
21 #include <linux/resume-trace.h>
22 #include <linux/freezer.h>
23 #include <linux/vmstat.h>
24 #include <linux/syscalls.h>
28 DEFINE_MUTEX(pm_mutex
);
30 unsigned int pm_flags
;
31 EXPORT_SYMBOL(pm_flags
);
33 #ifdef CONFIG_PM_SLEEP
35 /* Routines for PM-transition notifications */
37 static BLOCKING_NOTIFIER_HEAD(pm_chain_head
);
39 int register_pm_notifier(struct notifier_block
*nb
)
41 return blocking_notifier_chain_register(&pm_chain_head
, nb
);
43 EXPORT_SYMBOL_GPL(register_pm_notifier
);
45 int unregister_pm_notifier(struct notifier_block
*nb
)
47 return blocking_notifier_chain_unregister(&pm_chain_head
, nb
);
49 EXPORT_SYMBOL_GPL(unregister_pm_notifier
);
51 int pm_notifier_call_chain(unsigned long val
)
53 return (blocking_notifier_call_chain(&pm_chain_head
, val
, NULL
)
54 == NOTIFY_BAD
) ? -EINVAL
: 0;
57 #ifdef CONFIG_PM_DEBUG
58 int pm_test_level
= TEST_NONE
;
60 static int suspend_test(int level
)
62 if (pm_test_level
== level
) {
63 printk(KERN_INFO
"suspend debug: Waiting for 5 seconds.\n");
70 static const char * const pm_tests
[__TEST_AFTER_LAST
] = {
73 [TEST_CPUS
] = "processors",
74 [TEST_PLATFORM
] = "platform",
75 [TEST_DEVICES
] = "devices",
76 [TEST_FREEZER
] = "freezer",
79 static ssize_t
pm_test_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
85 for (level
= TEST_FIRST
; level
<= TEST_MAX
; level
++)
86 if (pm_tests
[level
]) {
87 if (level
== pm_test_level
)
88 s
+= sprintf(s
, "[%s] ", pm_tests
[level
]);
90 s
+= sprintf(s
, "%s ", pm_tests
[level
]);
94 /* convert the last space to a newline */
100 static ssize_t
pm_test_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
101 const char *buf
, size_t n
)
103 const char * const *s
;
109 p
= memchr(buf
, '\n', n
);
110 len
= p
? p
- buf
: n
;
112 mutex_lock(&pm_mutex
);
115 for (s
= &pm_tests
[level
]; level
<= TEST_MAX
; s
++, level
++)
116 if (*s
&& len
== strlen(*s
) && !strncmp(buf
, *s
, len
)) {
117 pm_test_level
= level
;
122 mutex_unlock(&pm_mutex
);
124 return error
? error
: n
;
128 #else /* !CONFIG_PM_DEBUG */
129 static inline int suspend_test(int level
) { return 0; }
130 #endif /* !CONFIG_PM_DEBUG */
132 #endif /* CONFIG_PM_SLEEP */
134 #ifdef CONFIG_SUSPEND
136 #ifdef CONFIG_PM_TEST_SUSPEND
139 * We test the system suspend code by setting an RTC wakealarm a short
140 * time in the future, then suspending. Suspending the devices won't
141 * normally take long ... some systems only need a few milliseconds.
143 * The time it takes is system-specific though, so when we test this
144 * during system bootup we allow a LOT of time.
146 #define TEST_SUSPEND_SECONDS 5
148 static unsigned long suspend_test_start_time
;
150 static void suspend_test_start(void)
152 /* FIXME Use better timebase than "jiffies", ideally a clocksource.
153 * What we want is a hardware counter that will work correctly even
154 * during the irqs-are-off stages of the suspend/resume cycle...
156 suspend_test_start_time
= jiffies
;
159 static void suspend_test_finish(const char *label
)
161 long nj
= jiffies
- suspend_test_start_time
;
164 msec
= jiffies_to_msecs(abs(nj
));
165 pr_info("PM: %s took %d.%03d seconds\n", label
,
166 msec
/ 1000, msec
% 1000);
168 /* Warning on suspend means the RTC alarm period needs to be
169 * larger -- the system was sooo slooowwww to suspend that the
170 * alarm (should have) fired before the system went to sleep!
172 * Warning on either suspend or resume also means the system
173 * has some performance issues. The stack dump of a WARN_ON
174 * is more likely to get the right attention than a printk...
176 WARN(msec
> (TEST_SUSPEND_SECONDS
* 1000), "Component: %s\n", label
);
181 static void suspend_test_start(void)
185 static void suspend_test_finish(const char *label
)
191 /* This is just an arbitrary number */
192 #define FREE_PAGE_NUMBER (100)
194 static struct platform_suspend_ops
*suspend_ops
;
197 * suspend_set_ops - Set the global suspend method table.
198 * @ops: Pointer to ops structure.
201 void suspend_set_ops(struct platform_suspend_ops
*ops
)
203 mutex_lock(&pm_mutex
);
205 mutex_unlock(&pm_mutex
);
209 * suspend_valid_only_mem - generic memory-only valid callback
211 * Platform drivers that implement mem suspend only and only need
212 * to check for that in their .valid callback can use this instead
213 * of rolling their own .valid callback.
215 int suspend_valid_only_mem(suspend_state_t state
)
217 return state
== PM_SUSPEND_MEM
;
221 * suspend_prepare - Do prep work before entering low-power state.
223 * This is common code that is called for each state that we're entering.
224 * Run suspend notifiers, allocate a console and stop all processes.
226 static int suspend_prepare(void)
229 unsigned int free_pages
;
231 if (!suspend_ops
|| !suspend_ops
->enter
)
234 pm_prepare_console();
236 error
= pm_notifier_call_chain(PM_SUSPEND_PREPARE
);
240 error
= usermodehelper_disable();
244 if (suspend_freeze_processes()) {
249 free_pages
= global_page_state(NR_FREE_PAGES
);
250 if (free_pages
< FREE_PAGE_NUMBER
) {
251 pr_debug("PM: free some memory\n");
252 shrink_all_memory(FREE_PAGE_NUMBER
- free_pages
);
253 if (nr_free_pages() < FREE_PAGE_NUMBER
) {
255 printk(KERN_ERR
"PM: No enough memory\n");
262 suspend_thaw_processes();
263 usermodehelper_enable();
265 pm_notifier_call_chain(PM_POST_SUSPEND
);
266 pm_restore_console();
270 /* default implementation */
271 void __attribute__ ((weak
)) arch_suspend_disable_irqs(void)
276 /* default implementation */
277 void __attribute__ ((weak
)) arch_suspend_enable_irqs(void)
283 * suspend_enter - enter the desired system sleep state.
284 * @state: state to enter
286 * This function should be called after devices have been suspended.
288 static int suspend_enter(suspend_state_t state
)
293 arch_suspend_disable_irqs();
294 BUG_ON(!irqs_disabled());
296 if ((error
= device_power_down(PMSG_SUSPEND
))) {
297 printk(KERN_ERR
"PM: Some devices failed to power down\n");
301 if (!suspend_test(TEST_CORE
))
302 error
= suspend_ops
->enter(state
);
304 device_power_up(PMSG_RESUME
);
306 arch_suspend_enable_irqs();
307 BUG_ON(irqs_disabled());
313 * suspend_devices_and_enter - suspend devices and enter the desired system
315 * @state: state to enter
317 int suspend_devices_and_enter(suspend_state_t state
)
324 if (suspend_ops
->begin
) {
325 error
= suspend_ops
->begin(state
);
330 suspend_test_start();
331 error
= device_suspend(PMSG_SUSPEND
);
333 printk(KERN_ERR
"PM: Some devices failed to suspend\n");
334 goto Recover_platform
;
336 suspend_test_finish("suspend devices");
337 if (suspend_test(TEST_DEVICES
))
338 goto Recover_platform
;
340 if (suspend_ops
->prepare
) {
341 error
= suspend_ops
->prepare();
346 if (suspend_test(TEST_PLATFORM
))
349 error
= disable_nonboot_cpus();
350 if (!error
&& !suspend_test(TEST_CPUS
))
351 suspend_enter(state
);
353 enable_nonboot_cpus();
355 if (suspend_ops
->finish
)
356 suspend_ops
->finish();
358 suspend_test_start();
359 device_resume(PMSG_RESUME
);
360 suspend_test_finish("resume devices");
363 if (suspend_ops
->end
)
368 if (suspend_ops
->recover
)
369 suspend_ops
->recover();
374 * suspend_finish - Do final work before exiting suspend sequence.
376 * Call platform code to clean up, restart processes, and free the
377 * console that we've allocated. This is not called for suspend-to-disk.
379 static void suspend_finish(void)
381 suspend_thaw_processes();
382 usermodehelper_enable();
383 pm_notifier_call_chain(PM_POST_SUSPEND
);
384 pm_restore_console();
390 static const char * const pm_states
[PM_SUSPEND_MAX
] = {
391 [PM_SUSPEND_STANDBY
] = "standby",
392 [PM_SUSPEND_MEM
] = "mem",
395 static inline int valid_state(suspend_state_t state
)
397 /* All states need lowlevel support and need to be valid
398 * to the lowlevel implementation, no valid callback
399 * implies that none are valid. */
400 if (!suspend_ops
|| !suspend_ops
->valid
|| !suspend_ops
->valid(state
))
407 * enter_state - Do common work of entering low-power state.
408 * @state: pm_state structure for state we're entering.
410 * Make sure we're the only ones trying to enter a sleep state. Fail
411 * if someone has beat us to it, since we don't want anything weird to
412 * happen when we wake up.
413 * Then, do the setup for suspend, enter the state, and cleaup (after
416 static int enter_state(suspend_state_t state
)
420 if (!valid_state(state
))
423 if (!mutex_trylock(&pm_mutex
))
426 printk(KERN_INFO
"PM: Syncing filesystems ... ");
430 pr_debug("PM: Preparing system for %s sleep\n", pm_states
[state
]);
431 error
= suspend_prepare();
435 if (suspend_test(TEST_FREEZER
))
438 pr_debug("PM: Entering %s sleep\n", pm_states
[state
]);
439 error
= suspend_devices_and_enter(state
);
442 pr_debug("PM: Finishing wakeup.\n");
445 mutex_unlock(&pm_mutex
);
451 * pm_suspend - Externally visible function for suspending system.
452 * @state: Enumerated value of state to enter.
454 * Determine whether or not value is within range, get state
455 * structure, and enter (above).
458 int pm_suspend(suspend_state_t state
)
460 if (state
> PM_SUSPEND_ON
&& state
<= PM_SUSPEND_MAX
)
461 return enter_state(state
);
465 EXPORT_SYMBOL(pm_suspend
);
467 #endif /* CONFIG_SUSPEND */
469 struct kobject
*power_kobj
;
472 * state - control system power state.
474 * show() returns what states are supported, which is hard-coded to
475 * 'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and
476 * 'disk' (Suspend-to-Disk).
478 * store() accepts one of those strings, translates it into the
479 * proper enumerated value, and initiates a suspend transition.
482 static ssize_t
state_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
486 #ifdef CONFIG_SUSPEND
489 for (i
= 0; i
< PM_SUSPEND_MAX
; i
++) {
490 if (pm_states
[i
] && valid_state(i
))
491 s
+= sprintf(s
,"%s ", pm_states
[i
]);
494 #ifdef CONFIG_HIBERNATION
495 s
+= sprintf(s
, "%s\n", "disk");
498 /* convert the last space to a newline */
504 static ssize_t
state_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
505 const char *buf
, size_t n
)
507 #ifdef CONFIG_SUSPEND
508 suspend_state_t state
= PM_SUSPEND_STANDBY
;
509 const char * const *s
;
515 p
= memchr(buf
, '\n', n
);
516 len
= p
? p
- buf
: n
;
518 /* First, check if we are requested to hibernate */
519 if (len
== 4 && !strncmp(buf
, "disk", len
)) {
524 #ifdef CONFIG_SUSPEND
525 for (s
= &pm_states
[state
]; state
< PM_SUSPEND_MAX
; s
++, state
++) {
526 if (*s
&& len
== strlen(*s
) && !strncmp(buf
, *s
, len
))
529 if (state
< PM_SUSPEND_MAX
&& *s
)
530 error
= enter_state(state
);
534 return error
? error
: n
;
539 #ifdef CONFIG_PM_TRACE
540 int pm_trace_enabled
;
542 static ssize_t
pm_trace_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
545 return sprintf(buf
, "%d\n", pm_trace_enabled
);
549 pm_trace_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
550 const char *buf
, size_t n
)
554 if (sscanf(buf
, "%d", &val
) == 1) {
555 pm_trace_enabled
= !!val
;
561 power_attr(pm_trace
);
562 #endif /* CONFIG_PM_TRACE */
564 static struct attribute
* g
[] = {
566 #ifdef CONFIG_PM_TRACE
569 #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_PM_DEBUG)
575 static struct attribute_group attr_group
= {
580 static int __init
pm_init(void)
582 power_kobj
= kobject_create_and_add("power", NULL
);
585 return sysfs_create_group(power_kobj
, &attr_group
);
588 core_initcall(pm_init
);
591 #ifdef CONFIG_PM_TEST_SUSPEND
593 #include <linux/rtc.h>
596 * To test system suspend, we need a hands-off mechanism to resume the
597 * system. RTCs wake alarms are a common self-contained mechanism.
600 static void __init
test_wakealarm(struct rtc_device
*rtc
, suspend_state_t state
)
602 static char err_readtime
[] __initdata
=
603 KERN_ERR
"PM: can't read %s time, err %d\n";
604 static char err_wakealarm
[] __initdata
=
605 KERN_ERR
"PM: can't set %s wakealarm, err %d\n";
606 static char err_suspend
[] __initdata
=
607 KERN_ERR
"PM: suspend test failed, error %d\n";
608 static char info_test
[] __initdata
=
609 KERN_INFO
"PM: test RTC wakeup from '%s' suspend\n";
612 struct rtc_wkalrm alm
;
615 /* this may fail if the RTC hasn't been initialized */
616 status
= rtc_read_time(rtc
, &alm
.time
);
618 printk(err_readtime
, dev_name(&rtc
->dev
), status
);
621 rtc_tm_to_time(&alm
.time
, &now
);
623 memset(&alm
, 0, sizeof alm
);
624 rtc_time_to_tm(now
+ TEST_SUSPEND_SECONDS
, &alm
.time
);
627 status
= rtc_set_alarm(rtc
, &alm
);
629 printk(err_wakealarm
, dev_name(&rtc
->dev
), status
);
633 if (state
== PM_SUSPEND_MEM
) {
634 printk(info_test
, pm_states
[state
]);
635 status
= pm_suspend(state
);
636 if (status
== -ENODEV
)
637 state
= PM_SUSPEND_STANDBY
;
639 if (state
== PM_SUSPEND_STANDBY
) {
640 printk(info_test
, pm_states
[state
]);
641 status
= pm_suspend(state
);
644 printk(err_suspend
, status
);
646 /* Some platforms can't detect that the alarm triggered the
647 * wakeup, or (accordingly) disable it after it afterwards.
648 * It's supposed to give oneshot behavior; cope.
651 rtc_set_alarm(rtc
, &alm
);
654 static int __init
has_wakealarm(struct device
*dev
, void *name_ptr
)
656 struct rtc_device
*candidate
= to_rtc_device(dev
);
658 if (!candidate
->ops
->set_alarm
)
660 if (!device_may_wakeup(candidate
->dev
.parent
))
663 *(const char **)name_ptr
= dev_name(dev
);
668 * Kernel options like "test_suspend=mem" force suspend/resume sanity tests
669 * at startup time. They're normally disabled, for faster boot and because
670 * we can't know which states really work on this particular system.
672 static suspend_state_t test_state __initdata
= PM_SUSPEND_ON
;
674 static char warn_bad_state
[] __initdata
=
675 KERN_WARNING
"PM: can't test '%s' suspend state\n";
677 static int __init
setup_test_suspend(char *value
)
681 /* "=mem" ==> "mem" */
683 for (i
= 0; i
< PM_SUSPEND_MAX
; i
++) {
686 if (strcmp(pm_states
[i
], value
) != 0)
688 test_state
= (__force suspend_state_t
) i
;
691 printk(warn_bad_state
, value
);
694 __setup("test_suspend", setup_test_suspend
);
696 static int __init
test_suspend(void)
698 static char warn_no_rtc
[] __initdata
=
699 KERN_WARNING
"PM: no wakealarm-capable RTC driver is ready\n";
702 struct rtc_device
*rtc
= NULL
;
704 /* PM is initialized by now; is that state testable? */
705 if (test_state
== PM_SUSPEND_ON
)
707 if (!valid_state(test_state
)) {
708 printk(warn_bad_state
, pm_states
[test_state
]);
712 /* RTCs have initialized by now too ... can we use one? */
713 class_find_device(rtc_class
, NULL
, &pony
, has_wakealarm
);
715 rtc
= rtc_class_open(pony
);
722 test_wakealarm(rtc
, test_state
);
723 rtc_class_close(rtc
);
727 late_initcall(test_suspend
);
729 #endif /* CONFIG_PM_TEST_SUSPEND */