dsp_console.c 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158
  1. /*
  2. * Copyright (c) 1997-2015, Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <shell/shell.h>
  7. #include <assert.h>
  8. #include <errno.h>
  9. #include <devicetree.h>
  10. #include <string.h>
  11. #include <mem_manager.h>
  12. #include "dsp_inner.h"
  13. #include <stdlib.h>
  14. extern int dsp_console_set_cmd(uint16_t id, uint32_t param1, uint32_t param2);
  15. int shell_cmd_dsp_console(const struct shell *shell_p, size_t argc, char **argv)
  16. {
  17. unsigned long writeval;
  18. unsigned long addr, count;
  19. int ret;
  20. if (argc < 2) {
  21. return -EINVAL;
  22. }
  23. if (!strcmp(argv[1], "help")) {
  24. printk("Dsp Console Commands:\n");
  25. printk("dsp dspload :show dsp load statistic preriodically\n");
  26. printk("dsp mdw :display memory by word: mdw address [,count]\n");
  27. printk("dsp mdh :display memory by half-word: mdh address [,count]\n");
  28. printk("dsp mww :memory write (fill) by word: mww address value [,count]\n");
  29. printk("dsp mwh :memory write (fill) by half-word: mwh address value [,count]\n");
  30. printk("dsp rin :register in: rin address\n");
  31. printk("dsp rout :register out: rout address value\n");
  32. return 0;
  33. }
  34. if (!strcmp(argv[1], "dspload")) {
  35. int start_f = true;
  36. int interval_ms = 2000;
  37. if (argc < 3) {
  38. return -EINVAL;
  39. }
  40. if (!strcmp(argv[2], "start")) {
  41. if (argc > 3)
  42. interval_ms = strtoul(argv[2], NULL, 0);
  43. printk("Start dsp load statistic, interval %d ms\n", interval_ms);
  44. } else if (!strcmp(argv[2], "stop")) {
  45. printk("Stop cpu load statistic\n");
  46. start_f = false;
  47. } else {
  48. printk("usage:\n");
  49. printk(" dspload start [2000]\n");
  50. printk(" dspload stop\n");
  51. return -EINVAL;
  52. }
  53. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_DSPLOAD, start_f, interval_ms);
  54. } else if (!strcmp(argv[1], "mdw")) {
  55. if (argc < 4) {
  56. return -EINVAL;
  57. }
  58. addr = strtoul(argv[2], NULL, 16);
  59. if (!is_valid_dsp_data_address(addr) || (addr & 0x01)) {
  60. printk("invalid dsp data addr:%lx\n", addr);
  61. return -EINVAL;
  62. }
  63. count = strtoul(argv[3], NULL, 0);
  64. if (count > 16) {
  65. count = 16;
  66. }
  67. if (count == 0) {
  68. return -EINVAL;
  69. }
  70. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_MDW, addr, count);
  71. } else if (!strcmp(argv[1], "mdh")) {
  72. if (argc < 4) {
  73. return -EINVAL;
  74. }
  75. addr = strtoul(argv[2], NULL, 16);
  76. if (!is_valid_dsp_data_address(addr)) {
  77. printk("invalid dsp data addr:%lx\n", addr);
  78. return -EINVAL;
  79. }
  80. count = strtoul(argv[3], NULL, 0);
  81. if (count > 16) {
  82. count = 16;
  83. }
  84. if (count == 0) {
  85. return -EINVAL;
  86. }
  87. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_MDH, addr, count);
  88. } else if (!strcmp(argv[1], "mww")) {
  89. if (argc < 4) {
  90. return -EINVAL;
  91. }
  92. addr = strtoul(argv[2], NULL, 16);
  93. if (!is_valid_dsp_data_address(addr) || (addr & 0x1)) {
  94. printk("invalid dsp data addr:%lx\n", addr);
  95. return -EINVAL;
  96. }
  97. writeval = strtoul(argv[3], NULL, 16);
  98. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_MWW, addr, writeval);
  99. } else if (!strcmp(argv[1], "mwh")) {
  100. if (argc < 4) {
  101. return -EINVAL;
  102. }
  103. addr = strtoul(argv[2], NULL, 16);
  104. if (!is_valid_dsp_data_address(addr)) {
  105. printk("invalid dsp data addr:%lx\n", addr);
  106. return -EINVAL;
  107. }
  108. writeval = strtoul(argv[3], NULL, 16);
  109. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_MWH, addr, writeval);
  110. } else if (!strcmp(argv[1], "rin")) {
  111. if (argc < 3) {
  112. return -EINVAL;
  113. }
  114. addr = strtoul(argv[2], NULL, 16);
  115. if (addr & 0x03) {
  116. printk("invalid dsp register addr:%lx\n", addr);
  117. return -EINVAL;
  118. }
  119. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_RIN, addr, 0);
  120. } else if (!strcmp(argv[1], "rout")) {
  121. if (argc < 4) {
  122. return -EINVAL;
  123. }
  124. addr = strtoul(argv[2], NULL, 16);
  125. if (addr & 0x3) {
  126. printk("invalid dsp register addr:%lx\n", addr);
  127. return -EINVAL;
  128. }
  129. writeval = strtoul(argv[3], NULL, 16);
  130. ret = dsp_console_set_cmd(DSP_CMD_CONSOLE_ROUT, addr, writeval);
  131. } else {
  132. return -EINVAL;
  133. }
  134. return 0;
  135. }