blob: 58ada13fba5e889fb11853b3efece8baeb2dea51 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassbace3d02011-10-03 19:26:45 +00002/*
Simon Glass6fb62072012-02-15 15:51:15 -08003 * Copyright (c) 2011-2012 The Chromium OS Authors.
Simon Glassbace3d02011-10-03 19:26:45 +00004 */
5
6#include <common.h>
Simon Glass288b29e2019-11-14 12:57:43 -07007#include <command.h>
Simon Glass38068822015-05-04 11:31:08 -06008#include <errno.h>
Simon Glass691d7192020-05-10 11:40:02 -06009#include <init.h>
Simon Glass5c2859c2013-11-10 10:27:03 -070010#include <os.h>
Rabin Vincent7dbcb762014-10-29 23:21:38 +010011#include <cli.h>
Simon Glass4209be32020-02-03 07:35:47 -070012#include <sort.h>
Simon Glass70db4212012-02-15 15:51:16 -080013#include <asm/getopt.h>
Simon Glass4d94dfa2014-07-10 22:23:27 -060014#include <asm/io.h>
Simon Glass3ff6fe52020-02-03 07:36:05 -070015#include <asm/malloc.h>
Simon Glass70db4212012-02-15 15:51:16 -080016#include <asm/sections.h>
Simon Glass6fb62072012-02-15 15:51:15 -080017#include <asm/state.h>
Simon Glass4209be32020-02-03 07:35:47 -070018#include <linux/ctype.h>
Simon Glassbace3d02011-10-03 19:26:45 +000019
Simon Glass808434c2013-11-10 10:26:59 -070020DECLARE_GLOBAL_DATA_PTR;
21
Simon Glass4209be32020-02-03 07:35:47 -070022/* Compare two options so that they can be sorted into alphabetical order */
23static int h_compare_opt(const void *p1, const void *p2)
24{
25 const struct sandbox_cmdline_option *opt1 = p1;
26 const struct sandbox_cmdline_option *opt2 = p2;
27 const char *str1, *str2;
28 char flag1[2], flag2[2];
29
30 opt1 = *(struct sandbox_cmdline_option **)p1;
31 opt2 = *(struct sandbox_cmdline_option **)p2;
32 flag1[1] = '\0';
33 flag2[1] = '\0';
34
35 *flag1 = opt1->flag_short < 0x100 ? opt1->flag_short : '\0';
36 *flag2 = opt2->flag_short < 0x100 ? opt2->flag_short : '\0';
37
38 str1 = *flag1 ? flag1 : opt1->flag;
39 str2 = *flag2 ? flag2 : opt2->flag;
40
41 /*
42 * Force lower-case flags to come before upper-case ones. We only
43 * support upper-case for short flags.
44 */
45 if (isalpha(*str1) && isalpha(*str2) &&
46 tolower(*str1) == tolower(*str2))
47 return isupper(*str1) - isupper(*str2);
48
49 return strcasecmp(str1, str2);
50}
51
Simon Glass70db4212012-02-15 15:51:16 -080052int sandbox_early_getopt_check(void)
53{
54 struct sandbox_state *state = state_get_current();
Simon Glass7b3efc62013-12-03 16:43:23 -070055 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass70db4212012-02-15 15:51:16 -080056 size_t num_options = __u_boot_sandbox_option_count();
57 size_t i;
58 int max_arg_len, max_noarg_len;
Simon Glass4209be32020-02-03 07:35:47 -070059 struct sandbox_cmdline_option **sorted_opt;
60 int size;
Simon Glass70db4212012-02-15 15:51:16 -080061
62 /* parse_err will be a string of the faulting option */
63 if (!state->parse_err)
64 return 0;
65
66 if (strcmp(state->parse_err, "help")) {
67 printf("u-boot: error: failed while parsing option: %s\n"
68 "\ttry running with --help for more information.\n",
69 state->parse_err);
70 os_exit(1);
71 }
72
73 printf(
74 "u-boot, a command line test interface to U-Boot\n\n"
75 "Usage: u-boot [options]\n"
76 "Options:\n");
77
78 max_arg_len = 0;
79 for (i = 0; i < num_options; ++i)
Masahiro Yamadab4141192014-11-07 03:03:31 +090080 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass70db4212012-02-15 15:51:16 -080081 max_noarg_len = max_arg_len + 7;
82
Simon Glass4209be32020-02-03 07:35:47 -070083 /* Sort the options */
84 size = sizeof(*sorted_opt) * num_options;
85 sorted_opt = malloc(size);
86 if (!sorted_opt) {
87 printf("No memory to sort options\n");
88 os_exit(1);
89 }
90 memcpy(sorted_opt, sb_opt, size);
91 qsort(sorted_opt, num_options, sizeof(*sorted_opt), h_compare_opt);
92
Simon Glass70db4212012-02-15 15:51:16 -080093 for (i = 0; i < num_options; ++i) {
Simon Glass4209be32020-02-03 07:35:47 -070094 struct sandbox_cmdline_option *opt = sorted_opt[i];
Simon Glass70db4212012-02-15 15:51:16 -080095
96 /* first output the short flag if it has one */
97 if (opt->flag_short >= 0x100)
98 printf(" ");
99 else
100 printf(" -%c, ", opt->flag_short);
101
102 /* then the long flag */
103 if (opt->has_arg)
Simon Glass70db4212012-02-15 15:51:16 -0800104 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass6ebcab82013-11-10 10:26:58 -0700105 else
106 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass70db4212012-02-15 15:51:16 -0800107
108 /* finally the help text */
109 printf(" %s\n", opt->help);
110 }
111
112 os_exit(0);
113}
114
Simon Glass68969772017-03-28 10:27:28 -0600115int misc_init_f(void)
116{
117 return sandbox_early_getopt_check();
118}
119
Simon Glass7b3efc62013-12-03 16:43:23 -0700120static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -0800121{
122 /* just flag to sandbox_early_getopt_check to show usage */
123 return 1;
124}
Simon Glass7b3efc62013-12-03 16:43:23 -0700125SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass70db4212012-02-15 15:51:16 -0800126
Simon Glassd0d07462016-07-04 11:57:50 -0600127#ifndef CONFIG_SPL_BUILD
Simon Glassab4e07e2012-02-26 17:38:50 -0500128int sandbox_main_loop_init(void)
129{
Simon Glass70db4212012-02-15 15:51:16 -0800130 struct sandbox_state *state = state_get_current();
131
132 /* Execute command if required */
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200133 if (state->cmd || state->run_distro_boot) {
134 int retval = 0;
Joe Hershberger88539e42015-02-06 15:37:31 -0600135
Rabin Vincent7dbcb762014-10-29 23:21:38 +0100136 cli_init();
137
Simon Glass2b6793d2016-03-13 19:07:30 -0600138#ifdef CONFIG_CMDLINE
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200139 if (state->cmd)
140 retval = run_command_list(state->cmd, -1, 0);
141
142 if (state->run_distro_boot)
143 retval = cli_simple_run_command("run distro_bootcmd",
144 0);
Simon Glass2b6793d2016-03-13 19:07:30 -0600145#endif
Simon Glassc5a62d42013-11-10 10:27:02 -0700146 if (!state->interactive)
Joe Hershberger88539e42015-02-06 15:37:31 -0600147 os_exit(retval);
Simon Glass70db4212012-02-15 15:51:16 -0800148 }
149
Simon Glassab4e07e2012-02-26 17:38:50 -0500150 return 0;
151}
Simon Glassd0d07462016-07-04 11:57:50 -0600152#endif
Simon Glassab4e07e2012-02-26 17:38:50 -0500153
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200154static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
155 const char *arg)
156{
157 state->run_distro_boot = true;
158 return 0;
159}
160SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
161
Simon Glass7b3efc62013-12-03 16:43:23 -0700162static int sandbox_cmdline_cb_command(struct sandbox_state *state,
163 const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -0800164{
165 state->cmd = arg;
166 return 0;
167}
Simon Glass7b3efc62013-12-03 16:43:23 -0700168SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass70db4212012-02-15 15:51:16 -0800169
Simon Glass7b3efc62013-12-03 16:43:23 -0700170static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glassf828bf22013-04-20 08:42:41 +0000171{
172 state->fdt_fname = arg;
173 return 0;
174}
Simon Glass7b3efc62013-12-03 16:43:23 -0700175SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glassf828bf22013-04-20 08:42:41 +0000176
Simon Glass1f32ae92015-01-19 20:21:34 -0700177static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
178 const char *arg)
179{
180 const char *fmt = "%s.dtb";
181 char *fname;
182 int len;
183
184 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glass3ff6fe52020-02-03 07:36:05 -0700185 fname = malloc(len);
Simon Glass1f32ae92015-01-19 20:21:34 -0700186 if (!fname)
187 return -ENOMEM;
188 snprintf(fname, len, fmt, state->argv[0]);
189 state->fdt_fname = fname;
190
191 return 0;
192}
193SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
194 "Use the default u-boot.dtb control FDT in U-Boot directory");
195
Simon Glass189882c2019-09-25 08:56:07 -0600196static int sandbox_cmdline_cb_test_fdt(struct sandbox_state *state,
197 const char *arg)
198{
199 const char *fmt = "/arch/sandbox/dts/test.dtb";
200 char *p;
201 char *fname;
202 int len;
203
204 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glass3ff6fe52020-02-03 07:36:05 -0700205 fname = malloc(len);
Simon Glass189882c2019-09-25 08:56:07 -0600206 if (!fname)
207 return -ENOMEM;
208 strcpy(fname, state->argv[0]);
209 p = strrchr(fname, '/');
210 if (!p)
211 p = fname + strlen(fname);
212 len -= p - fname;
213 snprintf(p, len, fmt, p);
214 state->fdt_fname = fname;
215
216 return 0;
217}
218SANDBOX_CMDLINE_OPT_SHORT(test_fdt, 'T', 0,
219 "Use the test.dtb control FDT in U-Boot directory");
220
Simon Glassc5a62d42013-11-10 10:27:02 -0700221static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
222 const char *arg)
223{
224 state->interactive = true;
225 return 0;
226}
227
228SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
229
Simon Glassbda77732014-02-27 13:26:16 -0700230static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
231 const char *arg)
232{
Simon Glassab839dc2014-02-27 13:26:23 -0700233 /* Remember to delete this U-Boot image later */
234 state->jumped_fname = arg;
Simon Glassbda77732014-02-27 13:26:16 -0700235
236 return 0;
237}
238SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
239
Simon Glass5c2859c2013-11-10 10:27:03 -0700240static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
241 const char *arg)
242{
243 int err;
244
245 /* For now assume we always want to write it */
246 state->write_ram_buf = true;
247 state->ram_buf_fname = arg;
248
Simon Glassf80a8bb2014-11-11 12:47:08 -0700249 err = os_read_ram_buf(arg);
250 if (err) {
Simon Glass1c5a81d2018-10-01 11:55:12 -0600251 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
Simon Glass5c2859c2013-11-10 10:27:03 -0700252 return err;
253 }
Simon Glassa65d1a02018-11-23 21:29:29 -0700254 state->ram_buf_read = true;
Simon Glass5c2859c2013-11-10 10:27:03 -0700255
256 return 0;
257}
258SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
259 "Read/write ram_buf memory contents from file");
260
Simon Glassab839dc2014-02-27 13:26:23 -0700261static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
262 const char *arg)
263{
264 state->ram_buf_rm = true;
265
266 return 0;
267}
268SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
269
Simon Glass1209e272013-11-10 10:27:04 -0700270static int sandbox_cmdline_cb_state(struct sandbox_state *state,
271 const char *arg)
272{
273 state->state_fname = arg;
274 return 0;
275}
276SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
277
278static int sandbox_cmdline_cb_read(struct sandbox_state *state,
279 const char *arg)
280{
281 state->read_state = true;
282 return 0;
283}
284SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
285
286static int sandbox_cmdline_cb_write(struct sandbox_state *state,
287 const char *arg)
288{
289 state->write_state = true;
290 return 0;
291}
292SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
293
294static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
295 const char *arg)
296{
297 state->ignore_missing_state_on_read = true;
298 return 0;
299}
300SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
301 "Ignore missing state on read");
302
Simon Glass7d95f2a2014-02-27 13:26:19 -0700303static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
304 const char *arg)
305{
306 state->show_lcd = true;
307 return 0;
308}
309SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
310 "Show the sandbox LCD display");
311
Simon Glass6be88c72020-02-03 07:36:13 -0700312static int sandbox_cmdline_cb_double_lcd(struct sandbox_state *state,
313 const char *arg)
314{
315 state->double_lcd = true;
316
317 return 0;
318}
319SANDBOX_CMDLINE_OPT_SHORT(double_lcd, 'K', 0,
320 "Double the LCD display size in each direction");
321
Simon Glassffb87902014-02-27 13:26:22 -0700322static const char *term_args[STATE_TERM_COUNT] = {
323 "raw-with-sigs",
324 "raw",
325 "cooked",
326};
327
328static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
329 const char *arg)
330{
331 int i;
332
333 for (i = 0; i < STATE_TERM_COUNT; i++) {
334 if (!strcmp(arg, term_args[i])) {
335 state->term_raw = i;
336 return 0;
337 }
338 }
339
340 printf("Unknown terminal setting '%s' (", arg);
341 for (i = 0; i < STATE_TERM_COUNT; i++)
342 printf("%s%s", i ? ", " : "", term_args[i]);
343 puts(")\n");
344
345 return 1;
346}
347SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
348 "Set terminal to raw/cooked mode");
349
Simon Glass9ce8b402015-11-08 23:47:50 -0700350static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
351 const char *arg)
352{
353 state->show_test_output = true;
354 return 0;
355}
356SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
357
Simon Glass2b1dc292018-10-01 11:55:11 -0600358static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
359 const char *arg)
360{
361 state->default_log_level = simple_strtol(arg, NULL, 10);
362
363 return 0;
364}
365SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
366 "Set log level (0=panic, 7=debug)");
367
Simon Glassb25ff5c2020-10-25 20:38:28 -0600368static int sandbox_cmdline_cb_unittests(struct sandbox_state *state,
369 const char *arg)
370{
371 state->run_unittests = true;
372
373 return 0;
374}
375SANDBOX_CMDLINE_OPT_SHORT(unittests, 'u', 0, "Run unit tests");
376
Simon Glass22b29cc2020-10-25 20:38:33 -0600377static int sandbox_cmdline_cb_select_unittests(struct sandbox_state *state,
378 const char *arg)
379{
380 state->select_unittests = arg;
381
382 return 0;
383}
384SANDBOX_CMDLINE_OPT_SHORT(select_unittests, 'k', 1, "Select unit tests to run");
385
Simon Glassbb967242017-03-28 10:27:16 -0600386static void setup_ram_buf(struct sandbox_state *state)
387{
Simon Glassa65d1a02018-11-23 21:29:29 -0700388 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glass5dbe7942019-04-08 13:20:43 -0600389 if (!state->ram_buf_read)
Simon Glassa65d1a02018-11-23 21:29:29 -0700390 memset(state->ram_buf, '\0', state->ram_size);
Simon Glassa65d1a02018-11-23 21:29:29 -0700391
Simon Glassbb967242017-03-28 10:27:16 -0600392 gd->arch.ram_buf = state->ram_buf;
393 gd->ram_size = state->ram_size;
394}
395
Simon Glassd66ddaf2018-11-15 18:44:03 -0700396void state_show(struct sandbox_state *state)
397{
398 char **p;
399
400 printf("Arguments:\n");
401 for (p = state->argv; *p; p++)
402 printf("%s ", *p);
403 printf("\n");
404}
405
Simon Glassbace3d02011-10-03 19:26:45 +0000406int main(int argc, char *argv[])
407{
Simon Glass70db4212012-02-15 15:51:16 -0800408 struct sandbox_state *state;
Simon Glass4d94dfa2014-07-10 22:23:27 -0600409 gd_t data;
Simon Glass1209e272013-11-10 10:27:04 -0700410 int ret;
Simon Glass6fb62072012-02-15 15:51:15 -0800411
Simon Glass001d1882019-04-08 13:20:41 -0600412 memset(&data, '\0', sizeof(data));
413 gd = &data;
414 gd->arch.text_base = os_find_text_base();
415
Simon Glass1209e272013-11-10 10:27:04 -0700416 ret = state_init();
417 if (ret)
418 goto err;
Simon Glass6fb62072012-02-15 15:51:15 -0800419
Simon Glass70db4212012-02-15 15:51:16 -0800420 state = state_get_current();
421 if (os_parse_args(state, argc, argv))
422 return 1;
423
Simon Glass1209e272013-11-10 10:27:04 -0700424 ret = sandbox_read_state(state, state->state_fname);
425 if (ret)
426 goto err;
427
Andy Yan1fc50d72017-07-24 17:49:59 +0800428#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass29afe9e2014-07-10 22:23:31 -0600429 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
430#endif
Simon Glass2b1dc292018-10-01 11:55:11 -0600431#if CONFIG_IS_ENABLED(LOG)
432 gd->default_log_level = state->default_log_level;
433#endif
Simon Glassbb967242017-03-28 10:27:16 -0600434 setup_ram_buf(state);
Simon Glass4d94dfa2014-07-10 22:23:27 -0600435
Simon Glass001d1882019-04-08 13:20:41 -0600436 /*
437 * Set up the relocation offset here, since sandbox symbols are always
438 * relocated by the OS before sandbox is entered.
439 */
440 gd->reloc_off = (ulong)gd->arch.text_base;
441
Simon Glass808434c2013-11-10 10:26:59 -0700442 /* Do pre- and post-relocation init */
Simon Glassbace3d02011-10-03 19:26:45 +0000443 board_init_f(0);
Allen Martin8ec21bb2013-01-22 13:11:21 +0000444
Simon Glass808434c2013-11-10 10:26:59 -0700445 board_init_r(gd->new_gd, 0);
446
447 /* NOTREACHED - board_init_r() does not return */
Allen Martin8ec21bb2013-01-22 13:11:21 +0000448 return 0;
Simon Glass1209e272013-11-10 10:27:04 -0700449
450err:
451 printf("Error %d\n", ret);
452 return 1;
Simon Glassbace3d02011-10-03 19:26:45 +0000453}