blob: b6ff5c3d647262f97337e91d07071cb8b825ad46 [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 Glassadaaa482019-11-14 12:57:43 -07007#include <command.h>
Simon Glass07a3b232015-05-04 11:31:08 -06008#include <errno.h>
Simon Glass9dd10bf2013-11-10 10:27:03 -07009#include <os.h>
Rabin Vincent7e0194a2014-10-29 23:21:38 +010010#include <cli.h>
Simon Glass11c92b12020-02-03 07:35:47 -070011#include <sort.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080012#include <asm/getopt.h>
Simon Glassc395fdf2014-07-10 22:23:27 -060013#include <asm/io.h>
Simon Glass30f92052020-02-03 07:36:05 -070014#include <asm/malloc.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080015#include <asm/sections.h>
Simon Glass20bf89a2012-02-15 15:51:15 -080016#include <asm/state.h>
Simon Glass11c92b12020-02-03 07:35:47 -070017#include <linux/ctype.h>
Simon Glass5ba8ef62011-10-03 19:26:45 +000018
Simon Glass2fd34e62013-11-10 10:26:59 -070019DECLARE_GLOBAL_DATA_PTR;
20
Simon Glass11c92b12020-02-03 07:35:47 -070021/* Compare two options so that they can be sorted into alphabetical order */
22static int h_compare_opt(const void *p1, const void *p2)
23{
24 const struct sandbox_cmdline_option *opt1 = p1;
25 const struct sandbox_cmdline_option *opt2 = p2;
26 const char *str1, *str2;
27 char flag1[2], flag2[2];
28
29 opt1 = *(struct sandbox_cmdline_option **)p1;
30 opt2 = *(struct sandbox_cmdline_option **)p2;
31 flag1[1] = '\0';
32 flag2[1] = '\0';
33
34 *flag1 = opt1->flag_short < 0x100 ? opt1->flag_short : '\0';
35 *flag2 = opt2->flag_short < 0x100 ? opt2->flag_short : '\0';
36
37 str1 = *flag1 ? flag1 : opt1->flag;
38 str2 = *flag2 ? flag2 : opt2->flag;
39
40 /*
41 * Force lower-case flags to come before upper-case ones. We only
42 * support upper-case for short flags.
43 */
44 if (isalpha(*str1) && isalpha(*str2) &&
45 tolower(*str1) == tolower(*str2))
46 return isupper(*str1) - isupper(*str2);
47
48 return strcasecmp(str1, str2);
49}
50
Simon Glass8a3e0352012-02-15 15:51:16 -080051int sandbox_early_getopt_check(void)
52{
53 struct sandbox_state *state = state_get_current();
Simon Glass64367c82013-12-03 16:43:23 -070054 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass8a3e0352012-02-15 15:51:16 -080055 size_t num_options = __u_boot_sandbox_option_count();
56 size_t i;
57 int max_arg_len, max_noarg_len;
Simon Glass11c92b12020-02-03 07:35:47 -070058 struct sandbox_cmdline_option **sorted_opt;
59 int size;
Simon Glass8a3e0352012-02-15 15:51:16 -080060
61 /* parse_err will be a string of the faulting option */
62 if (!state->parse_err)
63 return 0;
64
65 if (strcmp(state->parse_err, "help")) {
66 printf("u-boot: error: failed while parsing option: %s\n"
67 "\ttry running with --help for more information.\n",
68 state->parse_err);
69 os_exit(1);
70 }
71
72 printf(
73 "u-boot, a command line test interface to U-Boot\n\n"
74 "Usage: u-boot [options]\n"
75 "Options:\n");
76
77 max_arg_len = 0;
78 for (i = 0; i < num_options; ++i)
Masahiro Yamadadb204642014-11-07 03:03:31 +090079 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass8a3e0352012-02-15 15:51:16 -080080 max_noarg_len = max_arg_len + 7;
81
Simon Glass11c92b12020-02-03 07:35:47 -070082 /* Sort the options */
83 size = sizeof(*sorted_opt) * num_options;
84 sorted_opt = malloc(size);
85 if (!sorted_opt) {
86 printf("No memory to sort options\n");
87 os_exit(1);
88 }
89 memcpy(sorted_opt, sb_opt, size);
90 qsort(sorted_opt, num_options, sizeof(*sorted_opt), h_compare_opt);
91
Simon Glass8a3e0352012-02-15 15:51:16 -080092 for (i = 0; i < num_options; ++i) {
Simon Glass11c92b12020-02-03 07:35:47 -070093 struct sandbox_cmdline_option *opt = sorted_opt[i];
Simon Glass8a3e0352012-02-15 15:51:16 -080094
95 /* first output the short flag if it has one */
96 if (opt->flag_short >= 0x100)
97 printf(" ");
98 else
99 printf(" -%c, ", opt->flag_short);
100
101 /* then the long flag */
102 if (opt->has_arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800103 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass5f679f02013-11-10 10:26:58 -0700104 else
105 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass8a3e0352012-02-15 15:51:16 -0800106
107 /* finally the help text */
108 printf(" %s\n", opt->help);
109 }
110
111 os_exit(0);
112}
113
Simon Glassb419dbb2017-03-28 10:27:28 -0600114int misc_init_f(void)
115{
116 return sandbox_early_getopt_check();
117}
118
Simon Glass64367c82013-12-03 16:43:23 -0700119static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800120{
121 /* just flag to sandbox_early_getopt_check to show usage */
122 return 1;
123}
Simon Glass64367c82013-12-03 16:43:23 -0700124SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass8a3e0352012-02-15 15:51:16 -0800125
Simon Glass5cf16632016-07-04 11:57:50 -0600126#ifndef CONFIG_SPL_BUILD
Simon Glass0fc3c222012-02-26 17:38:50 -0500127int sandbox_main_loop_init(void)
128{
Simon Glass8a3e0352012-02-15 15:51:16 -0800129 struct sandbox_state *state = state_get_current();
130
131 /* Execute command if required */
Sjoerd Simons335f4702015-04-30 22:16:09 +0200132 if (state->cmd || state->run_distro_boot) {
133 int retval = 0;
Joe Hershberger744d7882015-02-06 15:37:31 -0600134
Rabin Vincent7e0194a2014-10-29 23:21:38 +0100135 cli_init();
136
Simon Glasse0f12802016-03-13 19:07:30 -0600137#ifdef CONFIG_CMDLINE
Sjoerd Simons335f4702015-04-30 22:16:09 +0200138 if (state->cmd)
139 retval = run_command_list(state->cmd, -1, 0);
140
141 if (state->run_distro_boot)
142 retval = cli_simple_run_command("run distro_bootcmd",
143 0);
Simon Glasse0f12802016-03-13 19:07:30 -0600144#endif
Simon Glassf498e432013-11-10 10:27:02 -0700145 if (!state->interactive)
Joe Hershberger744d7882015-02-06 15:37:31 -0600146 os_exit(retval);
Simon Glass8a3e0352012-02-15 15:51:16 -0800147 }
148
Sjoerd Simons335f4702015-04-30 22:16:09 +0200149 return 0;
150}
Simon Glass5cf16632016-07-04 11:57:50 -0600151#endif
Sjoerd Simons335f4702015-04-30 22:16:09 +0200152
153static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
154 const char *arg)
155{
156 state->run_distro_boot = true;
Simon Glass0fc3c222012-02-26 17:38:50 -0500157 return 0;
158}
Sjoerd Simons335f4702015-04-30 22:16:09 +0200159SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
Simon Glass0fc3c222012-02-26 17:38:50 -0500160
Simon Glass64367c82013-12-03 16:43:23 -0700161static int sandbox_cmdline_cb_command(struct sandbox_state *state,
162 const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800163{
164 state->cmd = arg;
165 return 0;
166}
Simon Glass64367c82013-12-03 16:43:23 -0700167SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass8a3e0352012-02-15 15:51:16 -0800168
Simon Glass64367c82013-12-03 16:43:23 -0700169static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glass15393432013-04-20 08:42:41 +0000170{
171 state->fdt_fname = arg;
172 return 0;
173}
Simon Glass64367c82013-12-03 16:43:23 -0700174SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glass15393432013-04-20 08:42:41 +0000175
Simon Glass8e170782015-01-19 20:21:34 -0700176static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
177 const char *arg)
178{
179 const char *fmt = "%s.dtb";
180 char *fname;
181 int len;
182
183 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glass30f92052020-02-03 07:36:05 -0700184 fname = malloc(len);
Simon Glass8e170782015-01-19 20:21:34 -0700185 if (!fname)
186 return -ENOMEM;
187 snprintf(fname, len, fmt, state->argv[0]);
188 state->fdt_fname = fname;
189
190 return 0;
191}
192SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
193 "Use the default u-boot.dtb control FDT in U-Boot directory");
194
Simon Glass3c3968f2019-09-25 08:56:07 -0600195static int sandbox_cmdline_cb_test_fdt(struct sandbox_state *state,
196 const char *arg)
197{
198 const char *fmt = "/arch/sandbox/dts/test.dtb";
199 char *p;
200 char *fname;
201 int len;
202
203 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glass30f92052020-02-03 07:36:05 -0700204 fname = malloc(len);
Simon Glass3c3968f2019-09-25 08:56:07 -0600205 if (!fname)
206 return -ENOMEM;
207 strcpy(fname, state->argv[0]);
208 p = strrchr(fname, '/');
209 if (!p)
210 p = fname + strlen(fname);
211 len -= p - fname;
212 snprintf(p, len, fmt, p);
213 state->fdt_fname = fname;
214
215 return 0;
216}
217SANDBOX_CMDLINE_OPT_SHORT(test_fdt, 'T', 0,
218 "Use the test.dtb control FDT in U-Boot directory");
219
Simon Glassf498e432013-11-10 10:27:02 -0700220static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
221 const char *arg)
222{
223 state->interactive = true;
224 return 0;
225}
226
227SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
228
Simon Glasse9906532014-02-27 13:26:16 -0700229static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
230 const char *arg)
231{
Simon Glass47acfc62014-02-27 13:26:23 -0700232 /* Remember to delete this U-Boot image later */
233 state->jumped_fname = arg;
Simon Glasse9906532014-02-27 13:26:16 -0700234
235 return 0;
236}
237SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
238
Simon Glass9dd10bf2013-11-10 10:27:03 -0700239static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
240 const char *arg)
241{
242 int err;
243
244 /* For now assume we always want to write it */
245 state->write_ram_buf = true;
246 state->ram_buf_fname = arg;
247
Simon Glassc043e032014-11-11 12:47:08 -0700248 err = os_read_ram_buf(arg);
249 if (err) {
Simon Glass332894d2018-10-01 11:55:12 -0600250 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
Simon Glass9dd10bf2013-11-10 10:27:03 -0700251 return err;
252 }
Simon Glass24a284a2018-11-23 21:29:29 -0700253 state->ram_buf_read = true;
Simon Glass9dd10bf2013-11-10 10:27:03 -0700254
255 return 0;
256}
257SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
258 "Read/write ram_buf memory contents from file");
259
Simon Glass47acfc62014-02-27 13:26:23 -0700260static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
261 const char *arg)
262{
263 state->ram_buf_rm = true;
264
265 return 0;
266}
267SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
268
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700269static int sandbox_cmdline_cb_state(struct sandbox_state *state,
270 const char *arg)
271{
272 state->state_fname = arg;
273 return 0;
274}
275SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
276
277static int sandbox_cmdline_cb_read(struct sandbox_state *state,
278 const char *arg)
279{
280 state->read_state = true;
281 return 0;
282}
283SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
284
285static int sandbox_cmdline_cb_write(struct sandbox_state *state,
286 const char *arg)
287{
288 state->write_state = true;
289 return 0;
290}
291SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
292
293static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
294 const char *arg)
295{
296 state->ignore_missing_state_on_read = true;
297 return 0;
298}
299SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
300 "Ignore missing state on read");
301
Simon Glassb9ddbf42014-02-27 13:26:19 -0700302static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
303 const char *arg)
304{
305 state->show_lcd = true;
306 return 0;
307}
308SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
309 "Show the sandbox LCD display");
310
Simon Glassf91de0b2020-02-03 07:36:13 -0700311static int sandbox_cmdline_cb_double_lcd(struct sandbox_state *state,
312 const char *arg)
313{
314 state->double_lcd = true;
315
316 return 0;
317}
318SANDBOX_CMDLINE_OPT_SHORT(double_lcd, 'K', 0,
319 "Double the LCD display size in each direction");
320
Simon Glass678ef472014-02-27 13:26:22 -0700321static const char *term_args[STATE_TERM_COUNT] = {
322 "raw-with-sigs",
323 "raw",
324 "cooked",
325};
326
327static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
328 const char *arg)
329{
330 int i;
331
332 for (i = 0; i < STATE_TERM_COUNT; i++) {
333 if (!strcmp(arg, term_args[i])) {
334 state->term_raw = i;
335 return 0;
336 }
337 }
338
339 printf("Unknown terminal setting '%s' (", arg);
340 for (i = 0; i < STATE_TERM_COUNT; i++)
341 printf("%s%s", i ? ", " : "", term_args[i]);
342 puts(")\n");
343
344 return 1;
345}
346SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
347 "Set terminal to raw/cooked mode");
348
Simon Glassfe6d12a2015-11-08 23:47:50 -0700349static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
350 const char *arg)
351{
352 state->show_test_output = true;
353 return 0;
354}
355SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
356
Simon Glass4e9a64d2018-10-01 11:55:11 -0600357static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
358 const char *arg)
359{
360 state->default_log_level = simple_strtol(arg, NULL, 10);
361
362 return 0;
363}
364SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
365 "Set log level (0=panic, 7=debug)");
366
Simon Glassb5dfea82018-11-15 18:44:01 -0700367static int sandbox_cmdline_cb_show_of_platdata(struct sandbox_state *state,
368 const char *arg)
369{
370 state->show_of_platdata = true;
371
372 return 0;
373}
374SANDBOX_CMDLINE_OPT(show_of_platdata, 0, "Show of-platdata in SPL");
375
Simon Glassb94eed52017-03-28 10:27:16 -0600376static void setup_ram_buf(struct sandbox_state *state)
377{
Simon Glass24a284a2018-11-23 21:29:29 -0700378 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glasscd3705e2019-04-08 13:20:43 -0600379 if (!state->ram_buf_read)
Simon Glass24a284a2018-11-23 21:29:29 -0700380 memset(state->ram_buf, '\0', state->ram_size);
Simon Glass24a284a2018-11-23 21:29:29 -0700381
Simon Glassb94eed52017-03-28 10:27:16 -0600382 gd->arch.ram_buf = state->ram_buf;
383 gd->ram_size = state->ram_size;
384}
385
Simon Glass46508c92018-11-15 18:44:03 -0700386void state_show(struct sandbox_state *state)
387{
388 char **p;
389
390 printf("Arguments:\n");
391 for (p = state->argv; *p; p++)
392 printf("%s ", *p);
393 printf("\n");
394}
395
Simon Glass5ba8ef62011-10-03 19:26:45 +0000396int main(int argc, char *argv[])
397{
Simon Glass8a3e0352012-02-15 15:51:16 -0800398 struct sandbox_state *state;
Simon Glassc395fdf2014-07-10 22:23:27 -0600399 gd_t data;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700400 int ret;
Simon Glass20bf89a2012-02-15 15:51:15 -0800401
Simon Glass752707a2019-04-08 13:20:41 -0600402 memset(&data, '\0', sizeof(data));
403 gd = &data;
404 gd->arch.text_base = os_find_text_base();
405
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700406 ret = state_init();
407 if (ret)
408 goto err;
Simon Glass20bf89a2012-02-15 15:51:15 -0800409
Simon Glass8a3e0352012-02-15 15:51:16 -0800410 state = state_get_current();
411 if (os_parse_args(state, argc, argv))
412 return 1;
413
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700414 ret = sandbox_read_state(state, state->state_fname);
415 if (ret)
416 goto err;
417
Andy Yan25428c42017-07-24 17:49:59 +0800418#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass0cc6f5c2014-07-10 22:23:31 -0600419 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
420#endif
Simon Glass4e9a64d2018-10-01 11:55:11 -0600421#if CONFIG_IS_ENABLED(LOG)
422 gd->default_log_level = state->default_log_level;
423#endif
Simon Glassb94eed52017-03-28 10:27:16 -0600424 setup_ram_buf(state);
Simon Glassc395fdf2014-07-10 22:23:27 -0600425
Simon Glass752707a2019-04-08 13:20:41 -0600426 /*
427 * Set up the relocation offset here, since sandbox symbols are always
428 * relocated by the OS before sandbox is entered.
429 */
430 gd->reloc_off = (ulong)gd->arch.text_base;
431
Simon Glass2fd34e62013-11-10 10:26:59 -0700432 /* Do pre- and post-relocation init */
Simon Glass5ba8ef62011-10-03 19:26:45 +0000433 board_init_f(0);
Allen Martin074b4552013-01-22 13:11:21 +0000434
Simon Glass2fd34e62013-11-10 10:26:59 -0700435 board_init_r(gd->new_gd, 0);
436
437 /* NOTREACHED - board_init_r() does not return */
Allen Martin074b4552013-01-22 13:11:21 +0000438 return 0;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700439
440err:
441 printf("Error %d\n", ret);
442 return 1;
Simon Glass5ba8ef62011-10-03 19:26:45 +0000443}