blob: a0b1dbb5919fb72de7f8bf4a2c973bf0d218b7fd [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 *
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010041 * @begin: Initialise a transition to given system sleep state.
42 * @begin() is executed right prior to suspending devices. The information
43 * conveyed to the platform code by @begin() should be disregarded by it as
44 * soon as @end() is executed. If @begin() fails (ie. returns nonzero),
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070045 * @prepare(), @enter() and @finish() will not be called by the PM core.
46 * This callback is optional. However, if it is implemented, the argument
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010047 * passed to @enter() is redundant and should be ignored.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070048 *
49 * @prepare: Prepare the platform for entering the system sleep state indicated
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010050 * by @begin().
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070051 * @prepare() is called right after devices have been suspended (ie. the
52 * appropriate .suspend() method has been executed for each device) and
53 * before the nonboot CPUs are disabled (it is executed with IRQs enabled).
54 * This callback is optional. It returns 0 on success or a negative
55 * error code otherwise, in which case the system cannot enter the desired
56 * sleep state (@enter() and @finish() will not be called in that case).
57 *
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010058 * @enter: Enter the system sleep state indicated by @begin() or represented by
59 * the argument if @begin() is not implemented.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070060 * This callback is mandatory. It returns 0 on success or a negative
61 * error code otherwise, in which case the system cannot enter the desired
62 * sleep state.
63 *
64 * @finish: Called when the system has just left a sleep state, right after
65 * the nonboot CPUs have been enabled and before devices are resumed (it is
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070066 * executed with IRQs enabled).
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070067 * This callback is optional, but should be implemented by the platforms
68 * that implement @prepare(). If implemented, it is always called after
69 * @enter() (even if @enter() fails).
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010070 *
71 * @end: Called by the PM core right after resuming devices, to indicate to
72 * the platform that the system has returned to the working state or
73 * the transition to the sleep state has been aborted.
74 * This callback is optional, but should be implemented by the platforms
75 * that implement @begin(), but platforms implementing @begin() should
76 * also provide a @end() which cleans up transitions aborted before
77 * @enter().
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070078 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070079struct platform_suspend_ops {
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070080 int (*valid)(suspend_state_t state);
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010081 int (*begin)(suspend_state_t state);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070082 int (*prepare)(void);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070083 int (*enter)(suspend_state_t state);
Rafael J. Wysockie6c5eb92007-10-18 03:04:41 -070084 void (*finish)(void);
Rafael J. Wysockic697eec2008-01-08 00:04:17 +010085 void (*end)(void);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070086};
87
88#ifdef CONFIG_SUSPEND
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070089/**
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070090 * suspend_set_ops - set platform dependent suspend operations
91 * @ops: The new suspend operations to set.
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070092 */
Rafael J. Wysocki26398a72007-10-18 03:04:40 -070093extern void suspend_set_ops(struct platform_suspend_ops *ops);
94extern int suspend_valid_only_mem(suspend_state_t state);
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -070095
96/**
97 * arch_suspend_disable_irqs - disable IRQs for suspend
98 *
99 * Disables IRQs (in the default case). This is a weak symbol in the common
100 * code and thus allows architectures to override it if more needs to be
101 * done. Not called for suspend to disk.
102 */
103extern void arch_suspend_disable_irqs(void);
104
105/**
106 * arch_suspend_enable_irqs - enable IRQs after suspend
107 *
108 * Enables IRQs (in the default case). This is a weak symbol in the common
109 * code and thus allows architectures to override it if more needs to be
110 * done. Not called for suspend to disk.
111 */
112extern void arch_suspend_enable_irqs(void);
113
114extern int pm_suspend(suspend_state_t state);
115#else /* !CONFIG_SUSPEND */
116#define suspend_valid_only_mem NULL
117
Rafael J. Wysocki26398a72007-10-18 03:04:40 -0700118static inline void suspend_set_ops(struct platform_suspend_ops *ops) {}
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700119static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
120#endif /* !CONFIG_SUSPEND */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800122/* struct pbe is used for creating lists of pages that should be restored
123 * atomically during the resume from disk, because the page frames they have
124 * occupied before the suspend are in use.
125 */
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -0700126struct pbe {
Rafael J. Wysocki83573762006-12-06 20:34:18 -0800127 void *address; /* address of the copy */
128 void *orig_address; /* original address of a page */
Rafael J. Wysocki7088a5c2006-01-06 00:13:05 -0800129 struct pbe *next;
Rafael J. Wysockidcbb5a52006-09-25 23:32:51 -0700130};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/* mm/page_alloc.c */
133extern void drain_local_pages(void);
134extern void mark_free_pages(struct zone *zone);
135
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700136/**
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700137 * struct platform_hibernation_ops - hibernation platform support
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700138 *
139 * The methods in this structure allow a platform to override the default
140 * mechanism of shutting down the machine during a hibernation transition.
141 *
142 * All three methods must be assigned.
143 *
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700144 * @start: Tell the platform driver that we're starting hibernation.
145 * Called right after shrinking memory and before freezing devices.
146 *
147 * @pre_snapshot: Prepare the platform for creating the hibernation image.
148 * Called right after devices have been frozen and before the nonboot
149 * CPUs are disabled (runs with IRQs on).
150 *
151 * @finish: Restore the previous state of the platform after the hibernation
152 * image has been created *or* put the platform into the normal operation
153 * mode after the hibernation (the same method is executed in both cases).
154 * Called right after the nonboot CPUs have been enabled and before
155 * thawing devices (runs with IRQs on).
156 *
157 * @prepare: Prepare the platform for entering the low power state.
158 * Called right after the hibernation image has been saved and before
159 * devices are prepared for entering the low power state.
160 *
161 * @enter: Put the system into the low power state after the hibernation image
162 * has been saved to disk.
163 * Called after the nonboot CPUs have been disabled and all of the low
164 * level devices have been shut down (runs with IRQs off).
165 *
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700166 * @leave: Perform the first stage of the cleanup after the system sleep state
167 * indicated by @set_target() has been left.
168 * Called right after the control has been passed from the boot kernel to
169 * the image kernel, before the nonboot CPUs are enabled and before devices
170 * are resumed. Executed with interrupts disabled.
171 *
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700172 * @pre_restore: Prepare system for the restoration from a hibernation image.
173 * Called right after devices have been frozen and before the nonboot
174 * CPUs are disabled (runs with IRQs on).
175 *
176 * @restore_cleanup: Clean up after a failing image restoration.
177 * Called right after the nonboot CPUs have been enabled and before
178 * thawing devices (runs with IRQs on).
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700179 */
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700180struct platform_hibernation_ops {
Rafael J. Wysocki74f270a2007-10-18 03:04:42 -0700181 int (*start)(void);
182 int (*pre_snapshot)(void);
183 void (*finish)(void);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700184 int (*prepare)(void);
185 int (*enter)(void);
Rafael J. Wysockic7e08312007-10-18 03:04:55 -0700186 void (*leave)(void);
Rafael J. Wysockia634cc12007-07-19 01:47:30 -0700187 int (*pre_restore)(void);
188 void (*restore_cleanup)(void);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700189};
190
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200191#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700192/* kernel/power/snapshot.c */
Johannes Berg940d67f2007-05-08 19:23:49 +1000193extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
194static inline void register_nosave_region(unsigned long b, unsigned long e)
195{
196 __register_nosave_region(b, e, 0);
197}
198static inline void register_nosave_region_late(unsigned long b, unsigned long e)
199{
200 __register_nosave_region(b, e, 1);
201}
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700202extern int swsusp_page_is_forbidden(struct page *);
203extern void swsusp_set_page_free(struct page *);
204extern void swsusp_unset_page_free(struct page *);
205extern unsigned long get_safe_page(gfp_t gfp_mask);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700206
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700207extern void hibernation_set_ops(struct platform_hibernation_ops *ops);
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700208extern int hibernate(void);
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200209#else /* CONFIG_HIBERNATION */
Rafael J. Wysocki74dfd662007-05-06 14:50:43 -0700210static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
211static inline void swsusp_set_page_free(struct page *p) {}
212static inline void swsusp_unset_page_free(struct page *p) {}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700213
Rafael J. Wysockib3dac3b2007-10-18 03:04:43 -0700214static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {}
Rafael J. Wysockia3d25c22007-05-09 02:33:18 -0700215static inline int hibernate(void) { return -ENOSYS; }
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200216#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200218#ifdef CONFIG_PM_SLEEP
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219void save_processor_state(void);
220void restore_processor_state(void);
Rafael J. Wysocki25761b62005-10-30 14:59:56 -0800221
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700222/* kernel/power/main.c */
Alan Stern82525752007-11-19 23:49:18 +0100223extern int register_pm_notifier(struct notifier_block *nb);
224extern int unregister_pm_notifier(struct notifier_block *nb);
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700225
226#define pm_notifier(fn, pri) { \
227 static struct notifier_block fn##_nb = \
228 { .notifier_call = fn, .priority = pri }; \
229 register_pm_notifier(&fn##_nb); \
230}
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200231#else /* !CONFIG_PM_SLEEP */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700232
233static inline int register_pm_notifier(struct notifier_block *nb)
234{
235 return 0;
236}
237
238static inline int unregister_pm_notifier(struct notifier_block *nb)
239{
240 return 0;
241}
242
243#define pm_notifier(fn, pri) do { (void)(fn); } while (0)
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200244#endif /* !CONFIG_PM_SLEEP */
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700245
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200246#ifndef CONFIG_HIBERNATION
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700247static inline void register_nosave_region(unsigned long b, unsigned long e)
248{
249}
Ryusuke Konishi70f38db2007-07-26 10:40:59 -0700250static inline void register_nosave_region_late(unsigned long b, unsigned long e)
251{
252}
Rafael J. Wysockib10d9112007-07-19 01:47:36 -0700253#endif
254
Rafael J. Wysocki95d9ffb2007-10-18 03:04:39 -0700255#endif /* _LINUX_SUSPEND_H */