dsp_function.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467
  1. /*
  2. * Copyright (c) 2020 Actions Technology Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <zephyr.h>
  7. #include <stdint.h>
  8. #include <acts_ringbuf.h>
  9. #include "dsp_inner.h"
  10. static struct dsp_session_buf *buf_dsp2cpu(uint32_t dsp_buf)
  11. {
  12. return (struct dsp_session_buf *)dsp_to_mcu_address(dsp_buf, 0);
  13. }
  14. static void print_ringbuf_info(const char *str, uint32_t buf, int type)
  15. {
  16. struct dsp_session_buf *dsp_buf = buf_dsp2cpu(buf);
  17. if (type == 0) {
  18. printk("\t\t%s=%p (length=%u/%u ptr=%p/%p)\n",
  19. str, dsp_buf,
  20. dsp_session_buf_length(dsp_buf),
  21. dsp_session_buf_size(dsp_buf),
  22. acts_ringbuf_head_ptr(&dsp_buf->buf, NULL),
  23. acts_ringbuf_tail_ptr(&dsp_buf->buf, NULL));
  24. } else {
  25. printk("\t\t%s=%p (space=%u/%u ptr=%p/%p)\n",
  26. str, dsp_buf,
  27. dsp_session_buf_space(dsp_buf),
  28. dsp_session_buf_size(dsp_buf),
  29. acts_ringbuf_head_ptr(&dsp_buf->buf, NULL),
  30. acts_ringbuf_tail_ptr(&dsp_buf->buf, NULL));
  31. }
  32. }
  33. static void dump_media_session(void *info)
  34. {
  35. #if 0
  36. struct media_dspssn_info *media_info = info;
  37. struct media_dspssn_params *params = &media_info->params;
  38. printk("\nsession media (id=%u):\n", DSP_SESSION_MEDIA);
  39. printk("\taec_en=%d\n", params->aec_en);
  40. printk("\taec_delay=%d samples\n", params->aec_delay);
  41. if (media_info->aec_refbuf)
  42. printk("\taec_refbuf=%p (length=%u/%u)\n",
  43. buf_dsp2cpu(media_info->aec_refbuf),
  44. dsp_session_buf_length(buf_dsp2cpu(media_info->aec_refbuf)),
  45. dsp_session_buf_size(buf_dsp2cpu(media_info->aec_refbuf)));
  46. #endif
  47. }
  48. void dsp_session_dump_info(struct dsp_session *session, void *info)
  49. {
  50. switch (session->id) {
  51. case DSP_SESSION_MEDIA:
  52. dump_media_session(info);
  53. break;
  54. default:
  55. break;
  56. }
  57. }
  58. #if 0
  59. static void dump_test_function(void *info, bool dump_debug)
  60. {
  61. struct test_dspfunc_info *test_info = info;
  62. struct test_dspfunc_params *params = &test_info->params;
  63. struct test_dspfunc_runtime *runtime = &test_info->runtime;
  64. printk("\nfunction (id=%u):\n", DSP_FUNCTION_TEST);
  65. printk("\tparameters:\n");
  66. printk("\t\t(%p)inbuf.length=%u/%u\n", buf_dsp2cpu(params->inbuf),
  67. dsp_session_buf_length(buf_dsp2cpu(params->inbuf)),
  68. dsp_session_buf_size(buf_dsp2cpu(params->inbuf)));
  69. printk("\t\t(%p)outbuf.space=%u/%u\n", buf_dsp2cpu(params->outbuf),
  70. dsp_session_buf_space(buf_dsp2cpu(params->outbuf)),
  71. dsp_session_buf_size(buf_dsp2cpu(params->outbuf)));
  72. printk("\truntime:\n");
  73. printk("\t\tsample_count=%u\n", runtime->sample_count);
  74. }
  75. #endif
  76. static void dump_decoder_function(void *info, bool dump_debug)
  77. {
  78. struct decoder_dspfunc_info *decoder_info = info;
  79. struct decoder_dspfunc_params *params = &decoder_info->params;
  80. struct decoder_dspfunc_ext_params *ext_params = &decoder_info->ext_params;
  81. struct decoder_dspfunc_runtime *runtime = &decoder_info->runtime;
  82. struct decoder_dspfunc_debug *debug = &decoder_info->debug;
  83. if(!info){
  84. return;
  85. }
  86. printk("\nfunction decoder (id=%u):\n", DSP_FUNCTION_DECODER);
  87. printk("\tparameters:\n");
  88. printk("\t\tformat=%u\n", params->format);
  89. printk("\t\tsample_rate(in)=%u\n", params->resample_param.input_sr);
  90. printk("\t\tsample_rate(out)=%u\n", params->resample_param.output_sr);
  91. print_ringbuf_info("inbuf", (uint32_t)params->inbuf, 0);
  92. print_ringbuf_info("outbuf", (uint32_t)params->outbuf, 1);
  93. printk("\t\tformat_pbuf=%x\n", (uint32_t)ext_params->format_pbuf);
  94. printk("\t\tformat_pbufsz=%u\n", ext_params->format_pbufsz);
  95. if (ext_params->evtbuf)
  96. print_ringbuf_info("evtbuf", (uint32_t)ext_params->evtbuf, 1);
  97. printk("\truntime:\n");
  98. printk("\t\tframe_size=%u\n", runtime->frame_size);
  99. printk("\t\tchannels=%u\n", runtime->channels);
  100. printk("\t\tsample_count=%u\n", runtime->sample_count);
  101. printk("\t\tdatalost_count=%u\n", runtime->datalost_count);
  102. printk("\t\traw_count=%u\n", runtime->raw_count);
  103. if (!dump_debug)
  104. return;
  105. printk("\tdebug:\n");
  106. if (debug->stream) {
  107. print_ringbuf_info("stream", (uint32_t)debug->stream, 1);
  108. }
  109. if (debug->pcmbuf) {
  110. print_ringbuf_info("pcmbuf", (uint32_t)debug->stream, 1);
  111. }
  112. if (debug->plcbuf) {
  113. print_ringbuf_info("plc_data", (uint32_t)debug->plcbuf, 1);
  114. }
  115. }
  116. static void dump_encoder_function(void *info, bool dump_debug)
  117. {
  118. struct encoder_dspfunc_info *encoder_info = info;
  119. struct encoder_dspfunc_params *params = &encoder_info->params;
  120. struct encoder_dspfunc_runtime *runtime = &encoder_info->runtime;
  121. struct encoder_dspfunc_debug *debug = &encoder_info->debug;
  122. printk("\nfunction encoder (id=%u):\n", DSP_FUNCTION_ENCODER);
  123. printk("\tparameters:\n");
  124. printk("\t\tformat=%u\n", params->format);
  125. printk("\t\tsample_rate=%u\n", params->sample_rate);
  126. printk("\t\tbit_rate=%u\n", params->bit_rate);
  127. printk("\t\tcomplexityt=%u\n", params->complexity);
  128. printk("\t\tchannels=%u\n", params->channels);
  129. printk("\t\tframe_size=%u\n", params->frame_size);
  130. print_ringbuf_info("inbuf", (uint32_t)params->inbuf, 0);
  131. print_ringbuf_info("outbuf", (uint32_t)params->outbuf, 1);
  132. printk("\truntime:\n");
  133. printk("\t\tframe_size=%u\n", runtime->frame_size);
  134. printk("\t\tchannels=%u\n", runtime->channels);
  135. printk("\t\tcompression_ratio=%u\n", runtime->compression_ratio);
  136. printk("\t\tsample_count=%u\n", runtime->sample_count);
  137. if (!dump_debug)
  138. return;
  139. printk("\tdebug:\n");
  140. if (debug->pcmbuf) {
  141. print_ringbuf_info("pcmbuf", (uint32_t)debug->pcmbuf, 1);
  142. }
  143. if (debug->stream) {
  144. print_ringbuf_info("stream", (uint32_t)debug->stream, 1);
  145. }
  146. }
  147. static void dump_streamout_function(void *info, bool dump_debug)
  148. {
  149. struct streamout_dspfunc_info *streamout_info = info;
  150. struct streamout_dspfunc_params *params = &streamout_info->params;
  151. if(!info){
  152. return;
  153. }
  154. printk("\nfunction streamout (id=%u):\n", DSP_FUNCTION_POSTPROCESS);
  155. printk("\tparameters:\n");
  156. printk("\t\tdae.pbuf=%08x\n", params->dae.pbuf);
  157. printk("\t\tdae.pbufsz=%u\n", params->dae.pbufsz);
  158. printk("\t\tmisc.auto_mute=%u\n", params->misc.auto_mute);
  159. printk("\t\tmisc.auto_mute_threshold=%u\n", params->misc.auto_mute_threshold);
  160. if (params->output.outbuf)
  161. print_ringbuf_info("output.outbuf", (uint32_t)params->output.outbuf, 1);
  162. if (params->output.outbuf_subwoofer)
  163. print_ringbuf_info("output.outbuf_subwoofer", (uint32_t)params->output.outbuf_subwoofer, 1);
  164. printk("\t\tmix.channel_num=%u\n", params->mix.channel_num);
  165. if (params->mix.channel_num > 0 && params->mix.channel_params[0].chan_buf)
  166. print_ringbuf_info("mix.channel_params[0].chan_buf", (uint32_t)params->mix.channel_params[0].chan_buf, 0);
  167. if (params->energy.energy_buf)
  168. print_ringbuf_info("energy.energy_buf", (uint32_t)params->energy.energy_buf, 1);
  169. }
  170. static void dump_player_function(void *info, bool dump_debug)
  171. {
  172. struct player_dspfunc_info *player_info = info;
  173. struct decoder_dspfunc_info *decoder_info =
  174. (void *)dsp_to_mcu_address(POINTER_TO_UINT(player_info->decoder_info), 0);
  175. struct decoder_dspfunc_info *streamout_info =
  176. (void *)dsp_to_mcu_address(POINTER_TO_UINT(player_info->streamout_info), 0);
  177. struct player_dspfunc_debug *debug = &player_info->debug;
  178. printk("\nfunction player (id=%u):\n", DSP_FUNCTION_PLAYER);
  179. printk("\tparameters:\n");
  180. printk("\t\tdae.pbuf=%p\n", (void *)dsp_to_mcu_address(player_info->dae.pbuf, 0));
  181. printk("\t\tdae.pbufsz=%u\n", player_info->dae.pbufsz);
  182. #if 0
  183. if (player_info->aec.enable) {
  184. printk("\t\taec.delay=%d\n", player_info->aec.delay);
  185. printk("\t\taec.refbuf=%p (space=%u/%u)\n",
  186. buf_dsp2cpu(player_info->aec.channel[0].refbuf),
  187. dsp_session_buf_space(buf_dsp2cpu(player_info->aec.channel[0].refbuf)),
  188. dsp_session_buf_size(buf_dsp2cpu(player_info->aec.channel[0].refbuf)));
  189. }
  190. #endif
  191. print_ringbuf_info("dacbuf", (uint32_t)player_info->output.outbuf, 1);
  192. if (!dump_debug) {
  193. dump_decoder_function(decoder_info, false);
  194. return;
  195. }
  196. printk("\tdebug:\n");
  197. if (debug->decode_stream) {
  198. print_ringbuf_info("decode_stream", (uint32_t)debug->decode_stream, 1);
  199. }
  200. if (debug->decode_data) {
  201. print_ringbuf_info("decode_data", (uint32_t)debug->decode_data, 1);
  202. }
  203. if (debug->plc_data) {
  204. print_ringbuf_info("plc_data", (uint32_t)debug->plc_data, 1);
  205. }
  206. if (player_info->decoder_info){
  207. dump_decoder_function(decoder_info, false);
  208. }
  209. if (player_info->streamout_info){
  210. dump_streamout_function(streamout_info, false);
  211. }
  212. }
  213. static void dump_recorder_function(void *info, bool dump_debug)
  214. {
  215. struct recorder_dspfunc_info *recorder_info = info;
  216. struct encoder_dspfunc_info *encoder_info =
  217. (void *)dsp_to_mcu_address((u32_t)recorder_info->encoder_info, 0);
  218. struct recorder_dspfunc_debug *debug = &recorder_info->debug;
  219. printk("\nfunction recorder (id=%u):\n", DSP_FUNCTION_RECORDER);
  220. printk("\tparameters:\n");
  221. printk("\t\tdae.pbuf=%p\n", (void *)dsp_to_mcu_address(recorder_info->dae.pbuf, 0));
  222. printk("\t\tdae.pbufsz=%u\n", recorder_info->dae.pbufsz);
  223. if (recorder_info->aec.enable) {
  224. print_ringbuf_info("aec.refbuf", (uint32_t)recorder_info->aec.refbuf[0], 0);
  225. }
  226. print_ringbuf_info("adcbuf", (uint32_t)recorder_info->aec.inbuf, 0);
  227. if (!dump_debug) {
  228. dump_encoder_function(encoder_info, false);
  229. return;
  230. }
  231. printk("\tdebug:\n");
  232. if (debug->mic1_data) {
  233. print_ringbuf_info("mic1_data", (uint32_t)debug->mic1_data, 1);
  234. }
  235. if (debug->mic2_data) {
  236. print_ringbuf_info("mic2_data", (uint32_t)debug->mic2_data, 1);
  237. }
  238. if (debug->ref_data) {
  239. print_ringbuf_info("ref_data", (uint32_t)debug->ref_data, 1);
  240. }
  241. if (debug->aec1_data) {
  242. print_ringbuf_info("aec1_data", (uint32_t)debug->aec1_data, 1);
  243. }
  244. if (debug->aec2_data) {
  245. print_ringbuf_info("aec2_data", (uint32_t)debug->aec2_data, 1);
  246. }
  247. if (debug->encode_data) {
  248. print_ringbuf_info("encode_data", (uint32_t)debug->encode_data, 1);
  249. }
  250. if (debug->encode_stream) {
  251. print_ringbuf_info("encode_stream", (uint32_t)debug->encode_stream, 1);
  252. }
  253. dump_encoder_function(encoder_info, false);
  254. }
  255. void dsp_session_dump_function(struct dsp_session *session, unsigned int func)
  256. {
  257. struct dsp_request_function request = { .id = func, };
  258. dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
  259. if (request.info == NULL)
  260. return;
  261. switch (func) {
  262. #if 0
  263. case DSP_FUNCTION_TEST:
  264. dump_test_function(request.info, true);
  265. break;
  266. #endif
  267. case DSP_FUNCTION_ENCODER:
  268. dump_encoder_function(request.info, true);
  269. break;
  270. case DSP_FUNCTION_DECODER:
  271. dump_decoder_function(request.info, true);
  272. break;
  273. case DSP_FUNCTION_PLAYER:
  274. dump_player_function(request.info, true);
  275. break;
  276. case DSP_FUNCTION_RECORDER:
  277. dump_recorder_function(request.info, true);
  278. break;
  279. case DSP_FUNCTION_POSTPROCESS:
  280. dump_streamout_function(request.info, true);
  281. break;
  282. default:
  283. break;
  284. }
  285. }
  286. int dsp_session_get_pcmbuf_info(struct dsp_session *session, struct streamout_dspfunc_runtime_pcmbuf *pcmbuf)
  287. {
  288. struct dsp_request_function request = { .id = DSP_FUNCTION_POSTPROCESS, };
  289. dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
  290. if (request.info == NULL)
  291. return -EINVAL;
  292. struct streamout_dspfunc_info *streamout_info = (struct streamout_dspfunc_info *)(request.info);
  293. struct streamout_dspfunc_runtime_pcmbuf *p = &(streamout_info->runtime.pcmbuf);
  294. if (p->dsp_write_seq != p->cpu_read_seq && p->dsp_write_seq == (uint16_t)(p->cpu_read_seq + 1)) {
  295. memcpy(pcmbuf, p, sizeof(struct streamout_dspfunc_runtime_pcmbuf));
  296. p->cpu_read_seq = p->dsp_write_seq;
  297. return 0;
  298. }
  299. return -EINVAL;
  300. }
  301. unsigned int dsp_session_get_samples_count(struct dsp_session *session, unsigned int func)
  302. {
  303. union {
  304. struct test_dspfunc_info *test;
  305. struct encoder_dspfunc_info *encoder;
  306. struct decoder_dspfunc_info *decoder;
  307. } func_info;
  308. if (func == DSP_FUNCTION_PLAYER)
  309. func = DSP_FUNCTION_DECODER;
  310. else if (func == DSP_FUNCTION_RECORDER)
  311. func = DSP_FUNCTION_ENCODER;
  312. struct dsp_request_function request = { .id = func, };
  313. dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
  314. if (request.info == NULL)
  315. return 0;
  316. switch (func) {
  317. #if 0
  318. case DSP_FUNCTION_TEST:
  319. func_info.test = request.info;
  320. return func_info.test->runtime.sample_count;
  321. #endif
  322. case DSP_FUNCTION_ENCODER:
  323. func_info.encoder = request.info;
  324. return func_info.encoder->runtime.sample_count;
  325. case DSP_FUNCTION_DECODER:
  326. func_info.decoder = request.info;
  327. return func_info.decoder->runtime.sample_count;
  328. default:
  329. return 0;
  330. }
  331. }
  332. unsigned int dsp_session_get_datalost_count(struct dsp_session *session, unsigned int func)
  333. {
  334. struct dsp_request_function request = { .id = DSP_FUNCTION_DECODER, };
  335. if (func != DSP_FUNCTION_PLAYER && func != DSP_FUNCTION_DECODER)
  336. return 0;
  337. dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
  338. if (request.info) {
  339. struct decoder_dspfunc_info *decoder = request.info;
  340. return decoder->runtime.datalost_count;
  341. }
  342. return 0;
  343. }
  344. unsigned int dsp_session_get_raw_count(struct dsp_session *session, unsigned int func)
  345. {
  346. struct dsp_request_function request = { .id = DSP_FUNCTION_DECODER, };
  347. if (func != DSP_FUNCTION_PLAYER && func != DSP_FUNCTION_DECODER)
  348. return 0;
  349. dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
  350. if (request.info) {
  351. struct decoder_dspfunc_info *decoder = request.info;
  352. return decoder->runtime.raw_count;
  353. }
  354. return 0;
  355. }
  356. int dsp_session_get_recoder_param(struct dsp_session *session, int param_type, void *param)
  357. {
  358. struct dsp_request_session session_request;
  359. struct dsp_request_function request = { .id = DSP_FUNCTION_RECORDER, };
  360. dsp_request_userinfo(session->dev, DSP_REQUEST_SESSION_INFO, &session_request);
  361. if(!(session_request.func_enabled & DSP_FUNC_BIT(DSP_FUNCTION_RECORDER))){
  362. return -EINVAL;
  363. }
  364. dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
  365. if (request.info) {
  366. struct recorder_dspfunc_info *encoder = request.info;
  367. if(param_type == DSP_CONFIG_AEC){
  368. memcpy(param, &encoder->aec, sizeof(struct aec_dspfunc_params));
  369. return 0;
  370. }
  371. }
  372. return -EINVAL;
  373. }
  374. int dsp_session_get_function_runable(struct dsp_session *session, int function_type)
  375. {
  376. struct dsp_request_session session_request;
  377. dsp_request_userinfo(session->dev, DSP_REQUEST_SESSION_INFO, &session_request);
  378. if((session_request.func_runnable & DSP_FUNC_BIT(function_type))){
  379. return true;
  380. }
  381. return false;
  382. }
  383. int dsp_session_get_function_enable(struct dsp_session *session, int function_type)
  384. {
  385. struct dsp_request_session session_request;
  386. dsp_request_userinfo(session->dev, DSP_REQUEST_SESSION_INFO, &session_request);
  387. if((session_request.func_enabled & DSP_FUNC_BIT(function_type))){
  388. return true;
  389. }
  390. return false;
  391. }