blob: e4982ac3fbbc4c2fa9f9d54a9bd0a8b088fcffc6 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * pm.h - Power management interface
3 *
4 * Copyright (C) 2000 Andrew Henroid
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21#ifndef _LINUX_PM_H
22#define _LINUX_PM_H
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/list.h>
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +020025#include <linux/workqueue.h>
26#include <linux/spinlock.h>
27#include <linux/wait.h>
28#include <linux/timer.h>
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +010029#include <linux/completion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030
31/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 * Callbacks for platform drivers to implement.
33 */
34extern void (*pm_idle)(void);
35extern void (*pm_power_off)(void);
Rafael J. Wysockibd804eb2007-07-19 01:47:40 -070036extern void (*pm_power_off_prepare)(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Linus Torvalds1da177e2005-04-16 15:20:36 -070038/*
39 * Device power management
40 */
41
42struct device;
43
Alan Stern7490e442010-09-25 23:35:15 +020044#ifdef CONFIG_PM
45extern const char power_group_name[]; /* = "power" */
46#else
47#define power_group_name NULL
48#endif
49
Pavel Machekca078ba2005-09-03 15:56:57 -070050typedef struct pm_message {
51 int event;
52} pm_message_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Rafael J. Wysocki1eede072008-05-20 23:00:01 +020054/**
Rafael J. Wysockiadf09492008-10-06 22:46:05 +020055 * struct dev_pm_ops - device PM callbacks
Rafael J. Wysocki1eede072008-05-20 23:00:01 +020056 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +010057 * Several device power state transitions are externally visible, affecting
David Brownell82bb67f2006-08-14 23:11:04 -070058 * the state of pending I/O queues and (for drivers that touch hardware)
59 * interrupts, wakeups, DMA, and other hardware state. There may also be
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +010060 * internal transitions to various low-power modes which are transparent
David Brownell82bb67f2006-08-14 23:11:04 -070061 * to the rest of the driver stack (such as a driver that's ON gating off
62 * clocks which are not in active use).
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +010064 * The externally visible transitions are handled with the help of callbacks
65 * included in this structure in such a way that two levels of callbacks are
66 * involved. First, the PM core executes callbacks provided by PM domains,
67 * device types, classes and bus types. They are the subsystem-level callbacks
68 * supposed to execute callbacks provided by device drivers, although they may
69 * choose not to do that. If the driver callbacks are executed, they have to
70 * collaborate with the subsystem-level callbacks to achieve the goals
71 * appropriate for the given system transition, given transition phase and the
72 * subsystem the device belongs to.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +020073 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +010074 * @prepare: The principal role of this callback is to prevent new children of
75 * the device from being registered after it has returned (the driver's
76 * subsystem and generally the rest of the kernel is supposed to prevent
77 * new calls to the probe method from being made too once @prepare() has
78 * succeeded). If @prepare() detects a situation it cannot handle (e.g.
79 * registration of a child already in progress), it may return -EAGAIN, so
80 * that the PM core can execute it once again (e.g. after a new child has
81 * been registered) to recover from the race condition.
82 * This method is executed for all kinds of suspend transitions and is
83 * followed by one of the suspend callbacks: @suspend(), @freeze(), or
84 * @poweroff(). The PM core executes subsystem-level @prepare() for all
85 * devices before starting to invoke suspend callbacks for any of them, so
86 * generally devices may be assumed to be functional or to respond to
87 * runtime resume requests while @prepare() is being executed. However,
88 * device drivers may NOT assume anything about the availability of user
89 * space at that time and it is NOT valid to request firmware from within
90 * @prepare() (it's too late to do that). It also is NOT valid to allocate
91 * substantial amounts of memory from @prepare() in the GFP_KERNEL mode.
92 * [To work around these limitations, drivers may register suspend and
93 * hibernation notifiers to be executed before the freezing of tasks.]
Rafael J. Wysocki1eede072008-05-20 23:00:01 +020094 *
95 * @complete: Undo the changes made by @prepare(). This method is executed for
96 * all kinds of resume transitions, following one of the resume callbacks:
97 * @resume(), @thaw(), @restore(). Also called if the state transition
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +010098 * fails before the driver's suspend callback: @suspend(), @freeze() or
99 * @poweroff(), can be executed (e.g. if the suspend callback fails for one
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200100 * of the other devices that the PM core has unsuccessfully attempted to
101 * suspend earlier).
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100102 * The PM core executes subsystem-level @complete() after it has executed
103 * the appropriate resume callbacks for all devices.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200104 *
105 * @suspend: Executed before putting the system into a sleep state in which the
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100106 * contents of main memory are preserved. The exact action to perform
107 * depends on the device's subsystem (PM domain, device type, class or bus
108 * type), but generally the device must be quiescent after subsystem-level
109 * @suspend() has returned, so that it doesn't do any I/O or DMA.
110 * Subsystem-level @suspend() is executed for all devices after invoking
111 * subsystem-level @prepare() for all of them.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200112 *
113 * @resume: Executed after waking the system up from a sleep state in which the
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100114 * contents of main memory were preserved. The exact action to perform
115 * depends on the device's subsystem, but generally the driver is expected
116 * to start working again, responding to hardware events and software
117 * requests (the device itself may be left in a low-power state, waiting
118 * for a runtime resume to occur). The state of the device at the time its
119 * driver's @resume() callback is run depends on the platform and subsystem
120 * the device belongs to. On most platforms, there are no restrictions on
121 * availability of resources like clocks during @resume().
122 * Subsystem-level @resume() is executed for all devices after invoking
123 * subsystem-level @resume_noirq() for all of them.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200124 *
125 * @freeze: Hibernation-specific, executed before creating a hibernation image.
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100126 * Analogous to @suspend(), but it should not enable the device to signal
127 * wakeup events or change its power state. The majority of subsystems
128 * (with the notable exception of the PCI bus type) expect the driver-level
129 * @freeze() to save the device settings in memory to be used by @restore()
130 * during the subsequent resume from hibernation.
131 * Subsystem-level @freeze() is executed for all devices after invoking
132 * subsystem-level @prepare() for all of them.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200133 *
134 * @thaw: Hibernation-specific, executed after creating a hibernation image OR
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100135 * if the creation of an image has failed. Also executed after a failing
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200136 * attempt to restore the contents of main memory from such an image.
137 * Undo the changes made by the preceding @freeze(), so the device can be
138 * operated in the same way as immediately before the call to @freeze().
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100139 * Subsystem-level @thaw() is executed for all devices after invoking
140 * subsystem-level @thaw_noirq() for all of them. It also may be executed
141 * directly after @freeze() in case of a transition error.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200142 *
143 * @poweroff: Hibernation-specific, executed after saving a hibernation image.
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100144 * Analogous to @suspend(), but it need not save the device's settings in
145 * memory.
146 * Subsystem-level @poweroff() is executed for all devices after invoking
147 * subsystem-level @prepare() for all of them.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200148 *
149 * @restore: Hibernation-specific, executed after restoring the contents of main
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100150 * memory from a hibernation image, analogous to @resume().
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200151 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100152 * @suspend_noirq: Complete the actions started by @suspend(). Carry out any
153 * additional operations required for suspending the device that might be
154 * racing with its driver's interrupt handler, which is guaranteed not to
155 * run while @suspend_noirq() is being executed.
156 * It generally is expected that the device will be in a low-power state
157 * (appropriate for the target system sleep state) after subsystem-level
158 * @suspend_noirq() has returned successfully. If the device can generate
159 * system wakeup signals and is enabled to wake up the system, it should be
160 * configured to do so at that time. However, depending on the platform
161 * and device's subsystem, @suspend() may be allowed to put the device into
162 * the low-power state and configure it to generate wakeup signals, in
163 * which case it generally is not necessary to define @suspend_noirq().
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200164 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100165 * @resume_noirq: Prepare for the execution of @resume() by carrying out any
166 * operations required for resuming the device that might be racing with
167 * its driver's interrupt handler, which is guaranteed not to run while
168 * @resume_noirq() is being executed.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200169 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100170 * @freeze_noirq: Complete the actions started by @freeze(). Carry out any
171 * additional operations required for freezing the device that might be
172 * racing with its driver's interrupt handler, which is guaranteed not to
173 * run while @freeze_noirq() is being executed.
174 * The power state of the device should not be changed by either @freeze()
175 * or @freeze_noirq() and it should not be configured to signal system
176 * wakeup by any of these callbacks.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200177 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100178 * @thaw_noirq: Prepare for the execution of @thaw() by carrying out any
179 * operations required for thawing the device that might be racing with its
180 * driver's interrupt handler, which is guaranteed not to run while
181 * @thaw_noirq() is being executed.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200182 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100183 * @poweroff_noirq: Complete the actions started by @poweroff(). Analogous to
184 * @suspend_noirq(), but it need not save the device's settings in memory.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200185 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100186 * @restore_noirq: Prepare for the execution of @restore() by carrying out any
187 * operations required for thawing the device that might be racing with its
188 * driver's interrupt handler, which is guaranteed not to run while
189 * @restore_noirq() is being executed. Analogous to @resume_noirq().
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200190 *
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200191 * All of the above callbacks, except for @complete(), return error codes.
192 * However, the error codes returned by the resume operations, @resume(),
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100193 * @thaw(), @restore(), @resume_noirq(), @thaw_noirq(), and @restore_noirq(), do
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200194 * not cause the PM core to abort the resume transition during which they are
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100195 * returned. The error codes returned in those cases are only printed by the PM
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200196 * core to the system logs for debugging purposes. Still, it is recommended
197 * that drivers only return error codes from their resume methods in case of an
198 * unrecoverable failure (i.e. when the device being handled refuses to resume
199 * and becomes unusable) to allow us to modify the PM core in the future, so
200 * that it can avoid attempting to handle devices that failed to resume and
201 * their children.
202 *
203 * It is allowed to unregister devices while the above callbacks are being
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100204 * executed. However, a callback routine must NOT try to unregister the device
205 * it was called for, although it may unregister children of that device (for
206 * example, if it detects that a child was unplugged while the system was
207 * asleep).
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200208 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100209 * Refer to Documentation/power/devices.txt for more information about the role
210 * of the above callbacks in the system suspend process.
211 *
212 * There also are callbacks related to runtime power management of devices.
213 * Again, these callbacks are executed by the PM core only for subsystems
214 * (PM domains, device types, classes and bus types) and the subsystem-level
215 * callbacks are supposed to invoke the driver callbacks. Moreover, the exact
216 * actions to be performed by a device driver's callbacks generally depend on
217 * the platform and subsystem the device belongs to.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200218 *
219 * @runtime_suspend: Prepare the device for a condition in which it won't be
220 * able to communicate with the CPU(s) and RAM due to power management.
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100221 * This need not mean that the device should be put into a low-power state.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200222 * For example, if the device is behind a link which is about to be turned
223 * off, the device may remain at full power. If the device does go to low
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100224 * power and is capable of generating runtime wakeup events, remote wakeup
225 * (i.e., a hardware mechanism allowing the device to request a change of
226 * its power state via an interrupt) should be enabled for it.
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200227 *
228 * @runtime_resume: Put the device into the fully active state in response to a
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100229 * wakeup event generated by hardware or at the request of software. If
230 * necessary, put the device into the full-power state and restore its
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200231 * registers, so that it is fully operational.
232 *
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100233 * @runtime_idle: Device appears to be inactive and it might be put into a
234 * low-power state if all of the necessary conditions are satisfied. Check
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200235 * these conditions and handle the device as appropriate, possibly queueing
236 * a suspend request for it. The return value is ignored by the PM core.
Rafael J. Wysockif7bc83d2011-11-23 21:20:32 +0100237 *
238 * Refer to Documentation/power/runtime_pm.txt for more information about the
239 * role of the above callbacks in device runtime power management.
240 *
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200241 */
242
Rafael J. Wysockiadf09492008-10-06 22:46:05 +0200243struct dev_pm_ops {
244 int (*prepare)(struct device *dev);
245 void (*complete)(struct device *dev);
246 int (*suspend)(struct device *dev);
247 int (*resume)(struct device *dev);
248 int (*freeze)(struct device *dev);
249 int (*thaw)(struct device *dev);
250 int (*poweroff)(struct device *dev);
251 int (*restore)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200252 int (*suspend_noirq)(struct device *dev);
253 int (*resume_noirq)(struct device *dev);
254 int (*freeze_noirq)(struct device *dev);
255 int (*thaw_noirq)(struct device *dev);
256 int (*poweroff_noirq)(struct device *dev);
257 int (*restore_noirq)(struct device *dev);
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200258 int (*runtime_suspend)(struct device *dev);
259 int (*runtime_resume)(struct device *dev);
260 int (*runtime_idle)(struct device *dev);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200261};
262
Rafael J. Wysockid690b2c2010-03-06 21:28:37 +0100263#ifdef CONFIG_PM_SLEEP
264#define SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \
265 .suspend = suspend_fn, \
266 .resume = resume_fn, \
267 .freeze = suspend_fn, \
268 .thaw = resume_fn, \
269 .poweroff = suspend_fn, \
270 .restore = resume_fn,
271#else
272#define SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn)
273#endif
274
275#ifdef CONFIG_PM_RUNTIME
276#define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
277 .runtime_suspend = suspend_fn, \
278 .runtime_resume = resume_fn, \
279 .runtime_idle = idle_fn,
280#else
281#define SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn)
282#endif
283
Albin Tonnerre9d62ec62009-08-05 23:59:59 +0200284/*
285 * Use this if you want to use the same suspend and resume callbacks for suspend
286 * to RAM and hibernation.
287 */
288#define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \
Alexey Dobriyan47145212009-12-14 18:00:08 -0800289const struct dev_pm_ops name = { \
Rafael J. Wysockid690b2c2010-03-06 21:28:37 +0100290 SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \
Albin Tonnerre9d62ec62009-08-05 23:59:59 +0200291}
292
Rafael J. Wysockid690b2c2010-03-06 21:28:37 +0100293/*
294 * Use this for defining a set of PM operations to be used in all situations
295 * (sustem suspend, hibernation or runtime PM).
296 */
297#define UNIVERSAL_DEV_PM_OPS(name, suspend_fn, resume_fn, idle_fn) \
298const struct dev_pm_ops name = { \
299 SET_SYSTEM_SLEEP_PM_OPS(suspend_fn, resume_fn) \
300 SET_RUNTIME_PM_OPS(suspend_fn, resume_fn, idle_fn) \
301}
302
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200303/**
304 * PM_EVENT_ messages
305 *
306 * The following PM_EVENT_ messages are defined for the internal use of the PM
307 * core, in order to provide a mechanism allowing the high level suspend and
308 * hibernation code to convey the necessary information to the device PM core
309 * code:
310 *
311 * ON No transition.
312 *
313 * FREEZE System is going to hibernate, call ->prepare() and ->freeze()
314 * for all devices.
315 *
316 * SUSPEND System is going to suspend, call ->prepare() and ->suspend()
317 * for all devices.
318 *
319 * HIBERNATE Hibernation image has been saved, call ->prepare() and
320 * ->poweroff() for all devices.
321 *
322 * QUIESCE Contents of main memory are going to be restored from a (loaded)
323 * hibernation image, call ->prepare() and ->freeze() for all
324 * devices.
325 *
326 * RESUME System is resuming, call ->resume() and ->complete() for all
327 * devices.
328 *
329 * THAW Hibernation image has been created, call ->thaw() and
330 * ->complete() for all devices.
331 *
332 * RESTORE Contents of main memory have been restored from a hibernation
333 * image, call ->restore() and ->complete() for all devices.
334 *
335 * RECOVER Creation of a hibernation image or restoration of the main
336 * memory contents from a hibernation image has failed, call
337 * ->thaw() and ->complete() for all devices.
Alan Stern8111d1b2008-07-23 21:28:37 -0700338 *
339 * The following PM_EVENT_ messages are defined for internal use by
340 * kernel subsystems. They are never issued by the PM core.
341 *
342 * USER_SUSPEND Manual selective suspend was issued by userspace.
343 *
344 * USER_RESUME Manual selective resume was issued by userspace.
345 *
346 * REMOTE_WAKEUP Remote-wakeup request was received from the device.
347 *
348 * AUTO_SUSPEND Automatic (device idle) runtime suspend was
349 * initiated by the subsystem.
350 *
351 * AUTO_RESUME Automatic (device needed) runtime resume was
352 * requested by a driver.
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200353 */
354
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200355#define PM_EVENT_INVALID (-1)
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200356#define PM_EVENT_ON 0x0000
357#define PM_EVENT_FREEZE 0x0001
358#define PM_EVENT_SUSPEND 0x0002
359#define PM_EVENT_HIBERNATE 0x0004
360#define PM_EVENT_QUIESCE 0x0008
361#define PM_EVENT_RESUME 0x0010
362#define PM_EVENT_THAW 0x0020
363#define PM_EVENT_RESTORE 0x0040
364#define PM_EVENT_RECOVER 0x0080
Alan Stern8111d1b2008-07-23 21:28:37 -0700365#define PM_EVENT_USER 0x0100
366#define PM_EVENT_REMOTE 0x0200
367#define PM_EVENT_AUTO 0x0400
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200368
Alan Stern8111d1b2008-07-23 21:28:37 -0700369#define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE)
370#define PM_EVENT_USER_SUSPEND (PM_EVENT_USER | PM_EVENT_SUSPEND)
371#define PM_EVENT_USER_RESUME (PM_EVENT_USER | PM_EVENT_RESUME)
Alan Stern7f4f5d42008-11-17 11:14:19 -0500372#define PM_EVENT_REMOTE_RESUME (PM_EVENT_REMOTE | PM_EVENT_RESUME)
Alan Stern8111d1b2008-07-23 21:28:37 -0700373#define PM_EVENT_AUTO_SUSPEND (PM_EVENT_AUTO | PM_EVENT_SUSPEND)
374#define PM_EVENT_AUTO_RESUME (PM_EVENT_AUTO | PM_EVENT_RESUME)
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200375
Rafael J. Wysocki1a9a9152011-09-29 22:29:44 +0200376#define PMSG_INVALID ((struct pm_message){ .event = PM_EVENT_INVALID, })
Alan Stern8111d1b2008-07-23 21:28:37 -0700377#define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, })
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200378#define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, })
379#define PMSG_QUIESCE ((struct pm_message){ .event = PM_EVENT_QUIESCE, })
380#define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, })
381#define PMSG_HIBERNATE ((struct pm_message){ .event = PM_EVENT_HIBERNATE, })
382#define PMSG_RESUME ((struct pm_message){ .event = PM_EVENT_RESUME, })
383#define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, })
384#define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, })
385#define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, })
Alan Stern7f4f5d42008-11-17 11:14:19 -0500386#define PMSG_USER_SUSPEND ((struct pm_message) \
Alan Stern8111d1b2008-07-23 21:28:37 -0700387 { .event = PM_EVENT_USER_SUSPEND, })
Alan Stern7f4f5d42008-11-17 11:14:19 -0500388#define PMSG_USER_RESUME ((struct pm_message) \
Alan Stern8111d1b2008-07-23 21:28:37 -0700389 { .event = PM_EVENT_USER_RESUME, })
Alan Stern7f4f5d42008-11-17 11:14:19 -0500390#define PMSG_REMOTE_RESUME ((struct pm_message) \
Alan Stern8111d1b2008-07-23 21:28:37 -0700391 { .event = PM_EVENT_REMOTE_RESUME, })
Alan Stern7f4f5d42008-11-17 11:14:19 -0500392#define PMSG_AUTO_SUSPEND ((struct pm_message) \
Alan Stern8111d1b2008-07-23 21:28:37 -0700393 { .event = PM_EVENT_AUTO_SUSPEND, })
Alan Stern7f4f5d42008-11-17 11:14:19 -0500394#define PMSG_AUTO_RESUME ((struct pm_message) \
Alan Stern8111d1b2008-07-23 21:28:37 -0700395 { .event = PM_EVENT_AUTO_RESUME, })
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200396
Alan Stern5b1b0b82011-08-19 23:49:48 +0200397#define PMSG_IS_AUTO(msg) (((msg).event & PM_EVENT_AUTO) != 0)
398
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200399/**
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200400 * Device run-time power management status.
401 *
402 * These status labels are used internally by the PM core to indicate the
403 * current status of a device with respect to the PM core operations. They do
404 * not reflect the actual power state of the device or its status as seen by the
405 * driver.
406 *
407 * RPM_ACTIVE Device is fully operational. Indicates that the device
408 * bus type's ->runtime_resume() callback has completed
409 * successfully.
410 *
411 * RPM_SUSPENDED Device bus type's ->runtime_suspend() callback has
412 * completed successfully. The device is regarded as
413 * suspended.
414 *
415 * RPM_RESUMING Device bus type's ->runtime_resume() callback is being
416 * executed.
417 *
418 * RPM_SUSPENDING Device bus type's ->runtime_suspend() callback is being
419 * executed.
420 */
421
422enum rpm_status {
423 RPM_ACTIVE = 0,
424 RPM_RESUMING,
425 RPM_SUSPENDED,
426 RPM_SUSPENDING,
427};
428
429/**
430 * Device run-time power management request types.
431 *
432 * RPM_REQ_NONE Do nothing.
433 *
434 * RPM_REQ_IDLE Run the device bus type's ->runtime_idle() callback
435 *
436 * RPM_REQ_SUSPEND Run the device bus type's ->runtime_suspend() callback
437 *
Alan Stern15bcb91d2010-09-25 23:35:21 +0200438 * RPM_REQ_AUTOSUSPEND Same as RPM_REQ_SUSPEND, but not until the device has
439 * been inactive for as long as power.autosuspend_delay
440 *
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200441 * RPM_REQ_RESUME Run the device bus type's ->runtime_resume() callback
442 */
443
444enum rpm_request {
445 RPM_REQ_NONE = 0,
446 RPM_REQ_IDLE,
447 RPM_REQ_SUSPEND,
Alan Stern15bcb91d2010-09-25 23:35:21 +0200448 RPM_REQ_AUTOSUSPEND,
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200449 RPM_REQ_RESUME,
450};
451
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200452struct wakeup_source;
453
Rafael J. Wysocki4605ab62011-08-25 15:34:12 +0200454struct pm_domain_data {
455 struct list_head list_node;
456 struct device *dev;
Rafael J. Wysocki4605ab62011-08-25 15:34:12 +0200457};
458
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200459struct pm_subsys_data {
460 spinlock_t lock;
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200461 unsigned int refcount;
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200462#ifdef CONFIG_PM_CLK
463 struct list_head clock_list;
464#endif
Rafael J. Wysocki4605ab62011-08-25 15:34:12 +0200465#ifdef CONFIG_PM_GENERIC_DOMAINS
Rafael J. Wysockicd0ea672011-09-26 20:22:02 +0200466 struct pm_domain_data *domain_data;
Rafael J. Wysocki4605ab62011-08-25 15:34:12 +0200467#endif
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200468};
469
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200470struct dev_pm_info {
471 pm_message_t power_state;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200472 unsigned int can_wakeup:1;
Rafael J. Wysockib8c76f62010-12-16 00:51:21 +0100473 unsigned int async_suspend:1;
Alan Sternf76b168b2011-06-18 20:22:23 +0200474 bool is_prepared:1; /* Owned by the PM core */
Alan Stern6d0e0e82011-06-18 22:42:09 +0200475 bool is_suspended:1; /* Ditto */
Rafael J. Wysocki8b258cc2011-11-17 21:39:33 +0100476 bool ignore_children:1;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200477 spinlock_t lock;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200478#ifdef CONFIG_PM_SLEEP
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200479 struct list_head entry;
Rafael J. Wysocki5af84b82010-01-23 22:23:32 +0100480 struct completion completion;
Rafael J. Wysocki074037e2010-09-22 22:09:10 +0200481 struct wakeup_source *wakeup;
Rafael J. Wysocki4ca46ff2011-10-16 23:34:36 +0200482 bool wakeup_path:1;
Rafael J. Wysocki805bdae2011-02-24 11:10:01 +0100483#else
484 unsigned int should_wakeup:1;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200485#endif
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200486#ifdef CONFIG_PM_RUNTIME
487 struct timer_list suspend_timer;
488 unsigned long timer_expires;
489 struct work_struct work;
490 wait_queue_head_t wait_queue;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200491 atomic_t usage_count;
492 atomic_t child_count;
493 unsigned int disable_depth:3;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200494 unsigned int idle_notification:1;
495 unsigned int request_pending:1;
496 unsigned int deferred_resume:1;
Rafael J. Wysocki7a1a8eb2009-12-03 21:19:18 +0100497 unsigned int run_wake:1;
Rafael J. Wysocki53823632010-01-23 22:02:51 +0100498 unsigned int runtime_auto:1;
Alan Stern7490e442010-09-25 23:35:15 +0200499 unsigned int no_callbacks:1;
Alan Sternc7b61de2010-12-01 00:14:42 +0100500 unsigned int irq_safe:1;
Alan Stern15bcb91d2010-09-25 23:35:21 +0200501 unsigned int use_autosuspend:1;
502 unsigned int timer_autosuspends:1;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200503 enum rpm_request request;
504 enum rpm_status runtime_status;
505 int runtime_error;
Alan Stern15bcb91d2010-09-25 23:35:21 +0200506 int autosuspend_delay;
507 unsigned long last_busy;
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200508 unsigned long active_jiffies;
509 unsigned long suspended_jiffies;
510 unsigned long accounting_timestamp;
Rafael J. Wysocki00dc9ad2011-12-01 00:01:31 +0100511 ktime_t suspend_time;
512 s64 max_time_suspended_ns;
Rafael J. Wysocki5e928f72009-08-18 23:38:32 +0200513#endif
Rafael J. Wysocki5c095a02011-08-25 15:33:50 +0200514 struct pm_subsys_data *subsys_data; /* Owned by the subsystem. */
Jean Pihet91ff4cb2011-08-25 15:35:41 +0200515 struct pm_qos_constraints *constraints;
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200516};
517
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200518extern void update_pm_runtime_accounting(struct device *dev);
Rafael J. Wysockief27bed2011-08-25 15:34:01 +0200519extern int dev_pm_get_subsys_data(struct device *dev);
520extern int dev_pm_put_subsys_data(struct device *dev);
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200521
Rafael J. Wysocki7538e3d2011-02-16 21:53:17 +0100522/*
523 * Power domains provide callbacks that are executed during system suspend,
524 * hibernation, system resume and during runtime PM transitions along with
525 * subsystem-level and driver-level callbacks.
526 */
Rafael J. Wysocki564b9052011-06-23 01:52:55 +0200527struct dev_pm_domain {
Rafael J. Wysocki7538e3d2011-02-16 21:53:17 +0100528 struct dev_pm_ops ops;
529};
Arjan van de Ven8d4b9d12010-07-19 02:01:06 +0200530
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200531/*
532 * The PM_EVENT_ messages are also used by drivers implementing the legacy
533 * suspend framework, based on the ->suspend() and ->resume() callbacks common
534 * for suspend and hibernation transitions, according to the rules below.
535 */
536
537/* Necessary, because several drivers use PM_EVENT_PRETHAW */
538#define PM_EVENT_PRETHAW PM_EVENT_QUIESCE
539
540/*
David Brownell82bb67f2006-08-14 23:11:04 -0700541 * One transition is triggered by resume(), after a suspend() call; the
542 * message is implicit:
543 *
544 * ON Driver starts working again, responding to hardware events
545 * and software requests. The hardware may have gone through
546 * a power-off reset, or it may have maintained state from the
547 * previous suspend() which the driver will rely on while
548 * resuming. On most platforms, there are no restrictions on
549 * availability of resources like clocks during resume().
550 *
551 * Other transitions are triggered by messages sent using suspend(). All
552 * these transitions quiesce the driver, so that I/O queues are inactive.
553 * That commonly entails turning off IRQs and DMA; there may be rules
554 * about how to quiesce that are specific to the bus or the device's type.
555 * (For example, network drivers mark the link state.) Other details may
556 * differ according to the message:
557 *
558 * SUSPEND Quiesce, enter a low power device state appropriate for
559 * the upcoming system state (such as PCI_D3hot), and enable
560 * wakeup events as appropriate.
561 *
Rafael J. Wysocki3a2d5b72008-02-23 19:13:25 +0100562 * HIBERNATE Enter a low power device state appropriate for the hibernation
563 * state (eg. ACPI S4) and enable wakeup events as appropriate.
564 *
David Brownell82bb67f2006-08-14 23:11:04 -0700565 * FREEZE Quiesce operations so that a consistent image can be saved;
566 * but do NOT otherwise enter a low power device state, and do
567 * NOT emit system wakeup events.
568 *
569 * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring
570 * the system from a snapshot taken after an earlier FREEZE.
571 * Some drivers will need to reset their hardware state instead
572 * of preserving it, to ensure that it's never mistaken for the
573 * state which that earlier snapshot had set up.
574 *
575 * A minimally power-aware driver treats all messages as SUSPEND, fully
576 * reinitializes its device during resume() -- whether or not it was reset
577 * during the suspend/resume cycle -- and can't issue wakeup events.
578 *
579 * More power-aware drivers may also use low power states at runtime as
580 * well as during system sleep states like PM_SUSPEND_STANDBY. They may
581 * be able to use wakeup events to exit from runtime low-power states,
582 * or from system low-power states such as standby or suspend-to-RAM.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 */
584
Rafael J. Wysocki296699d2007-07-29 23:27:18 +0200585#ifdef CONFIG_PM_SLEEP
Rafael J. Wysockid47d81c2011-03-23 22:16:41 +0100586extern void device_pm_lock(void);
Alan Sternd1616302009-05-24 22:05:42 +0200587extern void dpm_resume_noirq(pm_message_t state);
588extern void dpm_resume_end(pm_message_t state);
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +0200589extern void dpm_resume(pm_message_t state);
590extern void dpm_complete(pm_message_t state);
Rafael J. Wysocki1eede072008-05-20 23:00:01 +0200591
592extern void device_pm_unlock(void);
Alan Sternd1616302009-05-24 22:05:42 +0200593extern int dpm_suspend_noirq(pm_message_t state);
594extern int dpm_suspend_start(pm_message_t state);
Rafael J. Wysocki91e7c752011-05-17 23:26:00 +0200595extern int dpm_suspend(pm_message_t state);
596extern int dpm_prepare(pm_message_t state);
David Brownell0ac85242005-09-12 19:39:34 -0700597
Andrew Morton02669492006-03-23 01:38:34 -0800598extern void __suspend_report_result(const char *function, void *fn, int ret);
599
600#define suspend_report_result(fn, ret) \
601 do { \
Harvey Harrisond5c003b2008-10-15 22:01:24 -0700602 __suspend_report_result(__func__, fn, ret); \
Andrew Morton02669492006-03-23 01:38:34 -0800603 } while (0)
Andrew Morton9a7834d2005-10-23 23:02:20 -0700604
Rafael J. Wysocki098dff72010-09-22 22:10:57 +0200605extern int device_pm_wait_for_dev(struct device *sub, struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200606
607extern int pm_generic_prepare(struct device *dev);
Rafael J. Wysockie5291922011-07-01 22:12:59 +0200608extern int pm_generic_suspend_noirq(struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200609extern int pm_generic_suspend(struct device *dev);
Rafael J. Wysockie5291922011-07-01 22:12:59 +0200610extern int pm_generic_resume_noirq(struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200611extern int pm_generic_resume(struct device *dev);
Rafael J. Wysockie5291922011-07-01 22:12:59 +0200612extern int pm_generic_freeze_noirq(struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200613extern int pm_generic_freeze(struct device *dev);
Rafael J. Wysockie5291922011-07-01 22:12:59 +0200614extern int pm_generic_thaw_noirq(struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200615extern int pm_generic_thaw(struct device *dev);
Rafael J. Wysockie5291922011-07-01 22:12:59 +0200616extern int pm_generic_restore_noirq(struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200617extern int pm_generic_restore(struct device *dev);
Rafael J. Wysockie5291922011-07-01 22:12:59 +0200618extern int pm_generic_poweroff_noirq(struct device *dev);
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200619extern int pm_generic_poweroff(struct device *dev);
620extern void pm_generic_complete(struct device *dev);
621
Alan Sternd288e472008-03-19 22:37:42 +0100622#else /* !CONFIG_PM_SLEEP */
623
Cornelia Huckffa6a702009-03-04 12:44:00 +0100624#define device_pm_lock() do {} while (0)
625#define device_pm_unlock() do {} while (0)
626
Alan Sternd1616302009-05-24 22:05:42 +0200627static inline int dpm_suspend_start(pm_message_t state)
Alan Sternd288e472008-03-19 22:37:42 +0100628{
629 return 0;
630}
631
Alan Stern9a3df1f2008-03-19 22:39:13 +0100632#define suspend_report_result(fn, ret) do {} while (0)
Alan Sternd288e472008-03-19 22:37:42 +0100633
Rafael J. Wysocki098dff72010-09-22 22:10:57 +0200634static inline int device_pm_wait_for_dev(struct device *a, struct device *b)
635{
636 return 0;
637}
Rafael J. Wysocki6538df82011-05-17 23:26:21 +0200638
639#define pm_generic_prepare NULL
640#define pm_generic_suspend NULL
641#define pm_generic_resume NULL
642#define pm_generic_freeze NULL
643#define pm_generic_thaw NULL
644#define pm_generic_restore NULL
645#define pm_generic_poweroff NULL
646#define pm_generic_complete NULL
Alan Sternd288e472008-03-19 22:37:42 +0100647#endif /* !CONFIG_PM_SLEEP */
648
Cornelia Huckffa6a702009-03-04 12:44:00 +0100649/* How to reorder dpm_list after device_move() */
650enum dpm_order {
651 DPM_ORDER_NONE,
652 DPM_ORDER_DEV_AFTER_PARENT,
653 DPM_ORDER_PARENT_BEFORE_DEV,
654 DPM_ORDER_DEV_LAST,
655};
656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#endif /* _LINUX_PM_H */