Blame view

common/command.c 13 KB
83d290c56   Tom Rini   SPDX: Convert all...
1
  // SPDX-License-Identifier: GPL-2.0+
5dfa25f25   wdenk   Initial revision
2
  /*
2dce551e1   Detlev Zundel   command.c: Expose...
3
   * (C) Copyright 2000-2009
5dfa25f25   wdenk   Initial revision
4
   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
5dfa25f25   wdenk   Initial revision
5
6
7
8
9
10
11
12
   */
  
  /*
   *  Command Processor Table
   */
  
  #include <common.h>
  #include <command.h>
24b852a7a   Simon Glass   Move console defi...
13
  #include <console.h>
4d91a6eca   Jason Hobbs   Replace space and...
14
  #include <linux/ctype.h>
5dfa25f25   wdenk   Initial revision
15

5dfa25f25   wdenk   Initial revision
16
17
18
19
  /*
   * Use puts() instead of printf() to avoid printf buffer overflow
   * for long help messages
   */
2dce551e1   Detlev Zundel   command.c: Expose...
20

616e2162a   Masahiro Yamada   common: command: ...
21
22
  int _do_help(cmd_tbl_t *cmd_start, int cmd_items, cmd_tbl_t *cmdtp, int flag,
  	     int argc, char * const argv[])
5dfa25f25   wdenk   Initial revision
23
24
25
  {
  	int i;
  	int rcode = 0;
616e2162a   Masahiro Yamada   common: command: ...
26
  	if (argc == 1) {	/* show list of commands */
22b6fcb50   Anatolij Gustschin   common/command.c:...
27
  		cmd_tbl_t *cmd_array[cmd_items];
9d2b18a0f   wdenk   Rewrite command l...
28
29
30
  		int i, j, swaps;
  
  		/* Make array of commands from .uboot_cmd section */
2dce551e1   Detlev Zundel   command.c: Expose...
31
  		cmdtp = cmd_start;
9d2b18a0f   wdenk   Rewrite command l...
32
33
  		for (i = 0; i < cmd_items; i++) {
  			cmd_array[i] = cmdtp++;
8bde7f776   wdenk   * Code cleanup:
34
  		}
8bde7f776   wdenk   * Code cleanup:
35

9d2b18a0f   wdenk   Rewrite command l...
36
37
38
39
  		/* Sort command list (trivial bubble sort) */
  		for (i = cmd_items - 1; i > 0; --i) {
  			swaps = 0;
  			for (j = 0; j < i; ++j) {
616e2162a   Masahiro Yamada   common: command: ...
40
41
  				if (strcmp(cmd_array[j]->name,
  					   cmd_array[j + 1]->name) > 0) {
9d2b18a0f   wdenk   Rewrite command l...
42
43
44
45
46
47
  					cmd_tbl_t *tmp;
  					tmp = cmd_array[j];
  					cmd_array[j] = cmd_array[j + 1];
  					cmd_array[j + 1] = tmp;
  					++swaps;
  				}
8bde7f776   wdenk   * Code cleanup:
48
  			}
9d2b18a0f   wdenk   Rewrite command l...
49
50
  			if (!swaps)
  				break;
8bde7f776   wdenk   * Code cleanup:
51
  		}
5dfa25f25   wdenk   Initial revision
52

8bde7f776   wdenk   * Code cleanup:
53
  		/* print short help (usage) */
9d2b18a0f   wdenk   Rewrite command l...
54
55
  		for (i = 0; i < cmd_items; i++) {
  			const char *usage = cmd_array[i]->usage;
5dfa25f25   wdenk   Initial revision
56
  			/* allow user abort */
616e2162a   Masahiro Yamada   common: command: ...
57
  			if (ctrlc())
5dfa25f25   wdenk   Initial revision
58
  				return 1;
9d2b18a0f   wdenk   Rewrite command l...
59
  			if (usage == NULL)
5dfa25f25   wdenk   Initial revision
60
  				continue;
2fb2604d5   Peter Tyser   Command usage cle...
61
62
63
  			printf("%-*s- %s
  ", CONFIG_SYS_HELP_CMD_WIDTH,
  			       cmd_array[i]->name, usage);
5dfa25f25   wdenk   Initial revision
64
  		}
5dfa25f25   wdenk   Initial revision
65
66
  		return 0;
  	}
5dfa25f25   wdenk   Initial revision
67
68
69
  	/*
  	 * command help (long version)
  	 */
8bde7f776   wdenk   * Code cleanup:
70
  	for (i = 1; i < argc; ++i) {
616e2162a   Masahiro Yamada   common: command: ...
71
72
  		cmdtp = find_cmd_tbl(argv[i], cmd_start, cmd_items);
  		if (cmdtp != NULL) {
94796d854   Wolfgang Denk   Make "usage" mess...
73
  			rcode |= cmd_usage(cmdtp);
71f951180   wdenk   * Fix CONFIG_NET_...
74
  		} else {
616e2162a   Masahiro Yamada   common: command: ...
75
76
77
78
  			printf("Unknown command '%s' - try 'help' without arguments for list of all known commands
  
  ",
  			       argv[i]);
5dfa25f25   wdenk   Initial revision
79
80
81
82
83
  			rcode = 1;
  		}
  	}
  	return rcode;
  }
