blob: c6da5aae3fcd9aeba2e62144ace249bf26d63f6a [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenka46d8212002-09-12 22:01:13 +00002/*
3 * (C) Copyright 2002
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenka46d8212002-09-12 22:01:13 +00005 */
6
7/*
8 * Diagnostics support
9 */
wdenka46d8212002-09-12 22:01:13 +000010#include <command.h>
wdenka46d8212002-09-12 22:01:13 +000011#include <post.h>
12
Simon Glassed38aef2020-05-10 11:40:03 -060013int do_diag(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
wdenka46d8212002-09-12 22:01:13 +000014{
15 unsigned int i;
16
17 if (argc == 1 || strcmp (argv[1], "run") != 0) {
18 /* List test info */
19 if (argc == 1) {
wdenk42c05472004-03-23 22:14:11 +000020 puts ("Available hardware tests:\n");
wdenka46d8212002-09-12 22:01:13 +000021 post_info (NULL);
wdenk42c05472004-03-23 22:14:11 +000022 puts ("Use 'diag [<test1> [<test2> ...]]'"
wdenka46d8212002-09-12 22:01:13 +000023 " to get more info.\n");
wdenk42c05472004-03-23 22:14:11 +000024 puts ("Use 'diag run [<test1> [<test2> ...]]'"
wdenka46d8212002-09-12 22:01:13 +000025 " to run tests.\n");
26 } else {
27 for (i = 1; i < argc; i++) {
28 if (post_info (argv[i]) != 0)
29 printf ("%s - no such test\n", argv[i]);
30 }
31 }
32 } else {
33 /* Run tests */
34 if (argc == 2) {
35 post_run (NULL, POST_RAM | POST_MANUAL);
36 } else {
37 for (i = 2; i < argc; i++) {
38 if (post_run (argv[i], POST_RAM | POST_MANUAL) != 0)
39 printf ("%s - unable to execute the test\n",
40 argv[i]);
41 }
42 }
43 }
44
45 return 0;
46}
wdenk57b2d802003-06-27 21:31:46 +000047/***************************************************/
48
wdenkf287a242003-07-01 21:06:45 +000049U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020050 diag, CONFIG_SYS_MAXARGS, 0, do_diag,
Peter Tyserdfb72b82009-01-27 18:03:12 -060051 "perform board diagnostics",
wdenk57b2d802003-06-27 21:31:46 +000052 " - print list of available tests\n"
53 "diag [test1 [test2]]\n"
54 " - print information about specified tests\n"
55 "diag run - run all available tests\n"
56 "diag run [test1 [test2]]\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +020057 " - run specified tests"
wdenk57b2d802003-06-27 21:31:46 +000058);