1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (c) 2011-2012 The Chromium OS Authors.
11 #include <asm/getopt.h>
13 #include <asm/sections.h>
14 #include <asm/state.h>
16 DECLARE_GLOBAL_DATA_PTR;
18 int sandbox_early_getopt_check(void)
20 struct sandbox_state *state = state_get_current();
21 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
22 size_t num_options = __u_boot_sandbox_option_count();
24 int max_arg_len, max_noarg_len;
26 /* parse_err will be a string of the faulting option */
27 if (!state->parse_err)
30 if (strcmp(state->parse_err, "help")) {
31 printf("u-boot: error: failed while parsing option: %s\n"
32 "\ttry running with --help for more information.\n",
38 "u-boot, a command line test interface to U-Boot\n\n"
39 "Usage: u-boot [options]\n"
43 for (i = 0; i < num_options; ++i)
44 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
45 max_noarg_len = max_arg_len + 7;
47 for (i = 0; i < num_options; ++i) {
48 struct sandbox_cmdline_option *opt = sb_opt[i];
50 /* first output the short flag if it has one */
51 if (opt->flag_short >= 0x100)
54 printf(" -%c, ", opt->flag_short);
56 /* then the long flag */
58 printf("--%-*s <arg> ", max_arg_len, opt->flag);
60 printf("--%-*s", max_noarg_len, opt->flag);
62 /* finally the help text */
63 printf(" %s\n", opt->help);
71 return sandbox_early_getopt_check();
74 static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
76 /* just flag to sandbox_early_getopt_check to show usage */
79 SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
81 #ifndef CONFIG_SPL_BUILD
82 int sandbox_main_loop_init(void)
84 struct sandbox_state *state = state_get_current();
86 /* Execute command if required */
87 if (state->cmd || state->run_distro_boot) {
94 retval = run_command_list(state->cmd, -1, 0);
96 if (state->run_distro_boot)
97 retval = cli_simple_run_command("run distro_bootcmd",
100 if (!state->interactive)
108 static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
111 state->run_distro_boot = true;
114 SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
116 static int sandbox_cmdline_cb_command(struct sandbox_state *state,
122 SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
124 static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
126 state->fdt_fname = arg;
129 SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
131 static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
134 const char *fmt = "%s.dtb";
138 len = strlen(state->argv[0]) + strlen(fmt) + 1;
139 fname = os_malloc(len);
142 snprintf(fname, len, fmt, state->argv[0]);
143 state->fdt_fname = fname;
147 SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
148 "Use the default u-boot.dtb control FDT in U-Boot directory");
150 static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
153 state->interactive = true;
157 SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
159 static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
162 /* Remember to delete this U-Boot image later */
163 state->jumped_fname = arg;
167 SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
169 static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
174 /* For now assume we always want to write it */
175 state->write_ram_buf = true;
176 state->ram_buf_fname = arg;
178 err = os_read_ram_buf(arg);
180 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
186 SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
187 "Read/write ram_buf memory contents from file");
189 static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
192 state->ram_buf_rm = true;
196 SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
198 static int sandbox_cmdline_cb_state(struct sandbox_state *state,
201 state->state_fname = arg;
204 SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
206 static int sandbox_cmdline_cb_read(struct sandbox_state *state,
209 state->read_state = true;
212 SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
214 static int sandbox_cmdline_cb_write(struct sandbox_state *state,
217 state->write_state = true;
220 SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
222 static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
225 state->ignore_missing_state_on_read = true;
228 SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
229 "Ignore missing state on read");
231 static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
234 state->show_lcd = true;
237 SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
238 "Show the sandbox LCD display");
240 static const char *term_args[STATE_TERM_COUNT] = {
246 static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
251 for (i = 0; i < STATE_TERM_COUNT; i++) {
252 if (!strcmp(arg, term_args[i])) {
258 printf("Unknown terminal setting '%s' (", arg);
259 for (i = 0; i < STATE_TERM_COUNT; i++)
260 printf("%s%s", i ? ", " : "", term_args[i]);
265 SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
266 "Set terminal to raw/cooked mode");
268 static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
271 state->show_test_output = true;
274 SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
276 static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
279 state->default_log_level = simple_strtol(arg, NULL, 10);
283 SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
284 "Set log level (0=panic, 7=debug)");
286 static int sandbox_cmdline_cb_show_of_platdata(struct sandbox_state *state,
289 state->show_of_platdata = true;
293 SANDBOX_CMDLINE_OPT(show_of_platdata, 0, "Show of-platdata in SPL");
295 int board_run_command(const char *cmdline)
297 printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n");
302 static void setup_ram_buf(struct sandbox_state *state)
304 gd->arch.ram_buf = state->ram_buf;
305 gd->ram_size = state->ram_size;
308 void state_show(struct sandbox_state *state)
312 printf("Arguments:\n");
313 for (p = state->argv; *p; p++)
318 int main(int argc, char *argv[])
320 struct sandbox_state *state;
328 state = state_get_current();
329 if (os_parse_args(state, argc, argv))
332 ret = sandbox_read_state(state, state->state_fname);
336 memset(&data, '\0', sizeof(data));
338 #if CONFIG_VAL(SYS_MALLOC_F_LEN)
339 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
341 #if CONFIG_IS_ENABLED(LOG)
342 gd->default_log_level = state->default_log_level;
344 setup_ram_buf(state);
346 /* Do pre- and post-relocation init */
349 board_init_r(gd->new_gd, 0);
351 /* NOTREACHED - board_init_r() does not return */
355 printf("Error %d\n", ret);