blob: fff9cbdd79dbb2b5399a898ed2d6a0a091353002 [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 Glass5c2859c2013-11-10 10:27:03 -07009#include <os.h>
Rabin Vincent7dbcb762014-10-29 23:21:38 +010010#include <cli.h>
Simon Glass1f32ae92015-01-19 20:21:34 -070011#include <malloc.h>
Simon Glass70db4212012-02-15 15:51:16 -080012#include <asm/getopt.h>
Simon Glass4d94dfa2014-07-10 22:23:27 -060013#include <asm/io.h>
Simon Glass70db4212012-02-15 15:51:16 -080014#include <asm/sections.h>
Simon Glass6fb62072012-02-15 15:51:15 -080015#include <asm/state.h>
Simon Glassbace3d02011-10-03 19:26:45 +000016
Simon Glass808434c2013-11-10 10:26:59 -070017DECLARE_GLOBAL_DATA_PTR;
18
Simon Glass70db4212012-02-15 15:51:16 -080019int sandbox_early_getopt_check(void)
20{
21 struct sandbox_state *state = state_get_current();
Simon Glass7b3efc62013-12-03 16:43:23 -070022 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass70db4212012-02-15 15:51:16 -080023 size_t num_options = __u_boot_sandbox_option_count();
24 size_t i;
25 int max_arg_len, max_noarg_len;
26
27 /* parse_err will be a string of the faulting option */
28 if (!state->parse_err)
29 return 0;
30
31 if (strcmp(state->parse_err, "help")) {
32 printf("u-boot: error: failed while parsing option: %s\n"
33 "\ttry running with --help for more information.\n",
34 state->parse_err);
35 os_exit(1);
36 }
37
38 printf(
39 "u-boot, a command line test interface to U-Boot\n\n"
40 "Usage: u-boot [options]\n"
41 "Options:\n");
42
43 max_arg_len = 0;
44 for (i = 0; i < num_options; ++i)
Masahiro Yamadab4141192014-11-07 03:03:31 +090045 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass70db4212012-02-15 15:51:16 -080046 max_noarg_len = max_arg_len + 7;
47
48 for (i = 0; i < num_options; ++i) {
Simon Glass7b3efc62013-12-03 16:43:23 -070049 struct sandbox_cmdline_option *opt = sb_opt[i];
Simon Glass70db4212012-02-15 15:51:16 -080050
51 /* first output the short flag if it has one */
52 if (opt->flag_short >= 0x100)
53 printf(" ");
54 else
55 printf(" -%c, ", opt->flag_short);
56
57 /* then the long flag */
58 if (opt->has_arg)
Simon Glass70db4212012-02-15 15:51:16 -080059 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass6ebcab82013-11-10 10:26:58 -070060 else
61 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass70db4212012-02-15 15:51:16 -080062
63 /* finally the help text */
64 printf(" %s\n", opt->help);
65 }
66
67 os_exit(0);
68}
69
Simon Glass68969772017-03-28 10:27:28 -060070int misc_init_f(void)
71{
72 return sandbox_early_getopt_check();
73}
74
Simon Glass7b3efc62013-12-03 16:43:23 -070075static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -080076{
77 /* just flag to sandbox_early_getopt_check to show usage */
78 return 1;
79}
Simon Glass7b3efc62013-12-03 16:43:23 -070080SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass70db4212012-02-15 15:51:16 -080081
Simon Glassd0d07462016-07-04 11:57:50 -060082#ifndef CONFIG_SPL_BUILD
Simon Glassab4e07e2012-02-26 17:38:50 -050083int sandbox_main_loop_init(void)
84{
Simon Glass70db4212012-02-15 15:51:16 -080085 struct sandbox_state *state = state_get_current();
86
87 /* Execute command if required */
Sjoerd Simonsebaa8322015-04-30 22:16:09 +020088 if (state->cmd || state->run_distro_boot) {
89 int retval = 0;
Joe Hershberger88539e42015-02-06 15:37:31 -060090
Rabin Vincent7dbcb762014-10-29 23:21:38 +010091 cli_init();
92
Simon Glass2b6793d2016-03-13 19:07:30 -060093#ifdef CONFIG_CMDLINE
Sjoerd Simonsebaa8322015-04-30 22:16:09 +020094 if (state->cmd)
95 retval = run_command_list(state->cmd, -1, 0);
96
97 if (state->run_distro_boot)
98 retval = cli_simple_run_command("run distro_bootcmd",
99 0);
Simon Glass2b6793d2016-03-13 19:07:30 -0600100#endif
Simon Glassc5a62d42013-11-10 10:27:02 -0700101 if (!state->interactive)
Joe Hershberger88539e42015-02-06 15:37:31 -0600102 os_exit(retval);
Simon Glass70db4212012-02-15 15:51:16 -0800103 }
104
Simon Glassab4e07e2012-02-26 17:38:50 -0500105 return 0;
106}
Simon Glassd0d07462016-07-04 11:57:50 -0600107#endif
Simon Glassab4e07e2012-02-26 17:38:50 -0500108
Sjoerd Simonsebaa8322015-04-30 22:16:09 +0200109static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
110 const char *arg)
111{
112 state->run_distro_boot = true;
113 return 0;
114}
115SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
116
Simon Glass7b3efc62013-12-03 16:43:23 -0700117static int sandbox_cmdline_cb_command(struct sandbox_state *state,
118 const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -0800119{
120 state->cmd = arg;
121 return 0;
122}
Simon Glass7b3efc62013-12-03 16:43:23 -0700123SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass70db4212012-02-15 15:51:16 -0800124
Simon Glass7b3efc62013-12-03 16:43:23 -0700125static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glassf828bf22013-04-20 08:42:41 +0000126{
127 state->fdt_fname = arg;
128 return 0;
129}
Simon Glass7b3efc62013-12-03 16:43:23 -0700130SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glassf828bf22013-04-20 08:42:41 +0000131
Simon Glass1f32ae92015-01-19 20:21:34 -0700132static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
133 const char *arg)
134{
135 const char *fmt = "%s.dtb";
136 char *fname;
137 int len;
138
139 len = strlen(state->argv[0]) + strlen(fmt) + 1;
140 fname = os_malloc(len);
141 if (!fname)
142 return -ENOMEM;
143 snprintf(fname, len, fmt, state->argv[0]);
144 state->fdt_fname = fname;
145
146 return 0;
147}
148SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
149 "Use the default u-boot.dtb control FDT in U-Boot directory");
150
Simon Glass189882c2019-09-25 08:56:07 -0600151static int sandbox_cmdline_cb_test_fdt(struct sandbox_state *state,
152 const char *arg)
153{
154 const char *fmt = "/arch/sandbox/dts/test.dtb";
155 char *p;
156 char *fname;
157 int len;
158
159 len = strlen(state->argv[0]) + strlen(fmt) + 1;
160 fname = os_malloc(len);
161 if (!fname)
162 return -ENOMEM;
163 strcpy(fname, state->argv[0]);
164 p = strrchr(fname, '/');
165 if (!p)
166 p = fname + strlen(fname);
167 len -= p - fname;
168 snprintf(p, len, fmt, p);
169 state->fdt_fname = fname;
170
171 return 0;
172}
173SANDBOX_CMDLINE_OPT_SHORT(test_fdt, 'T', 0,
174 "Use the test.dtb control FDT in U-Boot directory");
175
Simon Glassc5a62d42013-11-10 10:27:02 -0700176static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
177 const char *arg)
178{
179 state->interactive = true;
180 return 0;
181}
182
183SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
184
Simon Glassbda77732014-02-27 13:26:16 -0700185static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
186 const char *arg)
187{
Simon Glassab839dc2014-02-27 13:26:23 -0700188 /* Remember to delete this U-Boot image later */
189 state->jumped_fname = arg;
Simon Glassbda77732014-02-27 13:26:16 -0700190
191 return 0;
192}
193SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
194
Simon Glass5c2859c2013-11-10 10:27:03 -0700195static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
196 const char *arg)
197{
198 int err;
199
200 /* For now assume we always want to write it */
201 state->write_ram_buf = true;
202 state->ram_buf_fname = arg;
203
Simon Glassf80a8bb2014-11-11 12:47:08 -0700204 err = os_read_ram_buf(arg);
205 if (err) {
Simon Glass1c5a81d2018-10-01 11:55:12 -0600206 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
Simon Glass5c2859c2013-11-10 10:27:03 -0700207 return err;
208 }
Simon Glassa65d1a02018-11-23 21:29:29 -0700209 state->ram_buf_read = true;
Simon Glass5c2859c2013-11-10 10:27:03 -0700210
211 return 0;
212}
213SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
214 "Read/write ram_buf memory contents from file");
215
Simon Glassab839dc2014-02-27 13:26:23 -0700216static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
217 const char *arg)
218{
219 state->ram_buf_rm = true;
220
221 return 0;
222}
223SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
224
Simon Glass1209e272013-11-10 10:27:04 -0700225static int sandbox_cmdline_cb_state(struct sandbox_state *state,
226 const char *arg)
227{
228 state->state_fname = arg;
229 return 0;
230}
231SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
232
233static int sandbox_cmdline_cb_read(struct sandbox_state *state,
234 const char *arg)
235{
236 state->read_state = true;
237 return 0;
238}
239SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
240
241static int sandbox_cmdline_cb_write(struct sandbox_state *state,
242 const char *arg)
243{
244 state->write_state = true;
245 return 0;
246}
247SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
248
249static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
250 const char *arg)
251{
252 state->ignore_missing_state_on_read = true;
253 return 0;
254}
255SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
256 "Ignore missing state on read");
257
Simon Glass7d95f2a2014-02-27 13:26:19 -0700258static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
259 const char *arg)
260{
261 state->show_lcd = true;
262 return 0;
263}
264SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
265 "Show the sandbox LCD display");
266
Simon Glassffb87902014-02-27 13:26:22 -0700267static const char *term_args[STATE_TERM_COUNT] = {
268 "raw-with-sigs",
269 "raw",
270 "cooked",
271};
272
273static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
274 const char *arg)
275{
276 int i;
277
278 for (i = 0; i < STATE_TERM_COUNT; i++) {
279 if (!strcmp(arg, term_args[i])) {
280 state->term_raw = i;
281 return 0;
282 }
283 }
284
285 printf("Unknown terminal setting '%s' (", arg);
286 for (i = 0; i < STATE_TERM_COUNT; i++)
287 printf("%s%s", i ? ", " : "", term_args[i]);
288 puts(")\n");
289
290 return 1;
291}
292SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
293 "Set terminal to raw/cooked mode");
294
Simon Glass9ce8b402015-11-08 23:47:50 -0700295static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
296 const char *arg)
297{
298 state->show_test_output = true;
299 return 0;
300}
301SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
302
Simon Glass2b1dc292018-10-01 11:55:11 -0600303static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
304 const char *arg)
305{
306 state->default_log_level = simple_strtol(arg, NULL, 10);
307
308 return 0;
309}
310SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
311 "Set log level (0=panic, 7=debug)");
312
Simon Glass1ca910b2018-11-15 18:44:01 -0700313static int sandbox_cmdline_cb_show_of_platdata(struct sandbox_state *state,
314 const char *arg)
315{
316 state->show_of_platdata = true;
317
318 return 0;
319}
320SANDBOX_CMDLINE_OPT(show_of_platdata, 0, "Show of-platdata in SPL");
321
Simon Glass2b6793d2016-03-13 19:07:30 -0600322int board_run_command(const char *cmdline)
323{
324 printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n");
325
326 return 1;
327}
328
Simon Glassbb967242017-03-28 10:27:16 -0600329static void setup_ram_buf(struct sandbox_state *state)
330{
Simon Glassa65d1a02018-11-23 21:29:29 -0700331 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glass5dbe7942019-04-08 13:20:43 -0600332 if (!state->ram_buf_read)
Simon Glassa65d1a02018-11-23 21:29:29 -0700333 memset(state->ram_buf, '\0', state->ram_size);
Simon Glassa65d1a02018-11-23 21:29:29 -0700334
Simon Glassbb967242017-03-28 10:27:16 -0600335 gd->arch.ram_buf = state->ram_buf;
336 gd->ram_size = state->ram_size;
337}
338
Simon Glassd66ddaf2018-11-15 18:44:03 -0700339void state_show(struct sandbox_state *state)
340{
341 char **p;
342
343 printf("Arguments:\n");
344 for (p = state->argv; *p; p++)
345 printf("%s ", *p);
346 printf("\n");
347}
348
Simon Glassbace3d02011-10-03 19:26:45 +0000349int main(int argc, char *argv[])
350{
Simon Glass70db4212012-02-15 15:51:16 -0800351 struct sandbox_state *state;
Simon Glass4d94dfa2014-07-10 22:23:27 -0600352 gd_t data;
Simon Glass1209e272013-11-10 10:27:04 -0700353 int ret;
Simon Glass6fb62072012-02-15 15:51:15 -0800354
Simon Glass001d1882019-04-08 13:20:41 -0600355 memset(&data, '\0', sizeof(data));
356 gd = &data;
357 gd->arch.text_base = os_find_text_base();
358
Simon Glass1209e272013-11-10 10:27:04 -0700359 ret = state_init();
360 if (ret)
361 goto err;
Simon Glass6fb62072012-02-15 15:51:15 -0800362
Simon Glass70db4212012-02-15 15:51:16 -0800363 state = state_get_current();
364 if (os_parse_args(state, argc, argv))
365 return 1;
366
Simon Glass1209e272013-11-10 10:27:04 -0700367 ret = sandbox_read_state(state, state->state_fname);
368 if (ret)
369 goto err;
370
Andy Yan1fc50d72017-07-24 17:49:59 +0800371#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass29afe9e2014-07-10 22:23:31 -0600372 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
373#endif
Simon Glass2b1dc292018-10-01 11:55:11 -0600374#if CONFIG_IS_ENABLED(LOG)
375 gd->default_log_level = state->default_log_level;
376#endif
Simon Glassbb967242017-03-28 10:27:16 -0600377 setup_ram_buf(state);
Simon Glass4d94dfa2014-07-10 22:23:27 -0600378
Simon Glass001d1882019-04-08 13:20:41 -0600379 /*
380 * Set up the relocation offset here, since sandbox symbols are always
381 * relocated by the OS before sandbox is entered.
382 */
383 gd->reloc_off = (ulong)gd->arch.text_base;
384
Simon Glass808434c2013-11-10 10:26:59 -0700385 /* Do pre- and post-relocation init */
Simon Glassbace3d02011-10-03 19:26:45 +0000386 board_init_f(0);
Allen Martin8ec21bb2013-01-22 13:11:21 +0000387
Simon Glass808434c2013-11-10 10:26:59 -0700388 board_init_r(gd->new_gd, 0);
389
390 /* NOTREACHED - board_init_r() does not return */
Allen Martin8ec21bb2013-01-22 13:11:21 +0000391 return 0;
Simon Glass1209e272013-11-10 10:27:04 -0700392
393err:
394 printf("Error %d\n", ret);
395 return 1;
Simon Glassbace3d02011-10-03 19:26:45 +0000396}