regulator.h 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104
  1. /*
  2. * Copyright 2019-2020 Peter Bigot Consulting, LLC
  3. * SPDX-License-Identifier: Apache-2.0
  4. */
  5. /**
  6. * @file
  7. * @brief API for voltage and current regulators.
  8. */
  9. #ifndef ZEPHYR_INCLUDE_DRIVERS_REGULATOR_H_
  10. #define ZEPHYR_INCLUDE_DRIVERS_REGULATOR_H_
  11. /**
  12. * @brief Regulator Interface
  13. * @defgroup regulator_interface Regulator Interface
  14. * @ingroup io_interfaces
  15. * @{
  16. */
  17. #include <zephyr/types.h>
  18. #include <drivers/gpio.h>
  19. #include <sys/onoff.h>
  20. #ifdef __cplusplus
  21. extern "C" {
  22. #endif
  23. /**
  24. * @brief Driver-specific API functions to support regulator control.
  25. */
  26. __subsystem struct regulator_driver_api {
  27. int (*enable)(const struct device *dev, struct onoff_client *cli);
  28. int (*disable)(const struct device *dev);
  29. };
  30. /**
  31. * @brief Enable a regulator.
  32. *
  33. * Reference-counted request that a regulator be turned on. This is
  34. * an asynchronous operation; if successfully initiated the result
  35. * will be communicated through the @p cli parameter.
  36. *
  37. * A regulator is considered "on" when it has reached a stable/usable
  38. * state.
  39. *
  40. * @note This function is *isr-ok* and *pre-kernel-ok*.
  41. *
  42. * @param reg a regulator device
  43. *
  44. * @param cli used to notify the caller when the attempt to turn on
  45. * the regulator has completed.
  46. *
  47. * @return non-negative on successful initiation of the request.
  48. * Negative values indicate failures from onoff_request() or
  49. * individual regulator drivers.
  50. */
  51. static inline int regulator_enable(const struct device *reg,
  52. struct onoff_client *cli)
  53. {
  54. const struct regulator_driver_api *api =
  55. (const struct regulator_driver_api *)reg->api;
  56. return api->enable(reg, cli);
  57. }
  58. /**
  59. * @brief Disable a regulator.
  60. *
  61. * Release a regulator after a previous regulator_enable() completed
  62. * successfully.
  63. *
  64. * If the release removes the last dependency on the regulator it will
  65. * begin a transition to its "off" state. There is currently no
  66. * mechanism to notify when the regulator has completely turned off.
  67. *
  68. * This must be invoked at most once for each successful
  69. * regulator_enable().
  70. *
  71. * @note This function is *isr-ok*.
  72. *
  73. * @param reg a regulator device
  74. *
  75. * @return non-negative on successful completion of the release
  76. * request. Negative values indicate failures from onoff_release() or
  77. * individual regulator drivers.
  78. */
  79. static inline int regulator_disable(const struct device *reg)
  80. {
  81. const struct regulator_driver_api *api =
  82. (const struct regulator_driver_api *)reg->api;
  83. return api->disable(reg);
  84. }
  85. #ifdef __cplusplus
  86. }
  87. #endif
  88. /**
  89. * @}
  90. */
  91. #endif /* ZEPHYR_INCLUDE_DRIVERS_REGULATOR_H_ */