dac.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. /*
  2. * Copyright (c) 2020 Libre Solar Technologies GmbH
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief DAC public API header file.
  9. */
  10. #ifndef ZEPHYR_INCLUDE_DRIVERS_DAC_H_
  11. #define ZEPHYR_INCLUDE_DRIVERS_DAC_H_
  12. #include <device.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @brief DAC driver APIs
  18. * @defgroup dac_interface DAC driver APIs
  19. * @ingroup io_interfaces
  20. * @{
  21. */
  22. /**
  23. * @struct dac_channel_cfg
  24. * @brief Structure for specifying the configuration of a DAC channel.
  25. *
  26. * @param channel_id Channel identifier of the DAC that should be configured.
  27. * @param resolution Desired resolution of the DAC (depends on device
  28. * capabilities).
  29. */
  30. struct dac_channel_cfg {
  31. uint8_t channel_id;
  32. uint8_t resolution;
  33. };
  34. /**
  35. * @cond INTERNAL_HIDDEN
  36. *
  37. * For internal use only, skip these in public documentation.
  38. */
  39. /*
  40. * Type definition of DAC API function for configuring a channel.
  41. * See dac_channel_setup() for argument descriptions.
  42. */
  43. typedef int (*dac_api_channel_setup)(const struct device *dev,
  44. const struct dac_channel_cfg *channel_cfg);
  45. /*
  46. * Type definition of DAC API function for setting a write request.
  47. * See dac_write_value() for argument descriptions.
  48. */
  49. typedef int (*dac_api_write_value)(const struct device *dev,
  50. uint8_t channel, uint32_t value);
  51. /*
  52. * DAC driver API
  53. *
  54. * This is the mandatory API any DAC driver needs to expose.
  55. */
  56. __subsystem struct dac_driver_api {
  57. dac_api_channel_setup channel_setup;
  58. dac_api_write_value write_value;
  59. };
  60. /**
  61. * @endcond
  62. */
  63. /**
  64. * @brief Configure a DAC channel.
  65. *
  66. * It is required to call this function and configure each channel before it is
  67. * selected for a write request.
  68. *
  69. * @param dev Pointer to the device structure for the driver instance.
  70. * @param channel_cfg Channel configuration.
  71. *
  72. * @retval 0 On success.
  73. * @retval -EINVAL If a parameter with an invalid value has been provided.
  74. * @retval -ENOTSUP If the requested resolution is not supported.
  75. */
  76. __syscall int dac_channel_setup(const struct device *dev,
  77. const struct dac_channel_cfg *channel_cfg);
  78. static inline int z_impl_dac_channel_setup(const struct device *dev,
  79. const struct dac_channel_cfg *channel_cfg)
  80. {
  81. const struct dac_driver_api *api =
  82. (const struct dac_driver_api *)dev->api;
  83. return api->channel_setup(dev, channel_cfg);
  84. }
  85. /**
  86. * @brief Write a single value to a DAC channel
  87. *
  88. * @param dev Pointer to the device structure for the driver instance.
  89. * @param channel Number of the channel to be used.
  90. * @param value Data to be written to DAC output registers.
  91. *
  92. * @retval 0 On success.
  93. * @retval -EINVAL If a parameter with an invalid value has been provided.
  94. */
  95. __syscall int dac_write_value(const struct device *dev, uint8_t channel,
  96. uint32_t value);
  97. static inline int z_impl_dac_write_value(const struct device *dev,
  98. uint8_t channel, uint32_t value)
  99. {
  100. const struct dac_driver_api *api =
  101. (const struct dac_driver_api *)dev->api;
  102. return api->write_value(dev, channel, value);
  103. }
  104. /**
  105. * @}
  106. */
  107. #ifdef __cplusplus
  108. }
  109. #endif
  110. #include <syscalls/dac.h>
  111. #endif /* ZEPHYR_INCLUDE_DRIVERS_DAC_H_ */