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