audio_common.h 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396
  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. APS_LEVEL_0PPM, /* 44.1005 / 48.0000 */
  70. } audio_aps_level_e;
  71. enum {
  72. DSP_AUDIO_SET_VOLUME = 0,
  73. DSP_AUDIO_SET_MUTE = 1,
  74. DSP_AUDIO_SET_FADE = 2,
  75. };
  76. /*
  77. * enum audio_ch_mode_e
  78. * @brief Define the channel mode
  79. */
  80. typedef enum {
  81. MONO_MODE = 1,
  82. STEREO_MODE,
  83. } audio_ch_mode_e;
  84. /*
  85. * enum audio_outfifo_sel_e
  86. * @brief Audio out fifo selection
  87. */
  88. typedef enum {
  89. AOUT_FIFO_DAC0 = 0, /* DAC FIFO0 */
  90. AOUT_FIFO_DAC1, /* DAC FIFO1 */
  91. AOUT_FIFO_I2STX0, /* I2STX FIFO */
  92. AOUT_FIFO_DAC1_ONLY_SPDIF, /* DAC FIFO1 only used by SPDIFTX */
  93. } audio_outfifo_sel_e;
  94. /*
  95. * enum a_infifo_sel_e
  96. * @brief Audio in fifo selection
  97. */
  98. typedef enum {
  99. AIN_FIFO_ADC0 = 0, /* ADC FIFO0 */
  100. AIN_FIFO_ADC1 = 0, /* ADC FIFO1 */
  101. AIN_FIFO_I2SRX0, /* I2SRX FIFO */
  102. AIN_FIFO_SPIDFRX0, /* SPIDFRX FIFO */
  103. } audio_infifo_sel_e;
  104. /*
  105. * enum audio_i2s_fmt_e
  106. * @brief I2S transfer format selection
  107. */
  108. typedef enum {
  109. I2S_FORMAT = 0,
  110. LEFT_JUSTIFIED_FORMAT,
  111. RIGHT_JUSTIFIED_FORMAT,
  112. TDM_FORMAT
  113. } audio_i2s_fmt_e;
  114. /*
  115. * enum audio_i2s_bclk_e
  116. * @brief Rate of BCLK with LRCLK
  117. */
  118. typedef enum {
  119. I2S_BCLK_32BITS = 0,
  120. I2S_BCLK_16BITS
  121. } audio_i2s_bclk_e;
  122. /*
  123. * enum audio_i2s_mode_e
  124. * @brief I2S mode selection
  125. */
  126. typedef enum {
  127. I2S_MASTER_MODE = 0,
  128. I2S_SLAVE_MODE
  129. } audio_i2s_mode_e;
  130. /*
  131. * enum audio_i2s_srd_wl_e
  132. * @brief I2S sample rate width length detect
  133. */
  134. typedef enum {
  135. SRDSTA_WL_32RATE = 0, /* BCLK = 32LRCLK */
  136. SRDSTA_WL_64RATE /* BCLK = 64LRCLK */
  137. } audio_i2s_srd_wl_e;
  138. /*
  139. * enum audio_ch_width_e
  140. * @brief The effective data width of audio channel
  141. * @note DAC and SPDIF only support #CHANNEL_WIDTH_16BITS and #CHANNEL_WIDTH_24BITS
  142. * I2S support #CHANNEL_WIDTH_16BITS, #CHANNEL_WIDTH_20BITS and #CHANNEL_WIDTH_24BITS
  143. * ADC support #CHANNEL_WIDTH_16BITS and #CHANNEL_WIDTH_18BITS
  144. */
  145. typedef enum {
  146. CHANNEL_WIDTH_16BITS = 0,
  147. CHANNEL_WIDTH_18BITS,
  148. CHANNEL_WIDTH_20BITS,
  149. CHANNEL_WIDTH_24BITS
  150. } audio_ch_width_e;
  151. /*
  152. * enum audio_trigger_src
  153. * @brief The external sources of IRQ signals to trigger DAC/ADC digital start.
  154. */
  155. typedef enum {
  156. TRIGGER_SRC_TIMER0 = 0,
  157. TRIGGER_SRC_TIMER1,
  158. TRIGGER_SRC_TIMER2,
  159. TRIGGER_SRC_TIMER3,
  160. TRIGGER_SRC_TIMER4,
  161. TRIGGER_SRC_TWS_IRQ0,
  162. TRIGGER_SRC_TWS_IRQ1,
  163. } audio_trigger_src;
  164. /*
  165. * enum a_lr_chl_e
  166. * @brief Left/Right channel selection
  167. */
  168. typedef enum {
  169. LEFT_CHANNEL_SEL = (1 << 0),
  170. RIGHT_CHANNEL_SEL = (1 << 1)
  171. } a_lr_chl_e;
  172. /*!
  173. * enum audio_ext_pa_ctrl_e
  174. * @brief control the external PA operations.
  175. */
  176. typedef enum {
  177. EXTERNAL_PA_ENABLE = 0,
  178. EXTERNAL_PA_DISABLE,
  179. EXTERNAL_PA_MUTE,
  180. EXTERNAL_PA_UNMUTE,
  181. } audio_ext_pa_ctrl_e;
  182. #if defined(CONFIG_SOC_SERIES_LARK)
  183. #define ADC_CH_NUM_MAX (4)
  184. /*!
  185. * The macro to define the INPUT attributes which connects to ADCx channels.
  186. * Hareware owns the rules that one ADC only can map dedicated INPUTx.
  187. * ----------------------------------------------
  188. * ADC0: ADC_CH_INPUT0P/ADC_CH_INPUT0NP_DIFF
  189. * ----------------------------------------------
  190. * ADC1: ADC_CH_INPUT1P/ADC_CH_INPUT1NP_DIFF
  191. * ----------------------------------------------
  192. * ADC2: ADC_CH_INPUT0N/ADC_CH_INPUT2P/ADC_CH_INPUT3N/ADC_CH_INPUT2NP_DIFF/ADC_CH_INPUT0N | ADC_CH_INPUT2P ...
  193. * ----------------------------------------------
  194. * ADC3: ADC_CH_INPUT1N/ADC_CH_INPUT2N/ADC_CH_INPUT3P/ADC_CH_INPUT3NP_DIFF/ADC_CH_INPUT1N | ADC_CH_INPUT2N ...
  195. * ----------------------------------------------
  196. */
  197. #define ADC_CH_INPUT0N (1 << 0) /* ADC channel INPUT0 negative point */
  198. #define ADC_CH_INPUT0P (1 << 1) /* ADC channel INPUT0 positive point */
  199. #define ADC_CH_INPUT0NP_DIFF (ADC_CH_INPUT0N | ADC_CH_INPUT0P)
  200. #define ADC_CH_INPUT1N (1 << 2) /* ADC channel INPUT1 negative point */
  201. #define ADC_CH_INPUT1P (1 << 3) /* ADC channel INPUT1 positive point */
  202. #define ADC_CH_INPUT1NP_DIFF (ADC_CH_INPUT1N | ADC_CH_INPUT1P)
  203. #define ADC_CH_INPUT2N (1 << 4) /* ADC channel INPUT2 negative point */
  204. #define ADC_CH_INPUT2P (1 << 5) /* ADC channel INPUT2 positive point */
  205. #define ADC_CH_INPUT2NP_DIFF (ADC_CH_INPUT2N | ADC_CH_INPUT2P)
  206. #define ADC_CH_INPUT3N (1 << 6) /* ADC channel INPUT3 negative point */
  207. #define ADC_CH_INPUT3P (1 << 7) /* ADC channel INPUT3 positive point */
  208. #define ADC_CH_INPUT3NP_DIFF (ADC_CH_INPUT3N | ADC_CH_INPUT3P)
  209. #define ADC_CH_DISABLE (0)
  210. #define ADC_CH_DMIC (0xFF)
  211. #else
  212. #define ADC_CH_NUM_MAX (4)
  213. /*!
  214. * The macro to define the INPUT attributes which connects to ADCx channels.
  215. * Hareware owns the rules that one ADC only can map dedicated INPUTx.
  216. * ----------------------------------------------
  217. * ADC0: ADC_CH_INPUT0P/ADC_CH_INPUT0NP_DIFF
  218. * ----------------------------------------------
  219. * ADC1: ADC_CH_INPUT1P/ADC_CH_INPUT1NP_DIFF
  220. * ----------------------------------------------
  221. * ADC2: ADC_CH_INPUT0N/ADC_CH_INPUT2P/ADC_CH_INPUT3N/ADC_CH_INPUT2NP_DIFF/ADC_CH_INPUT0N | ADC_CH_INPUT2P ...
  222. * ----------------------------------------------
  223. * ADC3: ADC_CH_INPUT1N/ADC_CH_INPUT2N/ADC_CH_INPUT3P/ADC_CH_INPUT3NP_DIFF/ADC_CH_INPUT1N | ADC_CH_INPUT2N ...
  224. * ----------------------------------------------
  225. */
  226. #define ADC_CH_INPUT0N (1 << 0) /* ADC channel INPUT0 negative point */
  227. #define ADC_CH_INPUT0P (1 << 1) /* ADC channel INPUT0 positive point */
  228. #define ADC_CH_INPUT0NP_DIFF (ADC_CH_INPUT0N | ADC_CH_INPUT0P)
  229. #define ADC_CH_INPUT1N (1 << 2) /* ADC channel INPUT1 negative point */
  230. #define ADC_CH_INPUT1P (1 << 3) /* ADC channel INPUT1 positive point */
  231. #define ADC_CH_INPUT1NP_DIFF (ADC_CH_INPUT1N | ADC_CH_INPUT1P)
  232. #define ADC_CH_INPUT2N (1 << 4) /* ADC channel INPUT2 negative point */
  233. #define ADC_CH_INPUT2P (1 << 5) /* ADC channel INPUT2 positive point */
  234. #define ADC_CH_INPUT2NP_DIFF (ADC_CH_INPUT2N | ADC_CH_INPUT2P)
  235. #define ADC_CH_INPUT3N (1 << 6) /* ADC channel INPUT3 negative point */
  236. #define ADC_CH_INPUT3P (1 << 7) /* ADC channel INPUT3 positive point */
  237. #define ADC_CH_INPUT3NP_DIFF (ADC_CH_INPUT3N | ADC_CH_INPUT3P)
  238. #define ADC_CH_DISABLE (0)
  239. #define ADC_CH_DMIC (0xFF)
  240. #endif
  241. /*!
  242. * enum audio_ext_pa_class_e
  243. * @brief The external PA class mode selection
  244. * @note CLASS_AB: higher power consume and lower radiation.
  245. * ClASS_D: lower power consume and higher radiation.
  246. */
  247. typedef enum {
  248. EXT_PA_CLASS_AB = 0,
  249. EXT_PA_CLASS_D
  250. } audio_ext_pa_class_e;
  251. /*!
  252. * struct audio_spdif_ch_status_t
  253. * @brief The SPDIF channel status setting
  254. */
  255. typedef struct {
  256. uint32_t csl; /* The low 32bits of channel status */
  257. uint16_t csh; /* The high 16bits of channel status */
  258. } audio_spdif_ch_status_t;
  259. /*!
  260. * struct audio_reload_t
  261. * @brief Audio out reload mode configuration.
  262. * @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.
  263. */
  264. typedef struct {
  265. uint8_t *reload_addr; /*!< Reload buffer address to transfer */
  266. uint32_t reload_len; /*!< The length of the reload buffer */
  267. } audio_reload_t;
  268. #if defined(CONFIG_SOC_SERIES_LARK)
  269. /*!
  270. * struct audio_input_map_t
  271. * @brief The mapping relationship between audio device and ADC channels input.
  272. */
  273. typedef struct {
  274. uint16_t audio_dev;
  275. uint8_t ch0_input;
  276. uint8_t ch1_input;
  277. uint8_t ch2_input;
  278. uint8_t ch3_input;
  279. } audio_input_map_t;
  280. /*!
  281. * struct dac_trigger_ctl_t
  282. * @brief Control DAC the external trigger behavior.
  283. */
  284. typedef struct {
  285. union {
  286. uint8_t trigger_ctl;
  287. struct {
  288. uint8_t sdm_cnt_trigger_en : 1;
  289. uint8_t sdm_cnt_lock_en : 1;
  290. uint8_t dac_fifo_trigger_en : 1;
  291. uint8_t dac_digital_trigger_en : 1;
  292. } t;
  293. };
  294. } dac_ext_trigger_ctl_t;
  295. /*!
  296. * struct adc_anc_ctl_t
  297. * @brief Control ADC analog channels for ANC
  298. */
  299. typedef struct {
  300. bool is_open_anc; /* If true to open ADC analog channels, otherwise will close ADC resource for ANC */
  301. } adc_anc_ctl_t;
  302. /*!
  303. * struct dac_anc_ctl_t
  304. * @brief Control DAC digital and analog for ANC
  305. */
  306. typedef struct {
  307. bool is_open_anc; /* If true to open DAC digital and analog, otherwise will close DAC resource for ANC */
  308. } dac_anc_ctl_t;
  309. #else
  310. /*!
  311. * struct audio_input_map_t
  312. * @brief The mapping relationship between audio device and ADC channels input.
  313. */
  314. typedef struct {
  315. uint16_t audio_dev;
  316. uint8_t ch0_input;
  317. uint8_t ch1_input;
  318. uint8_t ch2_input;
  319. uint8_t ch3_input;
  320. } audio_input_map_t;
  321. /*!
  322. * struct dac_trigger_ctl_t
  323. * @brief Control DAC the external trigger behavior.
  324. */
  325. typedef struct {
  326. union {
  327. uint8_t trigger_ctl;
  328. struct {
  329. uint8_t sdm_cnt_trigger_en : 1;
  330. uint8_t sdm_cnt_lock_en : 1;
  331. uint8_t dac_fifo_trigger_en : 1;
  332. uint8_t dac_digital_trigger_en : 1;
  333. } t;
  334. };
  335. } dac_ext_trigger_ctl_t;
  336. /*!
  337. * struct adc_anc_ctl_t
  338. * @brief Control ADC analog channels for ANC
  339. */
  340. typedef struct {
  341. bool is_open_anc; /* If true to open ADC analog channels, otherwise will close ADC resource for ANC */
  342. } adc_anc_ctl_t;
  343. /*!
  344. * struct dac_anc_ctl_t
  345. * @brief Control DAC digital and analog for ANC
  346. */
  347. typedef struct {
  348. bool is_open_anc; /* If true to open DAC digital and analog, otherwise will close DAC resource for ANC */
  349. } dac_anc_ctl_t;
  350. #endif
  351. /* The macro to define different type of audio devices */
  352. #define AUDIO_DEV_TYPE_LINEIN (1 << 15)
  353. #define AUDIO_DEV_TYPE_AMIC (1 << 14)
  354. #define AUDIO_DEV_TYPE_FM (1 << 13)
  355. #define AUDIO_DEV_TYPE_DMIC (1 << 12)
  356. #endif /* __AUDIO_COMMON_H__ */