shell_dbg.c 34 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441
  1. /*
  2. * Copyright (c) 2020 Actions Semiconductor
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #include <sys/printk.h>
  7. #include <shell/shell.h>
  8. #include <init.h>
  9. #include <string.h>
  10. #include <stdlib.h>
  11. #include <device.h>
  12. #include <sdfs.h>
  13. #include <soc.h>
  14. #include <board_cfg.h>
  15. #include <fs/fs.h>
  16. #define MAX_LINE_LENGTH_BYTES (64)
  17. #define DEFAULT_LINE_LENGTH_BYTES (16)
  18. void print_buffer(const struct shell *shell,const char *addr, int width,
  19. int count, int linelen, unsigned long disp_addr)
  20. {
  21. int i, thislinelen;
  22. const char *data;
  23. /* linebuf as a union causes proper alignment */
  24. union linebuf {
  25. uint32_t ui[MAX_LINE_LENGTH_BYTES/sizeof(uint32_t) + 1];
  26. uint16_t us[MAX_LINE_LENGTH_BYTES/sizeof(uint16_t) + 1];
  27. uint8_t uc[MAX_LINE_LENGTH_BYTES/sizeof(uint8_t) + 1];
  28. } lb;
  29. if (linelen * width > MAX_LINE_LENGTH_BYTES)
  30. linelen = MAX_LINE_LENGTH_BYTES / width;
  31. if (linelen < 1)
  32. linelen = DEFAULT_LINE_LENGTH_BYTES / width;
  33. if (disp_addr == -1)
  34. disp_addr = (unsigned long)addr;
  35. while (count) {
  36. thislinelen = linelen;
  37. data = (const char *)addr;
  38. shell_fprintf(shell, SHELL_NORMAL, "%08x:", (unsigned int)disp_addr);
  39. /* check for overflow condition */
  40. if (count < thislinelen)
  41. thislinelen = count;
  42. /* Copy from memory into linebuf and print hex values */
  43. for (i = 0; i < thislinelen; i++) {
  44. if (width == 4) {
  45. lb.ui[i] = *(volatile uint32_t *)data;
  46. shell_fprintf(shell, SHELL_NORMAL, " %08x", lb.ui[i]);
  47. } else if (width == 2) {
  48. lb.us[i] = *(volatile uint16_t *)data;
  49. shell_fprintf(shell, SHELL_NORMAL, " %04x", lb.us[i]);
  50. } else {
  51. lb.uc[i] = *(volatile uint8_t *)data;
  52. shell_fprintf(shell, SHELL_NORMAL, " %02x", lb.uc[i]);
  53. }
  54. data += width;
  55. }
  56. while (thislinelen < linelen) {
  57. /* fill line with whitespace for nice ASCII print */
  58. for (i = 0; i < width * 2 + 1; i++)
  59. shell_fprintf(shell, SHELL_NORMAL, " ");
  60. linelen--;
  61. }
  62. /* Print data in ASCII characters */
  63. for (i = 0; i < thislinelen * width; i++) {
  64. if (lb.uc[i] < 0x20 || lb.uc[i] > 0x7e)
  65. lb.uc[i] = '.';
  66. }
  67. lb.uc[i] = '\0';
  68. shell_fprintf(shell, SHELL_NORMAL, " %s\n", lb.uc);
  69. /* update references */
  70. addr += thislinelen * width;
  71. disp_addr += thislinelen * width;
  72. count -= thislinelen;
  73. }
  74. }
  75. #if defined(CONFIG_CMD_MEMORY)
  76. #define DISP_LINE_LEN 16
  77. static int do_mem_mw(const struct shell *shell, int width, size_t argc, char **argv)
  78. {
  79. unsigned long writeval;
  80. unsigned long addr, count;
  81. char *buf;
  82. if (argc < 3)
  83. return -EINVAL;
  84. addr = strtoul(argv[1], NULL, 16);
  85. writeval = strtoul(argv[2], NULL, 16);
  86. if (argc == 4)
  87. count = strtoul(argv[3], NULL, 16);
  88. else
  89. count = 1;
  90. buf = (char *)addr;
  91. while (count-- > 0) {
  92. if (width == 4)
  93. *((uint32_t *)buf) = (uint32_t)writeval;
  94. else if (width == 2)
  95. *((uint16_t *)buf) = (uint16_t)writeval;
  96. else
  97. *((uint8_t *)buf) = (uint8_t)writeval;
  98. buf += width;
  99. }
  100. return 0;
  101. }
  102. static int do_mem_md(const struct shell *shell, int width, size_t argc, char **argv)
  103. {
  104. unsigned long addr;
  105. int count;
  106. if (argc < 2)
  107. return -EINVAL;
  108. addr = strtoul(argv[1], NULL, 16);
  109. if (argc == 3)
  110. count = strtoul(argv[2], NULL, 16);
  111. else
  112. count = 1;
  113. print_buffer(shell, (char *)addr, width, count, DISP_LINE_LEN / width, -1);
  114. return 0;
  115. }
  116. static int shell_cmd_mdw(const struct shell *shell, size_t argc, char **argv)
  117. {
  118. return do_mem_md(shell, 4, argc, argv);
  119. }
  120. static int shell_cmd_mdh(const struct shell *shell, size_t argc, char **argv)
  121. {
  122. return do_mem_md(shell,2, argc, argv);
  123. }
  124. static int shell_cmd_mdb(const struct shell *shell, size_t argc, char **argv)
  125. {
  126. return do_mem_md(shell,1, argc, argv);
  127. }
  128. static int shell_cmd_mww(const struct shell *shell, size_t argc, char **argv)
  129. {
  130. return do_mem_mw(shell,4, argc, argv);
  131. }
  132. static int shell_cmd_mwh(const struct shell *shell, size_t argc, char **argv)
  133. {
  134. return do_mem_mw(shell, 2, argc, argv);
  135. }
  136. static int shell_cmd_mwb(const struct shell *shell, size_t argc, char **argv)
  137. {
  138. return do_mem_mw(shell, 1, argc, argv);
  139. }
  140. #endif /* CONFIG_CMD_MEMORY */
  141. #if defined(CONFIG_SOC_SPICACHE_PROFILE)
  142. #include <spicache.h>
  143. void spicache_profile_dump(const struct shell *shell, struct spicache_profile *profile)
  144. {
  145. uint32_t interval_ms, total,hit;
  146. if (!profile)
  147. return;
  148. shell_print(shell,"s-e timer:%d, %d\n", profile->start_time, profile->end_time);
  149. interval_ms = (uint32_t) (profile->end_time-profile->start_time);
  150. shell_print(shell, "spicache profile: addr range 0x%08x ~ 0x%08x, profile time %d ms\n",
  151. profile->start_addr, profile->end_addr, interval_ms);
  152. hit = profile->hit_cnt*8;
  153. total = (hit + profile->miss_cnt);
  154. if (total != 0)
  155. shell_print(shell, " hit: %12d miss: %12d hit ratio: %d%%\n",
  156. hit, profile->miss_cnt,
  157. hit/ (total / 100));
  158. else
  159. shell_print(shell, "cpu not run into the specific address range!\n");
  160. hit = profile->total_hit_cnt*8;
  161. total = (hit + profile->total_miss_cnt);
  162. if (total != 0)
  163. shell_print(shell, "totoal hit: %12d totoal miss: %12d hit ratio: %d%%\n\n",
  164. hit, profile->total_miss_cnt,
  165. hit / (total / 100));
  166. }
  167. static struct spicache_profile __act_s2_notsave profile_data;
  168. /*
  169. * cmd: spicache_profile
  170. * start start_addr end_addr
  171. * stop
  172. */
  173. static int shell_cmd_spicache_profile(const struct shell *shell,
  174. size_t argc, char **argv)
  175. {
  176. struct spicache_profile *profile;
  177. int len = strlen(argv[1]);
  178. profile = &profile_data;
  179. if (!strncmp(argv[1], "start", len)) {
  180. if (argc < 4)
  181. return -EINVAL;
  182. profile->start_addr = strtoul(argv[2], NULL, 0);
  183. profile->end_addr = strtoul(argv[3], NULL, 0);
  184. shell_print(shell, "Start profile: addr range %08x ~ %08x\n",
  185. profile->start_addr, profile->end_addr);
  186. spicache_profile_start(profile);
  187. } else if (!strncmp(argv[1], "stop", len)) {
  188. shell_print(shell, "Stop profile\n");
  189. spicache_profile_stop(profile);
  190. spicache_profile_dump(shell,profile);
  191. } else {
  192. shell_print(shell, "usage:\n");
  193. shell_print(shell, " spicache_profile start start_addr end_addr\n");
  194. shell_print(shell, " spicache_profile stop\n");
  195. return -EINVAL;
  196. }
  197. return 0;
  198. }
  199. #endif /* CONFIG_SOC_SPICACHE_PROFILE */
  200. int print_buf(const struct shell *shell, char *ptr, int len)
  201. {
  202. int i;
  203. shell_print(shell,"\n");
  204. for(i = 0; i < len; i++)
  205. {
  206. if(i % 16 == 0)
  207. printk("%8x: ", i);
  208. //shell_print(shell,"%d: ", i);
  209. //shell_print(shell,"%x ", *ptr++);
  210. printk("%2x ", *ptr++);
  211. if(i % 16 == 15)
  212. //shell_print(shell,"\n");
  213. printk("\n");
  214. }
  215. //shell_print(shell,"\n");
  216. printk("\n");
  217. return 0;
  218. }
  219. #if defined(CONFIG_CMD_SPINOR)
  220. #include <drivers/flash.h>
  221. #define READ_BLOCK_ONCE 512
  222. int test_read_speed(const struct shell *shell, const struct device *nor_dev, uint32_t offset, uint32_t size)
  223. {
  224. uint64_t start_ms;
  225. uint32_t k, btn_ms;
  226. int ret;
  227. char *buf = k_malloc(READ_BLOCK_ONCE);
  228. if(buf == NULL){
  229. shell_print(shell, "malloc fail\n");
  230. return -1;
  231. }
  232. shell_print(shell, "nor read speed size=%d kb, offset=0x%x\n", size/1024, offset);
  233. //flash_read(nor_dev, 0x0, buf, READ_BLOCK_ONCE);
  234. //print_buf(buf);
  235. start_ms = k_uptime_get();
  236. for(k = 0; k < size; k += READ_BLOCK_ONCE, offset+=READ_BLOCK_ONCE) {
  237. ret = flash_read((const struct device *)nor_dev, offset, buf, READ_BLOCK_ONCE);
  238. if(ret < 0 ) {
  239. shell_print(shell, "flash read fail\n");
  240. break;
  241. }
  242. }
  243. btn_ms = k_uptime_get() - start_ms;
  244. if(btn_ms == 0)
  245. btn_ms = 1;
  246. k_free(buf);
  247. shell_print(shell, "use %d ms, read once=%d, nor speed =%d kb/s\n", btn_ms, READ_BLOCK_ONCE, (size/1024)*1000/btn_ms );
  248. return 0;
  249. }
  250. int test_write_speed(const struct shell *shell, const struct device *nor_dev, uint32_t offset, uint32_t size)
  251. {
  252. uint64_t start_ms;
  253. uint32_t k, btn_ms, off, i;
  254. int ret;
  255. uint32_t *buf = k_malloc(READ_BLOCK_ONCE);
  256. if(buf == NULL){
  257. shell_print(shell, "malloc fail\n");
  258. return -1;
  259. }
  260. for(k = 0; k < READ_BLOCK_ONCE/4; k++)
  261. buf[k] = k;
  262. shell_print(shell,"nor write speed test, size=%d kb, offset=0x%x\n", size/1024, offset);
  263. off = offset;
  264. #if 1
  265. start_ms = k_uptime_get();
  266. ret = flash_erase(nor_dev, offset, size);
  267. if(ret < 0 ) {
  268. shell_print(shell,"flash erase fail\n");
  269. }
  270. btn_ms = k_uptime_get() - start_ms;
  271. if(btn_ms == 0)
  272. btn_ms = 1;
  273. shell_print(shell, "erase use %d ms, erase speed=%d kb/s\n", btn_ms, (size/1024)*1000/btn_ms);
  274. #endif
  275. start_ms = k_uptime_get();
  276. for(k = 0; k < size; k += READ_BLOCK_ONCE, offset+=READ_BLOCK_ONCE) {
  277. ret = flash_write(nor_dev, offset, buf, READ_BLOCK_ONCE);
  278. if(ret < 0 ) {
  279. shell_print(shell,"flash write fail\n");
  280. break;
  281. }
  282. }
  283. btn_ms = k_uptime_get() - start_ms;
  284. if(btn_ms == 0)
  285. btn_ms = 1;
  286. shell_print(shell, "use %d ms, write once=%d, nor speed =%d kb/s\n", btn_ms, READ_BLOCK_ONCE, (size/1024)*1000/btn_ms );
  287. shell_print(shell,"--cmp write and read---\n");
  288. for(k = 0; k < size; k += READ_BLOCK_ONCE, off+=READ_BLOCK_ONCE) {
  289. ret = flash_read(nor_dev, off, buf, READ_BLOCK_ONCE);
  290. if(ret < 0 ) {
  291. shell_print(shell,"flash read fail\n");
  292. break;
  293. }
  294. for(i = 0; i < READ_BLOCK_ONCE/4; i++) {
  295. if(buf[i] != i){
  296. shell_print(shell,"cmp fail: off=0x%x,val=0x%x != 0x%x\n", (off+i*4), buf[i], i);
  297. break;
  298. }
  299. }
  300. }
  301. shell_print(shell,"--cmp finshed ---\n");
  302. k_free(buf);
  303. return 0;
  304. }
  305. #define SPEEDFFSET 0x20000
  306. #define SPEEDSIZE 0xe0000
  307. int shell_nor_speed_test(const struct shell *shell,
  308. size_t argc, char **argv)
  309. {
  310. uint32_t offset, size;
  311. char *pend;
  312. const struct device *nor_dev = device_get_binding(CONFIG_SPI_FLASH_NAME);
  313. if (!nor_dev) {
  314. shell_print(shell,"nor dev binding failed!\n");
  315. return EINVAL;
  316. }
  317. if(argc == 3){
  318. offset = strtoul(argv[1], &pend, 0);
  319. size = strtoul(argv[2], &pend, 0);
  320. }else{
  321. offset = SPEEDFFSET;
  322. size = SPEEDSIZE;
  323. }
  324. shell_print(shell,"nor test: offset=0x%x, size=0x%x\n", offset, size);
  325. test_read_speed(shell, nor_dev, offset, size);
  326. test_write_speed(shell, nor_dev, offset, size);
  327. return 0;
  328. }
  329. int shell_flash_read(const struct shell *shell,
  330. size_t argc, char **argv)
  331. {
  332. uint32_t offset, size=1;
  333. char *pend;
  334. char *buf;
  335. int ret;
  336. const struct device *f_dev;
  337. if(argc != 3){
  338. shell_print(shell,"fread dev_name(sd/spi_flash/spinand) offset\n");
  339. return -1;
  340. }
  341. f_dev = device_get_binding(argv[1]);
  342. if (!f_dev) {
  343. shell_print(shell,"flash %s binding failed!\n", argv[1]);
  344. return EINVAL;
  345. }
  346. if(0 == strcmp(argv[1], "spi_flash")) // nor is size else is sector
  347. size = 512;
  348. offset = strtoul(argv[2], &pend, 0);
  349. buf = k_malloc(READ_BLOCK_ONCE);
  350. if(buf == NULL){
  351. shell_print(shell, "malloc fail\n");
  352. return -1;
  353. }
  354. shell_print(shell,"fread 512b: offset=0x%x, buf=0x%x\n", offset, (uint32_t)buf);
  355. ret = flash_read(f_dev, offset, buf, size);
  356. if(ret < 0 ) {
  357. shell_print(shell, "flash read fail\n");
  358. }else{
  359. print_buf(shell, buf, 512);
  360. }
  361. k_free(buf);
  362. return 0;
  363. }
  364. #endif
  365. #if defined(CONFIG_CMD_SPINAND)
  366. #define SPINAND_READ_BLOCK_ONCE 2048
  367. static int shell_nand_read(const struct shell *shell,
  368. size_t argc, char **argv)
  369. {
  370. uint32_t offset, size;
  371. char *pend;
  372. char *buf;
  373. int ret;
  374. const struct device *nand_dev = device_get_binding("spinand");
  375. if (!nand_dev) {
  376. shell_print(shell,"nor dev binding failed!\n");
  377. return EINVAL;
  378. }
  379. buf = malloc(SPINAND_READ_BLOCK_ONCE);
  380. if(buf == NULL){
  381. shell_print(shell, "malloc fail\n");
  382. return -1;
  383. }
  384. if(argc == 3){
  385. offset = strtoul(argv[1], &pend, 0);
  386. size = strtoul(argv[2], &pend, 0);
  387. }else{
  388. shell_print(shell, "offset or size param setting wrong, please check!\n");
  389. return -1;
  390. }
  391. shell_print(shell,"nand read %d: offset=0x%x, buf=0x%x\n", size, offset, (uint32_t)buf);
  392. ret = flash_read(nand_dev, offset, buf, size);
  393. if(ret < 0 ) {
  394. shell_print(shell, "flash read fail\n");
  395. }else{
  396. print_buf(shell, buf, size);
  397. }
  398. free(buf);
  399. return 0;
  400. }
  401. static char wbuf[50] = {0x11, 0x22, 0x33, 0x44, 0x55, 0x66, 0x77, 0x88, 0x99, \
  402. 0xaa, 0xbb, 0xcc, 0xdd, 0xff, 0x23, 0x37, 0x49, 0x53, \
  403. 0x68, 0x73, 0x81, 0x95, 0xa3, 0xbd, 0xc8, 0xd7, 0x55, 0xaa};
  404. static int shell_nand_write(const struct shell *shell,
  405. size_t argc, char **argv)
  406. {
  407. uint32_t offset, size;
  408. char *pend;
  409. int ret;
  410. const struct device *nand_dev = device_get_binding("spinand");
  411. if (!nand_dev) {
  412. shell_print(shell,"nor dev binding failed!\n");
  413. return EINVAL;
  414. }
  415. if(argc == 3){
  416. offset = strtoul(argv[1], &pend, 0);
  417. size = strtoul(argv[2], &pend, 0);
  418. }else{
  419. shell_print(shell, "offset or size param setting wrong, please check!\n");
  420. return -1;
  421. }
  422. shell_print(shell,"nand write %d: offset=0x%x \n", size, offset);
  423. shell_print(shell, "flash write\n");
  424. ret = flash_write(nand_dev, offset, wbuf, size);
  425. shell_print(shell, "flash write finish\n");
  426. if(ret < 0 ) {
  427. shell_print(shell, "flash read fail\n");
  428. }else{
  429. shell_print(shell, "flash write offset=%d; len=%d succeed!\n", offset, size);
  430. }
  431. return 0;
  432. }
  433. #endif
  434. #if defined(CONFIG_DMA_DBG_DUMP)
  435. extern void dma_dump_info(void);
  436. static int shell_dma_info(const struct shell *shell,
  437. size_t argc, char **argv)
  438. {
  439. dma_dump_info();
  440. return 0;
  441. }
  442. #endif
  443. #if defined(CONFIG_KERNEL_SHOW_STACK)
  444. extern void show_stack(void);
  445. static int shell_show_stack(const struct shell *shell,
  446. size_t argc, char **argv)
  447. {
  448. show_stack();
  449. return 0;
  450. }
  451. #endif
  452. #if defined(CONFIG_SD_FS)
  453. static int shell_sdfs_dump(const struct shell *shell,
  454. size_t argc, char **argv)
  455. {
  456. struct sd_file *sf;
  457. uint32_t size, fsize, i;
  458. char *pend;
  459. char buf[32];
  460. if (argc != 3)
  461. return -EINVAL;
  462. sf = sd_fopen(argv[1]);
  463. if(sf == NULL){
  464. shell_print(shell, "sdfs open %s fail\n", argv[1]);
  465. return -EINVAL;
  466. }
  467. fsize= sd_fsize(argv[1]);
  468. size = strtoul(argv[2], &pend, 0);
  469. if(size > fsize)
  470. size = fsize;
  471. shell_print(shell, "dump %s, size=0x%x, all=0x%x:\n", argv[1], size, fsize);
  472. for(i = 0; i < size; i+=32){
  473. sd_fread(sf, buf, 32);
  474. print_buf(shell, buf, 32);
  475. }
  476. sd_fclose(sf);
  477. return 0;
  478. }
  479. #endif
  480. #ifdef CONFIG_DISPLAY_ENGINE
  481. extern void de_dump(void);
  482. static int shell_de_dump(const struct shell *shell,
  483. size_t argc, char **argv)
  484. {
  485. de_dump();
  486. return 0;
  487. }
  488. #endif /* CONFIG_DISPLAY_ENGINE */
  489. #if defined(CONFIG_DISPLAY_LCDC)
  490. extern void lcdc_dump(void);
  491. static int shell_lcd_dump(const struct shell *shell,
  492. size_t argc, char **argv)
  493. {
  494. lcdc_dump();
  495. #ifdef CONFIG_DISPLAY_ENGINE
  496. de_dump();
  497. #endif
  498. return 0;
  499. }
  500. #endif /* CONFIG_DISPLAY_LCDC */
  501. #if defined(CONFIG_NVRAM_CONFIG)
  502. #include <drivers/nvram_config.h>
  503. static int shell_nvram_dump(const struct shell *shell,
  504. size_t argc, char **argv)
  505. {
  506. nvram_config_dump(shell);
  507. return 0;
  508. }
  509. static int shell_nvram_cmd(const struct shell *shell,
  510. size_t argc, char **argv)
  511. {
  512. char rdata[64];
  513. int ret;
  514. if(argc == 2){
  515. memset(rdata, 0 ,64);
  516. ret = nvram_config_get(argv[1], rdata, 63);
  517. if(ret < 0 ) {
  518. shell_print(shell, "nvram get: %s fail\n", argv[1]);
  519. }else{
  520. shell_print(shell, "nvram get(len=%d): %s\n", ret, argv[1]);
  521. print_buffer(shell, rdata, 1, ret, 16, 0);
  522. }
  523. }else if (argc == 3){
  524. ret = nvram_config_set(argv[1], argv[2], strlen(argv[2]));
  525. if(ret < 0 ){
  526. shell_print(shell, "nvram set: %s=%s fail\n", argv[1], argv[2]);
  527. }else{
  528. shell_print(shell, "nvram set: %s=%s ok\n", argv[1], argv[2]);
  529. }
  530. }else{
  531. return -1;
  532. }
  533. return 0;
  534. }
  535. #endif
  536. #if defined(CONFIG_BT_DRV)
  537. int bt_vs_write_bb_reg(uint32_t addr, uint32_t val);
  538. int bt_vs_read_bb_reg(uint32_t addr, uint8_t size);
  539. int bt_vs_write_rf_reg(uint16_t addr, uint16_t val);
  540. int bt_vs_read_rf_reg(uint16_t addr, uint8_t size);
  541. static int shell_cmd_bqb_bb(const struct shell *shell,
  542. size_t argc, char **argv)
  543. {
  544. uint32_t addr = strtoul(argv[2], NULL, 16);
  545. uint32_t val = strtoul(argv[3], NULL, 16);
  546. uint8_t size = strtoul(argv[3], NULL, 10);
  547. if (!strcmp(argv[1], "read")) {
  548. bt_vs_read_bb_reg(addr, size);
  549. } else if (!strcmp(argv[1], "write")) {
  550. bt_vs_write_bb_reg(addr, val);
  551. } else {
  552. return -EINVAL;
  553. }
  554. return 0;
  555. }
  556. static int shell_cmd_bqb_rf(const struct shell *shell,
  557. size_t argc, char **argv)
  558. {
  559. uint16_t addr = strtoul(argv[2], NULL, 16);
  560. uint16_t val = strtoul(argv[3], NULL, 16);
  561. uint8_t size = strtoul(argv[3], NULL, 10);
  562. if (!strcmp(argv[1], "read")) {
  563. bt_vs_read_rf_reg(addr, size);
  564. } else if (!strcmp(argv[1], "write")) {
  565. bt_vs_write_rf_reg(addr, val);
  566. } else {
  567. return -EINVAL;
  568. }
  569. return 0;
  570. }
  571. #endif
  572. #if defined(CONFIG_PM_DIRECT_FORCE_MODE)
  573. #include <pm/pm.h>
  574. static int shell_cmd_sleep(const struct shell *shell,
  575. size_t argc, char **argv)
  576. {
  577. static struct pm_state_info pm_stat;
  578. if((argc == 2) && !strcmp(argv[1], "s3")) {
  579. shell_print(shell, "enter deep sleep\n");
  580. pm_stat.state = PM_STATE_SUSPEND_TO_RAM;
  581. pm_power_state_force(pm_stat);
  582. shell_print(shell, "exit deep sleep\n");
  583. }else{
  584. shell_print(shell, "enter sleep\n");
  585. pm_stat.state = PM_STATE_STANDBY;
  586. pm_power_state_force(pm_stat);
  587. shell_print(shell, "exit sleep\n");
  588. }
  589. return 0;
  590. }
  591. #endif
  592. static int shell_cmd_reboot(const struct shell *shell,
  593. size_t argc, char **argv)
  594. {
  595. if(argc == 2) {
  596. if(!strcmp(argv[1], "adfu")){
  597. shell_print(shell, "reboot adfu\n");
  598. sys_pm_reboot(REBOOT_TYPE_GOTO_ADFU);
  599. }else if(!strcmp(argv[1], "poweroff")){
  600. shell_print(shell, "poweroff\n");
  601. sys_pm_poweroff();
  602. }else{
  603. #if defined(CONFIG_SOC_LARK)
  604. if(!strcmp(argv[1], "jtag")){
  605. shell_print(shell, "reboot jtag\n");
  606. sys_pm_reboot(REBOOT_TYPE_GOTO_SWJTAG);
  607. }
  608. #endif
  609. }
  610. }
  611. shell_print(shell, "reboot\n");
  612. sys_pm_reboot(REBOOT_TYPE_NORMAL);
  613. return 0;
  614. }
  615. static int shell_cmd_khead_dump(const struct shell *shell,
  616. size_t argc, char **argv)
  617. {
  618. struct k_heap * k_h;
  619. if(argc == 2){
  620. k_h = (struct k_heap *) strtoul(argv[1], NULL, 16);
  621. STRUCT_SECTION_FOREACH(k_heap, h) {
  622. if(h == k_h){
  623. shell_print(shell, "dump heap=%p:\n", h);
  624. sys_heap_dump(&h->heap);
  625. }else{
  626. shell_print(shell, "heap=%p != %p\n", h, k_h);
  627. }
  628. }
  629. }else{
  630. STRUCT_SECTION_FOREACH(k_heap, h) {
  631. shell_print(shell, "----dump heap=%p:---\n", h);
  632. sys_heap_dump(&h->heap);
  633. }
  634. }
  635. return 0;
  636. }
  637. #if defined(CONFIG_TOOL)
  638. int tool_init(char *type);
  639. static int shell_cmd_tool_connect(const struct shell *shell,
  640. size_t argc, char **argv)
  641. {
  642. char *tool_type;
  643. if(argc >= 2)
  644. {
  645. tool_type = argv[1];
  646. }
  647. else
  648. {
  649. tool_type = "aset";
  650. }
  651. shell_print(shell, "%s\n", tool_type);
  652. (void)shell->iface->api->uninit(shell->iface);
  653. tool_init(tool_type);
  654. return 0;
  655. }
  656. int shell_data_write(const uint8_t *data, uint32_t size, uint32_t timeout_ms)
  657. {
  658. int count = 0;
  659. const struct shell *shell;
  660. #if defined(CONFIG_SHELL_BACKEND_SERIAL)
  661. extern const struct shell *shell_backend_uart_get_ptr(void);
  662. shell = shell_backend_uart_get_ptr();
  663. (void)shell->iface->api->write(shell->iface, data, size, &count);
  664. #endif
  665. return count;
  666. }
  667. #endif
  668. #if defined(CONFIG_UI_MEMORY_MANAGER)
  669. extern void ui_memory_dump_info(uint32_t index);
  670. static int shell_cmd_dump_uimem(const struct shell *shell,
  671. size_t argc, char **argv)
  672. {
  673. ui_memory_dump_info(-1);
  674. return 0;
  675. }
  676. #endif
  677. #if defined(CONFIG_UI_SERVICE)
  678. extern void view_manager_dump(void);
  679. static int shell_cmd_dump_uiview(const struct shell *shell,
  680. size_t argc, char **argv)
  681. {
  682. view_manager_dump();
  683. return 0;
  684. }
  685. #endif
  686. #if defined(CONFIG_THREAD_RUNTIME_STATS)
  687. /*
  688. * cmd: cpuload
  689. * start
  690. * stop
  691. */
  692. void cpuload_stat_start(int interval_ms);
  693. void cpuload_stat_stop(void);
  694. static int shell_cmd_cpuload(const struct shell *shell,
  695. size_t argc, char **argv)
  696. {
  697. int interval_ms;
  698. int len = strlen(argv[1]);
  699. if (!strncmp(argv[1], "start", len)) {
  700. if (argc > 2)
  701. interval_ms = strtoul(argv[2], NULL, 0);
  702. else
  703. interval_ms = 2000; /* default interval: 2s */
  704. shell_print(shell,"Start cpu load statistic, interval %d ms\n",
  705. interval_ms);
  706. cpuload_stat_start(interval_ms);
  707. } else if (!strncmp(argv[1], "stop", len)) {
  708. shell_print(shell,"Stop cpu load statistic\n");
  709. cpuload_stat_stop();
  710. } else {
  711. shell_print(shell,"usage:\n");
  712. shell_print(shell," cpuload start\n");
  713. shell_print(shell," cpuload stop\n");
  714. return -EINVAL;
  715. }
  716. return 0;
  717. }
  718. #endif /* CONFIG_CPU_LOAD_STAT */
  719. #if defined(CONFIG_FAT_FILESYSTEM_ELM)
  720. static int shell_cmd_dumpbuf(const struct shell *shell,
  721. size_t argc, char **argv)
  722. {
  723. struct fs_file_t zfp;
  724. uint32_t addr, len;
  725. int res;
  726. if (argc < 4) {
  727. shell_print(shell, "usage:\n");
  728. shell_print(shell, " dumpbuf addr len path\n");
  729. return -EINVAL;
  730. }
  731. fs_file_t_init(&zfp);
  732. res = fs_open(&zfp, argv[3], FS_O_WRITE | FS_O_CREATE);
  733. if (res < 0) {
  734. shell_print(shell,"fail to open %s\n", argv[3]);
  735. return res;
  736. }
  737. addr = strtoul(argv[1], NULL, 0);
  738. len = strtoul(argv[2], NULL, 0);
  739. fs_write(&zfp, (void *)addr, len);
  740. fs_close(&zfp);
  741. shell_print(shell,"done dumping to %s\n", argv[3]);
  742. return 0;
  743. }
  744. #endif /* CONFIG_FAT_FILESYSTEM_ELM */
  745. #if defined(CONFIG_MSG_MANAGER)
  746. extern void msg_manager_dump_busy_msg(void);
  747. static int shell_cmd_dumpmsg(const struct shell *shell,
  748. size_t argc, char **argv)
  749. {
  750. msg_manager_dump_busy_msg();
  751. return 0;
  752. }
  753. #endif /* defined(CONFIG_MSG_MANAGER) */
  754. #if defined(CONFIG_UI_INPUT_RECORDER) && defined(CONFIG_FILE_STREAM)
  755. #include <file_stream.h>
  756. #include <input_recorder.h>
  757. #define INPUTREC_BUFFER_SIZE 0
  758. #ifdef CONFIG_MASS_STORAGE_DISK_NAME
  759. #define INPUTREC_DEFAULT_FILE_PATH "/" CONFIG_MASS_STORAGE_DISK_NAME ":/.input.rec"
  760. #else
  761. #define INPUTREC_DEFAULT_FILE_PATH "/SD:/.input.rec"
  762. #endif
  763. static int shell_cmd_input_record(const struct shell *shell,
  764. size_t argc, char **argv)
  765. {
  766. #if INPUTREC_BUFFER_SIZE > 0
  767. static uint8_t rec_buffer[INPUTREC_BUFFER_SIZE];
  768. static uint32_t rec_size;
  769. #else
  770. static io_stream_t rec_stream;
  771. #endif
  772. bool to_capture;
  773. bool to_start;
  774. bool repeat = false;
  775. int res = 0;
  776. if (argc < 3) {
  777. shell_print(shell, "usage:\n");
  778. shell_print(shell, " inputrec {record|play} {repeat|start|stop} [file]\n");
  779. return -EINVAL;
  780. }
  781. if (strcmp(argv[1], "record") == 0) {
  782. to_capture = true;
  783. } else if (strcmp(argv[1], "play") == 0) {
  784. to_capture = false;
  785. } else {
  786. return -EINVAL;
  787. }
  788. if (strcmp(argv[2], "start") == 0) {
  789. to_start = true;
  790. } else if (strcmp(argv[2], "stop") == 0) {
  791. to_start = false;
  792. } else if (!to_capture && strcmp(argv[2], "repeat") == 0) {
  793. to_start = true;
  794. repeat = true;
  795. } else {
  796. return -EINVAL;
  797. }
  798. #if INPUTREC_BUFFER_SIZE > 0
  799. if (to_capture) {
  800. if (to_start) {
  801. res = input_capture_buffer_start(rec_buffer, sizeof(rec_buffer));
  802. } else {
  803. int num = input_capture_stop();
  804. if (num >= 0) {
  805. rec_size = num * sizeof(input_rec_data_t);
  806. shell_print(shell, "save %d records\n", num);
  807. }
  808. }
  809. } else {
  810. if (to_start) {
  811. res = input_playback_buffer_start(rec_buffer, rec_size, repeat);
  812. //input_playback_slide_fixstep_start(10, 300, 10, true);
  813. } else {
  814. input_playback_stop();
  815. }
  816. }
  817. #else /* INPUTREC_BUFFER_SIZE > 0 */
  818. if (to_start) {
  819. const char *path = (argc > 3) ? argv[3] : INPUTREC_DEFAULT_FILE_PATH;
  820. if (rec_stream) {
  821. shell_print(shell, "must stop last record/play first\n");
  822. return -EPERM;
  823. }
  824. rec_stream = file_stream_create(path);
  825. if (rec_stream) {
  826. if (stream_open(rec_stream, to_capture ? MODE_OUT : MODE_IN)) {
  827. stream_destroy(rec_stream);
  828. rec_stream = NULL;
  829. }
  830. }
  831. if (rec_stream == NULL) {
  832. shell_print(shell, "failed to open file %s\n", path);
  833. return -EPERM;
  834. }
  835. } else if (rec_stream == NULL) {
  836. return 0;
  837. }
  838. if (to_capture) {
  839. if (to_start) {
  840. res = input_capture_stream_start(rec_stream);
  841. } else {
  842. shell_print(shell, "save %d records\n", input_capture_stop());
  843. }
  844. } else {
  845. if (to_start) {
  846. res = input_playback_stream_start(rec_stream, repeat);
  847. //input_playback_slide_fixstep_start(10, 300, 10, true);
  848. } else {
  849. input_playback_stop();
  850. }
  851. }
  852. if (!to_start || res) {
  853. if (rec_stream) {
  854. stream_close(rec_stream);
  855. stream_destroy(rec_stream);
  856. rec_stream = NULL;
  857. }
  858. }
  859. #endif /* INPUTREC_BUFFER_SIZE > 0 */
  860. return res;
  861. }
  862. #endif /* defined(CONFIG_UI_INPUT_RECORDER) && defined(CONFIG_STREAM) */
  863. #if defined(CONFIG_INPUT_DEV_ACTS_CST816S_TP_KEY)
  864. extern void tpkey_acts_dump(void);
  865. static int shell_cmd_tp(const struct shell *shell,
  866. size_t argc, char **argv)
  867. {
  868. tpkey_acts_dump();
  869. return 0;
  870. }
  871. #endif
  872. #if defined(CONFIG_EXTEND_GPIO_ET6416_SHELL)
  873. #include <drivers/gpio.h>
  874. static int shell_cmd_exgpio(const struct shell *shell,
  875. size_t argc, char **argv)
  876. {
  877. int gpio, val = 0;
  878. const struct device *gpio_dev;
  879. if (argc < 3) {
  880. shell_print(shell, "exgpio in/out num [val]\n");
  881. return -EINVAL;
  882. }
  883. gpio = strtoul(argv[2], NULL, 0);
  884. if (argc >= 4)
  885. val = strtoul(argv[3], NULL, 0);
  886. gpio_dev = device_get_binding(CONFIG_EXTEND_GPIO_NAME);
  887. if (!gpio_dev){
  888. shell_print(shell,"extern gpio dev get fail\n");
  889. return -EINVAL;
  890. }
  891. if(strcmp(argv[1], "out") == 0){
  892. gpio_pin_configure(gpio_dev, gpio, GPIO_OUTPUT);
  893. gpio_pin_set(gpio_dev, gpio, val);
  894. shell_print(shell,"exgpio%d,out, val=%d\n", gpio, val);
  895. }else{
  896. gpio_pin_configure(gpio_dev, gpio, GPIO_INPUT);
  897. k_msleep(100);
  898. val = gpio_pin_get(gpio_dev, gpio);
  899. shell_print(shell,"exgpio%d, in, val=%d\n", gpio, val);
  900. }
  901. return 0;
  902. }
  903. #endif
  904. #if defined(CONFIG_ACTIONS_PRINTK_DMA)
  905. static int shell_cmd_printk_by_dma_cpu(const struct shell *shell,
  906. size_t argc, char **argv)
  907. {
  908. if(argc != 2){
  909. shell_print(shell, "dbgsw cpu[dma]\n");
  910. return -EINVAL;
  911. }
  912. if (strcmp(argv[1], "cpu") == 0){
  913. shell_print(shell, "switch to cpu print\n");
  914. printk_dma_switch(0);
  915. }else{
  916. shell_print(shell, "switch to dma print\n");
  917. printk_dma_switch(1);
  918. }
  919. return 0;
  920. }
  921. #endif
  922. #if defined(CONFIG_SOC_SPICACHE_PROFILE_STAT)
  923. extern int shell_cmd_spicache_profile_stat(const struct shell *shell,
  924. size_t argc, char **argv);
  925. #endif
  926. #if defined(CONFIG_TRACING_IRQ_PROFILER)
  927. #include <arch/cpu.h>
  928. #if defined(CONFIG_CPU_CORTEX_M)
  929. #include <arch/arm/aarch32/cortex_m/cmsis.h>
  930. #elif defined(CONFIG_CPU_CORTEX_A) || defined(CONFIG_CPU_CORTEX_R)
  931. #include <drivers/interrupt_controller/gic.h>
  932. #endif
  933. void dump_irqstat(void)
  934. {
  935. struct _isr_table_entry *ite;
  936. int i;
  937. printk("IRQ statistics:\n");
  938. printk("irq prio count max_time (us) total (us) isr\n");
  939. for (i = 0; i < IRQ_TABLE_SIZE; i++) {
  940. ite = &_sw_isr_table[i];
  941. if (ite->isr != z_irq_spurious) {
  942. if(irq_is_enabled(i)){
  943. printk("%2d(*) %2d %10d", i, NVIC_GetPriority(i), ite->irq_cnt);
  944. }else{
  945. printk("%2d %2d %10d", i, NVIC_GetPriority(i), ite->irq_cnt);
  946. }
  947. printk(" %10d",
  948. (u32_t)(k_cyc_to_ns_floor64(ite->max_irq_cycles) / 1000));
  949. printk(" %10d",
  950. ite->irq_total_us);
  951. #ifdef CONFIG_KALLSYMS
  952. print_symbol(" %s", (unsigned long)ite->isr);
  953. #endif
  954. printk("\n");
  955. }
  956. }
  957. }
  958. static int shell_cmd_irqstat(const struct shell *shell,int argc, char *argv[])
  959. {
  960. struct _isr_table_entry *ite;
  961. int i;
  962. unsigned int key;
  963. ARG_UNUSED(argc);
  964. ARG_UNUSED(argv);
  965. dump_irqstat();
  966. if (argc >= 2 && !strncmp(argv[1], "clear", strlen(argv[1]))) {
  967. key = irq_lock();
  968. /* clear irq statistics */
  969. for (i = 0; i < IRQ_TABLE_SIZE; i++) {
  970. ite = &_sw_isr_table[i];
  971. if (ite->isr != z_irq_spurious) {
  972. ite->irq_cnt = 0;
  973. ite->max_irq_cycles = 0;
  974. ite->irq_total_us = 0;
  975. }
  976. }
  977. irq_unlock(key);
  978. }
  979. return 0;
  980. }
  981. #endif /* CONFIG_IRQ_STAT */
  982. #if defined(CONFIG_RES_MANAGER)
  983. extern void res_manager_dump_info(void);
  984. static int shell_cmd_dump_res(const struct shell *shell,
  985. size_t argc, char **argv)
  986. {
  987. res_manager_dump_info();
  988. return 0;
  989. }
  990. #endif
  991. static int shell_cmd_wksrc(const struct shell *shell,
  992. size_t argc, char **argv)
  993. {
  994. sys_s3_wksrc_set(SLEEP_WK_SRC_T0);
  995. shell_print(shell, "set t0 wakeup\n");
  996. return 0;
  997. }
  998. #if defined(CONFIG_RTC_ACTS)
  999. #include <drivers/rtc.h>
  1000. static void rtc_help(void)
  1001. {
  1002. printk("usage:\n");
  1003. printk("Get the current rtc time e.g. rtc\n");
  1004. printk("Set the rtc time e.g. rtc set 2019-09-11 18:14:54\n");
  1005. }
  1006. static void show_rtc_time(void)
  1007. {
  1008. struct rtc_time tm;
  1009. const struct device *dev = device_get_binding(CONFIG_RTC_0_NAME);
  1010. rtc_get_time(dev, &tm);
  1011. print_rtc_time(&tm);
  1012. }
  1013. static void ymdstring_to_tm(const char *timestr, struct rtc_time *tm)
  1014. {
  1015. char *p, *s;
  1016. const char *split = "-";
  1017. if (!timestr || !tm)
  1018. return ;
  1019. p = strtok_r((char *)timestr, split, &s);
  1020. if (!p)
  1021. return;
  1022. tm->tm_year = strtoul(p, NULL, 10);
  1023. tm->tm_year -= 1900;
  1024. p = strtok_r(NULL, split, &s);
  1025. if (!p)
  1026. return;
  1027. tm->tm_mon = strtoul(p, NULL, 10);
  1028. tm->tm_mon -= 1;
  1029. p = strtok_r(NULL, split, &s);
  1030. if (!p)
  1031. return;
  1032. tm->tm_mday = strtoul(p, NULL, 10);
  1033. }
  1034. static void hmsstring_to_tm(const char *timestr, struct rtc_time *tm)
  1035. {
  1036. char *p, *s;
  1037. const char *split = ":";
  1038. if (!timestr || !tm)
  1039. return ;
  1040. p = strtok_r((char *)timestr, split, &s);
  1041. if (!p)
  1042. return;
  1043. tm->tm_hour = strtoul(p, NULL, 10);
  1044. p = strtok_r(NULL, split, &s);
  1045. if (!p)
  1046. return;
  1047. tm->tm_min = strtoul(p, NULL, 10);
  1048. p = strtok_r(NULL, split, &s);
  1049. if (!p)
  1050. return;
  1051. tm->tm_sec = strtoul(p, NULL, 10);
  1052. }
  1053. static int shell_cmd_rtc(const struct shell *shell, size_t argc, char **argv)
  1054. {
  1055. struct rtc_time tm = {0};
  1056. const struct device *dev = device_get_binding(CONFIG_RTC_0_NAME);
  1057. if (!dev) {
  1058. printk("Failed to get the RTC device\n");
  1059. return -ENXIO;
  1060. }
  1061. if (!strcmp(argv[1], "help")) {
  1062. rtc_help();
  1063. } else if (!strcmp(argv[1], "set")) {
  1064. if (argc != 4) {
  1065. rtc_help();
  1066. return -EPERM;
  1067. }
  1068. ymdstring_to_tm(argv[2], &tm);
  1069. hmsstring_to_tm(argv[3], &tm);
  1070. print_rtc_time(&tm);
  1071. if (rtc_set_time(dev, &tm))
  1072. printk("Failed to set rtc time\n");
  1073. else
  1074. printk("rtc set time successfully\n");
  1075. } else {
  1076. show_rtc_time();
  1077. }
  1078. return 0;
  1079. }
  1080. #endif
  1081. #ifdef CONFIG_ALARM8HZ_ACTS
  1082. #include <drivers/alarm.h>
  1083. void shell_cmd_alarm8hz_cb_func(const void *cb_data)
  1084. {
  1085. const struct device *dev = (const struct device *)cb_data;
  1086. struct alarm_config config = {0};
  1087. config.alarm_msec = 1000;
  1088. config.cb_fn = shell_cmd_alarm8hz_cb_func;
  1089. config.cb_data = dev;
  1090. printk("** On alarm8hz **\n");
  1091. acts_alarm_set_alarm(dev, &config, true);
  1092. }
  1093. static int shell_cmd_alarm8hz(const struct shell *shell, size_t argc, char **argv)
  1094. {
  1095. const struct device *dev = device_get_binding(CONFIG_ALARM8HZ_0_NAME);
  1096. struct alarm_config config = {0};
  1097. uint32_t alarm_msec = 1000;
  1098. if (!dev) {
  1099. printk("failed to get alarm8hz device:%s\n", CONFIG_ALARM8HZ_0_NAME);
  1100. return -ENXIO;
  1101. }
  1102. if ((argc > 1) && (!strcmp(argv[1], "enable"))) {
  1103. config.alarm_msec = alarm_msec;
  1104. config.cb_fn = shell_cmd_alarm8hz_cb_func;
  1105. config.cb_data = dev;
  1106. acts_alarm_set_alarm(dev, &config, true);
  1107. } else if ((argc > 1) && (!strcmp(argv[1], "disable"))) {
  1108. acts_alarm_set_alarm(dev, NULL, false);
  1109. }
  1110. return 0;
  1111. }
  1112. #endif
  1113. SHELL_STATIC_SUBCMD_SET_CREATE(sub_dbg,
  1114. #if defined(CONFIG_CMD_MEMORY)
  1115. SHELL_CMD(mdw, NULL, "display memory by word: mdw address [,count]" , shell_cmd_mdw ),
  1116. SHELL_CMD(mdh, NULL, "display memory by half-word: mdh address [,count]" , shell_cmd_mdh),
  1117. SHELL_CMD(mdb, NULL, "display memory by byte: mdb address [,count]" , shell_cmd_mdb),
  1118. SHELL_CMD(mww, NULL, "memory write (fill) by word: mww address value [,count]" , shell_cmd_mww),
  1119. SHELL_CMD(mwh, NULL, "memory write (fill) by half-word: mwh address value [,count]" , shell_cmd_mwh),
  1120. SHELL_CMD(mwb, NULL,"memory write (fill) by byte: mwb address value [,count]" , shell_cmd_mwb),
  1121. #endif
  1122. #if defined(CONFIG_SOC_SPICACHE_PROFILE)
  1123. SHELL_CMD(spicache_profile, NULL, "spicache_profile.", shell_cmd_spicache_profile),
  1124. #endif
  1125. #if defined(CONFIG_SOC_SPICACHE_PROFILE_STAT)
  1126. SHELL_CMD(spicache_stat, NULL, "spicache_profile stat.", shell_cmd_spicache_profile_stat),
  1127. #endif
  1128. #if defined(CONFIG_CMD_SPINOR)
  1129. SHELL_CMD(snort, NULL, "nor test : snort address size", shell_nor_speed_test),
  1130. SHELL_CMD(fread, NULL, "flash read : fread dev[sd/spi_flash/spinand] offset", shell_flash_read),
  1131. #endif
  1132. #if defined(CONFIG_CMD_SPINAND)
  1133. SHELL_CMD(snandr, NULL, "nand logic read: offset start address; size read len.(alighed to byte)", shell_nand_read),
  1134. SHELL_CMD(snandw, NULL, "nand logic write: offset start address; size read len.(alighed to byte)", shell_nand_write),
  1135. //SHELL_CMD(snandlt, NULL, "nand logic test: offset start address; size read len;", shell_nand_logic_speed_test),
  1136. #endif
  1137. #if defined(CONFIG_DMA_DBG_DUMP)
  1138. SHELL_CMD(dma_dump, NULL, "dma info", shell_dma_info),
  1139. #endif
  1140. #if defined(CONFIG_SD_FS)
  1141. SHELL_CMD(sdfs, NULL, "sdfs name size", shell_sdfs_dump),
  1142. #endif
  1143. #if defined(CONFIG_NVRAM_CONFIG)
  1144. SHELL_CMD(nvdump, NULL, "nvram dump", shell_nvram_dump),
  1145. SHELL_CMD(nvram, NULL, "nvram name (val)", shell_nvram_cmd),
  1146. #endif
  1147. #if defined(CONFIG_DISPLAY_ENGINE)
  1148. SHELL_CMD(de_dump, NULL, "de dump", shell_de_dump),
  1149. #endif
  1150. #if defined(CONFIG_DISPLAY_LCDC)
  1151. SHELL_CMD(lcd_dump, NULL, "lcdc dump", shell_lcd_dump),
  1152. #endif
  1153. #if defined(CONFIG_BT_DRV)
  1154. SHELL_CMD(bb-reg, NULL, "read/write btc bb ctl", shell_cmd_bqb_bb),
  1155. SHELL_CMD(rf-reg, NULL, "read/write btc rf ctl", shell_cmd_bqb_rf),
  1156. #endif
  1157. #if defined(CONFIG_PM_DIRECT_FORCE_MODE)
  1158. SHELL_CMD(sleep, NULL, "sleep", shell_cmd_sleep),
  1159. #endif
  1160. #if defined(CONFIG_KERNEL_SHOW_STACK)
  1161. SHELL_CMD(show_stack, NULL, "show kernel stack", shell_show_stack),
  1162. #endif
  1163. SHELL_CMD(reboot, NULL, "reboot [adfu]", shell_cmd_reboot),
  1164. SHELL_CMD(kheap, NULL, "kheap [addr]", shell_cmd_khead_dump),
  1165. #if defined(CONFIG_UI_MEMORY_MANAGER)
  1166. SHELL_CMD(uimem, NULL, "uimem dump", shell_cmd_dump_uimem),
  1167. #endif
  1168. #if defined(CONFIG_UI_SERVICE)
  1169. SHELL_CMD(uiview, NULL, "view dump", shell_cmd_dump_uiview),
  1170. #endif
  1171. #if defined(CONFIG_THREAD_RUNTIME_STATS)
  1172. SHELL_CMD(cpuload, NULL, "show cpu load statistic preriodically", shell_cmd_cpuload),
  1173. #endif
  1174. #if defined(CONFIG_FAT_FILESYSTEM_ELM)
  1175. SHELL_CMD(dumpbuf, NULL, "dump buffer to file system: dumpbuf addr len path", shell_cmd_dumpbuf),
  1176. #endif
  1177. #if defined(CONFIG_MSG_MANAGER)
  1178. SHELL_CMD(dumpmsg, NULL, "dump message: dumpmsg", shell_cmd_dumpmsg),
  1179. #endif
  1180. #if defined(CONFIG_UI_INPUT_RECORDER) && defined(CONFIG_FILE_STREAM)
  1181. SHELL_CMD(inputrec, NULL, "input record: inputrec {record|play} {repeat|start|stop} [file]", shell_cmd_input_record),
  1182. #endif
  1183. #if defined(CONFIG_INPUT_DEV_ACTS_CST816S_TP_KEY)
  1184. SHELL_CMD(tpnotify, NULL, "dump gesture and location", shell_cmd_tp),
  1185. #endif
  1186. #if defined(CONFIG_EXTEND_GPIO_ET6416_SHELL)
  1187. SHELL_CMD(exgpio, NULL, "exgpio in/out num [val]", shell_cmd_exgpio),
  1188. #endif
  1189. #if defined(CONFIG_ACTIONS_PRINTK_DMA)
  1190. SHELL_CMD(dbgsw, NULL, "dbgsw cpu[dma]", shell_cmd_printk_by_dma_cpu),
  1191. #endif
  1192. #if defined(CONFIG_TRACING_IRQ_PROFILER)
  1193. SHELL_CMD(irqstat, NULL, "irqstat (clear)", shell_cmd_irqstat),
  1194. #endif
  1195. #if defined(CONFIG_TOOL)
  1196. SHELL_CMD(tool, NULL, "tool [aset]", shell_cmd_tool_connect),
  1197. #endif
  1198. #if defined(CONFIG_RES_MANAGER)
  1199. SHELL_CMD(resman, NULL, "resource dump", shell_cmd_dump_res),
  1200. #endif
  1201. SHELL_CMD(wksrct, NULL, "t0 wksrc set", shell_cmd_wksrc),
  1202. #if defined(CONFIG_RTC_ACTS)
  1203. SHELL_CMD(rtc, NULL, "rtc get/set current time", shell_cmd_rtc),
  1204. #endif
  1205. #if defined(CONFIG_ALARM8HZ_ACTS)
  1206. SHELL_CMD(alarm8hz, NULL, "alarm8hz set alarm time", shell_cmd_alarm8hz),
  1207. #endif
  1208. SHELL_SUBCMD_SET_END /* Array terminated. */
  1209. );
  1210. SHELL_CMD_REGISTER(dbg, &sub_dbg, "dbg commands", NULL);