adc_emul.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. /**
  2. * @file
  3. *
  4. * @brief Backend API for emulated ADC
  5. */
  6. /*
  7. * Copyright 2021 Google LLC
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #ifndef ZEPHYR_INCLUDE_DRIVERS_ADC_ADC_EMUL_H_
  12. #define ZEPHYR_INCLUDE_DRIVERS_ADC_ADC_EMUL_H_
  13. #include <zephyr/types.h>
  14. #include <drivers/adc.h>
  15. #ifdef __cplusplus
  16. extern "C" {
  17. #endif
  18. /**
  19. * @brief Emulated ADC backend API
  20. * @defgroup adc_emul Emulated ADC
  21. * @ingroup adc_interface
  22. * @{
  23. *
  24. * Behaviour of emulated ADC is application-defined. As-such, each
  25. * application may
  26. *
  27. * - define a Device Tree overlay file to indicate the number of ADC
  28. * controllers as well as the number of channels for each controller
  29. * - set default reference voltages in Device Tree or using
  30. * @ref adc_emul_ref_voltage_set
  31. * - asynchronously call @ref adc_emul_const_value_set in order to set
  32. * constant mV value on emulated ADC input
  33. * - asynchronously call @ref adc_emul_value_func_set in order to assign
  34. * function which will be used to obtain voltage on emulated ADC input
  35. *
  36. * An example of an appropriate Device Tree overlay file is in
  37. * tests/drivers/adc/adc_api/boards/native_posix.overlay
  38. *
  39. * An example of using emulated ADC backend API is in the file
  40. * tests/drivers/adc/adc_emul/src/main.c
  41. */
  42. /**
  43. * @brief Type definition of the function which is used to obtain ADC
  44. * mV input values
  45. *
  46. * @param dev Pointer to the device structure for the driver instance
  47. * @param chan ADC channel to sample
  48. * @param data User data which was passed on @ref adc_emul_value_func_set
  49. * @param result The result value which will be set as input for ADC @p chan
  50. *
  51. * @return 0 on success
  52. * @return other as error code which ends ADC context
  53. */
  54. typedef int (*adc_emul_value_func)(const struct device *dev, unsigned int chan,
  55. void *data, uint32_t *result);
  56. /**
  57. * @brief Set constant mV value input for emulated ADC @p chan
  58. *
  59. * @param dev The emulated ADC device
  60. * @param chan The channel of ADC which input is assigned
  61. * @param value New voltage in mV to assign to @p chan input
  62. *
  63. * @return 0 on success
  64. * @return -EINVAL if an invalid argument is provided
  65. */
  66. int adc_emul_const_value_set(const struct device *dev, unsigned int chan,
  67. uint32_t value);
  68. /**
  69. * @brief Set function used to obtain voltage for input of emulated
  70. * ADC @p chan
  71. *
  72. * @param dev The emulated ADC device
  73. * @param chan The channel of ADC to which @p func is assigned
  74. * @param func New function to assign to @p chan
  75. * @param data Pointer to data passed to @p func on call
  76. *
  77. * @return 0 on success
  78. * @return -EINVAL if an invalid argument is provided
  79. */
  80. int adc_emul_value_func_set(const struct device *dev, unsigned int chan,
  81. adc_emul_value_func func, void *data);
  82. /**
  83. * @brief Set reference voltage
  84. *
  85. * @param dev The emulated ADC device
  86. * @param ref Reference config which is changed
  87. * @param value New reference voltage in mV
  88. *
  89. * @return 0 on success
  90. * @return -EINVAL if an invalid argument is provided
  91. */
  92. int adc_emul_ref_voltage_set(const struct device *dev, enum adc_reference ref,
  93. uint16_t value);
  94. /**
  95. * @}
  96. */
  97. #ifdef __cplusplus
  98. }
  99. #endif
  100. #endif /* ZEPHYR_INCLUDE_DRIVERS_ADC_ADC_EMUL_H_ */