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