xref: /openbmc/linux/Documentation/driver-api/pm/devices.rst (revision 762f99f4f3cb41a775b5157dd761217beba65873)
1fc7db767SRafael J. Wysocki.. SPDX-License-Identifier: GPL-2.0
2fc1860d6SRafael J. Wysocki.. include:: <isonum.txt>
3fc7db767SRafael J. Wysocki
4f77af637SFederico Vaga.. _driverapi_pm_devices:
5f77af637SFederico Vaga
62728b2d2SRafael J. Wysocki==============================
72728b2d2SRafael J. WysockiDevice Power Management Basics
82728b2d2SRafael J. Wysocki==============================
92728b2d2SRafael J. Wysocki
10fc1860d6SRafael J. Wysocki:Copyright: |copy| 2010-2011 Rafael J. Wysocki <rjw@sisk.pl>, Novell Inc.
11fc1860d6SRafael J. Wysocki:Copyright: |copy| 2010 Alan Stern <stern@rowland.harvard.edu>
12fc1860d6SRafael J. Wysocki:Copyright: |copy| 2016 Intel Corporation
132728b2d2SRafael J. Wysocki
14fc1860d6SRafael J. Wysocki:Author: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
15fc1860d6SRafael J. Wysocki
162728b2d2SRafael J. Wysocki
172728b2d2SRafael J. WysockiMost of the code in Linux is device drivers, so most of the Linux power
182728b2d2SRafael J. Wysockimanagement (PM) code is also driver-specific.  Most drivers will do very
192728b2d2SRafael J. Wysockilittle; others, especially for platforms with small batteries (like cell
202728b2d2SRafael J. Wysockiphones), will do a lot.
212728b2d2SRafael J. Wysocki
222728b2d2SRafael J. WysockiThis writeup gives an overview of how drivers interact with system-wide
232728b2d2SRafael J. Wysockipower management goals, emphasizing the models and interfaces that are
242728b2d2SRafael J. Wysockishared by everything that hooks up to the driver model core.  Read it as
252728b2d2SRafael J. Wysockibackground for the domain-specific work you'd do with any specific driver.
262728b2d2SRafael J. Wysocki
272728b2d2SRafael J. Wysocki
282728b2d2SRafael J. WysockiTwo Models for Device Power Management
292728b2d2SRafael J. Wysocki======================================
302728b2d2SRafael J. Wysocki
312728b2d2SRafael J. WysockiDrivers will use one or both of these models to put devices into low-power
322728b2d2SRafael J. Wysockistates:
332728b2d2SRafael J. Wysocki
342728b2d2SRafael J. Wysocki    System Sleep model:
352728b2d2SRafael J. Wysocki
362728b2d2SRafael J. Wysocki	Drivers can enter low-power states as part of entering system-wide
372728b2d2SRafael J. Wysocki	low-power states like "suspend" (also known as "suspend-to-RAM"), or
382728b2d2SRafael J. Wysocki	(mostly for systems with disks) "hibernation" (also known as
392728b2d2SRafael J. Wysocki	"suspend-to-disk").
402728b2d2SRafael J. Wysocki
412728b2d2SRafael J. Wysocki	This is something that device, bus, and class drivers collaborate on
422728b2d2SRafael J. Wysocki	by implementing various role-specific suspend and resume methods to
432728b2d2SRafael J. Wysocki	cleanly power down hardware and software subsystems, then reactivate
442728b2d2SRafael J. Wysocki	them without loss of data.
452728b2d2SRafael J. Wysocki
462728b2d2SRafael J. Wysocki	Some drivers can manage hardware wakeup events, which make the system
472728b2d2SRafael J. Wysocki	leave the low-power state.  This feature may be enabled or disabled
482728b2d2SRafael J. Wysocki	using the relevant :file:`/sys/devices/.../power/wakeup` file (for
492728b2d2SRafael J. Wysocki	Ethernet drivers the ioctl interface used by ethtool may also be used
502728b2d2SRafael J. Wysocki	for this purpose); enabling it may cost some power usage, but let the
512728b2d2SRafael J. Wysocki	whole system enter low-power states more often.
522728b2d2SRafael J. Wysocki
532728b2d2SRafael J. Wysocki    Runtime Power Management model:
542728b2d2SRafael J. Wysocki
552728b2d2SRafael J. Wysocki	Devices may also be put into low-power states while the system is
562728b2d2SRafael J. Wysocki	running, independently of other power management activity in principle.
572728b2d2SRafael J. Wysocki	However, devices are not generally independent of each other (for
582728b2d2SRafael J. Wysocki	example, a parent device cannot be suspended unless all of its child
592728b2d2SRafael J. Wysocki	devices have been suspended).  Moreover, depending on the bus type the
602728b2d2SRafael J. Wysocki	device is on, it may be necessary to carry out some bus-specific
612728b2d2SRafael J. Wysocki	operations on the device for this purpose.  Devices put into low power
622728b2d2SRafael J. Wysocki	states at run time may require special handling during system-wide power
632728b2d2SRafael J. Wysocki	transitions (suspend or hibernation).
642728b2d2SRafael J. Wysocki
652728b2d2SRafael J. Wysocki	For these reasons not only the device driver itself, but also the
662728b2d2SRafael J. Wysocki	appropriate subsystem (bus type, device type or device class) driver and
672728b2d2SRafael J. Wysocki	the PM core are involved in runtime power management.  As in the system
682728b2d2SRafael J. Wysocki	sleep power management case, they need to collaborate by implementing
692728b2d2SRafael J. Wysocki	various role-specific suspend and resume methods, so that the hardware
702728b2d2SRafael J. Wysocki	is cleanly powered down and reactivated without data or service loss.
712728b2d2SRafael J. Wysocki
722728b2d2SRafael J. WysockiThere's not a lot to be said about those low-power states except that they are
732728b2d2SRafael J. Wysockivery system-specific, and often device-specific.  Also, that if enough devices
742728b2d2SRafael J. Wysockihave been put into low-power states (at runtime), the effect may be very similar
752728b2d2SRafael J. Wysockito entering some system-wide low-power state (system sleep) ... and that
762728b2d2SRafael J. Wysockisynergies exist, so that several drivers using runtime PM might put the system
772728b2d2SRafael J. Wysockiinto a state where even deeper power saving options are available.
782728b2d2SRafael J. Wysocki
792728b2d2SRafael J. WysockiMost suspended devices will have quiesced all I/O: no more DMA or IRQs (except
802728b2d2SRafael J. Wysockifor wakeup events), no more data read or written, and requests from upstream
812728b2d2SRafael J. Wysockidrivers are no longer accepted.  A given bus or platform may have different
822728b2d2SRafael J. Wysockirequirements though.
832728b2d2SRafael J. Wysocki
842728b2d2SRafael J. WysockiExamples of hardware wakeup events include an alarm from a real time clock,
852728b2d2SRafael J. Wysockinetwork wake-on-LAN packets, keyboard or mouse activity, and media insertion
862728b2d2SRafael J. Wysockior removal (for PCMCIA, MMC/SD, USB, and so on).
872728b2d2SRafael J. Wysocki
882728b2d2SRafael J. WysockiInterfaces for Entering System Sleep States
892728b2d2SRafael J. Wysocki===========================================
902728b2d2SRafael J. Wysocki
912728b2d2SRafael J. WysockiThere are programming interfaces provided for subsystems (bus type, device type,
922728b2d2SRafael J. Wysockidevice class) and device drivers to allow them to participate in the power
932728b2d2SRafael J. Wysockimanagement of devices they are concerned with.  These interfaces cover both
942728b2d2SRafael J. Wysockisystem sleep and runtime power management.
952728b2d2SRafael J. Wysocki
962728b2d2SRafael J. Wysocki
972728b2d2SRafael J. WysockiDevice Power Management Operations
982728b2d2SRafael J. Wysocki----------------------------------
992728b2d2SRafael J. Wysocki
1002728b2d2SRafael J. WysockiDevice power management operations, at the subsystem level as well as at the
1012728b2d2SRafael J. Wysockidevice driver level, are implemented by defining and populating objects of type
1026624d64dSMauro Carvalho Chehabstruct dev_pm_ops defined in :file:`include/linux/pm.h`.  The roles of the
103e3941cd9SRafael J. Wysockimethods included in it will be explained in what follows.  For now, it should be
104e3941cd9SRafael J. Wysockisufficient to remember that the last three methods are specific to runtime power
105e3941cd9SRafael J. Wysockimanagement while the remaining ones are used during system-wide power
106e3941cd9SRafael J. Wysockitransitions.
1072728b2d2SRafael J. Wysocki
1082728b2d2SRafael J. WysockiThere also is a deprecated "old" or "legacy" interface for power management
1092728b2d2SRafael J. Wysockioperations available at least for some subsystems.  This approach does not use
1106624d64dSMauro Carvalho Chehabstruct dev_pm_ops objects and it is suitable only for implementing system
111e3941cd9SRafael J. Wysockisleep power management methods in a limited way.  Therefore it is not described
112e3941cd9SRafael J. Wysockiin this document, so please refer directly to the source code for more
1132728b2d2SRafael J. Wysockiinformation about it.
1142728b2d2SRafael J. Wysocki
1152728b2d2SRafael J. Wysocki
1162728b2d2SRafael J. WysockiSubsystem-Level Methods
1172728b2d2SRafael J. Wysocki-----------------------
1182728b2d2SRafael J. Wysocki
1192728b2d2SRafael J. WysockiThe core methods to suspend and resume devices reside in
1206624d64dSMauro Carvalho Chehabstruct dev_pm_ops pointed to by the :c:member:`ops` member of
1216624d64dSMauro Carvalho Chehabstruct dev_pm_domain, or by the :c:member:`pm` member of struct bus_type,
1226624d64dSMauro Carvalho Chehabstruct device_type and struct class.  They are mostly of interest to the
123e3941cd9SRafael J. Wysockipeople writing infrastructure for platforms and buses, like PCI or USB, or
124e3941cd9SRafael J. Wysockidevice type and device class drivers.  They also are relevant to the writers of
125e3941cd9SRafael J. Wysockidevice drivers whose subsystems (PM domains, device types, device classes and
126e3941cd9SRafael J. Wysockibus types) don't provide all power management methods.
1272728b2d2SRafael J. Wysocki
1282728b2d2SRafael J. WysockiBus drivers implement these methods as appropriate for the hardware and the
1292728b2d2SRafael J. Wysockidrivers using it; PCI works differently from USB, and so on.  Not many people
1302728b2d2SRafael J. Wysockiwrite subsystem-level drivers; most driver code is a "device driver" that builds
1312728b2d2SRafael J. Wysockion top of bus-specific framework code.
1322728b2d2SRafael J. Wysocki
1332728b2d2SRafael J. WysockiFor more information on these driver calls, see the description later;
1342728b2d2SRafael J. Wysockithey are called in phases for every device, respecting the parent-child
1352728b2d2SRafael J. Wysockisequencing in the driver model tree.
1362728b2d2SRafael J. Wysocki
1372728b2d2SRafael J. Wysocki
1382728b2d2SRafael J. Wysocki:file:`/sys/devices/.../power/wakeup` files
1392728b2d2SRafael J. Wysocki-------------------------------------------
1402728b2d2SRafael J. Wysocki
1412728b2d2SRafael J. WysockiAll device objects in the driver model contain fields that control the handling
1422728b2d2SRafael J. Wysockiof system wakeup events (hardware signals that can force the system out of a
1432728b2d2SRafael J. Wysockisleep state).  These fields are initialized by bus or device driver code using
1442728b2d2SRafael J. Wysocki:c:func:`device_set_wakeup_capable()` and :c:func:`device_set_wakeup_enable()`,
1452728b2d2SRafael J. Wysockidefined in :file:`include/linux/pm_wakeup.h`.
1462728b2d2SRafael J. Wysocki
1472728b2d2SRafael J. WysockiThe :c:member:`power.can_wakeup` flag just records whether the device (and its
1482728b2d2SRafael J. Wysockidriver) can physically support wakeup events.  The
1492728b2d2SRafael J. Wysocki:c:func:`device_set_wakeup_capable()` routine affects this flag.  The
1502728b2d2SRafael J. Wysocki:c:member:`power.wakeup` field is a pointer to an object of type
1516624d64dSMauro Carvalho Chehabstruct wakeup_source used for controlling whether or not the device should use
152e3941cd9SRafael J. Wysockiits system wakeup mechanism and for notifying the PM core of system wakeup
153e3941cd9SRafael J. Wysockievents signaled by the device.  This object is only present for wakeup-capable
154e3941cd9SRafael J. Wysockidevices (i.e. devices whose :c:member:`can_wakeup` flags are set) and is created
155e3941cd9SRafael J. Wysocki(or removed) by :c:func:`device_set_wakeup_capable()`.
1562728b2d2SRafael J. Wysocki
1572728b2d2SRafael J. WysockiWhether or not a device is capable of issuing wakeup events is a hardware
1582728b2d2SRafael J. Wysockimatter, and the kernel is responsible for keeping track of it.  By contrast,
1592728b2d2SRafael J. Wysockiwhether or not a wakeup-capable device should issue wakeup events is a policy
1602728b2d2SRafael J. Wysockidecision, and it is managed by user space through a sysfs attribute: the
1612728b2d2SRafael J. Wysocki:file:`power/wakeup` file.  User space can write the "enabled" or "disabled"
1622728b2d2SRafael J. Wysockistrings to it to indicate whether or not, respectively, the device is supposed
1632728b2d2SRafael J. Wysockito signal system wakeup.  This file is only present if the
1642728b2d2SRafael J. Wysocki:c:member:`power.wakeup` object exists for the given device and is created (or
1652728b2d2SRafael J. Wysockiremoved) along with that object, by :c:func:`device_set_wakeup_capable()`.
1662728b2d2SRafael J. WysockiReads from the file will return the corresponding string.
1672728b2d2SRafael J. Wysocki
1682728b2d2SRafael J. WysockiThe initial value in the :file:`power/wakeup` file is "disabled" for the
1692728b2d2SRafael J. Wysockimajority of devices; the major exceptions are power buttons, keyboards, and
1702728b2d2SRafael J. WysockiEthernet adapters whose WoL (wake-on-LAN) feature has been set up with ethtool.
1712728b2d2SRafael J. WysockiIt should also default to "enabled" for devices that don't generate wakeup
1722728b2d2SRafael J. Wysockirequests on their own but merely forward wakeup requests from one bus to another
1732728b2d2SRafael J. Wysocki(like PCI Express ports).
1742728b2d2SRafael J. Wysocki
1752728b2d2SRafael J. WysockiThe :c:func:`device_may_wakeup()` routine returns true only if the
1762728b2d2SRafael J. Wysocki:c:member:`power.wakeup` object exists and the corresponding :file:`power/wakeup`
1772728b2d2SRafael J. Wysockifile contains the "enabled" string.  This information is used by subsystems,
1782728b2d2SRafael J. Wysockilike the PCI bus type code, to see whether or not to enable the devices' wakeup
1792728b2d2SRafael J. Wysockimechanisms.  If device wakeup mechanisms are enabled or disabled directly by
1802728b2d2SRafael J. Wysockidrivers, they also should use :c:func:`device_may_wakeup()` to decide what to do
1812728b2d2SRafael J. Wysockiduring a system sleep transition.  Device drivers, however, are not expected to
1822728b2d2SRafael J. Wysockicall :c:func:`device_set_wakeup_enable()` directly in any case.
1832728b2d2SRafael J. Wysocki
1842728b2d2SRafael J. WysockiIt ought to be noted that system wakeup is conceptually different from "remote
1852728b2d2SRafael J. Wysockiwakeup" used by runtime power management, although it may be supported by the
1862728b2d2SRafael J. Wysockisame physical mechanism.  Remote wakeup is a feature allowing devices in
1872728b2d2SRafael J. Wysockilow-power states to trigger specific interrupts to signal conditions in which
1882728b2d2SRafael J. Wysockithey should be put into the full-power state.  Those interrupts may or may not
1892728b2d2SRafael J. Wysockibe used to signal system wakeup events, depending on the hardware design.  On
1902728b2d2SRafael J. Wysockisome systems it is impossible to trigger them from system sleep states.  In any
1912728b2d2SRafael J. Wysockicase, remote wakeup should always be enabled for runtime power management for
1922728b2d2SRafael J. Wysockiall devices and drivers that support it.
1932728b2d2SRafael J. Wysocki
1942728b2d2SRafael J. Wysocki
1952728b2d2SRafael J. Wysocki:file:`/sys/devices/.../power/control` files
1962728b2d2SRafael J. Wysocki--------------------------------------------
1972728b2d2SRafael J. Wysocki
1982728b2d2SRafael J. WysockiEach device in the driver model has a flag to control whether it is subject to
1992728b2d2SRafael J. Wysockiruntime power management.  This flag, :c:member:`runtime_auto`, is initialized
2002728b2d2SRafael J. Wysockiby the bus type (or generally subsystem) code using :c:func:`pm_runtime_allow()`
2012728b2d2SRafael J. Wysockior :c:func:`pm_runtime_forbid()`; the default is to allow runtime power
2022728b2d2SRafael J. Wysockimanagement.
2032728b2d2SRafael J. Wysocki
2042728b2d2SRafael J. WysockiThe setting can be adjusted by user space by writing either "on" or "auto" to
2052728b2d2SRafael J. Wysockithe device's :file:`power/control` sysfs file.  Writing "auto" calls
2062728b2d2SRafael J. Wysocki:c:func:`pm_runtime_allow()`, setting the flag and allowing the device to be
2072728b2d2SRafael J. Wysockiruntime power-managed by its driver.  Writing "on" calls
2082728b2d2SRafael J. Wysocki:c:func:`pm_runtime_forbid()`, clearing the flag, returning the device to full
2092728b2d2SRafael J. Wysockipower if it was in a low-power state, and preventing the
2102728b2d2SRafael J. Wysockidevice from being runtime power-managed.  User space can check the current value
2112728b2d2SRafael J. Wysockiof the :c:member:`runtime_auto` flag by reading that file.
2122728b2d2SRafael J. Wysocki
2132728b2d2SRafael J. WysockiThe device's :c:member:`runtime_auto` flag has no effect on the handling of
2142728b2d2SRafael J. Wysockisystem-wide power transitions.  In particular, the device can (and in the
2152728b2d2SRafael J. Wysockimajority of cases should and will) be put into a low-power state during a
2162728b2d2SRafael J. Wysockisystem-wide transition to a sleep state even though its :c:member:`runtime_auto`
2172728b2d2SRafael J. Wysockiflag is clear.
2182728b2d2SRafael J. Wysocki
2192728b2d2SRafael J. WysockiFor more information about the runtime power management framework, refer to
220*559a66b8SMauro Carvalho ChehabDocumentation/power/runtime_pm.rst.
2212728b2d2SRafael J. Wysocki
2222728b2d2SRafael J. Wysocki
2232728b2d2SRafael J. WysockiCalling Drivers to Enter and Leave System Sleep States
2242728b2d2SRafael J. Wysocki======================================================
2252728b2d2SRafael J. Wysocki
2262728b2d2SRafael J. WysockiWhen the system goes into a sleep state, each device's driver is asked to
2272728b2d2SRafael J. Wysockisuspend the device by putting it into a state compatible with the target
2282728b2d2SRafael J. Wysockisystem state.  That's usually some version of "off", but the details are
2292728b2d2SRafael J. Wysockisystem-specific.  Also, wakeup-enabled devices will usually stay partly
2302728b2d2SRafael J. Wysockifunctional in order to wake the system.
2312728b2d2SRafael J. Wysocki
2322728b2d2SRafael J. WysockiWhen the system leaves that low-power state, the device's driver is asked to
2332728b2d2SRafael J. Wysockiresume it by returning it to full power.  The suspend and resume operations
2342728b2d2SRafael J. Wysockialways go together, and both are multi-phase operations.
2352728b2d2SRafael J. Wysocki
2362728b2d2SRafael J. WysockiFor simple drivers, suspend might quiesce the device using class code
2372728b2d2SRafael J. Wysockiand then turn its hardware as "off" as possible during suspend_noirq.  The
2382728b2d2SRafael J. Wysockimatching resume calls would then completely reinitialize the hardware
2392728b2d2SRafael J. Wysockibefore reactivating its class I/O queues.
2402728b2d2SRafael J. Wysocki
2412728b2d2SRafael J. WysockiMore power-aware drivers might prepare the devices for triggering system wakeup
2422728b2d2SRafael J. Wysockievents.
2432728b2d2SRafael J. Wysocki
2442728b2d2SRafael J. Wysocki
2452728b2d2SRafael J. WysockiCall Sequence Guarantees
2462728b2d2SRafael J. Wysocki------------------------
2472728b2d2SRafael J. Wysocki
2482728b2d2SRafael J. WysockiTo ensure that bridges and similar links needing to talk to a device are
2492728b2d2SRafael J. Wysockiavailable when the device is suspended or resumed, the device hierarchy is
2502728b2d2SRafael J. Wysockiwalked in a bottom-up order to suspend devices.  A top-down order is
2512728b2d2SRafael J. Wysockiused to resume those devices.
2522728b2d2SRafael J. Wysocki
2532728b2d2SRafael J. WysockiThe ordering of the device hierarchy is defined by the order in which devices
2542728b2d2SRafael J. Wysockiget registered:  a child can never be registered, probed or resumed before
2552728b2d2SRafael J. Wysockiits parent; and can't be removed or suspended after that parent.
2562728b2d2SRafael J. Wysocki
2572728b2d2SRafael J. WysockiThe policy is that the device hierarchy should match hardware bus topology.
2582728b2d2SRafael J. Wysocki[Or at least the control bus, for devices which use multiple busses.]
2592728b2d2SRafael J. WysockiIn particular, this means that a device registration may fail if the parent of
2602728b2d2SRafael J. Wysockithe device is suspending (i.e. has been chosen by the PM core as the next
2612728b2d2SRafael J. Wysockidevice to suspend) or has already suspended, as well as after all of the other
2622728b2d2SRafael J. Wysockidevices have been suspended.  Device drivers must be prepared to cope with such
2632728b2d2SRafael J. Wysockisituations.
2642728b2d2SRafael J. Wysocki
2652728b2d2SRafael J. Wysocki
2662728b2d2SRafael J. WysockiSystem Power Management Phases
2672728b2d2SRafael J. Wysocki------------------------------
2682728b2d2SRafael J. Wysocki
2692728b2d2SRafael J. WysockiSuspending or resuming the system is done in several phases.  Different phases
2702728b2d2SRafael J. Wysockiare used for suspend-to-idle, shallow (standby), and deep ("suspend-to-RAM")
2712728b2d2SRafael J. Wysockisleep states and the hibernation state ("suspend-to-disk").  Each phase involves
2722728b2d2SRafael J. Wysockiexecuting callbacks for every device before the next phase begins.  Not all
2732728b2d2SRafael J. Wysockibuses or classes support all these callbacks and not all drivers use all the
2742728b2d2SRafael J. Wysockicallbacks.  The various phases always run after tasks have been frozen and
2757e95d913SRafael J. Wysockibefore they are unfrozen.  Furthermore, the ``*_noirq`` phases run at a time
2762728b2d2SRafael J. Wysockiwhen IRQ handlers have been disabled (except for those marked with the
2772728b2d2SRafael J. WysockiIRQF_NO_SUSPEND flag).
2782728b2d2SRafael J. Wysocki
2792728b2d2SRafael J. WysockiAll phases use PM domain, bus, type, class or driver callbacks (that is, methods
2802728b2d2SRafael J. Wysockidefined in ``dev->pm_domain->ops``, ``dev->bus->pm``, ``dev->type->pm``,
2812728b2d2SRafael J. Wysocki``dev->class->pm`` or ``dev->driver->pm``).  These callbacks are regarded by the
2822728b2d2SRafael J. WysockiPM core as mutually exclusive.  Moreover, PM domain callbacks always take
2832728b2d2SRafael J. Wysockiprecedence over all of the other callbacks and, for example, type callbacks take
2842728b2d2SRafael J. Wysockiprecedence over bus, class and driver callbacks.  To be precise, the following
2852728b2d2SRafael J. Wysockirules are used to determine which callback to execute in the given phase:
2862728b2d2SRafael J. Wysocki
2872728b2d2SRafael J. Wysocki    1.	If ``dev->pm_domain`` is present, the PM core will choose the callback
2882728b2d2SRafael J. Wysocki	provided by ``dev->pm_domain->ops`` for execution.
2892728b2d2SRafael J. Wysocki
2902728b2d2SRafael J. Wysocki    2.	Otherwise, if both ``dev->type`` and ``dev->type->pm`` are present, the
2912728b2d2SRafael J. Wysocki	callback provided by ``dev->type->pm`` will be chosen for execution.
2922728b2d2SRafael J. Wysocki
2932728b2d2SRafael J. Wysocki    3.	Otherwise, if both ``dev->class`` and ``dev->class->pm`` are present,
2942728b2d2SRafael J. Wysocki	the callback provided by ``dev->class->pm`` will be chosen for
2952728b2d2SRafael J. Wysocki	execution.
2962728b2d2SRafael J. Wysocki
2972728b2d2SRafael J. Wysocki    4.	Otherwise, if both ``dev->bus`` and ``dev->bus->pm`` are present, the
2982728b2d2SRafael J. Wysocki	callback provided by ``dev->bus->pm`` will be chosen for execution.
2992728b2d2SRafael J. Wysocki
3002728b2d2SRafael J. WysockiThis allows PM domains and device types to override callbacks provided by bus
3012728b2d2SRafael J. Wysockitypes or device classes if necessary.
3022728b2d2SRafael J. Wysocki
3032728b2d2SRafael J. WysockiThe PM domain, type, class and bus callbacks may in turn invoke device- or
3042728b2d2SRafael J. Wysockidriver-specific methods stored in ``dev->driver->pm``, but they don't have to do
3052728b2d2SRafael J. Wysockithat.
3062728b2d2SRafael J. Wysocki
3072728b2d2SRafael J. WysockiIf the subsystem callback chosen for execution is not present, the PM core will
3082728b2d2SRafael J. Wysockiexecute the corresponding method from the ``dev->driver->pm`` set instead if
3092728b2d2SRafael J. Wysockithere is one.
3102728b2d2SRafael J. Wysocki
3112728b2d2SRafael J. Wysocki
3122728b2d2SRafael J. WysockiEntering System Suspend
3132728b2d2SRafael J. Wysocki-----------------------
3142728b2d2SRafael J. Wysocki
3152728b2d2SRafael J. WysockiWhen the system goes into the freeze, standby or memory sleep state,
3162728b2d2SRafael J. Wysockithe phases are: ``prepare``, ``suspend``, ``suspend_late``, ``suspend_noirq``.
3172728b2d2SRafael J. Wysocki
3182728b2d2SRafael J. Wysocki    1.	The ``prepare`` phase is meant to prevent races by preventing new
3192728b2d2SRafael J. Wysocki	devices from being registered; the PM core would never know that all the
3202728b2d2SRafael J. Wysocki	children of a device had been suspended if new children could be
3212728b2d2SRafael J. Wysocki	registered at will.  [By contrast, from the PM core's perspective,
3222728b2d2SRafael J. Wysocki	devices may be unregistered at any time.]  Unlike the other
3232728b2d2SRafael J. Wysocki	suspend-related phases, during the ``prepare`` phase the device
3242728b2d2SRafael J. Wysocki	hierarchy is traversed top-down.
3252728b2d2SRafael J. Wysocki
3262728b2d2SRafael J. Wysocki	After the ``->prepare`` callback method returns, no new children may be
3272728b2d2SRafael J. Wysocki	registered below the device.  The method may also prepare the device or
3282728b2d2SRafael J. Wysocki	driver in some way for the upcoming system power transition, but it
329104dc5e2SRafael J. Wysocki	should not put the device into a low-power state.  Moreover, if the
330104dc5e2SRafael J. Wysocki	device supports runtime power management, the ``->prepare`` callback
331104dc5e2SRafael J. Wysocki	method must not update its state in case it is necessary to resume it
332104dc5e2SRafael J. Wysocki	from runtime suspend later on.
3332728b2d2SRafael J. Wysocki
3342728b2d2SRafael J. Wysocki	For devices supporting runtime power management, the return value of the
3352728b2d2SRafael J. Wysocki	prepare callback can be used to indicate to the PM core that it may
3362728b2d2SRafael J. Wysocki	safely leave the device in runtime suspend (if runtime-suspended
3372728b2d2SRafael J. Wysocki	already), provided that all of the device's descendants are also left in
3382728b2d2SRafael J. Wysocki	runtime suspend.  Namely, if the prepare callback returns a positive
3392728b2d2SRafael J. Wysocki	number and that happens for all of the descendants of the device too,
3402728b2d2SRafael J. Wysocki	and all of them (including the device itself) are runtime-suspended, the
3412728b2d2SRafael J. Wysocki	PM core will skip the ``suspend``, ``suspend_late`` and
3422728b2d2SRafael J. Wysocki	``suspend_noirq`` phases as well as all of the corresponding phases of
3432728b2d2SRafael J. Wysocki	the subsequent device resume for all of these devices.	In that case,
344598cc930SAlan Stern	the ``->complete`` callback will be the next one invoked after the
3452728b2d2SRafael J. Wysocki	``->prepare`` callback and is entirely responsible for putting the
3462728b2d2SRafael J. Wysocki	device into a consistent state as appropriate.
3472728b2d2SRafael J. Wysocki
3482728b2d2SRafael J. Wysocki	Note that this direct-complete procedure applies even if the device is
3492728b2d2SRafael J. Wysocki	disabled for runtime PM; only the runtime-PM status matters.  It follows
3502728b2d2SRafael J. Wysocki	that if a device has system-sleep callbacks but does not support runtime
3512728b2d2SRafael J. Wysocki	PM, then its prepare callback must never return a positive value.  This
3522728b2d2SRafael J. Wysocki	is because all such devices are initially set to runtime-suspended with
3532728b2d2SRafael J. Wysocki	runtime PM disabled.
3542728b2d2SRafael J. Wysocki
35508810a41SRafael J. Wysocki	This feature also can be controlled by device drivers by using the
356e0751556SRafael J. Wysocki	``DPM_FLAG_NO_DIRECT_COMPLETE`` and ``DPM_FLAG_SMART_PREPARE`` driver
357e0751556SRafael J. Wysocki	power management flags.  [Typically, they are set at the time the driver
358e0751556SRafael J. Wysocki	is probed against the device in question by passing them to the
35908810a41SRafael J. Wysocki	:c:func:`dev_pm_set_driver_flags` helper function.]  If the first of
36008810a41SRafael J. Wysocki	these flags is set, the PM core will not apply the direct-complete
36108810a41SRafael J. Wysocki	procedure described above to the given device and, consequenty, to any
36208810a41SRafael J. Wysocki	of its ancestors.  The second flag, when set, informs the middle layer
36308810a41SRafael J. Wysocki	code (bus types, device types, PM domains, classes) that it should take
36408810a41SRafael J. Wysocki	the return value of the ``->prepare`` callback provided by the driver
36508810a41SRafael J. Wysocki	into account and it may only return a positive value from its own
36608810a41SRafael J. Wysocki	``->prepare`` callback if the driver's one also has returned a positive
36708810a41SRafael J. Wysocki	value.
36808810a41SRafael J. Wysocki
3692728b2d2SRafael J. Wysocki    2.	The ``->suspend`` methods should quiesce the device to stop it from
3702728b2d2SRafael J. Wysocki	performing I/O.  They also may save the device registers and put it into
3712728b2d2SRafael J. Wysocki	the appropriate low-power state, depending on the bus type the device is
3722728b2d2SRafael J. Wysocki	on, and they may enable wakeup events.
3732728b2d2SRafael J. Wysocki
374104dc5e2SRafael J. Wysocki	However, for devices supporting runtime power management, the
375104dc5e2SRafael J. Wysocki	``->suspend`` methods provided by subsystems (bus types and PM domains
376104dc5e2SRafael J. Wysocki	in particular) must follow an additional rule regarding what can be done
377104dc5e2SRafael J. Wysocki	to the devices before their drivers' ``->suspend`` methods are called.
378598cc930SAlan Stern	Namely, they may resume the devices from runtime suspend by
379598cc930SAlan Stern	calling :c:func:`pm_runtime_resume` for them, if that is necessary, but
380104dc5e2SRafael J. Wysocki	they must not update the state of the devices in any other way at that
381104dc5e2SRafael J. Wysocki	time (in case the drivers need to resume the devices from runtime
382598cc930SAlan Stern	suspend in their ``->suspend`` methods).  In fact, the PM core prevents
383598cc930SAlan Stern	subsystems or drivers from putting devices into runtime suspend at
384598cc930SAlan Stern	these times by calling :c:func:`pm_runtime_get_noresume` before issuing
385598cc930SAlan Stern	the ``->prepare`` callback (and calling :c:func:`pm_runtime_put` after
386598cc930SAlan Stern	issuing the ``->complete`` callback).
387104dc5e2SRafael J. Wysocki
3882728b2d2SRafael J. Wysocki    3.	For a number of devices it is convenient to split suspend into the
3892728b2d2SRafael J. Wysocki	"quiesce device" and "save device state" phases, in which cases
3902728b2d2SRafael J. Wysocki	``suspend_late`` is meant to do the latter.  It is always executed after
3912728b2d2SRafael J. Wysocki	runtime power management has been disabled for the device in question.
3922728b2d2SRafael J. Wysocki
3932728b2d2SRafael J. Wysocki    4.	The ``suspend_noirq`` phase occurs after IRQ handlers have been disabled,
3942728b2d2SRafael J. Wysocki	which means that the driver's interrupt handler will not be called while
3952728b2d2SRafael J. Wysocki	the callback method is running.  The ``->suspend_noirq`` methods should
3962728b2d2SRafael J. Wysocki	save the values of the device's registers that weren't saved previously
3972728b2d2SRafael J. Wysocki	and finally put the device into the appropriate low-power state.
3982728b2d2SRafael J. Wysocki
3992728b2d2SRafael J. Wysocki	The majority of subsystems and device drivers need not implement this
4002728b2d2SRafael J. Wysocki	callback.  However, bus types allowing devices to share interrupt
4012728b2d2SRafael J. Wysocki	vectors, like PCI, generally need it; otherwise a driver might encounter
4022728b2d2SRafael J. Wysocki	an error during the suspend phase by fielding a shared interrupt
4032728b2d2SRafael J. Wysocki	generated by some other device after its own device had been set to low
4042728b2d2SRafael J. Wysocki	power.
4052728b2d2SRafael J. Wysocki
4062728b2d2SRafael J. WysockiAt the end of these phases, drivers should have stopped all I/O transactions
4072728b2d2SRafael J. Wysocki(DMA, IRQs), saved enough state that they can re-initialize or restore previous
4082728b2d2SRafael J. Wysockistate (as needed by the hardware), and placed the device into a low-power state.
4092728b2d2SRafael J. WysockiOn many platforms they will gate off one or more clock sources; sometimes they
4102728b2d2SRafael J. Wysockiwill also switch off power supplies or reduce voltages.  [Drivers supporting
4112728b2d2SRafael J. Wysockiruntime PM may already have performed some or all of these steps.]
4122728b2d2SRafael J. Wysocki
4132f27ed75SMauro Carvalho ChehabIf :c:func:`device_may_wakeup()` returns ``true``, the device should be
4142728b2d2SRafael J. Wysockiprepared for generating hardware wakeup signals to trigger a system wakeup event
4152728b2d2SRafael J. Wysockiwhen the system is in the sleep state.  For example, :c:func:`enable_irq_wake()`
4162728b2d2SRafael J. Wysockimight identify GPIO signals hooked up to a switch or other external hardware,
4172728b2d2SRafael J. Wysockiand :c:func:`pci_enable_wake()` does something similar for the PCI PME signal.
4182728b2d2SRafael J. Wysocki
4192728b2d2SRafael J. WysockiIf any of these callbacks returns an error, the system won't enter the desired
4202728b2d2SRafael J. Wysockilow-power state.  Instead, the PM core will unwind its actions by resuming all
4212728b2d2SRafael J. Wysockithe devices that were suspended.
4222728b2d2SRafael J. Wysocki
4232728b2d2SRafael J. Wysocki
4242728b2d2SRafael J. WysockiLeaving System Suspend
4252728b2d2SRafael J. Wysocki----------------------
4262728b2d2SRafael J. Wysocki
4272728b2d2SRafael J. WysockiWhen resuming from freeze, standby or memory sleep, the phases are:
4282728b2d2SRafael J. Wysocki``resume_noirq``, ``resume_early``, ``resume``, ``complete``.
4292728b2d2SRafael J. Wysocki
4302728b2d2SRafael J. Wysocki    1.	The ``->resume_noirq`` callback methods should perform any actions
4312728b2d2SRafael J. Wysocki	needed before the driver's interrupt handlers are invoked.  This
4322728b2d2SRafael J. Wysocki	generally means undoing the actions of the ``suspend_noirq`` phase.  If
4332728b2d2SRafael J. Wysocki	the bus type permits devices to share interrupt vectors, like PCI, the
4342728b2d2SRafael J. Wysocki	method should bring the device and its driver into a state in which the
4352728b2d2SRafael J. Wysocki	driver can recognize if the device is the source of incoming interrupts,
4362728b2d2SRafael J. Wysocki	if any, and handle them correctly.
4372728b2d2SRafael J. Wysocki
4382728b2d2SRafael J. Wysocki	For example, the PCI bus type's ``->pm.resume_noirq()`` puts the device
4392728b2d2SRafael J. Wysocki	into the full-power state (D0 in the PCI terminology) and restores the
4402728b2d2SRafael J. Wysocki	standard configuration registers of the device.  Then it calls the
4412728b2d2SRafael J. Wysocki	device driver's ``->pm.resume_noirq()`` method to perform device-specific
4422728b2d2SRafael J. Wysocki	actions.
4432728b2d2SRafael J. Wysocki
4442728b2d2SRafael J. Wysocki    2.	The ``->resume_early`` methods should prepare devices for the execution
4452728b2d2SRafael J. Wysocki	of the resume methods.  This generally involves undoing the actions of
4462728b2d2SRafael J. Wysocki	the preceding ``suspend_late`` phase.
4472728b2d2SRafael J. Wysocki
4482728b2d2SRafael J. Wysocki    3.	The ``->resume`` methods should bring the device back to its operating
4492728b2d2SRafael J. Wysocki	state, so that it can perform normal I/O.  This generally involves
4502728b2d2SRafael J. Wysocki	undoing the actions of the ``suspend`` phase.
4512728b2d2SRafael J. Wysocki
4522728b2d2SRafael J. Wysocki    4.	The ``complete`` phase should undo the actions of the ``prepare`` phase.
4532728b2d2SRafael J. Wysocki        For this reason, unlike the other resume-related phases, during the
4542728b2d2SRafael J. Wysocki        ``complete`` phase the device hierarchy is traversed bottom-up.
4552728b2d2SRafael J. Wysocki
4562728b2d2SRafael J. Wysocki	Note, however, that new children may be registered below the device as
4572728b2d2SRafael J. Wysocki	soon as the ``->resume`` callbacks occur; it's not necessary to wait
458598cc930SAlan Stern	until the ``complete`` phase runs.
4592728b2d2SRafael J. Wysocki
4602728b2d2SRafael J. Wysocki	Moreover, if the preceding ``->prepare`` callback returned a positive
4612728b2d2SRafael J. Wysocki	number, the device may have been left in runtime suspend throughout the
462598cc930SAlan Stern	whole system suspend and resume (its ``->suspend``, ``->suspend_late``,
463598cc930SAlan Stern	``->suspend_noirq``, ``->resume_noirq``,
464598cc930SAlan Stern	``->resume_early``, and ``->resume`` callbacks may have been
465598cc930SAlan Stern	skipped).  In that case, the ``->complete`` callback is entirely
4662728b2d2SRafael J. Wysocki	responsible for putting the device into a consistent state after system
4672728b2d2SRafael J. Wysocki	suspend if necessary.  [For example, it may need to queue up a runtime
4682728b2d2SRafael J. Wysocki	resume request for the device for this purpose.]  To check if that is
4692728b2d2SRafael J. Wysocki	the case, the ``->complete`` callback can consult the device's
470598cc930SAlan Stern	``power.direct_complete`` flag.  If that flag is set when the
471598cc930SAlan Stern	``->complete`` callback is being run then the direct-complete mechanism
472598cc930SAlan Stern	was used, and special actions may be required to make the device work
473598cc930SAlan Stern	correctly afterward.
4742728b2d2SRafael J. Wysocki
4752728b2d2SRafael J. WysockiAt the end of these phases, drivers should be as functional as they were before
4762728b2d2SRafael J. Wysockisuspending: I/O can be performed using DMA and IRQs, and the relevant clocks are
4772728b2d2SRafael J. Wysockigated on.
4782728b2d2SRafael J. Wysocki
4792728b2d2SRafael J. WysockiHowever, the details here may again be platform-specific.  For example,
4802728b2d2SRafael J. Wysockisome systems support multiple "run" states, and the mode in effect at
4812728b2d2SRafael J. Wysockithe end of resume might not be the one which preceded suspension.
4822728b2d2SRafael J. WysockiThat means availability of certain clocks or power supplies changed,
4832728b2d2SRafael J. Wysockiwhich could easily affect how a driver works.
4842728b2d2SRafael J. Wysocki
4852728b2d2SRafael J. WysockiDrivers need to be able to handle hardware which has been reset since all of the
4862728b2d2SRafael J. Wysockisuspend methods were called, for example by complete reinitialization.
4872728b2d2SRafael J. WysockiThis may be the hardest part, and the one most protected by NDA'd documents
4882728b2d2SRafael J. Wysockiand chip errata.  It's simplest if the hardware state hasn't changed since
4892728b2d2SRafael J. Wysockithe suspend was carried out, but that can only be guaranteed if the target
4902728b2d2SRafael J. Wysockisystem sleep entered was suspend-to-idle.  For the other system sleep states
4912728b2d2SRafael J. Wysockithat may not be the case (and usually isn't for ACPI-defined system sleep
4922728b2d2SRafael J. Wysockistates, like S3).
4932728b2d2SRafael J. Wysocki
4942728b2d2SRafael J. WysockiDrivers must also be prepared to notice that the device has been removed
4952728b2d2SRafael J. Wysockiwhile the system was powered down, whenever that's physically possible.
4962728b2d2SRafael J. WysockiPCMCIA, MMC, USB, Firewire, SCSI, and even IDE are common examples of busses
4972728b2d2SRafael J. Wysockiwhere common Linux platforms will see such removal.  Details of how drivers
4982728b2d2SRafael J. Wysockiwill notice and handle such removals are currently bus-specific, and often
4992728b2d2SRafael J. Wysockiinvolve a separate thread.
5002728b2d2SRafael J. Wysocki
5012728b2d2SRafael J. WysockiThese callbacks may return an error value, but the PM core will ignore such
5022728b2d2SRafael J. Wysockierrors since there's nothing it can do about them other than printing them in
5032728b2d2SRafael J. Wysockithe system log.
5042728b2d2SRafael J. Wysocki
5052728b2d2SRafael J. Wysocki
5062728b2d2SRafael J. WysockiEntering Hibernation
5072728b2d2SRafael J. Wysocki--------------------
5082728b2d2SRafael J. Wysocki
5092728b2d2SRafael J. WysockiHibernating the system is more complicated than putting it into sleep states,
5102728b2d2SRafael J. Wysockibecause it involves creating and saving a system image.  Therefore there are
5112728b2d2SRafael J. Wysockimore phases for hibernation, with a different set of callbacks.  These phases
5122728b2d2SRafael J. Wysockialways run after tasks have been frozen and enough memory has been freed.
5132728b2d2SRafael J. Wysocki
5142728b2d2SRafael J. WysockiThe general procedure for hibernation is to quiesce all devices ("freeze"),
5152728b2d2SRafael J. Wysockicreate an image of the system memory while everything is stable, reactivate all
5162728b2d2SRafael J. Wysockidevices ("thaw"), write the image to permanent storage, and finally shut down
5172728b2d2SRafael J. Wysockithe system ("power off").  The phases used to accomplish this are: ``prepare``,
5182728b2d2SRafael J. Wysocki``freeze``, ``freeze_late``, ``freeze_noirq``, ``thaw_noirq``, ``thaw_early``,
5192728b2d2SRafael J. Wysocki``thaw``, ``complete``, ``prepare``, ``poweroff``, ``poweroff_late``,
5202728b2d2SRafael J. Wysocki``poweroff_noirq``.
5212728b2d2SRafael J. Wysocki
5222728b2d2SRafael J. Wysocki    1.	The ``prepare`` phase is discussed in the "Entering System Suspend"
5232728b2d2SRafael J. Wysocki	section above.
5242728b2d2SRafael J. Wysocki
5252728b2d2SRafael J. Wysocki    2.	The ``->freeze`` methods should quiesce the device so that it doesn't
5262728b2d2SRafael J. Wysocki	generate IRQs or DMA, and they may need to save the values of device
5272728b2d2SRafael J. Wysocki	registers.  However the device does not have to be put in a low-power
5282728b2d2SRafael J. Wysocki	state, and to save time it's best not to do so.  Also, the device should
5292728b2d2SRafael J. Wysocki	not be prepared to generate wakeup events.
5302728b2d2SRafael J. Wysocki
5312728b2d2SRafael J. Wysocki    3.	The ``freeze_late`` phase is analogous to the ``suspend_late`` phase
5322728b2d2SRafael J. Wysocki	described earlier, except that the device should not be put into a
5332728b2d2SRafael J. Wysocki	low-power state and should not be allowed to generate wakeup events.
5342728b2d2SRafael J. Wysocki
5352728b2d2SRafael J. Wysocki    4.	The ``freeze_noirq`` phase is analogous to the ``suspend_noirq`` phase
5362728b2d2SRafael J. Wysocki	discussed earlier, except again that the device should not be put into
5372728b2d2SRafael J. Wysocki	a low-power state and should not be allowed to generate wakeup events.
5382728b2d2SRafael J. Wysocki
5392728b2d2SRafael J. WysockiAt this point the system image is created.  All devices should be inactive and
5402728b2d2SRafael J. Wysockithe contents of memory should remain undisturbed while this happens, so that the
5412728b2d2SRafael J. Wysockiimage forms an atomic snapshot of the system state.
5422728b2d2SRafael J. Wysocki
5432728b2d2SRafael J. Wysocki    5.	The ``thaw_noirq`` phase is analogous to the ``resume_noirq`` phase
5442728b2d2SRafael J. Wysocki	discussed earlier.  The main difference is that its methods can assume
5452728b2d2SRafael J. Wysocki	the device is in the same state as at the end of the ``freeze_noirq``
5462728b2d2SRafael J. Wysocki	phase.
5472728b2d2SRafael J. Wysocki
5482728b2d2SRafael J. Wysocki    6.	The ``thaw_early`` phase is analogous to the ``resume_early`` phase
5492728b2d2SRafael J. Wysocki	described above.  Its methods should undo the actions of the preceding
5502728b2d2SRafael J. Wysocki	``freeze_late``, if necessary.
5512728b2d2SRafael J. Wysocki
5522728b2d2SRafael J. Wysocki    7.	The ``thaw`` phase is analogous to the ``resume`` phase discussed
5532728b2d2SRafael J. Wysocki	earlier.  Its methods should bring the device back to an operating
5542728b2d2SRafael J. Wysocki	state, so that it can be used for saving the image if necessary.
5552728b2d2SRafael J. Wysocki
5562728b2d2SRafael J. Wysocki    8.	The ``complete`` phase is discussed in the "Leaving System Suspend"
5572728b2d2SRafael J. Wysocki	section above.
5582728b2d2SRafael J. Wysocki
5592728b2d2SRafael J. WysockiAt this point the system image is saved, and the devices then need to be
5602728b2d2SRafael J. Wysockiprepared for the upcoming system shutdown.  This is much like suspending them
5612728b2d2SRafael J. Wysockibefore putting the system into the suspend-to-idle, shallow or deep sleep state,
5622728b2d2SRafael J. Wysockiand the phases are similar.
5632728b2d2SRafael J. Wysocki
5642728b2d2SRafael J. Wysocki    9.	The ``prepare`` phase is discussed above.
5652728b2d2SRafael J. Wysocki
5662728b2d2SRafael J. Wysocki    10.	The ``poweroff`` phase is analogous to the ``suspend`` phase.
5672728b2d2SRafael J. Wysocki
5682728b2d2SRafael J. Wysocki    11.	The ``poweroff_late`` phase is analogous to the ``suspend_late`` phase.
5692728b2d2SRafael J. Wysocki
5702728b2d2SRafael J. Wysocki    12.	The ``poweroff_noirq`` phase is analogous to the ``suspend_noirq`` phase.
5712728b2d2SRafael J. Wysocki
5722728b2d2SRafael J. WysockiThe ``->poweroff``, ``->poweroff_late`` and ``->poweroff_noirq`` callbacks
5732728b2d2SRafael J. Wysockishould do essentially the same things as the ``->suspend``, ``->suspend_late``
574598cc930SAlan Sternand ``->suspend_noirq`` callbacks, respectively.  A notable difference is
5752728b2d2SRafael J. Wysockithat they need not store the device register values, because the registers
5762728b2d2SRafael J. Wysockishould already have been stored during the ``freeze``, ``freeze_late`` or
577598cc930SAlan Stern``freeze_noirq`` phases.  Also, on many machines the firmware will power-down
578598cc930SAlan Sternthe entire system, so it is not necessary for the callback to put the device in
579598cc930SAlan Sterna low-power state.
5802728b2d2SRafael J. Wysocki
5812728b2d2SRafael J. Wysocki
5822728b2d2SRafael J. WysockiLeaving Hibernation
5832728b2d2SRafael J. Wysocki-------------------
5842728b2d2SRafael J. Wysocki
5852728b2d2SRafael J. WysockiResuming from hibernation is, again, more complicated than resuming from a sleep
5862728b2d2SRafael J. Wysockistate in which the contents of main memory are preserved, because it requires
5872728b2d2SRafael J. Wysockia system image to be loaded into memory and the pre-hibernation memory contents
5882728b2d2SRafael J. Wysockito be restored before control can be passed back to the image kernel.
5892728b2d2SRafael J. Wysocki
5902728b2d2SRafael J. WysockiAlthough in principle the image might be loaded into memory and the
5912728b2d2SRafael J. Wysockipre-hibernation memory contents restored by the boot loader, in practice this
5922728b2d2SRafael J. Wysockican't be done because boot loaders aren't smart enough and there is no
5932728b2d2SRafael J. Wysockiestablished protocol for passing the necessary information.  So instead, the
5942728b2d2SRafael J. Wysockiboot loader loads a fresh instance of the kernel, called "the restore kernel",
5952728b2d2SRafael J. Wysockiinto memory and passes control to it in the usual way.  Then the restore kernel
5962728b2d2SRafael J. Wysockireads the system image, restores the pre-hibernation memory contents, and passes
5972728b2d2SRafael J. Wysockicontrol to the image kernel.  Thus two different kernel instances are involved
5982728b2d2SRafael J. Wysockiin resuming from hibernation.  In fact, the restore kernel may be completely
5992728b2d2SRafael J. Wysockidifferent from the image kernel: a different configuration and even a different
6002728b2d2SRafael J. Wysockiversion.  This has important consequences for device drivers and their
6012728b2d2SRafael J. Wysockisubsystems.
6022728b2d2SRafael J. Wysocki
6032728b2d2SRafael J. WysockiTo be able to load the system image into memory, the restore kernel needs to
6042728b2d2SRafael J. Wysockiinclude at least a subset of device drivers allowing it to access the storage
6052728b2d2SRafael J. Wysockimedium containing the image, although it doesn't need to include all of the
6062728b2d2SRafael J. Wysockidrivers present in the image kernel.  After the image has been loaded, the
6072728b2d2SRafael J. Wysockidevices managed by the boot kernel need to be prepared for passing control back
6082728b2d2SRafael J. Wysockito the image kernel.  This is very similar to the initial steps involved in
6092728b2d2SRafael J. Wysockicreating a system image, and it is accomplished in the same way, using
6102728b2d2SRafael J. Wysocki``prepare``, ``freeze``, and ``freeze_noirq`` phases.  However, the devices
6112728b2d2SRafael J. Wysockiaffected by these phases are only those having drivers in the restore kernel;
6122728b2d2SRafael J. Wysockiother devices will still be in whatever state the boot loader left them.
6132728b2d2SRafael J. Wysocki
6142728b2d2SRafael J. WysockiShould the restoration of the pre-hibernation memory contents fail, the restore
6152728b2d2SRafael J. Wysockikernel would go through the "thawing" procedure described above, using the
6162728b2d2SRafael J. Wysocki``thaw_noirq``, ``thaw_early``, ``thaw``, and ``complete`` phases, and then
6172728b2d2SRafael J. Wysockicontinue running normally.  This happens only rarely.  Most often the
6182728b2d2SRafael J. Wysockipre-hibernation memory contents are restored successfully and control is passed
6192728b2d2SRafael J. Wysockito the image kernel, which then becomes responsible for bringing the system back
6202728b2d2SRafael J. Wysockito the working state.
6212728b2d2SRafael J. Wysocki
6222728b2d2SRafael J. WysockiTo achieve this, the image kernel must restore the devices' pre-hibernation
6232728b2d2SRafael J. Wysockifunctionality.  The operation is much like waking up from a sleep state (with
6242728b2d2SRafael J. Wysockithe memory contents preserved), although it involves different phases:
6252728b2d2SRafael J. Wysocki``restore_noirq``, ``restore_early``, ``restore``, ``complete``.
6262728b2d2SRafael J. Wysocki
6272728b2d2SRafael J. Wysocki    1.	The ``restore_noirq`` phase is analogous to the ``resume_noirq`` phase.
6282728b2d2SRafael J. Wysocki
6292728b2d2SRafael J. Wysocki    2.	The ``restore_early`` phase is analogous to the ``resume_early`` phase.
6302728b2d2SRafael J. Wysocki
6312728b2d2SRafael J. Wysocki    3.	The ``restore`` phase is analogous to the ``resume`` phase.
6322728b2d2SRafael J. Wysocki
6332728b2d2SRafael J. Wysocki    4.	The ``complete`` phase is discussed above.
6342728b2d2SRafael J. Wysocki
6352728b2d2SRafael J. WysockiThe main difference from ``resume[_early|_noirq]`` is that
6362728b2d2SRafael J. Wysocki``restore[_early|_noirq]`` must assume the device has been accessed and
6372728b2d2SRafael J. Wysockireconfigured by the boot loader or the restore kernel.  Consequently, the state
6382728b2d2SRafael J. Wysockiof the device may be different from the state remembered from the ``freeze``,
6392728b2d2SRafael J. Wysocki``freeze_late`` and ``freeze_noirq`` phases.  The device may even need to be
6402728b2d2SRafael J. Wysockireset and completely re-initialized.  In many cases this difference doesn't
6412728b2d2SRafael J. Wysockimatter, so the ``->resume[_early|_noirq]`` and ``->restore[_early|_norq]``
6422728b2d2SRafael J. Wysockimethod pointers can be set to the same routines.  Nevertheless, different
6432728b2d2SRafael J. Wysockicallback pointers are used in case there is a situation where it actually does
6442728b2d2SRafael J. Wysockimatter.
6452728b2d2SRafael J. Wysocki
6462728b2d2SRafael J. Wysocki
6472728b2d2SRafael J. WysockiPower Management Notifiers
6482728b2d2SRafael J. Wysocki==========================
6492728b2d2SRafael J. Wysocki
6502728b2d2SRafael J. WysockiThere are some operations that cannot be carried out by the power management
6512728b2d2SRafael J. Wysockicallbacks discussed above, because the callbacks occur too late or too early.
6522728b2d2SRafael J. WysockiTo handle these cases, subsystems and device drivers may register power
6532728b2d2SRafael J. Wysockimanagement notifiers that are called before tasks are frozen and after they have
6542728b2d2SRafael J. Wysockibeen thawed.  Generally speaking, the PM notifiers are suitable for performing
6552728b2d2SRafael J. Wysockiactions that either require user space to be available, or at least won't
6562728b2d2SRafael J. Wysockiinterfere with user space.
6572728b2d2SRafael J. Wysocki
658*559a66b8SMauro Carvalho ChehabFor details refer to Documentation/driver-api/pm/notifiers.rst.
6592728b2d2SRafael J. Wysocki
6602728b2d2SRafael J. Wysocki
6612728b2d2SRafael J. WysockiDevice Low-Power (suspend) States
6622728b2d2SRafael J. Wysocki=================================
6632728b2d2SRafael J. Wysocki
6642728b2d2SRafael J. WysockiDevice low-power states aren't standard.  One device might only handle
6652728b2d2SRafael J. Wysocki"on" and "off", while another might support a dozen different versions of
6662728b2d2SRafael J. Wysocki"on" (how many engines are active?), plus a state that gets back to "on"
6672728b2d2SRafael J. Wysockifaster than from a full "off".
6682728b2d2SRafael J. Wysocki
6692728b2d2SRafael J. WysockiSome buses define rules about what different suspend states mean.  PCI
6702728b2d2SRafael J. Wysockigives one example: after the suspend sequence completes, a non-legacy
6712728b2d2SRafael J. WysockiPCI device may not perform DMA or issue IRQs, and any wakeup events it
6722728b2d2SRafael J. Wysockiissues would be issued through the PME# bus signal.  Plus, there are
6732728b2d2SRafael J. Wysockiseveral PCI-standard device states, some of which are optional.
6742728b2d2SRafael J. Wysocki
6752728b2d2SRafael J. WysockiIn contrast, integrated system-on-chip processors often use IRQs as the
6762728b2d2SRafael J. Wysockiwakeup event sources (so drivers would call :c:func:`enable_irq_wake`) and
6772728b2d2SRafael J. Wysockimight be able to treat DMA completion as a wakeup event (sometimes DMA can stay
6782728b2d2SRafael J. Wysockiactive too, it'd only be the CPU and some peripherals that sleep).
6792728b2d2SRafael J. Wysocki
6802728b2d2SRafael J. WysockiSome details here may be platform-specific.  Systems may have devices that
6812728b2d2SRafael J. Wysockican be fully active in certain sleep states, such as an LCD display that's
6822728b2d2SRafael J. Wysockirefreshed using DMA while most of the system is sleeping lightly ... and
6832728b2d2SRafael J. Wysockiits frame buffer might even be updated by a DSP or other non-Linux CPU while
6842728b2d2SRafael J. Wysockithe Linux control processor stays idle.
6852728b2d2SRafael J. Wysocki
6862728b2d2SRafael J. WysockiMoreover, the specific actions taken may depend on the target system state.
6872728b2d2SRafael J. WysockiOne target system state might allow a given device to be very operational;
6882728b2d2SRafael J. Wysockianother might require a hard shut down with re-initialization on resume.
6892728b2d2SRafael J. WysockiAnd two different target systems might use the same device in different
6902728b2d2SRafael J. Wysockiways; the aforementioned LCD might be active in one product's "standby",
6912728b2d2SRafael J. Wysockibut a different product using the same SOC might work differently.
6922728b2d2SRafael J. Wysocki
6932728b2d2SRafael J. Wysocki
6942728b2d2SRafael J. WysockiDevice Power Management Domains
6952728b2d2SRafael J. Wysocki===============================
6962728b2d2SRafael J. Wysocki
6972728b2d2SRafael J. WysockiSometimes devices share reference clocks or other power resources.  In those
6982728b2d2SRafael J. Wysockicases it generally is not possible to put devices into low-power states
6992728b2d2SRafael J. Wysockiindividually.  Instead, a set of devices sharing a power resource can be put
7002728b2d2SRafael J. Wysockiinto a low-power state together at the same time by turning off the shared
7012728b2d2SRafael J. Wysockipower resource.  Of course, they also need to be put into the full-power state
7022728b2d2SRafael J. Wysockitogether, by turning the shared power resource on.  A set of devices with this
7032728b2d2SRafael J. Wysockiproperty is often referred to as a power domain. A power domain may also be
7042728b2d2SRafael J. Wysockinested inside another power domain. The nested domain is referred to as the
7052728b2d2SRafael J. Wysockisub-domain of the parent domain.
7062728b2d2SRafael J. Wysocki
7072728b2d2SRafael J. WysockiSupport for power domains is provided through the :c:member:`pm_domain` field of
7086624d64dSMauro Carvalho Chehabstruct device.  This field is a pointer to an object of type
7096624d64dSMauro Carvalho Chehabstruct dev_pm_domain, defined in :file:`include/linux/pm.h`, providing a set
710e3941cd9SRafael J. Wysockiof power management callbacks analogous to the subsystem-level and device driver
711e3941cd9SRafael J. Wysockicallbacks that are executed for the given device during all power transitions,
712e3941cd9SRafael J. Wysockiinstead of the respective subsystem-level callbacks.  Specifically, if a
713e3941cd9SRafael J. Wysockidevice's :c:member:`pm_domain` pointer is not NULL, the ``->suspend()`` callback
714e3941cd9SRafael J. Wysockifrom the object pointed to by it will be executed instead of its subsystem's
715e3941cd9SRafael J. Wysocki(e.g. bus type's) ``->suspend()`` callback and analogously for all of the
716e3941cd9SRafael J. Wysockiremaining callbacks.  In other words, power management domain callbacks, if
717e3941cd9SRafael J. Wysockidefined for the given device, always take precedence over the callbacks provided
718e3941cd9SRafael J. Wysockiby the device's subsystem (e.g. bus type).
7192728b2d2SRafael J. Wysocki
7202728b2d2SRafael J. WysockiThe support for device power management domains is only relevant to platforms
7212728b2d2SRafael J. Wysockineeding to use the same device driver power management callbacks in many
7222728b2d2SRafael J. Wysockidifferent power domain configurations and wanting to avoid incorporating the
7232728b2d2SRafael J. Wysockisupport for power domains into subsystem-level callbacks, for example by
7242728b2d2SRafael J. Wysockimodifying the platform bus type.  Other platforms need not implement it or take
7252728b2d2SRafael J. Wysockiit into account in any way.
7262728b2d2SRafael J. Wysocki
7272728b2d2SRafael J. WysockiDevices may be defined as IRQ-safe which indicates to the PM core that their
7282728b2d2SRafael J. Wysockiruntime PM callbacks may be invoked with disabled interrupts (see
729*559a66b8SMauro Carvalho ChehabDocumentation/power/runtime_pm.rst for more information).  If an
7302728b2d2SRafael J. WysockiIRQ-safe device belongs to a PM domain, the runtime PM of the domain will be
7312728b2d2SRafael J. Wysockidisallowed, unless the domain itself is defined as IRQ-safe. However, it
7322728b2d2SRafael J. Wysockimakes sense to define a PM domain as IRQ-safe only if all the devices in it
7332728b2d2SRafael J. Wysockiare IRQ-safe. Moreover, if an IRQ-safe domain has a parent domain, the runtime
7342728b2d2SRafael J. WysockiPM of the parent is only allowed if the parent itself is IRQ-safe too with the
7352728b2d2SRafael J. Wysockiadditional restriction that all child domains of an IRQ-safe parent must also
7362728b2d2SRafael J. Wysockibe IRQ-safe.
7372728b2d2SRafael J. Wysocki
7382728b2d2SRafael J. Wysocki
7392728b2d2SRafael J. WysockiRuntime Power Management
7402728b2d2SRafael J. Wysocki========================
7412728b2d2SRafael J. Wysocki
7422728b2d2SRafael J. WysockiMany devices are able to dynamically power down while the system is still
7432728b2d2SRafael J. Wysockirunning. This feature is useful for devices that are not being used, and
7442728b2d2SRafael J. Wysockican offer significant power savings on a running system.  These devices
7452728b2d2SRafael J. Wysockioften support a range of runtime power states, which might use names such
7462728b2d2SRafael J. Wysockias "off", "sleep", "idle", "active", and so on.  Those states will in some
7472728b2d2SRafael J. Wysockicases (like PCI) be partially constrained by the bus the device uses, and will
7482728b2d2SRafael J. Wysockiusually include hardware states that are also used in system sleep states.
7492728b2d2SRafael J. Wysocki
7502728b2d2SRafael J. WysockiA system-wide power transition can be started while some devices are in low
7512728b2d2SRafael J. Wysockipower states due to runtime power management.  The system sleep PM callbacks
7522728b2d2SRafael J. Wysockishould recognize such situations and react to them appropriately, but the
7532728b2d2SRafael J. Wysockinecessary actions are subsystem-specific.
7542728b2d2SRafael J. Wysocki
7552728b2d2SRafael J. WysockiIn some cases the decision may be made at the subsystem level while in other
7562728b2d2SRafael J. Wysockicases the device driver may be left to decide.  In some cases it may be
7572728b2d2SRafael J. Wysockidesirable to leave a suspended device in that state during a system-wide power
7582728b2d2SRafael J. Wysockitransition, but in other cases the device must be put back into the full-power
7592728b2d2SRafael J. Wysockistate temporarily, for example so that its system wakeup capability can be
7602728b2d2SRafael J. Wysockidisabled.  This all depends on the hardware and the design of the subsystem and
7612728b2d2SRafael J. Wysockidevice driver in question.
7622728b2d2SRafael J. Wysocki
763104dc5e2SRafael J. WysockiIf it is necessary to resume a device from runtime suspend during a system-wide
764104dc5e2SRafael J. Wysockitransition into a sleep state, that can be done by calling
765598cc930SAlan Stern:c:func:`pm_runtime_resume` from the ``->suspend`` callback (or the ``->freeze``
766598cc930SAlan Sternor ``->poweroff`` callback for transitions related to hibernation) of either the
767598cc930SAlan Sterndevice's driver or its subsystem (for example, a bus type or a PM domain).
768598cc930SAlan SternHowever, subsystems must not otherwise change the runtime status of devices
769104dc5e2SRafael J. Wysockifrom their ``->prepare`` and ``->suspend`` callbacks (or equivalent) *before*
770104dc5e2SRafael J. Wysockiinvoking device drivers' ``->suspend`` callbacks (or equivalent).
771104dc5e2SRafael J. Wysocki
7722fff3f73SRafael J. Wysocki.. _smart_suspend_flag:
7732fff3f73SRafael J. Wysocki
7742fff3f73SRafael J. WysockiThe ``DPM_FLAG_SMART_SUSPEND`` Driver Flag
7752fff3f73SRafael J. Wysocki------------------------------------------
7762fff3f73SRafael J. Wysocki
7770eab11c9SRafael J. WysockiSome bus types and PM domains have a policy to resume all devices from runtime
7780eab11c9SRafael J. Wysockisuspend upfront in their ``->suspend`` callbacks, but that may not be really
779598cc930SAlan Sternnecessary if the device's driver can cope with runtime-suspended devices.
780598cc930SAlan SternThe driver can indicate this by setting ``DPM_FLAG_SMART_SUSPEND`` in
781598cc930SAlan Stern:c:member:`power.driver_flags` at probe time, with the assistance of the
7822fff3f73SRafael J. Wysocki:c:func:`dev_pm_set_driver_flags` helper routine.
7832fff3f73SRafael J. Wysocki
784598cc930SAlan SternSetting that flag causes the PM core and middle-layer code
7850eab11c9SRafael J. Wysocki(bus types, PM domains etc.) to skip the ``->suspend_late`` and
7860eab11c9SRafael J. Wysocki``->suspend_noirq`` callbacks provided by the driver if the device remains in
787598cc930SAlan Sternruntime suspend throughout those phases of the system-wide suspend (and
788598cc930SAlan Sternsimilarly for the "freeze" and "poweroff" parts of system hibernation).
789598cc930SAlan Stern[Otherwise the same driver
7902fff3f73SRafael J. Wysockicallback might be executed twice in a row for the same device, which would not
7912fff3f73SRafael J. Wysockibe valid in general.]  If the middle-layer system-wide PM callbacks are present
792598cc930SAlan Sternfor the device then they are responsible for skipping these driver callbacks;
793598cc930SAlan Sternif not then the PM core skips them.  The subsystem callback routines can
794598cc930SAlan Sterndetermine whether they need to skip the driver callbacks by testing the return
795598cc930SAlan Sternvalue from the :c:func:`dev_pm_skip_suspend` helper function.
7962fff3f73SRafael J. Wysocki
797598cc930SAlan SternIn addition, with ``DPM_FLAG_SMART_SUSPEND`` set, the driver's ``->thaw_noirq``
798598cc930SAlan Sternand ``->thaw_early`` callbacks are skipped in hibernation if the device remained
799598cc930SAlan Sternin runtime suspend throughout the preceding "freeze" transition.  Again, if the
800598cc930SAlan Sternmiddle-layer callbacks are present for the device, they are responsible for
801598cc930SAlan Sterndoing this, otherwise the PM core takes care of it.
8022fff3f73SRafael J. Wysocki
8032fff3f73SRafael J. Wysocki
8042fff3f73SRafael J. WysockiThe ``DPM_FLAG_MAY_SKIP_RESUME`` Driver Flag
8052fff3f73SRafael J. Wysocki--------------------------------------------
8060eab11c9SRafael J. Wysocki
8072728b2d2SRafael J. WysockiDuring system-wide resume from a sleep state it's easiest to put devices into
808*559a66b8SMauro Carvalho Chehabthe full-power state, as explained in Documentation/power/runtime_pm.rst.
8090d4b54c6SRafael J. Wysocki[Refer to that document for more information regarding this particular issue as
8102728b2d2SRafael J. Wysockiwell as for information on the device runtime power management framework in
8112fff3f73SRafael J. Wysockigeneral.]  However, it often is desirable to leave devices in suspend after
8122fff3f73SRafael J. Wysockisystem transitions to the working state, especially if those devices had been in
8130d4b54c6SRafael J. Wysockiruntime suspend before the preceding system-wide suspend (or analogous)
8142fff3f73SRafael J. Wysockitransition.
8150d4b54c6SRafael J. Wysocki
8162fff3f73SRafael J. WysockiTo that end, device drivers can use the ``DPM_FLAG_MAY_SKIP_RESUME`` flag to
8172fff3f73SRafael J. Wysockiindicate to the PM core and middle-layer code that they allow their "noirq" and
8182fff3f73SRafael J. Wysocki"early" resume callbacks to be skipped if the device can be left in suspend
8192fff3f73SRafael J. Wysockiafter system-wide PM transitions to the working state.  Whether or not that is
8202fff3f73SRafael J. Wysockithe case generally depends on the state of the device before the given system
8212fff3f73SRafael J. Wysockisuspend-resume cycle and on the type of the system transition under way.
822598cc930SAlan SternIn particular, the "thaw" and "restore" transitions related to hibernation are
823598cc930SAlan Sternnot affected by ``DPM_FLAG_MAY_SKIP_RESUME`` at all.  [All callbacks are
824598cc930SAlan Sternissued during the "restore" transition regardless of the flag settings,
825598cc930SAlan Sternand whether or not any driver callbacks
826598cc930SAlan Sternare skipped during the "thaw" transition depends whether or not the
827598cc930SAlan Stern``DPM_FLAG_SMART_SUSPEND`` flag is set (see `above <smart_suspend_flag_>`_).
828598cc930SAlan SternIn addition, a device is not allowed to remain in runtime suspend if any of its
829598cc930SAlan Sternchildren will be returned to full power.]
83032bfa56aSRafael J. Wysocki
8312fff3f73SRafael J. WysockiThe ``DPM_FLAG_MAY_SKIP_RESUME`` flag is taken into account in combination with
8322fff3f73SRafael J. Wysockithe :c:member:`power.may_skip_resume` status bit set by the PM core during the
8332fff3f73SRafael J. Wysocki"suspend" phase of suspend-type transitions.  If the driver or the middle layer
8342fff3f73SRafael J. Wysockihas a reason to prevent the driver's "noirq" and "early" resume callbacks from
835598cc930SAlan Sternbeing skipped during the subsequent system resume transition, it should
8362fff3f73SRafael J. Wysockiclear :c:member:`power.may_skip_resume` in its ``->suspend``, ``->suspend_late``
8372fff3f73SRafael J. Wysockior ``->suspend_noirq`` callback.  [Note that the drivers setting
8382fff3f73SRafael J. Wysocki``DPM_FLAG_SMART_SUSPEND`` need to clear :c:member:`power.may_skip_resume` in
8392fff3f73SRafael J. Wysockitheir ``->suspend`` callback in case the other two are skipped.]
8402fff3f73SRafael J. Wysocki
8412fff3f73SRafael J. WysockiSetting the :c:member:`power.may_skip_resume` status bit along with the
8422fff3f73SRafael J. Wysocki``DPM_FLAG_MAY_SKIP_RESUME`` flag is necessary, but generally not sufficient,
8432fff3f73SRafael J. Wysockifor the driver's "noirq" and "early" resume callbacks to be skipped.  Whether or
8442fff3f73SRafael J. Wysockinot they should be skipped can be determined by evaluating the
8452fff3f73SRafael J. Wysocki:c:func:`dev_pm_skip_resume` helper function.
8462fff3f73SRafael J. Wysocki
8472fff3f73SRafael J. WysockiIf that function returns ``true``, the driver's "noirq" and "early" resume
8482fff3f73SRafael J. Wysockicallbacks should be skipped and the device's runtime PM status will be set to
8492fff3f73SRafael J. Wysocki"suspended" by the PM core.  Otherwise, if the device was runtime-suspended
850598cc930SAlan Sternduring the preceding system-wide suspend transition and its
851598cc930SAlan Stern``DPM_FLAG_SMART_SUSPEND`` is set, its runtime PM status will be set to
8522fff3f73SRafael J. Wysocki"active" by the PM core.  [Hence, the drivers that do not set
8532fff3f73SRafael J. Wysocki``DPM_FLAG_SMART_SUSPEND`` should not expect the runtime PM status of their
8542fff3f73SRafael J. Wysockidevices to be changed from "suspended" to "active" by the PM core during
8552fff3f73SRafael J. Wysockisystem-wide resume-type transitions.]
8562fff3f73SRafael J. Wysocki
8572fff3f73SRafael J. WysockiIf the ``DPM_FLAG_MAY_SKIP_RESUME`` flag is not set for a device, but
8582fff3f73SRafael J. Wysocki``DPM_FLAG_SMART_SUSPEND`` is set and the driver's "late" and "noirq" suspend
8592fff3f73SRafael J. Wysockicallbacks are skipped, its system-wide "noirq" and "early" resume callbacks, if
8602fff3f73SRafael J. Wysockipresent, are invoked as usual and the device's runtime PM status is set to
8612fff3f73SRafael J. Wysocki"active" by the PM core before enabling runtime PM for it.  In that case, the
8622fff3f73SRafael J. Wysockidriver must be prepared to cope with the invocation of its system-wide resume
8632fff3f73SRafael J. Wysockicallbacks back-to-back with its ``->runtime_suspend`` one (without the
8642fff3f73SRafael J. Wysockiintervening ``->runtime_resume`` and system-wide suspend callbacks) and the
8652fff3f73SRafael J. Wysockifinal state of the device must reflect the "active" runtime PM status in that
8662fff3f73SRafael J. Wysockicase.  [Note that this is not a problem at all if the driver's
8672fff3f73SRafael J. Wysocki``->suspend_late`` callback pointer points to the same function as its
8682fff3f73SRafael J. Wysocki``->runtime_suspend`` one and its ``->resume_early`` callback pointer points to
8692fff3f73SRafael J. Wysockithe same function as the ``->runtime_resume`` one, while none of the other
8702fff3f73SRafael J. Wysockisystem-wide suspend-resume callbacks of the driver are present, for example.]
8712fff3f73SRafael J. Wysocki
8722fff3f73SRafael J. WysockiLikewise, if ``DPM_FLAG_MAY_SKIP_RESUME`` is set for a device, its driver's
8732fff3f73SRafael J. Wysockisystem-wide "noirq" and "early" resume callbacks may be skipped while its "late"
8742fff3f73SRafael J. Wysockiand "noirq" suspend callbacks may have been executed (in principle, regardless
8752fff3f73SRafael J. Wysockiof whether or not ``DPM_FLAG_SMART_SUSPEND`` is set).  In that case, the driver
8762fff3f73SRafael J. Wysockineeds to be able to cope with the invocation of its ``->runtime_resume``
8772fff3f73SRafael J. Wysockicallback back-to-back with its "late" and "noirq" suspend ones.  [For instance,
8782fff3f73SRafael J. Wysockithat is not a concern if the driver sets both ``DPM_FLAG_SMART_SUSPEND`` and
8792fff3f73SRafael J. Wysocki``DPM_FLAG_MAY_SKIP_RESUME`` and uses the same pair of suspend/resume callback
8802fff3f73SRafael J. Wysockifunctions for runtime PM and system-wide suspend/resume.]
881