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