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