Merge branch 'for-linus' of git://git.selinuxproject.org/~jmorris/linux-security
[pandora-kernel.git] / Documentation / power / devices.txt
1 Device Power Management
2
3 Copyright (c) 2010-2011 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
4 Copyright (c) 2010 Alan Stern <stern@rowland.harvard.edu>
5
6
7 Most of the code in Linux is device drivers, so most of the Linux power
8 management (PM) code is also driver-specific.  Most drivers will do very
9 little; others, especially for platforms with small batteries (like cell
10 phones), will do a lot.
11
12 This writeup gives an overview of how drivers interact with system-wide
13 power management goals, emphasizing the models and interfaces that are
14 shared by everything that hooks up to the driver model core.  Read it as
15 background for the domain-specific work you'd do with any specific driver.
16
17
18 Two Models for Device Power Management
19 ======================================
20 Drivers will use one or both of these models to put devices into low-power
21 states:
22
23     System Sleep model:
24         Drivers can enter low-power states as part of entering system-wide
25         low-power states like "suspend" (also known as "suspend-to-RAM"), or
26         (mostly for systems with disks) "hibernation" (also known as
27         "suspend-to-disk").
28
29         This is something that device, bus, and class drivers collaborate on
30         by implementing various role-specific suspend and resume methods to
31         cleanly power down hardware and software subsystems, then reactivate
32         them without loss of data.
33
34         Some drivers can manage hardware wakeup events, which make the system
35         leave the low-power state.  This feature may be enabled or disabled
36         using the relevant /sys/devices/.../power/wakeup file (for Ethernet
37         drivers the ioctl interface used by ethtool may also be used for this
38         purpose); enabling it may cost some power usage, but let the whole
39         system enter low-power states more often.
40
41     Runtime Power Management model:
42         Devices may also be put into low-power states while the system is
43         running, independently of other power management activity in principle.
44         However, devices are not generally independent of each other (for
45         example, a parent device cannot be suspended unless all of its child
46         devices have been suspended).  Moreover, depending on the bus type the
47         device is on, it may be necessary to carry out some bus-specific
48         operations on the device for this purpose.  Devices put into low power
49         states at run time may require special handling during system-wide power
50         transitions (suspend or hibernation).
51
52         For these reasons not only the device driver itself, but also the
53         appropriate subsystem (bus type, device type or device class) driver and
54         the PM core are involved in runtime power management.  As in the system
55         sleep power management case, they need to collaborate by implementing
56         various role-specific suspend and resume methods, so that the hardware
57         is cleanly powered down and reactivated without data or service loss.
58
59 There's not a lot to be said about those low-power states except that they are
60 very system-specific, and often device-specific.  Also, that if enough devices
61 have been put into low-power states (at runtime), the effect may be very similar
62 to entering some system-wide low-power state (system sleep) ... and that
63 synergies exist, so that several drivers using runtime PM might put the system
64 into a state where even deeper power saving options are available.
65
66 Most suspended devices will have quiesced all I/O: no more DMA or IRQs (except
67 for wakeup events), no more data read or written, and requests from upstream
68 drivers are no longer accepted.  A given bus or platform may have different
69 requirements though.
70
71 Examples of hardware wakeup events include an alarm from a real time clock,
72 network wake-on-LAN packets, keyboard or mouse activity, and media insertion
73 or removal (for PCMCIA, MMC/SD, USB, and so on).
74
75
76 Interfaces for Entering System Sleep States
77 ===========================================
78 There are programming interfaces provided for subsystems (bus type, device type,
79 device class) and device drivers to allow them to participate in the power
80 management of devices they are concerned with.  These interfaces cover both
81 system sleep and runtime power management.
82
83
84 Device Power Management Operations
85 ----------------------------------
86 Device power management operations, at the subsystem level as well as at the
87 device driver level, are implemented by defining and populating objects of type
88 struct dev_pm_ops:
89
90 struct dev_pm_ops {
91         int (*prepare)(struct device *dev);
92         void (*complete)(struct device *dev);
93         int (*suspend)(struct device *dev);
94         int (*resume)(struct device *dev);
95         int (*freeze)(struct device *dev);
96         int (*thaw)(struct device *dev);
97         int (*poweroff)(struct device *dev);
98         int (*restore)(struct device *dev);
99         int (*suspend_noirq)(struct device *dev);
100         int (*resume_noirq)(struct device *dev);
101         int (*freeze_noirq)(struct device *dev);
102         int (*thaw_noirq)(struct device *dev);
103         int (*poweroff_noirq)(struct device *dev);
104         int (*restore_noirq)(struct device *dev);
105         int (*runtime_suspend)(struct device *dev);
106         int (*runtime_resume)(struct device *dev);
107         int (*runtime_idle)(struct device *dev);
108 };
109
110 This structure is defined in include/linux/pm.h and the methods included in it
111 are also described in that file.  Their roles will be explained in what follows.
112 For now, it should be sufficient to remember that the last three methods are
113 specific to runtime power management while the remaining ones are used during
114 system-wide power transitions.
115
116 There also is a deprecated "old" or "legacy" interface for power management
117 operations available at least for some subsystems.  This approach does not use
118 struct dev_pm_ops objects and it is suitable only for implementing system sleep
119 power management methods.  Therefore it is not described in this document, so
120 please refer directly to the source code for more information about it.
121
122
123 Subsystem-Level Methods
124 -----------------------
125 The core methods to suspend and resume devices reside in struct dev_pm_ops
126 pointed to by the pm member of struct bus_type, struct device_type and
127 struct class.  They are mostly of interest to the people writing infrastructure
128 for buses, like PCI or USB, or device type and device class drivers.
129
130 Bus drivers implement these methods as appropriate for the hardware and the
131 drivers using it; PCI works differently from USB, and so on.  Not many people
132 write subsystem-level drivers; most driver code is a "device driver" that builds
133 on top of bus-specific framework code.
134
135 For more information on these driver calls, see the description later;
136 they are called in phases for every device, respecting the parent-child
137 sequencing in the driver model tree.
138
139
140 /sys/devices/.../power/wakeup files
141 -----------------------------------
142 All devices in the driver model have two flags to control handling of wakeup
143 events (hardware signals that can force the device and/or system out of a low
144 power state).  These flags are initialized by bus or device driver code using
145 device_set_wakeup_capable() and device_set_wakeup_enable(), defined in
146 include/linux/pm_wakeup.h.
147
148 The "can_wakeup" flag just records whether the device (and its driver) can
149 physically support wakeup events.  The device_set_wakeup_capable() routine
150 affects this flag.  The "should_wakeup" flag controls whether the device should
151 try to use its wakeup mechanism.  device_set_wakeup_enable() affects this flag;
152 for the most part drivers should not change its value.  The initial value of
153 should_wakeup is supposed to be false for the majority of devices; the major
154 exceptions are power buttons, keyboards, and Ethernet adapters whose WoL
155 (wake-on-LAN) feature has been set up with ethtool.  It should also default
156 to true for devices that don't generate wakeup requests on their own but merely
157 forward wakeup requests from one bus to another (like PCI bridges).
158
159 Whether or not a device is capable of issuing wakeup events is a hardware
160 matter, and the kernel is responsible for keeping track of it.  By contrast,
161 whether or not a wakeup-capable device should issue wakeup events is a policy
162 decision, and it is managed by user space through a sysfs attribute: the
163 power/wakeup file.  User space can write the strings "enabled" or "disabled" to
164 set or clear the "should_wakeup" flag, respectively.  This file is only present
165 for wakeup-capable devices (i.e. devices whose "can_wakeup" flags are set)
166 and is created (or removed) by device_set_wakeup_capable().  Reads from the
167 file will return the corresponding string.
168
169 The device_may_wakeup() routine returns true only if both flags are set.
170 This information is used by subsystems, like the PCI bus type code, to see
171 whether or not to enable the devices' wakeup mechanisms.  If device wakeup
172 mechanisms are enabled or disabled directly by drivers, they also should use
173 device_may_wakeup() to decide what to do during a system sleep transition.
174 However for runtime power management, wakeup events should be enabled whenever
175 the device and driver both support them, regardless of the should_wakeup flag.
176
177
178 /sys/devices/.../power/control files
179 ------------------------------------
180 Each device in the driver model has a flag to control whether it is subject to
181 runtime power management.  This flag, called runtime_auto, is initialized by the
182 bus type (or generally subsystem) code using pm_runtime_allow() or
183 pm_runtime_forbid(); the default is to allow runtime power management.
184
185 The setting can be adjusted by user space by writing either "on" or "auto" to
186 the device's power/control sysfs file.  Writing "auto" calls pm_runtime_allow(),
187 setting the flag and allowing the device to be runtime power-managed by its
188 driver.  Writing "on" calls pm_runtime_forbid(), clearing the flag, returning
189 the device to full power if it was in a low-power state, and preventing the
190 device from being runtime power-managed.  User space can check the current value
191 of the runtime_auto flag by reading the file.
192
193 The device's runtime_auto flag has no effect on the handling of system-wide
194 power transitions.  In particular, the device can (and in the majority of cases
195 should and will) be put into a low-power state during a system-wide transition
196 to a sleep state even though its runtime_auto flag is clear.
197
198 For more information about the runtime power management framework, refer to
199 Documentation/power/runtime_pm.txt.
200
201
202 Calling Drivers to Enter and Leave System Sleep States
203 ======================================================
204 When the system goes into a sleep state, each device's driver is asked to
205 suspend the device by putting it into a state compatible with the target
206 system state.  That's usually some version of "off", but the details are
207 system-specific.  Also, wakeup-enabled devices will usually stay partly
208 functional in order to wake the system.
209
210 When the system leaves that low-power state, the device's driver is asked to
211 resume it by returning it to full power.  The suspend and resume operations
212 always go together, and both are multi-phase operations.
213
214 For simple drivers, suspend might quiesce the device using class code
215 and then turn its hardware as "off" as possible during suspend_noirq.  The
216 matching resume calls would then completely reinitialize the hardware
217 before reactivating its class I/O queues.
218
219 More power-aware drivers might prepare the devices for triggering system wakeup
220 events.
221
222
223 Call Sequence Guarantees
224 ------------------------
225 To ensure that bridges and similar links needing to talk to a device are
226 available when the device is suspended or resumed, the device tree is
227 walked in a bottom-up order to suspend devices.  A top-down order is
228 used to resume those devices.
229
230 The ordering of the device tree is defined by the order in which devices
231 get registered:  a child can never be registered, probed or resumed before
232 its parent; and can't be removed or suspended after that parent.
233
234 The policy is that the device tree should match hardware bus topology.
235 (Or at least the control bus, for devices which use multiple busses.)
236 In particular, this means that a device registration may fail if the parent of
237 the device is suspending (i.e. has been chosen by the PM core as the next
238 device to suspend) or has already suspended, as well as after all of the other
239 devices have been suspended.  Device drivers must be prepared to cope with such
240 situations.
241
242
243 System Power Management Phases
244 ------------------------------
245 Suspending or resuming the system is done in several phases.  Different phases
246 are used for standby or memory sleep states ("suspend-to-RAM") and the
247 hibernation state ("suspend-to-disk").  Each phase involves executing callbacks
248 for every device before the next phase begins.  Not all busses or classes
249 support all these callbacks and not all drivers use all the callbacks.  The
250 various phases always run after tasks have been frozen and before they are
251 unfrozen.  Furthermore, the *_noirq phases run at a time when IRQ handlers have
252 been disabled (except for those marked with the IRQ_WAKEUP flag).
253
254 All phases use bus, type, or class callbacks (that is, methods defined in
255 dev->bus->pm, dev->type->pm, or dev->class->pm).  These callbacks are mutually
256 exclusive, so if the device type provides a struct dev_pm_ops object pointed to
257 by its pm field (i.e. both dev->type and dev->type->pm are defined), the
258 callbacks included in that object (i.e. dev->type->pm) will be used.  Otherwise,
259 if the class provides a struct dev_pm_ops object pointed to by its pm field
260 (i.e. both dev->class and dev->class->pm are defined), the PM core will use the
261 callbacks from that object (i.e. dev->class->pm).  Finally, if the pm fields of
262 both the device type and class objects are NULL (or those objects do not exist),
263 the callbacks provided by the bus (that is, the callbacks from dev->bus->pm)
264 will be used (this allows device types to override callbacks provided by bus
265 types or classes if necessary).
266
267 These callbacks may in turn invoke device- or driver-specific methods stored in
268 dev->driver->pm, but they don't have to.
269
270
271 Entering System Suspend
272 -----------------------
273 When the system goes into the standby or memory sleep state, the phases are:
274
275                 prepare, suspend, suspend_noirq.
276
277     1.  The prepare phase is meant to prevent races by preventing new devices
278         from being registered; the PM core would never know that all the
279         children of a device had been suspended if new children could be
280         registered at will.  (By contrast, devices may be unregistered at any
281         time.)  Unlike the other suspend-related phases, during the prepare
282         phase the device tree is traversed top-down.
283
284         After the prepare callback method returns, no new children may be
285         registered below the device.  The method may also prepare the device or
286         driver in some way for the upcoming system power transition (for
287         example, by allocating additional memory required for this purpose), but
288         it should not put the device into a low-power state.
289
290     2.  The suspend methods should quiesce the device to stop it from performing
291         I/O.  They also may save the device registers and put it into the
292         appropriate low-power state, depending on the bus type the device is on,
293         and they may enable wakeup events.
294
295     3.  The suspend_noirq phase occurs after IRQ handlers have been disabled,
296         which means that the driver's interrupt handler will not be called while
297         the callback method is running.  The methods should save the values of
298         the device's registers that weren't saved previously and finally put the
299         device into the appropriate low-power state.
300
301         The majority of subsystems and device drivers need not implement this
302         callback.  However, bus types allowing devices to share interrupt
303         vectors, like PCI, generally need it; otherwise a driver might encounter
304         an error during the suspend phase by fielding a shared interrupt
305         generated by some other device after its own device had been set to low
306         power.
307
308 At the end of these phases, drivers should have stopped all I/O transactions
309 (DMA, IRQs), saved enough state that they can re-initialize or restore previous
310 state (as needed by the hardware), and placed the device into a low-power state.
311 On many platforms they will gate off one or more clock sources; sometimes they
312 will also switch off power supplies or reduce voltages.  (Drivers supporting
313 runtime PM may already have performed some or all of these steps.)
314
315 If device_may_wakeup(dev) returns true, the device should be prepared for
316 generating hardware wakeup signals to trigger a system wakeup event when the
317 system is in the sleep state.  For example, enable_irq_wake() might identify
318 GPIO signals hooked up to a switch or other external hardware, and
319 pci_enable_wake() does something similar for the PCI PME signal.
320
321 If any of these callbacks returns an error, the system won't enter the desired
322 low-power state.  Instead the PM core will unwind its actions by resuming all
323 the devices that were suspended.
324
325
326 Leaving System Suspend
327 ----------------------
328 When resuming from standby or memory sleep, the phases are:
329
330                 resume_noirq, resume, complete.
331
332     1.  The resume_noirq callback methods should perform any actions needed
333         before the driver's interrupt handlers are invoked.  This generally
334         means undoing the actions of the suspend_noirq phase.  If the bus type
335         permits devices to share interrupt vectors, like PCI, the method should
336         bring the device and its driver into a state in which the driver can
337         recognize if the device is the source of incoming interrupts, if any,
338         and handle them correctly.
339
340         For example, the PCI bus type's ->pm.resume_noirq() puts the device into
341         the full-power state (D0 in the PCI terminology) and restores the
342         standard configuration registers of the device.  Then it calls the
343         device driver's ->pm.resume_noirq() method to perform device-specific
344         actions.
345
346     2.  The resume methods should bring the the device back to its operating
347         state, so that it can perform normal I/O.  This generally involves
348         undoing the actions of the suspend phase.
349
350     3.  The complete phase uses only a bus callback.  The method should undo the
351         actions of the prepare phase.  Note, however, that new children may be
352         registered below the device as soon as the resume callbacks occur; it's
353         not necessary to wait until the complete phase.
354
355 At the end of these phases, drivers should be as functional as they were before
356 suspending: I/O can be performed using DMA and IRQs, and the relevant clocks are
357 gated on.  Even if the device was in a low-power state before the system sleep
358 because of runtime power management, afterwards it should be back in its
359 full-power state.  There are multiple reasons why it's best to do this; they are
360 discussed in more detail in Documentation/power/runtime_pm.txt.
361
362 However, the details here may again be platform-specific.  For example,
363 some systems support multiple "run" states, and the mode in effect at
364 the end of resume might not be the one which preceded suspension.
365 That means availability of certain clocks or power supplies changed,
366 which could easily affect how a driver works.
367
368 Drivers need to be able to handle hardware which has been reset since the
369 suspend methods were called, for example by complete reinitialization.
370 This may be the hardest part, and the one most protected by NDA'd documents
371 and chip errata.  It's simplest if the hardware state hasn't changed since
372 the suspend was carried out, but that can't be guaranteed (in fact, it usually
373 is not the case).
374
375 Drivers must also be prepared to notice that the device has been removed
376 while the system was powered down, whenever that's physically possible.
377 PCMCIA, MMC, USB, Firewire, SCSI, and even IDE are common examples of busses
378 where common Linux platforms will see such removal.  Details of how drivers
379 will notice and handle such removals are currently bus-specific, and often
380 involve a separate thread.
381
382 These callbacks may return an error value, but the PM core will ignore such
383 errors since there's nothing it can do about them other than printing them in
384 the system log.
385
386
387 Entering Hibernation
388 --------------------
389 Hibernating the system is more complicated than putting it into the standby or
390 memory sleep state, because it involves creating and saving a system image.
391 Therefore there are more phases for hibernation, with a different set of
392 callbacks.  These phases always run after tasks have been frozen and memory has
393 been freed.
394
395 The general procedure for hibernation is to quiesce all devices (freeze), create
396 an image of the system memory while everything is stable, reactivate all
397 devices (thaw), write the image to permanent storage, and finally shut down the
398 system (poweroff).  The phases used to accomplish this are:
399
400         prepare, freeze, freeze_noirq, thaw_noirq, thaw, complete,
401         prepare, poweroff, poweroff_noirq
402
403     1.  The prepare phase is discussed in the "Entering System Suspend" section
404         above.
405
406     2.  The freeze methods should quiesce the device so that it doesn't generate
407         IRQs or DMA, and they may need to save the values of device registers.
408         However the device does not have to be put in a low-power state, and to
409         save time it's best not to do so.  Also, the device should not be
410         prepared to generate wakeup events.
411
412     3.  The freeze_noirq phase is analogous to the suspend_noirq phase discussed
413         above, except again that the device should not be put in a low-power
414         state and should not be allowed to generate wakeup events.
415
416 At this point the system image is created.  All devices should be inactive and
417 the contents of memory should remain undisturbed while this happens, so that the
418 image forms an atomic snapshot of the system state.
419
420     4.  The thaw_noirq phase is analogous to the resume_noirq phase discussed
421         above.  The main difference is that its methods can assume the device is
422         in the same state as at the end of the freeze_noirq phase.
423
424     5.  The thaw phase is analogous to the resume phase discussed above.  Its
425         methods should bring the device back to an operating state, so that it
426         can be used for saving the image if necessary.
427
428     6.  The complete phase is discussed in the "Leaving System Suspend" section
429         above.
430
431 At this point the system image is saved, and the devices then need to be
432 prepared for the upcoming system shutdown.  This is much like suspending them
433 before putting the system into the standby or memory sleep state, and the phases
434 are similar.
435
436     7.  The prepare phase is discussed above.
437
438     8.  The poweroff phase is analogous to the suspend phase.
439
440     9.  The poweroff_noirq phase is analogous to the suspend_noirq phase.
441
442 The poweroff and poweroff_noirq callbacks should do essentially the same things
443 as the suspend and suspend_noirq callbacks.  The only notable difference is that
444 they need not store the device register values, because the registers should
445 already have been stored during the freeze or freeze_noirq phases.
446
447
448 Leaving Hibernation
449 -------------------
450 Resuming from hibernation is, again, more complicated than resuming from a sleep
451 state in which the contents of main memory are preserved, because it requires
452 a system image to be loaded into memory and the pre-hibernation memory contents
453 to be restored before control can be passed back to the image kernel.
454
455 Although in principle, the image might be loaded into memory and the
456 pre-hibernation memory contents restored by the boot loader, in practice this
457 can't be done because boot loaders aren't smart enough and there is no
458 established protocol for passing the necessary information.  So instead, the
459 boot loader loads a fresh instance of the kernel, called the boot kernel, into
460 memory and passes control to it in the usual way.  Then the boot kernel reads
461 the system image, restores the pre-hibernation memory contents, and passes
462 control to the image kernel.  Thus two different kernels are involved in
463 resuming from hibernation.  In fact, the boot kernel may be completely different
464 from the image kernel: a different configuration and even a different version.
465 This has important consequences for device drivers and their subsystems.
466
467 To be able to load the system image into memory, the boot kernel needs to
468 include at least a subset of device drivers allowing it to access the storage
469 medium containing the image, although it doesn't need to include all of the
470 drivers present in the image kernel.  After the image has been loaded, the
471 devices managed by the boot kernel need to be prepared for passing control back
472 to the image kernel.  This is very similar to the initial steps involved in
473 creating a system image, and it is accomplished in the same way, using prepare,
474 freeze, and freeze_noirq phases.  However the devices affected by these phases
475 are only those having drivers in the boot kernel; other devices will still be in
476 whatever state the boot loader left them.
477
478 Should the restoration of the pre-hibernation memory contents fail, the boot
479 kernel would go through the "thawing" procedure described above, using the
480 thaw_noirq, thaw, and complete phases, and then continue running normally.  This
481 happens only rarely.  Most often the pre-hibernation memory contents are
482 restored successfully and control is passed to the image kernel, which then
483 becomes responsible for bringing the system back to the working state.
484
485 To achieve this, the image kernel must restore the devices' pre-hibernation
486 functionality.  The operation is much like waking up from the memory sleep
487 state, although it involves different phases:
488
489         restore_noirq, restore, complete
490
491     1.  The restore_noirq phase is analogous to the resume_noirq phase.
492
493     2.  The restore phase is analogous to the resume phase.
494
495     3.  The complete phase is discussed above.
496
497 The main difference from resume[_noirq] is that restore[_noirq] must assume the
498 device has been accessed and reconfigured by the boot loader or the boot kernel.
499 Consequently the state of the device may be different from the state remembered
500 from the freeze and freeze_noirq phases.  The device may even need to be reset
501 and completely re-initialized.  In many cases this difference doesn't matter, so
502 the resume[_noirq] and restore[_norq] method pointers can be set to the same
503 routines.  Nevertheless, different callback pointers are used in case there is a
504 situation where it actually matters.
505
506
507 Device Power Management Domains
508 -------------------------------
509 Sometimes devices share reference clocks or other power resources.  In those
510 cases it generally is not possible to put devices into low-power states
511 individually.  Instead, a set of devices sharing a power resource can be put
512 into a low-power state together at the same time by turning off the shared
513 power resource.  Of course, they also need to be put into the full-power state
514 together, by turning the shared power resource on.  A set of devices with this
515 property is often referred to as a power domain.
516
517 Support for power domains is provided through the pm_domain field of struct
518 device.  This field is a pointer to an object of type struct dev_pm_domain,
519 defined in include/linux/pm.h, providing a set of power management callbacks
520 analogous to the subsystem-level and device driver callbacks that are executed
521 for the given device during all power transitions, instead of the respective
522 subsystem-level callbacks.  Specifically, if a device's pm_domain pointer is
523 not NULL, the ->suspend() callback from the object pointed to by it will be
524 executed instead of its subsystem's (e.g. bus type's) ->suspend() callback and
525 anlogously for all of the remaining callbacks.  In other words, power management
526 domain callbacks, if defined for the given device, always take precedence over
527 the callbacks provided by the device's subsystem (e.g. bus type).
528
529 The support for device power management domains is only relevant to platforms
530 needing to use the same device driver power management callbacks in many
531 different power domain configurations and wanting to avoid incorporating the
532 support for power domains into subsystem-level callbacks, for example by
533 modifying the platform bus type.  Other platforms need not implement it or take
534 it into account in any way.
535
536
537 Device Low Power (suspend) States
538 ---------------------------------
539 Device low-power states aren't standard.  One device might only handle
540 "on" and "off, while another might support a dozen different versions of
541 "on" (how many engines are active?), plus a state that gets back to "on"
542 faster than from a full "off".
543
544 Some busses define rules about what different suspend states mean.  PCI
545 gives one example:  after the suspend sequence completes, a non-legacy
546 PCI device may not perform DMA or issue IRQs, and any wakeup events it
547 issues would be issued through the PME# bus signal.  Plus, there are
548 several PCI-standard device states, some of which are optional.
549
550 In contrast, integrated system-on-chip processors often use IRQs as the
551 wakeup event sources (so drivers would call enable_irq_wake) and might
552 be able to treat DMA completion as a wakeup event (sometimes DMA can stay
553 active too, it'd only be the CPU and some peripherals that sleep).
554
555 Some details here may be platform-specific.  Systems may have devices that
556 can be fully active in certain sleep states, such as an LCD display that's
557 refreshed using DMA while most of the system is sleeping lightly ... and
558 its frame buffer might even be updated by a DSP or other non-Linux CPU while
559 the Linux control processor stays idle.
560
561 Moreover, the specific actions taken may depend on the target system state.
562 One target system state might allow a given device to be very operational;
563 another might require a hard shut down with re-initialization on resume.
564 And two different target systems might use the same device in different
565 ways; the aforementioned LCD might be active in one product's "standby",
566 but a different product using the same SOC might work differently.
567
568
569 Power Management Notifiers
570 --------------------------
571 There are some operations that cannot be carried out by the power management
572 callbacks discussed above, because the callbacks occur too late or too early.
573 To handle these cases, subsystems and device drivers may register power
574 management notifiers that are called before tasks are frozen and after they have
575 been thawed.  Generally speaking, the PM notifiers are suitable for performing
576 actions that either require user space to be available, or at least won't
577 interfere with user space.
578
579 For details refer to Documentation/power/notifiers.txt.
580
581
582 Runtime Power Management
583 ========================
584 Many devices are able to dynamically power down while the system is still
585 running. This feature is useful for devices that are not being used, and
586 can offer significant power savings on a running system.  These devices
587 often support a range of runtime power states, which might use names such
588 as "off", "sleep", "idle", "active", and so on.  Those states will in some
589 cases (like PCI) be partially constrained by the bus the device uses, and will
590 usually include hardware states that are also used in system sleep states.
591
592 A system-wide power transition can be started while some devices are in low
593 power states due to runtime power management.  The system sleep PM callbacks
594 should recognize such situations and react to them appropriately, but the
595 necessary actions are subsystem-specific.
596
597 In some cases the decision may be made at the subsystem level while in other
598 cases the device driver may be left to decide.  In some cases it may be
599 desirable to leave a suspended device in that state during a system-wide power
600 transition, but in other cases the device must be put back into the full-power
601 state temporarily, for example so that its system wakeup capability can be
602 disabled.  This all depends on the hardware and the design of the subsystem and
603 device driver in question.
604
605 During system-wide resume from a sleep state it's easiest to put devices into
606 the full-power state, as explained in Documentation/power/runtime_pm.txt.  Refer
607 to that document for more information regarding this particular issue as well as
608 for information on the device runtime power management framework in general.