616e2162a   Masahiro Yamada   common: command: ...
84
85
  /* find command table entry for a command */
  cmd_tbl_t *find_cmd_tbl(const char *cmd, cmd_tbl_t *table, int table_len)
5dfa25f25   wdenk   Initial revision
86
  {
f8bb69643   Simon Glass   Drop command-proc...
87
  #ifdef CONFIG_CMDLINE
5dfa25f25   wdenk   Initial revision
88
  	cmd_tbl_t *cmdtp;
616e2162a   Masahiro Yamada   common: command: ...
89
  	cmd_tbl_t *cmdtp_temp = table;	/* Init value */
9d2b18a0f   wdenk   Rewrite command l...
90
91
92
  	const char *p;
  	int len;
  	int n_found = 0;
7013c0612   Thomas Weber   Common/command: G...
93
94
  	if (!cmd)
  		return NULL;
9d2b18a0f   wdenk   Rewrite command l...
95
96
97
98
99
  	/*
  	 * Some commands allow length modifiers (like "cp.b");
  	 * compare command name only until first dot.
  	 */
  	len = ((p = strchr(cmd, '.')) == NULL) ? strlen (cmd) : (p - cmd);
616e2162a   Masahiro Yamada   common: command: ...
100
101
102
  	for (cmdtp = table; cmdtp != table + table_len; cmdtp++) {
  		if (strncmp(cmd, cmdtp->name, len) == 0) {
  			if (len == strlen(cmdtp->name))
9d2b18a0f   wdenk   Rewrite command l...
103
104
105
106
107
  				return cmdtp;	/* full match */
  
  			cmdtp_temp = cmdtp;	/* abbreviated command ? */
  			n_found++;
  		}
5dfa25f25   wdenk   Initial revision
108
  	}
9d2b18a0f   wdenk   Rewrite command l...
109
  	if (n_found == 1) {			/* exactly one match */
8bde7f776   wdenk   * Code cleanup:
110
  		return cmdtp_temp;
9d2b18a0f   wdenk   Rewrite command l...
111
  	}
f8bb69643   Simon Glass   Drop command-proc...
112
  #endif /* CONFIG_CMDLINE */
5dfa25f25   wdenk   Initial revision
113

9d2b18a0f   wdenk   Rewrite command l...
114
  	return NULL;	/* not found or ambiguous command */
8bde7f776   wdenk   * Code cleanup:
115
  }
04a85b3b3   wdenk   * Patches by Pant...
116

616e2162a   Masahiro Yamada   common: command: ...
117
  cmd_tbl_t *find_cmd(const char *cmd)
