audio_out.h 26 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671
  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. /** @} */
  384. /*!
  385. * struct volume_setting_t
  386. * @brief The structure to configure the audio left/right channel volume.
  387. */
  388. typedef struct {
  389. #define AOUT_VOLUME_INVALID (0xFFFFFFFF)
  390. /*!< macro to the invalid volume value */
  391. int32_t left_volume;
  392. /*!< 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 */
  393. int32_t right_volume;
  394. /*!< 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 */
  395. } volume_setting_t;
  396. /*!
  397. * struct dac_threshold_setting_t
  398. * @brief The setting of the DAC PCMBUF threshold.
  399. */
  400. typedef struct {
  401. uint32_t he_thres;
  402. /*!< The half empty threshold */
  403. uint32_t hf_thres;
  404. /*!< The half full threshold */
  405. } dac_threshold_setting_t;
  406. /*!
  407. * struct dac_setting_t
  408. * @brief The DAC setting parameters.
  409. */
  410. typedef struct {
  411. audio_ch_mode_e channel_mode;
  412. /*!< Select the channel mode such as mono or strereo */
  413. volume_setting_t volume;
  414. /*!< The left and right volume setting */
  415. } dac_setting_t;
  416. /*!
  417. * struct i2stx_setting_t
  418. * @brief The I2STX setting parameters.
  419. */
  420. typedef struct {
  421. #define I2STX_SRD_FS_CHANGE (1 << 0)
  422. /*!< I2STX SRD(sample rate detect) captures the event that the sample rate has changed.
  423. * int callback(cb_data, #I2STX_SRD_FS_CHANGE, audio_sr_sel_e *sr)
  424. */
  425. #define I2STX_SRD_WL_CHANGE (1 << 1)
  426. /*!< I2STX SRD(sample rate detect) captures the event that the effective width length has changed.
  427. * int callback(cb_data, #I2STX_SRD_WL_CHANGE, audio_i2s_srd_wl_e *wl)
  428. */
  429. #define I2STX_SRD_TIMEOUT (1 << 2)
  430. /*!< I2STX SRD(sample rate detect) captures the timeout (disconnection) event.
  431. * int callback(cb_data, #I2STX_SRD_TIMEOUT, NULL)
  432. */
  433. int (*srd_callback)(void *cb_data, uint32_t cmd, void *param);
  434. /*!< The callback function from I2STX SRD(sample rate detect) module which worked in the slave mode */
  435. void *cb_data;
  436. /*!< Callback user data */
  437. } i2stx_setting_t;
  438. /*!
  439. * struct spdiftx_setting_t
  440. * @brief The SPDIFTX setting parameters
  441. * @note The FIFOs used by SPDIFTX can be #AOUT_FIFO_DAC0 or #AOUT_FIFO_I2STX0.
  442. * If select the #AOUT_FIFO_DAC0, the clock source will use the division 2 of the DAC clock source.
  443. * 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.
  444. */
  445. typedef struct {
  446. 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*/
  447. } spdiftx_setting_t;
  448. /*!
  449. * struct aout_param_t
  450. * @brief The audio out configuration parameters
  451. */
  452. typedef struct {
  453. #define AOUT_DMA_IRQ_HF (1 << 0) /*!< DMA irq half full flag */
  454. #define AOUT_DMA_IRQ_TC (1 << 1) /*!< DMA irq transfer completly flag */
  455. uint8_t sample_rate;
  456. /*!< The sample rate setting and can refer to enum audio_sr_sel_e */
  457. uint16_t channel_type;
  458. /*!< Indicates the channel type selection and can refer to #AUDIO_CHANNEL_DAC, #AUDIO_CHANNEL_I2STX, #AUDIO_CHANNEL_SPDIFTX*/
  459. audio_ch_width_e channel_width;
  460. /*!< The channel effective data width */
  461. audio_outfifo_sel_e outfifo_type;
  462. /*!< Indicates the used output fifo type */
  463. dac_setting_t *dac_setting;
  464. /*!< The DAC function setting if has */
  465. i2stx_setting_t *i2stx_setting;
  466. /*!< The I2STX function setting if has */
  467. spdiftx_setting_t *spdiftx_setting;
  468. /*!< The SPDIFTX function setting if has */
  469. int (*callback)(void *cb_data, uint32_t reason);
  470. /*!< The callback function which conrespondingly with the events such as #AOUT_PCMBUF_IP_HE or #AOUT_PCMBUF_IP_HF etc.*/
  471. void *cb_data;
  472. /*!< Callback user data */
  473. audio_reload_t *reload_setting;
  474. /*!< The reload mode setting and if don't use this mode, please let 'reload_setting = NULL' */
  475. } aout_param_t;
  476. /*!
  477. * struct aout_driver_api
  478. * @brief The sturcture to define audio out driver API.
  479. */
  480. struct aout_driver_api {
  481. void* (*aout_open)(struct device *dev, aout_param_t *param);
  482. int (*aout_close)(struct device *dev, void *handle);
  483. int (*aout_start)(struct device *dev, void *handle);
  484. int (*aout_write)(struct device *dev, void *handle, uint8_t *buffer, uint32_t length);
  485. int (*aout_stop)(struct device *dev, void *handle);
  486. int (*aout_control)(struct device *dev, void *handle, int cmd, void *param);
  487. };
  488. /*!
  489. * @brief Open the audio output channel by specified parameters.
  490. *
  491. * @param dev Pointer to the device structure for the audio output channel instance.
  492. *
  493. * @param setting Pointer to the audio output channel parameter.
  494. *
  495. * @return The audio output channel instance handle.
  496. */
  497. static inline void* audio_out_open(struct device *dev, aout_param_t *setting)
  498. {
  499. const struct aout_driver_api *api = dev->api;
  500. return api->aout_open(dev, setting);
  501. }
  502. /*!
  503. * @brief Close the audio output channel by the specified handle.
  504. *
  505. * @param dev Pointer to the device structure for the audio output channel instance.
  506. *
  507. * @param handle The audio output channel instance handle.
  508. *
  509. * @return 0 on success, negative errno code on fail.
  510. *
  511. * @note the handle shall be the same as the retval of #audio_out_open.
  512. */
  513. static inline int audio_out_close(struct device *dev, void *handle)
  514. {
  515. const struct aout_driver_api *api = dev->api;
  516. return api->aout_close(dev, handle);
  517. }
  518. /*!
  519. * @brief Control the audio output channel by the specified handle.
  520. *
  521. * @param dev Pointer to the device structure for the audio output channel instance.
  522. *
  523. * @param handle The audio output channel instance handle.
  524. *
  525. * @param cmd The control command that sent to the audio output channel.
  526. *
  527. * @param param The audio out in/out parameters which corresponding with the commands
  528. *
  529. * @return 0 on success, negative errno code on fail.
  530. *
  531. * @note the handle shall be the same as the retval of #audio_out_open.
  532. */
  533. static inline int audio_out_control(struct device *dev, void *handle, int cmd, void *param)
  534. {
  535. const struct aout_driver_api *api = dev->api;
  536. return api->aout_control(dev, handle, cmd, param);
  537. }
  538. /*!
  539. * @brief Start the audio output channel by the specified handle.
  540. *
  541. * @param dev Pointer to the device structure for the audio output channel instance.
  542. *
  543. * @param handle The audio output channel instance handle.
  544. *
  545. * @return 0 on success, negative errno code on fail.
  546. *
  547. * @note the handle shall be the same as the retval of #audio_out_open.
  548. */
  549. static inline int audio_out_start(struct device *dev, void *handle)
  550. {
  551. const struct aout_driver_api *api = dev->api;
  552. return api->aout_start(dev, handle);
  553. }
  554. /*!
  555. * @brief Write data into the audio output channel.
  556. *
  557. * @param dev Pointer to the device structure for the audio output channel instance.
  558. *
  559. * @param handle The audio output channel instance handle.
  560. *
  561. * @param buffer The stream buffer to output.
  562. *
  563. * @param length The length of the stream buffer.
  564. *
  565. * @return 0 on success, negative errno code on fail.
  566. *
  567. * @note the handle shall be the same as the retval of #audio_out_open.
  568. *
  569. * @note There are 2 mode to transfer the output data.
  570. * One is reload mode which is using the same buffer and length and call #acts_aout_start one time,
  571. * the other is direct mode which use different buffer/length and call #acts_aout_start separatly.
  572. */
  573. static inline int audio_out_write(struct device *dev, void *handle, uint8_t *buffer, uint32_t length)
  574. {
  575. const struct aout_driver_api *api = dev->api;
  576. return api->aout_write(dev, handle, buffer, length);
  577. }
  578. /*!
  579. * @brief Stop the audio output channel by the specified handle.
  580. *
  581. * @param dev Pointer to the device structure for the audio output channel instance.
  582. *
  583. * @param handle The audio output channel instance handle.
  584. *
  585. * @return 0 on success, negative errno code on fail
  586. */
  587. static inline int audio_out_stop(struct device *dev, void *handle)
  588. {
  589. const struct aout_driver_api *api = dev->api;
  590. return api->aout_stop(dev, handle);
  591. }
  592. #ifdef __cplusplus
  593. }
  594. #endif
  595. /**
  596. * @} end defgroup audio_out_apis
  597. */
  598. #endif /* __AUDIO_OUT_H__ */