state.h 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. /*
  2. * Copyright (c) 2020 Intel corporation
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_PM_STATE_H_
  7. #define ZEPHYR_INCLUDE_PM_STATE_H_
  8. #include <sys/util.h>
  9. #include <devicetree.h>
  10. #ifdef __cplusplus
  11. extern "C" {
  12. #endif
  13. /**
  14. * @defgroup pm_states Power Management States
  15. * @ingroup power_management_api
  16. * @{
  17. */
  18. /**
  19. * @enum pm_state Power management state
  20. */
  21. enum pm_state {
  22. /**
  23. * @brief Runtime active state
  24. *
  25. * The system is fully powered and active.
  26. *
  27. * @note This state is correlated with ACPI G0/S0 state
  28. */
  29. PM_STATE_ACTIVE,
  30. /**
  31. * @brief Runtime idle state
  32. *
  33. * Runtime idle is a system sleep state in which all of the cores
  34. * enter deepest possible idle state and wait for interrupts, no
  35. * requirements for the devices, leaving them at the states where
  36. * they are.
  37. *
  38. * @note This state is correlated with ACPI S0ix state
  39. */
  40. PM_STATE_RUNTIME_IDLE,
  41. /**
  42. * @brief Suspend to idle state
  43. *
  44. * The system goes through a normal platform suspend where it puts
  45. * all of the cores in deepest possible idle state and *may* puts peripherals
  46. * into low-power states. No operating state is lost (ie. the cpu core
  47. * does not lose execution context), so the system can go back to where
  48. * it left off easily enough.
  49. *
  50. * @note This state is correlated with ACPI S1 state
  51. */
  52. PM_STATE_SUSPEND_TO_IDLE,
  53. /**
  54. * @brief Standby state
  55. *
  56. * In addition to putting peripherals into low-power states all
  57. * non-boot CPUs are powered off. It should allow more energy to be
  58. * saved relative to suspend to idle, but the resume latency will
  59. * generally be greater than for that state. But it should be the same
  60. * state with suspend to idle state on uniprocesser system.
  61. *
  62. * @note This state is correlated with ACPI S2 state
  63. */
  64. PM_STATE_STANDBY,
  65. /**
  66. * @brief Suspend to ram state
  67. *
  68. * This state offers significant energy savings by powering off as much
  69. * of the system as possible, where memory should be placed into the
  70. * self-refresh mode to retain its contents. The state of devices and
  71. * CPUs is saved and held in memory, and it may require some boot-
  72. * strapping code in ROM to resume the system from it.
  73. *
  74. * @note This state is correlated with ACPI S3 state
  75. */
  76. PM_STATE_SUSPEND_TO_RAM,
  77. /**
  78. * @brief Suspend to disk state
  79. *
  80. * This state offers significant energy savings by powering off as much
  81. * of the system as possible, including the memory. The contents of
  82. * memory are written to disk or other non-volatile storage, and on resume
  83. * it's read back into memory with the help of boot-strapping code,
  84. * restores the system to the same point of execution where it went to
  85. * suspend to disk.
  86. *
  87. * @note This state is correlated with ACPI S4 state
  88. */
  89. PM_STATE_SUSPEND_TO_DISK,
  90. /**
  91. * @brief Soft off state
  92. *
  93. * This state consumes a minimal amount of power and requires a large
  94. * latency in order to return to runtime active state. The contents of
  95. * system(CPU and memory) will not be preserved, so the system will be
  96. * restarted as if from initial power-up and kernel boot.
  97. *
  98. * @note This state is correlated with ACPI G2/S5 state
  99. */
  100. PM_STATE_SOFT_OFF
  101. };
  102. /**
  103. * Information about a power management state
  104. */
  105. struct pm_state_info {
  106. enum pm_state state;
  107. /**
  108. * Some platforms have multiple states that map to
  109. * one Zephyr power state. This property allows the platform
  110. * distinguish them. e.g:
  111. *
  112. * power-states {
  113. * state0: state0 {
  114. * compatible = "zephyr,power-state";
  115. * power-state-name = "suspend-to-idle";
  116. * substate-id = <1>;
  117. * min-residency-us = <10000>;
  118. * exit-latency-us = <100>;
  119. * };
  120. * state1: state1 {
  121. * compatible = "zephyr,power-state";
  122. * power-state-name = "suspend-to-idle";
  123. * substate-id = <2>;
  124. * min-residency-us = <20000>;
  125. * exit-latency-us = <200>;
  126. * };
  127. * }
  128. */
  129. uint8_t substate_id;
  130. /**
  131. * Minimum residency duration in microseconds. It is the minimum
  132. * time for a given idle state to be worthwhile energywise.
  133. *
  134. * @note 0 means that this property is not available for this state.
  135. */
  136. uint32_t min_residency_us;
  137. /**
  138. * Worst case latency in microseconds required to exit the idle state.
  139. *
  140. * @note 0 means that this property is not available for this state.
  141. */
  142. uint32_t exit_latency_us;
  143. };
  144. /**
  145. * @brief Construct a pm_state_info from 'cpu-power-states' property at index 'i'
  146. *
  147. * @param node_id A node identifier with compatible zephyr,power-state
  148. * @param i index into cpu-power-states property
  149. * @return pm_state_info item from 'cpu-power-states' property at index 'i'
  150. */
  151. #define PM_STATE_INFO_DT_ITEM_BY_IDX(node_id, i) \
  152. { \
  153. .state = DT_ENUM_IDX(DT_PHANDLE_BY_IDX(node_id, \
  154. cpu_power_states, i), power_state_name), \
  155. .substate_id = DT_PROP_BY_PHANDLE_IDX_OR(node_id, \
  156. cpu_power_states, i, substate_id, 0), \
  157. .min_residency_us = DT_PROP_BY_PHANDLE_IDX_OR(node_id, \
  158. cpu_power_states, i, min_residency_us, 0),\
  159. .exit_latency_us = DT_PROP_BY_PHANDLE_IDX_OR(node_id, \
  160. cpu_power_states, i, exit_latency_us, 0),\
  161. },
  162. /**
  163. * @brief Length of 'cpu-power-states' property
  164. *
  165. * @param node_id A node identifier with compatible zephyr,power-state
  166. * @return length of 'cpu-power-states' property
  167. */
  168. #define PM_STATE_DT_ITEMS_LEN(node_id) \
  169. DT_PROP_LEN_OR(node_id, cpu_power_states, 0)
  170. /**
  171. * @brief Macro function to construct enum pm_state item in UTIL_LISTIFY
  172. * extension.
  173. *
  174. * @param child child index in UTIL_LISTIFY extension.
  175. * @param node_id A node identifier with compatible zephyr,power-state
  176. * @return macro function to construct a pm_state_info
  177. */
  178. #define PM_STATE_INFO_DT_ITEMS_LISTIFY_FUNC(child, node_id) \
  179. PM_STATE_INFO_DT_ITEM_BY_IDX(node_id, child)
  180. /**
  181. * @brief Macro function to construct a list of 'pm_state_info' items by
  182. * UTIL_LISTIFY func
  183. *
  184. * Example devicetree fragment:
  185. * cpus {
  186. * ...
  187. * cpu0: cpu@0 {
  188. * device_type = "cpu";
  189. * ...
  190. * cpu-power-states = <&state0 &state1>;
  191. * };
  192. * };
  193. *
  194. * ...
  195. * power-states {
  196. * state0: state0 {
  197. * compatible = "zephyr,power-state";
  198. * power-state-name = "suspend-to-idle";
  199. * min-residency-us = <10000>;
  200. * exit-latency-us = <100>;
  201. * };
  202. *
  203. * state1: state1 {
  204. * compatible = "zephyr,power-state";
  205. * power-state-name = "suspend-to-ram";
  206. * min-residency-us = <50000>;
  207. * exit-latency-us = <500>;
  208. * };
  209. * };
  210. *
  211. * Example usage: *
  212. * const struct pm_state_info states[] =
  213. * PM_STATE_INFO_DT_ITEMS_LIST(DT_NODELABEL(cpu0));
  214. *
  215. * @param node_id A node identifier with compatible zephyr,power-state
  216. * @return an array of struct pm_state_info.
  217. */
  218. #define PM_STATE_INFO_DT_ITEMS_LIST(node_id) { \
  219. UTIL_LISTIFY(PM_STATE_DT_ITEMS_LEN(node_id), \
  220. PM_STATE_INFO_DT_ITEMS_LISTIFY_FUNC,\
  221. node_id) \
  222. }
  223. /**
  224. * @brief Construct a pm_state enum from 'cpu-power-states' property
  225. * at index 'i'
  226. *
  227. * @param node_id A node identifier with compatible zephyr,power-state
  228. * @param i index into cpu-power-states property
  229. * @return pm_state item from 'cpu-power-states' property at index 'i'
  230. */
  231. #define PM_STATE_DT_ITEM_BY_IDX(node_id, i) \
  232. DT_ENUM_IDX(DT_PHANDLE_BY_IDX(node_id, \
  233. cpu_power_states, i), power_state_name),
  234. /**
  235. * @brief Macro function to construct enum pm_state item in UTIL_LISTIFY
  236. * extension.
  237. *
  238. * @param child child index in UTIL_LISTIFY extension.
  239. * @param node_id A node identifier with compatible zephyr,power-state
  240. * @return macro function to construct a pm_state enum
  241. */
  242. #define PM_STATE_DT_ITEMS_LISTIFY_FUNC(child, node_id) \
  243. PM_STATE_DT_ITEM_BY_IDX(node_id, child)
  244. /**
  245. * @brief Macro function to construct a list of enum pm_state items by
  246. * UTIL_LISTIFY func
  247. *
  248. * Example devicetree fragment:
  249. * cpus {
  250. * ...
  251. * cpu0: cpu@0 {
  252. * device_type = "cpu";
  253. * ...
  254. * cpu-power-states = <&state0 &state1>;
  255. * };
  256. * };
  257. *
  258. * ...
  259. * state0: state0 {
  260. * compatible = "zephyr,power-state";
  261. * power-state-name = "suspend-to-idle";
  262. * min-residency-us = <10000>;
  263. * exit-latency-us = <100>;
  264. * };
  265. *
  266. * state1: state1 {
  267. * compatible = "zephyr,power-state";
  268. * power-state-name = "suspend-to-ram";
  269. * min-residency-us = <50000>;
  270. * exit-latency-us = <500>;
  271. * };
  272. *
  273. * Example usage: *
  274. * const enum pm_state states[] = PM_STATE_DT_ITEMS_LIST(DT_NODELABEL(cpu0));
  275. *
  276. * @param node_id A node identifier with compatible zephyr,power-state
  277. * @return an array of enum pm_state items.
  278. */
  279. #define PM_STATE_DT_ITEMS_LIST(node_id) { \
  280. UTIL_LISTIFY(PM_STATE_DT_ITEMS_LEN(node_id),\
  281. PM_STATE_DT_ITEMS_LISTIFY_FUNC,\
  282. node_id) \
  283. }
  284. /**
  285. * @}
  286. */
  287. #ifdef __cplusplus
  288. }
  289. #endif
  290. #endif