Lines Matching +full:wakeup +full:- +full:source
15 - :ref:`Device Runtime Power Management <pm-device-runtime-pm>`
16 - :ref:`System Power Management <pm-device-system-pm>`
18 .. _pm-device-runtime-pm:
36 For more information, see :ref:`pm-device-runtime`.
38 .. _pm-device-system-pm:
55 When using :ref:`pm-system`, device transitions can be run from the idle thread.
61 :ref:`Device Runtime Power Management <pm-device-runtime-pm>` is the **preferred**
107 ACTIVE -> SUSPENDING -> SUSPENDED;
108 ACTIVE -> SUSPENDED ["label"="PM_DEVICE_ACTION_SUSPEND"];
109 SUSPENDED -> ACTIVE ["label"="PM_DEVICE_ACTION_RESUME"];
113 OFF -> SUSPENDED ["label"="PM_DEVICE_ACTION_TURN_ON"];
114 SUSPENDED -> OFF ["label"="PM_DEVICE_ACTION_TURN_OFF"];
115 ACTIVE -> OFF ["label"="PM_DEVICE_ACTION_TURN_OFF"];
121 responsible for implementing any hardware-specific tasks needed to handle state
134 driver-specific state which is required by the power management subsystem.
144 .. code-block:: c
175 return -ENOTSUP;
187 .. _pm-device-busy:
193 subsystem can suspend devices, as described in :ref:`pm-device-system-pm`. This
205 Wakeup capability
213 This property can be set on device declaring the property ``wakeup-source`` in
215 ``gpio0`` device as a "wakeup" source:
217 .. code-block:: devicetree
220 compatible = "ti,cc13xx-cc26xx-gpio";
225 gpio-controller;
226 wakeup-source;
227 #gpio-cells = <2>;
230 By default, "wakeup" capable devices do not have this functionality enabled
246 using it. For more details, see :ref:`pm-power-domain`.