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