blob: 0df77704c6f769c7085940ca81592d064c7362af [file] [log] [blame]
Simon Glassbace3d02011-10-03 19:26:45 +00001/*
Simon Glass6fb62072012-02-15 15:51:15 -08002 * Copyright (c) 2011-2012 The Chromium OS Authors.
Wolfgang Denk1a459662013-07-08 09:37:19 +02003 * SPDX-License-Identifier: GPL-2.0+
Simon Glassbace3d02011-10-03 19:26:45 +00004 */
5
6#include <common.h>
Simon Glass5c2859c2013-11-10 10:27:03 -07007#include <os.h>
Rabin Vincent7dbcb762014-10-29 23:21:38 +01008#include <cli.h>
Simon Glass70db4212012-02-15 15:51:16 -08009#include <asm/getopt.h>
Simon Glass4d94dfa2014-07-10 22:23:27 -060010#include <asm/io.h>
Simon Glass70db4212012-02-15 15:51:16 -080011#include <asm/sections.h>
Simon Glass6fb62072012-02-15 15:51:15 -080012#include <asm/state.h>
Simon Glassbace3d02011-10-03 19:26:45 +000013
Simon Glass808434c2013-11-10 10:26:59 -070014DECLARE_GLOBAL_DATA_PTR;
15
Simon Glass70db4212012-02-15 15:51:16 -080016int sandbox_early_getopt_check(void)
17{
18 struct sandbox_state *state = state_get_current();
Simon Glass7b3efc62013-12-03 16:43:23 -070019 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass70db4212012-02-15 15:51:16 -080020 size_t num_options = __u_boot_sandbox_option_count();
21 size_t i;
22 int max_arg_len, max_noarg_len;
23
24 /* parse_err will be a string of the faulting option */
25 if (!state->parse_err)
26 return 0;
27
28 if (strcmp(state->parse_err, "help")) {
29 printf("u-boot: error: failed while parsing option: %s\n"
30 "\ttry running with --help for more information.\n",
31 state->parse_err);
32 os_exit(1);
33 }
34
35 printf(
36 "u-boot, a command line test interface to U-Boot\n\n"
37 "Usage: u-boot [options]\n"
38 "Options:\n");
39
40 max_arg_len = 0;
41 for (i = 0; i < num_options; ++i)
Masahiro Yamadab4141192014-11-07 03:03:31 +090042 max_arg_len = max((int)strlen(sb_opt[i]->flag), max_arg_len);
Simon Glass70db4212012-02-15 15:51:16 -080043 max_noarg_len = max_arg_len + 7;
44
45 for (i = 0; i < num_options; ++i) {
Simon Glass7b3efc62013-12-03 16:43:23 -070046 struct sandbox_cmdline_option *opt = sb_opt[i];
Simon Glass70db4212012-02-15 15:51:16 -080047
48 /* first output the short flag if it has one */
49 if (opt->flag_short >= 0x100)
50 printf(" ");
51 else
52 printf(" -%c, ", opt->flag_short);
53
54 /* then the long flag */
55 if (opt->has_arg)
Simon Glass70db4212012-02-15 15:51:16 -080056 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass6ebcab82013-11-10 10:26:58 -070057 else
58 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass70db4212012-02-15 15:51:16 -080059
60 /* finally the help text */
61 printf(" %s\n", opt->help);
62 }
63
64 os_exit(0);
65}
66
Simon Glass7b3efc62013-12-03 16:43:23 -070067static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -080068{
69 /* just flag to sandbox_early_getopt_check to show usage */
70 return 1;
71}
Simon Glass7b3efc62013-12-03 16:43:23 -070072SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass70db4212012-02-15 15:51:16 -080073
Simon Glassab4e07e2012-02-26 17:38:50 -050074int sandbox_main_loop_init(void)
75{
Simon Glass70db4212012-02-15 15:51:16 -080076 struct sandbox_state *state = state_get_current();
77
78 /* Execute command if required */
79 if (state->cmd) {
Rabin Vincent7dbcb762014-10-29 23:21:38 +010080 cli_init();
81
Simon Glass39042d82013-04-20 08:42:48 +000082 run_command_list(state->cmd, -1, 0);
Simon Glassc5a62d42013-11-10 10:27:02 -070083 if (!state->interactive)
84 os_exit(state->exit_type);
Simon Glass70db4212012-02-15 15:51:16 -080085 }
86
Simon Glassab4e07e2012-02-26 17:38:50 -050087 return 0;
88}
89
Simon Glass7b3efc62013-12-03 16:43:23 -070090static int sandbox_cmdline_cb_command(struct sandbox_state *state,
91 const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -080092{
93 state->cmd = arg;
94 return 0;
95}
Simon Glass7b3efc62013-12-03 16:43:23 -070096SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass70db4212012-02-15 15:51:16 -080097
Simon Glass7b3efc62013-12-03 16:43:23 -070098static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glassf828bf22013-04-20 08:42:41 +000099{
100 state->fdt_fname = arg;
101 return 0;
102}
Simon Glass7b3efc62013-12-03 16:43:23 -0700103SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glassf828bf22013-04-20 08:42:41 +0000104
Simon Glassc5a62d42013-11-10 10:27:02 -0700105static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
106 const char *arg)
107{
108 state->interactive = true;
109 return 0;
110}
111
112SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
113
Simon Glassbda77732014-02-27 13:26:16 -0700114static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
115 const char *arg)
116{
Simon Glassab839dc2014-02-27 13:26:23 -0700117 /* Remember to delete this U-Boot image later */
118 state->jumped_fname = arg;
Simon Glassbda77732014-02-27 13:26:16 -0700119
120 return 0;
121}
122SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
123
Simon Glass5c2859c2013-11-10 10:27:03 -0700124static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
125 const char *arg)
126{
127 int err;
128
129 /* For now assume we always want to write it */
130 state->write_ram_buf = true;
131 state->ram_buf_fname = arg;
132
133 if (os_read_ram_buf(arg)) {
134 printf("Failed to read RAM buffer\n");
135 return err;
136 }
137
138 return 0;
139}
140SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
141 "Read/write ram_buf memory contents from file");
142
Simon Glassab839dc2014-02-27 13:26:23 -0700143static int sandbox_cmdline_cb_rm_memory(struct sandbox_state *state,
144 const char *arg)
145{
146 state->ram_buf_rm = true;
147
148 return 0;
149}
150SANDBOX_CMDLINE_OPT(rm_memory, 0, "Remove memory file after reading");
151
Simon Glass1209e272013-11-10 10:27:04 -0700152static int sandbox_cmdline_cb_state(struct sandbox_state *state,
153 const char *arg)
154{
155 state->state_fname = arg;
156 return 0;
157}
158SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
159
160static int sandbox_cmdline_cb_read(struct sandbox_state *state,
161 const char *arg)
162{
163 state->read_state = true;
164 return 0;
165}
166SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
167
168static int sandbox_cmdline_cb_write(struct sandbox_state *state,
169 const char *arg)
170{
171 state->write_state = true;
172 return 0;
173}
174SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
175
176static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
177 const char *arg)
178{
179 state->ignore_missing_state_on_read = true;
180 return 0;
181}
182SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
183 "Ignore missing state on read");
184
Simon Glass7d95f2a2014-02-27 13:26:19 -0700185static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
186 const char *arg)
187{
188 state->show_lcd = true;
189 return 0;
190}
191SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
192 "Show the sandbox LCD display");
193
Simon Glassffb87902014-02-27 13:26:22 -0700194static const char *term_args[STATE_TERM_COUNT] = {
195 "raw-with-sigs",
196 "raw",
197 "cooked",
198};
199
200static int sandbox_cmdline_cb_terminal(struct sandbox_state *state,
201 const char *arg)
202{
203 int i;
204
205 for (i = 0; i < STATE_TERM_COUNT; i++) {
206 if (!strcmp(arg, term_args[i])) {
207 state->term_raw = i;
208 return 0;
209 }
210 }
211
212 printf("Unknown terminal setting '%s' (", arg);
213 for (i = 0; i < STATE_TERM_COUNT; i++)
214 printf("%s%s", i ? ", " : "", term_args[i]);
215 puts(")\n");
216
217 return 1;
218}
219SANDBOX_CMDLINE_OPT_SHORT(terminal, 't', 1,
220 "Set terminal to raw/cooked mode");
221
Simon Glassbace3d02011-10-03 19:26:45 +0000222int main(int argc, char *argv[])
223{
Simon Glass70db4212012-02-15 15:51:16 -0800224 struct sandbox_state *state;
Simon Glass4d94dfa2014-07-10 22:23:27 -0600225 gd_t data;
Simon Glass1209e272013-11-10 10:27:04 -0700226 int ret;
Simon Glass6fb62072012-02-15 15:51:15 -0800227
Simon Glass1209e272013-11-10 10:27:04 -0700228 ret = state_init();
229 if (ret)
230 goto err;
Simon Glass6fb62072012-02-15 15:51:15 -0800231
Simon Glass70db4212012-02-15 15:51:16 -0800232 state = state_get_current();
233 if (os_parse_args(state, argc, argv))
234 return 1;
235
Simon Glass1209e272013-11-10 10:27:04 -0700236 ret = sandbox_read_state(state, state->state_fname);
237 if (ret)
238 goto err;
239
Simon Glassab839dc2014-02-27 13:26:23 -0700240 /* Remove old memory file if required */
241 if (state->ram_buf_rm && state->ram_buf_fname)
242 os_unlink(state->ram_buf_fname);
243
Simon Glass4d94dfa2014-07-10 22:23:27 -0600244 memset(&data, '\0', sizeof(data));
245 gd = &data;
Simon Glass29afe9e2014-07-10 22:23:31 -0600246#ifdef CONFIG_SYS_MALLOC_F_LEN
247 gd->malloc_base = CONFIG_MALLOC_F_ADDR;
248#endif
Simon Glass4d94dfa2014-07-10 22:23:27 -0600249
Simon Glass808434c2013-11-10 10:26:59 -0700250 /* Do pre- and post-relocation init */
Simon Glassbace3d02011-10-03 19:26:45 +0000251 board_init_f(0);
Allen Martin8ec21bb2013-01-22 13:11:21 +0000252
Simon Glass808434c2013-11-10 10:26:59 -0700253 board_init_r(gd->new_gd, 0);
254
255 /* NOTREACHED - board_init_r() does not return */
Allen Martin8ec21bb2013-01-22 13:11:21 +0000256 return 0;
Simon Glass1209e272013-11-10 10:27:04 -0700257
258err:
259 printf("Error %d\n", ret);
260 return 1;
Simon Glassbace3d02011-10-03 19:26:45 +0000261}