audio_record.c 9.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388
  1. /*
  2. * Copyright (c) 2016 Actions Semi Co., Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief audio record.
  9. */
  10. #include <os_common_api.h>
  11. #include <mem_manager.h>
  12. #include <msg_manager.h>
  13. #include <audio_hal.h>
  14. #include <audio_record.h>
  15. #include <string.h>
  16. #include <stdlib.h>
  17. #include <stdio.h>
  18. #include <media_mem.h>
  19. #include <ringbuff_stream.h>
  20. #include <audio_device.h>
  21. #define SYS_LOG_NO_NEWLINE
  22. #ifdef SYS_LOG_DOMAIN
  23. #undef SYS_LOG_DOMAIN
  24. #endif
  25. #define SYS_LOG_DOMAIN "audio record"
  26. #define AUDIO_RECORD_PCM_BUFF_SIZE 1024
  27. #ifdef CONFIG_FIXED_DMA_ACCESS_PSRAM
  28. static uint8_t record_pcm_buff[1024] __aligned(4) __in_section_unique(audio.bss.input_pcm);
  29. #endif
  30. static int _audio_record_request_more_data(void *priv_data, uint32_t reason)
  31. {
  32. int ret = 0;
  33. struct audio_record_t *handle = (struct audio_record_t *)priv_data;
  34. int num = handle->pcm_buff_size / 2;
  35. uint8_t *buf = NULL;
  36. if (!handle->audio_stream || handle->paused)
  37. goto exit;
  38. if (reason == AOUT_DMA_IRQ_HF) {
  39. buf = handle->pcm_buff;
  40. } else if (reason == AOUT_DMA_IRQ_TC) {
  41. buf = handle->pcm_buff + num;
  42. }
  43. if (handle->muted) {
  44. memset(buf, 0, num);
  45. }
  46. /**TODO: this avoid adc noise for first block*/
  47. if (handle->first_frame) {
  48. memset(buf, 0, num);
  49. handle->first_frame = 0;
  50. }
  51. ret = stream_write(handle->audio_stream, buf, num);
  52. if (ret <= 0) {
  53. if(handle->printk_cnt == 0) {
  54. SYS_LOG_WRN("data full ret %d ", ret);
  55. }
  56. handle->printk_cnt++;
  57. } else {
  58. handle->printk_cnt = 0;
  59. }
  60. exit:
  61. return 0;
  62. }
  63. static void *_audio_record_init(struct audio_record_t *handle)
  64. {
  65. audio_in_init_param_t ain_param = {0};
  66. memset(&ain_param, 0, sizeof(audio_in_init_param_t));
  67. ain_param.sample_rate = handle->sample_rate;
  68. ain_param.adc_gain = handle->adc_gain;
  69. ain_param.input_gain = handle->input_gain;
  70. ain_param.boost_gain = 0;
  71. ain_param.data_mode = handle->audio_mode;
  72. ain_param.data_width = 16;
  73. ain_param.dma_reload = 1;
  74. ain_param.reload_addr = handle->pcm_buff;
  75. ain_param.reload_len = handle->pcm_buff_size;
  76. ain_param.channel_type = handle->channel_type;
  77. ain_param.audio_device = audio_policy_get_record_channel_id(handle->stream_type);
  78. ain_param.callback = _audio_record_request_more_data;
  79. ain_param.callback_data = handle;
  80. return hal_ain_channel_open(&(ain_param));
  81. }
  82. struct audio_record_t *audio_record_create(uint8_t stream_type, int sample_rate_input, int sample_rate_output,
  83. uint8_t format, uint8_t audio_mode, void *outer_stream)
  84. {
  85. struct audio_record_t *audio_record = NULL;
  86. audio_record = mem_malloc(sizeof(struct audio_record_t));
  87. if (!audio_record)
  88. return NULL;
  89. /* dma reload buff */
  90. if (system_check_low_latencey_mode()) {
  91. audio_record->pcm_buff_size = (sample_rate_input <= 16) ? 256 : 512;
  92. } else {
  93. audio_record->pcm_buff_size = (sample_rate_input <= 16) ? 512 : 1024;
  94. }
  95. #ifdef CONFIG_FIXED_DMA_ACCESS_PSRAM
  96. audio_record->pcm_buff = record_pcm_buff;
  97. #else
  98. audio_record->pcm_buff = mem_malloc(audio_record->pcm_buff_size);
  99. #endif
  100. if (!audio_record->pcm_buff)
  101. goto err_exit;
  102. audio_record->stream_type = stream_type;
  103. audio_record->audio_format = format;
  104. audio_record->audio_mode = audio_mode;
  105. audio_record->output_sample_rate = sample_rate_output;
  106. audio_record->channel_type = audio_policy_get_record_channel_type(stream_type);
  107. audio_record->channel_mode = audio_policy_get_record_channel_mode(stream_type);
  108. audio_record->adc_gain = audio_policy_get_record_adc_gain(stream_type);
  109. audio_record->input_gain = audio_policy_get_record_input_gain(stream_type);
  110. audio_record->sample_rate = sample_rate_input;
  111. audio_record->first_frame = 1;
  112. if (audio_record->audio_mode == AUDIO_MODE_DEFAULT)
  113. audio_record->audio_mode = audio_policy_get_record_audio_mode(stream_type);
  114. if (audio_record->audio_mode == AUDIO_MODE_MONO) {
  115. audio_record->frame_size = 2;
  116. } else if (audio_record->audio_mode == AUDIO_MODE_STEREO) {
  117. audio_record->frame_size = 4;
  118. }
  119. audio_record->audio_handle = _audio_record_init(audio_record);
  120. if (!audio_record->audio_handle) {
  121. goto err_exit;
  122. }
  123. if (outer_stream) {
  124. audio_record->audio_stream = ringbuff_stream_create((struct acts_ringbuf *)outer_stream);
  125. } else {
  126. audio_record->audio_stream = ringbuff_stream_create_ext(
  127. media_mem_get_cache_pool(INPUT_PCM, stream_type),
  128. media_mem_get_cache_pool_size(INPUT_PCM, stream_type));
  129. }
  130. if (!audio_record->audio_stream) {
  131. SYS_LOG_ERR("audio_stream create failed");
  132. goto err_exit;
  133. }
  134. if (stream_open(audio_record->audio_stream, MODE_IN_OUT)) {
  135. stream_destroy(audio_record->audio_stream);
  136. audio_record->audio_stream = NULL;
  137. SYS_LOG_ERR(" audio_stream open failed ");
  138. goto err_exit;
  139. }
  140. if (audio_system_register_record(audio_record)) {
  141. SYS_LOG_ERR(" audio_system_registy_track failed ");
  142. stream_close(audio_record->audio_stream);
  143. stream_destroy(audio_record->audio_stream);
  144. goto err_exit;
  145. }
  146. if (system_check_low_latencey_mode()) {
  147. if (audio_record->stream_type == AUDIO_STREAM_VOICE) {
  148. if(sample_rate_input == 16) {
  149. memset(audio_record->pcm_buff, 0, audio_record->pcm_buff_size);
  150. stream_write(audio_record->audio_stream, audio_record->pcm_buff, 256);
  151. stream_write(audio_record->audio_stream, audio_record->pcm_buff, 256);
  152. stream_write(audio_record->audio_stream, audio_record->pcm_buff, 208);
  153. }
  154. }
  155. }
  156. if (audio_policy_get_aec_reference_type() == AEC_REF_TYPE_HW
  157. && audio_record->stream_type == AUDIO_STREAM_VOICE){
  158. hal_ain_set_aec_record_back(audio_record->audio_handle, 1);
  159. }
  160. SYS_LOG_INF("stream_type : %d", audio_record->stream_type);
  161. SYS_LOG_INF("audio_format : %d", audio_record->audio_format);
  162. SYS_LOG_INF("audio_mode : %d", audio_record->audio_mode);
  163. SYS_LOG_INF("channel_type : %d ", audio_record->channel_type);
  164. SYS_LOG_INF("channel_id : %d ", audio_record->channel_id);
  165. SYS_LOG_INF("channel_mode : %d ", audio_record->channel_mode);
  166. SYS_LOG_INF("input_sr : %d ", audio_record->sample_rate);
  167. SYS_LOG_INF("output_sr : %d ", audio_record->output_sample_rate);
  168. SYS_LOG_INF("volume : %d ", audio_record->volume);
  169. SYS_LOG_INF("audio_handle : %p", audio_record->audio_handle);
  170. SYS_LOG_INF("audio_stream : %p", audio_record->audio_stream);
  171. if (outer_stream) {
  172. SYS_LOG_INF("audio_stream ptr : %x", ((struct acts_ringbuf *)outer_stream)->cpu_ptr);
  173. }
  174. return audio_record;
  175. err_exit:
  176. #ifndef CONFIG_FIXED_DMA_ACCESS_PSRAM
  177. if (audio_record->pcm_buff)
  178. mem_free(audio_record->pcm_buff);
  179. #endif
  180. mem_free(audio_record);
  181. return NULL;
  182. }
  183. int audio_record_destory(struct audio_record_t *handle)
  184. {
  185. if (!handle)
  186. return -EINVAL;
  187. if (audio_system_unregister_record(handle)) {
  188. SYS_LOG_ERR(" audio_system_unregisty_record failed ");
  189. return -ESRCH;
  190. }
  191. if (handle->audio_handle)
  192. hal_ain_channel_close(handle->audio_handle);
  193. if (handle->audio_stream)
  194. stream_destroy(handle->audio_stream);
  195. #ifndef CONFIG_FIXED_DMA_ACCESS_PSRAM
  196. if (handle->pcm_buff) {
  197. mem_free(handle->pcm_buff);
  198. handle->pcm_buff = NULL;
  199. }
  200. #endif
  201. mem_free(handle);
  202. SYS_LOG_INF(" handle: %p ok ", handle);
  203. return 0;
  204. }
  205. int audio_record_start(struct audio_record_t *handle)
  206. {
  207. if (!handle)
  208. return -EINVAL;
  209. hal_ain_channel_read_data(handle->audio_handle, handle->pcm_buff, handle->pcm_buff_size);
  210. hal_ain_channel_start(handle->audio_handle);
  211. return 0;
  212. }
  213. int audio_record_stop(struct audio_record_t *handle)
  214. {
  215. if (!handle)
  216. return -EINVAL;
  217. if (handle->audio_stream)
  218. stream_close(handle->audio_stream);
  219. if (audio_policy_get_aec_reference_type() == AEC_REF_TYPE_HW
  220. && handle->stream_type == AUDIO_STREAM_VOICE){
  221. hal_ain_set_aec_record_back(handle->audio_handle, 0);
  222. }
  223. if (handle->audio_handle)
  224. hal_ain_channel_stop(handle->audio_handle);
  225. return 0;
  226. }
  227. int audio_record_pause(struct audio_record_t *handle)
  228. {
  229. if (!handle)
  230. return -EINVAL;
  231. handle->paused = 1;
  232. return 0;
  233. }
  234. int audio_record_resume(struct audio_record_t *handle)
  235. {
  236. if (!handle)
  237. return -EINVAL;
  238. handle->paused = 0;
  239. return 0;
  240. }
  241. int audio_record_read(struct audio_record_t *handle, uint8_t *buff, int num)
  242. {
  243. if (!handle->audio_stream)
  244. return 0;
  245. return stream_read(handle->audio_stream, buff, num);
  246. }
  247. int audio_record_flush(struct audio_record_t *handle)
  248. {
  249. if (!handle)
  250. return -EINVAL;
  251. /**TODO: wanghui wait record data empty*/
  252. return 0;
  253. }
  254. int audio_record_set_volume(struct audio_record_t *handle, int volume)
  255. {
  256. adc_gain gain;
  257. uint8_t i;
  258. if (!handle)
  259. return -EINVAL;
  260. handle->volume = volume;
  261. for (i = 0; i < ADC_CH_NUM_MAX; i++)
  262. gain.ch_gain[i] = volume;
  263. hal_ain_channel_set_volume(handle->audio_handle, &gain);
  264. SYS_LOG_INF("volume ---%d\n", volume);
  265. return 0;
  266. }
  267. int audio_record_get_volume(struct audio_record_t *handle)
  268. {
  269. if (!handle)
  270. return -EINVAL;
  271. return handle->volume;
  272. }
  273. int audio_record_set_sample_rate(struct audio_record_t *handle, int sample_rate)
  274. {
  275. if (!handle)
  276. return -EINVAL;
  277. handle->sample_rate = sample_rate;
  278. return 0;
  279. }
  280. int audio_record_get_sample_rate(struct audio_record_t *handle)
  281. {
  282. if (!handle)
  283. return -EINVAL;
  284. return handle->sample_rate;
  285. }
  286. io_stream_t audio_record_get_stream(struct audio_record_t *handle)
  287. {
  288. if (!handle)
  289. return NULL;
  290. return handle->audio_stream;
  291. }
  292. int audio_record_set_play_flag(struct audio_record_t *handle, uint16_t *play_flag)
  293. {
  294. if (!handle || !play_flag)
  295. return -EINVAL;
  296. handle->play_flag = play_flag;
  297. handle->drop_cnt = 1;
  298. return 0;
  299. }