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/init.h>
18 #include <linux/console.h>
19 #include <linux/cpu.h>
20 #include <linux/resume-trace.h>
21 #include <linux/freezer.h>
22 #include <linux/vmstat.h>
23 #include <linux/syscalls.h>
27 BLOCKING_NOTIFIER_HEAD(pm_chain_head
);
29 DEFINE_MUTEX(pm_mutex
);
33 /* This is just an arbitrary number */
34 #define FREE_PAGE_NUMBER (100)
36 static struct platform_suspend_ops
*suspend_ops
;
39 * suspend_set_ops - Set the global suspend method table.
40 * @ops: Pointer to ops structure.
43 void suspend_set_ops(struct platform_suspend_ops
*ops
)
45 mutex_lock(&pm_mutex
);
47 mutex_unlock(&pm_mutex
);
51 * suspend_valid_only_mem - generic memory-only valid callback
53 * Platform drivers that implement mem suspend only and only need
54 * to check for that in their .valid callback can use this instead
55 * of rolling their own .valid callback.
57 int suspend_valid_only_mem(suspend_state_t state
)
59 return state
== PM_SUSPEND_MEM
;
63 * suspend_prepare - Do prep work before entering low-power state.
65 * This is common code that is called for each state that we're entering.
66 * Run suspend notifiers, allocate a console and stop all processes.
68 static int suspend_prepare(void)
71 unsigned int free_pages
;
73 if (!suspend_ops
|| !suspend_ops
->enter
)
76 error
= pm_notifier_call_chain(PM_SUSPEND_PREPARE
);
82 if (freeze_processes()) {
87 free_pages
= global_page_state(NR_FREE_PAGES
);
88 if (free_pages
< FREE_PAGE_NUMBER
) {
89 pr_debug("PM: free some memory\n");
90 shrink_all_memory(FREE_PAGE_NUMBER
- free_pages
);
91 if (nr_free_pages() < FREE_PAGE_NUMBER
) {
93 printk(KERN_ERR
"PM: No enough memory\n");
101 pm_restore_console();
103 pm_notifier_call_chain(PM_POST_SUSPEND
);
107 /* default implementation */
108 void __attribute__ ((weak
)) arch_suspend_disable_irqs(void)
113 /* default implementation */
114 void __attribute__ ((weak
)) arch_suspend_enable_irqs(void)
120 * suspend_enter - enter the desired system sleep state.
121 * @state: state to enter
123 * This function should be called after devices have been suspended.
125 static int suspend_enter(suspend_state_t state
)
129 arch_suspend_disable_irqs();
130 BUG_ON(!irqs_disabled());
132 if ((error
= device_power_down(PMSG_SUSPEND
))) {
133 printk(KERN_ERR
"Some devices failed to power down\n");
136 error
= suspend_ops
->enter(state
);
139 arch_suspend_enable_irqs();
140 BUG_ON(irqs_disabled());
145 * suspend_devices_and_enter - suspend devices and enter the desired system sleep
147 * @state: state to enter
149 int suspend_devices_and_enter(suspend_state_t state
)
156 if (suspend_ops
->set_target
) {
157 error
= suspend_ops
->set_target(state
);
162 error
= device_suspend(PMSG_SUSPEND
);
164 printk(KERN_ERR
"Some devices failed to suspend\n");
167 if (suspend_ops
->prepare
) {
168 error
= suspend_ops
->prepare();
172 error
= disable_nonboot_cpus();
174 suspend_enter(state
);
176 enable_nonboot_cpus();
177 if (suspend_ops
->finish
)
178 suspend_ops
->finish();
187 * suspend_finish - Do final work before exiting suspend sequence.
189 * Call platform code to clean up, restart processes, and free the
190 * console that we've allocated. This is not called for suspend-to-disk.
192 static void suspend_finish(void)
195 pm_restore_console();
196 pm_notifier_call_chain(PM_POST_SUSPEND
);
202 static const char * const pm_states
[PM_SUSPEND_MAX
] = {
203 [PM_SUSPEND_STANDBY
] = "standby",
204 [PM_SUSPEND_MEM
] = "mem",
207 static inline int valid_state(suspend_state_t state
)
209 /* All states need lowlevel support and need to be valid
210 * to the lowlevel implementation, no valid callback
211 * implies that none are valid. */
212 if (!suspend_ops
|| !suspend_ops
->valid
|| !suspend_ops
->valid(state
))
219 * enter_state - Do common work of entering low-power state.
220 * @state: pm_state structure for state we're entering.
222 * Make sure we're the only ones trying to enter a sleep state. Fail
223 * if someone has beat us to it, since we don't want anything weird to
224 * happen when we wake up.
225 * Then, do the setup for suspend, enter the state, and cleaup (after
228 static int enter_state(suspend_state_t state
)
232 if (!valid_state(state
))
235 if (!mutex_trylock(&pm_mutex
))
238 printk("Syncing filesystems ... ");
242 pr_debug("PM: Preparing system for %s sleep\n", pm_states
[state
]);
243 if ((error
= suspend_prepare()))
246 pr_debug("PM: Entering %s sleep\n", pm_states
[state
]);
247 error
= suspend_devices_and_enter(state
);
249 pr_debug("PM: Finishing wakeup.\n");
252 mutex_unlock(&pm_mutex
);
258 * pm_suspend - Externally visible function for suspending system.
259 * @state: Enumerated value of state to enter.
261 * Determine whether or not value is within range, get state
262 * structure, and enter (above).
265 int pm_suspend(suspend_state_t state
)
267 if (state
> PM_SUSPEND_ON
&& state
<= PM_SUSPEND_MAX
)
268 return enter_state(state
);
272 EXPORT_SYMBOL(pm_suspend
);
274 #endif /* CONFIG_SUSPEND */
276 decl_subsys(power
,NULL
,NULL
);
280 * state - control system power state.
282 * show() returns what states are supported, which is hard-coded to
283 * 'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and
284 * 'disk' (Suspend-to-Disk).
286 * store() accepts one of those strings, translates it into the
287 * proper enumerated value, and initiates a suspend transition.
290 static ssize_t
state_show(struct kset
*kset
, char *buf
)
293 #ifdef CONFIG_SUSPEND
296 for (i
= 0; i
< PM_SUSPEND_MAX
; i
++) {
297 if (pm_states
[i
] && valid_state(i
))
298 s
+= sprintf(s
,"%s ", pm_states
[i
]);
301 #ifdef CONFIG_HIBERNATION
302 s
+= sprintf(s
, "%s\n", "disk");
305 /* convert the last space to a newline */
311 static ssize_t
state_store(struct kset
*kset
, const char *buf
, size_t n
)
313 #ifdef CONFIG_SUSPEND
314 suspend_state_t state
= PM_SUSPEND_STANDBY
;
315 const char * const *s
;
321 p
= memchr(buf
, '\n', n
);
322 len
= p
? p
- buf
: n
;
324 /* First, check if we are requested to hibernate */
325 if (len
== 4 && !strncmp(buf
, "disk", len
)) {
330 #ifdef CONFIG_SUSPEND
331 for (s
= &pm_states
[state
]; state
< PM_SUSPEND_MAX
; s
++, state
++) {
332 if (*s
&& len
== strlen(*s
) && !strncmp(buf
, *s
, len
))
335 if (state
< PM_SUSPEND_MAX
&& *s
)
336 error
= enter_state(state
);
340 return error
? error
: n
;
345 #ifdef CONFIG_PM_TRACE
346 int pm_trace_enabled
;
348 static ssize_t
pm_trace_show(struct kset
*kset
, char *buf
)
350 return sprintf(buf
, "%d\n", pm_trace_enabled
);
354 pm_trace_store(struct kset
*kset
, const char *buf
, size_t n
)
358 if (sscanf(buf
, "%d", &val
) == 1) {
359 pm_trace_enabled
= !!val
;
365 power_attr(pm_trace
);
367 static struct attribute
* g
[] = {
373 static struct attribute
* g
[] = {
377 #endif /* CONFIG_PM_TRACE */
379 static struct attribute_group attr_group
= {
384 static int __init
pm_init(void)
386 int error
= subsystem_register(&power_subsys
);
388 error
= sysfs_create_group(&power_subsys
.kobj
,&attr_group
);
392 core_initcall(pm_init
);