device_runtime.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /*
  2. * Copyright (c) 2015 Intel Corporation.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_PM_DEVICE_RUNTIME_H_
  7. #define ZEPHYR_INCLUDE_PM_DEVICE_RUNTIME_H_
  8. #include <device.h>
  9. #include <kernel.h>
  10. #include <sys/atomic.h>
  11. #ifdef __cplusplus
  12. extern "C" {
  13. #endif
  14. /**
  15. * @brief Runtime Power Management API
  16. *
  17. * @defgroup runtime_power_management_api Runtime Power Management API
  18. * @ingroup power_management_api
  19. * @{
  20. */
  21. #ifdef CONFIG_PM_DEVICE_RUNTIME
  22. /**
  23. * @brief Enable device runtime PM
  24. *
  25. * Called by a device driver to enable device runtime power management.
  26. * The device might be asynchronously suspended if runtime PM is enabled
  27. * when the device is not use.
  28. *
  29. * @funcprops \pre_kernel_ok
  30. *
  31. * @param dev Pointer to device structure of the specific device driver
  32. * the caller is interested in.
  33. */
  34. void pm_device_enable(const struct device *dev);
  35. /**
  36. * @brief Disable device runtime PM
  37. *
  38. * Called by a device driver to disable device runtime power management.
  39. * The device might be asynchronously resumed if runtime PM is disabled
  40. *
  41. * @funcprops \pre_kernel_ok
  42. *
  43. * @param dev Pointer to device structure of the specific device driver
  44. * the caller is interested in.
  45. */
  46. void pm_device_disable(const struct device *dev);
  47. /**
  48. * @brief Call device resume asynchronously based on usage count
  49. *
  50. * Called by a device driver to mark the device as being used.
  51. * This API will asynchronously bring the device to resume state
  52. * if it not already in active state.
  53. *
  54. * @funcprops \isr_ok, \pre_kernel_ok
  55. *
  56. * @param dev Pointer to device structure of the specific device driver
  57. * the caller is interested in.
  58. * @retval 0 If successfully queued the Async request. If queued,
  59. * the caller need to wait on the poll event linked to device
  60. * pm signal mechanism to know the completion of resume operation.
  61. * @retval Errno Negative errno code if failure.
  62. */
  63. int pm_device_get_async(const struct device *dev);
  64. /**
  65. * @brief Call device resume synchronously based on usage count
  66. *
  67. * Called by a device driver to mark the device as being used. It
  68. * will bring up or resume the device if it is in suspended state
  69. * based on the device usage count. This call is blocked until the
  70. * device PM state is changed to resume.
  71. *
  72. * @param dev Pointer to device structure of the specific device driver
  73. * the caller is interested in.
  74. * @retval 0 If successful.
  75. * @retval Errno Negative errno code if failure.
  76. */
  77. int pm_device_get(const struct device *dev);
  78. /**
  79. * @brief Call device suspend asynchronously based on usage count
  80. *
  81. * Called by a device driver to mark the device as being released.
  82. * This API asynchronously put the device to suspend state if
  83. * it not already in suspended state.
  84. *
  85. * @funcprops \isr_ok, \pre_kernel_ok
  86. *
  87. * @param dev Pointer to device structure of the specific device driver
  88. * the caller is interested in.
  89. * @retval 0 If successfully queued the Async request. If queued,
  90. * the caller need to wait on the poll event linked to device pm
  91. * signal mechanism to know the completion of suspend operation.
  92. * @retval Errno Negative errno code if failure.
  93. */
  94. int pm_device_put_async(const struct device *dev);
  95. /**
  96. * @brief Call device suspend synchronously based on usage count
  97. *
  98. * Called by a device driver to mark the device as being released. It
  99. * will put the device to suspended state if is is in active state
  100. * based on the device usage count. This call is blocked until the
  101. * device PM state is changed to resume.
  102. *
  103. * @param dev Pointer to device structure of the specific device driver
  104. * the caller is interested in.
  105. * @retval 0 If successful.
  106. * @retval Errno Negative errno code if failure.
  107. */
  108. int pm_device_put(const struct device *dev);
  109. /**
  110. * @brief Wait on a device to finish an operation.
  111. *
  112. * The calling thread blocks until the device finishes a
  113. * @ref pm_device_put_async or @ref pm_device_get_async operation. If there is
  114. * no operation in progress this function will return immediately.
  115. *
  116. * @param dev Pointer to device structure of the specific device driver
  117. * the caller is interested in.
  118. * @param timeout The timeout passed to k_condvar_wait. If a timeout happens
  119. * this function will return immediately.
  120. * @retval 0 If successful.
  121. * @retval Errno Negative errno code if failure.
  122. */
  123. int pm_device_wait(const struct device *dev, k_timeout_t timeout);
  124. #else
  125. static inline void pm_device_enable(const struct device *dev) { }
  126. static inline void pm_device_disable(const struct device *dev) { }
  127. static inline int pm_device_get(const struct device *dev) { return -ENOSYS; }
  128. static inline int pm_device_get_async(const struct device *dev) { return -ENOSYS; }
  129. static inline int pm_device_put(const struct device *dev) { return -ENOSYS; }
  130. static inline int pm_device_put_async(const struct device *dev) { return -ENOSYS; }
  131. static inline int pm_device_wait(const struct device *dev,
  132. k_timeout_t timeout) { return -ENOSYS; }
  133. #endif
  134. /** @} */
  135. #endif /* ZEPHYR_INCLUDE_PM_DEVICE_RUNTIME_H_ */