blob: 2ce8207686e2b5a81b671533119ceb6be8461e19 [file] [log] [blame]
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -07001#ifndef _LINUX_SUSPEND_H
2#define _LINUX_SUSPEND_H
Linus Torvalds1da177e2005-04-16 15:20:36 -07003
Johannes Berg543b9fd2007-05-03 22:31:38 +10004#if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32) || defined(CONFIG_PPC64)
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <asm/suspend.h>
6#endif
7#include <linux/swap.h>
8#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/init.h>
10#include <linux/pm.h>
Rafael J. Wysocki7be98232007-05-06 14:50:42 -070011#include <linux/mm.h>
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070012#include <asm/errno.h>
13
14#if defined(CONFIG_PM_SLEEP) && defined(CONFIG_VT) && defined(CONFIG_VT_CONSOLE)
Andres Salomonb6f448e2008-04-28 02:15:03 -070015extern void pm_set_vt_switch(int);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070016extern int pm_prepare_console(void);
17extern void pm_restore_console(void);
18#else
Andres Salomonb6f448e2008-04-28 02:15:03 -070019static inline void pm_set_vt_switch(int do_switch)
20{
21}
22
23static inline int pm_prepare_console(void)
24{
25 return 0;
26}
27
28static inline void pm_restore_console(void)
29{
30}
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070031#endif
32
33typedef int __bitwise suspend_state_t;
34
35#define PM_SUSPEND_ON ((__force suspend_state_t) 0)
36#define PM_SUSPEND_STANDBY ((__force suspend_state_t) 1)
37#define PM_SUSPEND_MEM ((__force suspend_state_t) 3)
38#define PM_SUSPEND_MAX ((__force suspend_state_t) 4)
39
40/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070041 * struct platform_suspend_ops - Callbacks for managing platform dependent
42 * system sleep states.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070043 *
44 * @valid: Callback to determine if given system sleep state is supported by
45 * the platform.
46 * Valid (ie. supported) states are advertised in /sys/power/state. Note
47 * that it still may be impossible to enter given system sleep state if the
48 * conditions aren't right.
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070049 * There is the %suspend_valid_only_mem function available that can be
50 * assigned to this if the platform only supports mem sleep.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070051 *
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010052 * @begin: Initialise a transition to given system sleep state.
53 * @begin() is executed right prior to suspending devices. The information
54 * conveyed to the platform code by @begin() should be disregarded by it as
55 * soon as @end() is executed. If @begin() fails (ie. returns nonzero),
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070056 * @prepare(), @enter() and @finish() will not be called by the PM core.
57 * This callback is optional. However, if it is implemented, the argument
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010058 * passed to @enter() is redundant and should be ignored.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070059 *
60 * @prepare: Prepare the platform for entering the system sleep state indicated
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010061 * by @begin().
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070062 * @prepare() is called right after devices have been suspended (ie. the
63 * appropriate .suspend() method has been executed for each device) and
64 * before the nonboot CPUs are disabled (it is executed with IRQs enabled).
65 * This callback is optional. It returns 0 on success or a negative
66 * error code otherwise, in which case the system cannot enter the desired
67 * sleep state (@enter() and @finish() will not be called in that case).
68 *
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010069 * @enter: Enter the system sleep state indicated by @begin() or represented by
70 * the argument if @begin() is not implemented.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070071 * This callback is mandatory. It returns 0 on success or a negative
72 * error code otherwise, in which case the system cannot enter the desired
73 * sleep state.
74 *
75 * @finish: Called when the system has just left a sleep state, right after
76 * the nonboot CPUs have been enabled and before devices are resumed (it is
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070077 * executed with IRQs enabled).
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070078 * This callback is optional, but should be implemented by the platforms
79 * that implement @prepare(). If implemented, it is always called after
80 * @enter() (even if @enter() fails).
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010081 *
82 * @end: Called by the PM core right after resuming devices, to indicate to
83 * the platform that the system has returned to the working state or
84 * the transition to the sleep state has been aborted.
85 * This callback is optional, but should be implemented by the platforms
86 * that implement @begin(), but platforms implementing @begin() should
87 * also provide a @end() which cleans up transitions aborted before
88 * @enter().
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +020089 *
90 * @recover: Recover the platform from a suspend failure.
91 * Called by the PM core if the suspending of devices fails.
92 * This callback is optional and should only be implemented by platforms
93 * which require special recovery actions in that situation.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070094 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070095struct platform_suspend_ops {
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070096 int (*valid)(suspend_state_t state);
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010097 int (*begin)(suspend_state_t state);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070098 int (*prepare)(void);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070099 int (*enter)(suspend_state_t state);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -0700100 void (*finish)(void);
Rafael J. Wysockic697eec2008-01-08 00:04:17 +0100101 void (*end)(void);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200102 void (*recover)(void);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700103};
104
105#ifdef CONFIG_SUSPEND
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700106/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700107 * suspend_set_ops - set platform dependent suspend operations
108 * @ops: The new suspend operations to set.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700109 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700110extern void suspend_set_ops(struct platform_suspend_ops *ops);
111extern int suspend_valid_only_mem(suspend_state_t state);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700112
113/**
114 * arch_suspend_disable_irqs - disable IRQs for suspend
115 *
116 * Disables IRQs (in the default case). This is a weak symbol in the common
117 * code and thus allows architectures to override it if more needs to be
118 * done. Not called for suspend to disk.
119 */
120extern void arch_suspend_disable_irqs(void);
121
122/**
123 * arch_suspend_enable_irqs - enable IRQs after suspend
124 *
125 * Enables IRQs (in the default case). This is a weak symbol in the common
126 * code and thus allows architectures to override it if more needs to be
127 * done. Not called for suspend to disk.
128 */
129extern void arch_suspend_enable_irqs(void);
130
131extern int pm_suspend(suspend_state_t state);
132#else /* !CONFIG_SUSPEND */
133#define suspend_valid_only_mem NULL
134
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700135static inline void suspend_set_ops(struct platform_suspend_ops *ops) {}
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700136static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
137#endif /* !CONFIG_SUSPEND */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800139/* struct pbe is used for creating lists of pages that should be restored
140 * atomically during the resume from disk, because the page frames they have
141 * occupied before the suspend are in use.
142 */
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -0700143struct pbe {
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800144 void *address; /* address of the copy */
145 void *orig_address; /* original address of a page */
Rafael J. Wysocki7088a5c2006-01-06 00:13:05 -0800146 struct pbe *next;
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -0700147};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* mm/page_alloc.c */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150extern void mark_free_pages(struct zone *zone);
151
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700152/**
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700153 * struct platform_hibernation_ops - hibernation platform support
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700154 *
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100155 * The methods in this structure allow a platform to carry out special
156 * operations required by it during a hibernation transition.
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700157 *
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200158 * All the methods below, except for @recover(), must be implemented.
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700159 *
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100160 * @begin: Tell the platform driver that we're starting hibernation.
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700161 * Called right after shrinking memory and before freezing devices.
162 *
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100163 * @end: Called by the PM core right after resuming devices, to indicate to
164 * the platform that the system has returned to the working state.
165 *
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700166 * @pre_snapshot: Prepare the platform for creating the hibernation image.
167 * Called right after devices have been frozen and before the nonboot
168 * CPUs are disabled (runs with IRQs on).
169 *
170 * @finish: Restore the previous state of the platform after the hibernation
171 * image has been created *or* put the platform into the normal operation
172 * mode after the hibernation (the same method is executed in both cases).
173 * Called right after the nonboot CPUs have been enabled and before
174 * thawing devices (runs with IRQs on).
175 *
176 * @prepare: Prepare the platform for entering the low power state.
177 * Called right after the hibernation image has been saved and before
178 * devices are prepared for entering the low power state.
179 *
180 * @enter: Put the system into the low power state after the hibernation image
181 * has been saved to disk.
182 * Called after the nonboot CPUs have been disabled and all of the low
183 * level devices have been shut down (runs with IRQs off).
184 *
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700185 * @leave: Perform the first stage of the cleanup after the system sleep state
186 * indicated by @set_target() has been left.
187 * Called right after the control has been passed from the boot kernel to
188 * the image kernel, before the nonboot CPUs are enabled and before devices
189 * are resumed. Executed with interrupts disabled.
190 *
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700191 * @pre_restore: Prepare system for the restoration from a hibernation image.
192 * Called right after devices have been frozen and before the nonboot
193 * CPUs are disabled (runs with IRQs on).
194 *
195 * @restore_cleanup: Clean up after a failing image restoration.
196 * Called right after the nonboot CPUs have been enabled and before
197 * thawing devices (runs with IRQs on).
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200198 *
199 * @recover: Recover the platform from a failure to suspend devices.
200 * Called by the PM core if the suspending of devices during hibernation
201 * fails. This callback is optional and should only be implemented by
202 * platforms which require special recovery actions in that situation.
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700203 */
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700204struct platform_hibernation_ops {
Rafael J. Wysockicaea99e2008-01-08 00:08:44 +0100205 int (*begin)(void);
206 void (*end)(void);
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700207 int (*pre_snapshot)(void);
208 void (*finish)(void);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700209 int (*prepare)(void);
210 int (*enter)(void);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700211 void (*leave)(void);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700212 int (*pre_restore)(void);
213 void (*restore_cleanup)(void);
Rafael J. Wysockid8f3de02008-06-12 23:24:06 +0200214 void (*recover)(void);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700215};
216
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200217#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700218/* kernel/power/snapshot.c */
Johannes Berg940d67f2007-05-08 19:23:49 +1000219extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
Marcin Slusarzce289e82008-08-15 00:40:19 -0700220static inline void __init register_nosave_region(unsigned long b, unsigned long e)
Johannes Berg940d67f2007-05-08 19:23:49 +1000221{
222 __register_nosave_region(b, e, 0);
223}
Marcin Slusarzce289e82008-08-15 00:40:19 -0700224static inline void __init register_nosave_region_late(unsigned long b, unsigned long e)
Johannes Berg940d67f2007-05-08 19:23:49 +1000225{
226 __register_nosave_region(b, e, 1);
227}
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700228extern int swsusp_page_is_forbidden(struct page *);
229extern void swsusp_set_page_free(struct page *);
230extern void swsusp_unset_page_free(struct page *);
231extern unsigned long get_safe_page(gfp_t gfp_mask);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700232
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700233extern void hibernation_set_ops(struct platform_hibernation_ops *ops);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700234extern int hibernate(void);
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200235#else /* CONFIG_HIBERNATION */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700236static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
237static inline void swsusp_set_page_free(struct page *p) {}
238static inline void swsusp_unset_page_free(struct page *p) {}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700239
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700240static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700241static inline int hibernate(void) { return -ENOSYS; }
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200242#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200244#ifdef CONFIG_PM_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245void save_processor_state(void);
246void restore_processor_state(void);
Rafael J. Wysocki25761b62005-10-30 14:59:56 -0800247
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700248/* kernel/power/main.c */
Alan Stern82525752007-11-19 23:49:18 +0100249extern int register_pm_notifier(struct notifier_block *nb);
250extern int unregister_pm_notifier(struct notifier_block *nb);
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700251
252#define pm_notifier(fn, pri) { \
253 static struct notifier_block fn##_nb = \
254 { .notifier_call = fn, .priority = pri }; \
255 register_pm_notifier(&fn##_nb); \
256}
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200257#else /* !CONFIG_PM_SLEEP */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700258
259static inline int register_pm_notifier(struct notifier_block *nb)
260{
261 return 0;
262}
263
264static inline int unregister_pm_notifier(struct notifier_block *nb)
265{
266 return 0;
267}
268
269#define pm_notifier(fn, pri) do { (void)(fn); } while (0)
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200270#endif /* !CONFIG_PM_SLEEP */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700271
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200272#ifndef CONFIG_HIBERNATION
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700273static inline void register_nosave_region(unsigned long b, unsigned long e)
274{
275}
Ryusuke Konishi70f38db2007-07-26 10:40:59 -0700276static inline void register_nosave_region_late(unsigned long b, unsigned long e)
277{
278}
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700279#endif
280
Huang Ying89081d12008-07-25 19:45:10 -0700281extern struct mutex pm_mutex;
282
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700283#endif /* _LINUX_SUSPEND_H */