audio_channel_sel.h 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /**
  2. * @file
  3. *
  4. * @brief Public APIs for the audio channel select drivers.
  5. */
  6. /*
  7. * Copyright (c) 2021 Action Corporation
  8. *
  9. * SPDX-License-Identifier: Apache-2.0
  10. */
  11. #include <zephyr/types.h>
  12. #include <device.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. struct audio_chansel_data {
  17. union {
  18. struct{
  19. uint8_t GPIO_Pin; // GPIO 管脚, CFG_TYPE_GPIO_PIN
  20. uint8_t Pull_Up_Down; // 上下拉, CFG_TYPE_GPIO_PULL
  21. uint8_t Active_Level; // 有效电平, CFG_TYPE_GPIO_LEVEL
  22. }CFG_Type_Channel_Select_GPIO;
  23. struct{
  24. uint8_t LRADC_Pull_Up; // LRADC 上拉电阻, CFG_TYPE_LRADC_PULL_UP
  25. uint8_t ADC_Min; // ADC 阈值下限, 0x00 ~ 0x7F
  26. uint8_t ADC_Max; // ADC 阈值上限, 0x00 ~ 0x7F
  27. uint32_t LRADC_Ctrl; // LRADC 控制器, CFG_TYPE_LRADC_CTRL
  28. }CFG_Type_Channel_Select_LRADC;
  29. };
  30. };
  31. typedef int (*audio_api_chan_sel_t)(const struct device *dev, struct audio_chansel_data *data);
  32. __subsystem struct audio_chan_sel_driver_api {
  33. audio_api_chan_sel_t chan_sel;
  34. };
  35. /**
  36. * @brief select channel for audio.
  37. *
  38. * @param dev Pointer to the device structure for the driver instance.
  39. * @param audio_chansel_data choose two type way for the channel select.
  40. *
  41. * @retval 0 If successful.
  42. * @retval -EIO General input / output error, failed.
  43. */
  44. static inline int audio_chan_sel(const struct device *dev, struct audio_chansel_data *data)
  45. {
  46. const struct audio_chan_sel_driver_api *api =
  47. (const struct audio_chan_sel_driver_api *)dev->api;
  48. return api->chan_sel(dev, data);
  49. }
  50. #ifdef __cplusplus
  51. }
  52. #endif