]> bbs.cooldavid.org Git - net-next-2.6.git/blame - include/linux/pm.h
PM: Asynchronous suspend and resume of devices
[net-next-2.6.git] / include / linux / pm.h
CommitLineData
1da177e4
LT
1/*
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
1da177e4 24#include <linux/list.h>
5e928f77
RW
25#include <linux/workqueue.h>
26#include <linux/spinlock.h>
27#include <linux/wait.h>
28#include <linux/timer.h>
5af84b82 29#include <linux/completion.h>
1da177e4 30
1da177e4
LT
31/*
32 * Callbacks for platform drivers to implement.
33 */
34extern void (*pm_idle)(void);
35extern void (*pm_power_off)(void);
bd804eba 36extern void (*pm_power_off_prepare)(void);
1da177e4 37
1da177e4
LT
38/*
39 * Device power management
40 */
41
42struct device;
43
ca078bae
PM
44typedef struct pm_message {
45 int event;
46} pm_message_t;
1da177e4 47
1eede070 48/**
adf09493 49 * struct dev_pm_ops - device PM callbacks
1eede070 50 *
82bb67f2
DB
51 * Several driver power state transitions are externally visible, affecting
52 * the state of pending I/O queues and (for drivers that touch hardware)
53 * interrupts, wakeups, DMA, and other hardware state. There may also be
54 * internal transitions to various low power modes, which are transparent
55 * to the rest of the driver stack (such as a driver that's ON gating off
56 * clocks which are not in active use).
1da177e4 57 *
1eede070
RW
58 * The externally visible transitions are handled with the help of the following
59 * callbacks included in this structure:
60 *
61 * @prepare: Prepare the device for the upcoming transition, but do NOT change
62 * its hardware state. Prevent new children of the device from being
63 * registered after @prepare() returns (the driver's subsystem and
64 * generally the rest of the kernel is supposed to prevent new calls to the
65 * probe method from being made too once @prepare() has succeeded). If
66 * @prepare() detects a situation it cannot handle (e.g. registration of a
67 * child already in progress), it may return -EAGAIN, so that the PM core
68 * can execute it once again (e.g. after the new child has been registered)
69 * to recover from the race condition. This method is executed for all
70 * kinds of suspend transitions and is followed by one of the suspend
71 * callbacks: @suspend(), @freeze(), or @poweroff().
72 * The PM core executes @prepare() for all devices before starting to
73 * execute suspend callbacks for any of them, so drivers may assume all of
74 * the other devices to be present and functional while @prepare() is being
75 * executed. In particular, it is safe to make GFP_KERNEL memory
76 * allocations from within @prepare(). However, drivers may NOT assume
77 * anything about the availability of the user space at that time and it
78 * is not correct to request firmware from within @prepare() (it's too
79 * late to do that). [To work around this limitation, drivers may
80 * register suspend and hibernation notifiers that are executed before the
81 * freezing of tasks.]
82 *
83 * @complete: Undo the changes made by @prepare(). This method is executed for
84 * all kinds of resume transitions, following one of the resume callbacks:
85 * @resume(), @thaw(), @restore(). Also called if the state transition
86 * fails before the driver's suspend callback (@suspend(), @freeze(),
87 * @poweroff()) can be executed (e.g. if the suspend callback fails for one
88 * of the other devices that the PM core has unsuccessfully attempted to
89 * suspend earlier).
90 * The PM core executes @complete() after it has executed the appropriate
91 * resume callback for all devices.
92 *
93 * @suspend: Executed before putting the system into a sleep state in which the
94 * contents of main memory are preserved. Quiesce the device, put it into
95 * a low power state appropriate for the upcoming system state (such as
96 * PCI_D3hot), and enable wakeup events as appropriate.
97 *
98 * @resume: Executed after waking the system up from a sleep state in which the
99 * contents of main memory were preserved. Put the device into the
100 * appropriate state, according to the information saved in memory by the
101 * preceding @suspend(). The driver starts working again, responding to
102 * hardware events and software requests. The hardware may have gone
103 * through a power-off reset, or it may have maintained state from the
104 * previous suspend() which the driver may rely on while resuming. On most
105 * platforms, there are no restrictions on availability of resources like
106 * clocks during @resume().
107 *
108 * @freeze: Hibernation-specific, executed before creating a hibernation image.
109 * Quiesce operations so that a consistent image can be created, but do NOT
110 * otherwise put the device into a low power device state and do NOT emit
111 * system wakeup events. Save in main memory the device settings to be
112 * used by @restore() during the subsequent resume from hibernation or by
113 * the subsequent @thaw(), if the creation of the image or the restoration
114 * of main memory contents from it fails.
115 *
116 * @thaw: Hibernation-specific, executed after creating a hibernation image OR
117 * if the creation of the image fails. Also executed after a failing
118 * attempt to restore the contents of main memory from such an image.
119 * Undo the changes made by the preceding @freeze(), so the device can be
120 * operated in the same way as immediately before the call to @freeze().
121 *
122 * @poweroff: Hibernation-specific, executed after saving a hibernation image.
123 * Quiesce the device, put it into a low power state appropriate for the
124 * upcoming system state (such as PCI_D3hot), and enable wakeup events as
125 * appropriate.
126 *
127 * @restore: Hibernation-specific, executed after restoring the contents of main
128 * memory from a hibernation image. Driver starts working again,
129 * responding to hardware events and software requests. Drivers may NOT
130 * make ANY assumptions about the hardware state right prior to @restore().
131 * On most platforms, there are no restrictions on availability of
132 * resources like clocks during @restore().
133 *
1eede070
RW
134 * @suspend_noirq: Complete the operations of ->suspend() by carrying out any
135 * actions required for suspending the device that need interrupts to be
136 * disabled
137 *
138 * @resume_noirq: Prepare for the execution of ->resume() by carrying out any
139 * actions required for resuming the device that need interrupts to be
140 * disabled
141 *
142 * @freeze_noirq: Complete the operations of ->freeze() by carrying out any
143 * actions required for freezing the device that need interrupts to be
144 * disabled
145 *
146 * @thaw_noirq: Prepare for the execution of ->thaw() by carrying out any
147 * actions required for thawing the device that need interrupts to be
148 * disabled
149 *
150 * @poweroff_noirq: Complete the operations of ->poweroff() by carrying out any
151 * actions required for handling the device that need interrupts to be
152 * disabled
153 *
154 * @restore_noirq: Prepare for the execution of ->restore() by carrying out any
155 * actions required for restoring the operations of the device that need
156 * interrupts to be disabled
157 *
adf09493
RW
158 * All of the above callbacks, except for @complete(), return error codes.
159 * However, the error codes returned by the resume operations, @resume(),
160 * @thaw(), @restore(), @resume_noirq(), @thaw_noirq(), and @restore_noirq() do
161 * not cause the PM core to abort the resume transition during which they are
162 * returned. The error codes returned in that cases are only printed by the PM
163 * core to the system logs for debugging purposes. Still, it is recommended
164 * that drivers only return error codes from their resume methods in case of an
165 * unrecoverable failure (i.e. when the device being handled refuses to resume
166 * and becomes unusable) to allow us to modify the PM core in the future, so
167 * that it can avoid attempting to handle devices that failed to resume and
168 * their children.
169 *
170 * It is allowed to unregister devices while the above callbacks are being
171 * executed. However, it is not allowed to unregister a device from within any
172 * of its own callbacks.
5e928f77
RW
173 *
174 * There also are the following callbacks related to run-time power management
175 * of devices:
176 *
177 * @runtime_suspend: Prepare the device for a condition in which it won't be
178 * able to communicate with the CPU(s) and RAM due to power management.
179 * This need not mean that the device should be put into a low power state.
180 * For example, if the device is behind a link which is about to be turned
181 * off, the device may remain at full power. If the device does go to low
7a1a8eb5
RW
182 * power and is capable of generating run-time wake-up events, remote
183 * wake-up (i.e., a hardware mechanism allowing the device to request a
184 * change of its power state via a wake-up event, such as PCI PME) should
185 * be enabled for it.
5e928f77
RW
186 *
187 * @runtime_resume: Put the device into the fully active state in response to a
188 * wake-up event generated by hardware or at the request of software. If
189 * necessary, put the device into the full power state and restore its
190 * registers, so that it is fully operational.
191 *
192 * @runtime_idle: Device appears to be inactive and it might be put into a low
193 * power state if all of the necessary conditions are satisfied. Check
194 * these conditions and handle the device as appropriate, possibly queueing
195 * a suspend request for it. The return value is ignored by the PM core.
1eede070
RW
196 */
197
adf09493
RW
198struct dev_pm_ops {
199 int (*prepare)(struct device *dev);
200 void (*complete)(struct device *dev);
201 int (*suspend)(struct device *dev);
202 int (*resume)(struct device *dev);
203 int (*freeze)(struct device *dev);
204 int (*thaw)(struct device *dev);
205 int (*poweroff)(struct device *dev);
206 int (*restore)(struct device *dev);
1eede070
RW
207 int (*suspend_noirq)(struct device *dev);
208 int (*resume_noirq)(struct device *dev);
209 int (*freeze_noirq)(struct device *dev);
210 int (*thaw_noirq)(struct device *dev);
211 int (*poweroff_noirq)(struct device *dev);
212 int (*restore_noirq)(struct device *dev);
5e928f77
RW
213 int (*runtime_suspend)(struct device *dev);
214 int (*runtime_resume)(struct device *dev);
215 int (*runtime_idle)(struct device *dev);
1eede070
RW
216};
217
9d62ec6c
AT
218/*
219 * Use this if you want to use the same suspend and resume callbacks for suspend
220 * to RAM and hibernation.
221 */
222#define SIMPLE_DEV_PM_OPS(name, suspend_fn, resume_fn) \
47145210 223const struct dev_pm_ops name = { \
9d62ec6c
AT
224 .suspend = suspend_fn, \
225 .resume = resume_fn, \
226 .freeze = suspend_fn, \
227 .thaw = resume_fn, \
228 .poweroff = suspend_fn, \
229 .restore = resume_fn, \
230}
231
1eede070
RW
232/**
233 * PM_EVENT_ messages
234 *
235 * The following PM_EVENT_ messages are defined for the internal use of the PM
236 * core, in order to provide a mechanism allowing the high level suspend and
237 * hibernation code to convey the necessary information to the device PM core
238 * code:
239 *
240 * ON No transition.
241 *
242 * FREEZE System is going to hibernate, call ->prepare() and ->freeze()
243 * for all devices.
244 *
245 * SUSPEND System is going to suspend, call ->prepare() and ->suspend()
246 * for all devices.
247 *
248 * HIBERNATE Hibernation image has been saved, call ->prepare() and
249 * ->poweroff() for all devices.
250 *
251 * QUIESCE Contents of main memory are going to be restored from a (loaded)
252 * hibernation image, call ->prepare() and ->freeze() for all
253 * devices.
254 *
255 * RESUME System is resuming, call ->resume() and ->complete() for all
256 * devices.
257 *
258 * THAW Hibernation image has been created, call ->thaw() and
259 * ->complete() for all devices.
260 *
261 * RESTORE Contents of main memory have been restored from a hibernation
262 * image, call ->restore() and ->complete() for all devices.
263 *
264 * RECOVER Creation of a hibernation image or restoration of the main
265 * memory contents from a hibernation image has failed, call
266 * ->thaw() and ->complete() for all devices.
8111d1b5
AS
267 *
268 * The following PM_EVENT_ messages are defined for internal use by
269 * kernel subsystems. They are never issued by the PM core.
270 *
271 * USER_SUSPEND Manual selective suspend was issued by userspace.
272 *
273 * USER_RESUME Manual selective resume was issued by userspace.
274 *
275 * REMOTE_WAKEUP Remote-wakeup request was received from the device.
276 *
277 * AUTO_SUSPEND Automatic (device idle) runtime suspend was
278 * initiated by the subsystem.
279 *
280 * AUTO_RESUME Automatic (device needed) runtime resume was
281 * requested by a driver.
1eede070
RW
282 */
283
284#define PM_EVENT_ON 0x0000
285#define PM_EVENT_FREEZE 0x0001
286#define PM_EVENT_SUSPEND 0x0002
287#define PM_EVENT_HIBERNATE 0x0004
288#define PM_EVENT_QUIESCE 0x0008
289#define PM_EVENT_RESUME 0x0010
290#define PM_EVENT_THAW 0x0020
291#define PM_EVENT_RESTORE 0x0040
292#define PM_EVENT_RECOVER 0x0080
8111d1b5
AS
293#define PM_EVENT_USER 0x0100
294#define PM_EVENT_REMOTE 0x0200
295#define PM_EVENT_AUTO 0x0400
1eede070 296
8111d1b5
AS
297#define PM_EVENT_SLEEP (PM_EVENT_SUSPEND | PM_EVENT_HIBERNATE)
298#define PM_EVENT_USER_SUSPEND (PM_EVENT_USER | PM_EVENT_SUSPEND)
299#define PM_EVENT_USER_RESUME (PM_EVENT_USER | PM_EVENT_RESUME)
7f4f5d45 300#define PM_EVENT_REMOTE_RESUME (PM_EVENT_REMOTE | PM_EVENT_RESUME)
8111d1b5
AS
301#define PM_EVENT_AUTO_SUSPEND (PM_EVENT_AUTO | PM_EVENT_SUSPEND)
302#define PM_EVENT_AUTO_RESUME (PM_EVENT_AUTO | PM_EVENT_RESUME)
1eede070 303
8111d1b5 304#define PMSG_ON ((struct pm_message){ .event = PM_EVENT_ON, })
1eede070
RW
305#define PMSG_FREEZE ((struct pm_message){ .event = PM_EVENT_FREEZE, })
306#define PMSG_QUIESCE ((struct pm_message){ .event = PM_EVENT_QUIESCE, })
307#define PMSG_SUSPEND ((struct pm_message){ .event = PM_EVENT_SUSPEND, })
308#define PMSG_HIBERNATE ((struct pm_message){ .event = PM_EVENT_HIBERNATE, })
309#define PMSG_RESUME ((struct pm_message){ .event = PM_EVENT_RESUME, })
310#define PMSG_THAW ((struct pm_message){ .event = PM_EVENT_THAW, })
311#define PMSG_RESTORE ((struct pm_message){ .event = PM_EVENT_RESTORE, })
312#define PMSG_RECOVER ((struct pm_message){ .event = PM_EVENT_RECOVER, })
7f4f5d45 313#define PMSG_USER_SUSPEND ((struct pm_message) \
8111d1b5 314 { .event = PM_EVENT_USER_SUSPEND, })
7f4f5d45 315#define PMSG_USER_RESUME ((struct pm_message) \
8111d1b5 316 { .event = PM_EVENT_USER_RESUME, })
7f4f5d45 317#define PMSG_REMOTE_RESUME ((struct pm_message) \
8111d1b5 318 { .event = PM_EVENT_REMOTE_RESUME, })
7f4f5d45 319#define PMSG_AUTO_SUSPEND ((struct pm_message) \
8111d1b5 320 { .event = PM_EVENT_AUTO_SUSPEND, })
7f4f5d45 321#define PMSG_AUTO_RESUME ((struct pm_message) \
8111d1b5 322 { .event = PM_EVENT_AUTO_RESUME, })
1eede070
RW
323
324/**
325 * Device power management states
326 *
327 * These state labels are used internally by the PM core to indicate the current
328 * status of a device with respect to the PM core operations.
329 *
330 * DPM_ON Device is regarded as operational. Set this way
331 * initially and when ->complete() is about to be called.
332 * Also set when ->prepare() fails.
333 *
334 * DPM_PREPARING Device is going to be prepared for a PM transition. Set
335 * when ->prepare() is about to be called.
336 *
337 * DPM_RESUMING Device is going to be resumed. Set when ->resume(),
338 * ->thaw(), or ->restore() is about to be called.
339 *
340 * DPM_SUSPENDING Device has been prepared for a power transition. Set
341 * when ->prepare() has just succeeded.
342 *
343 * DPM_OFF Device is regarded as inactive. Set immediately after
344 * ->suspend(), ->freeze(), or ->poweroff() has succeeded.
345 * Also set when ->resume()_noirq, ->thaw_noirq(), or
346 * ->restore_noirq() is about to be called.
347 *
348 * DPM_OFF_IRQ Device is in a "deep sleep". Set immediately after
349 * ->suspend_noirq(), ->freeze_noirq(), or
350 * ->poweroff_noirq() has just succeeded.
351 */
352
353enum dpm_state {
354 DPM_INVALID,
355 DPM_ON,
356 DPM_PREPARING,
357 DPM_RESUMING,
358 DPM_SUSPENDING,
359 DPM_OFF,
360 DPM_OFF_IRQ,
361};
362
5e928f77
RW
363/**
364 * Device run-time power management status.
365 *
366 * These status labels are used internally by the PM core to indicate the
367 * current status of a device with respect to the PM core operations. They do
368 * not reflect the actual power state of the device or its status as seen by the
369 * driver.
370 *
371 * RPM_ACTIVE Device is fully operational. Indicates that the device
372 * bus type's ->runtime_resume() callback has completed
373 * successfully.
374 *
375 * RPM_SUSPENDED Device bus type's ->runtime_suspend() callback has
376 * completed successfully. The device is regarded as
377 * suspended.
378 *
379 * RPM_RESUMING Device bus type's ->runtime_resume() callback is being
380 * executed.
381 *
382 * RPM_SUSPENDING Device bus type's ->runtime_suspend() callback is being
383 * executed.
384 */
385
386enum rpm_status {
387 RPM_ACTIVE = 0,
388 RPM_RESUMING,
389 RPM_SUSPENDED,
390 RPM_SUSPENDING,
391};
392
393/**
394 * Device run-time power management request types.
395 *
396 * RPM_REQ_NONE Do nothing.
397 *
398 * RPM_REQ_IDLE Run the device bus type's ->runtime_idle() callback
399 *
400 * RPM_REQ_SUSPEND Run the device bus type's ->runtime_suspend() callback
401 *
402 * RPM_REQ_RESUME Run the device bus type's ->runtime_resume() callback
403 */
404
405enum rpm_request {
406 RPM_REQ_NONE = 0,
407 RPM_REQ_IDLE,
408 RPM_REQ_SUSPEND,
409 RPM_REQ_RESUME,
410};
411
1eede070
RW
412struct dev_pm_info {
413 pm_message_t power_state;
5e928f77
RW
414 unsigned int can_wakeup:1;
415 unsigned int should_wakeup:1;
5af84b82 416 unsigned async_suspend:1;
1eede070 417 enum dpm_state status; /* Owned by the PM core */
5e928f77 418#ifdef CONFIG_PM_SLEEP
1eede070 419 struct list_head entry;
5af84b82 420 struct completion completion;
1eede070 421#endif
5e928f77
RW
422#ifdef CONFIG_PM_RUNTIME
423 struct timer_list suspend_timer;
424 unsigned long timer_expires;
425 struct work_struct work;
426 wait_queue_head_t wait_queue;
427 spinlock_t lock;
428 atomic_t usage_count;
429 atomic_t child_count;
430 unsigned int disable_depth:3;
431 unsigned int ignore_children:1;
432 unsigned int idle_notification:1;
433 unsigned int request_pending:1;
434 unsigned int deferred_resume:1;
7a1a8eb5 435 unsigned int run_wake:1;
53823639 436 unsigned int runtime_auto:1;
5e928f77
RW
437 enum rpm_request request;
438 enum rpm_status runtime_status;
439 int runtime_error;
440#endif
1eede070
RW
441};
442
443/*
444 * The PM_EVENT_ messages are also used by drivers implementing the legacy
445 * suspend framework, based on the ->suspend() and ->resume() callbacks common
446 * for suspend and hibernation transitions, according to the rules below.
447 */
448
449/* Necessary, because several drivers use PM_EVENT_PRETHAW */
450#define PM_EVENT_PRETHAW PM_EVENT_QUIESCE
451
452/*
82bb67f2
DB
453 * One transition is triggered by resume(), after a suspend() call; the
454 * message is implicit:
455 *
456 * ON Driver starts working again, responding to hardware events
457 * and software requests. The hardware may have gone through
458 * a power-off reset, or it may have maintained state from the
459 * previous suspend() which the driver will rely on while
460 * resuming. On most platforms, there are no restrictions on
461 * availability of resources like clocks during resume().
462 *
463 * Other transitions are triggered by messages sent using suspend(). All
464 * these transitions quiesce the driver, so that I/O queues are inactive.
465 * That commonly entails turning off IRQs and DMA; there may be rules
466 * about how to quiesce that are specific to the bus or the device's type.
467 * (For example, network drivers mark the link state.) Other details may
468 * differ according to the message:
469 *
470 * SUSPEND Quiesce, enter a low power device state appropriate for
471 * the upcoming system state (such as PCI_D3hot), and enable
472 * wakeup events as appropriate.
473 *
3a2d5b70
RW
474 * HIBERNATE Enter a low power device state appropriate for the hibernation
475 * state (eg. ACPI S4) and enable wakeup events as appropriate.
476 *
82bb67f2
DB
477 * FREEZE Quiesce operations so that a consistent image can be saved;
478 * but do NOT otherwise enter a low power device state, and do
479 * NOT emit system wakeup events.
480 *
481 * PRETHAW Quiesce as if for FREEZE; additionally, prepare for restoring
482 * the system from a snapshot taken after an earlier FREEZE.
483 * Some drivers will need to reset their hardware state instead
484 * of preserving it, to ensure that it's never mistaken for the
485 * state which that earlier snapshot had set up.
486 *
487 * A minimally power-aware driver treats all messages as SUSPEND, fully
488 * reinitializes its device during resume() -- whether or not it was reset
489 * during the suspend/resume cycle -- and can't issue wakeup events.
490 *
491 * More power-aware drivers may also use low power states at runtime as
492 * well as during system sleep states like PM_SUSPEND_STANDBY. They may
493 * be able to use wakeup events to exit from runtime low-power states,
494 * or from system low-power states such as standby or suspend-to-RAM.
1da177e4
LT
495 */
496
1eede070
RW
497#ifdef CONFIG_PM_SLEEP
498extern void device_pm_lock(void);
770824bd 499extern int sysdev_resume(void);
d1616302
AS
500extern void dpm_resume_noirq(pm_message_t state);
501extern void dpm_resume_end(pm_message_t state);
1da177e4 502
1eede070 503extern void device_pm_unlock(void);
770824bd 504extern int sysdev_suspend(pm_message_t state);
d1616302
AS
505extern int dpm_suspend_noirq(pm_message_t state);
506extern int dpm_suspend_start(pm_message_t state);
0ac85241 507
02669492
AM
508extern void __suspend_report_result(const char *function, void *fn, int ret);
509
510#define suspend_report_result(fn, ret) \
511 do { \
d5c003b4 512 __suspend_report_result(__func__, fn, ret); \
02669492 513 } while (0)
9a7834d0 514
d288e47c
AS
515#else /* !CONFIG_PM_SLEEP */
516
ffa6a705
CH
517#define device_pm_lock() do {} while (0)
518#define device_pm_unlock() do {} while (0)
519
d1616302 520static inline int dpm_suspend_start(pm_message_t state)
d288e47c
AS
521{
522 return 0;
523}
524
9a3df1f7 525#define suspend_report_result(fn, ret) do {} while (0)
d288e47c
AS
526
527#endif /* !CONFIG_PM_SLEEP */
528
ffa6a705
CH
529/* How to reorder dpm_list after device_move() */
530enum dpm_order {
531 DPM_ORDER_NONE,
532 DPM_ORDER_DEV_AFTER_PARENT,
533 DPM_ORDER_PARENT_BEFORE_DEV,
534 DPM_ORDER_DEV_LAST,
535};
536
9f9adecd
LB
537/*
538 * Global Power Management flags
539 * Used to keep APM and ACPI from both being active
540 */
541extern unsigned int pm_flags;
542
543#define PM_APM 1
544#define PM_ACPI 2
545
1da177e4 546#endif /* _LINUX_PM_H */