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