blob: 63ca514ebd57af41d6fd7b32970f2f96de4f998c [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>
Heinrich Schuchardt329dccc2020-10-27 20:29:25 +01008#include <dm/root.h>
Heinrich Schuchardt9c547292020-12-02 16:22:11 +01009#include <efi_loader.h>
Simon Glass38068822015-05-04 11:31:08 -060010#include <errno.h>
Simon Glass691d7192020-05-10 11:40:02 -060011#include <init.h>
Patrick Delaunaya4918b22020-11-27 11:20:55 +010012#include <log.h>
Simon Glass5c2859c2013-11-10 10:27:03 -070013#include <os.h>
Rabin Vincent7dbcb762014-10-29 23:21:38 +010014#include <cli.h>
Simon Glass4209be32020-02-03 07:35:47 -070015#include <sort.h>
Simon Glass70db4212012-02-15 15:51:16 -080016#include <asm/getopt.h>
Simon Glass401d1c42020-10-30 21:38:53 -060017#include <asm/global_data.h>
Simon Glass4d94dfa2014-07-10 22:23:27 -060018#include <asm/io.h>
Simon Glass3ff6fe52020-02-03 07:36:05 -070019#include <asm/malloc.h>
Simon Glass70db4212012-02-15 15:51:16 -080020#include <asm/sections.h>
Simon Glass6fb62072012-02-15 15:51:15 -080021#include <asm/state.h>
Simon Glass4209be32020-02-03 07:35:47 -070022#include <linux/ctype.h>
Simon Glassbace3d02011-10-03 19:26:45 +000023
Simon Glass808434c2013-11-10 10:26:59 -070024DECLARE_GLOBAL_DATA_PTR;
25
Heinrich Schuchardt329dccc2020-10-27 20:29:25 +010026static char **os_argv;
27
Simon Glass4209be32020-02-03 07:35:47 -070028/* Compare two options so that they can be sorted into alphabetical order */
29static int h_compare_opt(const void *p1, const void *p2)
30{
31 const struct sandbox_cmdline_option *opt1 = p1;
32 const struct sandbox_cmdline_option *opt2 = p2;
33 const char *str1, *str2;
34 char flag1[2], flag2[2];
35
36 opt1 = *(struct sandbox_cmdline_option **)p1;
37 opt2 = *(struct sandbox_cmdline_option **)p2;
38 flag1[1] = '\0';
39 flag2[1] = '\0';
40
41 *flag1 = opt1->flag_short < 0x100 ? opt1->flag_short : '\0';
42 *flag2 = opt2->flag_short < 0x100 ? opt2->flag_short : '\0';
43
44 str1 = *flag1 ? flag1 : opt1->flag;
45 str2 = *flag2 ? flag2 : opt2->flag;
46
47 /*
48 * Force lower-case flags to come before upper-case ones. We only
49 * support upper-case for short flags.
50 */
51 if (isalpha(*str1) && isalpha(*str2) &&
52 tolower(*str1) == tolower(*str2))
53 return isupper(*str1) - isupper(*str2);
54
55 return strcasecmp(str1, str2);
56}
57
Simon Glass70db4212012-02-15 15:51:16 -080058int sandbox_early_getopt_check(void)
59{
60 struct sandbox_state *state = state_get_current();
Marek BehĂșnd1f81fd2021-05-20 13:24:06 +020061 struct sandbox_cmdline_option **sb_opt =
62 __u_boot_sandbox_option_start();
Simon Glass70db4212012-02-15 15:51:16 -080063 size_t num_options = __u_boot_sandbox_option_count();
64 size_t i;
65 int max_arg_len, max_noarg_len;
Simon Glass4209be32020-02-03 07:35:47 -070066 struct sandbox_cmdline_option **sorted_opt;
67 int size;
Simon Glass70db4212012-02-15 15:51:16 -080068
69 /* parse_err will be a string of the faulting option */
70 if (!state->parse_err)
71 return 0;
72
73 if (strcmp(state->parse_err, "help")) {
74 printf("u-boot: error: failed while parsing option: %s\n"
75 "\ttry running with --help for more information.\n",
76 state->parse_err);
77 os_exit(1);
78 }
79
80 printf(
81 "u-boot, a command line test interface to U-Boot\n\n"
82 "Usage: u-boot [options]\n"
83 "Options:\n");
84
85 max_arg_len = 0;
86 for (i = 0; i < num_options; ++i)
Masahiro Yamadab4141192014-11-07 03:03:31 +090087 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass70db4212012-02-15 15:51:16 -080088 max_noarg_len = max_arg_len + 7;
89
Simon Glass4209be32020-02-03 07:35:47 -070090 /* Sort the options */
91 size = sizeof(*sorted_opt) * num_options;
Simon Glassb308d9f2021-02-06 09:57:33 -070092 sorted_opt = os_malloc(size);
Simon Glass4209be32020-02-03 07:35:47 -070093 if (!sorted_opt) {
94 printf("No memory to sort options\n");
95 os_exit(1);
96 }
97 memcpy(sorted_opt, sb_opt, size);
98 qsort(sorted_opt, num_options, sizeof(*sorted_opt), h_compare_opt);
99
Simon Glass70db4212012-02-15 15:51:16 -0800100 for (i = 0; i < num_options; ++i) {
Simon Glass4209be32020-02-03 07:35:47 -0700101 struct sandbox_cmdline_option *opt = sorted_opt[i];
Simon Glass70db4212012-02-15 15:51:16 -0800102
103 /* first output the short flag if it has one */
104 if (opt->flag_short >= 0x100)
105 printf(" ");
106 else
107 printf(" -%c, ", opt->flag_short);
108
109 /* then the long flag */
110 if (opt->has_arg)
Simon Glass70db4212012-02-15 15:51:16 -0800111 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass6ebcab82013-11-10 10:26:58 -0700112 else
113 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass70db4212012-02-15 15:51:16 -0800114
115 /* finally the help text */
116 printf(" %s\n", opt->help);
117 }
118
119 os_exit(0);
120}
121
Simon Glass68969772017-03-28 10:27:28 -0600122int misc_init_f(void)
123{
124 return sandbox_early_getopt_check();
125}
126
Simon Glass7b3efc62013-12-03 16:43:23 -0700127static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -0800128{
129 /* just flag to sandbox_early_getopt_check to show usage */
130 return 1;
131}
Simon Glass7b3efc62013-12-03 16:43:23 -0700132SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass70db4212012-02-15 15:51:16 -0800133
Simon Glassd0d07462016-07-04 11:57:50 -0600134#ifndef CONFIG_SPL_BUILD
Simon Glassab4e07e2012-02-26 17:38:50 -0500135int sandbox_main_loop_init(void)
136{
Simon Glass70db4212012-02-15 15:51:16 -0800137 struct sandbox_state *state = state_get_current();
138
139 /* Execute command if required */
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200140 if (state->cmd || state->run_distro_boot) {
141 int retval = 0;
Joe Hershberger88539e42015-02-06 15:37:31 -0600142
Rabin Vincent7dbcb762014-10-29 23:21:38 +0100143 cli_init();
144
Simon Glass2b6793d2016-03-13 19:07:30 -0600145#ifdef CONFIG_CMDLINE
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200146 if (state->cmd)
147 retval = run_command_list(state->cmd, -1, 0);
148
149 if (state->run_distro_boot)
150 retval = cli_simple_run_command("run distro_bootcmd",
151 0);
Simon Glass2b6793d2016-03-13 19:07:30 -0600152#endif
Simon Glassc5a62d42013-11-10 10:27:02 -0700153 if (!state->interactive)
Joe Hershberger88539e42015-02-06 15:37:31 -0600154 os_exit(retval);
Simon Glass70db4212012-02-15 15:51:16 -0800155 }
156
Simon Glassab4e07e2012-02-26 17:38:50 -0500157 return 0;
158}
Simon Glassd0d07462016-07-04 11:57:50 -0600159#endif
Simon Glassab4e07e2012-02-26 17:38:50 -0500160
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200161static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
162 const char *arg)
163{
164 state->run_distro_boot = true;
165 return 0;
166}
167SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
168
Simon Glass7b3efc62013-12-03 16:43:23 -0700169static int sandbox_cmdline_cb_command(struct sandbox_state *state,
170 const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -0800171{
172 state->cmd = arg;
173 return 0;
174}
Simon Glass7b3efc62013-12-03 16:43:23 -0700175SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass70db4212012-02-15 15:51:16 -0800176
Simon Glass7b3efc62013-12-03 16:43:23 -0700177static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glassf828bf22013-04-20 08:42:41 +0000178{
179 state->fdt_fname = arg;
180 return 0;
181}
Simon Glass7b3efc62013-12-03 16:43:23 -0700182SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glassf828bf22013-04-20 08:42:41 +0000183
Simon Glass1f32ae92015-01-19 20:21:34 -0700184static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
185 const char *arg)
186{
187 const char *fmt = "%s.dtb";
188 char *fname;
189 int len;
190
191 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glassb308d9f2021-02-06 09:57:33 -0700192 fname = os_malloc(len);
Simon Glass1f32ae92015-01-19 20:21:34 -0700193 if (!fname)
194 return -ENOMEM;
195 snprintf(fname, len, fmt, state->argv[0]);
196 state->fdt_fname = fname;
197
198 return 0;
199}
200SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
201 "Use the default u-boot.dtb control FDT in U-Boot directory");
202
Simon Glass189882c2019-09-25 08:56:07 -0600203static int sandbox_cmdline_cb_test_fdt(struct sandbox_state *state,
204 const char *arg)
205{
206 const char *fmt = "/arch/sandbox/dts/test.dtb";
207 char *p;
208 char *fname;
209 int len;
210
211 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glassb308d9f2021-02-06 09:57:33 -0700212 fname = os_malloc(len);
Simon Glass189882c2019-09-25 08:56:07 -0600213 if (!fname)
214 return -ENOMEM;
215 strcpy(fname, state->argv[0]);
216 p = strrchr(fname, '/');
217 if (!p)
218 p = fname + strlen(fname);
219 len -= p - fname;
Heinrich Schuchardtb680c5532020-12-25 16:04:26 +0100220 snprintf(p, len, fmt);
Simon Glass189882c2019-09-25 08:56:07 -0600221 state->fdt_fname = fname;
222
223 return 0;
224}
225SANDBOX_CMDLINE_OPT_SHORT(test_fdt, 'T', 0,
226 "Use the test.dtb control FDT in U-Boot directory");
227
Simon Glassc5a62d42013-11-10 10:27:02 -0700228static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
229 const char *arg)
230{
231 state->interactive = true;
232 return 0;
233}
234
235SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
236
Simon Glassbda77732014-02-27 13:26:16 -0700237static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
238 const char *arg)
239{
Simon Glassab839dc2014-02-27 13:26:23 -0700240 /* Remember to delete this U-Boot image later */
241 state->jumped_fname = arg;
Simon Glassbda77732014-02-27 13:26:16 -0700242
243 return 0;
244}
245SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
246
Simon Glass5c2859c2013-11-10 10:27:03 -0700247static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
248 const char *arg)
249{
250 int err;
251
252 /* For now assume we always want to write it */
253 state->write_ram_buf = true;
254 state->ram_buf_fname = arg;
255
Simon Glassf80a8bb2014-11-11 12:47:08 -0700256 err = os_read_ram_buf(arg);
257 if (err) {
Simon Glass1c5a81d2018-10-01 11:55:12 -0600258 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
Simon Glass5c2859c2013-11-10 10:27:03 -0700259 return err;
260 }
Simon Glassa65d1a02018-11-23 21:29:29 -0700261 state->ram_buf_read = true;
Simon Glass5c2859c2013-11-10 10:27:03 -0700262
263 return 0;
264}
265SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
266 "Read/write ram_buf memory contents from file");
267
Simon Glassab839dc2014-02-27 13:26:23 -0700268static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
269 const char *arg)
270{
271 state->ram_buf_rm = true;
272
273 return 0;
274}
275SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
276
Simon Glass1209e272013-11-10 10:27:04 -0700277static int sandbox_cmdline_cb_state(struct sandbox_state *state,
278 const char *arg)
279{
280 state->state_fname = arg;
281 return 0;
282}
283SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
284
285static int sandbox_cmdline_cb_read(struct sandbox_state *state,
286 const char *arg)
287{
288 state->read_state = true;
289 return 0;
290}
291SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
292
293static int sandbox_cmdline_cb_write(struct sandbox_state *state,
294 const char *arg)
295{
296 state->write_state = true;
297 return 0;
298}
299SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
300
301static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
302 const char *arg)
303{
304 state->ignore_missing_state_on_read = true;
305 return 0;
306}
307SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
308 "Ignore missing state on read");
309
Simon Glass7d95f2a2014-02-27 13:26:19 -0700310static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
311 const char *arg)
312{
313 state->show_lcd = true;
314 return 0;
315}
316SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
317 "Show the sandbox LCD display");
318
Simon Glass6be88c72020-02-03 07:36:13 -0700319static int sandbox_cmdline_cb_double_lcd(struct sandbox_state *state,
320 const char *arg)
321{
322 state->double_lcd = true;
323
324 return 0;
325}
326SANDBOX_CMDLINE_OPT_SHORT(double_lcd, 'K', 0,
327 "Double the LCD display size in each direction");
328
Simon Glassffb87902014-02-27 13:26:22 -0700329static const char *term_args[STATE_TERM_COUNT] = {
330 "raw-with-sigs",
331 "raw",
332 "cooked",
333};
334
335static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
336 const char *arg)
337{
338 int i;
339
340 for (i = 0; i < STATE_TERM_COUNT; i++) {
341 if (!strcmp(arg, term_args[i])) {
342 state->term_raw = i;
343 return 0;
344 }
345 }
346
347 printf("Unknown terminal setting '%s' (", arg);
348 for (i = 0; i < STATE_TERM_COUNT; i++)
349 printf("%s%s", i ? ", " : "", term_args[i]);
350 puts(")\n");
351
352 return 1;
353}
354SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
355 "Set terminal to raw/cooked mode");
356
Simon Glass9ce8b402015-11-08 23:47:50 -0700357static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
358 const char *arg)
359{
360 state->show_test_output = true;
361 return 0;
362}
363SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
364
Simon Glass2b1dc292018-10-01 11:55:11 -0600365static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
366 const char *arg)
367{
368 state->default_log_level = simple_strtol(arg, NULL, 10);
369
370 return 0;
371}
372SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
373 "Set log level (0=panic, 7=debug)");
374
Simon Glassb25ff5c2020-10-25 20:38:28 -0600375static int sandbox_cmdline_cb_unittests(struct sandbox_state *state,
376 const char *arg)
377{
378 state->run_unittests = true;
379
380 return 0;
381}
382SANDBOX_CMDLINE_OPT_SHORT(unittests, 'u', 0, "Run unit tests");
383
Simon Glass22b29cc2020-10-25 20:38:33 -0600384static int sandbox_cmdline_cb_select_unittests(struct sandbox_state *state,
385 const char *arg)
386{
387 state->select_unittests = arg;
388
389 return 0;
390}
391SANDBOX_CMDLINE_OPT_SHORT(select_unittests, 'k', 1, "Select unit tests to run");
392
Simon Glassbb967242017-03-28 10:27:16 -0600393static void setup_ram_buf(struct sandbox_state *state)
394{
Simon Glassa65d1a02018-11-23 21:29:29 -0700395 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glass5dbe7942019-04-08 13:20:43 -0600396 if (!state->ram_buf_read)
Simon Glassa65d1a02018-11-23 21:29:29 -0700397 memset(state->ram_buf, '\0', state->ram_size);
Simon Glassa65d1a02018-11-23 21:29:29 -0700398
Simon Glassbb967242017-03-28 10:27:16 -0600399 gd->arch.ram_buf = state->ram_buf;
400 gd->ram_size = state->ram_size;
401}
402
Simon Glassd66ddaf2018-11-15 18:44:03 -0700403void state_show(struct sandbox_state *state)
404{
405 char **p;
406
407 printf("Arguments:\n");
408 for (p = state->argv; *p; p++)
409 printf("%s ", *p);
410 printf("\n");
411}
412
Heinrich Schuchardt9c547292020-12-02 16:22:11 +0100413void __efi_runtime EFIAPI efi_reset_system(
414 enum efi_reset_type reset_type,
415 efi_status_t reset_status,
416 unsigned long data_size, void *reset_data)
417{
418 os_fd_restore();
419 os_relaunch(os_argv);
420}
421
Heinrich Schuchardt329dccc2020-10-27 20:29:25 +0100422void sandbox_reset(void)
423{
424 /* Do this here while it still has an effect */
425 os_fd_restore();
426 if (state_uninit())
427 os_exit(2);
428
429 if (dm_uninit())
430 os_exit(2);
431
432 /* Restart U-Boot */
433 os_relaunch(os_argv);
434}
435
Simon Glassbace3d02011-10-03 19:26:45 +0000436int main(int argc, char *argv[])
437{
Simon Glass70db4212012-02-15 15:51:16 -0800438 struct sandbox_state *state;
Simon Glass4d94dfa2014-07-10 22:23:27 -0600439 gd_t data;
Simon Glassb308d9f2021-02-06 09:57:33 -0700440 int size;
Simon Glass1209e272013-11-10 10:27:04 -0700441 int ret;
Simon Glass6fb62072012-02-15 15:51:15 -0800442
Heinrich Schuchardt329dccc2020-10-27 20:29:25 +0100443 /*
444 * Copy argv[] so that we can pass the arguments in the original
445 * sequence when resetting the sandbox.
446 */
Simon Glassb308d9f2021-02-06 09:57:33 -0700447 size = sizeof(char *) * (argc + 1);
448 os_argv = os_malloc(size);
Heinrich Schuchardt329dccc2020-10-27 20:29:25 +0100449 if (!os_argv)
450 os_exit(1);
Simon Glassb308d9f2021-02-06 09:57:33 -0700451 memcpy(os_argv, argv, size);
Heinrich Schuchardt329dccc2020-10-27 20:29:25 +0100452
Simon Glass001d1882019-04-08 13:20:41 -0600453 memset(&data, '\0', sizeof(data));
454 gd = &data;
455 gd->arch.text_base = os_find_text_base();
456
Simon Glass1209e272013-11-10 10:27:04 -0700457 ret = state_init();
458 if (ret)
459 goto err;
Simon Glass6fb62072012-02-15 15:51:15 -0800460
Simon Glass70db4212012-02-15 15:51:16 -0800461 state = state_get_current();
462 if (os_parse_args(state, argc, argv))
463 return 1;
464
Patrick Delaunay10bb90f2020-11-20 09:48:33 +0100465 /* Remove old memory file if required */
466 if (state->ram_buf_rm && state->ram_buf_fname) {
467 os_unlink(state->ram_buf_fname);
468 state->write_ram_buf = false;
469 state->ram_buf_fname = NULL;
470 }
471
Simon Glass1209e272013-11-10 10:27:04 -0700472 ret = sandbox_read_state(state, state->state_fname);
473 if (ret)
474 goto err;
475
Heinrich Schuchardtb46f30a2020-11-12 00:29:56 +0100476 ret = os_setup_signal_handlers();
477 if (ret)
478 goto err;
479
Andy Yan1fc50d72017-07-24 17:49:59 +0800480#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass29afe9e2014-07-10 22:23:31 -0600481 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
482#endif
Simon Glass2b1dc292018-10-01 11:55:11 -0600483#if CONFIG_IS_ENABLED(LOG)
484 gd->default_log_level = state->default_log_level;
485#endif
Simon Glassbb967242017-03-28 10:27:16 -0600486 setup_ram_buf(state);
Simon Glass4d94dfa2014-07-10 22:23:27 -0600487
Simon Glass001d1882019-04-08 13:20:41 -0600488 /*
489 * Set up the relocation offset here, since sandbox symbols are always
490 * relocated by the OS before sandbox is entered.
491 */
492 gd->reloc_off = (ulong)gd->arch.text_base;
493
Patrick Delaunaya4918b22020-11-27 11:20:55 +0100494 /* sandbox test: log functions called before log_init in board_init_f */
Patrick Delaunaya4918b22020-11-27 11:20:55 +0100495 log_debug("debug: %s\n", __func__);
496
Simon Glass808434c2013-11-10 10:26:59 -0700497 /* Do pre- and post-relocation init */
Simon Glassbace3d02011-10-03 19:26:45 +0000498 board_init_f(0);
Allen Martin8ec21bb2013-01-22 13:11:21 +0000499
Simon Glass808434c2013-11-10 10:26:59 -0700500 board_init_r(gd->new_gd, 0);
501
502 /* NOTREACHED - board_init_r() does not return */
Allen Martin8ec21bb2013-01-22 13:11:21 +0000503 return 0;
Simon Glass1209e272013-11-10 10:27:04 -0700504
505err:
506 printf("Error %d\n", ret);
507 return 1;
Simon Glassbace3d02011-10-03 19:26:45 +0000508}