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