blob: 4d5569e6476725d1f2a099a07369e40bd5237914 [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>
Simon Glass70db4212012-02-15 15:51:16 -08008#include <asm/getopt.h>
9#include <asm/sections.h>
Simon Glass6fb62072012-02-15 15:51:15 -080010#include <asm/state.h>
Simon Glassbace3d02011-10-03 19:26:45 +000011
Simon Glass808434c2013-11-10 10:26:59 -070012DECLARE_GLOBAL_DATA_PTR;
13
Simon Glass70db4212012-02-15 15:51:16 -080014int sandbox_early_getopt_check(void)
15{
16 struct sandbox_state *state = state_get_current();
Simon Glass7b3efc62013-12-03 16:43:23 -070017 struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
Simon Glass70db4212012-02-15 15:51:16 -080018 size_t num_options = __u_boot_sandbox_option_count();
19 size_t i;
20 int max_arg_len, max_noarg_len;
21
22 /* parse_err will be a string of the faulting option */
23 if (!state->parse_err)
24 return 0;
25
26 if (strcmp(state->parse_err, "help")) {
27 printf("u-boot: error: failed while parsing option: %s\n"
28 "\ttry running with --help for more information.\n",
29 state->parse_err);
30 os_exit(1);
31 }
32
33 printf(
34 "u-boot, a command line test interface to U-Boot\n\n"
35 "Usage: u-boot [options]\n"
36 "Options:\n");
37
38 max_arg_len = 0;
39 for (i = 0; i < num_options; ++i)
40 max_arg_len = max(strlen(sb_opt[i]->flag), max_arg_len);
41 max_noarg_len = max_arg_len + 7;
42
43 for (i = 0; i < num_options; ++i) {
Simon Glass7b3efc62013-12-03 16:43:23 -070044 struct sandbox_cmdline_option *opt = sb_opt[i];
Simon Glass70db4212012-02-15 15:51:16 -080045
46 /* first output the short flag if it has one */
47 if (opt->flag_short >= 0x100)
48 printf(" ");
49 else
50 printf(" -%c, ", opt->flag_short);
51
52 /* then the long flag */
53 if (opt->has_arg)
Simon Glass70db4212012-02-15 15:51:16 -080054 printf("--%-*s <arg> ", max_arg_len, opt->flag);
Simon Glass6ebcab82013-11-10 10:26:58 -070055 else
56 printf("--%-*s", max_noarg_len, opt->flag);
Simon Glass70db4212012-02-15 15:51:16 -080057
58 /* finally the help text */
59 printf(" %s\n", opt->help);
60 }
61
62 os_exit(0);
63}
64
Simon Glass7b3efc62013-12-03 16:43:23 -070065static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -080066{
67 /* just flag to sandbox_early_getopt_check to show usage */
68 return 1;
69}
Simon Glass7b3efc62013-12-03 16:43:23 -070070SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
Simon Glass70db4212012-02-15 15:51:16 -080071
Simon Glassab4e07e2012-02-26 17:38:50 -050072int sandbox_main_loop_init(void)
73{
Simon Glass70db4212012-02-15 15:51:16 -080074 struct sandbox_state *state = state_get_current();
75
76 /* Execute command if required */
77 if (state->cmd) {
Simon Glass39042d82013-04-20 08:42:48 +000078 run_command_list(state->cmd, -1, 0);
Simon Glassc5a62d42013-11-10 10:27:02 -070079 if (!state->interactive)
80 os_exit(state->exit_type);
Simon Glass70db4212012-02-15 15:51:16 -080081 }
82
Simon Glassab4e07e2012-02-26 17:38:50 -050083 return 0;
84}
85
Simon Glass7b3efc62013-12-03 16:43:23 -070086static int sandbox_cmdline_cb_command(struct sandbox_state *state,
87 const char *arg)
Simon Glass70db4212012-02-15 15:51:16 -080088{
89 state->cmd = arg;
90 return 0;
91}
Simon Glass7b3efc62013-12-03 16:43:23 -070092SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
Simon Glass70db4212012-02-15 15:51:16 -080093
Simon Glass7b3efc62013-12-03 16:43:23 -070094static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
Simon Glassf828bf22013-04-20 08:42:41 +000095{
96 state->fdt_fname = arg;
97 return 0;
98}
Simon Glass7b3efc62013-12-03 16:43:23 -070099SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
Simon Glassf828bf22013-04-20 08:42:41 +0000100
Simon Glassc5a62d42013-11-10 10:27:02 -0700101static int sandbox_cmdline_cb_interactive(struct sandbox_state *state,
102 const char *arg)
103{
104 state->interactive = true;
105 return 0;
106}
107
108SANDBOX_CMDLINE_OPT_SHORT(interactive, 'i', 0, "Enter interactive mode");
109
Simon Glassbda77732014-02-27 13:26:16 -0700110static int sandbox_cmdline_cb_jump(struct sandbox_state *state,
111 const char *arg)
112{
113 state->jumped = 1;
114
115 /*
116 * TODO(sjg@chromium.org): Note this causes problems for gdb which
117 * wants to read debug data from the image.
118 *
119 * os_unlink(arg);
120 */
121
122 return 0;
123}
124SANDBOX_CMDLINE_OPT_SHORT(jump, 'j', 1, "Jumped from previous U-Boot");
125
Simon Glass5c2859c2013-11-10 10:27:03 -0700126static int sandbox_cmdline_cb_memory(struct sandbox_state *state,
127 const char *arg)
128{
129 int err;
130
131 /* For now assume we always want to write it */
132 state->write_ram_buf = true;
133 state->ram_buf_fname = arg;
134
135 if (os_read_ram_buf(arg)) {
136 printf("Failed to read RAM buffer\n");
137 return err;
138 }
139
140 return 0;
141}
142SANDBOX_CMDLINE_OPT_SHORT(memory, 'm', 1,
143 "Read/write ram_buf memory contents from file");
144
Simon Glass1209e272013-11-10 10:27:04 -0700145static int sandbox_cmdline_cb_state(struct sandbox_state *state,
146 const char *arg)
147{
148 state->state_fname = arg;
149 return 0;
150}
151SANDBOX_CMDLINE_OPT_SHORT(state, 's', 1, "Specify the sandbox state FDT");
152
153static int sandbox_cmdline_cb_read(struct sandbox_state *state,
154 const char *arg)
155{
156 state->read_state = true;
157 return 0;
158}
159SANDBOX_CMDLINE_OPT_SHORT(read, 'r', 0, "Read the state FDT on startup");
160
161static int sandbox_cmdline_cb_write(struct sandbox_state *state,
162 const char *arg)
163{
164 state->write_state = true;
165 return 0;
166}
167SANDBOX_CMDLINE_OPT_SHORT(write, 'w', 0, "Write state FDT on exit");
168
169static int sandbox_cmdline_cb_ignore_missing(struct sandbox_state *state,
170 const char *arg)
171{
172 state->ignore_missing_state_on_read = true;
173 return 0;
174}
175SANDBOX_CMDLINE_OPT_SHORT(ignore_missing, 'n', 0,
176 "Ignore missing state on read");
177
Simon Glass7d95f2a2014-02-27 13:26:19 -0700178static int sandbox_cmdline_cb_show_lcd(struct sandbox_state *state,
179 const char *arg)
180{
181 state->show_lcd = true;
182 return 0;
183}
184SANDBOX_CMDLINE_OPT_SHORT(show_lcd, 'l', 0,
185 "Show the sandbox LCD display");
186
Simon Glassbace3d02011-10-03 19:26:45 +0000187int main(int argc, char *argv[])
188{
Simon Glass70db4212012-02-15 15:51:16 -0800189 struct sandbox_state *state;
Simon Glass1209e272013-11-10 10:27:04 -0700190 int ret;
Simon Glass6fb62072012-02-15 15:51:15 -0800191
Simon Glass1209e272013-11-10 10:27:04 -0700192 ret = state_init();
193 if (ret)
194 goto err;
Simon Glass6fb62072012-02-15 15:51:15 -0800195
Simon Glass70db4212012-02-15 15:51:16 -0800196 state = state_get_current();
197 if (os_parse_args(state, argc, argv))
198 return 1;
199
Simon Glass1209e272013-11-10 10:27:04 -0700200 ret = sandbox_read_state(state, state->state_fname);
201 if (ret)
202 goto err;
203
Simon Glass808434c2013-11-10 10:26:59 -0700204 /* Do pre- and post-relocation init */
Simon Glassbace3d02011-10-03 19:26:45 +0000205 board_init_f(0);
Allen Martin8ec21bb2013-01-22 13:11:21 +0000206
Simon Glass808434c2013-11-10 10:26:59 -0700207 board_init_r(gd->new_gd, 0);
208
209 /* NOTREACHED - board_init_r() does not return */
Allen Martin8ec21bb2013-01-22 13:11:21 +0000210 return 0;
Simon Glass1209e272013-11-10 10:27:04 -0700211
212err:
213 printf("Error %d\n", ret);
214 return 1;
Simon Glassbace3d02011-10-03 19:26:45 +0000215}