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