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/kobject.h>
12 #include <linux/string.h>
13 #include <linux/resume-trace.h>
14 #include <linux/workqueue.h>
18 DEFINE_MUTEX(pm_mutex
);
20 unsigned int pm_flags
;
21 EXPORT_SYMBOL(pm_flags
);
23 #ifdef CONFIG_PM_SLEEP
25 /* Routines for PM-transition notifications */
27 static BLOCKING_NOTIFIER_HEAD(pm_chain_head
);
29 int register_pm_notifier(struct notifier_block
*nb
)
31 return blocking_notifier_chain_register(&pm_chain_head
, nb
);
33 EXPORT_SYMBOL_GPL(register_pm_notifier
);
35 int unregister_pm_notifier(struct notifier_block
*nb
)
37 return blocking_notifier_chain_unregister(&pm_chain_head
, nb
);
39 EXPORT_SYMBOL_GPL(unregister_pm_notifier
);
41 int pm_notifier_call_chain(unsigned long val
)
43 return (blocking_notifier_call_chain(&pm_chain_head
, val
, NULL
)
44 == NOTIFY_BAD
) ? -EINVAL
: 0;
47 #ifdef CONFIG_PM_DEBUG
48 int pm_test_level
= TEST_NONE
;
50 static const char * const pm_tests
[__TEST_AFTER_LAST
] = {
53 [TEST_CPUS
] = "processors",
54 [TEST_PLATFORM
] = "platform",
55 [TEST_DEVICES
] = "devices",
56 [TEST_FREEZER
] = "freezer",
59 static ssize_t
pm_test_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
65 for (level
= TEST_FIRST
; level
<= TEST_MAX
; level
++)
66 if (pm_tests
[level
]) {
67 if (level
== pm_test_level
)
68 s
+= sprintf(s
, "[%s] ", pm_tests
[level
]);
70 s
+= sprintf(s
, "%s ", pm_tests
[level
]);
74 /* convert the last space to a newline */
80 static ssize_t
pm_test_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
81 const char *buf
, size_t n
)
83 const char * const *s
;
89 p
= memchr(buf
, '\n', n
);
90 len
= p
? p
- buf
: n
;
92 mutex_lock(&pm_mutex
);
95 for (s
= &pm_tests
[level
]; level
<= TEST_MAX
; s
++, level
++)
96 if (*s
&& len
== strlen(*s
) && !strncmp(buf
, *s
, len
)) {
97 pm_test_level
= level
;
102 mutex_unlock(&pm_mutex
);
104 return error
? error
: n
;
108 #endif /* CONFIG_PM_DEBUG */
110 #endif /* CONFIG_PM_SLEEP */
112 struct kobject
*power_kobj
;
115 * state - control system power state.
117 * show() returns what states are supported, which is hard-coded to
118 * 'standby' (Power-On Suspend), 'mem' (Suspend-to-RAM), and
119 * 'disk' (Suspend-to-Disk).
121 * store() accepts one of those strings, translates it into the
122 * proper enumerated value, and initiates a suspend transition.
124 static ssize_t
state_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
128 #ifdef CONFIG_SUSPEND
131 for (i
= 0; i
< PM_SUSPEND_MAX
; i
++) {
132 if (pm_states
[i
] && valid_state(i
))
133 s
+= sprintf(s
,"%s ", pm_states
[i
]);
136 #ifdef CONFIG_HIBERNATION
137 s
+= sprintf(s
, "%s\n", "disk");
140 /* convert the last space to a newline */
146 static ssize_t
state_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
147 const char *buf
, size_t n
)
149 #ifdef CONFIG_SUSPEND
150 suspend_state_t state
= PM_SUSPEND_STANDBY
;
151 const char * const *s
;
157 p
= memchr(buf
, '\n', n
);
158 len
= p
? p
- buf
: n
;
160 /* First, check if we are requested to hibernate */
161 if (len
== 4 && !strncmp(buf
, "disk", len
)) {
166 #ifdef CONFIG_SUSPEND
167 for (s
= &pm_states
[state
]; state
< PM_SUSPEND_MAX
; s
++, state
++) {
168 if (*s
&& len
== strlen(*s
) && !strncmp(buf
, *s
, len
))
171 if (state
< PM_SUSPEND_MAX
&& *s
)
172 error
= enter_state(state
);
176 return error
? error
: n
;
181 #ifdef CONFIG_PM_TRACE
182 int pm_trace_enabled
;
184 static ssize_t
pm_trace_show(struct kobject
*kobj
, struct kobj_attribute
*attr
,
187 return sprintf(buf
, "%d\n", pm_trace_enabled
);
191 pm_trace_store(struct kobject
*kobj
, struct kobj_attribute
*attr
,
192 const char *buf
, size_t n
)
196 if (sscanf(buf
, "%d", &val
) == 1) {
197 pm_trace_enabled
= !!val
;
203 power_attr(pm_trace
);
204 #endif /* CONFIG_PM_TRACE */
206 static struct attribute
* g
[] = {
208 #ifdef CONFIG_PM_TRACE
211 #if defined(CONFIG_PM_SLEEP) && defined(CONFIG_PM_DEBUG)
217 static struct attribute_group attr_group
= {
221 #ifdef CONFIG_PM_RUNTIME
222 struct workqueue_struct
*pm_wq
;
224 static int __init
pm_start_workqueue(void)
226 pm_wq
= create_freezeable_workqueue("pm");
228 return pm_wq
? 0 : -ENOMEM
;
231 static inline int pm_start_workqueue(void) { return 0; }
234 static int __init
pm_init(void)
236 int error
= pm_start_workqueue();
239 power_kobj
= kobject_create_and_add("power", NULL
);
242 return sysfs_create_group(power_kobj
, &attr_group
);
245 core_initcall(pm_init
);