audio_common.h 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file audio_common.h
  8. * @brief The common audio structures and definitions used within the audio
  9. */
  10. #ifndef __AUDIO_COMMON_H__
  11. #define __AUDIO_COMMON_H__
  12. /* @brief Definition for FIFO counter */
  13. #define AOUT_FIFO_CNT_MAX (0xFFFF) /* The max value of the audio out FIFO counter */
  14. #define AOUT_SDM_CNT_MAX (0xFFFFFFF) /* The max value of the audio out SDM counter */
  15. /* @brief Definition the invalid type of audio FIFO */
  16. #define AUDIO_FIFO_INVALID_TYPE (0xFF)
  17. /**
  18. * @brief Definition for the audio channel type
  19. * @note If there is a multi-linkage reguirement, it allows using "or" channels.
  20. * And it is only allow the linkage usage of the output channels.
  21. * @par example:
  22. * (AUDIO_CHANNEL_DAC | AUDIO_CHANNEL_I2STX) stands for DAC linkage with I2S.
  23. */
  24. #define AUDIO_CHANNEL_DAC (1 << 0)
  25. #define AUDIO_CHANNEL_I2STX (1 << 1)
  26. #define AUDIO_CHANNEL_SPDIFTX (1 << 2)
  27. #define AUDIO_CHANNEL_ADC (1 << 3)
  28. #define AUDIO_CHANNEL_I2SRX (1 << 4)
  29. #define AUDIO_CHANNEL_SPDIFRX (1 << 5)
  30. #define AUDIO_CHANNEL_PDMTX (1 << 6)
  31. /**
  32. * @brief Definition for the audio channel status
  33. */
  34. #define AUDIO_CHANNEL_STATUS_BUSY (1 << 0) /* channel FIFO still busy status */
  35. #define AUDIO_CHANNEL_STATUS_ERROR (1 << 1) /* channel error status */
  36. /**
  37. * enum audio_sr_sel_e
  38. * @brief The sample rate choices
  39. */
  40. typedef enum {
  41. SAMPLE_RATE_8KHZ = 8,
  42. SAMPLE_RATE_11KHZ = 11, /* 11.025KHz */
  43. SAMPLE_RATE_12KHZ = 12,
  44. SAMPLE_RATE_16KHZ = 16,
  45. SAMPLE_RATE_22KHZ = 22, /* 22.05KHz */
  46. SAMPLE_RATE_24KHZ = 24,
  47. SAMPLE_RATE_32KHZ = 32,
  48. SAMPLE_RATE_44KHZ = 44, /* 44.1KHz */
  49. SAMPLE_RATE_48KHZ = 48,
  50. SAMPLE_RATE_64KHZ = 64,
  51. SAMPLE_RATE_88KHZ = 88, /* 88.2KHz */
  52. SAMPLE_RATE_96KHZ = 96,
  53. SAMPLE_RATE_176KHZ = 176, /* 176.4KHz */
  54. SAMPLE_RATE_192KHZ = 192,
  55. } audio_sr_sel_e;
  56. /*
  57. * enum audio_aps_level_e
  58. * @brief The APS for the AUDIO_PLL tuning dynamically
  59. */
  60. typedef enum {
  61. APS_LEVEL_1 = 0, /* 44.0006 / 47.8795 */
  62. APS_LEVEL_2, /* 44.0245 / 47.9167 */
  63. APS_LEVEL_3, /* 44.0625 / 47.9651 */
  64. APS_LEVEL_4, /* 44.0848 / 47.9805 */
  65. APS_LEVEL_5, /* 44.0995 / 48.0018 */
  66. APS_LEVEL_6, /* 44.1176 / 48.0239 */
  67. APS_LEVEL_7, /* 44.1323 / 48.0469 */
  68. APS_LEVEL_8, /* 44.1964 / 48.1086 */
  69. } audio_aps_level_e;
  70. /*
  71. * enum audio_ch_mode_e
  72. * @brief Define the channel mode
  73. */
  74. typedef enum {
  75. MONO_MODE = 1,
  76. STEREO_MODE,
  77. } audio_ch_mode_e;
  78. /*
  79. * enum audio_outfifo_sel_e
  80. * @brief Audio out fifo selection
  81. */
  82. typedef enum {
  83. AOUT_FIFO_DAC0 = 0, /* DAC FIFO0 */
  84. AOUT_FIFO_DAC1, /* DAC FIFO1 */
  85. AOUT_FIFO_I2STX0, /* I2STX FIFO */
  86. AOUT_FIFO_DAC1_ONLY_SPDIF, /* DAC FIFO1 only used by SPDIFTX */
  87. } audio_outfifo_sel_e;
  88. /*
  89. * enum a_infifo_sel_e
  90. * @brief Audio in fifo selection
  91. */
  92. typedef enum {
  93. AIN_FIFO_ADC0 = 0, /* ADC FIFO0 */
  94. AIN_FIFO_ADC1 = 0, /* ADC FIFO1 */
  95. AIN_FIFO_I2SRX0, /* I2SRX FIFO */
  96. AIN_FIFO_SPIDFRX0, /* SPIDFRX FIFO */
  97. } audio_infifo_sel_e;
  98. /*
  99. * enum audio_i2s_fmt_e
  100. * @brief I2S transfer format selection
  101. */
  102. typedef enum {
  103. I2S_FORMAT = 0,
  104. LEFT_JUSTIFIED_FORMAT,
  105. RIGHT_JUSTIFIED_FORMAT,
  106. TDM_FORMAT
  107. } audio_i2s_fmt_e;
  108. /*
  109. * enum audio_i2s_bclk_e
  110. * @brief Rate of BCLK with LRCLK
  111. */
  112. typedef enum {
  113. I2S_BCLK_32BITS = 0,
  114. I2S_BCLK_16BITS
  115. } audio_i2s_bclk_e;
  116. /*
  117. * enum audio_i2s_mode_e
  118. * @brief I2S mode selection
  119. */
  120. typedef enum {
  121. I2S_MASTER_MODE = 0,
  122. I2S_SLAVE_MODE
  123. } audio_i2s_mode_e;
  124. /*
  125. * enum audio_i2s_srd_wl_e
  126. * @brief I2S sample rate width length detect
  127. */
  128. typedef enum {
  129. SRDSTA_WL_32RATE = 0, /* BCLK = 32LRCLK */
  130. SRDSTA_WL_64RATE /* BCLK = 64LRCLK */
  131. } audio_i2s_srd_wl_e;
  132. /*
  133. * enum audio_ch_width_e
  134. * @brief The effective data width of audio channel
  135. * @note DAC and SPDIF only support #CHANNEL_WIDTH_16BITS and #CHANNEL_WIDTH_24BITS
  136. * I2S support #CHANNEL_WIDTH_16BITS, #CHANNEL_WIDTH_20BITS and #CHANNEL_WIDTH_24BITS
  137. * ADC support #CHANNEL_WIDTH_16BITS and #CHANNEL_WIDTH_18BITS
  138. */
  139. typedef enum {
  140. CHANNEL_WIDTH_16BITS = 0,
  141. CHANNEL_WIDTH_18BITS,
  142. CHANNEL_WIDTH_20BITS,
  143. CHANNEL_WIDTH_24BITS
  144. } audio_ch_width_e;
  145. /*
  146. * enum audio_trigger_src
  147. * @brief The external sources of IRQ signals to trigger DAC/ADC digital start.
  148. */
  149. typedef enum {
  150. TRIGGER_SRC_TIMER0 = 0,
  151. TRIGGER_SRC_TIMER1,
  152. TRIGGER_SRC_TIMER2,
  153. TRIGGER_SRC_TIMER3,
  154. TRIGGER_SRC_TIMER4,
  155. TRIGGER_SRC_TWS_IRQ0,
  156. TRIGGER_SRC_TWS_IRQ1,
  157. } audio_trigger_src;
  158. /*
  159. * enum a_lr_chl_e
  160. * @brief Left/Right channel selection
  161. */
  162. typedef enum {
  163. LEFT_CHANNEL_SEL = (1 << 0),
  164. RIGHT_CHANNEL_SEL = (1 << 1)
  165. } a_lr_chl_e;
  166. /*!
  167. * enum audio_ext_pa_ctrl_e
  168. * @brief control the external PA operations.
  169. */
  170. typedef enum {
  171. EXTERNAL_PA_ENABLE = 0,
  172. EXTERNAL_PA_DISABLE,
  173. EXTERNAL_PA_MUTE,
  174. EXTERNAL_PA_UNMUTE,
  175. } audio_ext_pa_ctrl_e;
  176. #if defined(CONFIG_SOC_SERIES_LARK)
  177. #define ADC_CH_NUM_MAX (4)
  178. /*!
  179. * The macro to define the INPUT attributes which connects to ADCx channels.
  180. * Hareware owns the rules that one ADC only can map dedicated INPUTx.
  181. * ----------------------------------------------
  182. * ADC0: ADC_CH_INPUT0P/ADC_CH_INPUT0NP_DIFF
  183. * ----------------------------------------------
  184. * ADC1: ADC_CH_INPUT1P/ADC_CH_INPUT1NP_DIFF
  185. * ----------------------------------------------
  186. * ADC2: ADC_CH_INPUT0N/ADC_CH_INPUT2P/ADC_CH_INPUT3N/ADC_CH_INPUT2NP_DIFF/ADC_CH_INPUT0N | ADC_CH_INPUT2P ...
  187. * ----------------------------------------------
  188. * ADC3: ADC_CH_INPUT1N/ADC_CH_INPUT2N/ADC_CH_INPUT3P/ADC_CH_INPUT3NP_DIFF/ADC_CH_INPUT1N | ADC_CH_INPUT2N ...
  189. * ----------------------------------------------
  190. */
  191. #define ADC_CH_INPUT0N (1 << 0) /* ADC channel INPUT0 negative point */
  192. #define ADC_CH_INPUT0P (1 << 1) /* ADC channel INPUT0 positive point */
  193. #define ADC_CH_INPUT0NP_DIFF (ADC_CH_INPUT0N | ADC_CH_INPUT0P)
  194. #define ADC_CH_INPUT1N (1 << 2) /* ADC channel INPUT1 negative point */
  195. #define ADC_CH_INPUT1P (1 << 3) /* ADC channel INPUT1 positive point */
  196. #define ADC_CH_INPUT1NP_DIFF (ADC_CH_INPUT1N | ADC_CH_INPUT1P)
  197. #define ADC_CH_INPUT2N (1 << 4) /* ADC channel INPUT2 negative point */
  198. #define ADC_CH_INPUT2P (1 << 5) /* ADC channel INPUT2 positive point */
  199. #define ADC_CH_INPUT2NP_DIFF (ADC_CH_INPUT2N | ADC_CH_INPUT2P)
  200. #define ADC_CH_INPUT3N (1 << 6) /* ADC channel INPUT3 negative point */
  201. #define ADC_CH_INPUT3P (1 << 7) /* ADC channel INPUT3 positive point */
  202. #define ADC_CH_INPUT3NP_DIFF (ADC_CH_INPUT3N | ADC_CH_INPUT3P)
  203. #define ADC_CH_DISABLE (0)
  204. #define ADC_CH_DMIC (0xFF)
  205. #endif
  206. /*!
  207. * enum audio_ext_pa_class_e
  208. * @brief The external PA class mode selection
  209. * @note CLASS_AB: higher power consume and lower radiation.
  210. * ClASS_D: lower power consume and higher radiation.
  211. */
  212. typedef enum {
  213. EXT_PA_CLASS_AB = 0,
  214. EXT_PA_CLASS_D
  215. } audio_ext_pa_class_e;
  216. /*!
  217. * struct audio_spdif_ch_status_t
  218. * @brief The SPDIF channel status setting
  219. */
  220. typedef struct {
  221. uint32_t csl; /* The low 32bits of channel status */
  222. uint16_t csh; /* The high 16bits of channel status */
  223. } audio_spdif_ch_status_t;
  224. /*!
  225. * struct audio_reload_t
  226. * @brief Audio out reload mode configuration.
  227. * @note If enable reload function the audio driver will transfer the same buffer address and notify the user when the buffer is half full or full.
  228. */
  229. typedef struct {
  230. uint8_t *reload_addr; /*!< Reload buffer address to transfer */
  231. uint32_t reload_len; /*!< The length of the reload buffer */
  232. } audio_reload_t;
  233. #if defined(CONFIG_SOC_SERIES_LARK)
  234. /*!
  235. * struct audio_input_map_t
  236. * @brief The mapping relationship between audio device and ADC channels input.
  237. */
  238. typedef struct {
  239. uint16_t audio_dev;
  240. uint8_t ch0_input;
  241. uint8_t ch1_input;
  242. uint8_t ch2_input;
  243. uint8_t ch3_input;
  244. } audio_input_map_t;
  245. /*!
  246. * struct dac_trigger_ctl_t
  247. * @brief Control DAC the external trigger behavior.
  248. */
  249. typedef struct {
  250. union {
  251. uint8_t trigger_ctl;
  252. struct {
  253. uint8_t sdm_cnt_trigger_en : 1;
  254. uint8_t sdm_cnt_lock_en : 1;
  255. uint8_t dac_fifo_trigger_en : 1;
  256. uint8_t dac_digital_trigger_en : 1;
  257. } t;
  258. };
  259. } dac_ext_trigger_ctl_t;
  260. /*!
  261. * struct adc_anc_ctl_t
  262. * @brief Control ADC analog channels for ANC
  263. */
  264. typedef struct {
  265. bool is_open_anc; /* If true to open ADC analog channels, otherwise will close ADC resource for ANC */
  266. } adc_anc_ctl_t;
  267. /*!
  268. * struct dac_anc_ctl_t
  269. * @brief Control DAC digital and analog for ANC
  270. */
  271. typedef struct {
  272. bool is_open_anc; /* If true to open DAC digital and analog, otherwise will close DAC resource for ANC */
  273. } dac_anc_ctl_t;
  274. #endif
  275. /* The macro to define different type of audio devices */
  276. #define AUDIO_DEV_TYPE_LINEIN (1 << 15)
  277. #define AUDIO_DEV_TYPE_AMIC (1 << 14)
  278. #define AUDIO_DEV_TYPE_FM (1 << 13)
  279. #define AUDIO_DEV_TYPE_DMIC (1 << 12)
  280. #endif /* __AUDIO_COMMON_H__ */