]>
Commit | Line | Data |
---|---|---|
47d1a6e1 | 1 | /* |
ca95c9df | 2 | * (C) Copyright 2000-2009 |
47d1a6e1 WD |
3 | * Wolfgang Denk, DENX Software Engineering, [email protected]. |
4 | * | |
5 | * See file CREDITS for list of people who contributed to this | |
6 | * project. | |
7 | * | |
8 | * This program is free software; you can redistribute it and/or | |
9 | * modify it under the terms of the GNU General Public License as | |
10 | * published by the Free Software Foundation; either version 2 of | |
11 | * the License, or (at your option) any later version. | |
12 | * | |
13 | * This program is distributed in the hope that it will be useful, | |
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | * GNU General Public License for more details. | |
17 | * | |
18 | * You should have received a copy of the GNU General Public License | |
19 | * along with this program; if not, write to the Free Software | |
20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, | |
21 | * MA 02111-1307 USA | |
22 | */ | |
23 | ||
b97a2a0a | 24 | |
47d1a6e1 WD |
25 | /* |
26 | * Boot support | |
27 | */ | |
28 | #include <common.h> | |
29 | #include <watchdog.h> | |
30 | #include <command.h> | |
47d1a6e1 WD |
31 | #include <image.h> |
32 | #include <malloc.h> | |
a31e091a | 33 | #include <u-boot/zlib.h> |
c29fdfc1 | 34 | #include <bzlib.h> |
7f70e853 | 35 | #include <environment.h> |
4ed6552f | 36 | #include <lmb.h> |
49c3a861 | 37 | #include <linux/ctype.h> |
47d1a6e1 | 38 | #include <asm/byteorder.h> |
8bde7f77 | 39 | |
ebb86c4e | 40 | #if defined(CONFIG_CMD_USB) |
3d71c81a MK |
41 | #include <usb.h> |
42 | #endif | |
43 | ||
6d0f6bcf | 44 | #ifdef CONFIG_SYS_HUSH_PARSER |
47d1a6e1 WD |
45 | #include <hush.h> |
46 | #endif | |
47 | ||
54f9c866 KG |
48 | #if defined(CONFIG_OF_LIBFDT) |
49 | #include <fdt.h> | |
50 | #include <libfdt.h> | |
51 | #include <fdt_support.h> | |
52 | #endif | |
53 | ||
fc9c1727 | 54 | #ifdef CONFIG_LZMA |
fc9c1727 | 55 | #include <lzma/LzmaTypes.h> |
caf72ff3 | 56 | #include <lzma/LzmaDec.h> |
fc9c1727 LCM |
57 | #include <lzma/LzmaTools.h> |
58 | #endif /* CONFIG_LZMA */ | |
59 | ||
20dde48b PK |
60 | #ifdef CONFIG_LZO |
61 | #include <linux/lzo.h> | |
62 | #endif /* CONFIG_LZO */ | |
63 | ||
1ee1180b | 64 | DECLARE_GLOBAL_DATA_PTR; |
228f29ac | 65 | |
6d0f6bcf JCPV |
66 | #ifndef CONFIG_SYS_BOOTM_LEN |
67 | #define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */ | |
2abbe075 WD |
68 | #endif |
69 | ||
321359f2 MB |
70 | #ifdef CONFIG_BZIP2 |
71 | extern void bz_internal_error(int); | |
47d1a6e1 WD |
72 | #endif |
73 | ||
baa26db4 | 74 | #if defined(CONFIG_CMD_IMI) |
47d1a6e1 WD |
75 | static int image_info (unsigned long addr); |
76 | #endif | |
27b207fd | 77 | |
baa26db4 | 78 | #if defined(CONFIG_CMD_IMLS) |
27b207fd | 79 | #include <flash.h> |
ca5def3f | 80 | #include <mtd/cfi_flash.h> |
e6f2e902 | 81 | extern flash_info_t flash_info[]; /* info for FLASH chips */ |
54841ab5 | 82 | static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
27b207fd WD |
83 | #endif |
84 | ||
1ee1180b MB |
85 | #ifdef CONFIG_SILENT_CONSOLE |
86 | static void fixup_silent_linux (void); | |
87 | #endif | |
47d1a6e1 | 88 | |
6986a385 MB |
89 | static image_header_t *image_get_kernel (ulong img_addr, int verify); |
90 | #if defined(CONFIG_FIT) | |
91 | static int fit_check_kernel (const void *fit, int os_noffset, int verify); | |
2262cfee WD |
92 | #endif |
93 | ||
54841ab5 | 94 | static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[], |
8a5ea3e6 | 95 | bootm_headers_t *images, ulong *os_data, ulong *os_len); |
47d1a6e1 WD |
96 | |
97 | /* | |
98 | * Continue booting an OS image; caller already has: | |
99 | * - copied image header to global variable `header' | |
100 | * - checked header magic number, checksums (both header & image), | |
101 | * - verified image architecture (PPC) and type (KERNEL or MULTI), | |
102 | * - loaded (first part of) image to header load address, | |
103 | * - disabled interrupts. | |
104 | */ | |
54841ab5 | 105 | typedef int boot_os_fn (int flag, int argc, char * const argv[], |
8a5ea3e6 | 106 | bootm_headers_t *images); /* pointers to os/initrd/fdt */ |
1ee1180b | 107 | |
b1d0db18 | 108 | #ifdef CONFIG_BOOTM_LINUX |
1ee1180b | 109 | extern boot_os_fn do_bootm_linux; |
b1d0db18 KG |
110 | #endif |
111 | #ifdef CONFIG_BOOTM_NETBSD | |
1ee1180b | 112 | static boot_os_fn do_bootm_netbsd; |
b1d0db18 | 113 | #endif |
f13e7b2e | 114 | #if defined(CONFIG_LYNXKDI) |
1ee1180b MB |
115 | static boot_os_fn do_bootm_lynxkdi; |
116 | extern void lynxkdi_boot (image_header_t *); | |
47d1a6e1 | 117 | #endif |
b1d0db18 | 118 | #ifdef CONFIG_BOOTM_RTEMS |
1ee1180b | 119 | static boot_os_fn do_bootm_rtems; |
b1d0db18 | 120 | #endif |
3df61957 TL |
121 | #if defined(CONFIG_BOOTM_OSE) |
122 | static boot_os_fn do_bootm_ose; | |
123 | #endif | |
baa26db4 | 124 | #if defined(CONFIG_CMD_ELF) |
1ee1180b MB |
125 | static boot_os_fn do_bootm_vxworks; |
126 | static boot_os_fn do_bootm_qnxelf; | |
54841ab5 WD |
127 | int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
128 | int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); | |
90253178 | 129 | #endif |
f5ed9e39 PT |
130 | #if defined(CONFIG_INTEGRITY) |
131 | static boot_os_fn do_bootm_integrity; | |
132 | #endif | |
47d1a6e1 | 133 | |
0008555f | 134 | static boot_os_fn *boot_os[] = { |
b1d0db18 | 135 | #ifdef CONFIG_BOOTM_LINUX |
be083159 | 136 | [IH_OS_LINUX] = do_bootm_linux, |
b1d0db18 KG |
137 | #endif |
138 | #ifdef CONFIG_BOOTM_NETBSD | |
be083159 | 139 | [IH_OS_NETBSD] = do_bootm_netbsd, |
b1d0db18 | 140 | #endif |
be083159 KG |
141 | #ifdef CONFIG_LYNXKDI |
142 | [IH_OS_LYNXOS] = do_bootm_lynxkdi, | |
143 | #endif | |
b1d0db18 | 144 | #ifdef CONFIG_BOOTM_RTEMS |
be083159 | 145 | [IH_OS_RTEMS] = do_bootm_rtems, |
b1d0db18 | 146 | #endif |
3df61957 TL |
147 | #if defined(CONFIG_BOOTM_OSE) |
148 | [IH_OS_OSE] = do_bootm_ose, | |
149 | #endif | |
be083159 KG |
150 | #if defined(CONFIG_CMD_ELF) |
151 | [IH_OS_VXWORKS] = do_bootm_vxworks, | |
152 | [IH_OS_QNX] = do_bootm_qnxelf, | |
153 | #endif | |
154 | #ifdef CONFIG_INTEGRITY | |
155 | [IH_OS_INTEGRITY] = do_bootm_integrity, | |
156 | #endif | |
157 | }; | |
158 | ||
d5934ad7 | 159 | static bootm_headers_t images; /* pointers to os/initrd/fdt images */ |
15940c9a | 160 | |
3dfad40a KG |
161 | /* Allow for arch specific config before we boot */ |
162 | void __arch_preboot_os(void) | |
163 | { | |
164 | /* please define platform specific arch_preboot_os() */ | |
165 | } | |
166 | void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os"))); | |
167 | ||
476af299 | 168 | #define IH_INITRD_ARCH IH_ARCH_DEFAULT |
47d1a6e1 | 169 | |
a16028da | 170 | static void bootm_start_lmb(void) |
47d1a6e1 | 171 | { |
a16028da | 172 | #ifdef CONFIG_LMB |
391fd93a BB |
173 | ulong mem_start; |
174 | phys_size_t mem_size; | |
47d1a6e1 | 175 | |
e906cfae | 176 | lmb_init(&images.lmb); |
47d1a6e1 | 177 | |
d3f2fa0d KG |
178 | mem_start = getenv_bootm_low(); |
179 | mem_size = getenv_bootm_size(); | |
47d1a6e1 | 180 | |
e906cfae | 181 | lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size); |
47d1a6e1 | 182 | |
76da19df | 183 | arch_lmb_reserve(&images.lmb); |
e906cfae | 184 | board_lmb_reserve(&images.lmb); |
a16028da MF |
185 | #else |
186 | # define lmb_reserve(lmb, base, size) | |
187 | #endif | |
188 | } | |
189 | ||
54841ab5 | 190 | static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
a16028da MF |
191 | { |
192 | void *os_hdr; | |
193 | int ret; | |
194 | ||
195 | memset ((void *)&images, 0, sizeof (images)); | |
196 | images.verify = getenv_yesno ("verify"); | |
197 | ||
198 | bootm_start_lmb(); | |
47d1a6e1 | 199 | |
5cf746c3 | 200 | /* get kernel image header, start address and length */ |
9a4daad0 | 201 | os_hdr = boot_get_kernel (cmdtp, flag, argc, argv, |
396f635b KG |
202 | &images, &images.os.image_start, &images.os.image_len); |
203 | if (images.os.image_len == 0) { | |
6986a385 | 204 | puts ("ERROR: can't get kernel image!\n"); |
47d1a6e1 | 205 | return 1; |
bccae903 | 206 | } |
bccae903 | 207 | |
d5934ad7 | 208 | /* get image parameters */ |
9a4daad0 | 209 | switch (genimg_get_format (os_hdr)) { |
d5934ad7 | 210 | case IMAGE_FORMAT_LEGACY: |
396f635b KG |
211 | images.os.type = image_get_type (os_hdr); |
212 | images.os.comp = image_get_comp (os_hdr); | |
213 | images.os.os = image_get_os (os_hdr); | |
bccae903 | 214 | |
396f635b KG |
215 | images.os.end = image_get_image_end (os_hdr); |
216 | images.os.load = image_get_load (os_hdr); | |
d5934ad7 MB |
217 | break; |
218 | #if defined(CONFIG_FIT) | |
219 | case IMAGE_FORMAT_FIT: | |
3dfe1101 | 220 | if (fit_image_get_type (images.fit_hdr_os, |
396f635b | 221 | images.fit_noffset_os, &images.os.type)) { |
6986a385 | 222 | puts ("Can't get image type!\n"); |
1372cce2 | 223 | show_boot_progress (-109); |
6986a385 MB |
224 | return 1; |
225 | } | |
47d1a6e1 | 226 | |
3dfe1101 | 227 | if (fit_image_get_comp (images.fit_hdr_os, |
396f635b | 228 | images.fit_noffset_os, &images.os.comp)) { |
6986a385 | 229 | puts ("Can't get image compression!\n"); |
1372cce2 | 230 | show_boot_progress (-110); |
6986a385 MB |
231 | return 1; |
232 | } | |
47d1a6e1 | 233 | |
3dfe1101 | 234 | if (fit_image_get_os (images.fit_hdr_os, |
396f635b | 235 | images.fit_noffset_os, &images.os.os)) { |
6986a385 | 236 | puts ("Can't get image OS!\n"); |
1372cce2 | 237 | show_boot_progress (-111); |
47d1a6e1 WD |
238 | return 1; |
239 | } | |
47d1a6e1 | 240 | |
396f635b | 241 | images.os.end = fit_get_end (images.fit_hdr_os); |
6986a385 | 242 | |
3dfe1101 | 243 | if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os, |
396f635b | 244 | &images.os.load)) { |
6986a385 | 245 | puts ("Can't get image load address!\n"); |
1372cce2 | 246 | show_boot_progress (-112); |
6986a385 | 247 | return 1; |
b13fb01a WD |
248 | } |
249 | break; | |
d5934ad7 MB |
250 | #endif |
251 | default: | |
252 | puts ("ERROR: unknown image format type!\n"); | |
47d1a6e1 WD |
253 | return 1; |
254 | } | |
d5934ad7 | 255 | |
c160a954 KG |
256 | /* find kernel entry point */ |
257 | if (images.legacy_hdr_valid) { | |
258 | images.ep = image_get_ep (&images.legacy_hdr_os_copy); | |
259 | #if defined(CONFIG_FIT) | |
260 | } else if (images.fit_uname_os) { | |
261 | ret = fit_image_get_entry (images.fit_hdr_os, | |
262 | images.fit_noffset_os, &images.ep); | |
263 | if (ret) { | |
264 | puts ("Can't get entry point property!\n"); | |
265 | return 1; | |
266 | } | |
267 | #endif | |
268 | } else { | |
269 | puts ("Could not find kernel entry point!\n"); | |
270 | return 1; | |
271 | } | |
272 | ||
24de2f4b HS |
273 | if (((images.os.type == IH_TYPE_KERNEL) || |
274 | (images.os.type == IH_TYPE_MULTI)) && | |
8b828a8f | 275 | (images.os.os == IH_OS_LINUX)) { |
c4f9419c KG |
276 | /* find ramdisk */ |
277 | ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH, | |
278 | &images.rd_start, &images.rd_end); | |
279 | if (ret) { | |
ea86b9e6 | 280 | puts ("Ramdisk image is corrupt or invalid\n"); |
c4f9419c KG |
281 | return 1; |
282 | } | |
06a09918 KG |
283 | |
284 | #if defined(CONFIG_OF_LIBFDT) | |
285 | /* find flattened device tree */ | |
286 | ret = boot_get_fdt (flag, argc, argv, &images, | |
287 | &images.ft_addr, &images.ft_len); | |
288 | if (ret) { | |
289 | puts ("Could not find a valid device tree\n"); | |
290 | return 1; | |
291 | } | |
54f9c866 KG |
292 | |
293 | set_working_fdt_addr(images.ft_addr); | |
06a09918 | 294 | #endif |
c4f9419c KG |
295 | } |
296 | ||
396f635b | 297 | images.os.start = (ulong)os_hdr; |
49c3a861 | 298 | images.state = BOOTM_STATE_START; |
47d1a6e1 | 299 | |
396f635b KG |
300 | return 0; |
301 | } | |
3d71c81a | 302 | |
396f635b KG |
303 | #define BOOTM_ERR_RESET -1 |
304 | #define BOOTM_ERR_OVERLAP -2 | |
305 | #define BOOTM_ERR_UNIMPLEMENTED -3 | |
306 | static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress) | |
307 | { | |
308 | uint8_t comp = os.comp; | |
309 | ulong load = os.load; | |
310 | ulong blob_start = os.start; | |
311 | ulong blob_end = os.end; | |
312 | ulong image_start = os.image_start; | |
313 | ulong image_len = os.image_len; | |
6d0f6bcf | 314 | uint unc_len = CONFIG_SYS_BOOTM_LEN; |
60fdc5f2 MW |
315 | #if defined(CONFIG_LZMA) || defined(CONFIG_LZO) |
316 | int ret; | |
317 | #endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */ | |
3d71c81a | 318 | |
396f635b | 319 | const char *type_name = genimg_get_type_name (os.type); |
c7de829c | 320 | |
d5934ad7 | 321 | switch (comp) { |
47d1a6e1 | 322 | case IH_COMP_NONE: |
02cf3459 | 323 | if (load == blob_start || load == image_start) { |
42b73e8e | 324 | printf (" XIP %s ... ", type_name); |
47d1a6e1 | 325 | } else { |
42b73e8e | 326 | printf (" Loading %s ... ", type_name); |
54fa2c5b LJ |
327 | memmove_wd ((void *)load, (void *)image_start, |
328 | image_len, CHUNKSZ); | |
47d1a6e1 | 329 | } |
396f635b | 330 | *load_end = load + image_len; |
2e752be3 | 331 | puts("OK\n"); |
47d1a6e1 | 332 | break; |
44431cab | 333 | #ifdef CONFIG_GZIP |
47d1a6e1 | 334 | case IH_COMP_GZIP: |
42b73e8e | 335 | printf (" Uncompressing %s ... ", type_name); |
396f635b KG |
336 | if (gunzip ((void *)load, unc_len, |
337 | (uchar *)image_start, &image_len) != 0) { | |
107b801c | 338 | puts ("GUNZIP: uncompress, out-of-mem or overwrite error " |
2682ce8a | 339 | "- must RESET board to recover\n"); |
396f635b KG |
340 | if (boot_progress) |
341 | show_boot_progress (-6); | |
342 | return BOOTM_ERR_RESET; | |
47d1a6e1 | 343 | } |
7582438c | 344 | |
396f635b | 345 | *load_end = load + image_len; |
47d1a6e1 | 346 | break; |
44431cab | 347 | #endif /* CONFIG_GZIP */ |
c29fdfc1 WD |
348 | #ifdef CONFIG_BZIP2 |
349 | case IH_COMP_BZIP2: | |
42b73e8e | 350 | printf (" Uncompressing %s ... ", type_name); |
5653fc33 WD |
351 | /* |
352 | * If we've got less than 4 MB of malloc() space, | |
353 | * use slower decompression algorithm which requires | |
354 | * at most 2300 KB of memory. | |
355 | */ | |
396f635b KG |
356 | int i = BZ2_bzBuffToBuffDecompress ((char*)load, |
357 | &unc_len, (char *)image_start, image_len, | |
6d0f6bcf | 358 | CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0); |
c29fdfc1 | 359 | if (i != BZ_OK) { |
2682ce8a MB |
360 | printf ("BUNZIP2: uncompress or overwrite error %d " |
361 | "- must RESET board to recover\n", i); | |
396f635b KG |
362 | if (boot_progress) |
363 | show_boot_progress (-6); | |
364 | return BOOTM_ERR_RESET; | |
c29fdfc1 | 365 | } |
7582438c | 366 | |
396f635b | 367 | *load_end = load + unc_len; |
c29fdfc1 WD |
368 | break; |
369 | #endif /* CONFIG_BZIP2 */ | |
fc9c1727 | 370 | #ifdef CONFIG_LZMA |
78e1e846 MF |
371 | case IH_COMP_LZMA: { |
372 | SizeT lzma_len = unc_len; | |
fc9c1727 LCM |
373 | printf (" Uncompressing %s ... ", type_name); |
374 | ||
60fdc5f2 | 375 | ret = lzmaBuffToBuffDecompress( |
78e1e846 | 376 | (unsigned char *)load, &lzma_len, |
d977a573 | 377 | (unsigned char *)image_start, image_len); |
78e1e846 | 378 | unc_len = lzma_len; |
caf72ff3 | 379 | if (ret != SZ_OK) { |
fc9c1727 LCM |
380 | printf ("LZMA: uncompress or overwrite error %d " |
381 | "- must RESET board to recover\n", ret); | |
382 | show_boot_progress (-6); | |
383 | return BOOTM_ERR_RESET; | |
384 | } | |
385 | *load_end = load + unc_len; | |
386 | break; | |
78e1e846 | 387 | } |
fc9c1727 | 388 | #endif /* CONFIG_LZMA */ |
20dde48b PK |
389 | #ifdef CONFIG_LZO |
390 | case IH_COMP_LZO: | |
391 | printf (" Uncompressing %s ... ", type_name); | |
392 | ||
60fdc5f2 | 393 | ret = lzop_decompress((const unsigned char *)image_start, |
20dde48b PK |
394 | image_len, (unsigned char *)load, |
395 | &unc_len); | |
396 | if (ret != LZO_E_OK) { | |
397 | printf ("LZO: uncompress or overwrite error %d " | |
398 | "- must RESET board to recover\n", ret); | |
399 | if (boot_progress) | |
400 | show_boot_progress (-6); | |
401 | return BOOTM_ERR_RESET; | |
402 | } | |
403 | ||
404 | *load_end = load + unc_len; | |
405 | break; | |
406 | #endif /* CONFIG_LZO */ | |
47d1a6e1 | 407 | default: |
d5934ad7 | 408 | printf ("Unimplemented compression type %d\n", comp); |
396f635b | 409 | return BOOTM_ERR_UNIMPLEMENTED; |
47d1a6e1 | 410 | } |
99ffccbd DC |
411 | |
412 | flush_cache(load, (*load_end - load) * sizeof(ulong)); | |
413 | ||
4b9206ed | 414 | puts ("OK\n"); |
54b4ab3c | 415 | debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end); |
396f635b KG |
416 | if (boot_progress) |
417 | show_boot_progress (7); | |
47d1a6e1 | 418 | |
396f635b KG |
419 | if ((load < blob_end) && (*load_end > blob_start)) { |
420 | debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end); | |
54b4ab3c | 421 | debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end); |
47d1a6e1 | 422 | |
396f635b KG |
423 | return BOOTM_ERR_OVERLAP; |
424 | } | |
425 | ||
426 | return 0; | |
427 | } | |
428 | ||
54841ab5 | 429 | static int bootm_start_standalone(ulong iflag, int argc, char * const argv[]) |
f97ec30b DZ |
430 | { |
431 | char *s; | |
54841ab5 | 432 | int (*appl)(int, char * const []); |
f97ec30b DZ |
433 | |
434 | /* Don't start if "autostart" is set to "no" */ | |
435 | if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) { | |
436 | char buf[32]; | |
437 | sprintf(buf, "%lX", images.os.image_len); | |
438 | setenv("filesize", buf); | |
439 | return 0; | |
440 | } | |
6d6f1236 | 441 | appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep); |
f97ec30b | 442 | (*appl)(argc-1, &argv[1]); |
f97ec30b DZ |
443 | return 0; |
444 | } | |
445 | ||
49c3a861 KG |
446 | /* we overload the cmd field with our state machine info instead of a |
447 | * function pointer */ | |
f74d9bd2 | 448 | static cmd_tbl_t cmd_bootm_sub[] = { |
49c3a861 KG |
449 | U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""), |
450 | U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""), | |
fca43cc8 | 451 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
49c3a861 KG |
452 | U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""), |
453 | #endif | |
454 | #ifdef CONFIG_OF_LIBFDT | |
455 | U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""), | |
456 | #endif | |
49c3a861 | 457 | U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""), |
224c90d1 | 458 | U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""), |
49c3a861 KG |
459 | U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""), |
460 | U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""), | |
461 | }; | |
462 | ||
54841ab5 | 463 | int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
49c3a861 KG |
464 | { |
465 | int ret = 0; | |
6d6f1236 | 466 | long state; |
49c3a861 KG |
467 | cmd_tbl_t *c; |
468 | boot_os_fn *boot_fn; | |
469 | ||
470 | c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub)); | |
471 | ||
472 | if (c) { | |
6d6f1236 | 473 | state = (long)c->cmd; |
49c3a861 KG |
474 | |
475 | /* treat start special since it resets the state machine */ | |
476 | if (state == BOOTM_STATE_START) { | |
477 | argc--; | |
478 | argv++; | |
479 | return bootm_start(cmdtp, flag, argc, argv); | |
480 | } | |
47e26b1b WD |
481 | } else { |
482 | /* Unrecognized command */ | |
483 | return cmd_usage(cmdtp); | |
49c3a861 KG |
484 | } |
485 | ||
486 | if (images.state >= state) { | |
487 | printf ("Trying to execute a command out of order\n"); | |
47e26b1b | 488 | return cmd_usage(cmdtp); |
49c3a861 KG |
489 | } |
490 | ||
491 | images.state |= state; | |
492 | boot_fn = boot_os[images.os.os]; | |
493 | ||
494 | switch (state) { | |
495 | ulong load_end; | |
496 | case BOOTM_STATE_START: | |
497 | /* should never occur */ | |
498 | break; | |
499 | case BOOTM_STATE_LOADOS: | |
500 | ret = bootm_load_os(images.os, &load_end, 0); | |
501 | if (ret) | |
502 | return ret; | |
503 | ||
504 | lmb_reserve(&images.lmb, images.os.load, | |
505 | (load_end - images.os.load)); | |
506 | break; | |
fca43cc8 | 507 | #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH |
49c3a861 KG |
508 | case BOOTM_STATE_RAMDISK: |
509 | { | |
510 | ulong rd_len = images.rd_end - images.rd_start; | |
511 | char str[17]; | |
512 | ||
513 | ret = boot_ramdisk_high(&images.lmb, images.rd_start, | |
514 | rd_len, &images.initrd_start, &images.initrd_end); | |
515 | if (ret) | |
516 | return ret; | |
517 | ||
518 | sprintf(str, "%lx", images.initrd_start); | |
519 | setenv("initrd_start", str); | |
520 | sprintf(str, "%lx", images.initrd_end); | |
521 | setenv("initrd_end", str); | |
522 | } | |
523 | break; | |
524 | #endif | |
ed59e587 | 525 | #if defined(CONFIG_OF_LIBFDT) |
49c3a861 KG |
526 | case BOOTM_STATE_FDT: |
527 | { | |
55b0a393 GL |
528 | boot_fdt_add_mem_rsv_regions(&images.lmb, |
529 | images.ft_addr); | |
590d3cac | 530 | ret = boot_relocate_fdt(&images.lmb, |
49c3a861 KG |
531 | &images.ft_addr, &images.ft_len); |
532 | break; | |
533 | } | |
534 | #endif | |
535 | case BOOTM_STATE_OS_CMDLINE: | |
536 | ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images); | |
537 | if (ret) | |
538 | printf ("cmdline subcommand not supported\n"); | |
539 | break; | |
540 | case BOOTM_STATE_OS_BD_T: | |
541 | ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images); | |
542 | if (ret) | |
543 | printf ("bdt subcommand not supported\n"); | |
544 | break; | |
545 | case BOOTM_STATE_OS_PREP: | |
546 | ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images); | |
547 | if (ret) | |
548 | printf ("prep subcommand not supported\n"); | |
549 | break; | |
550 | case BOOTM_STATE_OS_GO: | |
551 | disable_interrupts(); | |
3dfad40a | 552 | arch_preboot_os(); |
49c3a861 KG |
553 | boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images); |
554 | break; | |
555 | } | |
556 | ||
557 | return ret; | |
558 | } | |
559 | ||
396f635b KG |
560 | /*******************************************************************/ |
561 | /* bootm - boot application image from image in memory */ | |
562 | /*******************************************************************/ | |
be083159 | 563 | |
54841ab5 | 564 | int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
396f635b | 565 | { |
396f635b KG |
566 | ulong iflag; |
567 | ulong load_end = 0; | |
568 | int ret; | |
be083159 | 569 | boot_os_fn *boot_fn; |
2e5167cc | 570 | #ifdef CONFIG_NEEDS_MANUAL_RELOC |
521af04d | 571 | static int relocated = 0; |
be083159 KG |
572 | |
573 | /* relocate boot function table */ | |
574 | if (!relocated) { | |
575 | int i; | |
576 | for (i = 0; i < ARRAY_SIZE(boot_os); i++) | |
ca95c9df DZ |
577 | if (boot_os[i] != NULL) |
578 | boot_os[i] += gd->reloc_off; | |
be083159 KG |
579 | relocated = 1; |
580 | } | |
521af04d | 581 | #endif |
396f635b | 582 | |
49c3a861 KG |
583 | /* determine if we have a sub command */ |
584 | if (argc > 1) { | |
585 | char *endp; | |
586 | ||
587 | simple_strtoul(argv[1], &endp, 16); | |
588 | /* endp pointing to NULL means that argv[1] was just a | |
589 | * valid number, pass it along to the normal bootm processing | |
590 | * | |
591 | * If endp is ':' or '#' assume a FIT identifier so pass | |
592 | * along for normal processing. | |
593 | * | |
594 | * Right now we assume the first arg should never be '-' | |
595 | */ | |
596 | if ((*endp != 0) && (*endp != ':') && (*endp != '#')) | |
597 | return do_bootm_subcommand(cmdtp, flag, argc, argv); | |
598 | } | |
599 | ||
8e02494e AG |
600 | if (bootm_start(cmdtp, flag, argc, argv)) |
601 | return 1; | |
396f635b KG |
602 | |
603 | /* | |
604 | * We have reached the point of no return: we are going to | |
605 | * overwrite all exception vector code, so we cannot easily | |
606 | * recover from any failures any more... | |
607 | */ | |
608 | iflag = disable_interrupts(); | |
609 | ||
610 | #if defined(CONFIG_CMD_USB) | |
611 | /* | |
612 | * turn off USB to prevent the host controller from writing to the | |
613 | * SDRAM while Linux is booting. This could happen (at least for OHCI | |
614 | * controller), because the HCCA (Host Controller Communication Area) | |
615 | * lies within the SDRAM and the host controller writes continously to | |
616 | * this area (as busmaster!). The HccaFrameNumber is for example | |
617 | * updated every 1 ms within the HCCA structure in SDRAM! For more | |
618 | * details see the OpenHCI specification. | |
619 | */ | |
620 | usb_stop(); | |
621 | #endif | |
622 | ||
396f635b KG |
623 | ret = bootm_load_os(images.os, &load_end, 1); |
624 | ||
625 | if (ret < 0) { | |
626 | if (ret == BOOTM_ERR_RESET) | |
cb1c4896 | 627 | do_reset (cmdtp, flag, argc, argv); |
396f635b KG |
628 | if (ret == BOOTM_ERR_OVERLAP) { |
629 | if (images.legacy_hdr_valid) { | |
630 | if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI) | |
631 | puts ("WARNING: legacy format multi component " | |
632 | "image overwritten\n"); | |
633 | } else { | |
634 | puts ("ERROR: new format image overwritten - " | |
635 | "must RESET the board to recover\n"); | |
636 | show_boot_progress (-113); | |
637 | do_reset (cmdtp, flag, argc, argv); | |
638 | } | |
639 | } | |
640 | if (ret == BOOTM_ERR_UNIMPLEMENTED) { | |
641 | if (iflag) | |
642 | enable_interrupts(); | |
643 | show_boot_progress (-7); | |
644 | return 1; | |
cb1c4896 | 645 | } |
47d1a6e1 | 646 | } |
7582438c | 647 | |
396f635b | 648 | lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load)); |
47d1a6e1 | 649 | |
f97ec30b DZ |
650 | if (images.os.type == IH_TYPE_STANDALONE) { |
651 | if (iflag) | |
652 | enable_interrupts(); | |
653 | /* This may return when 'autostart' is 'no' */ | |
654 | bootm_start_standalone(iflag, argc, argv); | |
655 | return 0; | |
656 | } | |
657 | ||
396f635b | 658 | show_boot_progress (8); |
4ed6552f | 659 | |
f72da340 | 660 | #ifdef CONFIG_SILENT_CONSOLE |
be083159 KG |
661 | if (images.os.os == IH_OS_LINUX) |
662 | fixup_silent_linux(); | |
1f4bb37d WD |
663 | #endif |
664 | ||
be083159 | 665 | boot_fn = boot_os[images.os.os]; |
ca95c9df DZ |
666 | |
667 | if (boot_fn == NULL) { | |
668 | if (iflag) | |
669 | enable_interrupts(); | |
670 | printf ("ERROR: booting os '%s' (%d) is not supported\n", | |
671 | genimg_get_os_name(images.os.os), images.os.os); | |
672 | show_boot_progress (-8); | |
673 | return 1; | |
674 | } | |
675 | ||
3dfad40a KG |
676 | arch_preboot_os(); |
677 | ||
be083159 | 678 | boot_fn(0, argc, argv, &images); |
47d1a6e1 | 679 | |
fad63407 | 680 | show_boot_progress (-9); |
47d1a6e1 | 681 | #ifdef DEBUG |
4b9206ed | 682 | puts ("\n## Control returned to monitor - resetting...\n"); |
47d1a6e1 | 683 | #endif |
40d7e99d | 684 | do_reset (cmdtp, flag, argc, argv); |
a44a269a | 685 | |
47d1a6e1 WD |
686 | return 1; |
687 | } | |
688 | ||
67d668bf MF |
689 | int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd) |
690 | { | |
691 | const char *ep = getenv("autostart"); | |
692 | ||
693 | if (ep && !strcmp(ep, "yes")) { | |
694 | char *local_args[2]; | |
695 | local_args[0] = (char *)cmd; | |
696 | local_args[1] = NULL; | |
697 | printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr); | |
698 | return do_bootm(cmdtp, 0, 1, local_args); | |
699 | } | |
700 | ||
701 | return 0; | |
702 | } | |
703 | ||
1efd4360 | 704 | /** |
9a4daad0 MB |
705 | * image_get_kernel - verify legacy format kernel image |
706 | * @img_addr: in RAM address of the legacy format image to be verified | |
707 | * @verify: data CRC verification flag | |
1efd4360 | 708 | * |
9a4daad0 MB |
709 | * image_get_kernel() verifies legacy image integrity and returns pointer to |
710 | * legacy image header if image verification was completed successfully. | |
1efd4360 MB |
711 | * |
712 | * returns: | |
9a4daad0 MB |
713 | * pointer to a legacy image header if valid image was found |
714 | * otherwise return NULL | |
1efd4360 MB |
715 | */ |
716 | static image_header_t *image_get_kernel (ulong img_addr, int verify) | |
f72da340 | 717 | { |
1efd4360 | 718 | image_header_t *hdr = (image_header_t *)img_addr; |
f72da340 | 719 | |
1efd4360 MB |
720 | if (!image_check_magic(hdr)) { |
721 | puts ("Bad Magic Number\n"); | |
722 | show_boot_progress (-1); | |
723 | return NULL; | |
724 | } | |
725 | show_boot_progress (2); | |
f72da340 | 726 | |
1efd4360 MB |
727 | if (!image_check_hcrc (hdr)) { |
728 | puts ("Bad Header Checksum\n"); | |
729 | show_boot_progress (-2); | |
730 | return NULL; | |
731 | } | |
732 | ||
733 | show_boot_progress (3); | |
734 | image_print_contents (hdr); | |
735 | ||
736 | if (verify) { | |
737 | puts (" Verifying Checksum ... "); | |
738 | if (!image_check_dcrc (hdr)) { | |
739 | printf ("Bad Data CRC\n"); | |
740 | show_boot_progress (-3); | |
741 | return NULL; | |
f72da340 | 742 | } |
1efd4360 | 743 | puts ("OK\n"); |
f72da340 | 744 | } |
1efd4360 | 745 | show_boot_progress (4); |
f72da340 | 746 | |
1efd4360 MB |
747 | if (!image_check_target_arch (hdr)) { |
748 | printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr)); | |
749 | show_boot_progress (-4); | |
750 | return NULL; | |
751 | } | |
752 | return hdr; | |
f72da340 | 753 | } |
f72da340 | 754 | |
6986a385 MB |
755 | /** |
756 | * fit_check_kernel - verify FIT format kernel subimage | |
757 | * @fit_hdr: pointer to the FIT image header | |
758 | * os_noffset: kernel subimage node offset within FIT image | |
759 | * @verify: data CRC verification flag | |
760 | * | |
761 | * fit_check_kernel() verifies integrity of the kernel subimage and from | |
762 | * specified FIT image. | |
763 | * | |
764 | * returns: | |
765 | * 1, on success | |
766 | * 0, on failure | |
767 | */ | |
768 | #if defined (CONFIG_FIT) | |
769 | static int fit_check_kernel (const void *fit, int os_noffset, int verify) | |
47d1a6e1 | 770 | { |
6986a385 | 771 | fit_image_print (fit, os_noffset, " "); |
47d1a6e1 | 772 | |
6986a385 MB |
773 | if (verify) { |
774 | puts (" Verifying Hash Integrity ... "); | |
775 | if (!fit_image_check_hashes (fit, os_noffset)) { | |
776 | puts ("Bad Data Hash\n"); | |
1372cce2 | 777 | show_boot_progress (-104); |
6986a385 MB |
778 | return 0; |
779 | } | |
780 | puts ("OK\n"); | |
47d1a6e1 | 781 | } |
1372cce2 | 782 | show_boot_progress (105); |
47d1a6e1 | 783 | |
6986a385 MB |
784 | if (!fit_image_check_target_arch (fit, os_noffset)) { |
785 | puts ("Unsupported Architecture\n"); | |
1372cce2 | 786 | show_boot_progress (-105); |
6986a385 MB |
787 | return 0; |
788 | } | |
56f94be3 | 789 | |
1372cce2 | 790 | show_boot_progress (106); |
6986a385 MB |
791 | if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) { |
792 | puts ("Not a kernel image\n"); | |
1372cce2 | 793 | show_boot_progress (-106); |
6986a385 MB |
794 | return 0; |
795 | } | |
47d1a6e1 | 796 | |
1372cce2 | 797 | show_boot_progress (107); |
6986a385 MB |
798 | return 1; |
799 | } | |
800 | #endif /* CONFIG_FIT */ | |
47d1a6e1 | 801 | |
5cf746c3 | 802 | /** |
9a4daad0 | 803 | * boot_get_kernel - find kernel image |
5cf746c3 MB |
804 | * @os_data: pointer to a ulong variable, will hold os data start address |
805 | * @os_len: pointer to a ulong variable, will hold os data length | |
806 | * | |
9a4daad0 | 807 | * boot_get_kernel() tries to find a kernel image, verifies its integrity |
5cf746c3 MB |
808 | * and locates kernel data. |
809 | * | |
810 | * returns: | |
811 | * pointer to image header if valid image was found, plus kernel start | |
812 | * address and length, otherwise NULL | |
813 | */ | |
54841ab5 | 814 | static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[], |
8a5ea3e6 | 815 | bootm_headers_t *images, ulong *os_data, ulong *os_len) |
5cf746c3 MB |
816 | { |
817 | image_header_t *hdr; | |
818 | ulong img_addr; | |
d5934ad7 MB |
819 | #if defined(CONFIG_FIT) |
820 | void *fit_hdr; | |
821 | const char *fit_uname_config = NULL; | |
822 | const char *fit_uname_kernel = NULL; | |
6986a385 MB |
823 | const void *data; |
824 | size_t len; | |
f773bea8 | 825 | int cfg_noffset; |
6986a385 | 826 | int os_noffset; |
d5934ad7 | 827 | #endif |
56f94be3 | 828 | |
d5934ad7 | 829 | /* find out kernel image address */ |
5cf746c3 MB |
830 | if (argc < 2) { |
831 | img_addr = load_addr; | |
d5934ad7 MB |
832 | debug ("* kernel: default image load address = 0x%08lx\n", |
833 | load_addr); | |
834 | #if defined(CONFIG_FIT) | |
835 | } else if (fit_parse_conf (argv[1], load_addr, &img_addr, | |
836 | &fit_uname_config)) { | |
837 | debug ("* kernel: config '%s' from image at 0x%08lx\n", | |
838 | fit_uname_config, img_addr); | |
839 | } else if (fit_parse_subimage (argv[1], load_addr, &img_addr, | |
840 | &fit_uname_kernel)) { | |
841 | debug ("* kernel: subimage '%s' from image at 0x%08lx\n", | |
842 | fit_uname_kernel, img_addr); | |
843 | #endif | |
5cf746c3 MB |
844 | } else { |
845 | img_addr = simple_strtoul(argv[1], NULL, 16); | |
d5934ad7 | 846 | debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr); |
5cf746c3 | 847 | } |
47d1a6e1 | 848 | |
5cf746c3 | 849 | show_boot_progress (1); |
56f94be3 | 850 | |
fff888a1 | 851 | /* copy from dataflash if needed */ |
9a4daad0 | 852 | img_addr = genimg_get_image (img_addr); |
5cf746c3 | 853 | |
d5934ad7 | 854 | /* check image type, for FIT images get FIT kernel node */ |
6986a385 | 855 | *os_data = *os_len = 0; |
9a4daad0 | 856 | switch (genimg_get_format ((void *)img_addr)) { |
d5934ad7 | 857 | case IMAGE_FORMAT_LEGACY: |
6986a385 MB |
858 | printf ("## Booting kernel from Legacy Image at %08lx ...\n", |
859 | img_addr); | |
1efd4360 MB |
860 | hdr = image_get_kernel (img_addr, images->verify); |
861 | if (!hdr) | |
d5934ad7 | 862 | return NULL; |
d5934ad7 MB |
863 | show_boot_progress (5); |
864 | ||
6986a385 | 865 | /* get os_data and os_len */ |
d5934ad7 MB |
866 | switch (image_get_type (hdr)) { |
867 | case IH_TYPE_KERNEL: | |
868 | *os_data = image_get_data (hdr); | |
869 | *os_len = image_get_data_size (hdr); | |
870 | break; | |
871 | case IH_TYPE_MULTI: | |
872 | image_multi_getimg (hdr, 0, os_data, os_len); | |
873 | break; | |
f97ec30b | 874 | case IH_TYPE_STANDALONE: |
f97ec30b DZ |
875 | *os_data = image_get_data (hdr); |
876 | *os_len = image_get_data_size (hdr); | |
877 | break; | |
d5934ad7 MB |
878 | default: |
879 | printf ("Wrong Image Type for %s command\n", cmdtp->name); | |
880 | show_boot_progress (-5); | |
881 | return NULL; | |
882 | } | |
cb1c4896 MB |
883 | |
884 | /* | |
885 | * copy image header to allow for image overwrites during kernel | |
886 | * decompression. | |
887 | */ | |
888 | memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t)); | |
889 | ||
890 | /* save pointer to image header */ | |
d5934ad7 | 891 | images->legacy_hdr_os = hdr; |
47d1a6e1 | 892 | |
cb1c4896 | 893 | images->legacy_hdr_valid = 1; |
1372cce2 | 894 | show_boot_progress (6); |
5cf746c3 | 895 | break; |
d5934ad7 MB |
896 | #if defined(CONFIG_FIT) |
897 | case IMAGE_FORMAT_FIT: | |
898 | fit_hdr = (void *)img_addr; | |
6986a385 MB |
899 | printf ("## Booting kernel from FIT Image at %08lx ...\n", |
900 | img_addr); | |
901 | ||
902 | if (!fit_check_format (fit_hdr)) { | |
903 | puts ("Bad FIT kernel image format!\n"); | |
1372cce2 | 904 | show_boot_progress (-100); |
6986a385 MB |
905 | return NULL; |
906 | } | |
1372cce2 | 907 | show_boot_progress (100); |
47d1a6e1 | 908 | |
6986a385 MB |
909 | if (!fit_uname_kernel) { |
910 | /* | |
911 | * no kernel image node unit name, try to get config | |
912 | * node first. If config unit node name is NULL | |
913 | * fit_conf_get_node() will try to find default config node | |
914 | */ | |
1372cce2 | 915 | show_boot_progress (101); |
f773bea8 MB |
916 | cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config); |
917 | if (cfg_noffset < 0) { | |
1372cce2 | 918 | show_boot_progress (-101); |
6986a385 | 919 | return NULL; |
1372cce2 | 920 | } |
f773bea8 MB |
921 | /* save configuration uname provided in the first |
922 | * bootm argument | |
923 | */ | |
924 | images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL); | |
925 | printf (" Using '%s' configuration\n", images->fit_uname_cfg); | |
926 | show_boot_progress (103); | |
47d1a6e1 | 927 | |
f773bea8 | 928 | os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset); |
6986a385 MB |
929 | fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL); |
930 | } else { | |
931 | /* get kernel component image node offset */ | |
1372cce2 | 932 | show_boot_progress (102); |
6986a385 MB |
933 | os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel); |
934 | } | |
1372cce2 MB |
935 | if (os_noffset < 0) { |
936 | show_boot_progress (-103); | |
6986a385 | 937 | return NULL; |
1372cce2 | 938 | } |
47d1a6e1 | 939 | |
6986a385 | 940 | printf (" Trying '%s' kernel subimage\n", fit_uname_kernel); |
47d1a6e1 | 941 | |
1372cce2 | 942 | show_boot_progress (104); |
6986a385 MB |
943 | if (!fit_check_kernel (fit_hdr, os_noffset, images->verify)) |
944 | return NULL; | |
47d1a6e1 | 945 | |
6986a385 MB |
946 | /* get kernel image data address and length */ |
947 | if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) { | |
948 | puts ("Could not find kernel subimage data!\n"); | |
1372cce2 | 949 | show_boot_progress (-107); |
6986a385 MB |
950 | return NULL; |
951 | } | |
1372cce2 | 952 | show_boot_progress (108); |
47d1a6e1 | 953 | |
6986a385 MB |
954 | *os_len = len; |
955 | *os_data = (ulong)data; | |
956 | images->fit_hdr_os = fit_hdr; | |
957 | images->fit_uname_os = fit_uname_kernel; | |
3dfe1101 | 958 | images->fit_noffset_os = os_noffset; |
6986a385 | 959 | break; |
9c4c5ae3 | 960 | #endif |
5cf746c3 | 961 | default: |
d5934ad7 | 962 | printf ("Wrong Image Format for %s command\n", cmdtp->name); |
1372cce2 | 963 | show_boot_progress (-108); |
5cf746c3 | 964 | return NULL; |
47d1a6e1 WD |
965 | } |
966 | ||
06c53bea | 967 | debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n", |
6986a385 | 968 | *os_data, *os_len, *os_len); |
47d1a6e1 | 969 | |
d5934ad7 | 970 | return (void *)img_addr; |
5cf746c3 | 971 | } |
98a9c4d4 | 972 | |
0d498393 | 973 | U_BOOT_CMD( |
6d0f6bcf | 974 | bootm, CONFIG_SYS_MAXARGS, 1, do_bootm, |
2fb2604d | 975 | "boot application image from memory", |
1ee1180b MB |
976 | "[addr [arg ...]]\n - boot application image stored in memory\n" |
977 | "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n" | |
978 | "\t'arg' can be the address of an initrd image\n" | |
4a2ad5ff | 979 | #if defined(CONFIG_OF_LIBFDT) |
98a9c4d4 | 980 | "\tWhen booting a Linux kernel which requires a flat device-tree\n" |
5441f61a | 981 | "\ta third argument is required which is the address of the\n" |
98a9c4d4 MM |
982 | "\tdevice-tree blob. To boot that kernel without an initrd image,\n" |
983 | "\tuse a '-' for the second argument. If you do not pass a third\n" | |
984 | "\ta bd_info struct will be passed instead\n" | |
98a9c4d4 | 985 | #endif |
6986a385 MB |
986 | #if defined(CONFIG_FIT) |
987 | "\t\nFor the new multi component uImage format (FIT) addresses\n" | |
988 | "\tmust be extened to include component or configuration unit name:\n" | |
989 | "\taddr:<subimg_uname> - direct component image specification\n" | |
990 | "\taddr#<conf_uname> - configuration specification\n" | |
991 | "\tUse iminfo command to get the list of existing component\n" | |
992 | "\timages and configurations.\n" | |
993 | #endif | |
49c3a861 KG |
994 | "\nSub-commands to do part of the bootm sequence. The sub-commands " |
995 | "must be\n" | |
996 | "issued in the order below (it's ok to not issue all sub-commands):\n" | |
997 | "\tstart [addr [arg ...]]\n" | |
998 | "\tloados - load OS image\n" | |
999 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) | |
1000 | "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n" | |
1001 | #endif | |
1002 | #if defined(CONFIG_OF_LIBFDT) | |
1003 | "\tfdt - relocate flat device tree\n" | |
1004 | #endif | |
49c3a861 | 1005 | "\tcmdline - OS specific command line processing/setup\n" |
224c90d1 | 1006 | "\tbdt - OS specific bd_t processing\n" |
49c3a861 | 1007 | "\tprep - OS specific prep before relocation or go\n" |
a89c33db | 1008 | "\tgo - start OS" |
8bde7f77 | 1009 | ); |
47d1a6e1 | 1010 | |
1ee1180b MB |
1011 | /*******************************************************************/ |
1012 | /* bootd - boot default image */ | |
1013 | /*******************************************************************/ | |
baa26db4 | 1014 | #if defined(CONFIG_CMD_BOOTD) |
54841ab5 | 1015 | int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
47d1a6e1 WD |
1016 | { |
1017 | int rcode = 0; | |
47d1a6e1 | 1018 | |
6d0f6bcf | 1019 | #ifndef CONFIG_SYS_HUSH_PARSER |
1ee1180b MB |
1020 | if (run_command (getenv ("bootcmd"), flag) < 0) |
1021 | rcode = 1; | |
47d1a6e1 | 1022 | #else |
1ee1180b MB |
1023 | if (parse_string_outer (getenv ("bootcmd"), |
1024 | FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0) | |
1025 | rcode = 1; | |
47d1a6e1 WD |
1026 | #endif |
1027 | return rcode; | |
1028 | } | |
47d1a6e1 | 1029 | |
0d498393 | 1030 | U_BOOT_CMD( |
1ee1180b | 1031 | boot, 1, 1, do_bootd, |
2fb2604d | 1032 | "boot default, i.e., run 'bootcmd'", |
a89c33db | 1033 | "" |
9d2b18a0 | 1034 | ); |
47d1a6e1 | 1035 | |
9d2b18a0 | 1036 | /* keep old command name "bootd" for backward compatibility */ |
0d498393 | 1037 | U_BOOT_CMD( |
1ee1180b | 1038 | bootd, 1, 1, do_bootd, |
2fb2604d | 1039 | "boot default, i.e., run 'bootcmd'", |
a89c33db | 1040 | "" |
8bde7f77 | 1041 | ); |
47d1a6e1 | 1042 | |
47d1a6e1 | 1043 | #endif |
47d1a6e1 | 1044 | |
47d1a6e1 | 1045 | |
1ee1180b MB |
1046 | /*******************************************************************/ |
1047 | /* iminfo - print header info for a requested image */ | |
1048 | /*******************************************************************/ | |
baa26db4 | 1049 | #if defined(CONFIG_CMD_IMI) |
54841ab5 | 1050 | int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
47d1a6e1 WD |
1051 | { |
1052 | int arg; | |
1053 | ulong addr; | |
1ee1180b | 1054 | int rcode = 0; |
47d1a6e1 | 1055 | |
47d1a6e1 WD |
1056 | if (argc < 2) { |
1057 | return image_info (load_addr); | |
1058 | } | |
47d1a6e1 | 1059 | |
1ee1180b MB |
1060 | for (arg = 1; arg < argc; ++arg) { |
1061 | addr = simple_strtoul (argv[arg], NULL, 16); | |
1062 | if (image_info (addr) != 0) | |
1063 | rcode = 1; | |
47d1a6e1 WD |
1064 | } |
1065 | return rcode; | |
1066 | } | |
47d1a6e1 | 1067 | |
47d1a6e1 WD |
1068 | static int image_info (ulong addr) |
1069 | { | |
d5934ad7 | 1070 | void *hdr = (void *)addr; |
47d1a6e1 | 1071 | |
47d1a6e1 | 1072 | printf ("\n## Checking Image at %08lx ...\n", addr); |
47d1a6e1 | 1073 | |
9a4daad0 | 1074 | switch (genimg_get_format (hdr)) { |
d5934ad7 MB |
1075 | case IMAGE_FORMAT_LEGACY: |
1076 | puts (" Legacy image found\n"); | |
1077 | if (!image_check_magic (hdr)) { | |
1078 | puts (" Bad Magic Number\n"); | |
1079 | return 1; | |
1080 | } | |
47d1a6e1 | 1081 | |
d5934ad7 MB |
1082 | if (!image_check_hcrc (hdr)) { |
1083 | puts (" Bad Header Checksum\n"); | |
1084 | return 1; | |
47d1a6e1 WD |
1085 | } |
1086 | ||
d5934ad7 | 1087 | image_print_contents (hdr); |
47d1a6e1 | 1088 | |
d5934ad7 MB |
1089 | puts (" Verifying Checksum ... "); |
1090 | if (!image_check_dcrc (hdr)) { | |
1091 | puts (" Bad Data CRC\n"); | |
1092 | return 1; | |
47d1a6e1 | 1093 | } |
d5934ad7 MB |
1094 | puts ("OK\n"); |
1095 | return 0; | |
1096 | #if defined(CONFIG_FIT) | |
1097 | case IMAGE_FORMAT_FIT: | |
1098 | puts (" FIT image found\n"); | |
47d1a6e1 | 1099 | |
e32fea6a MB |
1100 | if (!fit_check_format (hdr)) { |
1101 | puts ("Bad FIT image format!\n"); | |
1102 | return 1; | |
47d1a6e1 WD |
1103 | } |
1104 | ||
e32fea6a | 1105 | fit_print_contents (hdr); |
a4f24345 BS |
1106 | |
1107 | if (!fit_all_image_check_hashes (hdr)) { | |
1108 | puts ("Bad hash in FIT image!\n"); | |
1109 | return 1; | |
1110 | } | |
1111 | ||
d5934ad7 MB |
1112 | return 0; |
1113 | #endif | |
1114 | default: | |
1115 | puts ("Unknown image format!\n"); | |
1116 | break; | |
47d1a6e1 WD |
1117 | } |
1118 | ||
d5934ad7 | 1119 | return 1; |
47d1a6e1 | 1120 | } |
0d498393 WD |
1121 | |
1122 | U_BOOT_CMD( | |
6d0f6bcf | 1123 | iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo, |
2fb2604d | 1124 | "print header information for application image", |
8bde7f77 WD |
1125 | "addr [addr ...]\n" |
1126 | " - print header information for application image starting at\n" | |
1127 | " address 'addr' in memory; this includes verification of the\n" | |
a89c33db | 1128 | " image contents (magic number, header and payload checksums)" |
8bde7f77 | 1129 | ); |
25c751e9 | 1130 | #endif |
87a449c8 | 1131 | |
25c751e9 | 1132 | |
1ee1180b MB |
1133 | /*******************************************************************/ |
1134 | /* imls - list all images found in flash */ | |
1135 | /*******************************************************************/ | |
baa26db4 | 1136 | #if defined(CONFIG_CMD_IMLS) |
54841ab5 | 1137 | int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
27b207fd WD |
1138 | { |
1139 | flash_info_t *info; | |
1140 | int i, j; | |
d5934ad7 | 1141 | void *hdr; |
25c751e9 | 1142 | |
1ee1180b | 1143 | for (i = 0, info = &flash_info[0]; |
6d0f6bcf | 1144 | i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) { |
25c751e9 | 1145 | |
27b207fd WD |
1146 | if (info->flash_id == FLASH_UNKNOWN) |
1147 | goto next_bank; | |
1ee1180b | 1148 | for (j = 0; j < info->sector_count; ++j) { |
25c751e9 | 1149 | |
d5934ad7 MB |
1150 | hdr = (void *)info->start[j]; |
1151 | if (!hdr) | |
b97a2a0a | 1152 | goto next_sector; |
27b207fd | 1153 | |
9a4daad0 | 1154 | switch (genimg_get_format (hdr)) { |
d5934ad7 | 1155 | case IMAGE_FORMAT_LEGACY: |
d5934ad7 MB |
1156 | if (!image_check_hcrc (hdr)) |
1157 | goto next_sector; | |
1158 | ||
1159 | printf ("Legacy Image at %08lX:\n", (ulong)hdr); | |
1160 | image_print_contents (hdr); | |
1161 | ||
1162 | puts (" Verifying Checksum ... "); | |
1163 | if (!image_check_dcrc (hdr)) { | |
1164 | puts ("Bad Data CRC\n"); | |
1165 | } else { | |
1166 | puts ("OK\n"); | |
1167 | } | |
1168 | break; | |
1169 | #if defined(CONFIG_FIT) | |
1170 | case IMAGE_FORMAT_FIT: | |
e32fea6a MB |
1171 | if (!fit_check_format (hdr)) |
1172 | goto next_sector; | |
1173 | ||
d5934ad7 | 1174 | printf ("FIT Image at %08lX:\n", (ulong)hdr); |
e32fea6a | 1175 | fit_print_contents (hdr); |
d5934ad7 | 1176 | break; |
213bf8c8 | 1177 | #endif |
d5934ad7 | 1178 | default: |
27b207fd | 1179 | goto next_sector; |
25c751e9 | 1180 | } |
87a449c8 | 1181 | |
bdccc4fe | 1182 | next_sector: ; |
c76f951a | 1183 | } |
bdccc4fe | 1184 | next_bank: ; |
27b207fd | 1185 | } |
c76f951a | 1186 | |
27b207fd WD |
1187 | return (0); |
1188 | } | |
c76f951a | 1189 | |
27b207fd WD |
1190 | U_BOOT_CMD( |
1191 | imls, 1, 1, do_imls, | |
2fb2604d | 1192 | "list all images found in flash", |
27b207fd WD |
1193 | "\n" |
1194 | " - Prints information about all images found at sector\n" | |
a89c33db | 1195 | " boundaries in flash." |
27b207fd | 1196 | ); |
98a9c4d4 | 1197 | #endif |
47d1a6e1 | 1198 | |
1ee1180b | 1199 | /*******************************************************************/ |
5cf746c3 | 1200 | /* helper routines */ |
1ee1180b | 1201 | /*******************************************************************/ |
1ee1180b | 1202 | #ifdef CONFIG_SILENT_CONSOLE |
3a8653b3 | 1203 | static void fixup_silent_linux(void) |
1ee1180b MB |
1204 | { |
1205 | char buf[256], *start, *end; | |
3a8653b3 | 1206 | char *cmdline = getenv("bootargs"); |
47d1a6e1 | 1207 | |
1ee1180b MB |
1208 | /* Only fix cmdline when requested */ |
1209 | if (!(gd->flags & GD_FLG_SILENT)) | |
1210 | return; | |
47d1a6e1 | 1211 | |
3a8653b3 | 1212 | debug("before silent fix-up: %s\n", cmdline); |
1ee1180b | 1213 | if (cmdline) { |
3a8653b3 DA |
1214 | start = strstr(cmdline, "console="); |
1215 | if (start) { | |
1216 | end = strchr(start, ' '); | |
1217 | strncpy(buf, cmdline, (start - cmdline + 8)); | |
1ee1180b | 1218 | if (end) |
3a8653b3 | 1219 | strcpy(buf + (start - cmdline + 8), end); |
1ee1180b MB |
1220 | else |
1221 | buf[start - cmdline + 8] = '\0'; | |
1222 | } else { | |
3a8653b3 DA |
1223 | strcpy(buf, cmdline); |
1224 | strcat(buf, " console="); | |
47d1a6e1 | 1225 | } |
47d1a6e1 | 1226 | } else { |
3a8653b3 | 1227 | strcpy(buf, "console="); |
e7902122 | 1228 | } |
10aaf716 | 1229 | |
3a8653b3 DA |
1230 | setenv("bootargs", buf); |
1231 | debug("after silent fix-up: %s\n", buf); | |
1ee1180b MB |
1232 | } |
1233 | #endif /* CONFIG_SILENT_CONSOLE */ | |
38eb508e | 1234 | |
38eb508e | 1235 | |
1ee1180b MB |
1236 | /*******************************************************************/ |
1237 | /* OS booting routines */ | |
1238 | /*******************************************************************/ | |
c76f951a | 1239 | |
b1d0db18 | 1240 | #ifdef CONFIG_BOOTM_NETBSD |
54841ab5 | 1241 | static int do_bootm_netbsd (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1242 | bootm_headers_t *images) |
d791b1dc | 1243 | { |
1ee1180b | 1244 | void (*loader)(bd_t *, image_header_t *, char *, char *); |
d5934ad7 | 1245 | image_header_t *os_hdr, *hdr; |
f13e7b2e | 1246 | ulong kernel_data, kernel_len; |
1ee1180b MB |
1247 | char *consdev; |
1248 | char *cmdline; | |
1249 | ||
49c3a861 KG |
1250 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1251 | return 1; | |
1252 | ||
d5934ad7 MB |
1253 | #if defined(CONFIG_FIT) |
1254 | if (!images->legacy_hdr_valid) { | |
1255 | fit_unsupported_reset ("NetBSD"); | |
40d7e99d | 1256 | return 1; |
38eb508e GVB |
1257 | } |
1258 | #endif | |
d5934ad7 | 1259 | hdr = images->legacy_hdr_os; |
47d1a6e1 WD |
1260 | |
1261 | /* | |
1262 | * Booting a (NetBSD) kernel image | |
1263 | * | |
1264 | * This process is pretty similar to a standalone application: | |
1265 | * The (first part of an multi-) image must be a stage-2 loader, | |
1266 | * which in turn is responsible for loading & invoking the actual | |
1267 | * kernel. The only differences are the parameters being passed: | |
1268 | * besides the board info strucure, the loader expects a command | |
1269 | * line, the name of the console device, and (optionally) the | |
1270 | * address of the original image header. | |
1271 | */ | |
d5934ad7 | 1272 | os_hdr = NULL; |
cb1c4896 | 1273 | if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) { |
f13e7b2e MB |
1274 | image_multi_getimg (hdr, 1, &kernel_data, &kernel_len); |
1275 | if (kernel_len) | |
d5934ad7 | 1276 | os_hdr = hdr; |
f13e7b2e | 1277 | } |
47d1a6e1 WD |
1278 | |
1279 | consdev = ""; | |
1280 | #if defined (CONFIG_8xx_CONS_SMC1) | |
1281 | consdev = "smc1"; | |
1282 | #elif defined (CONFIG_8xx_CONS_SMC2) | |
1283 | consdev = "smc2"; | |
1284 | #elif defined (CONFIG_8xx_CONS_SCC2) | |
1285 | consdev = "scc2"; | |
1286 | #elif defined (CONFIG_8xx_CONS_SCC3) | |
1287 | consdev = "scc3"; | |
1288 | #endif | |
1289 | ||
1290 | if (argc > 2) { | |
1291 | ulong len; | |
1292 | int i; | |
1293 | ||
1ee1180b | 1294 | for (i = 2, len = 0; i < argc; i += 1) |
47d1a6e1 WD |
1295 | len += strlen (argv[i]) + 1; |
1296 | cmdline = malloc (len); | |
1297 | ||
1ee1180b | 1298 | for (i = 2, len = 0; i < argc; i += 1) { |
47d1a6e1 WD |
1299 | if (i > 2) |
1300 | cmdline[len++] = ' '; | |
1301 | strcpy (&cmdline[len], argv[i]); | |
1302 | len += strlen (argv[i]); | |
1303 | } | |
1ee1180b | 1304 | } else if ((cmdline = getenv ("bootargs")) == NULL) { |
47d1a6e1 WD |
1305 | cmdline = ""; |
1306 | } | |
1307 | ||
c160a954 | 1308 | loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep; |
47d1a6e1 WD |
1309 | |
1310 | printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n", | |
1311 | (ulong)loader); | |
1312 | ||
fad63407 | 1313 | show_boot_progress (15); |
47d1a6e1 WD |
1314 | |
1315 | /* | |
1316 | * NetBSD Stage-2 Loader Parameters: | |
1317 | * r3: ptr to board info data | |
1318 | * r4: image address | |
1319 | * r5: console device | |
1320 | * r6: boot args string | |
1321 | */ | |
d5934ad7 | 1322 | (*loader) (gd->bd, os_hdr, consdev, cmdline); |
40d7e99d KG |
1323 | |
1324 | return 1; | |
47d1a6e1 | 1325 | } |
b1d0db18 | 1326 | #endif /* CONFIG_BOOTM_NETBSD*/ |
47d1a6e1 | 1327 | |
1ee1180b | 1328 | #ifdef CONFIG_LYNXKDI |
54841ab5 | 1329 | static int do_bootm_lynxkdi (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1330 | bootm_headers_t *images) |
1ee1180b | 1331 | { |
cb1c4896 | 1332 | image_header_t *hdr = &images->legacy_hdr_os_copy; |
d5934ad7 | 1333 | |
49c3a861 KG |
1334 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1335 | return 1; | |
1336 | ||
d5934ad7 MB |
1337 | #if defined(CONFIG_FIT) |
1338 | if (!images->legacy_hdr_valid) { | |
1339 | fit_unsupported_reset ("Lynx"); | |
40d7e99d | 1340 | return 1; |
d5934ad7 MB |
1341 | } |
1342 | #endif | |
1343 | ||
1344 | lynxkdi_boot ((image_header_t *)hdr); | |
40d7e99d KG |
1345 | |
1346 | return 1; | |
1ee1180b MB |
1347 | } |
1348 | #endif /* CONFIG_LYNXKDI */ | |
1349 | ||
b1d0db18 | 1350 | #ifdef CONFIG_BOOTM_RTEMS |
54841ab5 | 1351 | static int do_bootm_rtems (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1352 | bootm_headers_t *images) |
1ee1180b | 1353 | { |
1ee1180b | 1354 | void (*entry_point)(bd_t *); |
d791b1dc | 1355 | |
49c3a861 KG |
1356 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1357 | return 1; | |
1358 | ||
d5934ad7 MB |
1359 | #if defined(CONFIG_FIT) |
1360 | if (!images->legacy_hdr_valid) { | |
1361 | fit_unsupported_reset ("RTEMS"); | |
40d7e99d | 1362 | return 1; |
d5934ad7 MB |
1363 | } |
1364 | #endif | |
1365 | ||
c160a954 | 1366 | entry_point = (void (*)(bd_t *))images->ep; |
d791b1dc WD |
1367 | |
1368 | printf ("## Transferring control to RTEMS (at address %08lx) ...\n", | |
1369 | (ulong)entry_point); | |
1370 | ||
fad63407 | 1371 | show_boot_progress (15); |
d791b1dc WD |
1372 | |
1373 | /* | |
1374 | * RTEMS Parameters: | |
1375 | * r3: ptr to board info data | |
1376 | */ | |
1ee1180b | 1377 | (*entry_point)(gd->bd); |
40d7e99d KG |
1378 | |
1379 | return 1; | |
d791b1dc | 1380 | } |
b1d0db18 | 1381 | #endif /* CONFIG_BOOTM_RTEMS */ |
7f70e853 | 1382 | |
3df61957 TL |
1383 | #if defined(CONFIG_BOOTM_OSE) |
1384 | static int do_bootm_ose (int flag, int argc, char * const argv[], | |
1385 | bootm_headers_t *images) | |
1386 | { | |
1387 | void (*entry_point)(void); | |
1388 | ||
1389 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) | |
1390 | return 1; | |
1391 | ||
1392 | #if defined(CONFIG_FIT) | |
1393 | if (!images->legacy_hdr_valid) { | |
1394 | fit_unsupported_reset ("OSE"); | |
1395 | return 1; | |
1396 | } | |
1397 | #endif | |
1398 | ||
1399 | entry_point = (void (*)(void))images->ep; | |
1400 | ||
1401 | printf ("## Transferring control to OSE (at address %08lx) ...\n", | |
1402 | (ulong)entry_point); | |
1403 | ||
1404 | show_boot_progress (15); | |
1405 | ||
1406 | /* | |
1407 | * OSE Parameters: | |
1408 | * None | |
1409 | */ | |
1410 | (*entry_point)(); | |
1411 | ||
1412 | return 1; | |
1413 | } | |
1414 | #endif /* CONFIG_BOOTM_OSE */ | |
1415 | ||
baa26db4 | 1416 | #if defined(CONFIG_CMD_ELF) |
54841ab5 | 1417 | static int do_bootm_vxworks (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1418 | bootm_headers_t *images) |
47d1a6e1 | 1419 | { |
47d1a6e1 | 1420 | char str[80]; |
7f70e853 | 1421 | |
49c3a861 KG |
1422 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1423 | return 1; | |
1424 | ||
d5934ad7 | 1425 | #if defined(CONFIG_FIT) |
cb1c4896 | 1426 | if (!images->legacy_hdr_valid) { |
d5934ad7 | 1427 | fit_unsupported_reset ("VxWorks"); |
40d7e99d | 1428 | return 1; |
d5934ad7 MB |
1429 | } |
1430 | #endif | |
47d1a6e1 | 1431 | |
c160a954 | 1432 | sprintf(str, "%lx", images->ep); /* write entry-point into string */ |
47d1a6e1 | 1433 | setenv("loadaddr", str); |
40d7e99d KG |
1434 | do_bootvx(NULL, 0, 0, NULL); |
1435 | ||
1436 | return 1; | |
47d1a6e1 WD |
1437 | } |
1438 | ||
54841ab5 | 1439 | static int do_bootm_qnxelf(int flag, int argc, char * const argv[], |
8a5ea3e6 | 1440 | bootm_headers_t *images) |
47d1a6e1 | 1441 | { |
47d1a6e1 WD |
1442 | char *local_args[2]; |
1443 | char str[16]; | |
d5934ad7 | 1444 | |
49c3a861 KG |
1445 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1446 | return 1; | |
1447 | ||
d5934ad7 MB |
1448 | #if defined(CONFIG_FIT) |
1449 | if (!images->legacy_hdr_valid) { | |
1450 | fit_unsupported_reset ("QNX"); | |
40d7e99d | 1451 | return 1; |
d5934ad7 MB |
1452 | } |
1453 | #endif | |
47d1a6e1 | 1454 | |
c160a954 | 1455 | sprintf(str, "%lx", images->ep); /* write entry-point into string */ |
47d1a6e1 WD |
1456 | local_args[0] = argv[0]; |
1457 | local_args[1] = str; /* and provide it via the arguments */ | |
40d7e99d KG |
1458 | do_bootelf(NULL, 0, 2, local_args); |
1459 | ||
1460 | return 1; | |
47d1a6e1 | 1461 | } |
90253178 | 1462 | #endif |
f5ed9e39 PT |
1463 | |
1464 | #ifdef CONFIG_INTEGRITY | |
54841ab5 | 1465 | static int do_bootm_integrity (int flag, int argc, char * const argv[], |
f5ed9e39 PT |
1466 | bootm_headers_t *images) |
1467 | { | |
1468 | void (*entry_point)(void); | |
1469 | ||
49c3a861 KG |
1470 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1471 | return 1; | |
1472 | ||
f5ed9e39 PT |
1473 | #if defined(CONFIG_FIT) |
1474 | if (!images->legacy_hdr_valid) { | |
1475 | fit_unsupported_reset ("INTEGRITY"); | |
1476 | return 1; | |
1477 | } | |
1478 | #endif | |
1479 | ||
1480 | entry_point = (void (*)(void))images->ep; | |
1481 | ||
1482 | printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n", | |
1483 | (ulong)entry_point); | |
1484 | ||
1485 | show_boot_progress (15); | |
1486 | ||
1487 | /* | |
1488 | * INTEGRITY Parameters: | |
1489 | * None | |
1490 | */ | |
1491 | (*entry_point)(); | |
1492 | ||
1493 | return 1; | |
1494 | } | |
1495 | #endif |