Lines Matching full:states
18 * @brief System Power Management States
19 * @defgroup subsys_pm_states States
41 * requirements for the devices, leaving them at the states where
52 * peripherals into low-power states. No operating state is lost (ie.
62 * In addition to putting peripherals into low-power states all
107 /** Number of power management states (internal use) */
118 * Some platforms have multiple states that map to
123 * power-states {
204 * @note Only enabled states are initialized.
217 * @note Only enabled states are initialized.
253 * @brief Obtain number of CPU power states supported and enabled by the given
257 * @return Number of supported and enabled CPU power states.
266 * the states present and enabled in the given CPU node identifier.
276 * cpu-power-states = <&state0 &state1>;
279 * power-states {
302 * const struct pm_state_info states[] =
316 * states present and enabled in the given CPU node identifier.
326 * cpu-power-states = <&state0 &state1>;
329 * power-states {
350 * const enum pm_state states[] = PM_STATE_LIST_FROM_DT_CPU(DT_NODELABEL(cpu0));
364 * Obtain information about all supported states by a CPU.
367 * @param states Where to store the list of supported states.
369 * @return Number of supported states.
371 uint8_t pm_state_cpu_get_all(uint8_t cpu, const struct pm_state_info **states);
379 static inline uint8_t pm_state_cpu_get_all(uint8_t cpu, const struct pm_state_info **states) in pm_state_cpu_get_all() argument
382 ARG_UNUSED(states); in pm_state_cpu_get_all()