blob: 6e4ec017ccd98239faf8af7a9730c8bb3567cb4c [file] [log] [blame]
Simon Glass5ba8ef62011-10-03 19:26:45 +00001/*
Simon Glass20bf89a2012-02-15 15:51:15 -08002 * Copyright (c) 2011-2012 The Chromium OS Authors.
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glass5ba8ef62011-10-03 19:26:45 +00004 */
5
6#include <common.h>
Simon Glass07a3b232015-05-04 11:31:08 -06007#include <errno.h>
Simon Glass9dd10bf2013-11-10 10:27:03 -07008#include <os.h>
Rabin Vincent7e0194a2014-10-29 23:21:38 +01009#include <cli.h>
Simon Glass8e170782015-01-19 20:21:34 -070010#include <malloc.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080011#include <asm/getopt.h>
Simon Glassc395fdf2014-07-10 22:23:27 -060012#include <asm/io.h>
Simon Glass8a3e0352012-02-15 15:51:16 -080013#include <asm/sections.h>
Simon Glass20bf89a2012-02-15 15:51:15 -080014#include <asm/state.h>
Simon Glass5ba8ef62011-10-03 19:26:45 +000015
Simon Glass2fd34e62013-11-10 10:26:59 -070016DECLARE_GLOBAL_DATA_PTR;
17
Simon Glass8a3e0352012-02-15 15:51:16 -080018int sandbox_early_getopt_check(void)
19{
20 struct sandbox_state *state = state_get_current();
Simon Glass64367c82013-12-03 16:43:23 -070021 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass8a3e0352012-02-15 15:51:16 -080022 size_t num_options = __u_boot_sandbox_option_count();
23 size_t i;
24 int max_arg_len, max_noarg_len;
25
26 /* parse_err will be a string of the faulting option */
27 if (!state->parse_err)
28 return 0;
29
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",
33 state->parse_err);
34 os_exit(1);
35 }
36
37 printf(
38 "u-boot, a command line test interface to U-Boot\n\n"
39 "Usage: u-boot [options]\n"
40 "Options:\n");
41
42 max_arg_len = 0;
43 for (i = 0; i < num_options; ++i)
Masahiro Yamadadb204642014-11-07 03:03:31 +090044 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass8a3e0352012-02-15 15:51:16 -080045 max_noarg_len = max_arg_len + 7;
46
47 for (i = 0; i < num_options; ++i) {
Simon Glass64367c82013-12-03 16:43:23 -070048 struct sandbox_cmdline_option *opt = sb_opt[i];
Simon Glass8a3e0352012-02-15 15:51:16 -080049
50 /* first output the short flag if it has one */
51 if (opt->flag_short >= 0x100)
52 printf(" ");
53 else
54 printf(" -%c, ", opt->flag_short);
55
56 /* then the long flag */
57 if (opt->has_arg)
Simon Glass8a3e0352012-02-15 15:51:16 -080058 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass5f679f02013-11-10 10:26:58 -070059 else
60 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass8a3e0352012-02-15 15:51:16 -080061
62 /* finally the help text */
63 printf(" %s\n", opt->help);
64 }
65
66 os_exit(0);
67}
68
Simon Glass64367c82013-12-03 16:43:23 -070069static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -080070{
71 /* just flag to sandbox_early_getopt_check to show usage */
72 return 1;
73}
Simon Glass64367c82013-12-03 16:43:23 -070074SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass8a3e0352012-02-15 15:51:16 -080075
Simon Glass5cf16632016-07-04 11:57:50 -060076#ifndef CONFIG_SPL_BUILD
Simon Glass0fc3c222012-02-26 17:38:50 -050077int sandbox_main_loop_init(void)
78{
Simon Glass8a3e0352012-02-15 15:51:16 -080079 struct sandbox_state *state = state_get_current();
80
81 /* Execute command if required */
Sjoerd Simons335f4702015-04-30 22:16:09 +020082 if (state->cmd || state->run_distro_boot) {
83 int retval = 0;
Joe Hershberger744d7882015-02-06 15:37:31 -060084
Rabin Vincent7e0194a2014-10-29 23:21:38 +010085 cli_init();
86
Simon Glasse0f12802016-03-13 19:07:30 -060087#ifdef CONFIG_CMDLINE
Sjoerd Simons335f4702015-04-30 22:16:09 +020088 if (state->cmd)
89 retval = run_command_list(state->cmd, -1, 0);
90
91 if (state->run_distro_boot)
92 retval = cli_simple_run_command("run distro_bootcmd",
93 0);
Simon Glasse0f12802016-03-13 19:07:30 -060094#endif
Simon Glassf498e432013-11-10 10:27:02 -070095 if (!state->interactive)
Joe Hershberger744d7882015-02-06 15:37:31 -060096 os_exit(retval);
Simon Glass8a3e0352012-02-15 15:51:16 -080097 }
98
Sjoerd Simons335f4702015-04-30 22:16:09 +020099 return 0;
100}
Simon Glass5cf16632016-07-04 11:57:50 -0600101#endif
Sjoerd Simons335f4702015-04-30 22:16:09 +0200102
103static int sandbox_cmdline_cb_boot(struct sandbox_state *state,
104 const char *arg)
105{
106 state->run_distro_boot = true;
Simon Glass0fc3c222012-02-26 17:38:50 -0500107 return 0;
108}
Sjoerd Simons335f4702015-04-30 22:16:09 +0200109SANDBOX_CMDLINE_OPT_SHORT(boot, 'b', 0, "Run distro boot commands");
Simon Glass0fc3c222012-02-26 17:38:50 -0500110
Simon Glass64367c82013-12-03 16:43:23 -0700111static int sandbox_cmdline_cb_command(struct sandbox_state *state,
112 const char *arg)
Simon Glass8a3e0352012-02-15 15:51:16 -0800113{
114 state->cmd = arg;
115 return 0;
116}
Simon Glass64367c82013-12-03 16:43:23 -0700117SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass8a3e0352012-02-15 15:51:16 -0800118
Simon Glass64367c82013-12-03 16:43:23 -0700119static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glass15393432013-04-20 08:42:41 +0000120{
121 state->fdt_fname = arg;
122 return 0;
123}
Simon Glass64367c82013-12-03 16:43:23 -0700124SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glass15393432013-04-20 08:42:41 +0000125
Simon Glass8e170782015-01-19 20:21:34 -0700126static int sandbox_cmdline_cb_default_fdt(struct sandbox_state *state,
127 const char *arg)
128{
129 const char *fmt = "%s.dtb";
130 char *fname;
131 int len;
132
133 len = strlen(state->argv[0]) + strlen(fmt) + 1;
134 fname = os_malloc(len);
135 if (!fname)
136 return -ENOMEM;
137 snprintf(fname, len, fmt, state->argv[0]);
138 state->fdt_fname = fname;
139
140 return 0;
141}
142SANDBOX_CMDLINE_OPT_SHORT(default_fdt, 'D', 0,
143 "Use the default u-boot.dtb control FDT in U-Boot directory");
144
Simon Glassf498e432013-11-10 10:27:02 -0700145static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
146 const char *arg)
147{
148 state->interactive = true;
149 return 0;
150}
151
152SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
153
Simon Glasse9906532014-02-27 13:26:16 -0700154static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
155 const char *arg)
156{
Simon Glass47acfc62014-02-27 13:26:23 -0700157 /* Remember to delete this U-Boot image later */
158 state->jumped_fname = arg;
Simon Glasse9906532014-02-27 13:26:16 -0700159
160 return 0;
161}
162SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
163
Simon Glass9dd10bf2013-11-10 10:27:03 -0700164static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
165 const char *arg)
166{
167 int err;
168
169 /* For now assume we always want to write it */
170 state->write_ram_buf = true;
171 state->ram_buf_fname = arg;
172
Simon Glassc043e032014-11-11 12:47:08 -0700173 err = os_read_ram_buf(arg);
174 if (err) {
Simon Glass9dd10bf2013-11-10 10:27:03 -0700175 printf("Failed to read RAM buffer\n");
176 return err;
177 }
178
179 return 0;
180}
181SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
182 "Read/write ram_buf memory contents from file");
183
Simon Glass47acfc62014-02-27 13:26:23 -0700184static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
185 const char *arg)
186{
187 state->ram_buf_rm = true;
188
189 return 0;
190}
191SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
192
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700193static int sandbox_cmdline_cb_state(struct sandbox_state *state,
194 const char *arg)
195{
196 state->state_fname = arg;
197 return 0;
198}
199SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
200
201static int sandbox_cmdline_cb_read(struct sandbox_state *state,
202 const char *arg)
203{
204 state->read_state = true;
205 return 0;
206}
207SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
208
209static int sandbox_cmdline_cb_write(struct sandbox_state *state,
210 const char *arg)
211{
212 state->write_state = true;
213 return 0;
214}
215SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
216
217static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
218 const char *arg)
219{
220 state->ignore_missing_state_on_read = true;
221 return 0;
222}
223SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
224 "Ignore missing state on read");
225
Simon Glassb9ddbf42014-02-27 13:26:19 -0700226static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
227 const char *arg)
228{
229 state->show_lcd = true;
230 return 0;
231}
232SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
233 "Show the sandbox LCD display");
234
Simon Glass678ef472014-02-27 13:26:22 -0700235static const char *term_args[STATE_TERM_COUNT] = {
236 "raw-with-sigs",
237 "raw",
238 "cooked",
239};
240
241static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
242 const char *arg)
243{
244 int i;
245
246 for (i = 0; i < STATE_TERM_COUNT; i++) {
247 if (!strcmp(arg, term_args[i])) {
248 state->term_raw = i;
249 return 0;
250 }
251 }
252
253 printf("Unknown terminal setting '%s' (", arg);
254 for (i = 0; i < STATE_TERM_COUNT; i++)
255 printf("%s%s", i ? ", " : "", term_args[i]);
256 puts(")\n");
257
258 return 1;
259}
260SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
261 "Set terminal to raw/cooked mode");
262
Simon Glassfe6d12a2015-11-08 23:47:50 -0700263static int sandbox_cmdline_cb_verbose(struct sandbox_state *state,
264 const char *arg)
265{
266 state->show_test_output = true;
267 return 0;
268}
269SANDBOX_CMDLINE_OPT_SHORT(verbose, 'v', 0, "Show test output");
270
Simon Glasse0f12802016-03-13 19:07:30 -0600271int board_run_command(const char *cmdline)
272{
273 printf("## Commands are disabled. Please enable CONFIG_CMDLINE.\n");
274
275 return 1;
276}
277
Simon Glass5ba8ef62011-10-03 19:26:45 +0000278int main(int argc, char *argv[])
279{
Simon Glass8a3e0352012-02-15 15:51:16 -0800280 struct sandbox_state *state;
Simon Glassc395fdf2014-07-10 22:23:27 -0600281 gd_t data;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700282 int ret;
Simon Glass20bf89a2012-02-15 15:51:15 -0800283
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700284 ret = state_init();
285 if (ret)
286 goto err;
Simon Glass20bf89a2012-02-15 15:51:15 -0800287
Simon Glass8a3e0352012-02-15 15:51:16 -0800288 state = state_get_current();
289 if (os_parse_args(state, argc, argv))
290 return 1;
291
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700292 ret = sandbox_read_state(state, state->state_fname);
293 if (ret)
294 goto err;
295
Simon Glass47acfc62014-02-27 13:26:23 -0700296 /* Remove old memory file if required */
297 if (state->ram_buf_rm && state->ram_buf_fname)
298 os_unlink(state->ram_buf_fname);
299
Simon Glassc395fdf2014-07-10 22:23:27 -0600300 memset(&data, '\0', sizeof(data));
301 gd = &data;
Simon Glass0cc6f5c2014-07-10 22:23:31 -0600302#ifdef CONFIG_SYS_MALLOC_F_LEN
303 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
304#endif
Simon Glassc395fdf2014-07-10 22:23:27 -0600305
Simon Glass2fd34e62013-11-10 10:26:59 -0700306 /* Do pre- and post-relocation init */
Simon Glass5ba8ef62011-10-03 19:26:45 +0000307 board_init_f(0);
Allen Martin074b4552013-01-22 13:11:21 +0000308
Simon Glass2fd34e62013-11-10 10:26:59 -0700309 board_init_r(gd->new_gd, 0);
310
311 /* NOTREACHED - board_init_r() does not return */
Allen Martin074b4552013-01-22 13:11:21 +0000312 return 0;
Simon Glassd7c8d8d2013-11-10 10:27:04 -0700313
314err:
315 printf("Error %d\n", ret);
316 return 1;
Simon Glass5ba8ef62011-10-03 19:26:45 +0000317}