blob: d1f47c7316b49f95c0bb2f4e20d8085500d94b68 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Schwarzaf775a02012-03-15 04:01:34 +00002/*
3 * Copyright (C) 2011
4 * Corscience GmbH & Co. KG - Simon Schwarz <schwarz@corscience.de>
Simon Schwarzaf775a02012-03-15 04:01:34 +00005 */
6
Simon Schwarzaf775a02012-03-15 04:01:34 +00007#include <command.h>
8#include <cmd_spl.h>
Simon Glass313112a2019-08-01 09:46:46 -06009#include <env.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060010#include <image.h>
Simon Glass0f2af882020-05-10 11:40:05 -060011#include <log.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060012#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090013#include <linux/libfdt.h>
Simon Schwarzaf775a02012-03-15 04:01:34 +000014
15DECLARE_GLOBAL_DATA_PTR;
16
17static const char **subcmd_list[] = {
18
19 [SPL_EXPORT_FDT] = (const char * []) {
20#ifdef CONFIG_OF_LIBFDT
21 "start",
22 "loados",
23 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
24 "ramdisk",
25 #endif
26 "fdt",
27 "cmdline",
28 "bdt",
29 "prep",
30#endif
31 NULL,
32 },
33 [SPL_EXPORT_ATAGS] = (const char * []) {
Patrick Delaunay65d4b172021-09-03 10:24:39 +020034#ifdef CONFIG_SUPPORT_PASSING_ATAGS
Simon Schwarzaf775a02012-03-15 04:01:34 +000035 "start",
36 "loados",
37#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
38 "ramdisk",
39#endif
40 "cmdline",
41 "bdt",
42 "prep",
43#endif
44 NULL,
45 },
46 NULL
47};
48
49/* Calls bootm with the parameters given */
Simon Glassed38aef2020-05-10 11:40:03 -060050static int call_bootm(int argc, char *const argv[], const char *subcommand[])
Simon Schwarzaf775a02012-03-15 04:01:34 +000051{
52 char *bootm_argv[5];
53
54 int i = 0;
55 int ret = 0;
56 int j;
57
58 /* create paramter array */
59 bootm_argv[0] = "do_bootm";
60 switch (argc) {
61 case 3:
62 bootm_argv[4] = argv[2]; /* fdt addr */
63 case 2:
64 bootm_argv[3] = argv[1]; /* initrd addr */
65 case 1:
66 bootm_argv[2] = argv[0]; /* kernel addr */
67 }
68
69
70 /*
71 * - do the work -
72 * exec subcommands of do_bootm to init the images
73 * data structure
74 */
75 while (subcommand[i] != NULL) {
76 bootm_argv[1] = (char *)subcommand[i];
77 debug("args %d: %s %s ", argc, bootm_argv[0], bootm_argv[1]);
78 for (j = 0; j < argc; j++)
79 debug("%s ", bootm_argv[j + 2]);
80 debug("\n");
81
82 ret = do_bootm(find_cmd("do_bootm"), 0, argc+2,
83 bootm_argv);
84 debug("Subcommand retcode: %d\n", ret);
85 i++;
86 }
87
88 if (ret) {
89 printf("ERROR prep subcommand failed!\n");
90 return -1;
91 }
92
93 return 0;
94}
95
Simon Glassed38aef2020-05-10 11:40:03 -060096static struct cmd_tbl cmd_spl_export_sub[] = {
Simon Schwarzaf775a02012-03-15 04:01:34 +000097 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)SPL_EXPORT_FDT, "", ""),
98 U_BOOT_CMD_MKENT(atags, 0, 1, (void *)SPL_EXPORT_ATAGS, "", ""),
99};
100
Simon Glassed38aef2020-05-10 11:40:03 -0600101static int spl_export(struct cmd_tbl *cmdtp, int flag, int argc,
102 char *const argv[])
Simon Schwarzaf775a02012-03-15 04:01:34 +0000103{
Simon Glassed38aef2020-05-10 11:40:03 -0600104 const struct cmd_tbl *c;
Simon Schwarzaf775a02012-03-15 04:01:34 +0000105
106 if (argc < 2) /* no subcommand */
107 return cmd_usage(cmdtp);
108
109 c = find_cmd_tbl(argv[1], &cmd_spl_export_sub[0],
110 ARRAY_SIZE(cmd_spl_export_sub));
York Sune6b65d42017-08-15 11:14:42 -0700111 if ((c) && ((long)c->cmd <= SPL_EXPORT_LAST)) {
Simon Schwarzaf775a02012-03-15 04:01:34 +0000112 argc -= 2;
113 argv += 2;
York Sune6b65d42017-08-15 11:14:42 -0700114 if (call_bootm(argc, argv, subcmd_list[(long)c->cmd]))
Simon Schwarzaf775a02012-03-15 04:01:34 +0000115 return -1;
York Sune6b65d42017-08-15 11:14:42 -0700116 switch ((long)c->cmd) {
Łukasz Majewski81274c72012-12-06 05:23:38 +0000117#ifdef CONFIG_OF_LIBFDT
Simon Schwarzaf775a02012-03-15 04:01:34 +0000118 case SPL_EXPORT_FDT:
119 printf("Argument image is now in RAM: 0x%p\n",
120 (void *)images.ft_addr);
Anatolij Gustschin7fd3f522017-08-17 21:01:48 +0200121 env_set_addr("fdtargsaddr", images.ft_addr);
122 env_set_hex("fdtargslen", fdt_totalsize(images.ft_addr));
York Sunbaddaa82017-09-28 08:42:11 -0700123#ifdef CONFIG_CMD_SPL_WRITE_SIZE
Anatolij Gustschin7fd3f522017-08-17 21:01:48 +0200124 if (fdt_totalsize(images.ft_addr) >
125 CONFIG_CMD_SPL_WRITE_SIZE)
126 puts("WARN: FDT size > CMD_SPL_WRITE_SIZE\n");
York Sunbaddaa82017-09-28 08:42:11 -0700127#endif
Simon Schwarzaf775a02012-03-15 04:01:34 +0000128 break;
Łukasz Majewski81274c72012-12-06 05:23:38 +0000129#endif
Simon Schwarzaf775a02012-03-15 04:01:34 +0000130 case SPL_EXPORT_ATAGS:
131 printf("Argument image is now in RAM at: 0x%p\n",
132 (void *)gd->bd->bi_boot_params);
133 break;
134 }
135 } else {
136 /* Unrecognized command */
137 return cmd_usage(cmdtp);
138 }
139
140 return 0;
141}
142
Simon Glassed38aef2020-05-10 11:40:03 -0600143static struct cmd_tbl cmd_spl_sub[] = {
Simon Schwarzaf775a02012-03-15 04:01:34 +0000144 U_BOOT_CMD_MKENT(export, 0, 1, (void *)SPL_EXPORT, "", ""),
145};
146
Simon Glassed38aef2020-05-10 11:40:03 -0600147static int do_spl(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
Simon Schwarzaf775a02012-03-15 04:01:34 +0000148{
Simon Glassed38aef2020-05-10 11:40:03 -0600149 const struct cmd_tbl *c;
Simon Schwarzaf775a02012-03-15 04:01:34 +0000150 int cmd;
151
152 if (argc < 2) /* no subcommand */
153 return cmd_usage(cmdtp);
154
155 c = find_cmd_tbl(argv[1], &cmd_spl_sub[0], ARRAY_SIZE(cmd_spl_sub));
156 if (c) {
York Sune6b65d42017-08-15 11:14:42 -0700157 cmd = (long)c->cmd;
Simon Schwarzaf775a02012-03-15 04:01:34 +0000158 switch (cmd) {
159 case SPL_EXPORT:
160 argc--;
161 argv++;
162 if (spl_export(cmdtp, flag, argc, argv))
163 printf("Subcommand failed\n");
164 break;
165 default:
166 /* unrecognized command */
167 return cmd_usage(cmdtp);
168 }
169 } else {
170 /* Unrecognized command */
171 return cmd_usage(cmdtp);
172 }
173 return 0;
174}
175
176U_BOOT_CMD(
177 spl, 6 , 1, do_spl, "SPL configuration",
Stefano Babic9a50bc12013-02-23 00:53:27 +0000178 "export <img=atags|fdt> [kernel_addr] [initrd_addr] [fdt_addr]\n"
179 "\timg\t\t\"atags\" or \"fdt\"\n"
180 "\tkernel_addr\taddress where a kernel image is stored.\n"
181 "\t\t\tkernel is loaded as part of the boot process, but it is not started.\n"
182 "\tinitrd_addr\taddress of initial ramdisk\n"
183 "\t\t\tcan be set to \"-\" if fdt_addr without initrd_addr is used.\n"
184 "\tfdt_addr\tin case of fdt, the address of the device tree.\n"
185 );