blob: 2c8a72590b551e8ee60fc1c72a4a81532b916038 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass5ba8ef62011-10-03 19:26:45 +00002/*
Simon Glass20bf89a2012-02-15 15:51:15 -08003 * Copyright (c) 2011-2012 The Chromium OS Authors.
Simon Glass5ba8ef62011-10-03 19:26:45 +00004 */
5
6#include <common.h>
Simon Glassfe143ee2022-03-04 08:42:58 -07007#include <cli.h>
Simon Glassadaaa482019-11-14 12:57:43 -07008#include <command.h>
Heinrich Schuchardt43eb8722020-12-02 16:22:11 +01009#include <efi_loader.h>
Simon Glass07a3b232015-05-04 11:31:08 -060010#include <errno.h>
Simon Glassf1c51912022-03-04 08:43:04 -070011#include <event.h>
Simon Glass97589732020-05-10 11:40:02 -060012#include <init.h>
Patrick Delaunay053156d2020-11-27 11:20:55 +010013#include <log.h>
Simon Glass9dd10bf2013-11-10 10:27:03 -070014#include <os.h>
Simon Glass11c92b12020-02-03 07:35:47 -070015#include <sort.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080016#include <asm/getopt.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060017#include <asm/global_data.h>
Simon Glassc395fdf2014-07-10 22:23:27 -060018#include <asm/io.h>
Simon Glass30f92052020-02-03 07:36:05 -070019#include <asm/malloc.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080020#include <asm/sections.h>
Simon Glass20bf89a2012-02-15 15:51:15 -080021#include <asm/state.h>
Simon Glassfe143ee2022-03-04 08:42:58 -070022#include <dm/root.h>
Simon Glass11c92b12020-02-03 07:35:47 -070023#include <linux/ctype.h>
Simon Glass5ba8ef62011-10-03 19:26:45 +000024
Simon Glass2fd34e62013-11-10 10:26:59 -070025DECLARE_GLOBAL_DATA_PTR;
26
Heinrich Schuchardt1c678442020-10-27 20:29:25 +010027static char **os_argv;
28
Simon Glass11c92b12020-02-03 07:35:47 -070029/* Compare two options so that they can be sorted into alphabetical order */
30static int h_compare_opt(const void *p1, const void *p2)
31{
32 const struct sandbox_cmdline_option *opt1 = p1;
33 const struct sandbox_cmdline_option *opt2 = p2;
34 const char *str1, *str2;
35 char flag1[2], flag2[2];
36
37 opt1 = *(struct sandbox_cmdline_option **)p1;
38 opt2 = *(struct sandbox_cmdline_option **)p2;
39 flag1[1] = '\0';
40 flag2[1] = '\0';
41
42 *flag1 = opt1->flag_short < 0x100 ? opt1->flag_short : '\0';
43 *flag2 = opt2->flag_short < 0x100 ? opt2->flag_short : '\0';
44
45 str1 = *flag1 ? flag1 : opt1->flag;
46 str2 = *flag2 ? flag2 : opt2->flag;
47
48 /*
49 * Force lower-case flags to come before upper-case ones. We only
50 * support upper-case for short flags.
51 */
52 if (isalpha(*str1) && isalpha(*str2) &&
53 tolower(*str1) == tolower(*str2))
54 return isupper(*str1) - isupper(*str2);
55
56 return strcasecmp(str1, str2);
57}
58
Simon Glass8a3e0352012-02-15 15:51:16 -080059int sandbox_early_getopt_check(void)
60{
61 struct sandbox_state *state = state_get_current();
Marek BehĂșn184c4af2021-05-20 13:24:06 +020062 struct sandbox_cmdline_option **sb_opt =
63 __u_boot_sandbox_option_start();
Simon Glass8a3e0352012-02-15 15:51:16 -080064 size_t num_options = __u_boot_sandbox_option_count();
65 size_t i;
66 int max_arg_len, max_noarg_len;
Simon Glass11c92b12020-02-03 07:35:47 -070067 struct sandbox_cmdline_option **sorted_opt;
68 int size;
Simon Glass8a3e0352012-02-15 15:51:16 -080069
70 /* parse_err will be a string of the faulting option */
71 if (!state->parse_err)
72 return 0;
73
74 if (strcmp(state->parse_err, "help")) {
75 printf("u-boot: error: failed while parsing option: %s\n"
76 "\ttry running with --help for more information.\n",
77 state->parse_err);
78 os_exit(1);
79 }
80
81 printf(
82 "u-boot, a command line test interface to U-Boot\n\n"
83 "Usage: u-boot [options]\n"
84 "Options:\n");
85
86 max_arg_len = 0;
87 for (i = 0; i < num_options; ++i)
Masahiro Yamadadb204642014-11-07 03:03:31 +090088 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass8a3e0352012-02-15 15:51:16 -080089 max_noarg_len = max_arg_len + 7;
90
Simon Glass11c92b12020-02-03 07:35:47 -070091 /* Sort the options */
92 size = sizeof(*sorted_opt) * num_options;
Simon Glassedd094e2021-02-06 09:57:33 -070093 sorted_opt = os_malloc(size);
Simon Glass11c92b12020-02-03 07:35:47 -070094 if (!sorted_opt) {
95 printf("No memory to sort options\n");
96 os_exit(1);
97 }
98 memcpy(sorted_opt, sb_opt, size);
99 qsort(sorted_opt, num_options, sizeof(*sorted_opt), h_compare_opt);
100
Simon Glass8a3e0352012-02-15 15:51:16 -0800101 for (i = 0; i < num_options; ++i) {
Simon Glass11c92b12020-02-03 07:35:47 -0700102 struct sandbox_cmdline_option *opt = sorted_opt[i];
Simon Glass8a3e0352012-02-15 15:51:16 -0800103
104 /* first output the short flag if it has one */
105 if (opt->flag_short >= 0x100)
106 printf(" ");
107 else
108 printf(" -%c, ", opt->flag_short);
109
110 /* then the long flag */
111 if (opt->has_arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800112 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass5f679f02013-11-10 10:26:58 -0700113 else
114 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass8a3e0352012-02-15 15:51:16 -0800115
116 /* finally the help text */
117 printf(" %s\n", opt->help);
118 }
119
120 os_exit(0);
121}
Simon Glassb8357c12023-08-21 21:16:56 -0600122EVENT_SPY_SIMPLE(EVT_MISC_INIT_F, sandbox_early_getopt_check);
Simon Glassb419dbb2017-03-28 10:27:28 -0600123
Simon Glass64367c82013-12-03 16:43:23 -0700124static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800125{
126 /* just flag to sandbox_early_getopt_check to show usage */
127 return 1;
128}
Simon Glass64367c82013-12-03 16:43:23 -0700129SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass8a3e0352012-02-15 15:51:16 -0800130
Simon Glass5cf16632016-07-04 11:57:50 -0600131#ifndef CONFIG_SPL_BUILD
Simon Glass0fc3c222012-02-26 17:38:50 -0500132int sandbox_main_loop_init(void)
133{
Simon Glass8a3e0352012-02-15 15:51:16 -0800134 struct sandbox_state *state = state_get_current();
135
136 /* Execute command if required */
Sjoerd Simons335f4702015-04-30 22:16:09 +0200137 if (state->cmd || state->run_distro_boot) {
138 int retval = 0;
Joe Hershberger744d7882015-02-06 15:37:31 -0600139
Rabin Vincent7e0194a2014-10-29 23:21:38 +0100140 cli_init();
141
Simon Glasse0f12802016-03-13 19:07:30 -0600142#ifdef CONFIG_CMDLINE
Sjoerd Simons335f4702015-04-30 22:16:09 +0200143 if (state->cmd)
144 retval = run_command_list(state->cmd, -1, 0);
145
146 if (state->run_distro_boot)
147 retval = cli_simple_run_command("run distro_bootcmd",
148 0);
Simon Glasse0f12802016-03-13 19:07:30 -0600149#endif
Simon Glassf498e432013-11-10 10:27:02 -0700150 if (!state->interactive)
Joe Hershberger744d7882015-02-06 15:37:31 -0600151 os_exit(retval);
Simon Glass8a3e0352012-02-15 15:51:16 -0800152 }
153
Sjoerd Simons335f4702015-04-30 22:16:09 +0200154 return 0;
155}
Simon Glass5cf16632016-07-04 11:57:50 -0600156#endif
Sjoerd Simons335f4702015-04-30 22:16:09 +0200157
158static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
159 const char *arg)
160{
161 state->run_distro_boot = true;
Simon Glass0fc3c222012-02-26 17:38:50 -0500162 return 0;
163}
Sjoerd Simons335f4702015-04-30 22:16:09 +0200164SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
Simon Glass0fc3c222012-02-26 17:38:50 -0500165
Simon Glass64367c82013-12-03 16:43:23 -0700166static int sandbox_cmdline_cb_command(struct sandbox_state *state,
167 const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800168{
169 state->cmd = arg;
170 return 0;
171}
Simon Glass64367c82013-12-03 16:43:23 -0700172SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass8a3e0352012-02-15 15:51:16 -0800173
Simon Glass64367c82013-12-03 16:43:23 -0700174static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glass15393432013-04-20 08:42:41 +0000175{
176 state->fdt_fname = arg;
177 return 0;
178}
Simon Glass64367c82013-12-03 16:43:23 -0700179SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glass15393432013-04-20 08:42:41 +0000180
Simon Glass8e170782015-01-19 20:21:34 -0700181static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
182 const char *arg)
183{
184 const char *fmt = "%s.dtb";
185 char *fname;
186 int len;
187
188 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glassedd094e2021-02-06 09:57:33 -0700189 fname = os_malloc(len);
Simon Glass8e170782015-01-19 20:21:34 -0700190 if (!fname)
191 return -ENOMEM;
192 snprintf(fname, len, fmt, state->argv[0]);
193 state->fdt_fname = fname;
194
195 return 0;
196}
197SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
198 "Use the default u-boot.dtb control FDT in U-Boot directory");
199
Simon Glass3c3968f2019-09-25 08:56:07 -0600200static int sandbox_cmdline_cb_test_fdt(struct sandbox_state *state,
201 const char *arg)
202{
Simon Glassd74c4612022-09-06 20:27:08 -0600203 char buf[256];
Simon Glass3c3968f2019-09-25 08:56:07 -0600204 char *fname;
205 int len;
206
Simon Glassd74c4612022-09-06 20:27:08 -0600207 len = state_get_rel_filename("arch/sandbox/dts/test.dtb", buf,
208 sizeof(buf));
209 if (len < 0)
210 return len;
211
Simon Glassedd094e2021-02-06 09:57:33 -0700212 fname = os_malloc(len);
Simon Glass3c3968f2019-09-25 08:56:07 -0600213 if (!fname)
214 return -ENOMEM;
Simon Glassd74c4612022-09-06 20:27:08 -0600215 strcpy(fname, buf);
Simon Glass3c3968f2019-09-25 08:56:07 -0600216 state->fdt_fname = fname;
217
218 return 0;
219}
220SANDBOX_CMDLINE_OPT_SHORT(test_fdt, 'T', 0,
221 "Use the test.dtb control FDT in U-Boot directory");
222
Simon Glassf498e432013-11-10 10:27:02 -0700223static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
224 const char *arg)
225{
226 state->interactive = true;
227 return 0;
228}
229
230SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
231
Simon Glasse9906532014-02-27 13:26:16 -0700232static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
233 const char *arg)
234{
Simon Glass47acfc62014-02-27 13:26:23 -0700235 /* Remember to delete this U-Boot image later */
236 state->jumped_fname = arg;
Simon Glasse9906532014-02-27 13:26:16 -0700237
238 return 0;
239}
240SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
241
Simon Glassf0b534f2022-10-20 18:23:02 -0600242static int sandbox_cmdline_cb_program(struct sandbox_state *state,
243 const char *arg)
244{
245 /*
246 * Record the program name to use when jumping to future phases. This
247 * is the original executable which holds all the phases. We need to
248 * use this instead of argv[0] since each phase is started by
249 * extracting a particular binary from the full program, then running
250 * it. Therefore in that binary, argv[0] contains only the
251 * current-phase executable.
252 *
253 * For example, sandbox TPL may be started using image file:
254 *
255 * ./image.bin
256 *
257 * but then TPL needs to run VPL, which it does by extracting the VPL
258 * image from the image.bin file.
259 *
260 * ./temp-vpl
261 *
262 * When VPL runs it needs access to the original image.bin so it can
263 * extract the next phase (SPL). This works if we use '-f image.bin'
264 * when starting the original image.bin file.
265 */
266 state->prog_fname = arg;
267
268 return 0;
269}
270SANDBOX_CMDLINE_OPT_SHORT(program, 'p', 1, "U-Boot program name");
271
Simon Glass9dd10bf2013-11-10 10:27:03 -0700272static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
273 const char *arg)
274{
Simon Glass9dd10bf2013-11-10 10:27:03 -0700275 /* For now assume we always want to write it */
276 state->write_ram_buf = true;
277 state->ram_buf_fname = arg;
Simon Glass24a284a2018-11-23 21:29:29 -0700278 state->ram_buf_read = true;
Simon Glass9dd10bf2013-11-10 10:27:03 -0700279
280 return 0;
281}
282SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
283 "Read/write ram_buf memory contents from file");
284
Simon Glass47acfc62014-02-27 13:26:23 -0700285static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
286 const char *arg)
287{
288 state->ram_buf_rm = true;
289
290 return 0;
291}
292SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
293
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700294static int sandbox_cmdline_cb_state(struct sandbox_state *state,
295 const char *arg)
296{
297 state->state_fname = arg;
298 return 0;
299}
300SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
301
302static int sandbox_cmdline_cb_read(struct sandbox_state *state,
303 const char *arg)
304{
305 state->read_state = true;
306 return 0;
307}
308SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
309
310static int sandbox_cmdline_cb_write(struct sandbox_state *state,
311 const char *arg)
312{
313 state->write_state = true;
314 return 0;
315}
316SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
317
318static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
319 const char *arg)
320{
321 state->ignore_missing_state_on_read = true;
322 return 0;
323}
324SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
325 "Ignore missing state on read");
326
Simon Glassb9ddbf42014-02-27 13:26:19 -0700327static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
328 const char *arg)
329{
330 state->show_lcd = true;
331 return 0;
332}
333SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
334 "Show the sandbox LCD display");
335
Simon Glassf91de0b2020-02-03 07:36:13 -0700336static int sandbox_cmdline_cb_double_lcd(struct sandbox_state *state,
337 const char *arg)
338{
339 state->double_lcd = true;
340
341 return 0;
342}
343SANDBOX_CMDLINE_OPT_SHORT(double_lcd, 'K', 0,
344 "Double the LCD display size in each direction");
345
Simon Glass678ef472014-02-27 13:26:22 -0700346static const char *term_args[STATE_TERM_COUNT] = {
347 "raw-with-sigs",
348 "raw",
349 "cooked",
350};
351
352static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
353 const char *arg)
354{
355 int i;
356
357 for (i = 0; i < STATE_TERM_COUNT; i++) {
358 if (!strcmp(arg, term_args[i])) {
359 state->term_raw = i;
360 return 0;
361 }
362 }
363
364 printf("Unknown terminal setting '%s' (", arg);
365 for (i = 0; i < STATE_TERM_COUNT; i++)
366 printf("%s%s", i ? ", " : "", term_args[i]);
367 puts(")\n");
368
369 return 1;
370}
371SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
372 "Set terminal to raw/cooked mode");
373
Simon Glassfe6d12a2015-11-08 23:47:50 -0700374static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
375 const char *arg)
376{
377 state->show_test_output = true;
378 return 0;
379}
380SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
381
Simon Glass4e9a64d2018-10-01 11:55:11 -0600382static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
383 const char *arg)
384{
385 state->default_log_level = simple_strtol(arg, NULL, 10);
386
387 return 0;
388}
389SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
390 "Set log level (0=panic, 7=debug)");
391
Simon Glassa4e289b2020-10-25 20:38:28 -0600392static int sandbox_cmdline_cb_unittests(struct sandbox_state *state,
393 const char *arg)
394{
395 state->run_unittests = true;
396
397 return 0;
398}
399SANDBOX_CMDLINE_OPT_SHORT(unittests, 'u', 0, "Run unit tests");
400
Simon Glasseff96582020-10-25 20:38:33 -0600401static int sandbox_cmdline_cb_select_unittests(struct sandbox_state *state,
402 const char *arg)
403{
404 state->select_unittests = arg;
405
406 return 0;
407}
408SANDBOX_CMDLINE_OPT_SHORT(select_unittests, 'k', 1, "Select unit tests to run");
409
Simon Glassb78cc9b2021-03-22 18:21:01 +1300410static int sandbox_cmdline_cb_signals(struct sandbox_state *state,
411 const char *arg)
412{
413 state->handle_signals = true;
414
415 return 0;
416}
417SANDBOX_CMDLINE_OPT_SHORT(signals, 'S', 0,
418 "Handle signals (such as SIGSEGV) in sandbox");
419
Simon Glassd8c60172021-07-24 15:14:39 -0600420static int sandbox_cmdline_cb_autoboot_keyed(struct sandbox_state *state,
421 const char *arg)
422{
423 state->autoboot_keyed = true;
424
425 return 0;
426}
427SANDBOX_CMDLINE_OPT(autoboot_keyed, 0, "Allow keyed autoboot");
428
Simon Glassb94eed52017-03-28 10:27:16 -0600429static void setup_ram_buf(struct sandbox_state *state)
430{
Simon Glass24a284a2018-11-23 21:29:29 -0700431 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glasscd3705e2019-04-08 13:20:43 -0600432 if (!state->ram_buf_read)
Simon Glass24a284a2018-11-23 21:29:29 -0700433 memset(state->ram_buf, '\0', state->ram_size);
Simon Glass24a284a2018-11-23 21:29:29 -0700434
Simon Glassb94eed52017-03-28 10:27:16 -0600435 gd->arch.ram_buf = state->ram_buf;
436 gd->ram_size = state->ram_size;
437}
438
Simon Glass46508c92018-11-15 18:44:03 -0700439void state_show(struct sandbox_state *state)
440{
441 char **p;
442
443 printf("Arguments:\n");
444 for (p = state->argv; *p; p++)
445 printf("%s ", *p);
446 printf("\n");
447}
448
Heinrich Schuchardt43eb8722020-12-02 16:22:11 +0100449void __efi_runtime EFIAPI efi_reset_system(
450 enum efi_reset_type reset_type,
451 efi_status_t reset_status,
452 unsigned long data_size, void *reset_data)
453{
Heinrich Schuchardt7fb72542021-11-20 14:49:18 +0100454 if (reset_type == EFI_RESET_SHUTDOWN)
455 sandbox_exit();
456 else
457 sandbox_reset();
Heinrich Schuchardt43eb8722020-12-02 16:22:11 +0100458}
459
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100460void sandbox_reset(void)
461{
462 /* Do this here while it still has an effect */
463 os_fd_restore();
464 if (state_uninit())
465 os_exit(2);
466
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100467 /* Restart U-Boot */
468 os_relaunch(os_argv);
469}
470
Andrew Scullca5d1372022-05-30 10:00:10 +0000471int sandbox_main(int argc, char *argv[])
Simon Glass5ba8ef62011-10-03 19:26:45 +0000472{
Simon Glass8a3e0352012-02-15 15:51:16 -0800473 struct sandbox_state *state;
Heinrich Schuchardtb8b92372021-05-15 19:29:13 +0200474 void * text_base;
Simon Glassc395fdf2014-07-10 22:23:27 -0600475 gd_t data;
Simon Glassedd094e2021-02-06 09:57:33 -0700476 int size;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700477 int ret;
Simon Glass20bf89a2012-02-15 15:51:15 -0800478
Heinrich Schuchardtb8b92372021-05-15 19:29:13 +0200479 text_base = os_find_text_base();
480
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100481 /*
Heinrich Schuchardte6d24be2021-05-11 21:03:16 +0200482 * This must be the first invocation of os_malloc() to have
483 * state->ram_buf in the low 4 GiB.
484 */
485 ret = state_init();
486 if (ret)
487 goto err;
488
489 /*
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100490 * Copy argv[] so that we can pass the arguments in the original
491 * sequence when resetting the sandbox.
492 */
Simon Glassedd094e2021-02-06 09:57:33 -0700493 size = sizeof(char *) * (argc + 1);
494 os_argv = os_malloc(size);
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100495 if (!os_argv)
496 os_exit(1);
Simon Glassedd094e2021-02-06 09:57:33 -0700497 memcpy(os_argv, argv, size);
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100498
Simon Glass752707a2019-04-08 13:20:41 -0600499 memset(&data, '\0', sizeof(data));
500 gd = &data;
Heinrich Schuchardtb8b92372021-05-15 19:29:13 +0200501 gd->arch.text_base = text_base;
Simon Glass752707a2019-04-08 13:20:41 -0600502
Simon Glass8a3e0352012-02-15 15:51:16 -0800503 state = state_get_current();
504 if (os_parse_args(state, argc, argv))
505 return 1;
506
Simon Glass22c793a2023-09-26 08:14:47 -0600507 if (state->ram_buf_fname) {
508 ret = os_read_ram_buf(state->ram_buf_fname);
509 if (ret) {
510 printf("Failed to read RAM buffer '%s': %d\n",
511 state->ram_buf_fname, ret);
512 } else {
513 state->ram_buf_read = true;
514 log_debug("Read RAM buffer from '%s'\n", state->ram_buf_fname);
515 }
516 }
517
Patrick Delaunay6daf9052020-11-20 09:48:33 +0100518 /* Remove old memory file if required */
519 if (state->ram_buf_rm && state->ram_buf_fname) {
520 os_unlink(state->ram_buf_fname);
521 state->write_ram_buf = false;
522 state->ram_buf_fname = NULL;
523 }
524
Simon Glass27191f12023-09-26 08:14:49 -0600525 if (state->read_state && state->state_fname) {
526 ret = sandbox_read_state(state, state->state_fname);
527 if (ret)
528 goto err;
529 }
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700530
Simon Glassb78cc9b2021-03-22 18:21:01 +1300531 if (state->handle_signals) {
532 ret = os_setup_signal_handlers();
533 if (ret)
534 goto err;
535 }
Heinrich Schuchardt28eb5092020-11-12 00:29:56 +0100536
Simon Glassadad2d02023-09-26 08:14:27 -0600537#if CONFIG_IS_ENABLED(SYS_MALLOC_F)
Tom Rinifb52b942022-12-04 10:04:49 -0500538 gd->malloc_base = CFG_MALLOC_F_ADDR;
Simon Glass0cc6f5c2014-07-10 22:23:31 -0600539#endif
Simon Glass4e9a64d2018-10-01 11:55:11 -0600540#if CONFIG_IS_ENABLED(LOG)
541 gd->default_log_level = state->default_log_level;
542#endif
Simon Glassb94eed52017-03-28 10:27:16 -0600543 setup_ram_buf(state);
Simon Glassc395fdf2014-07-10 22:23:27 -0600544
Simon Glass752707a2019-04-08 13:20:41 -0600545 /*
546 * Set up the relocation offset here, since sandbox symbols are always
547 * relocated by the OS before sandbox is entered.
548 */
549 gd->reloc_off = (ulong)gd->arch.text_base;
550
Patrick Delaunay053156d2020-11-27 11:20:55 +0100551 /* sandbox test: log functions called before log_init in board_init_f */
Patrick Delaunay053156d2020-11-27 11:20:55 +0100552 log_debug("debug: %s\n", __func__);
553
Simon Glass2fd34e62013-11-10 10:26:59 -0700554 /* Do pre- and post-relocation init */
Simon Glass5ba8ef62011-10-03 19:26:45 +0000555 board_init_f(0);
Allen Martin074b4552013-01-22 13:11:21 +0000556
Simon Glass2fd34e62013-11-10 10:26:59 -0700557 board_init_r(gd->new_gd, 0);
558
559 /* NOTREACHED - board_init_r() does not return */
Allen Martin074b4552013-01-22 13:11:21 +0000560 return 0;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700561
562err:
563 printf("Error %d\n", ret);
564 return 1;
Simon Glass5ba8ef62011-10-03 19:26:45 +0000565}