power.h 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124
  1. /*
  2. * Copyright (c) 2012-2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef __INCpower
  7. #define __INCpower
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11. #ifdef CONFIG_SYS_POWER_MANAGEMENT
  12. /* Constants identifying power state categories */
  13. #define SYS_PM_ACTIVE_STATE 0 /* SOC and CPU are in active state */
  14. #define SYS_PM_LOW_POWER_STATE 1 /* CPU low power state */
  15. #define SYS_PM_DEEP_SLEEP 2 /* SOC low power state */
  16. #define SYS_PM_NOT_HANDLED SYS_PM_ACTIVE_STATE
  17. extern unsigned char _sys_pm_idle_exit_notify;
  18. /**
  19. * @brief Power Management Hook Interface
  20. *
  21. * @defgroup power_management_hook_interface Power Management Hook Interface
  22. * @ingroup power_management_api
  23. * @{
  24. */
  25. /**
  26. * @brief Function to disable power management idle exit notification
  27. *
  28. * _sys_soc_resume() would be called from the ISR of the event that caused
  29. * exit from kernel idling after PM operations. For some power operations,
  30. * this notification may not be necessary. This function can be called in
  31. * _sys_soc_suspend to disable the corresponding _sys_soc_resume notification.
  32. *
  33. */
  34. static inline void _sys_soc_pm_idle_exit_notification_disable(void)
  35. {
  36. _sys_pm_idle_exit_notify = 0;
  37. }
  38. /**
  39. * @brief Hook function to notify exit from deep sleep
  40. *
  41. * The purpose of this function is to notify exit from
  42. * deep sleep. The implementation of this function can vary
  43. * depending on the soc specific boot flow.
  44. *
  45. * This function would switch cpu context to the execution point at the time
  46. * system entered deep sleep power state. Some implementations may not require
  47. * use of this function e.g. the BSP or boot loader may do the context switch.
  48. *
  49. * In boot flows where this function gets called even at cold boot, the
  50. * function should return immediately.
  51. *
  52. */
  53. void _sys_soc_resume_from_deep_sleep(void);
  54. /**
  55. * @brief Hook function to notify exit from kernel idling after PM operations
  56. *
  57. * This function would notify exit from kernel idling if a corresponding
  58. * _sys_soc_suspend() notification was handled and did not return
  59. * SYS_PM_NOT_HANDLED.
  60. *
  61. * This function would be called from the ISR context of the event
  62. * that caused the exit from kernel idling. This will be called immediately
  63. * after interrupts are enabled. This is called to give a chance to do
  64. * any operations before the kernel would switch tasks or processes nested
  65. * interrupts. This is required for cpu low power states that would require
  66. * interrupts to be enabled while entering low power states. e.g. C1 in x86. In
  67. * those cases, the ISR would be invoked immediately after the event wakes up
  68. * the CPU, before code following the CPU wait, gets a chance to execute. This
  69. * can be ignored if no operation needs to be done at the wake event
  70. * notification. Alternatively _sys_soc_pm_idle_exit_notification_disable() can
  71. * be called in _sys_soc_suspend to disable this notification.
  72. *
  73. */
  74. void _sys_soc_resume(void);
  75. /**
  76. * @brief Hook function to allow entry to low power state
  77. *
  78. * This function is called by the kernel when it is about to idle.
  79. * It is passed the number of clock ticks that the kernel calculated
  80. * as available time to idle.
  81. *
  82. * The implementation of this function is dependent on the soc specific
  83. * components and the various schemes they support. Some implementations
  84. * may choose to do device PM operations in this function, while others
  85. * would not need to, because they would have done it at other places.
  86. *
  87. * Typically a wake event is set and the soc or cpu is put to any of the
  88. * supported low power states. The wake event should be set to wake up
  89. * the soc or cpu before the available idle time expires to avoid disrupting
  90. * the kernel's scheduling.
  91. *
  92. * This function is entered with interrupts disabled. It should
  93. * re-enable interrupts if it had entered a low power state.
  94. *
  95. * @param ticks the upcoming kernel idle time
  96. *
  97. * @retval SYS_PM_NOT_HANDLED If low power state was not entered.
  98. * @retval SYS_PM_LOW_POWER_STATE If CPU low power state was entered.
  99. * @retval SYS_PM_DEEP_SLEEP If SOC low power state was entered.
  100. */
  101. extern int _sys_soc_suspend(int32_t ticks);
  102. /**
  103. * @}
  104. */
  105. #endif /* CONFIG_SYS_POWER_MANAGEMENT */
  106. #ifdef __cplusplus
  107. }
  108. #endif
  109. #endif /* __INCpower */