sys_shell.c 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. /*
  2. * Copyright (c) 2019 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file system shell
  8. */
  9. #define SYS_LOG_NO_NEWLINE
  10. #ifdef SYS_LOG_DOMAIN
  11. #undef SYS_LOG_DOMAIN
  12. #endif
  13. #define SYS_LOG_DOMAIN "system_shell"
  14. #include <os_common_api.h>
  15. #include <mem_manager.h>
  16. #include <stdio.h>
  17. #include <string.h>
  18. #include <shell/shell.h>
  19. #include <stdlib.h>
  20. #include <limits.h>
  21. #include <property_manager.h>
  22. #include <sys_wakelock.h>
  23. #ifdef CONFIG_MEDIA_PLAYER
  24. #include <media_player.h>
  25. #endif
  26. extern void mem_manager_dump_ext(int dump_detail, const char* match_value);
  27. static int shell_set_config(const struct shell *shell,
  28. size_t argc, char **argv)
  29. {
  30. int ret = 0;
  31. if (argc < 2) {
  32. SYS_LOG_INF("argc <\n");
  33. return 0;
  34. }
  35. #ifdef CONFIG_PROPERTY
  36. if (argc < 3) {
  37. ret = property_set(argv[1], argv[1], 0);
  38. } else {
  39. ret = property_set(argv[1], argv[2], strlen(argv[2]));
  40. }
  41. #endif
  42. if (ret < 0) {
  43. SYS_LOG_INF("%s failed %d\n", argv[1], ret);
  44. return -1;
  45. }
  46. #ifdef CONFIG_PROPERTY
  47. property_flush(NULL);
  48. #endif
  49. SYS_LOG_INF("%s : %s ok\n", argv[1], argv[2]);
  50. return 0;
  51. }
  52. #ifdef CONFIG_MEDIA_PLAYER
  53. static int shell_set_effect_config(const struct shell *shell,
  54. size_t argc, char **argv)
  55. {
  56. if (argc < 2) {
  57. printk("argc %d < 2\n",argc);
  58. return 0;
  59. }
  60. media_player_set_effect_bypass(atoi(argv[1]));
  61. SYS_LOG_INF("set_music_effect %s ok\n", argv[1]);
  62. return 0;
  63. }
  64. static int shell_set_voice_effect_config(const struct shell *shell,
  65. size_t argc, char **argv)
  66. {
  67. if (argc < 2) {
  68. SYS_LOG_INF("argc %d < 2\n",argc);
  69. return 0;
  70. }
  71. media_player_set_voice_effect_bypass(atoi(argv[1]), atoi(argv[2]));
  72. SYS_LOG_INF("set_voice %s : %s ok\n", argv[1], argv[2]);
  73. return 0;
  74. }
  75. #endif /* CONFIG_MEDIA_PLAYER */
  76. static int shell_dump_meminfo(const struct shell *shell,
  77. size_t argc, char **argv)
  78. {
  79. if (argc == 1) {
  80. mem_manager_dump();
  81. } else if (argc == 2) {
  82. SYS_LOG_INF("argv[1] %s \n",argv[1]);
  83. mem_manager_dump_ext(atoi(argv[1]), NULL);
  84. } else if (argc == 3) {
  85. SYS_LOG_INF("argv[1] %s argv[2] %s \n",argv[1], argv[2]);
  86. mem_manager_dump_ext(atoi(argv[1]), argv[2]);
  87. }
  88. return 0;
  89. }
  90. #ifdef CONFIG_SYS_WAKELOCK
  91. static int shell_wake_lock(const struct shell *shell, size_t argc, char **argv)
  92. {
  93. if (argc == 2) {
  94. if (!strcmp(argv[1], "lock")) {
  95. shell_print(shell, "wake dbg use lock\n");
  96. sys_wake_lock_ext(FULL_WAKE_LOCK,SYS_WAKE_LOCK_USER);
  97. } else if (!strcmp(argv[1], "unlock")) {
  98. shell_print(shell, "wake dbg use unlock\n");
  99. sys_wake_unlock_ext(FULL_WAKE_LOCK,SYS_WAKE_LOCK_USER);
  100. } else if (!strcmp(argv[1], "dump")) {
  101. sys_wakelocks_dump();
  102. }
  103. }
  104. return 0;
  105. }
  106. #endif
  107. SHELL_STATIC_SUBCMD_SET_CREATE(sub_system,
  108. SHELL_CMD(dumpmem, NULL, "dump mem info.", shell_dump_meminfo),
  109. SHELL_CMD(set_config, NULL, "set system config ", shell_set_config),
  110. #ifdef CONFIG_MEDIA_PLAYER
  111. SHELL_CMD(set_voice_effect, NULL, "set voice effect bypass ", shell_set_voice_effect_config),
  112. SHELL_CMD(set_music_effect, NULL, "set music effect bypass ", shell_set_effect_config),
  113. #endif
  114. #ifdef CONFIG_SYS_WAKELOCK
  115. SHELL_CMD(wlock, NULL, "wlock lock[unlock] ", shell_wake_lock),
  116. #endif
  117. SHELL_SUBCMD_SET_END /* Array terminated. */
  118. );
  119. SHELL_CMD_REGISTER(system, &sub_system, "system commands", NULL);