audio_hal.h 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Audio HAL
  9. */
  10. #ifndef __AUDIO_HAL_H__
  11. #define __AUDIO_HAL_H__
  12. #include <os_common_api.h>
  13. #include <assert.h>
  14. #include <string.h>
  15. #include <drivers/audio/audio_out.h>
  16. #include <drivers/audio/audio_in.h>
  17. //#include <dma.h>
  18. /**
  19. ** audio out hal context struct
  20. **/
  21. typedef struct {
  22. struct device *aout_dev;
  23. } hal_audio_out_context_t;
  24. /**
  25. ** audio in hal context struct
  26. **/
  27. typedef struct {
  28. struct device *ain_dev;
  29. } hal_audio_in_context_t;
  30. #define AUDIO_CHANNEL_DAC (1 << 0)
  31. #define AUDIO_CHANNEL_I2STX (1 << 1)
  32. #define AUDIO_CHANNEL_SPDIFTX (1 << 2)
  33. #define AUDIO_CHANNEL_ADC (1 << 3)
  34. #define AUDIO_CHANNEL_I2SRX (1 << 4)
  35. #define AUDIO_CHANNEL_SPDIFRX (1 << 5)
  36. #define APS_LEVEL_1 0
  37. #define APS_LEVEL_2 1
  38. #define APS_LEVEL_3 2
  39. #define APS_LEVEL_4 3
  40. #define APS_LEVEL_5 4
  41. #define APS_LEVEL_6 5
  42. #define APS_LEVEL_7 6
  43. #define APS_LEVEL_8 7
  44. #define AOUT_DMA_IRQ_HF (1 << 0) /*!< DMA irq half full flag */
  45. #define AOUT_DMA_IRQ_TC (1 << 1) /*!< DMA irq transfer completly flag */
  46. #define AOUT_FIFO_DAC0 0
  47. #define AOUT_FIFO_DAC1 1
  48. #define AOUT_FIFO_I2STX0 2
  49. #define AUDIO_INPUT_DEV_NONE 0xff
  50. /**
  51. * audio out init param
  52. **/
  53. typedef struct {
  54. uint8_t aa_mode:1;
  55. uint8_t need_dma:1;
  56. uint8_t dma_reload:1;
  57. uint8_t out_to_pa:1;
  58. uint8_t out_to_i2s:1;
  59. uint8_t out_to_spdif:1;
  60. uint8_t sample_cnt_enable:1;
  61. uint8_t sample_rate;
  62. uint8_t channel_type;
  63. uint8_t channel_id;
  64. uint8_t channel_mode;
  65. uint8_t data_width;
  66. uint16_t reload_len;
  67. uint8_t *reload_addr;
  68. int left_volume;
  69. int right_volume;
  70. int (*callback)(void *cb_data, uint32_t reason);
  71. void *callback_data;
  72. }audio_out_init_param_t;
  73. /**
  74. ** audio in init param
  75. **/
  76. typedef struct {
  77. uint8_t aa_mode:1;
  78. uint8_t need_dma:1;
  79. uint8_t need_asrc:1;
  80. uint8_t need_dsp:1;
  81. uint8_t reserved_1:1;
  82. uint8_t dma_reload:1;
  83. uint8_t data_mode;
  84. uint8_t sample_rate;
  85. uint8_t channel_type;
  86. uint16_t audio_device;
  87. uint8_t data_width;
  88. s16_t adc_gain;
  89. s16_t input_gain;
  90. uint8_t boost_gain:1;
  91. uint16_t reload_len;
  92. uint8_t *reload_addr;
  93. int (*callback)(void *cb_data, uint32_t reason);
  94. void *callback_data;
  95. }audio_in_init_param_t;
  96. int hal_audio_out_init(void);
  97. void* hal_aout_channel_open(audio_out_init_param_t *init_param);
  98. int hal_aout_channel_start(void* aout_channel_handle);
  99. int hal_aout_channel_write_data(void* aout_channel_handle, uint8_t *data, uint32_t data_size);
  100. int hal_aout_channel_stop(void* aout_channel_handle);
  101. int hal_aout_channel_close(void* aout_channel_handle);
  102. int hal_aout_channel_set_aps(void *aout_channel_handle, unsigned int aps_level, unsigned int aps_mode);
  103. uint32_t hal_aout_channel_get_sample_cnt(void *aout_channel_handle);
  104. int hal_aout_channel_reset_sample_cnt(void *aout_channel_handle);
  105. int hal_aout_channel_enable_sample_cnt(void *aout_channel_handle, bool enable);
  106. int hal_aout_channel_check_fifo_underflow(void *aout_channel_handle);
  107. int hal_aout_channel_mute_ctl(void *aout_channel_handle, uint8_t mode);
  108. int hal_aout_channel_set_pa_vol_level(void *aout_channel_handle, int vol_level);
  109. int hal_aout_set_pcm_threshold(void *aout_channel_handle, int he_thres, int hf_thres);
  110. int hal_aout_set_fifo_src(void *aout_channel_handle, uint8_t channel_id, bool from_dsp, void *dsp_audio_set_param);
  111. int hal_aout_open_pa(void);
  112. int hal_aout_close_pa(void);
  113. int hal_aout_pa_class_select(uint8_t pa_mode);
  114. int hal_aout_lr_channel_enable(void *aout_channel_handle, bool l_enable, bool r_enable);
  115. int hal_aout_channel_get_buffer_size(void *aout_channel_handle);
  116. int hal_aout_channel_get_buffer_space(void *aout_channel_handle);
  117. uint32_t hal_aout_channel_get_sdm_cnt(void *aout_channel_handle);
  118. uint32_t hal_aout_channel_get_saved_sdm_cnt(void *aout_channel_handle);
  119. int hal_aout_channel_enable_sdm_cnt(void *aout_channel_handle, bool enable);
  120. int hal_aout_channel_reset_sdm_cnt(void *aout_channel_handle);
  121. int hal_aout_trigger_src_control(void *aout_channel_handle, dac_ext_trigger_ctl_t *trigger_ctl);
  122. int hal_aout_channel_set_dac_trigger_src(void *aout_channel_handle, audio_trigger_src src);
  123. int hal_aout_channel_set_dac_enable(void *aout_channel_handle);
  124. int hal_audio_in_init(void);
  125. void* hal_ain_channel_open(audio_in_init_param_t *init_param);
  126. int hal_ain_channel_start(void* ain_channel_handle);
  127. int hal_ain_channel_read_data(void* ain_channel_handle, uint8_t *data, uint32_t data_size);
  128. int hal_ain_channel_stop(void* ain_channel_handle);
  129. int hal_ain_channel_close(void* ain_channel_handle);
  130. int hal_ain_channel_set_volume(void* ain_channel_handle, adc_gain *adc_volume);
  131. typedef int (*srd_callback)(void *cb_data, uint32_t cmd, void *param);
  132. int hal_ain_set_contrl_callback(uint8_t channel_type, srd_callback callback);
  133. int hal_ain_set_aec_record_back(void* ain_channel_handle, uint8_t enable);
  134. #endif