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