Tom Rini | 10e4779 | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 2 | /* |
Detlev Zundel | 5e6c06b | 2009-03-25 17:27:52 +0100 | [diff] [blame] | 3 | * (C) Copyright 2000-2009 |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Definitions for Command Processor |
| 9 | */ |
| 10 | #ifndef __COMMAND_H |
| 11 | #define __COMMAND_H |
| 12 | |
Simon Glass | 5e6201b | 2019-08-01 09:46:51 -0600 | [diff] [blame] | 13 | #include <env.h> |
Marek Vasut | 69c5e34 | 2012-10-12 10:27:04 +0000 | [diff] [blame] | 14 | #include <linker_lists.h> |
Stefan Roese | 3762825 | 2008-08-06 14:05:38 +0200 | [diff] [blame] | 15 | |
Evgeny Bachinin | d95e1d1 | 2023-03-20 11:23:11 +0300 | [diff] [blame] | 16 | #include <linux/compiler_attributes.h> |
| 17 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 18 | #ifndef NULL |
| 19 | #define NULL 0 |
| 20 | #endif |
| 21 | |
Peter Tyser | dfb72b8 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 22 | /* Default to a width of 8 characters for help message command width */ |
Tom Rini | 364d002 | 2023-01-10 11:19:45 -0500 | [diff] [blame] | 23 | #ifndef CFG_SYS_HELP_CMD_WIDTH |
| 24 | #define CFG_SYS_HELP_CMD_WIDTH 10 |
Peter Tyser | dfb72b8 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 25 | #endif |
| 26 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 27 | #ifndef __ASSEMBLY__ |
Simon Glass | b3c2aa5 | 2023-09-27 08:22:37 -0600 | [diff] [blame] | 28 | |
| 29 | /* For ARRAY_SIZE() */ |
| 30 | #include <linux/kernel.h> |
| 31 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 32 | /* |
| 33 | * Monitor Command Table |
| 34 | */ |
| 35 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 36 | struct cmd_tbl { |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 37 | char *name; /* Command Name */ |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 38 | int maxargs; /* maximum number of arguments */ |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 39 | /* |
| 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 Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 47 | int (*cmd_rep)(struct cmd_tbl *cmd, int flags, int argc, |
| 48 | char *const argv[], int *repeatable); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 49 | /* Implementation function */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 50 | int (*cmd)(struct cmd_tbl *cmd, int flags, int argc, |
| 51 | char *const argv[]); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 52 | char *usage; /* Usage message (short) */ |
Jean-Christophe PLAGNIOL-VILLARD | 0383694 | 2008-10-16 15:01:15 +0200 | [diff] [blame] | 53 | #ifdef CONFIG_SYS_LONGHELP |
Simon Glass | 9b72457 | 2021-09-19 15:49:32 -0600 | [diff] [blame] | 54 | const char *help; /* Help message (long) */ |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 55 | #endif |
wdenk | 3902d70 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 56 | #ifdef CONFIG_AUTO_COMPLETE |
| 57 | /* do auto completion on the arguments */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 58 | int (*complete)(int argc, char *const argv[], |
| 59 | char last_char, int maxv, char *cmdv[]); |
wdenk | 3902d70 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 60 | #endif |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 61 | }; |
| 62 | |
Simon Glass | 793a98e | 2023-11-18 14:05:20 -0700 | [diff] [blame] | 63 | /** |
| 64 | * cmd_arg_get() - Get a particular argument |
| 65 | * |
| 66 | * @argc: Number of arguments |
| 67 | * @argv: Argument vector of length @argc |
| 68 | * @argnum: Argument to get (0=first) |
| 69 | * Return: Pointer to argument @argnum if it exists, else NULL |
| 70 | */ |
| 71 | static inline const char *cmd_arg_get(int argc, char *const argv[], int argnum) |
| 72 | { |
| 73 | return argc > argnum ? argv[argnum] : NULL; |
| 74 | } |
| 75 | |
| 76 | static inline const char *cmd_arg0(int argc, char *const argv[]) |
| 77 | { |
| 78 | return cmd_arg_get(argc, argv, 0); |
| 79 | } |
| 80 | |
| 81 | static inline const char *cmd_arg1(int argc, char *const argv[]) |
| 82 | { |
| 83 | return cmd_arg_get(argc, argv, 1); |
| 84 | } |
| 85 | |
| 86 | static inline const char *cmd_arg2(int argc, char *const argv[]) |
| 87 | { |
| 88 | return cmd_arg_get(argc, argv, 2); |
| 89 | } |
| 90 | |
| 91 | static inline const char *cmd_arg3(int argc, char *const argv[]) |
| 92 | { |
| 93 | return cmd_arg_get(argc, argv, 3); |
| 94 | } |
| 95 | |
Igor Grinberg | de83256 | 2011-11-07 01:13:59 +0000 | [diff] [blame] | 96 | #if defined(CONFIG_CMD_RUN) |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 97 | int do_run(struct cmd_tbl *cmdtp, int flag, int argc, |
| 98 | char *const argv[]); |
Igor Grinberg | de83256 | 2011-11-07 01:13:59 +0000 | [diff] [blame] | 99 | #endif |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 100 | |
| 101 | /* common/command.c */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 102 | int _do_help(struct cmd_tbl *cmd_start, int cmd_items, struct cmd_tbl *cmdtp, |
| 103 | int flag, int argc, char *const argv[]); |
| 104 | struct cmd_tbl *find_cmd(const char *cmd); |
| 105 | struct cmd_tbl *find_cmd_tbl(const char *cmd, struct cmd_tbl *table, |
| 106 | int table_len); |
| 107 | int complete_subcmdv(struct cmd_tbl *cmdtp, int count, int argc, |
| 108 | char *const argv[], char last_char, int maxv, |
Boris Brezillon | ae73c33 | 2018-12-03 22:54:19 +0100 | [diff] [blame] | 109 | char *cmdv[]); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 110 | |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 111 | int cmd_usage(const struct cmd_tbl *cmdtp); |
Peter Tyser | ddb3af9 | 2009-01-27 18:03:10 -0600 | [diff] [blame] | 112 | |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 113 | /* Dummy ->cmd and ->cmd_rep wrappers. */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 114 | int cmd_always_repeatable(struct cmd_tbl *cmdtp, int flag, int argc, |
| 115 | char *const argv[], int *repeatable); |
| 116 | int cmd_never_repeatable(struct cmd_tbl *cmdtp, int flag, int argc, |
| 117 | char *const argv[], int *repeatable); |
| 118 | int cmd_discard_repeatable(struct cmd_tbl *cmdtp, int flag, int argc, |
| 119 | char *const argv[]); |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 120 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 121 | static inline bool cmd_is_repeatable(struct cmd_tbl *cmdtp) |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 122 | { |
| 123 | return cmdtp->cmd_rep == cmd_always_repeatable; |
| 124 | } |
| 125 | |
wdenk | 3902d70 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 126 | #ifdef CONFIG_AUTO_COMPLETE |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 127 | int var_complete(int argc, char *const argv[], char last_char, int maxv, |
| 128 | char *cmdv[]); |
| 129 | int cmd_auto_complete(const char *const prompt, char *buf, int *np, |
| 130 | int *colp); |
Simon Glass | c0734c3 | 2023-10-01 19:13:08 -0600 | [diff] [blame] | 131 | #else |
| 132 | static inline int cmd_auto_complete(const char *const prompt, char *buf, |
| 133 | int *np, int *colp) |
| 134 | { |
| 135 | return 0; |
| 136 | } |
wdenk | 3902d70 | 2004-04-15 18:22:41 +0000 | [diff] [blame] | 137 | #endif |
| 138 | |
Simon Glass | d738553 | 2014-02-26 15:59:15 -0700 | [diff] [blame] | 139 | /** |
| 140 | * cmd_process_error() - report and process a possible error |
| 141 | * |
| 142 | * @cmdtp: Command which caused the error |
| 143 | * @err: Error code (0 if none, -ve for error, like -EIO) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 144 | * Return: 0 (CMD_RET_SUCCESS) if there is not error, |
Michal Simek | 2e1b90b | 2018-06-21 14:49:26 +0200 | [diff] [blame] | 145 | * 1 (CMD_RET_FAILURE) if an error is found |
| 146 | * -1 (CMD_RET_USAGE) if 'usage' error is found |
Simon Glass | d738553 | 2014-02-26 15:59:15 -0700 | [diff] [blame] | 147 | */ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 148 | int cmd_process_error(struct cmd_tbl *cmdtp, int err); |
Simon Glass | d738553 | 2014-02-26 15:59:15 -0700 | [diff] [blame] | 149 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 150 | /* |
| 151 | * Monitor Command |
| 152 | * |
| 153 | * All commands use a common argument format: |
| 154 | * |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 155 | * void function(struct cmd_tbl *cmdtp, int flag, int argc, |
| 156 | * char *const argv[]); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 157 | */ |
| 158 | |
Simon Glass | 0ae023d | 2017-08-04 16:34:38 -0600 | [diff] [blame] | 159 | #if defined(CONFIG_CMD_MEMORY) || \ |
| 160 | defined(CONFIG_CMD_I2C) || \ |
| 161 | defined(CONFIG_CMD_ITEST) || \ |
Bartosz Golaszewski | 7dd2386 | 2019-05-20 10:22:14 +0200 | [diff] [blame] | 162 | defined(CONFIG_CMD_PCI) || \ |
| 163 | defined(CONFIG_CMD_SETEXPR) |
Jean-Christophe PLAGNIOL-VILLARD | 82290f2 | 2008-09-10 22:48:05 +0200 | [diff] [blame] | 164 | #define CMD_DATA_SIZE |
Simon Glass | 3d3c397 | 2020-11-01 14:15:36 -0700 | [diff] [blame] | 165 | #define CMD_DATA_SIZE_ERR (-1) |
| 166 | #define CMD_DATA_SIZE_STR (-2) |
| 167 | |
| 168 | /** |
| 169 | * cmd_get_data_size() - Get the data-size specifier from a command |
| 170 | * |
| 171 | * This reads a '.x' size specifier appended to a command. For example 'md.b' |
| 172 | * is the 'md' command with a '.b' specifier, meaning that the command should |
| 173 | * use bytes. |
| 174 | * |
| 175 | * Valid characters are: |
| 176 | * |
| 177 | * b - byte |
| 178 | * w - word (16 bits) |
| 179 | * l - long (32 bits) |
| 180 | * q - quad (64 bits) |
| 181 | * s - string |
| 182 | * |
| 183 | * @arg: Pointers to the command to check. If a valid specifier is present it |
| 184 | * will be the last character of the string, following a '.' |
| 185 | * @default_size: Default size to return if there is no specifier |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 186 | * Return: data size in bytes (1, 2, 4, 8) or CMD_DATA_SIZE_ERR for an invalid |
Simon Glass | 3d3c397 | 2020-11-01 14:15:36 -0700 | [diff] [blame] | 187 | * character, or CMD_DATA_SIZE_STR for a string |
| 188 | */ |
Rasmus Villemoes | 209329d | 2024-01-03 11:47:05 +0100 | [diff] [blame] | 189 | int cmd_get_data_size(const char *arg, int default_size); |
Jean-Christophe PLAGNIOL-VILLARD | 82290f2 | 2008-09-10 22:48:05 +0200 | [diff] [blame] | 190 | #endif |
| 191 | |
Mike Frysinger | 2e50fa3 | 2010-10-20 03:36:26 -0400 | [diff] [blame] | 192 | #ifdef CONFIG_CMD_BOOTD |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 193 | int do_bootd(struct cmd_tbl *cmdtp, int flag, int argc, |
| 194 | char *const argv[]); |
Mike Frysinger | 2e50fa3 | 2010-10-20 03:36:26 -0400 | [diff] [blame] | 195 | #endif |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 196 | int do_bootm(struct cmd_tbl *cmdtp, int flag, int argc, |
| 197 | char *const argv[]); |
John Keeping | 9b60a17 | 2022-07-28 11:19:15 +0100 | [diff] [blame] | 198 | #ifdef CONFIG_CMD_BOOTM |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 199 | int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd); |
Mike Frysinger | 194c2e8 | 2011-06-05 13:43:02 +0000 | [diff] [blame] | 200 | #else |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 201 | static inline int bootm_maybe_autostart(struct cmd_tbl *cmdtp, const char *cmd) |
Mike Frysinger | 194c2e8 | 2011-06-05 13:43:02 +0000 | [diff] [blame] | 202 | { |
| 203 | return 0; |
| 204 | } |
| 205 | #endif |
Rob Herring | a20cbf9 | 2012-09-21 04:02:30 +0000 | [diff] [blame] | 206 | |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 207 | int do_bootz(struct cmd_tbl *cmdtp, int flag, int argc, |
| 208 | char *const argv[]); |
Rob Herring | c88e1bf | 2012-12-02 21:00:23 -0600 | [diff] [blame] | 209 | |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 210 | int do_booti(struct cmd_tbl *cmdtp, int flag, int argc, |
| 211 | char *const argv[]); |
Stephen Warren | 9c3c931 | 2015-07-21 17:49:41 -0600 | [diff] [blame] | 212 | |
Kory Maincent | b2187d0 | 2021-02-02 16:42:29 +0100 | [diff] [blame] | 213 | int do_zboot_parent(struct cmd_tbl *cmdtp, int flag, int argc, |
| 214 | char *const argv[], int *repeatable); |
| 215 | |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 216 | int common_diskboot(struct cmd_tbl *cmdtp, const char *intf, int argc, |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 217 | char *const argv[]); |
Mike Frysinger | 2a5ba45 | 2010-10-20 03:35:39 -0400 | [diff] [blame] | 218 | |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 219 | int do_reset(struct cmd_tbl *cmdtp, int flag, int argc, |
| 220 | char *const argv[]); |
| 221 | int do_poweroff(struct cmd_tbl *cmdtp, int flag, int argc, |
| 222 | char *const argv[]); |
| 223 | |
| 224 | unsigned long do_go_exec(ulong (*entry)(int, char * const []), int argc, |
| 225 | char *const argv[]); |
AKASHI Takahiro | 117e68a | 2019-02-25 15:54:36 +0900 | [diff] [blame] | 226 | |
| 227 | #if defined(CONFIG_CMD_NVEDIT_EFI) |
Kory Maincent | b9c7349 | 2021-02-02 16:42:27 +0100 | [diff] [blame] | 228 | int do_env_print_efi(struct cmd_tbl *cmdtp, int flag, int argc, |
| 229 | char *const argv[]); |
| 230 | int do_env_set_efi(struct cmd_tbl *cmdtp, int flag, int argc, |
| 231 | char *const argv[]); |
AKASHI Takahiro | 117e68a | 2019-02-25 15:54:36 +0900 | [diff] [blame] | 232 | #endif |
| 233 | |
Simon Glass | 00e4419 | 2020-11-01 14:15:40 -0700 | [diff] [blame] | 234 | /** |
| 235 | * setexpr_regex_sub() - Replace a regex pattern with a string |
| 236 | * |
| 237 | * @data: Buffer containing the string to update |
| 238 | * @data_size: Size of buffer (must be large enough for the new string) |
| 239 | * @nbuf: Back-reference buffer |
| 240 | * @nbuf_size: Size of back-reference buffer (must be larger enough for @s plus |
| 241 | * all back-reference expansions) |
| 242 | * @r: Regular expression to find |
| 243 | * @s: String to replace with |
| 244 | * @global: true to replace all matches in @data, false to replace just the |
| 245 | * first |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 246 | * Return: 0 if OK, 1 on error |
Simon Glass | 00e4419 | 2020-11-01 14:15:40 -0700 | [diff] [blame] | 247 | */ |
| 248 | int setexpr_regex_sub(char *data, uint data_size, char *nbuf, uint nbuf_size, |
| 249 | const char *r, const char *s, bool global); |
| 250 | |
Simon Glass | 1727b94 | 2012-02-14 19:59:25 +0000 | [diff] [blame] | 251 | /* |
| 252 | * Error codes that commands return to cmd_process(). We use the standard 0 |
| 253 | * and 1 for success and failure, but add one more case - failure with a |
| 254 | * request to call cmd_usage(). But the cmd_process() function handles |
| 255 | * CMD_RET_USAGE itself and after calling cmd_usage() it will return 1. |
| 256 | * This is just a convenience for commands to avoid them having to call |
| 257 | * cmd_usage() all over the place. |
| 258 | */ |
| 259 | enum command_ret_t { |
| 260 | CMD_RET_SUCCESS, /* 0 = Success */ |
| 261 | CMD_RET_FAILURE, /* 1 = Failure */ |
| 262 | CMD_RET_USAGE = -1, /* Failure, please report 'usage' error */ |
| 263 | }; |
| 264 | |
| 265 | /** |
| 266 | * Process a command with arguments. We look up the command and execute it |
| 267 | * if valid. Otherwise we print a usage message. |
| 268 | * |
| 269 | * @param flag Some flags normally 0 (see CMD_FLAG_.. above) |
| 270 | * @param argc Number of arguments (arg 0 must be the command text) |
| 271 | * @param argv Arguments |
| 272 | * @param repeatable This function sets this to 0 if the command is not |
| 273 | * repeatable. If the command is repeatable, the value |
| 274 | * is left unchanged. |
Richard Genoud | 94ff067 | 2012-12-03 06:28:28 +0000 | [diff] [blame] | 275 | * @param ticks If ticks is not null, this function set it to the |
| 276 | * number of ticks the command took to complete. |
Heinrich Schuchardt | 91f8ff6 | 2022-08-01 15:17:49 +0200 | [diff] [blame] | 277 | * Return: 0 if command succeeded, else non-zero (CMD_RET_...) |
Simon Glass | 1727b94 | 2012-02-14 19:59:25 +0000 | [diff] [blame] | 278 | */ |
Heinrich Schuchardt | 91f8ff6 | 2022-08-01 15:17:49 +0200 | [diff] [blame] | 279 | enum command_ret_t cmd_process(int flag, int argc, char *const argv[], |
| 280 | int *repeatable, unsigned long *ticks); |
Simon Glass | 2176d60 | 2012-02-14 19:59:23 +0000 | [diff] [blame] | 281 | |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 282 | void fixup_cmdtable(struct cmd_tbl *cmdtp, int size); |
Simon Glass | 4ef90b7 | 2016-03-19 02:18:38 -0600 | [diff] [blame] | 283 | |
| 284 | /** |
| 285 | * board_run_command() - Fallback function to execute a command |
| 286 | * |
| 287 | * When no command line features are enabled in U-Boot, this function is |
| 288 | * called to execute a command. Typically the function can look at the |
| 289 | * command and perform a few very specific tasks, such as booting the |
| 290 | * system in a particular way. |
| 291 | * |
| 292 | * This function is only used when CONFIG_CMDLINE is not enabled. |
| 293 | * |
| 294 | * In normal situations this function should not return, since U-Boot will |
| 295 | * simply hang. |
| 296 | * |
| 297 | * @cmdline: Command line string to execute |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 298 | * Return: 0 if OK, 1 for error |
Simon Glass | 4ef90b7 | 2016-03-19 02:18:38 -0600 | [diff] [blame] | 299 | */ |
| 300 | int board_run_command(const char *cmdline); |
Simon Glass | adaaa48 | 2019-11-14 12:57:43 -0700 | [diff] [blame] | 301 | |
| 302 | int run_command(const char *cmd, int flag); |
| 303 | int run_command_repeatable(const char *cmd, int flag); |
| 304 | |
| 305 | /** |
Simon Glass | f3c6a1d | 2022-07-13 06:06:59 -0600 | [diff] [blame] | 306 | * run_commandf() - Run a command created by a format string |
| 307 | * |
Simon Glass | f3c6a1d | 2022-07-13 06:06:59 -0600 | [diff] [blame] | 308 | * @fmt: printf() format string |
| 309 | * @...: Arguments to use (flag is always 0) |
Evgeny Bachinin | d95e1d1 | 2023-03-20 11:23:11 +0300 | [diff] [blame] | 310 | * |
| 311 | * The command cannot be larger than (CONFIG_SYS_CBSIZE - 1) characters. |
| 312 | * |
| 313 | * Return: |
| 314 | * Returns 0 on success, -EIO if internal output error occurred, -ENOSPC in |
| 315 | * case of 'fmt' string truncation, or != 0 on error, specific for |
| 316 | * run_command(). |
Simon Glass | f3c6a1d | 2022-07-13 06:06:59 -0600 | [diff] [blame] | 317 | */ |
Evgeny Bachinin | d95e1d1 | 2023-03-20 11:23:11 +0300 | [diff] [blame] | 318 | int run_commandf(const char *fmt, ...) __printf(1, 2); |
Simon Glass | f3c6a1d | 2022-07-13 06:06:59 -0600 | [diff] [blame] | 319 | |
| 320 | /** |
Simon Glass | adaaa48 | 2019-11-14 12:57:43 -0700 | [diff] [blame] | 321 | * Run a list of commands separated by ; or even \0 |
| 322 | * |
| 323 | * Note that if 'len' is not -1, then the command does not need to be nul |
| 324 | * terminated, Memory will be allocated for the command in that case. |
| 325 | * |
| 326 | * @param cmd List of commands to run, each separated bu semicolon |
| 327 | * @param len Length of commands excluding terminator if known (-1 if not) |
| 328 | * @param flag Execution flags (CMD_FLAG_...) |
Heinrich Schuchardt | 47b4c02 | 2022-01-19 18:05:50 +0100 | [diff] [blame] | 329 | * Return: 0 on success, or != 0 on error. |
Simon Glass | adaaa48 | 2019-11-14 12:57:43 -0700 | [diff] [blame] | 330 | */ |
| 331 | int run_command_list(const char *cmd, int len, int flag); |
Simon Glass | daee3ba | 2023-01-06 08:52:28 -0600 | [diff] [blame] | 332 | |
| 333 | /** |
| 334 | * cmd_source_script() - Execute a script |
| 335 | * |
| 336 | * Executes a U-Boot script at a particular address in memory. The script should |
| 337 | * have a header (FIT or legacy) with the script type (IH_TYPE_SCRIPT). |
| 338 | * |
| 339 | * @addr: Address of script |
| 340 | * @fit_uname: FIT subimage name |
| 341 | * Return: result code (enum command_ret_t) |
| 342 | */ |
| 343 | int cmd_source_script(ulong addr, const char *fit_uname, const char *confname); |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 344 | #endif /* __ASSEMBLY__ */ |
| 345 | |
| 346 | /* |
| 347 | * Command Flags: |
| 348 | */ |
| 349 | #define CMD_FLAG_REPEAT 0x0001 /* repeat last command */ |
| 350 | #define CMD_FLAG_BOOTD 0x0002 /* command is from bootd */ |
Simon Glass | 94cb9c2 | 2014-10-07 13:59:43 -0600 | [diff] [blame] | 351 | #define CMD_FLAG_ENV 0x0004 /* command is from the environment */ |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 352 | |
Mike Frysinger | b5bc05e | 2010-10-20 03:52:39 -0400 | [diff] [blame] | 353 | #ifdef CONFIG_AUTO_COMPLETE |
| 354 | # define _CMD_COMPLETE(x) x, |
| 355 | #else |
| 356 | # define _CMD_COMPLETE(x) |
| 357 | #endif |
| 358 | #ifdef CONFIG_SYS_LONGHELP |
| 359 | # define _CMD_HELP(x) x, |
| 360 | #else |
| 361 | # define _CMD_HELP(x) |
| 362 | #endif |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 363 | |
Tom Rini | 3d68167 | 2023-10-07 15:13:07 -0400 | [diff] [blame] | 364 | #define U_BOOT_LONGHELP(_cmdname, text) \ |
| 365 | static __maybe_unused const char _cmdname##_help_text[] = text |
| 366 | |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 367 | #define U_BOOT_SUBCMDS_DO_CMD(_cmdname) \ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 368 | static int do_##_cmdname(struct cmd_tbl *cmdtp, int flag, \ |
| 369 | int argc, char *const argv[], \ |
| 370 | int *repeatable) \ |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 371 | { \ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 372 | struct cmd_tbl *subcmd; \ |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 373 | \ |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 374 | /* We need at least the cmd and subcmd names. */ \ |
| 375 | if (argc < 2 || argc > CONFIG_SYS_MAXARGS) \ |
| 376 | return CMD_RET_USAGE; \ |
| 377 | \ |
| 378 | subcmd = find_cmd_tbl(argv[1], _cmdname##_subcmds, \ |
| 379 | ARRAY_SIZE(_cmdname##_subcmds)); \ |
| 380 | if (!subcmd || argc - 1 > subcmd->maxargs) \ |
| 381 | return CMD_RET_USAGE; \ |
| 382 | \ |
| 383 | if (flag == CMD_FLAG_REPEAT && \ |
| 384 | !cmd_is_repeatable(subcmd)) \ |
| 385 | return CMD_RET_SUCCESS; \ |
| 386 | \ |
| 387 | return subcmd->cmd_rep(subcmd, flag, argc - 1, \ |
| 388 | argv + 1, repeatable); \ |
| 389 | } |
| 390 | |
| 391 | #ifdef CONFIG_AUTO_COMPLETE |
| 392 | #define U_BOOT_SUBCMDS_COMPLETE(_cmdname) \ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 393 | static int complete_##_cmdname(int argc, char *const argv[], \ |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 394 | char last_char, int maxv, \ |
| 395 | char *cmdv[]) \ |
| 396 | { \ |
| 397 | return complete_subcmdv(_cmdname##_subcmds, \ |
| 398 | ARRAY_SIZE(_cmdname##_subcmds), \ |
| 399 | argc - 1, argv + 1, last_char, \ |
| 400 | maxv, cmdv); \ |
| 401 | } |
| 402 | #else |
| 403 | #define U_BOOT_SUBCMDS_COMPLETE(_cmdname) |
| 404 | #endif |
| 405 | |
| 406 | #define U_BOOT_SUBCMDS(_cmdname, ...) \ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 407 | static struct cmd_tbl _cmdname##_subcmds[] = { __VA_ARGS__ }; \ |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 408 | U_BOOT_SUBCMDS_DO_CMD(_cmdname) \ |
| 409 | U_BOOT_SUBCMDS_COMPLETE(_cmdname) |
| 410 | |
Simon Glass | 2109738 | 2023-02-22 09:34:25 -0700 | [diff] [blame] | 411 | #if CONFIG_IS_ENABLED(CMDLINE) |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 412 | #define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \ |
| 413 | _usage, _help, _comp) \ |
| 414 | { #_name, _maxargs, _cmd_rep, cmd_discard_repeatable, \ |
| 415 | _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) } |
| 416 | |
Marek Vasut | 69c5e34 | 2012-10-12 10:27:04 +0000 | [diff] [blame] | 417 | #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ |
| 418 | _usage, _help, _comp) \ |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 419 | { #_name, _maxargs, \ |
| 420 | _rep ? cmd_always_repeatable : cmd_never_repeatable, \ |
| 421 | _cmd, _usage, _CMD_HELP(_help) _CMD_COMPLETE(_comp) } |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 422 | |
Marek Vasut | 69c5e34 | 2012-10-12 10:27:04 +0000 | [diff] [blame] | 423 | #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, _comp) \ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 424 | ll_entry_declare(struct cmd_tbl, _name, cmd) = \ |
Marek Vasut | 69c5e34 | 2012-10-12 10:27:04 +0000 | [diff] [blame] | 425 | U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ |
Simon Glass | 761d602 | 2023-11-18 14:04:52 -0700 | [diff] [blame] | 426 | _usage, _help, _comp) |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 427 | |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 428 | #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \ |
| 429 | _help, _comp) \ |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 430 | ll_entry_declare(struct cmd_tbl, _name, cmd) = \ |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 431 | U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \ |
| 432 | _usage, _help, _comp) |
| 433 | |
Simon Glass | 9a48bc3 | 2016-03-13 19:07:33 -0600 | [diff] [blame] | 434 | #else |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 435 | #define U_BOOT_SUBCMD_START(name) static struct cmd_tbl name[] = {}; |
Simon Glass | 9a48bc3 | 2016-03-13 19:07:33 -0600 | [diff] [blame] | 436 | #define U_BOOT_SUBCMD_END |
| 437 | |
| 438 | #define _CMD_REMOVE(_name, _cmd) \ |
| 439 | int __remove_ ## _name(void) \ |
| 440 | { \ |
| 441 | if (0) \ |
| 442 | _cmd(NULL, 0, 0, NULL); \ |
| 443 | return 0; \ |
| 444 | } |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 445 | |
Simon Glass | a4a55e5 | 2021-03-15 18:11:21 +1300 | [diff] [blame] | 446 | #define _CMD_REMOVE_REP(_name, _cmd) \ |
| 447 | int __remove_ ## _name(void) \ |
| 448 | { \ |
| 449 | if (0) \ |
| 450 | _cmd(NULL, 0, 0, NULL, NULL); \ |
| 451 | return 0; \ |
| 452 | } |
| 453 | |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 454 | #define U_BOOT_CMDREP_MKENT_COMPLETE(_name, _maxargs, _cmd_rep, \ |
| 455 | _usage, _help, _comp) \ |
| 456 | { #_name, _maxargs, 0 ? _cmd_rep : NULL, NULL, _usage, \ |
| 457 | _CMD_HELP(_help) _CMD_COMPLETE(_comp) } |
| 458 | |
Simon Glass | 9a48bc3 | 2016-03-13 19:07:33 -0600 | [diff] [blame] | 459 | #define U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, \ |
| 460 | _help, _comp) \ |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 461 | { #_name, _maxargs, NULL, 0 ? _cmd : NULL, _usage, \ |
Simon Glass | 9a48bc3 | 2016-03-13 19:07:33 -0600 | [diff] [blame] | 462 | _CMD_HELP(_help) _CMD_COMPLETE(_comp) } |
| 463 | |
| 464 | #define U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, \ |
| 465 | _comp) \ |
| 466 | _CMD_REMOVE(sub_ ## _name, _cmd) |
| 467 | |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 468 | #define U_BOOT_CMDREP_COMPLETE(_name, _maxargs, _cmd_rep, _usage, \ |
| 469 | _help, _comp) \ |
Simon Glass | a4a55e5 | 2021-03-15 18:11:21 +1300 | [diff] [blame] | 470 | _CMD_REMOVE_REP(sub_ ## _name, _cmd_rep) |
Boris Brezillon | c71dfd1 | 2018-12-03 22:54:20 +0100 | [diff] [blame] | 471 | |
Simon Glass | 9a48bc3 | 2016-03-13 19:07:33 -0600 | [diff] [blame] | 472 | #endif /* CONFIG_CMDLINE */ |
| 473 | |
Marek Vasut | 69c5e34 | 2012-10-12 10:27:04 +0000 | [diff] [blame] | 474 | #define U_BOOT_CMD(_name, _maxargs, _rep, _cmd, _usage, _help) \ |
| 475 | U_BOOT_CMD_COMPLETE(_name, _maxargs, _rep, _cmd, _usage, _help, NULL) |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 476 | |
Simon Glass | 9a48bc3 | 2016-03-13 19:07:33 -0600 | [diff] [blame] | 477 | #define U_BOOT_CMD_MKENT(_name, _maxargs, _rep, _cmd, _usage, _help) \ |
| 478 | U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _cmd, \ |
| 479 | _usage, _help, NULL) |
| 480 | |
Boris Brezillon | 20052d4 | 2018-12-03 22:54:21 +0100 | [diff] [blame] | 481 | #define U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \ |
| 482 | _comp) \ |
| 483 | U_BOOT_CMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \ |
| 484 | "", "", _comp) |
| 485 | |
| 486 | #define U_BOOT_SUBCMD_MKENT(_name, _maxargs, _rep, _do_cmd) \ |
| 487 | U_BOOT_SUBCMD_MKENT_COMPLETE(_name, _maxargs, _rep, _do_cmd, \ |
| 488 | NULL) |
| 489 | |
| 490 | #define U_BOOT_CMD_WITH_SUBCMDS(_name, _usage, _help, ...) \ |
| 491 | U_BOOT_SUBCMDS(_name, __VA_ARGS__) \ |
| 492 | U_BOOT_CMDREP_COMPLETE(_name, CONFIG_SYS_MAXARGS, do_##_name, \ |
| 493 | _usage, _help, complete_##_name) |
| 494 | |
wdenk | 78f6622 | 2002-08-27 10:27:51 +0000 | [diff] [blame] | 495 | #endif /* __COMMAND_H */ |