xref: /rk3399_rockchip-uboot/arch/sandbox/cpu/start.c (revision 808434cdbd70b6633c99fe2974af7d25316cc593)
1 /*
2  * Copyright (c) 2011-2012 The Chromium OS Authors.
3  * SPDX-License-Identifier:	GPL-2.0+
4  */
5 
6 #include <common.h>
7 #include <asm/getopt.h>
8 #include <asm/sections.h>
9 #include <asm/state.h>
10 
11 #include <os.h>
12 
13 DECLARE_GLOBAL_DATA_PTR;
14 
15 int sandbox_early_getopt_check(void)
16 {
17 	struct sandbox_state *state = state_get_current();
18 	struct sandbox_cmdline_option **sb_opt = __u_boot_sandbox_option_start;
19 	size_t num_options = __u_boot_sandbox_option_count();
20 	size_t i;
21 	int max_arg_len, max_noarg_len;
22 
23 	/* parse_err will be a string of the faulting option */
24 	if (!state->parse_err)
25 		return 0;
26 
27 	if (strcmp(state->parse_err, "help")) {
28 		printf("u-boot: error: failed while parsing option: %s\n"
29 			"\ttry running with --help for more information.\n",
30 			state->parse_err);
31 		os_exit(1);
32 	}
33 
34 	printf(
35 		"u-boot, a command line test interface to U-Boot\n\n"
36 		"Usage: u-boot [options]\n"
37 		"Options:\n");
38 
39 	max_arg_len = 0;
40 	for (i = 0; i < num_options; ++i)
41 		max_arg_len = max(strlen(sb_opt[i]->flag), max_arg_len);
42 	max_noarg_len = max_arg_len + 7;
43 
44 	for (i = 0; i < num_options; ++i) {
45 		struct sandbox_cmdline_option *opt = sb_opt[i];
46 
47 		/* first output the short flag if it has one */
48 		if (opt->flag_short >= 0x100)
49 			printf("      ");
50 		else
51 			printf("  -%c, ", opt->flag_short);
52 
53 		/* then the long flag */
54 		if (opt->has_arg)
55 			printf("--%-*s <arg> ", max_arg_len, opt->flag);
56 		else
57 			printf("--%-*s", max_noarg_len, opt->flag);
58 
59 		/* finally the help text */
60 		printf("  %s\n", opt->help);
61 	}
62 
63 	os_exit(0);
64 }
65 
66 static int sandbox_cmdline_cb_help(struct sandbox_state *state, const char *arg)
67 {
68 	/* just flag to sandbox_early_getopt_check to show usage */
69 	return 1;
70 }
71 SANDBOX_CMDLINE_OPT_SHORT(help, 'h', 0, "Display help");
72 
73 int sandbox_main_loop_init(void)
74 {
75 	struct sandbox_state *state = state_get_current();
76 
77 	/* Execute command if required */
78 	if (state->cmd) {
79 		run_command_list(state->cmd, -1, 0);
80 		os_exit(state->exit_type);
81 	}
82 
83 	return 0;
84 }
85 
86 static int sandbox_cmdline_cb_command(struct sandbox_state *state,
87 				      const char *arg)
88 {
89 	state->cmd = arg;
90 	return 0;
91 }
92 SANDBOX_CMDLINE_OPT_SHORT(command, 'c', 1, "Execute U-Boot command");
93 
94 static int sandbox_cmdline_cb_fdt(struct sandbox_state *state, const char *arg)
95 {
96 	state->fdt_fname = arg;
97 	return 0;
98 }
99 SANDBOX_CMDLINE_OPT_SHORT(fdt, 'd', 1, "Specify U-Boot's control FDT");
100 
101 int main(int argc, char *argv[])
102 {
103 	struct sandbox_state *state;
104 	int err;
105 
106 	err = state_init();
107 	if (err)
108 		return err;
109 
110 	state = state_get_current();
111 	if (os_parse_args(state, argc, argv))
112 		return 1;
113 
114 	/* Do pre- and post-relocation init */
115 	board_init_f(0);
116 
117 	board_init_r(gd->new_gd, 0);
118 
119 	/* NOTREACHED - board_init_r() does not return */
120 	return 0;
121 }
122