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