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