audio_out.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692
  1. /*
  2. * Copyright (c) 2021 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file audio_out.h
  8. * @brief Audio output channels common interface.
  9. *
  10. * <b> Audio output channels </b> are used to output a uncompressed PCM data
  11. * through analog(e.g. line-out) or digital physical interface(e.g. SPDIF).
  12. *
  13. * This public audio output interface aims to define a unified structures and functions
  14. * for vary output channels.
  15. */
  16. #ifndef __AUDIO_OUT_H__
  17. #define __AUDIO_OUT_H__
  18. #include <zephyr/types.h>
  19. #include <stddef.h>
  20. #include <device.h>
  21. #include <drivers/audio/audio_common.h>
  22. #include <drivers/cfg_drv/dev_config.h>
  23. #ifdef __cplusplus
  24. extern "C" {
  25. #endif
  26. /**
  27. * @defgroup audio_out_apis Audio Out Device APIs
  28. * @ingroup driver_apis
  29. * @{
  30. */
  31. /**
  32. * @brief The <b> Audio output channels </b> contains the following channels.
  33. * - DAC (digital convert to analog)
  34. * - I2STX
  35. * - SPDIFTX
  36. * - PDMTX (opthon)
  37. *
  38. * All audio output channels follow the same interfaces to play out a PCM stream.
  39. * The different operations between the output channels are the parameter
  40. * structures that used to open or control an dedicated audio output channel.
  41. * For example open an DAC channel need to inplement the structure #dac_setting_t,
  42. * whileas the structure to open an I2STX channel is #i2stx_setting_t.
  43. * Moreover, Some special control commands are dedicated for some output channel,
  44. * such as #AOUT_CMD_SET_DAC_THRESHOLD only work for DAC channel.
  45. *
  46. * Example:
  47. *
  48. * @code
  49. *
  50. * #include <drivers/audio/audio_out.h>
  51. *
  52. * // Note that DAC with PCM buffer does not support DMA reload mode
  53. * static bool is_dma_reload = false;
  54. * #define SHELL_AUDIO_BUFFER_SIZE (1024)
  55. * static uint8_t audio_pcm_buffer[SHELL_AUDIO_BUFFER_SIZE];
  56. *
  57. * // Audio output DMA callback function.
  58. * static int audio_play_write_data_cb(void *handle, uint32_t reason)
  59. * {
  60. * uint32_t len;
  61. * uint8_t *buf = NULL;
  62. * int ret;
  63. *
  64. * if (is_dma_reload) {
  65. * len = sizeof(audio_pcm_buffer) / 2;
  66. * if (AOUT_DMA_IRQ_HF == reason) {
  67. * buf = audio_pcm_buffer
  68. * } else if (AOUT_DMA_IRQ_TC == reason) {
  69. * buf = audio_pcm_buffer + len;
  70. * }
  71. * // Software need to update memory data in 'buf' and its size of length is 'len';
  72. * } else {
  73. * buf = hdl->audio_buffer;
  74. * len = sizeof(audio_pcm_buffer);
  75. * ret = audio_out_write(hdl->aout_dev, hdl->aout_handle, buf, len);
  76. * if (ret) {
  77. * printk("write data error:%d\n", ret);
  78. * return ret;
  79. * }
  80. * }
  81. *
  82. * return 0;
  83. * }
  84. *
  85. * //1. Get a audio output device.
  86. * struct device *aout_dev = device_get_binding(CONFIG_AUDIO_OUT_ACTS_DEV_NAME);
  87. * if (!aout_dev) {
  88. * printk("failed to get audio output device\n");
  89. * return -ENODEV;
  90. * }
  91. *
  92. * // 2. Open a DAC channel
  93. * aout_param_t aout_param = {0};
  94. * dac_setting_t dac_setting = {0};
  95. * audio_reload_t reload_setting = {0};
  96. * void *aout_handle;
  97. *
  98. * aout_param.sample_rate = SAMPLE_RATE_48KHZ;
  99. * aout_param.channel_type = AUDIO_CHANNEL_DAC;
  100. * aout_param.outfifo_type = AOUT_FIFO_DAC0;
  101. * aout_param.channel_width = CHANNEL_WIDTH_16BITS;
  102. *
  103. * aout_param.callback = audio_play_write_data_cb;
  104. * aout_param.cb_data = NULL;
  105. *
  106. * dac_setting.volume.left_volume = -8000; // left channel volume is -8dB.
  107. * dac_setting.volume.right_volume = -8000; // right channel volume is -8dB.
  108. * dac_setting.channel_mode = STEREO_MODE;
  109. * aout_param.dac_setting = &dac_setting;
  110. *
  111. * if (is_dma_reload) {
  112. * reload_setting.reload_addr = audio_pcm_buffer;
  113. * reload_setting.reload_len = sizeof(audio_pcm_buffer);
  114. * aout_param.reload_setting = &reload_setting;
  115. * }
  116. *
  117. * aout_handle = audio_out_open(aout_dev, &aout_param);
  118. * if (!aout_handle) {
  119. * printk("failed to open the audio out channel");
  120. * return -EIO;
  121. * }
  122. *
  123. * // 3. Send extra comands to the opened DAC channel if needed.
  124. * audio_out_control(aout_dev, aout_handle, AOUT_CMD_RESET_DAC_SDM_SAMPLE_CNT, NULL);
  125. *
  126. * // 4. Initialize pcm data in audio_pcm_buffer
  127. *
  128. * // 5. Start to play the DAC channel
  129. * if (is_dma_reload) {
  130. * ret = audio_out_start(aout_dev, aout_handle);
  131. * } else {
  132. * ret = audio_out_write(aout_dev, aout_handle,
  133. * audio_pcm_buffer, sizeof(audio_pcm_buffer);
  134. * }
  135. *
  136. * @endcode
  137. *
  138. * @note For more detailed audio output channel example, please make a reference to the file:audio_driver_shell.c.
  139. *
  140. */
  141. /**
  142. * @name Definition for the audio out control commands.
  143. * @{
  144. */
  145. /** The flag to indicate that the command shall be executed according to its FIFO type */
  146. #define AOUT_FIFO_CMD_FLAG (1 << 7)
  147. #define AOUT_CMD_GET_SAMPLERATE (1)
  148. /*!< Get the channel audio sample rate by specified the audio channel handler.
  149. * int audio_out_control(dev, handle, #AOUT_CMD_GET_SAMPLERATE, audio_sr_sel_e *sr)
  150. * Returns 0 if successful and negative errno code if error.
  151. */
  152. #define AOUT_CMD_SET_SAMPLERATE (2)
  153. /*!< Set the channel audio sample rate by the giving audio channel handler.
  154. * int audio_out_control(dev, handle, #AOUT_CMD_SET_SAMPLERATE, audio_sr_sel_e *sr)
  155. * Returns 0 if successful and negative errno code if error.
  156. */
  157. #define AOUT_CMD_OPEN_PA (3)
  158. /*!< Open internal and external PA device.
  159. * int audio_out_control(dev, NULL, #AOUT_CMD_OPEN_PA, NULL)
  160. * Returns 0 if successful and negative errno code if error.
  161. */
  162. #define AOUT_CMD_CLOSE_PA (4)
  163. /*!< Close internal and external PA device.
  164. * int audio_out_control(dev, NULL, #AOUT_CMD_CLOSE_PA, NULL)
  165. * Returns 0 if successful and negative errno code if error.
  166. */
  167. #define AOUT_CMD_PA_CLASS_SEL (5)
  168. /*!< Select external PA type such as class AB or class D.
  169. * int audio_out_control(dev, NULL, #AOUT_CMD_PA_CLASS_SEL, audio_ext_pa_class_e *class)
  170. * Returns 0 if successful and negative errno code if error.
  171. */
  172. #define AOUT_CMD_OUT_MUTE (6)
  173. /*!< Control output channel mute
  174. * int audio_out_control(dev, handle, #AOUT_CMD_OUT_MUTE, uint8_t *mute_en)
  175. * If *mute_en is 1 will mute both the audio left and right channels, otherwise will unmute.
  176. * Returns 0 if successful and negative errno code if error.
  177. *
  178. * @note Only DAC support this command.
  179. */
  180. #define AOUT_CMD_GET_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 7)
  181. /*!< Get the sample counter from the audio output channel if enabled.
  182. * int audio_out_control(dev, handle, #AOUT_CMD_GET_SAMPLE_CNT, uint32_t *count)
  183. * Returns 0 if successful and negative errno code if error.
  184. *
  185. * @note User need to handle the overflow case.
  186. */
  187. #define AOUT_CMD_RESET_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 8)
  188. /*!< Reset the sample counter function which can retrieve the initial sample counter.
  189. * int audio_out_control(dev, handle, #AOUT_CMD_RESET_SAMPLE_CNT, NULL)
  190. * Returns 0 if successful and negative errno code if error.
  191. */
  192. #define AOUT_CMD_ENABLE_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 9)
  193. /*!< Enable the sample counter function to the specified audio channel.
  194. * int audio_out_control(dev, handle, #AOUT_CMD_ENABLE_SAMPLE_CNT, NULL)
  195. * Returns 0 if successful and negative errno code if error.
  196. */
  197. #define AOUT_CMD_DISABLE_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 10)
  198. /*!< Disable the sample counter function by giving the audio channel handler.
  199. * int audio_out_control(dev, handle, #AOUT_CMD_DISABLE_SAMPLE_CNT, NULL)
  200. * Returns 0 if successful and negative errno code if error.
  201. */
  202. #define AOUT_CMD_GET_VOLUME (AOUT_FIFO_CMD_FLAG | 11)
  203. /* Get the volume value of the audio channel.
  204. * int audio_out_control(dev, handle, #AOUT_CMD_GET_LEFT_VOLUME, volume_setting_t *volume)
  205. * Returns 0 if successful and negative errno code if error.
  206. */
  207. #define AOUT_CMD_SET_VOLUME (AOUT_FIFO_CMD_FLAG | 12)
  208. /*!< Set the volume value to the audio channel.
  209. * int audio_out_control(dev, handle, #AOUT_CMD_SET_LEFT_VOLUME, volume_setting_t *volume)
  210. * Returns 0 if successful and negative errno code if error.
  211. */
  212. #define AOUT_CMD_GET_FIFO_LEN (AOUT_FIFO_CMD_FLAG | 13)
  213. /*!< Get the total length of audio channel FIFO.
  214. * int audio_out_control(dev, handle, #AOUT_CMD_GET_STATUS, uint32_t *len)
  215. * Returns 0 if successful and negative errno code if error.
  216. */
  217. #define AOUT_CMD_GET_FIFO_AVAILABLE_LEN (AOUT_FIFO_CMD_FLAG | 14)
  218. /*!< Get the avaliable length of audio channel FIFO that can be filled
  219. * int audio_out_control(dev, handle, #AOUT_CMD_GET_STATUS, uint32_t *len)
  220. * Returns 0 if successful and negative errno code if error.
  221. */
  222. #define AOUT_CMD_GET_CHANNEL_STATUS (AOUT_FIFO_CMD_FLAG | 15)
  223. /*!< Get the audio output channel status
  224. * int audio_out_control(dev, handle, #AOUT_CMD_GET_CHANNEL_STATUS, u8 *status)
  225. * The output 'status' can refer to #AUDIO_CHANNEL_STATUS_BUSY or #AUDIO_CHANNEL_STATUS_ERROR
  226. * Returns 0 if successful and negative errno code if error.
  227. */
  228. #define AOUT_CMD_GET_APS (AOUT_FIFO_CMD_FLAG | 16)
  229. /*!< Get the AUDIO_PLL APS
  230. * int audio_out_control(dev, handle, #AOUT_CMD_GET_APS, audio_aps_level_e *aps)
  231. * Returns 0 if successful and negative errno code if error.
  232. */
  233. #define AOUT_CMD_SET_APS (AOUT_FIFO_CMD_FLAG | 17)
  234. /*!< Set the AUDIO_PLL APS for the sample rate tuning
  235. * int audio_out_control(dev, handle, #AOUT_CMD_SET_VOLUME, audio_aps_level_e *aps)
  236. * Returns 0 if successful and negative errno code if error.
  237. */
  238. #define AOUT_CMD_SPDIF_SET_CHANNEL_STATUS (18)
  239. /*!< Set the SPDIFTX channel status
  240. * int audio_out_control(dev, handle, #AOUT_CMD_SPDIF_SET_CHANNEL_STATUS, audio_spdif_ch_status_t *status)
  241. * Returns 0 if successful and negative errno code if error.
  242. */
  243. #define AOUT_CMD_SPDIF_GET_CHANNEL_STATUS (19)
  244. /*!< Get the SPDIFTX channel status
  245. * int audio_out_control(dev, handle, #AOUT_CMD_SPDIF_GET_CHANNEL_STATUS, audio_spdif_ch_status_t *status)
  246. * Returns 0 if successful and negative errno code if error.
  247. */
  248. #define AOUT_CMD_OPEN_I2STX_DEVICE (20)
  249. /*!< Open I2STX device and will enable the MCLK/BCLK/LRCLK clock signals.
  250. * int audio_out_control(dev, NULL, #AOUT_CMD_OPEN_I2STX_CLK, NULL)
  251. * Returns 0 if successful and negative errno code if error.
  252. */
  253. #define AOUT_CMD_CLOSE_I2STX_DEVICE (21)
  254. /*!< Close I2STX device and will disable the MCLK/BCLK/LRCLK clock signals .
  255. * int audio_out_control(dev, NULL, #AOUT_CMD_CLOSE_I2STX_CLK, NULL)
  256. * Returns 0 if successful and negative errno code if error.
  257. */
  258. #define AOUT_CMD_SET_DAC_THRESHOLD (AOUT_FIFO_CMD_FLAG | 22)
  259. /*!< Set the DAC threshold to control the stream buffer level at different scenes.
  260. * int audio_out_control(dev, NULL, #AOUT_CMD_SET_DAC_THRESHOLD, dac_threshold_setting_t *thres)
  261. * Returns 0 if successful and negative errno code if error.
  262. *
  263. * @note Only DAC with hardware PCM buffer support this command.
  264. */
  265. #define AOUT_CMD_GET_DAC_FIFO_DRQ_LEVEL (AOUT_FIFO_CMD_FLAG | 23)
  266. /*!< Get the DAC FIFO DRQ level.
  267. * int audio_out_control(dev, NULL, #AOUT_CMD_GET_DAC_FIFO_DRQ_LEVEL, uint8_t *level)
  268. * Returns 0 if successful and negative errno code if error.
  269. */
  270. #define AOUT_CMD_SET_DAC_FIFO_DRQ_LEVEL (AOUT_FIFO_CMD_FLAG | 24)
  271. /*!< Set the DAC FIFO DRQ level.
  272. * int audio_out_control(dev, NULL, #AOUT_CMD_SET_DAC_FIFO_DRQ_LEVEL, uint8_t *level)
  273. * #level is range for 0 to 15;
  274. * Returns 0 if successful and negative errno code if error.
  275. */
  276. #define AOUT_CMD_GET_DAC_FIFO_VOLUME (AOUT_FIFO_CMD_FLAG | 25)
  277. /*!< Get the DAC FIFO volume.
  278. * int audio_out_control(dev, NULL, #AOUT_CMD_GET_DAC_FIFO_VOLUME, uint8_t *vol)
  279. * Returns 0 if successful and negative errno code if error.
  280. */
  281. #define AOUT_CMD_SET_DAC_FIFO_VOLUME (AOUT_FIFO_CMD_FLAG | 26)
  282. /*!< Set the DAC FIFO volume.
  283. * int audio_out_control(dev, NULL, #AOUT_CMD_SET_DAC_FIFO_VOLUME, uint8_t *vol)
  284. * #vol is range for 0 to 15;
  285. * Returns 0 if successful and negative errno code if error.
  286. */
  287. #define AOUT_CMD_DEBUG_PERFORMANCE_CTL (27)
  288. /*!< Control to enable or disable to dump the perfornamce infomation for debug.
  289. * int audio_out_control(dev, NULL, #AOUT_CMD_DEBUG_PERFORMANCE_CTL, uint8_t *en)
  290. * #en: 0 to disable; 1 to enable
  291. * Returns 0 if successful and negative errno code if error.
  292. */
  293. #define AOUT_CMD_DEBUG_PERFORMANCE_CTL_ALL (28)
  294. /*!< Control all sessions to enable or disable to dump the perfornamce infomation for debug.
  295. * int audio_out_control(dev, NULL, #AOUT_CMD_DEBUG_PERFORMANCE_CTL_ALL, uint8_t *en)
  296. * #en: 0 to disable; 1 to enable
  297. * Returns 0 if successful and negative errno code if error.
  298. */
  299. #define AOUT_CMD_DEBUG_DUMP_LENGTH (29)
  300. /*!< Set the length of play buffer to print out per-second.
  301. * int audio_out_control(dev, NULL, #AOUT_CMD_DEBUG_DUMP_LENGTH, uint8_t *len)
  302. * Returns 0 if successful and negative errno code if error.
  303. */
  304. #define AOUT_CMD_DEBUG_DUMP_LENGTH_ALL (30)
  305. /*!< Set the length of all sessions play buffer to print out per-second.
  306. * int audio_out_control(dev, NULL, #AOUT_CMD_DEBUG_DUMP_LENGTH_ALL, uint8_t *len)
  307. * Returns 0 if successful and negative errno code if error.
  308. */
  309. #define AOUT_CMD_GET_DAC_SDM_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 31)
  310. /*!< Get the SDM sample counter from the DAC module if enabled.
  311. * int audio_out_control(dev, handle, #AOUT_CMD_GET_DAC_SDM_SAMPLE_CNT, uint32_t *count)
  312. * Returns 0 if successful and negative errno code if error.
  313. *
  314. * @note The MAX SDM counter is #AOUT_SDM_CNT_MAX and user need to handle the overflow case.
  315. */
  316. #define AOUT_CMD_RESET_DAC_SDM_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 32)
  317. /*!< Reset(disable and then enable) the SDM sample counter function which can retrieve the initial sample counter.
  318. * int audio_out_control(dev, handle, #AOUT_CMD_RESET_DAC_SDM_SAMPLE_CNT, NULL)
  319. * Returns 0 if successful and negative errno code if error.
  320. */
  321. #define AOUT_CMD_ENABLE_DAC_SDM_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 33)
  322. /*!< Enable the SDM sample counter function within DAC module.
  323. * int audio_out_control(dev, handle, #AOUT_CMD_ENABLE_DAC_SDM_SAMPLE_CNT, NULL)
  324. * Returns 0 if successful and negative errno code if error.
  325. */
  326. #define AOUT_CMD_DISABLE_DAC_SDM_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 34)
  327. /*!< Disable the SDM sample counter function within DAC module.
  328. * int audio_out_control(dev, handle, #AOUT_CMD_DISABLE_DAC_SDM_SAMPLE_CNT, NULL)
  329. * Returns 0 if successful and negative errno code if error.
  330. */
  331. #define AOUT_CMD_GET_DAC_SDM_STABLE_SAMPLE_CNT (AOUT_FIFO_CMD_FLAG | 35)
  332. /*!< Get the STABLE SDM sample counter from the DAC module if enabled.
  333. * int audio_out_control(dev, handle, #AOUT_CMD_GET_DAC_SDM_STABLE_SAMPLE_CNT, uint32_t *count)
  334. * Returns 0 if successful and negative errno code if error.
  335. *
  336. * @note User need to handle the overflow case.
  337. */
  338. #define AOUT_CMD_SET_DAC_TRIGGER_SRC (36)
  339. /*!< Set the source of trigger DAC to start by external IRQ signal.
  340. * int audio_out_control(dev, handle, #AOUT_CMD_SET_DAC_TRIGGER_SRC, uint8_t *trigger_src)
  341. * The parameter trigger_src can refer to #audio_trigger_src.
  342. *
  343. * @note User need to send the command #AOUT_CMD_DAC_TRIGGER_CONTROL to control the DAC trigger mehod.
  344. * And send the command #AOUT_CMD_DAC_FORCE_START to start by force after external trigger has been set.
  345. *
  346. * Returns 0 if successful and negative errno code if error.
  347. */
  348. #define AOUT_CMD_SELECT_DAC_ENABLE_CHANNEL (37)
  349. /*!< Select the DAC LR channels that can be enabled.
  350. * int audio_out_control(dev, handle, #AOUT_CMD_SELECT_DAC_ENABLE_CHANNEL, uint8_t *lr_sel)
  351. * For the definition of #lr_sel can refer to #a_lr_chl_e.
  352. *
  353. * Returns 0 if successful and negative errno code if error.
  354. */
  355. #define AOUT_CMD_DAC_FORCE_START (38)
  356. /*!< Force DAC to start when the external trigger source (set from command #AOUT_CMD_SET_DAC_TRIGGER_SRC and #AOUT_CMD_DAC_TRIGGER_CONTROL)
  357. * does not trigger.
  358. * int audio_out_control(dev, handle, #AOUT_CMD_DAC_FORCE_START, dac_ext_trigger_ctl_t *trigger_ctl)
  359. *
  360. * Returns 0 if successful and negative errno code if error.
  361. */
  362. #define AOUT_CMD_EXTERNAL_PA_CONTROL (39)
  363. /*!< Control external PA such as enable/disable/mute.
  364. * int audio_out_control(dev, handle, #AOUT_CMD_EXTERNAL_PA_CONTROL, audio_ext_pa_ctrl_e *ctrl_func)
  365. *
  366. * Returns 0 if successful and negative errno code if error.
  367. */
  368. #define AOUT_CMD_DAC_TRIGGER_CONTROL (40)
  369. /*!< Control the DAC function such as SDM_LOCK/DACFIFO_EN that can triggered by external signals.
  370. * int audio_out_control(dev, handle, #AOUT_CMD_SET_DAC_TRIGGER_SRC, dac_ext_trigger_ctl_t *trigger_ctl)
  371. * Returns 0 if successful and negative errno code if error.
  372. */
  373. #define AOUT_CMD_SET_SEPARATED_MODE (41)
  374. /*!< Set DMA as separated mode which can transfrom a PCM stream in mono format to a stereo stream.
  375. * int audio_out_control(dev, handle, #AOUT_CMD_SET_SEPARATED_MODE, NULL)
  376. * Returns 0 if successful and negative errno code if error.
  377. */
  378. #define AOUT_CMD_ANC_CONTROL (42)
  379. /*!< Control to enable or disable DAC hardware resource for ANC module.
  380. * int audio_out_control(dev, NULL, #AOUT_CMD_ANC_CONTROL, dac_anc_ctl_t *anc_ctl)
  381. * Returns 0 if successful and negative errno code if error.
  382. */
  383. #define AOUT_CMD_SET_FIFO_SRC (43)
  384. /*!< Set the FIFOx SRC as DSP or CPU/DMA.
  385. * int audio_out_control(dev, NULL, #AOUT_CMD_SET_FIFO_SRC, dac_fifosrc_setting_t *fifosrc)
  386. * Returns 0 if successful and negative errno code if error.
  387. */
  388. /** @} */
  389. /*!
  390. * struct volume_setting_t
  391. * @brief The structure to configure the audio left/right channel volume.
  392. */
  393. typedef struct {
  394. #define AOUT_VOLUME_INVALID (0xFFFFFFFF)
  395. /*!< macro to the invalid volume value */
  396. int32_t left_volume;
  397. /*!< specifies the volume of left channel which range from -71625(-71.625db) to 24000(24.000db) and if set #AOUT_VOLUME_INVALID to ignore this setting */
  398. int32_t right_volume;
  399. /*!< specifies the volume of right channel which range from range from -71625(-71.625db) to 24000(24.000db) and if set #AOUT_VOLUME_INVALID to ignore this setting */
  400. } volume_setting_t;
  401. /*!
  402. * struct dac_threshold_setting_t
  403. * @brief The setting of the DAC PCMBUF threshold.
  404. */
  405. typedef struct {
  406. uint32_t he_thres;
  407. /*!< The half empty threshold */
  408. uint32_t hf_thres;
  409. /*!< The half full threshold */
  410. } dac_threshold_setting_t;
  411. /*!
  412. * struct dac_setting_t
  413. * @brief The DAC setting parameters.
  414. */
  415. typedef struct {
  416. audio_ch_mode_e channel_mode;
  417. /*!< Select the channel mode such as mono or strereo */
  418. volume_setting_t volume;
  419. /*!< The left and right volume setting */
  420. } dac_setting_t;
  421. /*!
  422. * struct dac_fifosrc_setting_t
  423. * @brief The setting of the dac fifosrc.
  424. */
  425. typedef struct {
  426. uint8_t fifo_idx;
  427. /*!< The fifo index, 0 FIFO0 or 1 FIFO1 */
  428. uint8_t fifo_from_dsp;
  429. /*!< The fifo source type is dsp or not */
  430. void * dsp_audio_set_param;
  431. /*!< The callback function of dsp audio set param to dsp core */
  432. } dac_fifosrc_setting_t;
  433. /*!
  434. * struct i2stx_setting_t
  435. * @brief The I2STX setting parameters.
  436. */
  437. typedef struct {
  438. #define I2STX_SRD_FS_CHANGE (1 << 0)
  439. /*!< I2STX SRD(sample rate detect) captures the event that the sample rate has changed.
  440. * int callback(cb_data, #I2STX_SRD_FS_CHANGE, audio_sr_sel_e *sr)
  441. */
  442. #define I2STX_SRD_WL_CHANGE (1 << 1)
  443. /*!< I2STX SRD(sample rate detect) captures the event that the effective width length has changed.
  444. * int callback(cb_data, #I2STX_SRD_WL_CHANGE, audio_i2s_srd_wl_e *wl)
  445. */
  446. #define I2STX_SRD_TIMEOUT (1 << 2)
  447. /*!< I2STX SRD(sample rate detect) captures the timeout (disconnection) event.
  448. * int callback(cb_data, #I2STX_SRD_TIMEOUT, NULL)
  449. */
  450. int (*srd_callback)(void *cb_data, uint32_t cmd, void *param);
  451. /*!< The callback function from I2STX SRD(sample rate detect) module which worked in the slave mode */
  452. void *cb_data;
  453. /*!< Callback user data */
  454. audio_i2s_mode_e mode;
  455. } i2stx_setting_t;
  456. /*!
  457. * struct spdiftx_setting_t
  458. * @brief The SPDIFTX setting parameters
  459. * @note The FIFOs used by SPDIFTX can be #AOUT_FIFO_DAC0 or #AOUT_FIFO_I2STX0.
  460. * If select the #AOUT_FIFO_DAC0, the clock source will use the division 2 of the DAC clock source.
  461. * If select the #AOUT_FIFO_I2STX0, there is configurations (CONFIG_SPDIFTX_USE_I2STX_MCLK/CONFIG_SPDIFTX_USE_I2STX_MCLK_DIV2) to control the clock source.
  462. */
  463. typedef struct {
  464. audio_spdif_ch_status_t *status; /*!< The channel status setting if has. If setting NULL, low level driver will use a default channel status value*/
  465. } spdiftx_setting_t;
  466. /*!
  467. * struct aout_param_t
  468. * @brief The audio out configuration parameters
  469. */
  470. typedef struct {
  471. #define AOUT_DMA_IRQ_HF (1 << 0) /*!< DMA irq half full flag */
  472. #define AOUT_DMA_IRQ_TC (1 << 1) /*!< DMA irq transfer completly flag */
  473. uint8_t sample_rate;
  474. /*!< The sample rate setting and can refer to enum audio_sr_sel_e */
  475. uint16_t channel_type;
  476. /*!< Indicates the channel type selection and can refer to #AUDIO_CHANNEL_DAC, #AUDIO_CHANNEL_I2STX, #AUDIO_CHANNEL_SPDIFTX*/
  477. audio_ch_width_e channel_width;
  478. /*!< The channel effective data width */
  479. audio_outfifo_sel_e outfifo_type;
  480. /*!< Indicates the used output fifo type */
  481. dac_setting_t *dac_setting;
  482. /*!< The DAC function setting if has */
  483. i2stx_setting_t *i2stx_setting;
  484. /*!< The I2STX function setting if has */
  485. spdiftx_setting_t *spdiftx_setting;
  486. /*!< The SPDIFTX function setting if has */
  487. int (*callback)(void *cb_data, uint32_t reason);
  488. /*!< The callback function which conrespondingly with the events such as #AOUT_PCMBUF_IP_HE or #AOUT_PCMBUF_IP_HF etc.*/
  489. void *cb_data;
  490. /*!< Callback user data */
  491. audio_reload_t *reload_setting;
  492. /*!< The reload mode setting and if don't use this mode, please let 'reload_setting = NULL' */
  493. } aout_param_t;
  494. /*!
  495. * struct aout_driver_api
  496. * @brief The sturcture to define audio out driver API.
  497. */
  498. struct aout_driver_api {
  499. void* (*aout_open)(struct device *dev, aout_param_t *param);
  500. int (*aout_close)(struct device *dev, void *handle);
  501. int (*aout_start)(struct device *dev, void *handle);
  502. int (*aout_write)(struct device *dev, void *handle, uint8_t *buffer, uint32_t length);
  503. int (*aout_stop)(struct device *dev, void *handle);
  504. int (*aout_control)(struct device *dev, void *handle, int cmd, void *param);
  505. };
  506. /*!
  507. * @brief Open the audio output channel by specified parameters.
  508. *
  509. * @param dev Pointer to the device structure for the audio output channel instance.
  510. *
  511. * @param setting Pointer to the audio output channel parameter.
  512. *
  513. * @return The audio output channel instance handle.
  514. */
  515. static inline void* audio_out_open(struct device *dev, aout_param_t *setting)
  516. {
  517. const struct aout_driver_api *api = dev->api;
  518. return api->aout_open(dev, setting);
  519. }
  520. /*!
  521. * @brief Close the audio output channel by the specified handle.
  522. *
  523. * @param dev Pointer to the device structure for the audio output channel instance.
  524. *
  525. * @param handle The audio output channel instance handle.
  526. *
  527. * @return 0 on success, negative errno code on fail.
  528. *
  529. * @note the handle shall be the same as the retval of #audio_out_open.
  530. */
  531. static inline int audio_out_close(struct device *dev, void *handle)
  532. {
  533. const struct aout_driver_api *api = dev->api;
  534. return api->aout_close(dev, handle);
  535. }
  536. /*!
  537. * @brief Control the audio output channel by the specified handle.
  538. *
  539. * @param dev Pointer to the device structure for the audio output channel instance.
  540. *
  541. * @param handle The audio output channel instance handle.
  542. *
  543. * @param cmd The control command that sent to the audio output channel.
  544. *
  545. * @param param The audio out in/out parameters which corresponding with the commands
  546. *
  547. * @return 0 on success, negative errno code on fail.
  548. *
  549. * @note the handle shall be the same as the retval of #audio_out_open.
  550. */
  551. static inline int audio_out_control(struct device *dev, void *handle, int cmd, void *param)
  552. {
  553. const struct aout_driver_api *api = dev->api;
  554. return api->aout_control(dev, handle, cmd, param);
  555. }
  556. /*!
  557. * @brief Start the audio output channel by the specified handle.
  558. *
  559. * @param dev Pointer to the device structure for the audio output channel instance.
  560. *
  561. * @param handle The audio output channel instance handle.
  562. *
  563. * @return 0 on success, negative errno code on fail.
  564. *
  565. * @note the handle shall be the same as the retval of #audio_out_open.
  566. */
  567. static inline int audio_out_start(struct device *dev, void *handle)
  568. {
  569. const struct aout_driver_api *api = dev->api;
  570. return api->aout_start(dev, handle);
  571. }
  572. /*!
  573. * @brief Write data into the audio output channel.
  574. *
  575. * @param dev Pointer to the device structure for the audio output channel instance.
  576. *
  577. * @param handle The audio output channel instance handle.
  578. *
  579. * @param buffer The stream buffer to output.
  580. *
  581. * @param length The length of the stream buffer.
  582. *
  583. * @return 0 on success, negative errno code on fail.
  584. *
  585. * @note the handle shall be the same as the retval of #audio_out_open.
  586. *
  587. * @note There are 2 mode to transfer the output data.
  588. * One is reload mode which is using the same buffer and length and call #acts_aout_start one time,
  589. * the other is direct mode which use different buffer/length and call #acts_aout_start separatly.
  590. */
  591. static inline int audio_out_write(struct device *dev, void *handle, uint8_t *buffer, uint32_t length)
  592. {
  593. const struct aout_driver_api *api = dev->api;
  594. return api->aout_write(dev, handle, buffer, length);
  595. }
  596. /*!
  597. * @brief Stop the audio output channel by the specified handle.
  598. *
  599. * @param dev Pointer to the device structure for the audio output channel instance.
  600. *
  601. * @param handle The audio output channel instance handle.
  602. *
  603. * @return 0 on success, negative errno code on fail
  604. */
  605. static inline int audio_out_stop(struct device *dev, void *handle)
  606. {
  607. const struct aout_driver_api *api = dev->api;
  608. return api->aout_stop(dev, handle);
  609. }
  610. #ifdef __cplusplus
  611. }
  612. #endif
  613. /**
  614. * @} end defgroup audio_out_apis
  615. */
  616. #endif /* __AUDIO_OUT_H__ */