anc_driver_shell.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153
  1. #include "shell/shell.h"
  2. #include "drivers/anc.h"
  3. #include "anc_hal.h"
  4. #include <media_mem.h>
  5. #include "stream.h"
  6. #include "ringbuff_stream.h"
  7. #include "utils/acts_ringbuf.h"
  8. #include "audio_system.h"
  9. #include "soc_anc.h"
  10. #include "drivers/audio/audio_out.h"
  11. #define DATA_FRAME_SIZE 64
  12. static int dump_len = 0;
  13. static os_timer dump_timer;
  14. static void *dump_ringbuf = NULL;
  15. static io_stream_t dump_stream;
  16. static int cmd_open_anc(const struct shell *shell,
  17. size_t argc, char **argv)
  18. {
  19. if(argc != 2){
  20. SYS_LOG_ERR("usage: anc open <mode>");
  21. return 0;
  22. }
  23. return anc_dsp_open(atoi(argv[1]));
  24. }
  25. static int cmd_close_anc(const struct shell *shell,
  26. size_t argc, char **argv)
  27. {
  28. anc_dsp_close();
  29. return 0;
  30. }
  31. static void _anc_dump_data_timer_handler(os_timer *ttimer)
  32. {
  33. static int cnt = 0;
  34. int ret = 0, i = 0;
  35. char data[DATA_FRAME_SIZE];
  36. if(dump_ringbuf ==NULL)
  37. return;
  38. for(i=0; i<5; i++){
  39. ret = acts_ringbuf_length(dump_ringbuf);
  40. if(ret < DATA_FRAME_SIZE)
  41. break;
  42. dump_len += acts_ringbuf_get(dump_ringbuf, data, DATA_FRAME_SIZE);
  43. }
  44. cnt++;
  45. if(cnt == 1000){
  46. cnt = 0;
  47. SYS_LOG_INF("get %d bytes data total", dump_len);
  48. }
  49. return;
  50. }
  51. static int cmd_dump_data_start(const struct shell *shell,
  52. size_t argc, char **argv)
  53. { char *dumpbuf;
  54. void *ringbuf;
  55. int bufsize;
  56. dumpbuf = media_mem_get_cache_pool(TOOL_ASQT_DUMP_BUF, AUDIO_STREAM_MUSIC);
  57. bufsize = media_mem_get_cache_pool_size(TOOL_ASQT_DUMP_BUF, AUDIO_STREAM_MUSIC);
  58. SYS_LOG_INF("buf 0x%x, size 0x%x", dumpbuf, bufsize);
  59. dump_stream = ringbuff_stream_create_ext(dumpbuf, bufsize);
  60. dump_ringbuf = stream_get_ringbuffer(dump_stream);
  61. SYS_LOG_INF("ringbuf mcu addr 0x%x", dump_ringbuf);
  62. ringbuf = mcu_to_anc_address(dump_ringbuf, 0);
  63. SYS_LOG_INF("ringbuf anc addr 0x%x", ringbuf);
  64. dump_len = 0;
  65. os_timer_init(&dump_timer, _anc_dump_data_timer_handler, NULL);
  66. os_timer_start(&dump_timer, K_MSEC(2), K_MSEC(2));
  67. anc_dsp_dump_data(1, ringbuf);
  68. return 0;
  69. }
  70. static int cmd_dump_data_stop(const struct shell *shell,
  71. size_t argc, char **argv)
  72. {
  73. os_timer_stop(&dump_timer);
  74. anc_dsp_dump_data(0, NULL);
  75. stream_close(dump_stream);
  76. stream_destroy(dump_stream);
  77. dump_ringbuf = NULL;
  78. return 0;
  79. }
  80. static int cmd_sample_rate_change(const struct shell *shell,
  81. size_t argc, char **argv)
  82. {
  83. struct device *anc_dev = NULL;
  84. struct device *aout_dev = NULL;
  85. uint32_t samplerete = 48000, dac_digctl = 0;
  86. anc_dev = device_get_binding(CONFIG_ANC_NAME);
  87. aout_dev = device_get_binding(CONFIG_AUDIO_OUT_ACTS_DEV_NAME);
  88. if(!aout_dev || !aout_dev)
  89. {
  90. SYS_LOG_ERR("get device failed\n");
  91. return -1;
  92. }
  93. if(anc_get_status(anc_dev) != ANC_STATUS_POWERON)
  94. {
  95. SYS_LOG_ERR("anc not open");
  96. return 0;
  97. }
  98. /*get dac samplerate*/
  99. audio_out_control(aout_dev, NULL, AOUT_CMD_GET_SAMPLERATE, &samplerete);
  100. if(samplerete == 0){
  101. SYS_LOG_ERR("get sample rate err");
  102. }
  103. /*get DAC_DIGCTL register value*/
  104. dac_digctl = sys_read32(AUDIO_DAC_REG_BASE + 0x0);
  105. SYS_LOG_INF("samplerate %d, dac_digctl 0x%x",samplerete, dac_digctl);
  106. return anc_fs_change(anc_dev, samplerete, dac_digctl);
  107. }
  108. SHELL_STATIC_SUBCMD_SET_CREATE(sub_acts_anc,
  109. SHELL_CMD(open, NULL, "init and open anc", cmd_open_anc),
  110. SHELL_CMD(close, NULL, "deinit and close anc", cmd_close_anc),
  111. SHELL_CMD(dump_start, NULL, "anc dsp start dump data", cmd_dump_data_start),
  112. SHELL_CMD(dump_stop, NULL, "anc dsp stop dump data", cmd_dump_data_stop),
  113. SHELL_CMD(sr_change, NULL, "set new sample rate", cmd_sample_rate_change),
  114. SHELL_SUBCMD_SET_END /* Array terminated. */
  115. );
  116. SHELL_CMD_REGISTER(anc, &sub_acts_anc, "Actions anc commands", NULL);