pm.h 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282
  1. /*
  2. * Copyright (c) 2012-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_PM_PM_H_
  7. #define ZEPHYR_INCLUDE_PM_PM_H_
  8. #include <zephyr/types.h>
  9. #include <sys/slist.h>
  10. #include <pm/state.h>
  11. #include <toolchain.h>
  12. #include <stdbool.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @defgroup power_management_api Power Management
  18. * @{
  19. * @}
  20. */
  21. /**
  22. * @brief System Power Management API
  23. *
  24. * @defgroup system_power_management_api System Power Management API
  25. * @ingroup power_management_api
  26. * @{
  27. */
  28. /**
  29. * Power management notifier struct
  30. *
  31. * This struct contains callbacks that are called when the target enters and
  32. * exits power states.
  33. *
  34. * As currently implemented the entry callback is invoked when
  35. * transitioning from PM_STATE_ACTIVE to another state, and the exit
  36. * callback is invoked when transitioning from a non-active state to
  37. * PM_STATE_ACTIVE. This behavior may change in the future.
  38. *
  39. * @note These callbacks can be called from the ISR of the event
  40. * that caused the kernel exit from idling.
  41. *
  42. * @note It is not allowed to call @ref pm_notifier_unregister or
  43. * @ref pm_notifier_register from these callbacks because they are called
  44. * with the spin locked in those functions.
  45. */
  46. struct pm_notifier {
  47. sys_snode_t _node;
  48. /**
  49. * Application defined function for doing any target specific operations
  50. * for power state entry.
  51. */
  52. void (*state_entry)(enum pm_state state);
  53. /**
  54. * Application defined function for doing any target specific operations
  55. * for power state exit.
  56. */
  57. void (*state_exit)(enum pm_state state);
  58. };
  59. #ifdef CONFIG_PM
  60. /**
  61. * @brief Force usage of given power state.
  62. *
  63. * This function overrides decision made by PM policy forcing
  64. * usage of given power state immediately.
  65. *
  66. * @note This function can only run in thread context
  67. *
  68. * @param info Power state which should be used in the ongoing
  69. * suspend operation.
  70. */
  71. void pm_power_state_force(struct pm_state_info info);
  72. #ifdef CONFIG_PM_DEBUG
  73. /**
  74. * @brief Dump Low Power states related debug info
  75. *
  76. * Dump Low Power states debug info like LPS entry count and residencies.
  77. */
  78. void pm_dump_debug_info(void);
  79. #else
  80. static inline void pm_dump_debug_info(void) { }
  81. #endif /* CONFIG_PM_DEBUG */
  82. /**
  83. * @brief Register a power management notifier
  84. *
  85. * Register the given notifier from the power management notification
  86. * list.
  87. *
  88. * @param notifier pm_notifier object to be registered.
  89. */
  90. void pm_notifier_register(struct pm_notifier *notifier);
  91. /**
  92. * @brief Unregister a power management notifier
  93. *
  94. * Remove the given notifier from the power management notification
  95. * list. After that this object callbacks will not be called.
  96. *
  97. * @param notifier pm_notifier object to be unregistered.
  98. *
  99. * @return 0 if the notifier was successfully removed, a negative value
  100. * otherwise.
  101. */
  102. int pm_notifier_unregister(struct pm_notifier *notifier);
  103. /**
  104. * @}
  105. */
  106. /**
  107. * @brief System Power Management Constraint API
  108. *
  109. * @defgroup system_power_management_constraint_api Constraint API
  110. * @ingroup power_management_api
  111. * @{
  112. */
  113. /**
  114. * @brief Set a constraint for a power state
  115. *
  116. * @details Disabled state cannot be selected by the Zephyr power
  117. * management policies. Application defined policy should
  118. * use the @ref pm_constraint_get function to
  119. * check if given state is enabled and could be used.
  120. *
  121. * @note This API is refcount
  122. *
  123. * @param [in] state Power state to be disabled.
  124. */
  125. void pm_constraint_set(enum pm_state state);
  126. /**
  127. * @brief Release a constraint for a power state
  128. *
  129. * @details Enabled state can be selected by the Zephyr power
  130. * management policies. Application defined policy should
  131. * use the @ref pm_constraint_get function to
  132. * check if given state is enabled and could be used.
  133. * By default all power states are enabled.
  134. *
  135. * @note This API is refcount
  136. *
  137. * @param [in] state Power state to be enabled.
  138. */
  139. void pm_constraint_release(enum pm_state state);
  140. /**
  141. * @brief Check if particular power state is enabled
  142. *
  143. * This function returns true if given power state is enabled.
  144. *
  145. * @param [in] state Power state.
  146. */
  147. bool pm_constraint_get(enum pm_state state);
  148. /**
  149. * @brief set device early_suspend
  150. *
  151. * Called by an application to set all device DEVICE_PM_EARLY_SUSPEND_STATE
  152. *
  153. *
  154. * @retval 0 if all device enter DEVICE_PM_EARLY_SUSPEND_STATE
  155. * @retval Errno Negative errno code if failure
  156. */
  157. int pm_early_suspend(void);
  158. /**
  159. * @brief set device late_resume
  160. *
  161. * Called by an application to set all device exit early_suspend
  162. *
  163. */
  164. void pm_late_resume(void);
  165. /**
  166. * @brief set device poweroff
  167. *
  168. * Called by an application to poweroff all devices
  169. *
  170. */
  171. int pm_power_off_devices(void);
  172. /**
  173. * @brief Check if particular power state is a sleep state.
  174. *
  175. * This function returns true if given power state is a sleep state.
  176. */
  177. static inline bool pm_is_sleep_state(enum pm_state state)
  178. {
  179. bool ret = true;
  180. switch (state) {
  181. case PM_STATE_RUNTIME_IDLE:
  182. __fallthrough;
  183. case PM_STATE_SUSPEND_TO_IDLE:
  184. __fallthrough;
  185. case PM_STATE_STANDBY:
  186. break;
  187. default:
  188. ret = false;
  189. break;
  190. }
  191. return ret;
  192. }
  193. /**
  194. * @}
  195. */
  196. /**
  197. * @brief Power Management Hooks
  198. *
  199. * @defgroup power_management_hook_interface Power Management Hooks
  200. * @ingroup power_management_api
  201. * @{
  202. */
  203. /**
  204. * @brief Put processor into a power state.
  205. *
  206. * This function implements the SoC specific details necessary
  207. * to put the processor into available power states.
  208. *
  209. * @param info Power state which should be used in the ongoing
  210. * suspend operation.
  211. */
  212. void pm_power_state_set(struct pm_state_info info);
  213. /**
  214. * @brief Do any SoC or architecture specific post ops after sleep state exits.
  215. *
  216. * This function is a place holder to do any operations that may
  217. * be needed to be done after sleep state exits. Currently it enables
  218. * interrupts after resuming from sleep state. In future, the enabling
  219. * of interrupts may be moved into the kernel.
  220. */
  221. void pm_power_state_exit_post_ops(struct pm_state_info info);
  222. /**
  223. * @}
  224. */
  225. #else /* CONFIG_PM */
  226. #define pm_notifier_register(notifier)
  227. #define pm_notifier_unregister(notifier) (-ENOSYS)
  228. #define pm_constraint_set(pm_state)
  229. #define pm_constraint_release(pm_state)
  230. #define pm_constraint_get(pm_state) (true)
  231. #define pm_power_state_set(info)
  232. #define pm_power_state_exit_post_ops(info)
  233. #define pm_early_suspend()
  234. #define pm_late_resume()
  235. #define pm_power_off_devices()
  236. #endif /* CONFIG_PM */
  237. void z_pm_save_idle_exit(int32_t ticks);
  238. #ifdef __cplusplus
  239. }
  240. #endif
  241. #endif /* ZEPHYR_INCLUDE_PM_PM_H_ */