clock_control.h 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242
  1. /* clock_control.h - public clock controller driver API */
  2. /*
  3. * Copyright (c) 2015 Intel Corporation
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. /**
  8. * @file
  9. * @brief Public Clock Control APIs
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_H_
  13. /**
  14. * @brief Clock Control Interface
  15. * @defgroup clock_control_interface Clock Control Interface
  16. * @ingroup io_interfaces
  17. * @{
  18. */
  19. #include <zephyr/types.h>
  20. #include <stddef.h>
  21. #include <device.h>
  22. #include <sys/__assert.h>
  23. #include <sys/slist.h>
  24. #ifdef __cplusplus
  25. extern "C" {
  26. #endif
  27. /* Clock control API */
  28. /* Used to select all subsystem of a clock controller */
  29. #define CLOCK_CONTROL_SUBSYS_ALL NULL
  30. /**
  31. * @brief Current clock status.
  32. */
  33. enum clock_control_status {
  34. CLOCK_CONTROL_STATUS_STARTING,
  35. CLOCK_CONTROL_STATUS_OFF,
  36. CLOCK_CONTROL_STATUS_ON,
  37. CLOCK_CONTROL_STATUS_UNAVAILABLE,
  38. CLOCK_CONTROL_STATUS_UNKNOWN
  39. };
  40. /**
  41. * clock_control_subsys_t is a type to identify a clock controller sub-system.
  42. * Such data pointed is opaque and relevant only to the clock controller
  43. * driver instance being used.
  44. */
  45. typedef void *clock_control_subsys_t;
  46. /** @brief Callback called on clock started.
  47. *
  48. * @param dev Device structure whose driver controls the clock.
  49. * @param subsys Opaque data representing the clock.
  50. * @param user_data User data.
  51. */
  52. typedef void (*clock_control_cb_t)(const struct device *dev,
  53. clock_control_subsys_t subsys,
  54. void *user_data);
  55. typedef int (*clock_control)(const struct device *dev,
  56. clock_control_subsys_t sys);
  57. typedef int (*clock_control_get)(const struct device *dev,
  58. clock_control_subsys_t sys,
  59. uint32_t *rate);
  60. typedef int (*clock_control_async_on_fn)(const struct device *dev,
  61. clock_control_subsys_t sys,
  62. clock_control_cb_t cb,
  63. void *user_data);
  64. typedef enum clock_control_status (*clock_control_get_status_fn)(
  65. const struct device *dev,
  66. clock_control_subsys_t sys);
  67. struct clock_control_driver_api {
  68. clock_control on;
  69. clock_control off;
  70. clock_control_async_on_fn async_on;
  71. clock_control_get get_rate;
  72. clock_control_get_status_fn get_status;
  73. };
  74. /**
  75. * @brief Enable a clock controlled by the device
  76. *
  77. * On success, the clock is enabled and ready when this function
  78. * returns. This function may sleep, and thus can only be called from
  79. * thread context.
  80. *
  81. * Use @ref clock_control_async_on() for non-blocking operation.
  82. *
  83. * @param dev Device structure whose driver controls the clock.
  84. * @param sys Opaque data representing the clock.
  85. * @return 0 on success, negative errno on failure.
  86. */
  87. static inline int clock_control_on(const struct device *dev,
  88. clock_control_subsys_t sys)
  89. {
  90. int ret = device_usable_check(dev);
  91. if (ret != 0) {
  92. return ret;
  93. }
  94. const struct clock_control_driver_api *api =
  95. (const struct clock_control_driver_api *)dev->api;
  96. return api->on(dev, sys);
  97. }
  98. /**
  99. * @brief Disable a clock controlled by the device
  100. *
  101. * This function is non-blocking and can be called from any context.
  102. * On success, the clock is disabled when this function returns.
  103. *
  104. * @param dev Device structure whose driver controls the clock
  105. * @param sys Opaque data representing the clock
  106. * @return 0 on success, negative errno on failure.
  107. */
  108. static inline int clock_control_off(const struct device *dev,
  109. clock_control_subsys_t sys)
  110. {
  111. int ret = device_usable_check(dev);
  112. if (ret != 0) {
  113. return ret;
  114. }
  115. const struct clock_control_driver_api *api =
  116. (const struct clock_control_driver_api *)dev->api;
  117. return api->off(dev, sys);
  118. }
  119. /**
  120. * @brief Request clock to start with notification when clock has been started.
  121. *
  122. * Function is non-blocking and can be called from any context. User callback is
  123. * called when clock is started.
  124. *
  125. * @param dev Device.
  126. * @param sys A pointer to an opaque data representing the sub-system.
  127. * @param cb Callback.
  128. * @param user_data User context passed to the callback.
  129. *
  130. * @retval 0 if start is successfully initiated.
  131. * @retval -EALREADY if clock was already started and is starting or running.
  132. * @retval -ENOTSUP If the requested mode of operation is not supported.
  133. * @retval -ENOSYS if the interface is not implemented.
  134. * @retval other negative errno on vendor specific error.
  135. */
  136. static inline int clock_control_async_on(const struct device *dev,
  137. clock_control_subsys_t sys,
  138. clock_control_cb_t cb,
  139. void *user_data)
  140. {
  141. const struct clock_control_driver_api *api =
  142. (const struct clock_control_driver_api *)dev->api;
  143. if (api->async_on == NULL) {
  144. return -ENOSYS;
  145. }
  146. int ret = device_usable_check(dev);
  147. if (ret != 0) {
  148. return ret;
  149. }
  150. return api->async_on(dev, sys, cb, user_data);
  151. }
  152. /**
  153. * @brief Get clock status.
  154. *
  155. * @param dev Device.
  156. * @param sys A pointer to an opaque data representing the sub-system.
  157. *
  158. * @return Status.
  159. */
  160. static inline enum clock_control_status clock_control_get_status(const struct device *dev,
  161. clock_control_subsys_t sys)
  162. {
  163. const struct clock_control_driver_api *api =
  164. (const struct clock_control_driver_api *)dev->api;
  165. if (!api->get_status) {
  166. return CLOCK_CONTROL_STATUS_UNKNOWN;
  167. }
  168. if (!device_is_ready(dev)) {
  169. return CLOCK_CONTROL_STATUS_UNAVAILABLE;
  170. }
  171. return api->get_status(dev, sys);
  172. }
  173. /**
  174. * @brief Obtain the clock rate of given sub-system
  175. * @param dev Pointer to the device structure for the clock controller driver
  176. * instance
  177. * @param sys A pointer to an opaque data representing the sub-system
  178. * @param[out] rate Subsystem clock rate
  179. */
  180. static inline int clock_control_get_rate(const struct device *dev,
  181. clock_control_subsys_t sys,
  182. uint32_t *rate)
  183. {
  184. int ret = device_usable_check(dev);
  185. if (ret != 0) {
  186. return ret;
  187. }
  188. const struct clock_control_driver_api *api =
  189. (const struct clock_control_driver_api *)dev->api;
  190. if (api->get_rate == NULL) {
  191. return -ENOSYS;
  192. }
  193. return api->get_rate(dev, sys, rate);
  194. }
  195. #ifdef __cplusplus
  196. }
  197. #endif
  198. /**
  199. * @}
  200. */
  201. #endif /* ZEPHYR_INCLUDE_DRIVERS_CLOCK_CONTROL_H_ */