blob: 34ea989b39b4fe3667895edd30692941aeeae411 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
wdenk78f66222002-08-27 10:27:51 +00002/*
Detlev Zundel5e6c06b2009-03-25 17:27:52 +01003 * (C) Copyright 2000-2009
wdenk78f66222002-08-27 10:27:51 +00004 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk78f66222002-08-27 10:27:51 +00005 */
6
7/*
8 * Definitions for Command Processor
9 */
10#ifndef __COMMAND_H
11#define __COMMAND_H
12
Simon Glass5e6201b2019-08-01 09:46:51 -060013#include <env.h>
Marek Vasut69c5e342012-10-12 10:27:04 +000014#include <linker_lists.h>
Stefan Roese37628252008-08-06 14:05:38 +020015
Evgeny Bachinind95e1d12023-03-20 11:23:11 +030016#include <linux/compiler_attributes.h>
17
wdenk78f66222002-08-27 10:27:51 +000018#ifndef NULL
19#define NULL 0
20#endif
21
Peter Tyserdfb72b82009-01-27 18:03:12 -060022/* Default to a width of 8 characters for help message command width */
Tom Rini364d0022023-01-10 11:19:45 -050023#ifndef CFG_SYS_HELP_CMD_WIDTH
24#define CFG_SYS_HELP_CMD_WIDTH 10
Peter Tyserdfb72b82009-01-27 18:03:12 -060025#endif
26
wdenk78f66222002-08-27 10:27:51 +000027#ifndef __ASSEMBLY__
Simon Glassb3c2aa52023-09-27 08:22:37 -060028
29/* For ARRAY_SIZE() */
30#include <linux/kernel.h>
31
wdenk78f66222002-08-27 10:27:51 +000032/*
33 * Monitor Command Table
34 */
35
Simon Glassed38aef2020-05-10 11:40:03 -060036struct cmd_tbl {
wdenk78f66222002-08-27 10:27:51 +000037 char *name; /* Command Name */
wdenk78f66222002-08-27 10:27:51 +000038 int maxargs; /* maximum number of arguments */
Boris Brezillonc71dfd12018-12-03 22:54:20 +010039 /*
40 * Same as ->cmd() except the command
41 * tells us if it can be repeated.
42 * Replaces the old ->repeatable field
43 * which was not able to make
44 * repeatable property different for
45 * the main command and sub-commands.
46 */
Simon Glassed38aef2020-05-10 11:40:03 -060047 int (*cmd_rep)(struct cmd_tbl *cmd, int flags, int argc,
48 char *const argv[], int *repeatable);
wdenk78f66222002-08-27 10:27:51 +000049 /* Implementation function */
Simon Glassed38aef2020-05-10 11:40:03 -060050 int (*cmd)(struct cmd_tbl *cmd, int flags, int argc,
51 char *const argv[]);
wdenk78f66222002-08-27 10:27:51 +000052 char *usage; /* Usage message (short) */
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020053#ifdef CONFIG_SYS_LONGHELP
Simon Glass9b724572021-09-19 15:49:32 -060054 const char *help; /* Help message (long) */
wdenk78f66222002-08-27 10:27:51 +000055#endif
wdenk3902d702004-04-15 18:22:41 +000056#ifdef CONFIG_AUTO_COMPLETE
57 /* do auto completion on the arguments */
Simon Glassed38aef2020-05-10 11:40:03 -060058 int (*complete)(int argc, char *const argv[],
59 char last_char, int maxv, char *cmdv[]);
wdenk3902d702004-04-15 18:22:41 +000060#endif
wdenk78f66222002-08-27 10:27:51 +000061};
62
Igor Grinbergde832562011-11-07 01:13:59 +000063#if defined(CONFIG_CMD_RUN)
Kory Maincentb9c73492021-02-02 16:42:27 +010064int do_run(struct cmd_tbl *cmdtp, int flag, int argc,
65 char *const argv[]);
Igor Grinbergde832562011-11-07 01:13:59 +000066#endif
wdenk78f66222002-08-27 10:27:51 +000067
68/* common/command.c */
Simon Glassed38aef2020-05-10 11:40:03 -060069int _do_help(struct cmd_tbl *cmd_start, int cmd_items, struct cmd_tbl *cmdtp,
70 int flag, int argc, char *const argv[]);
71struct cmd_tbl *find_cmd(const char *cmd);
72struct cmd_tbl *find_cmd_tbl(const char *cmd, struct cmd_tbl *table,
73 int table_len);
74int complete_subcmdv(struct cmd_tbl *cmdtp, int count, int argc,
75 char *const argv[], char last_char, int maxv,
Boris Brezillonae73c332018-12-03 22:54:19 +010076 char *cmdv[]);
wdenk78f66222002-08-27 10:27:51 +000077
Kory Maincentb9c73492021-02-02 16:42:27 +010078int cmd_usage(const struct cmd_tbl *cmdtp);
Peter Tyserddb3af92009-01-27 18:03:10 -060079
Boris Brezillonc71dfd12018-12-03 22:54:20 +010080/* Dummy ->cmd and ->cmd_rep wrappers. */
Simon Glassed38aef2020-05-10 11:40:03 -060081int cmd_always_repeatable(struct cmd_tbl *cmdtp, int flag, int argc,
82 char *const argv[], int *repeatable);
83int cmd_never_repeatable(struct cmd_tbl *cmdtp, int flag, int argc,
84 char *const argv[], int *repeatable);
85int cmd_discard_repeatable(struct cmd_tbl *cmdtp, int flag, int argc,
86 char *const argv[]);
Boris Brezillonc71dfd12018-12-03 22:54:20 +010087
Simon Glassed38aef2020-05-10 11:40:03 -060088static inline bool cmd_is_repeatable(struct cmd_tbl *cmdtp)
Boris Brezillonc71dfd12018-12-03 22:54:20 +010089{
90 return cmdtp->cmd_rep == cmd_always_repeatable;
91}
92
wdenk3902d702004-04-15 18:22:41 +000093#ifdef CONFIG_AUTO_COMPLETE
Kory Maincentb9c73492021-02-02 16:42:27 +010094int var_complete(int argc, char *const argv[], char last_char, int maxv,
95 char *cmdv[]);
96int cmd_auto_complete(const char *const prompt, char *buf, int *np,
97 int *colp);
wdenk3902d702004-04-15 18:22:41 +000098#endif
99
Simon Glassd7385532014-02-26 15:59:15 -0700100/**
101 * cmd_process_error() - report and process a possible error
102 *
103 * @cmdtp: Command which caused the error
104 * @err: Error code (0 if none, -ve for error, like -EIO)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100105 * Return: 0 (CMD_RET_SUCCESS) if there is not error,
Michal Simek2e1b90b2018-06-21 14:49:26 +0200106 * 1 (CMD_RET_FAILURE) if an error is found
107 * -1 (CMD_RET_USAGE) if 'usage' error is found
Simon Glassd7385532014-02-26 15:59:15 -0700108 */
Simon Glassed38aef2020-05-10 11:40:03 -0600109int cmd_process_error(struct cmd_tbl *cmdtp, int err);
Simon Glassd7385532014-02-26 15:59:15 -0700110
wdenk78f66222002-08-27 10:27:51 +0000111/*
112 * Monitor Command
113 *
114 * All commands use a common argument format:
115 *
Simon Glassed38aef2020-05-10 11:40:03 -0600116 * void function(struct cmd_tbl *cmdtp, int flag, int argc,
117 * char *const argv[]);
wdenk78f66222002-08-27 10:27:51 +0000118 */
119
Simon Glass0ae023d2017-08-04 16:34:38 -0600120#if defined(CONFIG_CMD_MEMORY) || \
121 defined(CONFIG_CMD_I2C) || \
122 defined(CONFIG_CMD_ITEST) || \
Bartosz Golaszewski7dd23862019-05-20 10:22:14 +0200123 defined(CONFIG_CMD_PCI) || \
124 defined(CONFIG_CMD_SETEXPR)
Jean-Christophe PLAGNIOL-VILLARD82290f22008-09-10 22:48:05 +0200125#define CMD_DATA_SIZE
Simon Glass3d3c3972020-11-01 14:15:36 -0700126#define CMD_DATA_SIZE_ERR (-1)
127#define CMD_DATA_SIZE_STR (-2)
128
129/**
130 * cmd_get_data_size() - Get the data-size specifier from a command
131 *
132 * This reads a '.x' size specifier appended to a command. For example 'md.b'
133 * is the 'md' command with a '.b' specifier, meaning that the command should
134 * use bytes.
135 *
136 * Valid characters are:
137 *
138 * b - byte
139 * w - word (16 bits)
140 * l - long (32 bits)
141 * q - quad (64 bits)
142 * s - string
143 *
144 * @arg: Pointers to the command to check. If a valid specifier is present it
145 * will be the last character of the string, following a '.'
146 * @default_size: Default size to return if there is no specifier
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100147 * Return: data size in bytes (1, 2, 4, 8) or CMD_DATA_SIZE_ERR for an invalid
Simon Glass3d3c3972020-11-01 14:15:36 -0700148 * character, or CMD_DATA_SIZE_STR for a string
149 */
150int cmd_get_data_size(char *arg, int default_size);
Jean-Christophe PLAGNIOL-VILLARD82290f22008-09-10 22:48:05 +0200151#endif
152
Mike Frysinger2e50fa32010-10-20 03:36:26 -0400153#ifdef CONFIG_CMD_BOOTD
Kory Maincentb9c73492021-02-02 16:42:27 +0100154int do_bootd(struct cmd_tbl *cmdtp, int flag, int argc,
155 char *const argv[]);
Mike Frysinger2e50fa32010-10-20 03:36:26 -0400156#endif
Kory Maincentb9c73492021-02-02 16:42:27 +0100157int do_bootm(struct cmd_tbl *cmdtp, int flag, int argc,
158 char *const argv[]);
John Keeping9b60a172022-07-28 11:19:15 +0100159#ifdef CONFIG_CMD_BOOTM
Kory Maincentb9c73492021-02-02 16:42:27 +0100160int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd);
Mike Frysinger194c2e82011-06-05 13:43:02 +0000161#else
Simon Glassed38aef2020-05-10 11:40:03 -0600162static inline int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd)
Mike Frysinger194c2e82011-06-05 13:43:02 +0000163{
164 return 0;
165}
166#endif
Rob Herringa20cbf92012-09-21 04:02:30 +0000167
Kory Maincentb9c73492021-02-02 16:42:27 +0100168int do_bootz(struct cmd_tbl *cmdtp, int flag, int argc,
169 char *const argv[]);
Rob Herringc88e1bf2012-12-02 21:00:23 -0600170
Kory Maincentb9c73492021-02-02 16:42:27 +0100171int do_booti(struct cmd_tbl *cmdtp, int flag, int argc,
172 char *const argv[]);
Stephen Warren9c3c9312015-07-21 17:49:41 -0600173
Kory Maincentb2187d02021-02-02 16:42:29 +0100174int do_zboot_parent(struct cmd_tbl *cmdtp, int flag, int argc,
175 char *const argv[], int *repeatable);
176
Kory Maincentb9c73492021-02-02 16:42:27 +0100177int common_diskboot(struct cmd_tbl *cmdtp, const char *intf, int argc,
Simon Glassed38aef2020-05-10 11:40:03 -0600178 char *const argv[]);
Mike Frysinger2a5ba452010-10-20 03:35:39 -0400179
Kory Maincentb9c73492021-02-02 16:42:27 +0100180int do_reset(struct cmd_tbl *cmdtp, int flag, int argc,
181 char *const argv[]);
182int do_poweroff(struct cmd_tbl *cmdtp, int flag, int argc,
183 char *const argv[]);
184
185unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc,
186 char *const argv[]);
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900187
188#if defined(CONFIG_CMD_NVEDIT_EFI)
Kory Maincentb9c73492021-02-02 16:42:27 +0100189int do_env_print_efi(struct cmd_tbl *cmdtp, int flag, int argc,
190 char *const argv[]);
191int do_env_set_efi(struct cmd_tbl *cmdtp, int flag, int argc,
192 char *const argv[]);
AKASHI Takahiro117e68a2019-02-25 15:54:36 +0900193#endif
194
Simon Glass00e44192020-11-01 14:15:40 -0700195/**
196 * setexpr_regex_sub() - Replace a regex pattern with a string
197 *
198 * @data: Buffer containing the string to update
199 * @data_size: Size of buffer (must be large enough for the new string)
200 * @nbuf: Back-reference buffer
201 * @nbuf_size: Size of back-reference buffer (must be larger enough for @s plus
202 * all back-reference expansions)
203 * @r: Regular expression to find
204 * @s: String to replace with
205 * @global: true to replace all matches in @data, false to replace just the
206 * first
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100207 * Return: 0 if OK, 1 on error
Simon Glass00e44192020-11-01 14:15:40 -0700208 */
209int setexpr_regex_sub(char *data, uint data_size, char *nbuf, uint nbuf_size,
210 const char *r, const char *s, bool global);
211
Simon Glass1727b942012-02-14 19:59:25 +0000212/*
213 * Error codes that commands return to cmd_process(). We use the standard 0
214 * and 1 for success and failure, but add one more case - failure with a
215 * request to call cmd_usage(). But the cmd_process() function handles
216 * CMD_RET_USAGE itself and after calling cmd_usage() it will return 1.
217 * This is just a convenience for commands to avoid them having to call
218 * cmd_usage() all over the place.
219 */
220enum command_ret_t {
221 CMD_RET_SUCCESS, /* 0 = Success */
222 CMD_RET_FAILURE, /* 1 = Failure */
223 CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */
224};
225
226/**
227 * Process a command with arguments. We look up the command and execute it
228 * if valid. Otherwise we print a usage message.
229 *
230 * @param flag Some flags normally 0 (see CMD_FLAG_.. above)
231 * @param argc Number of arguments (arg 0 must be the command text)
232 * @param argv Arguments
233 * @param repeatable This function sets this to 0 if the command is not
234 * repeatable. If the command is repeatable, the value
235 * is left unchanged.
Richard Genoud94ff0672012-12-03 06:28:28 +0000236 * @param ticks If ticks is not null, this function set it to the
237 * number of ticks the command took to complete.
Heinrich Schuchardt91f8ff62022-08-01 15:17:49 +0200238 * Return: 0 if command succeeded, else non-zero (CMD_RET_...)
Simon Glass1727b942012-02-14 19:59:25 +0000239 */
Heinrich Schuchardt91f8ff62022-08-01 15:17:49 +0200240enum command_ret_t cmd_process(int flag, int argc, char *const argv[],
241 int *repeatable, unsigned long *ticks);
Simon Glass2176d602012-02-14 19:59:23 +0000242
Simon Glassed38aef2020-05-10 11:40:03 -0600243void fixup_cmdtable(struct cmd_tbl *cmdtp, int size);
Simon Glass4ef90b72016-03-19 02:18:38 -0600244
245/**
246 * board_run_command() - Fallback function to execute a command
247 *
248 * When no command line features are enabled in U-Boot, this function is
249 * called to execute a command. Typically the function can look at the
250 * command and perform a few very specific tasks, such as booting the
251 * system in a particular way.
252 *
253 * This function is only used when CONFIG_CMDLINE is not enabled.
254 *
255 * In normal situations this function should not return, since U-Boot will
256 * simply hang.
257 *
258 * @cmdline: Command line string to execute
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100259 * Return: 0 if OK, 1 for error
Simon Glass4ef90b72016-03-19 02:18:38 -0600260 */
261int board_run_command(const char *cmdline);
Simon Glassadaaa482019-11-14 12:57:43 -0700262
263int run_command(const char *cmd, int flag);
264int run_command_repeatable(const char *cmd, int flag);
265
266/**
Simon Glassf3c6a1d2022-07-13 06:06:59 -0600267 * run_commandf() - Run a command created by a format string
268 *
Simon Glassf3c6a1d2022-07-13 06:06:59 -0600269 * @fmt: printf() format string
270 * @...: Arguments to use (flag is always 0)
Evgeny Bachinind95e1d12023-03-20 11:23:11 +0300271 *
272 * The command cannot be larger than (CONFIG_SYS_CBSIZE - 1) characters.
273 *
274 * Return:
275 * Returns 0 on success, -EIO if internal output error occurred, -ENOSPC in
276 * case of 'fmt' string truncation, or != 0 on error, specific for
277 * run_command().
Simon Glassf3c6a1d2022-07-13 06:06:59 -0600278 */
Evgeny Bachinind95e1d12023-03-20 11:23:11 +0300279int run_commandf(const char *fmt, ...) __printf(1, 2);
Simon Glassf3c6a1d2022-07-13 06:06:59 -0600280
281/**
Simon Glassadaaa482019-11-14 12:57:43 -0700282 * Run a list of commands separated by ; or even \0
283 *
284 * Note that if 'len' is not -1, then the command does not need to be nul
285 * terminated, Memory will be allocated for the command in that case.
286 *
287 * @param cmd List of commands to run, each separated bu semicolon
288 * @param len Length of commands excluding terminator if known (-1 if not)
289 * @param flag Execution flags (CMD_FLAG_...)
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100290 * Return: 0 on success, or != 0 on error.
Simon Glassadaaa482019-11-14 12:57:43 -0700291 */
292int run_command_list(const char *cmd, int len, int flag);
Simon Glassdaee3ba2023-01-06 08:52:28 -0600293
294/**
295 * cmd_source_script() - Execute a script
296 *
297 * Executes a U-Boot script at a particular address in memory. The script should
298 * have a header (FIT or legacy) with the script type (IH_TYPE_SCRIPT).
299 *
300 * @addr: Address of script
301 * @fit_uname: FIT subimage name
302 * Return: result code (enum command_ret_t)
303 */
304int cmd_source_script(ulong addr, const char *fit_uname, const char *confname);
wdenk78f66222002-08-27 10:27:51 +0000305#endif /* __ASSEMBLY__ */
306
307/*
308 * Command Flags:
309 */
310#define CMD_FLAG_REPEAT 0x0001 /* repeat last command */
311#define CMD_FLAG_BOOTD 0x0002 /* command is from bootd */
Simon Glass94cb9c22014-10-07 13:59:43 -0600312#define CMD_FLAG_ENV 0x0004 /* command is from the environment */
wdenk78f66222002-08-27 10:27:51 +0000313
Mike Frysingerb5bc05e2010-10-20 03:52:39 -0400314#ifdef CONFIG_AUTO_COMPLETE
315# define _CMD_COMPLETE(x) x,
316#else
317# define _CMD_COMPLETE(x)
318#endif
319#ifdef CONFIG_SYS_LONGHELP
320# define _CMD_HELP(x) x,
321#else
322# define _CMD_HELP(x)
323#endif
wdenk57b2d802003-06-27 21:31:46 +0000324
Boris Brezillon20052d42018-12-03 22:54:21 +0100325#define U_BOOT_SUBCMDS_DO_CMD(_cmdname) \
Simon Glassed38aef2020-05-10 11:40:03 -0600326 static int do_##_cmdname(struct cmd_tbl *cmdtp, int flag, \
327 int argc, char *const argv[], \
328 int *repeatable) \
Boris Brezillon20052d42018-12-03 22:54:21 +0100329 { \
Simon Glassed38aef2020-05-10 11:40:03 -0600330 struct cmd_tbl *subcmd; \
Boris Brezillon20052d42018-12-03 22:54:21 +0100331 \
Boris Brezillon20052d42018-12-03 22:54:21 +0100332 /* We need at least the cmd and subcmd names. */ \
333 if (argc < 2 || argc > CONFIG_SYS_MAXARGS) \
334 return CMD_RET_USAGE; \
335 \
336 subcmd = find_cmd_tbl(argv[1], _cmdname##_subcmds, \
337 ARRAY_SIZE(_cmdname##_subcmds)); \
338 if (!subcmd || argc - 1 > subcmd->maxargs) \
339 return CMD_RET_USAGE; \
340 \
341 if (flag == CMD_FLAG_REPEAT && \
342 !cmd_is_repeatable(subcmd)) \
343 return CMD_RET_SUCCESS; \
344 \
345 return subcmd->cmd_rep(subcmd, flag, argc - 1, \
346 argv + 1, repeatable); \
347 }
348
349#ifdef CONFIG_AUTO_COMPLETE
350#define U_BOOT_SUBCMDS_COMPLETE(_cmdname) \
Simon Glassed38aef2020-05-10 11:40:03 -0600351 static int complete_##_cmdname(int argc, char *const argv[], \
Boris Brezillon20052d42018-12-03 22:54:21 +0100352 char last_char, int maxv, \
353 char *cmdv[]) \
354 { \
355 return complete_subcmdv(_cmdname##_subcmds, \
356 ARRAY_SIZE(_cmdname##_subcmds), \
357 argc - 1, argv + 1, last_char, \
358 maxv, cmdv); \
359 }
360#else
361#define U_BOOT_SUBCMDS_COMPLETE(_cmdname)
362#endif
363
364#define U_BOOT_SUBCMDS(_cmdname, ...) \
Simon Glassed38aef2020-05-10 11:40:03 -0600365 static struct cmd_tbl _cmdname##_subcmds[] = { __VA_ARGS__ }; \
Boris Brezillon20052d42018-12-03 22:54:21 +0100366 U_BOOT_SUBCMDS_DO_CMD(_cmdname) \
367 U_BOOT_SUBCMDS_COMPLETE(_cmdname)
368
Simon Glass21097382023-02-22 09:34:25 -0700369#if CONFIG_IS_ENABLED(CMDLINE)
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100370#define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
371 _usage, _help, _comp) \
372 { #_name, _maxargs, _cmd_rep, cmd_discard_repeatable, \
373 _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
374
Marek Vasut69c5e342012-10-12 10:27:04 +0000375#define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
376 _usage, _help, _comp) \
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100377 { #_name, _maxargs, \
378 _rep ? cmd_always_repeatable : cmd_never_repeatable, \
379 _cmd, _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
wdenk57b2d802003-06-27 21:31:46 +0000380
Marek Vasut69c5e342012-10-12 10:27:04 +0000381#define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \
Simon Glassed38aef2020-05-10 11:40:03 -0600382 ll_entry_declare(struct cmd_tbl, _name, cmd) = \
Marek Vasut69c5e342012-10-12 10:27:04 +0000383 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
384 _usage, _help, _comp);
wdenk57b2d802003-06-27 21:31:46 +0000385
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100386#define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \
387 _help, _comp) \
Simon Glassed38aef2020-05-10 11:40:03 -0600388 ll_entry_declare(struct cmd_tbl, _name, cmd) = \
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100389 U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
390 _usage, _help, _comp)
391
Simon Glass9a48bc32016-03-13 19:07:33 -0600392#else
Simon Glassed38aef2020-05-10 11:40:03 -0600393#define U_BOOT_SUBCMD_START(name) static struct cmd_tbl name[] = {};
Simon Glass9a48bc32016-03-13 19:07:33 -0600394#define U_BOOT_SUBCMD_END
395
396#define _CMD_REMOVE(_name, _cmd) \
397 int __remove_ ## _name(void) \
398 { \
399 if (0) \
400 _cmd(NULL, 0, 0, NULL); \
401 return 0; \
402 }
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100403
Simon Glassa4a55e52021-03-15 18:11:21 +1300404#define _CMD_REMOVE_REP(_name, _cmd) \
405 int __remove_ ## _name(void) \
406 { \
407 if (0) \
408 _cmd(NULL, 0, 0, NULL, NULL); \
409 return 0; \
410 }
411
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100412#define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \
413 _usage, _help, _comp) \
414 { #_name, _maxargs, 0 ? _cmd_rep : NULL, NULL, _usage, \
415 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
416
Simon Glass9a48bc32016-03-13 19:07:33 -0600417#define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \
418 _help, _comp) \
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100419 { #_name, _maxargs, NULL, 0 ? _cmd : NULL, _usage, \
Simon Glass9a48bc32016-03-13 19:07:33 -0600420 _CMD_HELP(_help) _CMD_COMPLETE(_comp) }
421
422#define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \
423 _comp) \
424 _CMD_REMOVE(sub_ ## _name, _cmd)
425
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100426#define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \
427 _help, _comp) \
Simon Glassa4a55e52021-03-15 18:11:21 +1300428 _CMD_REMOVE_REP(sub_ ## _name, _cmd_rep)
Boris Brezillonc71dfd12018-12-03 22:54:20 +0100429
Simon Glass9a48bc32016-03-13 19:07:33 -0600430#endif /* CONFIG_CMDLINE */
431
Marek Vasut69c5e342012-10-12 10:27:04 +0000432#define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \
433 U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL)
wdenk57b2d802003-06-27 21:31:46 +0000434
Simon Glass9a48bc32016-03-13 19:07:33 -0600435#define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \
436 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \
437 _usage, _help, NULL)
438
Boris Brezillon20052d42018-12-03 22:54:21 +0100439#define U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
440 _comp) \
441 U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
442 "", "", _comp)
443
444#define U_BOOT_SUBCMD_MKENT(_name, _maxargs, _rep, _do_cmd) \
445 U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \
446 NULL)
447
448#define U_BOOT_CMD_WITH_SUBCMDS(_name, _usage, _help, ...) \
449 U_BOOT_SUBCMDS(_name, __VA_ARGS__) \
450 U_BOOT_CMDREP_COMPLETE(_name, CONFIG_SYS_MAXARGS, do_##_name, \
451 _usage, _help, complete_##_name)
452
wdenk78f66222002-08-27 10:27:51 +0000453#endif /* __COMMAND_H */