1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2000-2009
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
8 * Definitions for Command Processor
13 #include <linker_lists.h>
19 /* Default to a width of 8 characters for help message command width */
20 #ifndef CONFIG_SYS_HELP_CMD_WIDTH
21 #define CONFIG_SYS_HELP_CMD_WIDTH 10
26 * Monitor Command Table
30 char *name; /* Command Name */
31 int maxargs; /* maximum number of arguments */
33 * Same as ->cmd() except the command
34 * tells us if it can be repeated.
35 * Replaces the old ->repeatable field
36 * which was not able to make
37 * repeatable property different for
38 * the main command and sub-commands.
40 int (*cmd_rep)(struct cmd_tbl_s *cmd, int flags, int argc,
41 char * const argv[], int *repeatable);
42 /* Implementation function */
43 int (*cmd)(struct cmd_tbl_s *, int, int, char * const []);
44 char *usage; /* Usage message (short) */
45 #ifdef CONFIG_SYS_LONGHELP
46 char *help; /* Help message (long) */
48 #ifdef CONFIG_AUTO_COMPLETE
49 /* do auto completion on the arguments */
50 int (*complete)(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
54 typedef struct cmd_tbl_s cmd_tbl_t;
57 #if defined(CONFIG_CMD_RUN)
58 extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
61 /* common/command.c */
62 int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int
63 flag, int argc, char * const argv[]);
64 cmd_tbl_t *find_cmd(const char *cmd);
65 cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len);
66 int complete_subcmdv(cmd_tbl_t *cmdtp, int count, int argc,
67 char * const argv[], char last_char, int maxv,
70 extern int cmd_usage(const cmd_tbl_t *cmdtp);
72 /* Dummy ->cmd and ->cmd_rep wrappers. */
73 int cmd_always_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
74 char * const argv[], int *repeatable);
75 int cmd_never_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
76 char * const argv[], int *repeatable);
77 int cmd_discard_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
80 static inline bool cmd_is_repeatable(cmd_tbl_t *cmdtp)
82 return cmdtp->cmd_rep == cmd_always_repeatable;
85 #ifdef CONFIG_AUTO_COMPLETE
86 extern int var_complete(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
87 extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp);
91 * cmd_process_error() - report and process a possible error
93 * @cmdtp: Command which caused the error
94 * @err: Error code (0 if none, -ve for error, like -EIO)
95 * @return 0 (CMD_RET_SUCCESS) if there is not error,
96 * 1 (CMD_RET_FAILURE) if an error is found
97 * -1 (CMD_RET_USAGE) if 'usage' error is found
99 int cmd_process_error(cmd_tbl_t *cmdtp, int err);
104 * All commands use a common argument format:
106 * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
109 #if defined(CONFIG_CMD_MEMORY) || \
110 defined(CONFIG_CMD_I2C) || \
111 defined(CONFIG_CMD_ITEST) || \
112 defined(CONFIG_CMD_PCI)
113 #define CMD_DATA_SIZE
114 extern int cmd_get_data_size(char* arg, int default_size);
117 #ifdef CONFIG_CMD_BOOTD
118 extern int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
120 #ifdef CONFIG_CMD_BOOTM
121 extern int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
122 extern int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd);
124 static inline int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
130 extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
132 extern int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
134 extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc,
137 extern int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
138 extern int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
140 extern unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
141 char * const argv[]);
143 #if defined(CONFIG_CMD_NVEDIT_EFI)
144 extern int do_env_print_efi(cmd_tbl_t *cmdtp, int flag, int argc,
145 char * const argv[]);
146 extern int do_env_set_efi(cmd_tbl_t *cmdtp, int flag, int argc,
147 char * const argv[]);
151 * Error codes that commands return to cmd_process(). We use the standard 0
152 * and 1 for success and failure, but add one more case - failure with a
153 * request to call cmd_usage(). But the cmd_process() function handles
154 * CMD_RET_USAGE itself and after calling cmd_usage() it will return 1.
155 * This is just a convenience for commands to avoid them having to call
156 * cmd_usage() all over the place.
159 CMD_RET_SUCCESS, /* 0 = Success */
160 CMD_RET_FAILURE, /* 1 = Failure */
161 CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */
165 * Process a command with arguments. We look up the command and execute it
166 * if valid. Otherwise we print a usage message.
168 * @param flag Some flags normally 0 (see CMD_FLAG_.. above)
169 * @param argc Number of arguments (arg 0 must be the command text)
170 * @param argv Arguments
171 * @param repeatable This function sets this to 0 if the command is not
172 * repeatable. If the command is repeatable, the value
174 * @param ticks If ticks is not null, this function set it to the
175 * number of ticks the command took to complete.
176 * @return 0 if the command succeeded, 1 if it failed
178 int cmd_process(int flag, int argc, char * const argv[],
179 int *repeatable, unsigned long *ticks);
181 void fixup_cmdtable(cmd_tbl_t *cmdtp, int size);
184 * board_run_command() - Fallback function to execute a command
186 * When no command line features are enabled in U-Boot, this function is
187 * called to execute a command. Typically the function can look at the
188 * command and perform a few very specific tasks, such as booting the
189 * system in a particular way.
191 * This function is only used when CONFIG_CMDLINE is not enabled.
193 * In normal situations this function should not return, since U-Boot will
196 * @cmdline: Command line string to execute
197 * @return 0 if OK, 1 for error
199 int board_run_command(const char *cmdline);
200 #endif /* __ASSEMBLY__ */
205 #define CMD_FLAG_REPEAT 0x0001 /* repeat last command */
206 #define CMD_FLAG_BOOTD 0x0002 /* command is from bootd */
207 #define CMD_FLAG_ENV 0x0004 /* command is from the environment */
209 #ifdef CONFIG_AUTO_COMPLETE
210 # define _CMD_COMPLETE(x) x,
212 # define _CMD_COMPLETE(x)
214 #ifdef CONFIG_SYS_LONGHELP
215 # define _CMD_HELP(x) x,
217 # define _CMD_HELP(x)
220 #ifdef CONFIG_NEEDS_MANUAL_RELOC
221 #define U_BOOT_SUBCMDS_RELOC(_cmdname) \
222 static void _cmdname##_subcmds_reloc(void) \
224 static int relocated; \
229 fixup_cmdtable(_cmdname##_subcmds, \
230 ARRAY_SIZE(_cmdname##_subcmds)); \
234 #define U_BOOT_SUBCMDS_RELOC(_cmdname) \
235 static void _cmdname##_subcmds_reloc(void) { }
238 #define U_BOOT_SUBCMDS_DO_CMD(_cmdname) \
239 static int do_##_cmdname(cmd_tbl_t *cmdtp, int flag, int argc, \
240 char * const argv[], int *repeatable) \
244 _cmdname##_subcmds_reloc(); \
246 /* We need at least the cmd and subcmd names. */ \
247 if (argc < 2 || argc > CONFIG_SYS_MAXARGS) \
248 return CMD_RET_USAGE; \
250 subcmd = find_cmd_tbl(argv[1], _cmdname##_subcmds, \
251 ARRAY_SIZE(_cmdname##_subcmds)); \
252 if (!subcmd || argc - 1 > subcmd->maxargs) \
253 return CMD_RET_USAGE; \
255 if (flag == CMD_FLAG_REPEAT && \
256 !cmd_is_repeatable(subcmd)) \
257 return CMD_RET_SUCCESS; \
259 return subcmd->cmd_rep(subcmd, flag, argc - 1, \
260 argv + 1, repeatable); \
263 #ifdef CONFIG_AUTO_COMPLETE
264 #define U_BOOT_SUBCMDS_COMPLETE(_cmdname) \
265 static int complete_##_cmdname(int argc, char * const argv[], \
266 char last_char, int maxv, \
269 return complete_subcmdv(_cmdname##_subcmds, \
270 ARRAY_SIZE(_cmdname##_subcmds), \
271 argc - 1, argv + 1, last_char, \
275 #define U_BOOT_SUBCMDS_COMPLETE(_cmdname)
278 #define U_BOOT_SUBCMDS(_cmdname, ...) \
279 static cmd_tbl_t _cmdname##_subcmds[] = { __VA_ARGS__ }; \
280 U_BOOT_SUBCMDS_RELOC(_cmdname) \
281 U_BOOT_SUBCMDS_DO_CMD(_cmdname) \
282 U_BOOT_SUBCMDS_COMPLETE(_cmdname)
284 #ifdef CONFIG_CMDLINE
285 #define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
286 _usage, _help, _comp) \
287 { #_name, _maxargs, _cmd_rep, cmd_discard_repeatable, \
288 _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
290 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
291 _usage, _help, _comp) \
292 { #_name, _maxargs, \
293 _rep ? cmd_always_repeatable : cmd_never_repeatable, \
294 _cmd, _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
296 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \
297 ll_entry_declare(cmd_tbl_t, _name, cmd) = \
298 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
299 _usage, _help, _comp);
301 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \
303 ll_entry_declare(cmd_tbl_t, _name, cmd) = \
304 U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
305 _usage, _help, _comp)
308 #define U_BOOT_SUBCMD_START(name) static cmd_tbl_t name[] = {};
309 #define U_BOOT_SUBCMD_END
311 #define _CMD_REMOVE(_name, _cmd) \
312 int __remove_ ## _name(void) \
315 _cmd(NULL, 0, 0, NULL); \
319 #define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
320 _usage, _help, _comp) \
321 { #_name, _maxargs, 0 ? _cmd_rep : NULL, NULL, _usage, \
322 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
324 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \
326 { #_name, _maxargs, NULL, 0 ? _cmd : NULL, _usage, \
327 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
329 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \
331 _CMD_REMOVE(sub_ ## _name, _cmd)
333 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \
335 _CMD_REMOVE(sub_ ## _name, _cmd_rep)
337 #endif /* CONFIG_CMDLINE */
339 #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \
340 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
342 #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \
343 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
346 #define U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
348 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
351 #define U_BOOT_SUBCMD_MKENT(_name, _maxargs, _rep, _do_cmd) \
352 U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
355 #define U_BOOT_CMD_WITH_SUBCMDS(_name, _usage, _help, ...) \
356 U_BOOT_SUBCMDS(_name, __VA_ARGS__) \
357 U_BOOT_CMDREP_COMPLETE(_name, CONFIG_SYS_MAXARGS, do_##_name, \
358 _usage, _help, complete_##_name)
360 #endif /* __COMMAND_H */