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