blob: bbd9e77afed90673b4879d72f20c4505c71be4fa [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{
275 int err;
276
277 /* For now assume we always want to write it */
278 state->write_ram_buf = true;
279 state->ram_buf_fname = arg;
280
Simon Glassc043e032014-11-11 12:47:08 -0700281 err = os_read_ram_buf(arg);
282 if (err) {
Simon Glass332894d2018-10-01 11:55:12 -0600283 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
Simon Glass9dd10bf2013-11-10 10:27:03 -0700284 return err;
285 }
Simon Glass24a284a2018-11-23 21:29:29 -0700286 state->ram_buf_read = true;
Simon Glass9dd10bf2013-11-10 10:27:03 -0700287
288 return 0;
289}
290SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
291 "Read/write ram_buf memory contents from file");
292
Simon Glass47acfc62014-02-27 13:26:23 -0700293static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
294 const char *arg)
295{
296 state->ram_buf_rm = true;
297
298 return 0;
299}
300SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
301
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700302static int sandbox_cmdline_cb_state(struct sandbox_state *state,
303 const char *arg)
304{
305 state->state_fname = arg;
306 return 0;
307}
308SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
309
310static int sandbox_cmdline_cb_read(struct sandbox_state *state,
311 const char *arg)
312{
313 state->read_state = true;
314 return 0;
315}
316SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
317
318static int sandbox_cmdline_cb_write(struct sandbox_state *state,
319 const char *arg)
320{
321 state->write_state = true;
322 return 0;
323}
324SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
325
326static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
327 const char *arg)
328{
329 state->ignore_missing_state_on_read = true;
330 return 0;
331}
332SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
333 "Ignore missing state on read");
334
Simon Glassb9ddbf42014-02-27 13:26:19 -0700335static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
336 const char *arg)
337{
338 state->show_lcd = true;
339 return 0;
340}
341SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
342 "Show the sandbox LCD display");
343
Simon Glassf91de0b2020-02-03 07:36:13 -0700344static int sandbox_cmdline_cb_double_lcd(struct sandbox_state *state,
345 const char *arg)
346{
347 state->double_lcd = true;
348
349 return 0;
350}
351SANDBOX_CMDLINE_OPT_SHORT(double_lcd, 'K', 0,
352 "Double the LCD display size in each direction");
353
Simon Glass678ef472014-02-27 13:26:22 -0700354static const char *term_args[STATE_TERM_COUNT] = {
355 "raw-with-sigs",
356 "raw",
357 "cooked",
358};
359
360static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
361 const char *arg)
362{
363 int i;
364
365 for (i = 0; i < STATE_TERM_COUNT; i++) {
366 if (!strcmp(arg, term_args[i])) {
367 state->term_raw = i;
368 return 0;
369 }
370 }
371
372 printf("Unknown terminal setting '%s' (", arg);
373 for (i = 0; i < STATE_TERM_COUNT; i++)
374 printf("%s%s", i ? ", " : "", term_args[i]);
375 puts(")\n");
376
377 return 1;
378}
379SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
380 "Set terminal to raw/cooked mode");
381
Simon Glassfe6d12a2015-11-08 23:47:50 -0700382static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
383 const char *arg)
384{
385 state->show_test_output = true;
386 return 0;
387}
388SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
389
Simon Glass4e9a64d2018-10-01 11:55:11 -0600390static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
391 const char *arg)
392{
393 state->default_log_level = simple_strtol(arg, NULL, 10);
394
395 return 0;
396}
397SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
398 "Set log level (0=panic, 7=debug)");
399
Simon Glassa4e289b2020-10-25 20:38:28 -0600400static int sandbox_cmdline_cb_unittests(struct sandbox_state *state,
401 const char *arg)
402{
403 state->run_unittests = true;
404
405 return 0;
406}
407SANDBOX_CMDLINE_OPT_SHORT(unittests, 'u', 0, "Run unit tests");
408
Simon Glasseff96582020-10-25 20:38:33 -0600409static int sandbox_cmdline_cb_select_unittests(struct sandbox_state *state,
410 const char *arg)
411{
412 state->select_unittests = arg;
413
414 return 0;
415}
416SANDBOX_CMDLINE_OPT_SHORT(select_unittests, 'k', 1, "Select unit tests to run");
417
Simon Glassb78cc9b2021-03-22 18:21:01 +1300418static int sandbox_cmdline_cb_signals(struct sandbox_state *state,
419 const char *arg)
420{
421 state->handle_signals = true;
422
423 return 0;
424}
425SANDBOX_CMDLINE_OPT_SHORT(signals, 'S', 0,
426 "Handle signals (such as SIGSEGV) in sandbox");
427
Simon Glassd8c60172021-07-24 15:14:39 -0600428static int sandbox_cmdline_cb_autoboot_keyed(struct sandbox_state *state,
429 const char *arg)
430{
431 state->autoboot_keyed = true;
432
433 return 0;
434}
435SANDBOX_CMDLINE_OPT(autoboot_keyed, 0, "Allow keyed autoboot");
436
Simon Glassb94eed52017-03-28 10:27:16 -0600437static void setup_ram_buf(struct sandbox_state *state)
438{
Simon Glass24a284a2018-11-23 21:29:29 -0700439 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glasscd3705e2019-04-08 13:20:43 -0600440 if (!state->ram_buf_read)
Simon Glass24a284a2018-11-23 21:29:29 -0700441 memset(state->ram_buf, '\0', state->ram_size);
Simon Glass24a284a2018-11-23 21:29:29 -0700442
Simon Glassb94eed52017-03-28 10:27:16 -0600443 gd->arch.ram_buf = state->ram_buf;
444 gd->ram_size = state->ram_size;
445}
446
Simon Glass46508c92018-11-15 18:44:03 -0700447void state_show(struct sandbox_state *state)
448{
449 char **p;
450
451 printf("Arguments:\n");
452 for (p = state->argv; *p; p++)
453 printf("%s ", *p);
454 printf("\n");
455}
456
Heinrich Schuchardt43eb8722020-12-02 16:22:11 +0100457void __efi_runtime EFIAPI efi_reset_system(
458 enum efi_reset_type reset_type,
459 efi_status_t reset_status,
460 unsigned long data_size, void *reset_data)
461{
Heinrich Schuchardt7fb72542021-11-20 14:49:18 +0100462 if (reset_type == EFI_RESET_SHUTDOWN)
463 sandbox_exit();
464 else
465 sandbox_reset();
Heinrich Schuchardt43eb8722020-12-02 16:22:11 +0100466}
467
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100468void sandbox_reset(void)
469{
470 /* Do this here while it still has an effect */
471 os_fd_restore();
472 if (state_uninit())
473 os_exit(2);
474
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100475 /* Restart U-Boot */
476 os_relaunch(os_argv);
477}
478
Andrew Scullca5d1372022-05-30 10:00:10 +0000479int sandbox_main(int argc, char *argv[])
Simon Glass5ba8ef62011-10-03 19:26:45 +0000480{
Simon Glass8a3e0352012-02-15 15:51:16 -0800481 struct sandbox_state *state;
Heinrich Schuchardtb8b92372021-05-15 19:29:13 +0200482 void * text_base;
Simon Glassc395fdf2014-07-10 22:23:27 -0600483 gd_t data;
Simon Glassedd094e2021-02-06 09:57:33 -0700484 int size;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700485 int ret;
Simon Glass20bf89a2012-02-15 15:51:15 -0800486
Heinrich Schuchardtb8b92372021-05-15 19:29:13 +0200487 text_base = os_find_text_base();
488
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100489 /*
Heinrich Schuchardte6d24be2021-05-11 21:03:16 +0200490 * This must be the first invocation of os_malloc() to have
491 * state->ram_buf in the low 4 GiB.
492 */
493 ret = state_init();
494 if (ret)
495 goto err;
496
497 /*
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100498 * Copy argv[] so that we can pass the arguments in the original
499 * sequence when resetting the sandbox.
500 */
Simon Glassedd094e2021-02-06 09:57:33 -0700501 size = sizeof(char *) * (argc + 1);
502 os_argv = os_malloc(size);
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100503 if (!os_argv)
504 os_exit(1);
Simon Glassedd094e2021-02-06 09:57:33 -0700505 memcpy(os_argv, argv, size);
Heinrich Schuchardt1c678442020-10-27 20:29:25 +0100506
Simon Glass752707a2019-04-08 13:20:41 -0600507 memset(&data, '\0', sizeof(data));
508 gd = &data;
Heinrich Schuchardtb8b92372021-05-15 19:29:13 +0200509 gd->arch.text_base = text_base;
Simon Glass752707a2019-04-08 13:20:41 -0600510
Simon Glass8a3e0352012-02-15 15:51:16 -0800511 state = state_get_current();
512 if (os_parse_args(state, argc, argv))
513 return 1;
514
Patrick Delaunay6daf9052020-11-20 09:48:33 +0100515 /* Remove old memory file if required */
516 if (state->ram_buf_rm && state->ram_buf_fname) {
517 os_unlink(state->ram_buf_fname);
518 state->write_ram_buf = false;
519 state->ram_buf_fname = NULL;
520 }
521
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700522 ret = sandbox_read_state(state, state->state_fname);
523 if (ret)
524 goto err;
525
Simon Glassb78cc9b2021-03-22 18:21:01 +1300526 if (state->handle_signals) {
527 ret = os_setup_signal_handlers();
528 if (ret)
529 goto err;
530 }
Heinrich Schuchardt28eb5092020-11-12 00:29:56 +0100531
Simon Glassadad2d02023-09-26 08:14:27 -0600532#if CONFIG_IS_ENABLED(SYS_MALLOC_F)
Tom Rinifb52b942022-12-04 10:04:49 -0500533 gd->malloc_base = CFG_MALLOC_F_ADDR;
Simon Glass0cc6f5c2014-07-10 22:23:31 -0600534#endif
Simon Glass4e9a64d2018-10-01 11:55:11 -0600535#if CONFIG_IS_ENABLED(LOG)
536 gd->default_log_level = state->default_log_level;
537#endif
Simon Glassb94eed52017-03-28 10:27:16 -0600538 setup_ram_buf(state);
Simon Glassc395fdf2014-07-10 22:23:27 -0600539
Simon Glass752707a2019-04-08 13:20:41 -0600540 /*
541 * Set up the relocation offset here, since sandbox symbols are always
542 * relocated by the OS before sandbox is entered.
543 */
544 gd->reloc_off = (ulong)gd->arch.text_base;
545
Patrick Delaunay053156d2020-11-27 11:20:55 +0100546 /* sandbox test: log functions called before log_init in board_init_f */
Patrick Delaunay053156d2020-11-27 11:20:55 +0100547 log_debug("debug: %s\n", __func__);
548
Simon Glass2fd34e62013-11-10 10:26:59 -0700549 /* Do pre- and post-relocation init */
Simon Glass5ba8ef62011-10-03 19:26:45 +0000550 board_init_f(0);
Allen Martin074b4552013-01-22 13:11:21 +0000551
Simon Glass2fd34e62013-11-10 10:26:59 -0700552 board_init_r(gd->new_gd, 0);
553
554 /* NOTREACHED - board_init_r() does not return */
Allen Martin074b4552013-01-22 13:11:21 +0000555 return 0;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700556
557err:
558 printf("Error %d\n", ret);
559 return 1;
Simon Glass5ba8ef62011-10-03 19:26:45 +0000560}