gxfb: add power management functionality
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / include / linux / suspend.h
CommitLineData
95d9ffbe
RW
1#ifndef _LINUX_SUSPEND_H
2#define _LINUX_SUSPEND_H
1da177e4 3
543b9fd3 4#if defined(CONFIG_X86) || defined(CONFIG_FRV) || defined(CONFIG_PPC32) || defined(CONFIG_PPC64)
1da177e4
LT
5#include <asm/suspend.h>
6#endif
7#include <linux/swap.h>
8#include <linux/notifier.h>
1da177e4
LT
9#include <linux/init.h>
10#include <linux/pm.h>
7be98234 11#include <linux/mm.h>
95d9ffbe
RW
12#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/**
26398a70
RW
30 * struct platform_suspend_ops - Callbacks for managing platform dependent
31 * system sleep states.
95d9ffbe
RW
32 *
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.
26398a70
RW
38 * There is the %suspend_valid_only_mem function available that can be
39 * assigned to this if the platform only supports mem sleep.
95d9ffbe 40 *
c697eece
RW
41 * @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),
95d9ffbe
RW
45 * @prepare(), @enter() and @finish() will not be called by the PM core.
46 * This callback is optional. However, if it is implemented, the argument
c697eece 47 * passed to @enter() is redundant and should be ignored.
95d9ffbe
RW
48 *
49 * @prepare: Prepare the platform for entering the system sleep state indicated
c697eece 50 * by @begin().
95d9ffbe
RW
51 * @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 *
c697eece
RW
58 * @enter: Enter the system sleep state indicated by @begin() or represented by
59 * the argument if @begin() is not implemented.
95d9ffbe
RW
60 * 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
e6c5eb95 66 * executed with IRQs enabled).
95d9ffbe
RW
67 * 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).
c697eece
RW
70 *
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().
95d9ffbe 78 */
26398a70 79struct platform_suspend_ops {
95d9ffbe 80 int (*valid)(suspend_state_t state);
c697eece 81 int (*begin)(suspend_state_t state);
e6c5eb95 82 int (*prepare)(void);
95d9ffbe 83 int (*enter)(suspend_state_t state);
e6c5eb95 84 void (*finish)(void);
c697eece 85 void (*end)(void);
95d9ffbe
RW
86};
87
88#ifdef CONFIG_SUSPEND
95d9ffbe 89/**
26398a70
RW
90 * suspend_set_ops - set platform dependent suspend operations
91 * @ops: The new suspend operations to set.
95d9ffbe 92 */
26398a70
RW
93extern void suspend_set_ops(struct platform_suspend_ops *ops);
94extern int suspend_valid_only_mem(suspend_state_t state);
95d9ffbe
RW
95
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
26398a70 118static inline void suspend_set_ops(struct platform_suspend_ops *ops) {}
95d9ffbe
RW
119static inline int pm_suspend(suspend_state_t state) { return -ENOSYS; }
120#endif /* !CONFIG_SUSPEND */
1da177e4 121
8357376d
RW
122/* 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 */
dcbb5a54 126struct pbe {
8357376d
RW
127 void *address; /* address of the copy */
128 void *orig_address; /* original address of a page */
7088a5c0 129 struct pbe *next;
dcbb5a54 130};
1da177e4 131
1da177e4 132/* mm/page_alloc.c */
1da177e4
LT
133extern void mark_free_pages(struct zone *zone);
134
a3d25c27 135/**
b3dac3b3 136 * struct platform_hibernation_ops - hibernation platform support
a3d25c27 137 *
caea99ef
RW
138 * The methods in this structure allow a platform to carry out special
139 * operations required by it during a hibernation transition.
a3d25c27 140 *
caea99ef 141 * All the methods below must be implemented.
a3d25c27 142 *
caea99ef 143 * @begin: Tell the platform driver that we're starting hibernation.
74f270af
RW
144 * Called right after shrinking memory and before freezing devices.
145 *
caea99ef
RW
146 * @end: Called by the PM core right after resuming devices, to indicate to
147 * the platform that the system has returned to the working state.
148 *
74f270af
RW
149 * @pre_snapshot: Prepare the platform for creating the hibernation image.
150 * Called right after devices have been frozen and before the nonboot
151 * CPUs are disabled (runs with IRQs on).
152 *
153 * @finish: Restore the previous state of the platform after the hibernation
154 * image has been created *or* put the platform into the normal operation
155 * mode after the hibernation (the same method is executed in both cases).
156 * Called right after the nonboot CPUs have been enabled and before
157 * thawing devices (runs with IRQs on).
158 *
159 * @prepare: Prepare the platform for entering the low power state.
160 * Called right after the hibernation image has been saved and before
161 * devices are prepared for entering the low power state.
162 *
163 * @enter: Put the system into the low power state after the hibernation image
164 * has been saved to disk.
165 * Called after the nonboot CPUs have been disabled and all of the low
166 * level devices have been shut down (runs with IRQs off).
167 *
c7e0831d
RW
168 * @leave: Perform the first stage of the cleanup after the system sleep state
169 * indicated by @set_target() has been left.
170 * Called right after the control has been passed from the boot kernel to
171 * the image kernel, before the nonboot CPUs are enabled and before devices
172 * are resumed. Executed with interrupts disabled.
173 *
74f270af
RW
174 * @pre_restore: Prepare system for the restoration from a hibernation image.
175 * Called right after devices have been frozen and before the nonboot
176 * CPUs are disabled (runs with IRQs on).
177 *
178 * @restore_cleanup: Clean up after a failing image restoration.
179 * Called right after the nonboot CPUs have been enabled and before
180 * thawing devices (runs with IRQs on).
a3d25c27 181 */
b3dac3b3 182struct platform_hibernation_ops {
caea99ef
RW
183 int (*begin)(void);
184 void (*end)(void);
74f270af
RW
185 int (*pre_snapshot)(void);
186 void (*finish)(void);
a3d25c27
RW
187 int (*prepare)(void);
188 int (*enter)(void);
c7e0831d 189 void (*leave)(void);
a634cc10
RW
190 int (*pre_restore)(void);
191 void (*restore_cleanup)(void);
a3d25c27
RW
192};
193
b0cb1a19 194#ifdef CONFIG_HIBERNATION
74dfd666 195/* kernel/power/snapshot.c */
940d67f6
JB
196extern void __register_nosave_region(unsigned long b, unsigned long e, int km);
197static inline void register_nosave_region(unsigned long b, unsigned long e)
198{
199 __register_nosave_region(b, e, 0);
200}
201static inline void register_nosave_region_late(unsigned long b, unsigned long e)
202{
203 __register_nosave_region(b, e, 1);
204}
74dfd666
RW
205extern int swsusp_page_is_forbidden(struct page *);
206extern void swsusp_set_page_free(struct page *);
207extern void swsusp_unset_page_free(struct page *);
208extern unsigned long get_safe_page(gfp_t gfp_mask);
a3d25c27 209
b3dac3b3 210extern void hibernation_set_ops(struct platform_hibernation_ops *ops);
a3d25c27 211extern int hibernate(void);
b0cb1a19 212#else /* CONFIG_HIBERNATION */
74dfd666
RW
213static inline int swsusp_page_is_forbidden(struct page *p) { return 0; }
214static inline void swsusp_set_page_free(struct page *p) {}
215static inline void swsusp_unset_page_free(struct page *p) {}
a3d25c27 216
b3dac3b3 217static inline void hibernation_set_ops(struct platform_hibernation_ops *ops) {}
a3d25c27 218static inline int hibernate(void) { return -ENOSYS; }
b0cb1a19 219#endif /* CONFIG_HIBERNATION */
1da177e4 220
296699de 221#ifdef CONFIG_PM_SLEEP
1da177e4
LT
222void save_processor_state(void);
223void restore_processor_state(void);
25761b6e 224
b10d9117 225/* kernel/power/main.c */
82525756
AS
226extern int register_pm_notifier(struct notifier_block *nb);
227extern int unregister_pm_notifier(struct notifier_block *nb);
b10d9117
RW
228
229#define pm_notifier(fn, pri) { \
230 static struct notifier_block fn##_nb = \
231 { .notifier_call = fn, .priority = pri }; \
232 register_pm_notifier(&fn##_nb); \
233}
296699de 234#else /* !CONFIG_PM_SLEEP */
b10d9117
RW
235
236static inline int register_pm_notifier(struct notifier_block *nb)
237{
238 return 0;
239}
240
241static inline int unregister_pm_notifier(struct notifier_block *nb)
242{
243 return 0;
244}
245
246#define pm_notifier(fn, pri) do { (void)(fn); } while (0)
296699de 247#endif /* !CONFIG_PM_SLEEP */
b10d9117 248
296699de 249#ifndef CONFIG_HIBERNATION
b10d9117
RW
250static inline void register_nosave_region(unsigned long b, unsigned long e)
251{
252}
70f38db6
RK
253static inline void register_nosave_region_late(unsigned long b, unsigned long e)
254{
255}
b10d9117
RW
256#endif
257
95d9ffbe 258#endif /* _LINUX_SUSPEND_H */