b799cb4c0   Kumar Gala   Expose command ta...
118
  {
6c7c946ca   Marek Vasut   common: Convert t...
119
120
121
  	cmd_tbl_t *start = ll_entry_start(cmd_tbl_t, cmd);
  	const int len = ll_entry_count(cmd_tbl_t, cmd);
  	return find_cmd_tbl(cmd, start, len);
b799cb4c0   Kumar Gala   Expose command ta...
122
  }
e84ffddbc   Mike Frysinger   cmd_usage: constify
123
  int cmd_usage(const cmd_tbl_t *cmdtp)
62c3ae7c6   Peter Tyser   Standardize comma...
124
  {
94796d854   Wolfgang Denk   Make "usage" mess...
125
126
127
128
129
130
131
132
133
134
135
136
137
  	printf("%s - %s
  
  ", cmdtp->name, cmdtp->usage);
  
  #ifdef	CONFIG_SYS_LONGHELP
  	printf("Usage:
  %s ", cmdtp->name);
  
  	if (!cmdtp->help) {
  		puts ("- No additional help available.
  ");
  		return 1;
  	}
616e2162a   Masahiro Yamada   common: command: ...
138
139
140
  	puts(cmdtp->help);
  	putc('
  ');
94796d854   Wolfgang Denk   Make "usage" mess...
141
  #endif	/* CONFIG_SYS_LONGHELP */
47e26b1bf   Wolfgang Denk   cmd_usage(): simp...
142
  	return 1;
62c3ae7c6   Peter Tyser   Standardize comma...
143
  }
04a85b3b3   wdenk   * Patches by Pant...
144
  #ifdef CONFIG_AUTO_COMPLETE
03dcf17db   Boris Brezillon   common: command: ...
145
  static char env_complete_buf[512];
04a85b3b3   wdenk   * Patches by Pant...
146

54841ab50   Wolfgang Denk   Make sure that ar...
147
  int var_complete(int argc, char * const argv[], char last_char, int maxv, char *cmdv[])
04a85b3b3   wdenk   * Patches by Pant...
148
  {
04a85b3b3   wdenk   * Patches by Pant...
149
  	int space;
4d91a6eca   Jason Hobbs   Replace space and...
150
  	space = last_char == '\0' || isblank(last_char);
04a85b3b3   wdenk   * Patches by Pant...
151
152
  
  	if (space && argc == 1)
03dcf17db   Boris Brezillon   common: command: ...
153
154
  		return env_complete("", maxv, cmdv, sizeof(env_complete_buf),
  				    env_complete_buf, false);
04a85b3b3   wdenk   * Patches by Pant...
155
156
  
  	if (!space && argc == 2)
03dcf17db   Boris Brezillon   common: command: ...
157
158
159
  		return env_complete(argv[1], maxv, cmdv,
  				    sizeof(env_complete_buf),
  				    env_complete_buf, false);
560d424b6   Mike Frysinger   env: re-add suppo...
160

04a85b3b3   wdenk   * Patches by Pant...
161
162
  	return 0;
  }
03dcf17db   Boris Brezillon   common: command: ...
163
164
165
166
167
168
169
170
171
172
173
  static int dollar_complete(int argc, char * const argv[], char last_char,
  			   int maxv, char *cmdv[])
  {
  	/* Make sure the last argument starts with a $. */
  	if (argc < 1 || argv[argc - 1][0] != '$' ||
  	    last_char == '\0' || isblank(last_char))
  		return 0;
  
  	return env_complete(argv[argc - 1], maxv, cmdv, sizeof(env_complete_buf),
  			    env_complete_buf, true);
  }
04a85b3b3   wdenk   * Patches by Pant...
174
  /*************************************************************************************/
6fb61445b   Boris Brezillon   common: command: ...
175
176
177
  int complete_subcmdv(cmd_tbl_t *cmdtp, int count, int argc,
  		     char * const argv[], char last_char,
  		     int maxv, char *cmdv[])
04a85b3b3   wdenk   * Patches by Pant...
178
  {
f8bb69643   Simon Glass   Drop command-proc...
179
  #ifdef CONFIG_CMDLINE
6c7c946ca   Marek Vasut   common: Convert t...
180
  	const cmd_tbl_t *cmdend = cmdtp + count;
04a85b3b3   wdenk   * Patches by Pant...
181
182
183
184
185
186
187
188
189
190
191
192
193
  	const char *p;
  	int len, clen;
  	int n_found = 0;
  	const char *cmd;
  
  	/* sanity? */
  	if (maxv < 2)
  		return -2;
  
  	cmdv[0] = NULL;
  
  	if (argc == 0) {
  		/* output full list of commands */
6c7c946ca   Marek Vasut   common: Convert t...
194
  		for (; cmdtp != cmdend; cmdtp++) {
04a85b3b3   wdenk   * Patches by Pant...
195
  			if (n_found >= maxv - 2) {
9b438946c   Andrew Gabbasov   command.c: Fix au...
196
  				cmdv[n_found++] = "...";
04a85b3b3   wdenk   * Patches by Pant...
197
198
  				break;
  			}
9b438946c   Andrew Gabbasov   command.c: Fix au...
199
  			cmdv[n_found++] = cmdtp->name;
04a85b3b3   wdenk   * Patches by Pant...
200
201
202
203
204
205
  		}
  		cmdv[n_found] = NULL;
  		return n_found;
  	}
  
  	/* more than one arg or one but the start of the next */
616e2162a   Masahiro Yamada   common: command: ...
206
  	if (argc > 1 || last_char == '\0' || isblank(last_char)) {
6fb61445b   Boris Brezillon   common: command: ...
207
  		cmdtp = find_cmd_tbl(argv[0], cmdtp, count);
04a85b3b3   wdenk   * Patches by Pant...
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
  		if (cmdtp == NULL || cmdtp->complete == NULL) {
  			cmdv[0] = NULL;
  			return 0;
  		}
  		return (*cmdtp->complete)(argc, argv, last_char, maxv, cmdv);
  	}
  
  	cmd = argv[0];
  	/*
  	 * Some commands allow length modifiers (like "cp.b");
  	 * compare command name only until first dot.
  	 */
  	p = strchr(cmd, '.');
  	if (p == NULL)
  		len = strlen(cmd);
  	else
  		len = p - cmd;
  
  	/* return the partial matches */
6c7c946ca   Marek Vasut   common: Convert t...
227
  	for (; cmdtp != cmdend; cmdtp++) {
04a85b3b3   wdenk   * Patches by Pant...
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
  
  		clen = strlen(cmdtp->name);
  		if (clen < len)
  			continue;
  
  		if (memcmp(cmd, cmdtp->name, len) != 0)
  			continue;
  
  		/* too many! */
  		if (n_found >= maxv - 2) {
  			cmdv[n_found++] = "...";
  			break;
  		}
  
  		cmdv[n_found++] = cmdtp->name;
  	}
  
  	cmdv[n_found] = NULL;
  	return n_found;
f8bb69643   Simon Glass   Drop command-proc...
247
248
249
  #else
  	return 0;
  #endif
04a85b3b3   wdenk   * Patches by Pant...
250
  }
6fb61445b   Boris Brezillon   common: command: ...
251
252
253
254
255
256
257
258
259
260
261
  static int complete_cmdv(int argc, char * const argv[], char last_char,
  			 int maxv, char *cmdv[])
  {
  #ifdef CONFIG_CMDLINE
  	return complete_subcmdv(ll_entry_start(cmd_tbl_t, cmd),
  				ll_entry_count(cmd_tbl_t, cmd), argc, argv,
  				last_char, maxv, cmdv);
  #else
  	return 0;
  #endif
  }
04a85b3b3   wdenk   * Patches by Pant...
262
263
264
265
266
267
268
269
  static int make_argv(char *s, int argvsz, char *argv[])
  {
  	int argc = 0;
  
  	/* split into argv */
  	while (argc < argvsz - 1) {
  
  		/* skip any white space */
4d91a6eca   Jason Hobbs   Replace space and...
270
  		while (isblank(*s))
04a85b3b3   wdenk   * Patches by Pant...
271
  			++s;
53677ef18   Wolfgang Denk   Big white-space c...
272
  		if (*s == '\0')	/* end of s, no more args	*/
04a85b3b3   wdenk   * Patches by Pant...
273
274
275
276
277
  			break;
  
  		argv[argc++] = s;	/* begin of argument string	*/
  
  		/* find end of string */
4d91a6eca   Jason Hobbs   Replace space and...
278
  		while (*s && !isblank(*s))
04a85b3b3   wdenk   * Patches by Pant...
279
280
281
282
283
284
285
286
287
288
289
  			++s;
  
  		if (*s == '\0')		/* end of s, no more args	*/
  			break;
  
  		*s++ = '\0';		/* terminate current arg	 */
  	}
  	argv[argc] = NULL;
  
  	return argc;
  }
54841ab50   Wolfgang Denk   Make sure that ar...
290
  static void print_argv(const char *banner, const char *leader, const char *sep, int linemax, char * const argv[])
04a85b3b3   wdenk   * Patches by Pant...
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
  {
  	int ll = leader != NULL ? strlen(leader) : 0;
  	int sl = sep != NULL ? strlen(sep) : 0;
  	int len, i;
  
  	if (banner) {
  		puts("
  ");
  		puts(banner);
  	}
  
  	i = linemax;	/* force leader and newline */
  	while (*argv != NULL) {
  		len = strlen(*argv) + sl;
  		if (i + len >= linemax) {
  			puts("
  ");
  			if (leader)
  				puts(leader);
  			i = ll - sl;
  		} else if (sep)
  			puts(sep);
  		puts(*argv++);
  		i += len;
  	}
  	printf("
  ");
  }
54841ab50   Wolfgang Denk   Make sure that ar...
319
  static int find_common_prefix(char * const argv[])
04a85b3b3   wdenk   * Patches by Pant...
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
  {
  	int i, len;
  	char *anchor, *s, *t;
  
  	if (*argv == NULL)
  		return 0;
  
  	/* begin with max */
  	anchor = *argv++;
  	len = strlen(anchor);
  	while ((t = *argv++) != NULL) {
  		s = anchor;
  		for (i = 0; i < len; i++, t++, s++) {
  			if (*t != *s)
  				break;
  		}
  		len = s - anchor;
  	}
  	return len;
  }
2614a2084   Heinrich Schuchardt   common: command: ...
340
  static char tmp_buf[CONFIG_SYS_CBSIZE + 1];	/* copy of console I/O buffer */
04a85b3b3   wdenk   * Patches by Pant...
341
342
343
344
  
  int cmd_auto_complete(const char *const prompt, char *buf, int *np, int *colp)
  {
  	int n = *np, col = *colp;
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
345
  	char *argv[CONFIG_SYS_MAXARGS + 1];		/* NULL terminated	*/
04a85b3b3   wdenk   * Patches by Pant...
346
347
348
349
350
351
  	char *cmdv[20];
  	char *s, *t;
  	const char *sep;
  	int i, j, k, len, seplen, argc;
  	int cnt;
  	char last_char;
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
352
  	if (strcmp(prompt, CONFIG_SYS_PROMPT) != 0)
04a85b3b3   wdenk   * Patches by Pant...
353
354
355
356
357
358
359
360
361
362
363
364
365
  		return 0;	/* not in normal console */
  
  	cnt = strlen(buf);
  	if (cnt >= 1)
  		last_char = buf[cnt - 1];
  	else
  		last_char = '\0';
  
  	/* copy to secondary buffer which will be affected */
  	strcpy(tmp_buf, buf);
  
  	/* separate into argv */
  	argc = make_argv(tmp_buf, sizeof(argv)/sizeof(argv[0]), argv);
03dcf17db   Boris Brezillon   common: command: ...
366
367
368
369
370
371
372
373
  	/* first try a $ completion */
  	i = dollar_complete(argc, argv, last_char,
  			    sizeof(cmdv) / sizeof(cmdv[0]), cmdv);
  	if (!i) {
  		/* do the completion and return the possible completions */
  		i = complete_cmdv(argc, argv, last_char,
  				  sizeof(cmdv) / sizeof(cmdv[0]), cmdv);
  	}
04a85b3b3   wdenk   * Patches by Pant...
374
375
376
377
378
379
380
381
382
383
384
385
386
387
  
  	/* no match; bell and out */
  	if (i == 0) {
  		if (argc > 1)	/* allow tab for non command */
  			return 0;
  		putc('\a');
  		return 1;
  	}
  
  	s = NULL;
  	len = 0;
  	sep = NULL;
  	seplen = 0;
  	if (i == 1) { /* one match; perfect */
cbe07ebea   Boris Brezillon   common: command: ...
388
389
390
391
  		if (last_char != '\0' && !isblank(last_char))
  			k = strlen(argv[argc - 1]);
  		else
  			k = 0;
04a85b3b3   wdenk   * Patches by Pant...
392
393
394
395
  		s = cmdv[0] + k;
  		len = strlen(s);
  		sep = " ";
  		seplen = 1;
616e2162a   Masahiro Yamada   common: command: ...
396
  	} else if (i > 1 && (j = find_common_prefix(cmdv)) != 0) { /* more */
cbe07ebea   Boris Brezillon   common: command: ...
397
398
399
400
  		if (last_char != '\0' && !isblank(last_char))
  			k = strlen(argv[argc - 1]);
  		else
  			k = 0;
04a85b3b3   wdenk   * Patches by Pant...
401
402
403
404
405
406
407
408
409
410
  		j -= k;
  		if (j > 0) {
  			s = cmdv[0] + k;
  			len = j;
  		}
  	}
  
  	if (s != NULL) {
  		k = len + seplen;
  		/* make sure it fits */
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
411
  		if (n + k >= CONFIG_SYS_CBSIZE - 2) {
04a85b3b3   wdenk   * Patches by Pant...
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
  			putc('\a');
  			return 1;
  		}
  
  		t = buf + cnt;
  		for (i = 0; i < len; i++)
  			*t++ = *s++;
  		if (sep != NULL)
  			for (i = 0; i < seplen; i++)
  				*t++ = sep[i];
  		*t = '\0';
  		n += k;
  		col += k;
  		puts(t - k);
  		if (sep == NULL)
  			putc('\a');
  		*np = n;
  		*colp = col;
  	} else {
  		print_argv(NULL, "  ", " ", 78, cmdv);
  
  		puts(prompt);
  		puts(buf);
  	}
  	return 1;
  }
  
  #endif
8a40fb148   Jean-Christophe PLAGNIOL-VILLARD   move cmd_get_data...
440
441
442
443
444
445
446
447
  
  #ifdef CMD_DATA_SIZE
  int cmd_get_data_size(char* arg, int default_size)
  {
  	/* Check for a size specification .b, .w or .l.
  	 */
  	int len = strlen(arg);
  	if (len > 2 && arg[len-2] == '.') {
616e2162a   Masahiro Yamada   common: command: ...
448
  		switch (arg[len-1]) {
8a40fb148   Jean-Christophe PLAGNIOL-VILLARD   move cmd_get_data...
449
450
451
452
453
454
  		case 'b':
  			return 1;
  		case 'w':
  			return 2;
  		case 'l':
  			return 4;
4d1fd7f1a   York Sun   Add 64-bit data s...
455
456
457
458
  #ifdef CONFIG_SYS_SUPPORT_64BIT_DATA
  		case 'q':
  			return 8;
  #endif
8a40fb148   Jean-Christophe PLAGNIOL-VILLARD   move cmd_get_data...
459
460
461
462
463
464
465
466
467
  		case 's':
  			return -2;
  		default:
  			return -1;
  		}
  	}
  	return default_size;
  }
  #endif
620f1f6a6   Heiko Schocher   relocation: fixup...
468

2e5167cca   Wolfgang Denk   Replace CONFIG_RE...
469
  #if defined(CONFIG_NEEDS_MANUAL_RELOC)
620f1f6a6   Heiko Schocher   relocation: fixup...
470
471
472
473
474
475
476
477
478
479
480
  DECLARE_GLOBAL_DATA_PTR;
  
  void fixup_cmdtable(cmd_tbl_t *cmdtp, int size)
  {
  	int	i;
  
  	if (gd->reloc_off == 0)
  		return;
  
  	for (i = 0; i < size; i++) {
  		ulong addr;
616e2162a   Masahiro Yamada   common: command: ...
481
  		addr = (ulong)(cmdtp->cmd) + gd->reloc_off;
2e88bb28d   Kun-Hua Huang   NDS32: Generic Bo...
482
  #ifdef DEBUG_COMMANDS
620f1f6a6   Heiko Schocher   relocation: fixup...
483
484
  		printf("Command \"%s\": 0x%08lx => 0x%08lx
  ",
616e2162a   Masahiro Yamada   common: command: ...
485
  		       cmdtp->name, (ulong)(cmdtp->cmd), addr);
620f1f6a6   Heiko Schocher   relocation: fixup...
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
  #endif
  		cmdtp->cmd =
  			(int (*)(struct cmd_tbl_s *, int, int, char * const []))addr;
  		addr = (ulong)(cmdtp->name) + gd->reloc_off;
  		cmdtp->name = (char *)addr;
  		if (cmdtp->usage) {
  			addr = (ulong)(cmdtp->usage) + gd->reloc_off;
  			cmdtp->usage = (char *)addr;
  		}
  #ifdef	CONFIG_SYS_LONGHELP
  		if (cmdtp->help) {
  			addr = (ulong)(cmdtp->help) + gd->reloc_off;
  			cmdtp->help = (char *)addr;
  		}
  #endif
fa28bd2ee   Daniel Schwierzeck   common: fix missi...
501
502
503
  #ifdef CONFIG_AUTO_COMPLETE
  		if (cmdtp->complete) {
  			addr = (ulong)(cmdtp->complete) + gd->reloc_off;
3668d8fa0   Daniel Schwierzeck   common: fix missi...
504
505
  			cmdtp->complete =
  				(int (*)(int, char * const [], char, int, char * []))addr;
fa28bd2ee   Daniel Schwierzeck   common: fix missi...
506
507
  		}
  #endif
620f1f6a6   Heiko Schocher   relocation: fixup...
508
509
510
511
  		cmdtp++;
  	}
  }
  #endif
bdf8e34b9   Simon Glass   Create a single c...
512

80a48dd47   Boris Brezillon   common: command: ...
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
  int cmd_always_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
  			  char * const argv[], int *repeatable)
  {
  	*repeatable = 1;
  
  	return cmdtp->cmd(cmdtp, flag, argc, argv);
  }
  
  int cmd_never_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
  			 char * const argv[], int *repeatable)
  {
  	*repeatable = 0;
  
  	return cmdtp->cmd(cmdtp, flag, argc, argv);
  }
  
  int cmd_discard_repeatable(cmd_tbl_t *cmdtp, int flag, int argc,
  			   char * const argv[])
  {
  	int repeatable;
  
  	return cmdtp->cmd_rep(cmdtp, flag, argc, argv, &repeatable);
  }
bdf8e34b9   Simon Glass   Create a single c...
536
537
538
539
540
541
542
543
544
  /**
   * Call a command function. This should be the only route in U-Boot to call
   * a command, so that we can track whether we are waiting for input or
   * executing a command.
   *
   * @param cmdtp		Pointer to the command to execute
   * @param flag		Some flags normally 0 (see CMD_FLAG_.. above)
   * @param argc		Number of arguments (arg 0 must be the command text)
   * @param argv		Arguments
80a48dd47   Boris Brezillon   common: command: ...
545
   * @param repeatable	Can the command be repeated
bdf8e34b9   Simon Glass   Create a single c...
546
547
   * @return 0 if command succeeded, else non-zero (CMD_RET_...)
   */
80a48dd47   Boris Brezillon   common: command: ...
548
549
  static int cmd_call(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
  		    int *repeatable)
bdf8e34b9   Simon Glass   Create a single c...
550
551
  {
  	int result;
80a48dd47   Boris Brezillon   common: command: ...
552
  	result = cmdtp->cmd_rep(cmdtp, flag, argc, argv, repeatable);
bdf8e34b9   Simon Glass   Create a single c...
553
  	if (result)
58b6ad681   Peng Fan   common: command a...
554
555
  		debug("Command failed, result=%d
  ", result);
bdf8e34b9   Simon Glass   Create a single c...
556
557
  	return result;
  }
9d12d5d41   Simon Glass   Add cmd_process()...
558
559
  
  enum command_ret_t cmd_process(int flag, int argc, char * const argv[],
34765e885   Richard Genoud   cmd_time: merge r...
560
  			       int *repeatable, ulong *ticks)
9d12d5d41   Simon Glass   Add cmd_process()...
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
  {
  	enum command_ret_t rc = CMD_RET_SUCCESS;
  	cmd_tbl_t *cmdtp;
  
  	/* Look up command in command table */
  	cmdtp = find_cmd(argv[0]);
  	if (cmdtp == NULL) {
  		printf("Unknown command '%s' - try 'help'
  ", argv[0]);
  		return 1;
  	}
  
  	/* found - check max args */
  	if (argc > cmdtp->maxargs)
  		rc = CMD_RET_USAGE;
  
  #if defined(CONFIG_CMD_BOOTD)
  	/* avoid "bootd" recursion */
  	else if (cmdtp->cmd == do_bootd) {
  		if (flag & CMD_FLAG_BOOTD) {
  			puts("'bootd' recursion detected
  ");
  			rc = CMD_RET_FAILURE;
  		} else {
  			flag |= CMD_FLAG_BOOTD;
  		}
  	}
  #endif
  
  	/* If OK so far, then do the command */
  	if (!rc) {
80a48dd47   Boris Brezillon   common: command: ...
592
  		int newrep;
34765e885   Richard Genoud   cmd_time: merge r...
593
594
  		if (ticks)
  			*ticks = get_timer(0);
80a48dd47   Boris Brezillon   common: command: ...
595
  		rc = cmd_call(cmdtp, flag, argc, argv, &newrep);
34765e885   Richard Genoud   cmd_time: merge r...
596
597
  		if (ticks)
  			*ticks = get_timer(*ticks);
80a48dd47   Boris Brezillon   common: command: ...
598
  		*repeatable &= newrep;
9d12d5d41   Simon Glass   Add cmd_process()...
599
600
601
602
603
  	}
  	if (rc == CMD_RET_USAGE)
  		rc = cmd_usage(cmdtp);
  	return rc;
  }
16ff99024   Simon Glass   Add cmd_process_e...
604
605
606
  
  int cmd_process_error(cmd_tbl_t *cmdtp, int err)
  {
27eb7bce3   Michal Simek   common: command: ...
607
608
  	if (err == CMD_RET_USAGE)
  		return CMD_RET_USAGE;
16ff99024   Simon Glass   Add cmd_process_e...
609
610
611
  	if (err) {
  		printf("Command '%s' failed: Error %d
  ", cmdtp->name, err);
372332404   Michal Simek   common: command: ...
612
  		return CMD_RET_FAILURE;
16ff99024   Simon Glass   Add cmd_process_e...
613
  	}
372332404   Michal Simek   common: command: ...
614
  	return CMD_RET_SUCCESS;
16ff99024   Simon Glass   Add cmd_process_e...
615
  }