2 * Copyright (c) 2013 Google, Inc
7 * SPDX-License-Identifier: GPL-2.0+
19 static int do_dm_dump_all(cmd_tbl_t *cmdtp, int flag, int argc,
27 static int do_dm_dump_uclass(cmd_tbl_t *cmdtp, int flag, int argc,
35 static int do_dm_dump_devres(cmd_tbl_t *cmdtp, int flag, int argc,
43 static cmd_tbl_t test_commands[] = {
44 U_BOOT_CMD_MKENT(tree, 0, 1, do_dm_dump_all, "", ""),
45 U_BOOT_CMD_MKENT(uclass, 1, 1, do_dm_dump_uclass, "", ""),
46 U_BOOT_CMD_MKENT(devres, 1, 1, do_dm_dump_devres, "", ""),
49 static int do_dm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
56 test_cmd = find_cmd_tbl(argv[1], test_commands,
57 ARRAY_SIZE(test_commands));
60 if (!test_cmd || argc > test_cmd->maxargs)
63 ret = test_cmd->cmd(test_cmd, flag, argc, argv);
65 return cmd_process_error(test_cmd, ret);
70 "Driver model low level access",
71 "tree Dump driver model tree ('*' = activated)\n"
72 "dm uclass Dump list of instances for each uclass\n"
73 "dm devres Dump list of device resources for each device"