1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * (C) Copyright 2000-2009
8 * Definitions for Command Processor
14 #include <linker_lists.h>
20 /* Default to a width of 8 characters for help message command width */
21 #ifndef CONFIG_SYS_HELP_CMD_WIDTH
22 #define CONFIG_SYS_HELP_CMD_WIDTH 10
27 * Monitor Command Table
31 char *name; /* Command Name */
32 int maxargs; /* maximum number of arguments */
34 * Same as ->cmd() except the command
35 * tells us if it can be repeated.
36 * Replaces the old ->repeatable field
37 * which was not able to make
38 * repeatable property different for
39 * the main command and sub-commands.
41 int (*cmd_rep)(struct cmd_tbl_s *cmd, int flags, int argc,
42 char * const argv[], int *repeatable);
43 /* Implementation function */
44 int (*cmd)(struct cmd_tbl_s *, int, int, char * const []);
45 char *usage; /* Usage message (short) */
46 #ifdef CONFIG_SYS_LONGHELP
47 char *help; /* Help message (long) */
49 #ifdef CONFIG_AUTO_COMPLETE
50 /* do auto completion on the arguments */
51 int (*complete)(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
55 typedef struct cmd_tbl_s cmd_tbl_t;
58 #if defined(CONFIG_CMD_RUN)
59 extern int do_run(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
62 /* common/command.c */
63 int _do_help (cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t * cmdtp, int
64 flag, int argc, char * const argv[]);
65 cmd_tbl_t *find_cmd(const char *cmd);
66 cmd_tbl_t *find_cmd_tbl (const char *cmd, cmd_tbl_t *table, int table_len);
67 int complete_subcmdv(cmd_tbl_t *cmdtp, int count, int argc,
68 char * const argv[], char last_char, int maxv,
71 extern int cmd_usage(const cmd_tbl_t *cmdtp);
73 /* Dummy ->cmd and ->cmd_rep wrappers. */
74 int cmd_always_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
75 char * const argv[], int *repeatable);
76 int cmd_never_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
77 char * const argv[], int *repeatable);
78 int cmd_discard_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
81 static inline bool cmd_is_repeatable(cmd_tbl_t *cmdtp)
83 return cmdtp->cmd_rep == cmd_always_repeatable;
86 #ifdef CONFIG_AUTO_COMPLETE
87 extern int var_complete(int argc, char * const argv[], char last_char, int maxv, char *cmdv[]);
88 extern int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp);
92 * cmd_process_error() - report and process a possible error
94 * @cmdtp: Command which caused the error
95 * @err: Error code (0 if none, -ve for error, like -EIO)
96 * @return 0 (CMD_RET_SUCCESS) if there is not error,
97 * 1 (CMD_RET_FAILURE) if an error is found
98 * -1 (CMD_RET_USAGE) if 'usage' error is found
100 int cmd_process_error(cmd_tbl_t *cmdtp, int err);
105 * All commands use a common argument format:
107 * void function (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
110 #if defined(CONFIG_CMD_MEMORY) || \
111 defined(CONFIG_CMD_I2C) || \
112 defined(CONFIG_CMD_ITEST) || \
113 defined(CONFIG_CMD_PCI) || \
114 defined(CONFIG_CMD_SETEXPR)
115 #define CMD_DATA_SIZE
116 extern int cmd_get_data_size(char* arg, int default_size);
119 #ifdef CONFIG_CMD_BOOTD
120 extern int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
122 #ifdef CONFIG_CMD_BOOTM
123 extern int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
124 extern int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd);
126 static inline int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
132 extern int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
134 extern int do_booti(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
136 extern int common_diskboot(cmd_tbl_t *cmdtp, const char *intf, int argc,
139 extern int do_reset(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
140 extern int do_poweroff(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
142 extern unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
143 char * const argv[]);
145 #if defined(CONFIG_CMD_NVEDIT_EFI)
146 extern int do_env_print_efi(cmd_tbl_t *cmdtp, int flag, int argc,
147 char * const argv[]);
148 extern int do_env_set_efi(cmd_tbl_t *cmdtp, int flag, int argc,
149 char * const argv[]);
153 * Error codes that commands return to cmd_process(). We use the standard 0
154 * and 1 for success and failure, but add one more case - failure with a
155 * request to call cmd_usage(). But the cmd_process() function handles
156 * CMD_RET_USAGE itself and after calling cmd_usage() it will return 1.
157 * This is just a convenience for commands to avoid them having to call
158 * cmd_usage() all over the place.
161 CMD_RET_SUCCESS, /* 0 = Success */
162 CMD_RET_FAILURE, /* 1 = Failure */
163 CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */
167 * Process a command with arguments. We look up the command and execute it
168 * if valid. Otherwise we print a usage message.
170 * @param flag Some flags normally 0 (see CMD_FLAG_.. above)
171 * @param argc Number of arguments (arg 0 must be the command text)
172 * @param argv Arguments
173 * @param repeatable This function sets this to 0 if the command is not
174 * repeatable. If the command is repeatable, the value
176 * @param ticks If ticks is not null, this function set it to the
177 * number of ticks the command took to complete.
178 * @return 0 if the command succeeded, 1 if it failed
180 int cmd_process(int flag, int argc, char * const argv[],
181 int *repeatable, unsigned long *ticks);
183 void fixup_cmdtable(cmd_tbl_t *cmdtp, int size);
186 * board_run_command() - Fallback function to execute a command
188 * When no command line features are enabled in U-Boot, this function is
189 * called to execute a command. Typically the function can look at the
190 * command and perform a few very specific tasks, such as booting the
191 * system in a particular way.
193 * This function is only used when CONFIG_CMDLINE is not enabled.
195 * In normal situations this function should not return, since U-Boot will
198 * @cmdline: Command line string to execute
199 * @return 0 if OK, 1 for error
201 int board_run_command(const char *cmdline);
202 #endif /* __ASSEMBLY__ */
207 #define CMD_FLAG_REPEAT 0x0001 /* repeat last command */
208 #define CMD_FLAG_BOOTD 0x0002 /* command is from bootd */
209 #define CMD_FLAG_ENV 0x0004 /* command is from the environment */
211 #ifdef CONFIG_AUTO_COMPLETE
212 # define _CMD_COMPLETE(x) x,
214 # define _CMD_COMPLETE(x)
216 #ifdef CONFIG_SYS_LONGHELP
217 # define _CMD_HELP(x) x,
219 # define _CMD_HELP(x)
222 #ifdef CONFIG_NEEDS_MANUAL_RELOC
223 #define U_BOOT_SUBCMDS_RELOC(_cmdname) \
224 static void _cmdname##_subcmds_reloc(void) \
226 static int relocated; \
231 fixup_cmdtable(_cmdname##_subcmds, \
232 ARRAY_SIZE(_cmdname##_subcmds)); \
236 #define U_BOOT_SUBCMDS_RELOC(_cmdname) \
237 static void _cmdname##_subcmds_reloc(void) { }
240 #define U_BOOT_SUBCMDS_DO_CMD(_cmdname) \
241 static int do_##_cmdname(cmd_tbl_t *cmdtp, int flag, int argc, \
242 char * const argv[], int *repeatable) \
246 _cmdname##_subcmds_reloc(); \
248 /* We need at least the cmd and subcmd names. */ \
249 if (argc < 2 || argc > CONFIG_SYS_MAXARGS) \
250 return CMD_RET_USAGE; \
252 subcmd = find_cmd_tbl(argv[1], _cmdname##_subcmds, \
253 ARRAY_SIZE(_cmdname##_subcmds)); \
254 if (!subcmd || argc - 1 > subcmd->maxargs) \
255 return CMD_RET_USAGE; \
257 if (flag == CMD_FLAG_REPEAT && \
258 !cmd_is_repeatable(subcmd)) \
259 return CMD_RET_SUCCESS; \
261 return subcmd->cmd_rep(subcmd, flag, argc - 1, \
262 argv + 1, repeatable); \
265 #ifdef CONFIG_AUTO_COMPLETE
266 #define U_BOOT_SUBCMDS_COMPLETE(_cmdname) \
267 static int complete_##_cmdname(int argc, char * const argv[], \
268 char last_char, int maxv, \
271 return complete_subcmdv(_cmdname##_subcmds, \
272 ARRAY_SIZE(_cmdname##_subcmds), \
273 argc - 1, argv + 1, last_char, \
277 #define U_BOOT_SUBCMDS_COMPLETE(_cmdname)
280 #define U_BOOT_SUBCMDS(_cmdname, ...) \
281 static cmd_tbl_t _cmdname##_subcmds[] = { __VA_ARGS__ }; \
282 U_BOOT_SUBCMDS_RELOC(_cmdname) \
283 U_BOOT_SUBCMDS_DO_CMD(_cmdname) \
284 U_BOOT_SUBCMDS_COMPLETE(_cmdname)
286 #ifdef CONFIG_CMDLINE
287 #define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
288 _usage, _help, _comp) \
289 { #_name, _maxargs, _cmd_rep, cmd_discard_repeatable, \
290 _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
292 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
293 _usage, _help, _comp) \
294 { #_name, _maxargs, \
295 _rep ? cmd_always_repeatable : cmd_never_repeatable, \
296 _cmd, _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
298 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \
299 ll_entry_declare(cmd_tbl_t, _name, cmd) = \
300 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
301 _usage, _help, _comp);
303 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \
305 ll_entry_declare(cmd_tbl_t, _name, cmd) = \
306 U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
307 _usage, _help, _comp)
310 #define U_BOOT_SUBCMD_START(name) static cmd_tbl_t name[] = {};
311 #define U_BOOT_SUBCMD_END
313 #define _CMD_REMOVE(_name, _cmd) \
314 int __remove_ ## _name(void) \
317 _cmd(NULL, 0, 0, NULL); \
321 #define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
322 _usage, _help, _comp) \
323 { #_name, _maxargs, 0 ? _cmd_rep : NULL, NULL, _usage, \
324 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
326 #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \
328 { #_name, _maxargs, NULL, 0 ? _cmd : NULL, _usage, \
329 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
331 #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \
333 _CMD_REMOVE(sub_ ## _name, _cmd)
335 #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \
337 _CMD_REMOVE(sub_ ## _name, _cmd_rep)
339 #endif /* CONFIG_CMDLINE */
341 #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \
342 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
344 #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \
345 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
348 #define U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
350 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
353 #define U_BOOT_SUBCMD_MKENT(_name, _maxargs, _rep, _do_cmd) \
354 U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
357 #define U_BOOT_CMD_WITH_SUBCMDS(_name, _usage, _help, ...) \
358 U_BOOT_SUBCMDS(_name, __VA_ARGS__) \
359 U_BOOT_CMDREP_COMPLETE(_name, CONFIG_SYS_MAXARGS, do_##_name, \
360 _usage, _help, complete_##_name)
362 #endif /* __COMMAND_H */