blob: c6a2bbe4689960b15bfca3e68a4d20a5c31197c8 [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 Glass97589732020-05-10 11:40:02 -06009#include <init.h>
Simon Glass9dd10bf2013-11-10 10:27:03 -070010#include <os.h>
Rabin Vincent7e0194a2014-10-29 23:21:38 +010011#include <cli.h>
Simon Glass11c92b12020-02-03 07:35:47 -070012#include <sort.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080013#include <asm/getopt.h>
Simon Glassc395fdf2014-07-10 22:23:27 -060014#include <asm/io.h>
Simon Glass30f92052020-02-03 07:36:05 -070015#include <asm/malloc.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080016#include <asm/sections.h>
Simon Glass20bf89a2012-02-15 15:51:15 -080017#include <asm/state.h>
Simon Glass11c92b12020-02-03 07:35:47 -070018#include <linux/ctype.h>
Simon Glass5ba8ef62011-10-03 19:26:45 +000019
Simon Glass2fd34e62013-11-10 10:26:59 -070020DECLARE_GLOBAL_DATA_PTR;
21
Simon Glass11c92b12020-02-03 07:35:47 -070022/* Compare two options so that they can be sorted into alphabetical order */
23static int h_compare_opt(const void *p1, const void *p2)
24{
25 const struct sandbox_cmdline_option *opt1 = p1;
26 const struct sandbox_cmdline_option *opt2 = p2;
27 const char *str1, *str2;
28 char flag1[2], flag2[2];
29
30 opt1 = *(struct sandbox_cmdline_option **)p1;
31 opt2 = *(struct sandbox_cmdline_option **)p2;
32 flag1[1] = '\0';
33 flag2[1] = '\0';
34
35 *flag1 = opt1->flag_short < 0x100 ? opt1->flag_short : '\0';
36 *flag2 = opt2->flag_short < 0x100 ? opt2->flag_short : '\0';
37
38 str1 = *flag1 ? flag1 : opt1->flag;
39 str2 = *flag2 ? flag2 : opt2->flag;
40
41 /*
42 * Force lower-case flags to come before upper-case ones. We only
43 * support upper-case for short flags.
44 */
45 if (isalpha(*str1) && isalpha(*str2) &&
46 tolower(*str1) == tolower(*str2))
47 return isupper(*str1) - isupper(*str2);
48
49 return strcasecmp(str1, str2);
50}
51
Simon Glass8a3e0352012-02-15 15:51:16 -080052int sandbox_early_getopt_check(void)
53{
54 struct sandbox_state *state = state_get_current();
Simon Glass64367c82013-12-03 16:43:23 -070055 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass8a3e0352012-02-15 15:51:16 -080056 size_t num_options = __u_boot_sandbox_option_count();
57 size_t i;
58 int max_arg_len, max_noarg_len;
Simon Glass11c92b12020-02-03 07:35:47 -070059 struct sandbox_cmdline_option **sorted_opt;
60 int size;
Simon Glass8a3e0352012-02-15 15:51:16 -080061
62 /* parse_err will be a string of the faulting option */
63 if (!state->parse_err)
64 return 0;
65
66 if (strcmp(state->parse_err, "help")) {
67 printf("u-boot: error: failed while parsing option: %s\n"
68 "\ttry running with --help for more information.\n",
69 state->parse_err);
70 os_exit(1);
71 }
72
73 printf(
74 "u-boot, a command line test interface to U-Boot\n\n"
75 "Usage: u-boot [options]\n"
76 "Options:\n");
77
78 max_arg_len = 0;
79 for (i = 0; i < num_options; ++i)
Masahiro Yamadadb204642014-11-07 03:03:31 +090080 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass8a3e0352012-02-15 15:51:16 -080081 max_noarg_len = max_arg_len + 7;
82
Simon Glass11c92b12020-02-03 07:35:47 -070083 /* Sort the options */
84 size = sizeof(*sorted_opt) * num_options;
85 sorted_opt = malloc(size);
86 if (!sorted_opt) {
87 printf("No memory to sort options\n");
88 os_exit(1);
89 }
90 memcpy(sorted_opt, sb_opt, size);
91 qsort(sorted_opt, num_options, sizeof(*sorted_opt), h_compare_opt);
92
Simon Glass8a3e0352012-02-15 15:51:16 -080093 for (i = 0; i < num_options; ++i) {
Simon Glass11c92b12020-02-03 07:35:47 -070094 struct sandbox_cmdline_option *opt = sorted_opt[i];
Simon Glass8a3e0352012-02-15 15:51:16 -080095
96 /* first output the short flag if it has one */
97 if (opt->flag_short >= 0x100)
98 printf(" ");
99 else
100 printf(" -%c, ", opt->flag_short);
101
102 /* then the long flag */
103 if (opt->has_arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800104 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass5f679f02013-11-10 10:26:58 -0700105 else
106 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass8a3e0352012-02-15 15:51:16 -0800107
108 /* finally the help text */
109 printf(" %s\n", opt->help);
110 }
111
112 os_exit(0);
113}
114
Simon Glassb419dbb2017-03-28 10:27:28 -0600115int misc_init_f(void)
116{
117 return sandbox_early_getopt_check();
118}
119
Simon Glass64367c82013-12-03 16:43:23 -0700120static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800121{
122 /* just flag to sandbox_early_getopt_check to show usage */
123 return 1;
124}
Simon Glass64367c82013-12-03 16:43:23 -0700125SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass8a3e0352012-02-15 15:51:16 -0800126
Simon Glass5cf16632016-07-04 11:57:50 -0600127#ifndef CONFIG_SPL_BUILD
Simon Glass0fc3c222012-02-26 17:38:50 -0500128int sandbox_main_loop_init(void)
129{
Simon Glass8a3e0352012-02-15 15:51:16 -0800130 struct sandbox_state *state = state_get_current();
131
132 /* Execute command if required */
Sjoerd Simons335f4702015-04-30 22:16:09 +0200133 if (state->cmd || state->run_distro_boot) {
134 int retval = 0;
Joe Hershberger744d7882015-02-06 15:37:31 -0600135
Rabin Vincent7e0194a2014-10-29 23:21:38 +0100136 cli_init();
137
Simon Glasse0f12802016-03-13 19:07:30 -0600138#ifdef CONFIG_CMDLINE
Sjoerd Simons335f4702015-04-30 22:16:09 +0200139 if (state->cmd)
140 retval = run_command_list(state->cmd, -1, 0);
141
142 if (state->run_distro_boot)
143 retval = cli_simple_run_command("run distro_bootcmd",
144 0);
Simon Glasse0f12802016-03-13 19:07:30 -0600145#endif
Simon Glassf498e432013-11-10 10:27:02 -0700146 if (!state->interactive)
Joe Hershberger744d7882015-02-06 15:37:31 -0600147 os_exit(retval);
Simon Glass8a3e0352012-02-15 15:51:16 -0800148 }
149
Sjoerd Simons335f4702015-04-30 22:16:09 +0200150 return 0;
151}
Simon Glass5cf16632016-07-04 11:57:50 -0600152#endif
Sjoerd Simons335f4702015-04-30 22:16:09 +0200153
154static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
155 const char *arg)
156{
157 state->run_distro_boot = true;
Simon Glass0fc3c222012-02-26 17:38:50 -0500158 return 0;
159}
Sjoerd Simons335f4702015-04-30 22:16:09 +0200160SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
Simon Glass0fc3c222012-02-26 17:38:50 -0500161
Simon Glass64367c82013-12-03 16:43:23 -0700162static int sandbox_cmdline_cb_command(struct sandbox_state *state,
163 const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800164{
165 state->cmd = arg;
166 return 0;
167}
Simon Glass64367c82013-12-03 16:43:23 -0700168SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass8a3e0352012-02-15 15:51:16 -0800169
Simon Glass64367c82013-12-03 16:43:23 -0700170static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glass15393432013-04-20 08:42:41 +0000171{
172 state->fdt_fname = arg;
173 return 0;
174}
Simon Glass64367c82013-12-03 16:43:23 -0700175SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glass15393432013-04-20 08:42:41 +0000176
Simon Glass8e170782015-01-19 20:21:34 -0700177static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
178 const char *arg)
179{
180 const char *fmt = "%s.dtb";
181 char *fname;
182 int len;
183
184 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glass30f92052020-02-03 07:36:05 -0700185 fname = malloc(len);
Simon Glass8e170782015-01-19 20:21:34 -0700186 if (!fname)
187 return -ENOMEM;
188 snprintf(fname, len, fmt, state->argv[0]);
189 state->fdt_fname = fname;
190
191 return 0;
192}
193SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
194 "Use the default u-boot.dtb control FDT in U-Boot directory");
195
Simon Glass3c3968f2019-09-25 08:56:07 -0600196static int sandbox_cmdline_cb_test_fdt(struct sandbox_state *state,
197 const char *arg)
198{
199 const char *fmt = "/arch/sandbox/dts/test.dtb";
200 char *p;
201 char *fname;
202 int len;
203
204 len = strlen(state->argv[0]) + strlen(fmt) + 1;
Simon Glass30f92052020-02-03 07:36:05 -0700205 fname = malloc(len);
Simon Glass3c3968f2019-09-25 08:56:07 -0600206 if (!fname)
207 return -ENOMEM;
208 strcpy(fname, state->argv[0]);
209 p = strrchr(fname, '/');
210 if (!p)
211 p = fname + strlen(fname);
212 len -= p - fname;
213 snprintf(p, len, fmt, p);
214 state->fdt_fname = fname;
215
216 return 0;
217}
218SANDBOX_CMDLINE_OPT_SHORT(test_fdt, 'T', 0,
219 "Use the test.dtb control FDT in U-Boot directory");
220
Simon Glassf498e432013-11-10 10:27:02 -0700221static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
222 const char *arg)
223{
224 state->interactive = true;
225 return 0;
226}
227
228SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
229
Simon Glasse9906532014-02-27 13:26:16 -0700230static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
231 const char *arg)
232{
Simon Glass47acfc62014-02-27 13:26:23 -0700233 /* Remember to delete this U-Boot image later */
234 state->jumped_fname = arg;
Simon Glasse9906532014-02-27 13:26:16 -0700235
236 return 0;
237}
238SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
239
Simon Glass9dd10bf2013-11-10 10:27:03 -0700240static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
241 const char *arg)
242{
243 int err;
244
245 /* For now assume we always want to write it */
246 state->write_ram_buf = true;
247 state->ram_buf_fname = arg;
248
Simon Glassc043e032014-11-11 12:47:08 -0700249 err = os_read_ram_buf(arg);
250 if (err) {
Simon Glass332894d2018-10-01 11:55:12 -0600251 printf("Failed to read RAM buffer '%s': %d\n", arg, err);
Simon Glass9dd10bf2013-11-10 10:27:03 -0700252 return err;
253 }
Simon Glass24a284a2018-11-23 21:29:29 -0700254 state->ram_buf_read = true;
Simon Glass9dd10bf2013-11-10 10:27:03 -0700255
256 return 0;
257}
258SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
259 "Read/write ram_buf memory contents from file");
260
Simon Glass47acfc62014-02-27 13:26:23 -0700261static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
262 const char *arg)
263{
264 state->ram_buf_rm = true;
265
266 return 0;
267}
268SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
269
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700270static int sandbox_cmdline_cb_state(struct sandbox_state *state,
271 const char *arg)
272{
273 state->state_fname = arg;
274 return 0;
275}
276SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
277
278static int sandbox_cmdline_cb_read(struct sandbox_state *state,
279 const char *arg)
280{
281 state->read_state = true;
282 return 0;
283}
284SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
285
286static int sandbox_cmdline_cb_write(struct sandbox_state *state,
287 const char *arg)
288{
289 state->write_state = true;
290 return 0;
291}
292SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
293
294static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
295 const char *arg)
296{
297 state->ignore_missing_state_on_read = true;
298 return 0;
299}
300SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
301 "Ignore missing state on read");
302
Simon Glassb9ddbf42014-02-27 13:26:19 -0700303static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
304 const char *arg)
305{
306 state->show_lcd = true;
307 return 0;
308}
309SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
310 "Show the sandbox LCD display");
311
Simon Glassf91de0b2020-02-03 07:36:13 -0700312static int sandbox_cmdline_cb_double_lcd(struct sandbox_state *state,
313 const char *arg)
314{
315 state->double_lcd = true;
316
317 return 0;
318}
319SANDBOX_CMDLINE_OPT_SHORT(double_lcd, 'K', 0,
320 "Double the LCD display size in each direction");
321
Simon Glass678ef472014-02-27 13:26:22 -0700322static const char *term_args[STATE_TERM_COUNT] = {
323 "raw-with-sigs",
324 "raw",
325 "cooked",
326};
327
328static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
329 const char *arg)
330{
331 int i;
332
333 for (i = 0; i < STATE_TERM_COUNT; i++) {
334 if (!strcmp(arg, term_args[i])) {
335 state->term_raw = i;
336 return 0;
337 }
338 }
339
340 printf("Unknown terminal setting '%s' (", arg);
341 for (i = 0; i < STATE_TERM_COUNT; i++)
342 printf("%s%s", i ? ", " : "", term_args[i]);
343 puts(")\n");
344
345 return 1;
346}
347SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
348 "Set terminal to raw/cooked mode");
349
Simon Glassfe6d12a2015-11-08 23:47:50 -0700350static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
351 const char *arg)
352{
353 state->show_test_output = true;
354 return 0;
355}
356SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
357
Simon Glass4e9a64d2018-10-01 11:55:11 -0600358static int sandbox_cmdline_cb_log_level(struct sandbox_state *state,
359 const char *arg)
360{
361 state->default_log_level = simple_strtol(arg, NULL, 10);
362
363 return 0;
364}
365SANDBOX_CMDLINE_OPT_SHORT(log_level, 'L', 1,
366 "Set log level (0=panic, 7=debug)");
367
Simon Glassb5dfea82018-11-15 18:44:01 -0700368static int sandbox_cmdline_cb_show_of_platdata(struct sandbox_state *state,
369 const char *arg)
370{
371 state->show_of_platdata = true;
372
373 return 0;
374}
375SANDBOX_CMDLINE_OPT(show_of_platdata, 0, "Show of-platdata in SPL");
376
Simon Glassb94eed52017-03-28 10:27:16 -0600377static void setup_ram_buf(struct sandbox_state *state)
378{
Simon Glass24a284a2018-11-23 21:29:29 -0700379 /* Zero the RAM buffer if we didn't read it, to keep valgrind happy */
Simon Glasscd3705e2019-04-08 13:20:43 -0600380 if (!state->ram_buf_read)
Simon Glass24a284a2018-11-23 21:29:29 -0700381 memset(state->ram_buf, '\0', state->ram_size);
Simon Glass24a284a2018-11-23 21:29:29 -0700382
Simon Glassb94eed52017-03-28 10:27:16 -0600383 gd->arch.ram_buf = state->ram_buf;
384 gd->ram_size = state->ram_size;
385}
386
Simon Glass46508c92018-11-15 18:44:03 -0700387void state_show(struct sandbox_state *state)
388{
389 char **p;
390
391 printf("Arguments:\n");
392 for (p = state->argv; *p; p++)
393 printf("%s ", *p);
394 printf("\n");
395}
396
Simon Glass5ba8ef62011-10-03 19:26:45 +0000397int main(int argc, char *argv[])
398{
Simon Glass8a3e0352012-02-15 15:51:16 -0800399 struct sandbox_state *state;
Simon Glassc395fdf2014-07-10 22:23:27 -0600400 gd_t data;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700401 int ret;
Simon Glass20bf89a2012-02-15 15:51:15 -0800402
Simon Glass752707a2019-04-08 13:20:41 -0600403 memset(&data, '\0', sizeof(data));
404 gd = &data;
405 gd->arch.text_base = os_find_text_base();
406
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700407 ret = state_init();
408 if (ret)
409 goto err;
Simon Glass20bf89a2012-02-15 15:51:15 -0800410
Simon Glass8a3e0352012-02-15 15:51:16 -0800411 state = state_get_current();
412 if (os_parse_args(state, argc, argv))
413 return 1;
414
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700415 ret = sandbox_read_state(state, state->state_fname);
416 if (ret)
417 goto err;
418
Andy Yan25428c42017-07-24 17:49:59 +0800419#if CONFIG_VAL(SYS_MALLOC_F_LEN)
Simon Glass0cc6f5c2014-07-10 22:23:31 -0600420 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
421#endif
Simon Glass4e9a64d2018-10-01 11:55:11 -0600422#if CONFIG_IS_ENABLED(LOG)
423 gd->default_log_level = state->default_log_level;
424#endif
Simon Glassb94eed52017-03-28 10:27:16 -0600425 setup_ram_buf(state);
Simon Glassc395fdf2014-07-10 22:23:27 -0600426
Simon Glass752707a2019-04-08 13:20:41 -0600427 /*
428 * Set up the relocation offset here, since sandbox symbols are always
429 * relocated by the OS before sandbox is entered.
430 */
431 gd->reloc_off = (ulong)gd->arch.text_base;
432
Simon Glass2fd34e62013-11-10 10:26:59 -0700433 /* Do pre- and post-relocation init */
Simon Glass5ba8ef62011-10-03 19:26:45 +0000434 board_init_f(0);
Allen Martin074b4552013-01-22 13:11:21 +0000435
Simon Glass2fd34e62013-11-10 10:26:59 -0700436 board_init_r(gd->new_gd, 0);
437
438 /* NOTREACHED - board_init_r() does not return */
Allen Martin074b4552013-01-22 13:11:21 +0000439 return 0;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700440
441err:
442 printf("Error %d\n", ret);
443 return 1;
Simon Glass5ba8ef62011-10-03 19:26:45 +0000444}