blob: 541f0c46d34fb4d2954590c67c1dc13a4d5dd574 [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)
15extern int pm_prepare_console(void);
16extern void pm_restore_console(void);
17#else
18static inline int pm_prepare_console(void) { return 0; }
19static inline void pm_restore_console(void) {}
20#endif
21
22typedef int __bitwise suspend_state_t;
23
24#define PM_SUSPEND_ON ((__force suspend_state_t) 0)
25#define PM_SUSPEND_STANDBY ((__force suspend_state_t) 1)
26#define PM_SUSPEND_MEM ((__force suspend_state_t) 3)
27#define PM_SUSPEND_MAX ((__force suspend_state_t) 4)
28
29/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070030 * struct platform_suspend_ops - Callbacks for managing platform dependent
31 * system sleep states.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070032 *
33 * @valid: Callback to determine if given system sleep state is supported by
34 * the platform.
35 * Valid (ie. supported) states are advertised in /sys/power/state. Note
36 * that it still may be impossible to enter given system sleep state if the
37 * conditions aren't right.
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070038 * There is the %suspend_valid_only_mem function available that can be
39 * assigned to this if the platform only supports mem sleep.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070040 *
41 * @set_target: Tell the platform which system sleep state is going to be
42 * entered.
43 * @set_target() is executed right prior to suspending devices. The
44 * information conveyed to the platform code by @set_target() should be
45 * disregarded by the platform as soon as @finish() is executed and if
46 * @prepare() fails. If @set_target() fails (ie. returns nonzero),
47 * @prepare(), @enter() and @finish() will not be called by the PM core.
48 * This callback is optional. However, if it is implemented, the argument
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070049 * passed to @enter() is meaningless and should be ignored.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070050 *
51 * @prepare: Prepare the platform for entering the system sleep state indicated
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070052 * by @set_target().
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070053 * @prepare() is called right after devices have been suspended (ie. the
54 * appropriate .suspend() method has been executed for each device) and
55 * before the nonboot CPUs are disabled (it is executed with IRQs enabled).
56 * This callback is optional. It returns 0 on success or a negative
57 * error code otherwise, in which case the system cannot enter the desired
58 * sleep state (@enter() and @finish() will not be called in that case).
59 *
60 * @enter: Enter the system sleep state indicated by @set_target() or
61 * represented by the argument if @set_target() is not implemented.
62 * This callback is mandatory. It returns 0 on success or a negative
63 * error code otherwise, in which case the system cannot enter the desired
64 * sleep state.
65 *
66 * @finish: Called when the system has just left a sleep state, right after
67 * the nonboot CPUs have been enabled and before devices are resumed (it is
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070068 * executed with IRQs enabled).
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070069 * This callback is optional, but should be implemented by the platforms
70 * that implement @prepare(). If implemented, it is always called after
71 * @enter() (even if @enter() fails).
72 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070073struct platform_suspend_ops {
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070074 int (*valid)(suspend_state_t state);
75 int (*set_target)(suspend_state_t state);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070076 int (*prepare)(void);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070077 int (*enter)(suspend_state_t state);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070078 void (*finish)(void);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070079};
80
81#ifdef CONFIG_SUSPEND
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070082extern struct platform_suspend_ops *suspend_ops;
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070083
84/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070085 * suspend_set_ops - set platform dependent suspend operations
86 * @ops: The new suspend operations to set.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070087 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070088extern void suspend_set_ops(struct platform_suspend_ops *ops);
89extern int suspend_valid_only_mem(suspend_state_t state);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070090
91/**
92 * arch_suspend_disable_irqs - disable IRQs for suspend
93 *
94 * Disables IRQs (in the default case). This is a weak symbol in the common
95 * code and thus allows architectures to override it if more needs to be
96 * done. Not called for suspend to disk.
97 */
98extern void arch_suspend_disable_irqs(void);
99
100/**
101 * arch_suspend_enable_irqs - enable IRQs after suspend
102 *
103 * Enables IRQs (in the default case). This is a weak symbol in the common
104 * code and thus allows architectures to override it if more needs to be
105 * done. Not called for suspend to disk.
106 */
107extern void arch_suspend_enable_irqs(void);
108
109extern int pm_suspend(suspend_state_t state);
110#else /* !CONFIG_SUSPEND */
111#define suspend_valid_only_mem NULL
112
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700113static inline void suspend_set_ops(struct platform_suspend_ops *ops) {}
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700114static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
115#endif /* !CONFIG_SUSPEND */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800117/* struct pbe is used for creating lists of pages that should be restored
118 * atomically during the resume from disk, because the page frames they have
119 * occupied before the suspend are in use.
120 */
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -0700121struct pbe {
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800122 void *address; /* address of the copy */
123 void *orig_address; /* original address of a page */
Rafael J. Wysocki7088a5c2006-01-06 00:13:05 -0800124 struct pbe *next;
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -0700125};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127/* mm/page_alloc.c */
128extern void drain_local_pages(void);
129extern void mark_free_pages(struct zone *zone);
130
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700131/**
132 * struct hibernation_ops - hibernation platform support
133 *
134 * The methods in this structure allow a platform to override the default
135 * mechanism of shutting down the machine during a hibernation transition.
136 *
137 * All three methods must be assigned.
138 *
139 * @prepare: prepare system for hibernation
140 * @enter: shut down system after state has been saved to disk
141 * @finish: finish/clean up after state has been reloaded
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700142 * @pre_restore: prepare system for the restoration from a hibernation image
143 * @restore_cleanup: clean up after a failing image restoration
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700144 */
145struct hibernation_ops {
146 int (*prepare)(void);
147 int (*enter)(void);
148 void (*finish)(void);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700149 int (*pre_restore)(void);
150 void (*restore_cleanup)(void);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700151};
152
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200153#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700154/* kernel/power/snapshot.c */
Johannes Berg940d67f2007-05-08 19:23:49 +1000155extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
156static inline void register_nosave_region(unsigned long b, unsigned long e)
157{
158 __register_nosave_region(b, e, 0);
159}
160static inline void register_nosave_region_late(unsigned long b, unsigned long e)
161{
162 __register_nosave_region(b, e, 1);
163}
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700164extern int swsusp_page_is_forbidden(struct page *);
165extern void swsusp_set_page_free(struct page *);
166extern void swsusp_unset_page_free(struct page *);
167extern unsigned long get_safe_page(gfp_t gfp_mask);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700168
169extern void hibernation_set_ops(struct hibernation_ops *ops);
170extern int hibernate(void);
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200171#else /* CONFIG_HIBERNATION */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700172static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
173static inline void swsusp_set_page_free(struct page *p) {}
174static inline void swsusp_unset_page_free(struct page *p) {}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700175
176static inline void hibernation_set_ops(struct hibernation_ops *ops) {}
177static inline int hibernate(void) { return -ENOSYS; }
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200178#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200180#ifdef CONFIG_PM_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181void save_processor_state(void);
182void restore_processor_state(void);
183struct saved_context;
184void __save_processor_state(struct saved_context *ctxt);
185void __restore_processor_state(struct saved_context *ctxt);
Rafael J. Wysocki25761b62005-10-30 14:59:56 -0800186
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700187/* kernel/power/main.c */
188extern struct blocking_notifier_head pm_chain_head;
189
190static inline int register_pm_notifier(struct notifier_block *nb)
191{
192 return blocking_notifier_chain_register(&pm_chain_head, nb);
193}
194
195static inline int unregister_pm_notifier(struct notifier_block *nb)
196{
197 return blocking_notifier_chain_unregister(&pm_chain_head, nb);
198}
199
200#define pm_notifier(fn, pri) { \
201 static struct notifier_block fn##_nb = \
202 { .notifier_call = fn, .priority = pri }; \
203 register_pm_notifier(&fn##_nb); \
204}
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200205#else /* !CONFIG_PM_SLEEP */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700206
207static inline int register_pm_notifier(struct notifier_block *nb)
208{
209 return 0;
210}
211
212static inline int unregister_pm_notifier(struct notifier_block *nb)
213{
214 return 0;
215}
216
217#define pm_notifier(fn, pri) do { (void)(fn); } while (0)
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200218#endif /* !CONFIG_PM_SLEEP */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700219
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200220#ifndef CONFIG_HIBERNATION
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700221static inline void register_nosave_region(unsigned long b, unsigned long e)
222{
223}
Ryusuke Konishi70f38db2007-07-26 10:40:59 -0700224static inline void register_nosave_region_late(unsigned long b, unsigned long e)
225{
226}
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700227#endif
228
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700229#endif /* _LINUX_SUSPEND_H */