123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467 |
- /*
- * Copyright (c) 2020 Actions Technology Co., Ltd
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #include <zephyr.h>
- #include <stdint.h>
- #include <acts_ringbuf.h>
- #include "dsp_inner.h"
- static struct dsp_session_buf *buf_dsp2cpu(uint32_t dsp_buf)
- {
- return (struct dsp_session_buf *)dsp_to_mcu_address(dsp_buf, 0);
- }
- static void print_ringbuf_info(const char *str, uint32_t buf, int type)
- {
- struct dsp_session_buf *dsp_buf = buf_dsp2cpu(buf);
- if (type == 0) {
- printk("\t\t%s=%p (length=%u/%u ptr=%p/%p)\n",
- str, dsp_buf,
- dsp_session_buf_length(dsp_buf),
- dsp_session_buf_size(dsp_buf),
- acts_ringbuf_head_ptr(&dsp_buf->buf, NULL),
- acts_ringbuf_tail_ptr(&dsp_buf->buf, NULL));
- } else {
- printk("\t\t%s=%p (space=%u/%u ptr=%p/%p)\n",
- str, dsp_buf,
- dsp_session_buf_space(dsp_buf),
- dsp_session_buf_size(dsp_buf),
- acts_ringbuf_head_ptr(&dsp_buf->buf, NULL),
- acts_ringbuf_tail_ptr(&dsp_buf->buf, NULL));
- }
- }
- static void dump_media_session(void *info)
- {
- #if 0
- struct media_dspssn_info *media_info = info;
- struct media_dspssn_params *params = &media_info->params;
- printk("\nsession media (id=%u):\n", DSP_SESSION_MEDIA);
- printk("\taec_en=%d\n", params->aec_en);
- printk("\taec_delay=%d samples\n", params->aec_delay);
- if (media_info->aec_refbuf)
- printk("\taec_refbuf=%p (length=%u/%u)\n",
- buf_dsp2cpu(media_info->aec_refbuf),
- dsp_session_buf_length(buf_dsp2cpu(media_info->aec_refbuf)),
- dsp_session_buf_size(buf_dsp2cpu(media_info->aec_refbuf)));
- #endif
- }
- void dsp_session_dump_info(struct dsp_session *session, void *info)
- {
- switch (session->id) {
- case DSP_SESSION_MEDIA:
- dump_media_session(info);
- break;
- default:
- break;
- }
- }
- #if 0
- static void dump_test_function(void *info, bool dump_debug)
- {
- struct test_dspfunc_info *test_info = info;
- struct test_dspfunc_params *params = &test_info->params;
- struct test_dspfunc_runtime *runtime = &test_info->runtime;
- printk("\nfunction (id=%u):\n", DSP_FUNCTION_TEST);
- printk("\tparameters:\n");
- printk("\t\t(%p)inbuf.length=%u/%u\n", buf_dsp2cpu(params->inbuf),
- dsp_session_buf_length(buf_dsp2cpu(params->inbuf)),
- dsp_session_buf_size(buf_dsp2cpu(params->inbuf)));
- printk("\t\t(%p)outbuf.space=%u/%u\n", buf_dsp2cpu(params->outbuf),
- dsp_session_buf_space(buf_dsp2cpu(params->outbuf)),
- dsp_session_buf_size(buf_dsp2cpu(params->outbuf)));
- printk("\truntime:\n");
- printk("\t\tsample_count=%u\n", runtime->sample_count);
- }
- #endif
- static void dump_decoder_function(void *info, bool dump_debug)
- {
- struct decoder_dspfunc_info *decoder_info = info;
- struct decoder_dspfunc_params *params = &decoder_info->params;
- struct decoder_dspfunc_ext_params *ext_params = &decoder_info->ext_params;
- struct decoder_dspfunc_runtime *runtime = &decoder_info->runtime;
- struct decoder_dspfunc_debug *debug = &decoder_info->debug;
- if(!info){
- return;
- }
- printk("\nfunction decoder (id=%u):\n", DSP_FUNCTION_DECODER);
- printk("\tparameters:\n");
- printk("\t\tformat=%u\n", params->format);
- printk("\t\tsample_rate(in)=%u\n", params->resample_param.input_sr);
- printk("\t\tsample_rate(out)=%u\n", params->resample_param.output_sr);
- print_ringbuf_info("inbuf", (uint32_t)params->inbuf, 0);
- print_ringbuf_info("outbuf", (uint32_t)params->outbuf, 1);
- printk("\t\tformat_pbuf=%x\n", (uint32_t)ext_params->format_pbuf);
- printk("\t\tformat_pbufsz=%u\n", ext_params->format_pbufsz);
- if (ext_params->evtbuf)
- print_ringbuf_info("evtbuf", (uint32_t)ext_params->evtbuf, 1);
- printk("\truntime:\n");
- printk("\t\tframe_size=%u\n", runtime->frame_size);
- printk("\t\tchannels=%u\n", runtime->channels);
- printk("\t\tsample_count=%u\n", runtime->sample_count);
- printk("\t\tdatalost_count=%u\n", runtime->datalost_count);
- printk("\t\traw_count=%u\n", runtime->raw_count);
- if (!dump_debug)
- return;
- printk("\tdebug:\n");
- if (debug->stream) {
- print_ringbuf_info("stream", (uint32_t)debug->stream, 1);
- }
- if (debug->pcmbuf) {
- print_ringbuf_info("pcmbuf", (uint32_t)debug->stream, 1);
- }
- if (debug->plcbuf) {
- print_ringbuf_info("plc_data", (uint32_t)debug->plcbuf, 1);
- }
- }
- static void dump_encoder_function(void *info, bool dump_debug)
- {
- struct encoder_dspfunc_info *encoder_info = info;
- struct encoder_dspfunc_params *params = &encoder_info->params;
- struct encoder_dspfunc_runtime *runtime = &encoder_info->runtime;
- struct encoder_dspfunc_debug *debug = &encoder_info->debug;
- printk("\nfunction encoder (id=%u):\n", DSP_FUNCTION_ENCODER);
- printk("\tparameters:\n");
- printk("\t\tformat=%u\n", params->format);
- printk("\t\tsample_rate=%u\n", params->sample_rate);
- printk("\t\tbit_rate=%u\n", params->bit_rate);
- printk("\t\tcomplexityt=%u\n", params->complexity);
- printk("\t\tchannels=%u\n", params->channels);
- printk("\t\tframe_size=%u\n", params->frame_size);
- print_ringbuf_info("inbuf", (uint32_t)params->inbuf, 0);
- print_ringbuf_info("outbuf", (uint32_t)params->outbuf, 1);
- printk("\truntime:\n");
- printk("\t\tframe_size=%u\n", runtime->frame_size);
- printk("\t\tchannels=%u\n", runtime->channels);
- printk("\t\tcompression_ratio=%u\n", runtime->compression_ratio);
- printk("\t\tsample_count=%u\n", runtime->sample_count);
- if (!dump_debug)
- return;
- printk("\tdebug:\n");
- if (debug->pcmbuf) {
- print_ringbuf_info("pcmbuf", (uint32_t)debug->pcmbuf, 1);
- }
- if (debug->stream) {
- print_ringbuf_info("stream", (uint32_t)debug->stream, 1);
- }
- }
- static void dump_streamout_function(void *info, bool dump_debug)
- {
- struct streamout_dspfunc_info *streamout_info = info;
- struct streamout_dspfunc_params *params = &streamout_info->params;
- if(!info){
- return;
- }
- printk("\nfunction streamout (id=%u):\n", DSP_FUNCTION_POSTPROCESS);
- printk("\tparameters:\n");
- printk("\t\tdae.pbuf=%08x\n", params->dae.pbuf);
- printk("\t\tdae.pbufsz=%u\n", params->dae.pbufsz);
- printk("\t\tmisc.auto_mute=%u\n", params->misc.auto_mute);
- printk("\t\tmisc.auto_mute_threshold=%u\n", params->misc.auto_mute_threshold);
- if (params->output.outbuf)
- print_ringbuf_info("output.outbuf", (uint32_t)params->output.outbuf, 1);
- if (params->output.outbuf_subwoofer)
- print_ringbuf_info("output.outbuf_subwoofer", (uint32_t)params->output.outbuf_subwoofer, 1);
- printk("\t\tmix.channel_num=%u\n", params->mix.channel_num);
- if (params->mix.channel_num > 0 && params->mix.channel_params[0].chan_buf)
- print_ringbuf_info("mix.channel_params[0].chan_buf", (uint32_t)params->mix.channel_params[0].chan_buf, 0);
- if (params->energy.energy_buf)
- print_ringbuf_info("energy.energy_buf", (uint32_t)params->energy.energy_buf, 1);
- }
- static void dump_player_function(void *info, bool dump_debug)
- {
- struct player_dspfunc_info *player_info = info;
- struct decoder_dspfunc_info *decoder_info =
- (void *)dsp_to_mcu_address(POINTER_TO_UINT(player_info->decoder_info), 0);
- struct decoder_dspfunc_info *streamout_info =
- (void *)dsp_to_mcu_address(POINTER_TO_UINT(player_info->streamout_info), 0);
- struct player_dspfunc_debug *debug = &player_info->debug;
- printk("\nfunction player (id=%u):\n", DSP_FUNCTION_PLAYER);
- printk("\tparameters:\n");
- printk("\t\tdae.pbuf=%p\n", (void *)dsp_to_mcu_address(player_info->dae.pbuf, 0));
- printk("\t\tdae.pbufsz=%u\n", player_info->dae.pbufsz);
- #if 0
- if (player_info->aec.enable) {
- printk("\t\taec.delay=%d\n", player_info->aec.delay);
- printk("\t\taec.refbuf=%p (space=%u/%u)\n",
- buf_dsp2cpu(player_info->aec.channel[0].refbuf),
- dsp_session_buf_space(buf_dsp2cpu(player_info->aec.channel[0].refbuf)),
- dsp_session_buf_size(buf_dsp2cpu(player_info->aec.channel[0].refbuf)));
- }
- #endif
- print_ringbuf_info("dacbuf", (uint32_t)player_info->output.outbuf, 1);
- if (!dump_debug) {
- dump_decoder_function(decoder_info, false);
- return;
- }
- printk("\tdebug:\n");
- if (debug->decode_stream) {
- print_ringbuf_info("decode_stream", (uint32_t)debug->decode_stream, 1);
- }
- if (debug->decode_data) {
- print_ringbuf_info("decode_data", (uint32_t)debug->decode_data, 1);
- }
- if (debug->plc_data) {
- print_ringbuf_info("plc_data", (uint32_t)debug->plc_data, 1);
- }
- if (player_info->decoder_info){
- dump_decoder_function(decoder_info, false);
- }
- if (player_info->streamout_info){
- dump_streamout_function(streamout_info, false);
- }
- }
- static void dump_recorder_function(void *info, bool dump_debug)
- {
- struct recorder_dspfunc_info *recorder_info = info;
- struct encoder_dspfunc_info *encoder_info =
- (void *)dsp_to_mcu_address((u32_t)recorder_info->encoder_info, 0);
- struct recorder_dspfunc_debug *debug = &recorder_info->debug;
- printk("\nfunction recorder (id=%u):\n", DSP_FUNCTION_RECORDER);
- printk("\tparameters:\n");
- printk("\t\tdae.pbuf=%p\n", (void *)dsp_to_mcu_address(recorder_info->dae.pbuf, 0));
- printk("\t\tdae.pbufsz=%u\n", recorder_info->dae.pbufsz);
- if (recorder_info->aec.enable) {
- print_ringbuf_info("aec.refbuf", (uint32_t)recorder_info->aec.refbuf[0], 0);
- }
- print_ringbuf_info("adcbuf", (uint32_t)recorder_info->aec.inbuf, 0);
- if (!dump_debug) {
- dump_encoder_function(encoder_info, false);
- return;
- }
- printk("\tdebug:\n");
- if (debug->mic1_data) {
- print_ringbuf_info("mic1_data", (uint32_t)debug->mic1_data, 1);
- }
- if (debug->mic2_data) {
- print_ringbuf_info("mic2_data", (uint32_t)debug->mic2_data, 1);
- }
- if (debug->ref_data) {
- print_ringbuf_info("ref_data", (uint32_t)debug->ref_data, 1);
- }
- if (debug->aec1_data) {
- print_ringbuf_info("aec1_data", (uint32_t)debug->aec1_data, 1);
- }
- if (debug->aec2_data) {
- print_ringbuf_info("aec2_data", (uint32_t)debug->aec2_data, 1);
- }
- if (debug->encode_data) {
- print_ringbuf_info("encode_data", (uint32_t)debug->encode_data, 1);
- }
- if (debug->encode_stream) {
- print_ringbuf_info("encode_stream", (uint32_t)debug->encode_stream, 1);
- }
- dump_encoder_function(encoder_info, false);
- }
- void dsp_session_dump_function(struct dsp_session *session, unsigned int func)
- {
- struct dsp_request_function request = { .id = func, };
- dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
- if (request.info == NULL)
- return;
- switch (func) {
- #if 0
- case DSP_FUNCTION_TEST:
- dump_test_function(request.info, true);
- break;
- #endif
- case DSP_FUNCTION_ENCODER:
- dump_encoder_function(request.info, true);
- break;
- case DSP_FUNCTION_DECODER:
- dump_decoder_function(request.info, true);
- break;
- case DSP_FUNCTION_PLAYER:
- dump_player_function(request.info, true);
- break;
- case DSP_FUNCTION_RECORDER:
- dump_recorder_function(request.info, true);
- break;
- case DSP_FUNCTION_POSTPROCESS:
- dump_streamout_function(request.info, true);
- break;
- default:
- break;
- }
- }
- int dsp_session_get_pcmbuf_info(struct dsp_session *session, struct streamout_dspfunc_runtime_pcmbuf *pcmbuf)
- {
- struct dsp_request_function request = { .id = DSP_FUNCTION_POSTPROCESS, };
- dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
- if (request.info == NULL)
- return -EINVAL;
- struct streamout_dspfunc_info *streamout_info = (struct streamout_dspfunc_info *)(request.info);
- struct streamout_dspfunc_runtime_pcmbuf *p = &(streamout_info->runtime.pcmbuf);
- if (p->dsp_write_seq != p->cpu_read_seq && p->dsp_write_seq == (uint16_t)(p->cpu_read_seq + 1)) {
- memcpy(pcmbuf, p, sizeof(struct streamout_dspfunc_runtime_pcmbuf));
- p->cpu_read_seq = p->dsp_write_seq;
- return 0;
- }
- return -EINVAL;
- }
- unsigned int dsp_session_get_samples_count(struct dsp_session *session, unsigned int func)
- {
- union {
- struct test_dspfunc_info *test;
- struct encoder_dspfunc_info *encoder;
- struct decoder_dspfunc_info *decoder;
- } func_info;
- if (func == DSP_FUNCTION_PLAYER)
- func = DSP_FUNCTION_DECODER;
- else if (func == DSP_FUNCTION_RECORDER)
- func = DSP_FUNCTION_ENCODER;
- struct dsp_request_function request = { .id = func, };
- dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
- if (request.info == NULL)
- return 0;
- switch (func) {
- #if 0
- case DSP_FUNCTION_TEST:
- func_info.test = request.info;
- return func_info.test->runtime.sample_count;
- #endif
- case DSP_FUNCTION_ENCODER:
- func_info.encoder = request.info;
- return func_info.encoder->runtime.sample_count;
- case DSP_FUNCTION_DECODER:
- func_info.decoder = request.info;
- return func_info.decoder->runtime.sample_count;
- default:
- return 0;
- }
- }
- unsigned int dsp_session_get_datalost_count(struct dsp_session *session, unsigned int func)
- {
- struct dsp_request_function request = { .id = DSP_FUNCTION_DECODER, };
- if (func != DSP_FUNCTION_PLAYER && func != DSP_FUNCTION_DECODER)
- return 0;
- dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
- if (request.info) {
- struct decoder_dspfunc_info *decoder = request.info;
- return decoder->runtime.datalost_count;
- }
- return 0;
- }
- unsigned int dsp_session_get_raw_count(struct dsp_session *session, unsigned int func)
- {
- struct dsp_request_function request = { .id = DSP_FUNCTION_DECODER, };
- if (func != DSP_FUNCTION_PLAYER && func != DSP_FUNCTION_DECODER)
- return 0;
- dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
- if (request.info) {
- struct decoder_dspfunc_info *decoder = request.info;
- return decoder->runtime.raw_count;
- }
- return 0;
- }
- int dsp_session_get_recoder_param(struct dsp_session *session, int param_type, void *param)
- {
- struct dsp_request_session session_request;
- struct dsp_request_function request = { .id = DSP_FUNCTION_RECORDER, };
- dsp_request_userinfo(session->dev, DSP_REQUEST_SESSION_INFO, &session_request);
- if(!(session_request.func_enabled & DSP_FUNC_BIT(DSP_FUNCTION_RECORDER))){
- return -EINVAL;
- }
- dsp_request_userinfo(session->dev, DSP_REQUEST_FUNCTION_INFO, &request);
- if (request.info) {
- struct recorder_dspfunc_info *encoder = request.info;
- if(param_type == DSP_CONFIG_AEC){
- memcpy(param, &encoder->aec, sizeof(struct aec_dspfunc_params));
- return 0;
- }
- }
- return -EINVAL;
- }
- int dsp_session_get_function_runable(struct dsp_session *session, int function_type)
- {
- struct dsp_request_session session_request;
- dsp_request_userinfo(session->dev, DSP_REQUEST_SESSION_INFO, &session_request);
- if((session_request.func_runnable & DSP_FUNC_BIT(function_type))){
- return true;
- }
- return false;
- }
- int dsp_session_get_function_enable(struct dsp_session *session, int function_type)
- {
- struct dsp_request_session session_request;
- dsp_request_userinfo(session->dev, DSP_REQUEST_SESSION_INFO, &session_request);
- if((session_request.func_enabled & DSP_FUNC_BIT(function_type))){
- return true;
- }
- return false;
- }
|