]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bootm.c
bootm: Move fixup_silent_linux() earlier in the bootm stages
[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 #include <asm/io.h>
40 #include <linux/compiler.h>
41
42 #if defined(CONFIG_CMD_USB)
43 #include <usb.h>
44 #endif
45
46 #ifdef CONFIG_SYS_HUSH_PARSER
47 #include <hush.h>
48 #endif
49
50 #if defined(CONFIG_OF_LIBFDT)
51 #include <libfdt.h>
52 #include <fdt_support.h>
53 #endif
54
55 #ifdef CONFIG_LZMA
56 #include <lzma/LzmaTypes.h>
57 #include <lzma/LzmaDec.h>
58 #include <lzma/LzmaTools.h>
59 #endif /* CONFIG_LZMA */
60
61 #ifdef CONFIG_LZO
62 #include <linux/lzo.h>
63 #endif /* CONFIG_LZO */
64
65 DECLARE_GLOBAL_DATA_PTR;
66
67 #ifndef CONFIG_SYS_BOOTM_LEN
68 #define CONFIG_SYS_BOOTM_LEN    0x800000        /* use 8MByte as default max gunzip size */
69 #endif
70
71 #ifdef CONFIG_BZIP2
72 extern void bz_internal_error(int);
73 #endif
74
75 #if defined(CONFIG_CMD_IMI)
76 static int image_info(unsigned long addr);
77 #endif
78
79 #if defined(CONFIG_CMD_IMLS)
80 #include <flash.h>
81 #include <mtd/cfi_flash.h>
82 extern flash_info_t flash_info[]; /* info for FLASH chips */
83 #endif
84
85 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
86 static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
87 #endif
88
89 #include <linux/err.h>
90 #include <nand.h>
91
92 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
93 static void fixup_silent_linux(void);
94 #endif
95
96 static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
97                                 char * const argv[], bootm_headers_t *images,
98                                 ulong *os_data, ulong *os_len);
99
100 /*
101  *  Continue booting an OS image; caller already has:
102  *  - copied image header to global variable `header'
103  *  - checked header magic number, checksums (both header & image),
104  *  - verified image architecture (PPC) and type (KERNEL or MULTI),
105  *  - loaded (first part of) image to header load address,
106  *  - disabled interrupts.
107  *
108  * @flag: Flags indicating what to do (BOOTM_STATE_...)
109  * @argc: Number of arguments. Note that the arguments are shifted down
110  *       so that 0 is the first argument not processed by U-Boot, and
111  *       argc is adjusted accordingly. This avoids confusion as to how
112  *       many arguments are available for the OS.
113  * @images: Pointers to os/initrd/fdt
114  * @return 1 on error. On success the OS boots so this function does
115  * not return.
116  */
117 typedef int boot_os_fn(int flag, int argc, char * const argv[],
118                         bootm_headers_t *images);
119
120 #ifdef CONFIG_BOOTM_LINUX
121 extern boot_os_fn do_bootm_linux;
122 #endif
123 #ifdef CONFIG_BOOTM_NETBSD
124 static boot_os_fn do_bootm_netbsd;
125 #endif
126 #if defined(CONFIG_LYNXKDI)
127 static boot_os_fn do_bootm_lynxkdi;
128 extern void lynxkdi_boot(image_header_t *);
129 #endif
130 #ifdef CONFIG_BOOTM_RTEMS
131 static boot_os_fn do_bootm_rtems;
132 #endif
133 #if defined(CONFIG_BOOTM_OSE)
134 static boot_os_fn do_bootm_ose;
135 #endif
136 #if defined(CONFIG_BOOTM_PLAN9)
137 static boot_os_fn do_bootm_plan9;
138 #endif
139 #if defined(CONFIG_CMD_ELF)
140 static boot_os_fn do_bootm_vxworks;
141 static boot_os_fn do_bootm_qnxelf;
142 int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
143 int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
144 #endif
145 #if defined(CONFIG_INTEGRITY)
146 static boot_os_fn do_bootm_integrity;
147 #endif
148
149 static boot_os_fn *boot_os[] = {
150 #ifdef CONFIG_BOOTM_LINUX
151         [IH_OS_LINUX] = do_bootm_linux,
152 #endif
153 #ifdef CONFIG_BOOTM_NETBSD
154         [IH_OS_NETBSD] = do_bootm_netbsd,
155 #endif
156 #ifdef CONFIG_LYNXKDI
157         [IH_OS_LYNXOS] = do_bootm_lynxkdi,
158 #endif
159 #ifdef CONFIG_BOOTM_RTEMS
160         [IH_OS_RTEMS] = do_bootm_rtems,
161 #endif
162 #if defined(CONFIG_BOOTM_OSE)
163         [IH_OS_OSE] = do_bootm_ose,
164 #endif
165 #if defined(CONFIG_BOOTM_PLAN9)
166         [IH_OS_PLAN9] = do_bootm_plan9,
167 #endif
168 #if defined(CONFIG_CMD_ELF)
169         [IH_OS_VXWORKS] = do_bootm_vxworks,
170         [IH_OS_QNX] = do_bootm_qnxelf,
171 #endif
172 #ifdef CONFIG_INTEGRITY
173         [IH_OS_INTEGRITY] = do_bootm_integrity,
174 #endif
175 };
176
177 bootm_headers_t images;         /* pointers to os/initrd/fdt images */
178
179 /* Allow for arch specific config before we boot */
180 static void __arch_preboot_os(void)
181 {
182         /* please define platform specific arch_preboot_os() */
183 }
184 void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
185
186 #define IH_INITRD_ARCH IH_ARCH_DEFAULT
187
188 #ifdef CONFIG_LMB
189 static void boot_start_lmb(bootm_headers_t *images)
190 {
191         ulong           mem_start;
192         phys_size_t     mem_size;
193
194         lmb_init(&images->lmb);
195
196         mem_start = getenv_bootm_low();
197         mem_size = getenv_bootm_size();
198
199         lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size);
200
201         arch_lmb_reserve(&images->lmb);
202         board_lmb_reserve(&images->lmb);
203 }
204 #else
205 #define lmb_reserve(lmb, base, size)
206 static inline void boot_start_lmb(bootm_headers_t *images) { }
207 #endif
208
209 static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
210 {
211         memset((void *)&images, 0, sizeof(images));
212         images.verify = getenv_yesno("verify");
213
214         boot_start_lmb(&images);
215
216         bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
217         images.state = BOOTM_STATE_START;
218
219         return 0;
220 }
221
222 static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc,
223                          char * const argv[])
224 {
225         const void *os_hdr;
226
227         /* get kernel image header, start address and length */
228         os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
229                         &images, &images.os.image_start, &images.os.image_len);
230         if (images.os.image_len == 0) {
231                 puts("ERROR: can't get kernel image!\n");
232                 return 1;
233         }
234
235         /* get image parameters */
236         switch (genimg_get_format(os_hdr)) {
237         case IMAGE_FORMAT_LEGACY:
238                 images.os.type = image_get_type(os_hdr);
239                 images.os.comp = image_get_comp(os_hdr);
240                 images.os.os = image_get_os(os_hdr);
241
242                 images.os.end = image_get_image_end(os_hdr);
243                 images.os.load = image_get_load(os_hdr);
244                 break;
245 #if defined(CONFIG_FIT)
246         case IMAGE_FORMAT_FIT:
247                 if (fit_image_get_type(images.fit_hdr_os,
248                                         images.fit_noffset_os, &images.os.type)) {
249                         puts("Can't get image type!\n");
250                         bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
251                         return 1;
252                 }
253
254                 if (fit_image_get_comp(images.fit_hdr_os,
255                                         images.fit_noffset_os, &images.os.comp)) {
256                         puts("Can't get image compression!\n");
257                         bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
258                         return 1;
259                 }
260
261                 if (fit_image_get_os(images.fit_hdr_os,
262                                         images.fit_noffset_os, &images.os.os)) {
263                         puts("Can't get image OS!\n");
264                         bootstage_error(BOOTSTAGE_ID_FIT_OS);
265                         return 1;
266                 }
267
268                 images.os.end = fit_get_end(images.fit_hdr_os);
269
270                 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
271                                         &images.os.load)) {
272                         puts("Can't get image load address!\n");
273                         bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
274                         return 1;
275                 }
276                 break;
277 #endif
278         default:
279                 puts("ERROR: unknown image format type!\n");
280                 return 1;
281         }
282
283         /* find kernel entry point */
284         if (images.legacy_hdr_valid) {
285                 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
286 #if defined(CONFIG_FIT)
287         } else if (images.fit_uname_os) {
288                 int ret;
289
290                 ret = fit_image_get_entry(images.fit_hdr_os,
291                                           images.fit_noffset_os, &images.ep);
292                 if (ret) {
293                         puts("Can't get entry point property!\n");
294                         return 1;
295                 }
296 #endif
297         } else {
298                 puts("Could not find kernel entry point!\n");
299                 return 1;
300         }
301
302         if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
303                 images.os.load = images.os.image_start;
304                 images.ep += images.os.load;
305         }
306
307         images.os.start = (ulong)os_hdr;
308
309         return 0;
310 }
311
312 static int bootm_find_ramdisk(int flag, int argc, char * const argv[])
313 {
314         int ret;
315
316         /* find ramdisk */
317         ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
318                                &images.rd_start, &images.rd_end);
319         if (ret) {
320                 puts("Ramdisk image is corrupt or invalid\n");
321                 return 1;
322         }
323
324         return 0;
325 }
326
327 #if defined(CONFIG_OF_LIBFDT)
328 static int bootm_find_fdt(int flag, int argc, char * const argv[])
329 {
330         int ret;
331
332         /* find flattened device tree */
333         ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
334                            &images.ft_addr, &images.ft_len);
335         if (ret) {
336                 puts("Could not find a valid device tree\n");
337                 return 1;
338         }
339
340         set_working_fdt_addr(images.ft_addr);
341
342         return 0;
343 }
344 #endif
345
346 static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc,
347                             char * const argv[])
348 {
349         if (((images.os.type == IH_TYPE_KERNEL) ||
350              (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
351              (images.os.type == IH_TYPE_MULTI)) &&
352             (images.os.os == IH_OS_LINUX)) {
353                 if (bootm_find_ramdisk(flag, argc, argv))
354                         return 1;
355
356 #if defined(CONFIG_OF_LIBFDT)
357                 if (bootm_find_fdt(flag, argc, argv))
358                         return 1;
359 #endif
360         }
361
362         return 0;
363 }
364
365 #define BOOTM_ERR_RESET         -1
366 #define BOOTM_ERR_OVERLAP       -2
367 #define BOOTM_ERR_UNIMPLEMENTED -3
368 static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
369                 int boot_progress)
370 {
371         image_info_t os = images->os;
372         uint8_t comp = os.comp;
373         ulong load = os.load;
374         ulong blob_start = os.start;
375         ulong blob_end = os.end;
376         ulong image_start = os.image_start;
377         ulong image_len = os.image_len;
378         __maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
379         int no_overlap = 0;
380         void *load_buf, *image_buf;
381 #if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
382         int ret;
383 #endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
384
385         const char *type_name = genimg_get_type_name(os.type);
386
387         load_buf = map_sysmem(load, image_len);
388         image_buf = map_sysmem(image_start, image_len);
389         switch (comp) {
390         case IH_COMP_NONE:
391                 if (load == blob_start || load == image_start) {
392                         printf("   XIP %s ... ", type_name);
393                         no_overlap = 1;
394                 } else {
395                         printf("   Loading %s ... ", type_name);
396                         memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
397                 }
398                 *load_end = load + image_len;
399                 break;
400 #ifdef CONFIG_GZIP
401         case IH_COMP_GZIP:
402                 printf("   Uncompressing %s ... ", type_name);
403                 if (gunzip(load_buf, unc_len, image_buf, &image_len) != 0) {
404                         puts("GUNZIP: uncompress, out-of-mem or overwrite "
405                                 "error - must RESET board to recover\n");
406                         if (boot_progress)
407                                 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
408                         return BOOTM_ERR_RESET;
409                 }
410
411                 *load_end = load + image_len;
412                 break;
413 #endif /* CONFIG_GZIP */
414 #ifdef CONFIG_BZIP2
415         case IH_COMP_BZIP2:
416                 printf("   Uncompressing %s ... ", type_name);
417                 /*
418                  * If we've got less than 4 MB of malloc() space,
419                  * use slower decompression algorithm which requires
420                  * at most 2300 KB of memory.
421                  */
422                 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
423                         image_buf, image_len,
424                         CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
425                 if (i != BZ_OK) {
426                         printf("BUNZIP2: uncompress or overwrite error %d "
427                                 "- must RESET board to recover\n", i);
428                         if (boot_progress)
429                                 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
430                         return BOOTM_ERR_RESET;
431                 }
432
433                 *load_end = load + unc_len;
434                 break;
435 #endif /* CONFIG_BZIP2 */
436 #ifdef CONFIG_LZMA
437         case IH_COMP_LZMA: {
438                 SizeT lzma_len = unc_len;
439                 printf("   Uncompressing %s ... ", type_name);
440
441                 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
442                                                image_buf, image_len);
443                 unc_len = lzma_len;
444                 if (ret != SZ_OK) {
445                         printf("LZMA: uncompress or overwrite error %d "
446                                 "- must RESET board to recover\n", ret);
447                         bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
448                         return BOOTM_ERR_RESET;
449                 }
450                 *load_end = load + unc_len;
451                 break;
452         }
453 #endif /* CONFIG_LZMA */
454 #ifdef CONFIG_LZO
455         case IH_COMP_LZO:
456                 printf("   Uncompressing %s ... ", type_name);
457
458                 ret = lzop_decompress(image_buf, image_len, load_buf,
459                                       &unc_len);
460                 if (ret != LZO_E_OK) {
461                         printf("LZO: uncompress or overwrite error %d "
462                               "- must RESET board to recover\n", ret);
463                         if (boot_progress)
464                                 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
465                         return BOOTM_ERR_RESET;
466                 }
467
468                 *load_end = load + unc_len;
469                 break;
470 #endif /* CONFIG_LZO */
471         default:
472                 printf("Unimplemented compression type %d\n", comp);
473                 return BOOTM_ERR_UNIMPLEMENTED;
474         }
475
476         flush_cache(load, (*load_end - load) * sizeof(ulong));
477
478         puts("OK\n");
479         debug("   kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
480         bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
481
482         if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
483                 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
484                         blob_start, blob_end);
485                 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
486                         *load_end);
487
488                 /* Check what type of image this is. */
489                 if (images->legacy_hdr_valid) {
490                         if (image_get_type(&images->legacy_hdr_os_copy)
491                                         == IH_TYPE_MULTI)
492                                 puts("WARNING: legacy format multi component image overwritten\n");
493                         return BOOTM_ERR_OVERLAP;
494                 } else {
495                         puts("ERROR: new format image overwritten - must RESET the board to recover\n");
496                         bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
497                         return BOOTM_ERR_RESET;
498                 }
499         }
500
501         return 0;
502 }
503
504 static int bootm_start_standalone(int argc, char * const argv[])
505 {
506         char  *s;
507         int   (*appl)(int, char * const []);
508
509         /* Don't start if "autostart" is set to "no" */
510         if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
511                 setenv_hex("filesize", images.os.image_len);
512                 return 0;
513         }
514         appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
515         (*appl)(argc, argv);
516         return 0;
517 }
518
519 /* we overload the cmd field with our state machine info instead of a
520  * function pointer */
521 static cmd_tbl_t cmd_bootm_sub[] = {
522         U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
523         U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
524 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
525         U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
526 #endif
527 #ifdef CONFIG_OF_LIBFDT
528         U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
529 #endif
530         U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
531         U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
532         U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
533         U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
534         U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
535 };
536
537 static int boot_selected_os(int argc, char * const argv[], int state,
538                 bootm_headers_t *images, boot_os_fn *boot_fn)
539 {
540         if (images->os.type == IH_TYPE_STANDALONE) {
541                 /* This may return when 'autostart' is 'no' */
542                 bootm_start_standalone(argc, argv);
543                 return 0;
544         }
545         arch_preboot_os();
546         boot_fn(state, argc, argv, images);
547         if (state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
548                 return 0;
549         bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
550 #ifdef DEBUG
551         puts("\n## Control returned to monitor - resetting...\n");
552 #endif
553         return BOOTM_ERR_RESET;
554 }
555
556 /**
557  * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
558  *
559  * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
560  *      enabled)
561  */
562 static ulong bootm_disable_interrupts(void)
563 {
564         ulong iflag;
565
566         /*
567          * We have reached the point of no return: we are going to
568          * overwrite all exception vector code, so we cannot easily
569          * recover from any failures any more...
570          */
571         iflag = disable_interrupts();
572 #ifdef CONFIG_NETCONSOLE
573         /* Stop the ethernet stack if NetConsole could have left it up */
574         eth_halt();
575 #endif
576
577 #if defined(CONFIG_CMD_USB)
578         /*
579          * turn off USB to prevent the host controller from writing to the
580          * SDRAM while Linux is booting. This could happen (at least for OHCI
581          * controller), because the HCCA (Host Controller Communication Area)
582          * lies within the SDRAM and the host controller writes continously to
583          * this area (as busmaster!). The HccaFrameNumber is for example
584          * updated every 1 ms within the HCCA structure in SDRAM! For more
585          * details see the OpenHCI specification.
586          */
587         usb_stop();
588 #endif
589         return iflag;
590 }
591
592 /**
593  * Execute selected states of the bootm command.
594  *
595  * Note the arguments to this state must be the first argument, Any 'bootm'
596  * or sub-command arguments must have already been taken.
597  *
598  * Note that if states contains more than one flag it MUST contain
599  * BOOTM_STATE_START, since this handles and consumes the command line args.
600  *
601  * Also note that aside from boot_os_fn functions and bootm_load_os no other
602  * functions we store the return value of in 'ret' may use a negative return
603  * value, without special handling.
604  *
605  * @param cmdtp         Pointer to bootm command table entry
606  * @param flag          Command flags (CMD_FLAG_...)
607  * @param argc          Number of subcommand arguments (0 = no arguments)
608  * @param argv          Arguments
609  * @param states        Mask containing states to run (BOOTM_STATE_...)
610  * @param images        Image header information
611  * @param boot_progress 1 to show boot progress, 0 to not do this
612  * @return 0 if ok, something else on error. Some errors will cause this
613  *      function to perform a reboot! If states contains BOOTM_STATE_OS_GO
614  *      then the intent is to boot an OS, so this function will not return
615  *      unless the image type is standalone.
616  */
617 static int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc,
618                 char * const argv[], int states, bootm_headers_t *images,
619                 int boot_progress)
620 {
621         boot_os_fn *boot_fn;
622         ulong iflag = 0;
623         int ret = 0, need_boot_fn;
624
625         images->state |= states;
626
627         /*
628          * Work through the states and see how far we get. We stop on
629          * any error.
630          */
631         if (states & BOOTM_STATE_START)
632                 ret = bootm_start(cmdtp, flag, argc, argv);
633
634         if (!ret && (states & BOOTM_STATE_FINDOS))
635                 ret = bootm_find_os(cmdtp, flag, argc, argv);
636
637         if (!ret && (states & BOOTM_STATE_FINDOTHER)) {
638                 ret = bootm_find_other(cmdtp, flag, argc, argv);
639                 argc = 0;       /* consume the args */
640         }
641
642         /* Load the OS */
643         if (!ret && (states & BOOTM_STATE_LOADOS)) {
644                 ulong load_end;
645
646                 iflag = bootm_disable_interrupts();
647                 ret = bootm_load_os(images, &load_end, 0);
648                 if (ret == 0)
649                         lmb_reserve(&images->lmb, images->os.load,
650                                     (load_end - images->os.load));
651                 else if (ret && ret != BOOTM_ERR_OVERLAP)
652                         goto err;
653                 else if (ret == BOOTM_ERR_OVERLAP)
654                         ret = 0;
655 #ifdef CONFIG_SILENT_CONSOLE
656                 if (images->os.os == IH_OS_LINUX)
657                         fixup_silent_linux();
658 #endif
659         }
660
661         /* Relocate the ramdisk */
662 #ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
663         if (!ret && (states & BOOTM_STATE_RAMDISK)) {
664                 ulong rd_len = images->rd_end - images->rd_start;
665
666                 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
667                         rd_len, &images->initrd_start, &images->initrd_end);
668                 if (!ret) {
669                         setenv_hex("initrd_start", images->initrd_start);
670                         setenv_hex("initrd_end", images->initrd_end);
671                 }
672         }
673 #endif
674 #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
675         if (!ret && (states & BOOTM_STATE_FDT)) {
676                 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
677                 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
678                                         &images->ft_len);
679         }
680 #endif
681
682         /* From now on, we need the OS boot function */
683         if (ret)
684                 return ret;
685         boot_fn = boot_os[images->os.os];
686         need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
687                         BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
688                         BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
689         if (boot_fn == NULL && need_boot_fn) {
690                 if (iflag)
691                         enable_interrupts();
692                 printf("ERROR: booting os '%s' (%d) is not supported\n",
693                        genimg_get_os_name(images->os.os), images->os.os);
694                 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
695                 return 1;
696         }
697
698         /* Call various other states that are not generally used */
699         if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
700                 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
701         if (!ret && (states & BOOTM_STATE_OS_BD_T))
702                 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
703         if (!ret && (states & BOOTM_STATE_OS_PREP))
704                 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
705
706 #ifdef CONFIG_TRACE
707         /* Pretend to run the OS, then run a user command */
708         if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
709                 char *cmd_list = getenv("fakegocmd");
710
711                 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
712                                 images, boot_fn);
713                 if (!ret && cmd_list)
714                         ret = run_command_list(cmd_list, -1, flag);
715         }
716 #endif
717
718         /* Check for unsupported subcommand. */
719         if (ret) {
720                 puts("subcommand not supported\n");
721                 return ret;
722         }
723
724         /* Now run the OS! We hope this doesn't return */
725         if (!ret && (states & BOOTM_STATE_OS_GO))
726                 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
727                                 images, boot_fn);
728
729         /* Deal with any fallout */
730 err:
731         if (iflag)
732                 enable_interrupts();
733
734         if (ret == BOOTM_ERR_UNIMPLEMENTED)
735                 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
736         else if (ret == BOOTM_ERR_RESET)
737                 do_reset(cmdtp, flag, argc, argv);
738
739         return ret;
740 }
741
742 static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
743                         char * const argv[])
744 {
745         int ret = 0;
746         long state;
747         cmd_tbl_t *c;
748
749         c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
750         argc--; argv++;
751
752         if (c) {
753                 state = (long)c->cmd;
754                 if (state == BOOTM_STATE_START)
755                         state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
756         } else {
757                 /* Unrecognized command */
758                 return CMD_RET_USAGE;
759         }
760
761         if (state != BOOTM_STATE_START && images.state >= state) {
762                 printf("Trying to execute a command out of order\n");
763                 return CMD_RET_USAGE;
764         }
765
766         ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
767
768         return ret;
769 }
770
771 /*******************************************************************/
772 /* bootm - boot application image from image in memory */
773 /*******************************************************************/
774
775 int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
776 {
777 #ifdef CONFIG_NEEDS_MANUAL_RELOC
778         static int relocated = 0;
779
780         if (!relocated) {
781                 int i;
782
783                 /* relocate boot function table */
784                 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
785                         if (boot_os[i] != NULL)
786                                 boot_os[i] += gd->reloc_off;
787
788                 /* relocate names of sub-command table */
789                 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
790                         cmd_bootm_sub[i].name += gd->reloc_off;
791
792                 relocated = 1;
793         }
794 #endif
795
796         /* determine if we have a sub command */
797         argc--; argv++;
798         if (argc > 0) {
799                 char *endp;
800
801                 simple_strtoul(argv[0], &endp, 16);
802                 /* endp pointing to NULL means that argv[0] was just a
803                  * valid number, pass it along to the normal bootm processing
804                  *
805                  * If endp is ':' or '#' assume a FIT identifier so pass
806                  * along for normal processing.
807                  *
808                  * Right now we assume the first arg should never be '-'
809                  */
810                 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
811                         return do_bootm_subcommand(cmdtp, flag, argc, argv);
812         }
813
814         return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
815                 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
816                 BOOTM_STATE_LOADOS | BOOTM_STATE_OS_PREP |
817                 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO, &images, 1);
818 }
819
820 int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
821 {
822         const char *ep = getenv("autostart");
823
824         if (ep && !strcmp(ep, "yes")) {
825                 char *local_args[2];
826                 local_args[0] = (char *)cmd;
827                 local_args[1] = NULL;
828                 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
829                 return do_bootm(cmdtp, 0, 1, local_args);
830         }
831
832         return 0;
833 }
834
835 /**
836  * image_get_kernel - verify legacy format kernel image
837  * @img_addr: in RAM address of the legacy format image to be verified
838  * @verify: data CRC verification flag
839  *
840  * image_get_kernel() verifies legacy image integrity and returns pointer to
841  * legacy image header if image verification was completed successfully.
842  *
843  * returns:
844  *     pointer to a legacy image header if valid image was found
845  *     otherwise return NULL
846  */
847 static image_header_t *image_get_kernel(ulong img_addr, int verify)
848 {
849         image_header_t *hdr = (image_header_t *)img_addr;
850
851         if (!image_check_magic(hdr)) {
852                 puts("Bad Magic Number\n");
853                 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
854                 return NULL;
855         }
856         bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
857
858         if (!image_check_hcrc(hdr)) {
859                 puts("Bad Header Checksum\n");
860                 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
861                 return NULL;
862         }
863
864         bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
865         image_print_contents(hdr);
866
867         if (verify) {
868                 puts("   Verifying Checksum ... ");
869                 if (!image_check_dcrc(hdr)) {
870                         printf("Bad Data CRC\n");
871                         bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
872                         return NULL;
873                 }
874                 puts("OK\n");
875         }
876         bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
877
878         if (!image_check_target_arch(hdr)) {
879                 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
880                 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
881                 return NULL;
882         }
883         return hdr;
884 }
885
886 /**
887  * boot_get_kernel - find kernel image
888  * @os_data: pointer to a ulong variable, will hold os data start address
889  * @os_len: pointer to a ulong variable, will hold os data length
890  *
891  * boot_get_kernel() tries to find a kernel image, verifies its integrity
892  * and locates kernel data.
893  *
894  * returns:
895  *     pointer to image header if valid image was found, plus kernel start
896  *     address and length, otherwise NULL
897  */
898 static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
899                 char * const argv[], bootm_headers_t *images, ulong *os_data,
900                 ulong *os_len)
901 {
902         image_header_t  *hdr;
903         ulong           img_addr;
904         const void *buf;
905 #if defined(CONFIG_FIT)
906         const char      *fit_uname_config = NULL;
907         const char      *fit_uname_kernel = NULL;
908         int             os_noffset;
909 #endif
910
911         /* find out kernel image address */
912         if (argc < 1) {
913                 img_addr = load_addr;
914                 debug("*  kernel: default image load address = 0x%08lx\n",
915                                 load_addr);
916 #if defined(CONFIG_FIT)
917         } else if (fit_parse_conf(argv[0], load_addr, &img_addr,
918                                                         &fit_uname_config)) {
919                 debug("*  kernel: config '%s' from image at 0x%08lx\n",
920                                 fit_uname_config, img_addr);
921         } else if (fit_parse_subimage(argv[0], load_addr, &img_addr,
922                                                         &fit_uname_kernel)) {
923                 debug("*  kernel: subimage '%s' from image at 0x%08lx\n",
924                                 fit_uname_kernel, img_addr);
925 #endif
926         } else {
927                 img_addr = simple_strtoul(argv[0], NULL, 16);
928                 debug("*  kernel: cmdline image address = 0x%08lx\n", img_addr);
929         }
930
931         bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
932
933         /* copy from dataflash if needed */
934         img_addr = genimg_get_image(img_addr);
935
936         /* check image type, for FIT images get FIT kernel node */
937         *os_data = *os_len = 0;
938         buf = map_sysmem(img_addr, 0);
939         switch (genimg_get_format(buf)) {
940         case IMAGE_FORMAT_LEGACY:
941                 printf("## Booting kernel from Legacy Image at %08lx ...\n",
942                                 img_addr);
943                 hdr = image_get_kernel(img_addr, images->verify);
944                 if (!hdr)
945                         return NULL;
946                 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
947
948                 /* get os_data and os_len */
949                 switch (image_get_type(hdr)) {
950                 case IH_TYPE_KERNEL:
951                 case IH_TYPE_KERNEL_NOLOAD:
952                         *os_data = image_get_data(hdr);
953                         *os_len = image_get_data_size(hdr);
954                         break;
955                 case IH_TYPE_MULTI:
956                         image_multi_getimg(hdr, 0, os_data, os_len);
957                         break;
958                 case IH_TYPE_STANDALONE:
959                         *os_data = image_get_data(hdr);
960                         *os_len = image_get_data_size(hdr);
961                         break;
962                 default:
963                         printf("Wrong Image Type for %s command\n",
964                                 cmdtp->name);
965                         bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
966                         return NULL;
967                 }
968
969                 /*
970                  * copy image header to allow for image overwrites during
971                  * kernel decompression.
972                  */
973                 memmove(&images->legacy_hdr_os_copy, hdr,
974                         sizeof(image_header_t));
975
976                 /* save pointer to image header */
977                 images->legacy_hdr_os = hdr;
978
979                 images->legacy_hdr_valid = 1;
980                 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
981                 break;
982 #if defined(CONFIG_FIT)
983         case IMAGE_FORMAT_FIT:
984                 os_noffset = fit_image_load(images, FIT_KERNEL_PROP,
985                                 img_addr,
986                                 &fit_uname_kernel, &fit_uname_config,
987                                 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
988                                 BOOTSTAGE_ID_FIT_KERNEL_START,
989                                 FIT_LOAD_IGNORED, os_data, os_len);
990                 if (os_noffset < 0)
991                         return NULL;
992
993                 images->fit_hdr_os = map_sysmem(img_addr, 0);
994                 images->fit_uname_os = fit_uname_kernel;
995                 images->fit_uname_cfg = fit_uname_config;
996                 images->fit_noffset_os = os_noffset;
997                 break;
998 #endif
999         default:
1000                 printf("Wrong Image Format for %s command\n", cmdtp->name);
1001                 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
1002                 return NULL;
1003         }
1004
1005         debug("   kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
1006                         *os_data, *os_len, *os_len);
1007
1008         return buf;
1009 }
1010
1011 #ifdef CONFIG_SYS_LONGHELP
1012 static char bootm_help_text[] =
1013         "[addr [arg ...]]\n    - boot application image stored in memory\n"
1014         "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1015         "\t'arg' can be the address of an initrd image\n"
1016 #if defined(CONFIG_OF_LIBFDT)
1017         "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1018         "\ta third argument is required which is the address of the\n"
1019         "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1020         "\tuse a '-' for the second argument. If you do not pass a third\n"
1021         "\ta bd_info struct will be passed instead\n"
1022 #endif
1023 #if defined(CONFIG_FIT)
1024         "\t\nFor the new multi component uImage format (FIT) addresses\n"
1025         "\tmust be extened to include component or configuration unit name:\n"
1026         "\taddr:<subimg_uname> - direct component image specification\n"
1027         "\taddr#<conf_uname>   - configuration specification\n"
1028         "\tUse iminfo command to get the list of existing component\n"
1029         "\timages and configurations.\n"
1030 #endif
1031         "\nSub-commands to do part of the bootm sequence.  The sub-commands "
1032         "must be\n"
1033         "issued in the order below (it's ok to not issue all sub-commands):\n"
1034         "\tstart [addr [arg ...]]\n"
1035         "\tloados  - load OS image\n"
1036 #if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
1037         "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1038 #endif
1039 #if defined(CONFIG_OF_LIBFDT)
1040         "\tfdt     - relocate flat device tree\n"
1041 #endif
1042         "\tcmdline - OS specific command line processing/setup\n"
1043         "\tbdt     - OS specific bd_t processing\n"
1044         "\tprep    - OS specific prep before relocation or go\n"
1045         "\tgo      - start OS";
1046 #endif
1047
1048 U_BOOT_CMD(
1049         bootm,  CONFIG_SYS_MAXARGS,     1,      do_bootm,
1050         "boot application image from memory", bootm_help_text
1051 );
1052
1053 /*******************************************************************/
1054 /* bootd - boot default image */
1055 /*******************************************************************/
1056 #if defined(CONFIG_CMD_BOOTD)
1057 int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1058 {
1059         int rcode = 0;
1060
1061         if (run_command(getenv("bootcmd"), flag) < 0)
1062                 rcode = 1;
1063         return rcode;
1064 }
1065
1066 U_BOOT_CMD(
1067         boot,   1,      1,      do_bootd,
1068         "boot default, i.e., run 'bootcmd'",
1069         ""
1070 );
1071
1072 /* keep old command name "bootd" for backward compatibility */
1073 U_BOOT_CMD(
1074         bootd, 1,       1,      do_bootd,
1075         "boot default, i.e., run 'bootcmd'",
1076         ""
1077 );
1078
1079 #endif
1080
1081
1082 /*******************************************************************/
1083 /* iminfo - print header info for a requested image */
1084 /*******************************************************************/
1085 #if defined(CONFIG_CMD_IMI)
1086 static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1087 {
1088         int     arg;
1089         ulong   addr;
1090         int     rcode = 0;
1091
1092         if (argc < 2) {
1093                 return image_info(load_addr);
1094         }
1095
1096         for (arg = 1; arg < argc; ++arg) {
1097                 addr = simple_strtoul(argv[arg], NULL, 16);
1098                 if (image_info(addr) != 0)
1099                         rcode = 1;
1100         }
1101         return rcode;
1102 }
1103
1104 static int image_info(ulong addr)
1105 {
1106         void *hdr = (void *)addr;
1107
1108         printf("\n## Checking Image at %08lx ...\n", addr);
1109
1110         switch (genimg_get_format(hdr)) {
1111         case IMAGE_FORMAT_LEGACY:
1112                 puts("   Legacy image found\n");
1113                 if (!image_check_magic(hdr)) {
1114                         puts("   Bad Magic Number\n");
1115                         return 1;
1116                 }
1117
1118                 if (!image_check_hcrc(hdr)) {
1119                         puts("   Bad Header Checksum\n");
1120                         return 1;
1121                 }
1122
1123                 image_print_contents(hdr);
1124
1125                 puts("   Verifying Checksum ... ");
1126                 if (!image_check_dcrc(hdr)) {
1127                         puts("   Bad Data CRC\n");
1128                         return 1;
1129                 }
1130                 puts("OK\n");
1131                 return 0;
1132 #if defined(CONFIG_FIT)
1133         case IMAGE_FORMAT_FIT:
1134                 puts("   FIT image found\n");
1135
1136                 if (!fit_check_format(hdr)) {
1137                         puts("Bad FIT image format!\n");
1138                         return 1;
1139                 }
1140
1141                 fit_print_contents(hdr);
1142
1143                 if (!fit_all_image_verify(hdr)) {
1144                         puts("Bad hash in FIT image!\n");
1145                         return 1;
1146                 }
1147
1148                 return 0;
1149 #endif
1150         default:
1151                 puts("Unknown image format!\n");
1152                 break;
1153         }
1154
1155         return 1;
1156 }
1157
1158 U_BOOT_CMD(
1159         iminfo, CONFIG_SYS_MAXARGS,     1,      do_iminfo,
1160         "print header information for application image",
1161         "addr [addr ...]\n"
1162         "    - print header information for application image starting at\n"
1163         "      address 'addr' in memory; this includes verification of the\n"
1164         "      image contents (magic number, header and payload checksums)"
1165 );
1166 #endif
1167
1168
1169 /*******************************************************************/
1170 /* imls - list all images found in flash */
1171 /*******************************************************************/
1172 #if defined(CONFIG_CMD_IMLS)
1173 static int do_imls_nor(void)
1174 {
1175         flash_info_t *info;
1176         int i, j;
1177         void *hdr;
1178
1179         for (i = 0, info = &flash_info[0];
1180                 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
1181
1182                 if (info->flash_id == FLASH_UNKNOWN)
1183                         goto next_bank;
1184                 for (j = 0; j < info->sector_count; ++j) {
1185
1186                         hdr = (void *)info->start[j];
1187                         if (!hdr)
1188                                 goto next_sector;
1189
1190                         switch (genimg_get_format(hdr)) {
1191                         case IMAGE_FORMAT_LEGACY:
1192                                 if (!image_check_hcrc(hdr))
1193                                         goto next_sector;
1194
1195                                 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1196                                 image_print_contents(hdr);
1197
1198                                 puts("   Verifying Checksum ... ");
1199                                 if (!image_check_dcrc(hdr)) {
1200                                         puts("Bad Data CRC\n");
1201                                 } else {
1202                                         puts("OK\n");
1203                                 }
1204                                 break;
1205 #if defined(CONFIG_FIT)
1206                         case IMAGE_FORMAT_FIT:
1207                                 if (!fit_check_format(hdr))
1208                                         goto next_sector;
1209
1210                                 printf("FIT Image at %08lX:\n", (ulong)hdr);
1211                                 fit_print_contents(hdr);
1212                                 break;
1213 #endif
1214                         default:
1215                                 goto next_sector;
1216                         }
1217
1218 next_sector:            ;
1219                 }
1220 next_bank:      ;
1221         }
1222         return 0;
1223 }
1224 #endif
1225
1226 #if defined(CONFIG_CMD_IMLS_NAND)
1227 static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
1228                 size_t len)
1229 {
1230         void *imgdata;
1231         int ret;
1232
1233         imgdata = malloc(len);
1234         if (!imgdata) {
1235                 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
1236                                 nand_dev, off);
1237                 printf("   Low memory(cannot allocate memory for image)\n");
1238                 return -ENOMEM;
1239         }
1240
1241         ret = nand_read_skip_bad(nand, off, &len,
1242                         imgdata);
1243         if (ret < 0 && ret != -EUCLEAN) {
1244                 free(imgdata);
1245                 return ret;
1246         }
1247
1248         if (!image_check_hcrc(imgdata)) {
1249                 free(imgdata);
1250                 return 0;
1251         }
1252
1253         printf("Legacy Image at NAND device %d offset %08llX:\n",
1254                         nand_dev, off);
1255         image_print_contents(imgdata);
1256
1257         puts("   Verifying Checksum ... ");
1258         if (!image_check_dcrc(imgdata))
1259                 puts("Bad Data CRC\n");
1260         else
1261                 puts("OK\n");
1262
1263         free(imgdata);
1264
1265         return 0;
1266 }
1267
1268 static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
1269                 size_t len)
1270 {
1271         void *imgdata;
1272         int ret;
1273
1274         imgdata = malloc(len);
1275         if (!imgdata) {
1276                 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
1277                                 nand_dev, off);
1278                 printf("   Low memory(cannot allocate memory for image)\n");
1279                 return -ENOMEM;
1280         }
1281
1282         ret = nand_read_skip_bad(nand, off, &len,
1283                         imgdata);
1284         if (ret < 0 && ret != -EUCLEAN) {
1285                 free(imgdata);
1286                 return ret;
1287         }
1288
1289         if (!fit_check_format(imgdata)) {
1290                 free(imgdata);
1291                 return 0;
1292         }
1293
1294         printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
1295
1296         fit_print_contents(imgdata);
1297         free(imgdata);
1298
1299         return 0;
1300 }
1301
1302 static int do_imls_nand(void)
1303 {
1304         nand_info_t *nand;
1305         int nand_dev = nand_curr_device;
1306         size_t len;
1307         loff_t off;
1308         u32 buffer[16];
1309
1310         if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
1311                 puts("\nNo NAND devices available\n");
1312                 return -ENODEV;
1313         }
1314
1315         printf("\n");
1316
1317         for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
1318                 nand = &nand_info[nand_dev];
1319                 if (!nand->name || !nand->size)
1320                         continue;
1321
1322                 for (off = 0; off < nand->size; off += nand->erasesize) {
1323                         const image_header_t *header;
1324                         int ret;
1325
1326                         if (nand_block_isbad(nand, off))
1327                                 continue;
1328
1329                         len = sizeof(buffer);
1330
1331                         ret = nand_read(nand, off, &len, (u8 *)buffer);
1332                         if (ret < 0 && ret != -EUCLEAN) {
1333                                 printf("NAND read error %d at offset %08llX\n",
1334                                                 ret, off);
1335                                 continue;
1336                         }
1337
1338                         switch (genimg_get_format(buffer)) {
1339                         case IMAGE_FORMAT_LEGACY:
1340                                 header = (const image_header_t *)buffer;
1341
1342                                 len = image_get_image_size(header);
1343                                 nand_imls_legacyimage(nand, nand_dev, off, len);
1344                                 break;
1345 #if defined(CONFIG_FIT)
1346                         case IMAGE_FORMAT_FIT:
1347                                 len = fit_get_size(buffer);
1348                                 nand_imls_fitimage(nand, nand_dev, off, len);
1349                                 break;
1350 #endif
1351                         }
1352                 }
1353         }
1354
1355         return 0;
1356 }
1357 #endif
1358
1359 #if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
1360 static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1361 {
1362         int ret_nor = 0, ret_nand = 0;
1363
1364 #if defined(CONFIG_CMD_IMLS)
1365         ret_nor = do_imls_nor();
1366 #endif
1367
1368 #if defined(CONFIG_CMD_IMLS_NAND)
1369         ret_nand = do_imls_nand();
1370 #endif
1371
1372         if (ret_nor)
1373                 return ret_nor;
1374
1375         if (ret_nand)
1376                 return ret_nand;
1377
1378         return (0);
1379 }
1380
1381 U_BOOT_CMD(
1382         imls,   1,              1,      do_imls,
1383         "list all images found in flash",
1384         "\n"
1385         "    - Prints information about all images found at sector/block\n"
1386         "      boundaries in nor/nand flash."
1387 );
1388 #endif
1389
1390 /*******************************************************************/
1391 /* helper routines */
1392 /*******************************************************************/
1393 #if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
1394
1395 #define CONSOLE_ARG     "console="
1396 #define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
1397
1398 static void fixup_silent_linux(void)
1399 {
1400         char *buf;
1401         const char *env_val;
1402         char *cmdline = getenv("bootargs");
1403
1404         /* Only fix cmdline when requested */
1405         if (!(gd->flags & GD_FLG_SILENT))
1406                 return;
1407
1408         debug("before silent fix-up: %s\n", cmdline);
1409         if (cmdline && (cmdline[0] != '\0')) {
1410                 char *start = strstr(cmdline, CONSOLE_ARG);
1411
1412                 /* Allocate space for maximum possible new command line */
1413                 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
1414                 if (!buf) {
1415                         debug("%s: out of memory\n", __func__);
1416                         return;
1417                 }
1418
1419                 if (start) {
1420                         char *end = strchr(start, ' ');
1421                         int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
1422
1423                         strncpy(buf, cmdline, num_start_bytes);
1424                         if (end)
1425                                 strcpy(buf + num_start_bytes, end);
1426                         else
1427                                 buf[num_start_bytes] = '\0';
1428                 } else {
1429                         sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
1430                 }
1431                 env_val = buf;
1432         } else {
1433                 buf = NULL;
1434                 env_val = CONSOLE_ARG;
1435         }
1436
1437         setenv("bootargs", env_val);
1438         debug("after silent fix-up: %s\n", env_val);
1439         free(buf);
1440 }
1441 #endif /* CONFIG_SILENT_CONSOLE */
1442
1443 #if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
1444 static void copy_args(char *dest, int argc, char * const argv[], char delim)
1445 {
1446         int i;
1447
1448         for (i = 0; i < argc; i++) {
1449                 if (i > 0)
1450                         *dest++ = delim;
1451                 strcpy(dest, argv[i]);
1452                 dest += strlen(argv[i]);
1453         }
1454 }
1455 #endif
1456
1457 /*******************************************************************/
1458 /* OS booting routines */
1459 /*******************************************************************/
1460
1461 #ifdef CONFIG_BOOTM_NETBSD
1462 static int do_bootm_netbsd(int flag, int argc, char * const argv[],
1463                             bootm_headers_t *images)
1464 {
1465         void (*loader)(bd_t *, image_header_t *, char *, char *);
1466         image_header_t *os_hdr, *hdr;
1467         ulong kernel_data, kernel_len;
1468         char *consdev;
1469         char *cmdline;
1470
1471         if (flag & BOOTM_STATE_OS_PREP)
1472                 return 0;
1473         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1474                 return 1;
1475
1476 #if defined(CONFIG_FIT)
1477         if (!images->legacy_hdr_valid) {
1478                 fit_unsupported_reset("NetBSD");
1479                 return 1;
1480         }
1481 #endif
1482         hdr = images->legacy_hdr_os;
1483
1484         /*
1485          * Booting a (NetBSD) kernel image
1486          *
1487          * This process is pretty similar to a standalone application:
1488          * The (first part of an multi-) image must be a stage-2 loader,
1489          * which in turn is responsible for loading & invoking the actual
1490          * kernel.  The only differences are the parameters being passed:
1491          * besides the board info strucure, the loader expects a command
1492          * line, the name of the console device, and (optionally) the
1493          * address of the original image header.
1494          */
1495         os_hdr = NULL;
1496         if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1497                 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
1498                 if (kernel_len)
1499                         os_hdr = hdr;
1500         }
1501
1502         consdev = "";
1503 #if   defined(CONFIG_8xx_CONS_SMC1)
1504         consdev = "smc1";
1505 #elif defined(CONFIG_8xx_CONS_SMC2)
1506         consdev = "smc2";
1507 #elif defined(CONFIG_8xx_CONS_SCC2)
1508         consdev = "scc2";
1509 #elif defined(CONFIG_8xx_CONS_SCC3)
1510         consdev = "scc3";
1511 #endif
1512
1513         if (argc > 0) {
1514                 ulong len;
1515                 int   i;
1516
1517                 for (i = 0, len = 0; i < argc; i += 1)
1518                         len += strlen(argv[i]) + 1;
1519                 cmdline = malloc(len);
1520                 copy_args(cmdline, argc, argv, ' ');
1521         } else if ((cmdline = getenv("bootargs")) == NULL) {
1522                 cmdline = "";
1523         }
1524
1525         loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
1526
1527         printf("## Transferring control to NetBSD stage-2 loader "
1528                 "(at address %08lx) ...\n",
1529                 (ulong)loader);
1530
1531         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1532
1533         /*
1534          * NetBSD Stage-2 Loader Parameters:
1535          *   r3: ptr to board info data
1536          *   r4: image address
1537          *   r5: console device
1538          *   r6: boot args string
1539          */
1540         (*loader)(gd->bd, os_hdr, consdev, cmdline);
1541
1542         return 1;
1543 }
1544 #endif /* CONFIG_BOOTM_NETBSD*/
1545
1546 #ifdef CONFIG_LYNXKDI
1547 static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
1548                              bootm_headers_t *images)
1549 {
1550         image_header_t *hdr = &images->legacy_hdr_os_copy;
1551
1552         if (flag & BOOTM_STATE_OS_PREP)
1553                 return 0;
1554         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1555                 return 1;
1556
1557 #if defined(CONFIG_FIT)
1558         if (!images->legacy_hdr_valid) {
1559                 fit_unsupported_reset("Lynx");
1560                 return 1;
1561         }
1562 #endif
1563
1564         lynxkdi_boot((image_header_t *)hdr);
1565
1566         return 1;
1567 }
1568 #endif /* CONFIG_LYNXKDI */
1569
1570 #ifdef CONFIG_BOOTM_RTEMS
1571 static int do_bootm_rtems(int flag, int argc, char * const argv[],
1572                            bootm_headers_t *images)
1573 {
1574         void (*entry_point)(bd_t *);
1575
1576         if (flag & BOOTM_STATE_OS_PREP)
1577                 return 0;
1578         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1579                 return 1;
1580
1581 #if defined(CONFIG_FIT)
1582         if (!images->legacy_hdr_valid) {
1583                 fit_unsupported_reset("RTEMS");
1584                 return 1;
1585         }
1586 #endif
1587
1588         entry_point = (void (*)(bd_t *))images->ep;
1589
1590         printf("## Transferring control to RTEMS (at address %08lx) ...\n",
1591                 (ulong)entry_point);
1592
1593         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1594
1595         /*
1596          * RTEMS Parameters:
1597          *   r3: ptr to board info data
1598          */
1599         (*entry_point)(gd->bd);
1600
1601         return 1;
1602 }
1603 #endif /* CONFIG_BOOTM_RTEMS */
1604
1605 #if defined(CONFIG_BOOTM_OSE)
1606 static int do_bootm_ose(int flag, int argc, char * const argv[],
1607                            bootm_headers_t *images)
1608 {
1609         void (*entry_point)(void);
1610
1611         if (flag & BOOTM_STATE_OS_PREP)
1612                 return 0;
1613         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1614                 return 1;
1615
1616 #if defined(CONFIG_FIT)
1617         if (!images->legacy_hdr_valid) {
1618                 fit_unsupported_reset("OSE");
1619                 return 1;
1620         }
1621 #endif
1622
1623         entry_point = (void (*)(void))images->ep;
1624
1625         printf("## Transferring control to OSE (at address %08lx) ...\n",
1626                 (ulong)entry_point);
1627
1628         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1629
1630         /*
1631          * OSE Parameters:
1632          *   None
1633          */
1634         (*entry_point)();
1635
1636         return 1;
1637 }
1638 #endif /* CONFIG_BOOTM_OSE */
1639
1640 #if defined(CONFIG_BOOTM_PLAN9)
1641 static int do_bootm_plan9(int flag, int argc, char * const argv[],
1642                            bootm_headers_t *images)
1643 {
1644         void (*entry_point)(void);
1645         char *s;
1646
1647         if (flag & BOOTM_STATE_OS_PREP)
1648                 return 0;
1649         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1650                 return 1;
1651
1652 #if defined(CONFIG_FIT)
1653         if (!images->legacy_hdr_valid) {
1654                 fit_unsupported_reset("Plan 9");
1655                 return 1;
1656         }
1657 #endif
1658
1659         /* See README.plan9 */
1660         s = getenv("confaddr");
1661         if (s != NULL) {
1662                 char *confaddr = (char *)simple_strtoul(s, NULL, 16);
1663
1664                 if (argc > 0) {
1665                         copy_args(confaddr, argc, argv, '\n');
1666                 } else {
1667                         s = getenv("bootargs");
1668                         if (s != NULL)
1669                                 strcpy(confaddr, s);
1670                 }
1671         }
1672
1673         entry_point = (void (*)(void))images->ep;
1674
1675         printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
1676                 (ulong)entry_point);
1677
1678         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1679
1680         /*
1681          * Plan 9 Parameters:
1682          *   None
1683          */
1684         (*entry_point)();
1685
1686         return 1;
1687 }
1688 #endif /* CONFIG_BOOTM_PLAN9 */
1689
1690 #if defined(CONFIG_CMD_ELF)
1691 static int do_bootm_vxworks(int flag, int argc, char * const argv[],
1692                              bootm_headers_t *images)
1693 {
1694         char str[80];
1695
1696         if (flag & BOOTM_STATE_OS_PREP)
1697                 return 0;
1698         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1699                 return 1;
1700
1701 #if defined(CONFIG_FIT)
1702         if (!images->legacy_hdr_valid) {
1703                 fit_unsupported_reset("VxWorks");
1704                 return 1;
1705         }
1706 #endif
1707
1708         sprintf(str, "%lx", images->ep); /* write entry-point into string */
1709         setenv("loadaddr", str);
1710         do_bootvx(NULL, 0, 0, NULL);
1711
1712         return 1;
1713 }
1714
1715 static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
1716                             bootm_headers_t *images)
1717 {
1718         char *local_args[2];
1719         char str[16];
1720
1721         if (flag & BOOTM_STATE_OS_PREP)
1722                 return 0;
1723         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1724                 return 1;
1725
1726 #if defined(CONFIG_FIT)
1727         if (!images->legacy_hdr_valid) {
1728                 fit_unsupported_reset("QNX");
1729                 return 1;
1730         }
1731 #endif
1732
1733         sprintf(str, "%lx", images->ep); /* write entry-point into string */
1734         local_args[0] = argv[0];
1735         local_args[1] = str;    /* and provide it via the arguments */
1736         do_bootelf(NULL, 0, 2, local_args);
1737
1738         return 1;
1739 }
1740 #endif
1741
1742 #ifdef CONFIG_INTEGRITY
1743 static int do_bootm_integrity(int flag, int argc, char * const argv[],
1744                            bootm_headers_t *images)
1745 {
1746         void (*entry_point)(void);
1747
1748         if (flag & BOOTM_STATE_OS_PREP)
1749                 return 0;
1750         if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1751                 return 1;
1752
1753 #if defined(CONFIG_FIT)
1754         if (!images->legacy_hdr_valid) {
1755                 fit_unsupported_reset("INTEGRITY");
1756                 return 1;
1757         }
1758 #endif
1759
1760         entry_point = (void (*)(void))images->ep;
1761
1762         printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1763                 (ulong)entry_point);
1764
1765         bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1766
1767         /*
1768          * INTEGRITY Parameters:
1769          *   None
1770          */
1771         (*entry_point)();
1772
1773         return 1;
1774 }
1775 #endif
1776
1777 #ifdef CONFIG_CMD_BOOTZ
1778
1779 int __weak bootz_setup(ulong image, ulong *start, ulong *end)
1780 {
1781         /* Please define bootz_setup() for your platform */
1782
1783         puts("Your platform's zImage format isn't supported yet!\n");
1784         return -1;
1785 }
1786
1787 /*
1788  * zImage booting support
1789  */
1790 static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
1791                         char * const argv[], bootm_headers_t *images)
1792 {
1793         int ret;
1794         ulong zi_start, zi_end;
1795
1796         ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
1797                               images, 1);
1798
1799         /* Setup Linux kernel zImage entry point */
1800         if (!argc) {
1801                 images->ep = load_addr;
1802                 debug("*  kernel: default image load address = 0x%08lx\n",
1803                                 load_addr);
1804         } else {
1805                 images->ep = simple_strtoul(argv[0], NULL, 16);
1806                 debug("*  kernel: cmdline image address = 0x%08lx\n",
1807                         images->ep);
1808         }
1809
1810         ret = bootz_setup(images->ep, &zi_start, &zi_end);
1811         if (ret != 0)
1812                 return 1;
1813
1814         lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
1815
1816         /*
1817          * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
1818          * have a header that provide this informaiton.
1819          */
1820         if (bootm_find_ramdisk(flag, argc, argv))
1821                 return 1;
1822
1823 #if defined(CONFIG_OF_LIBFDT)
1824         if (bootm_find_fdt(flag, argc, argv))
1825                 return 1;
1826 #endif
1827
1828         return 0;
1829 }
1830
1831 int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1832 {
1833         int ret;
1834
1835         /* Consume 'bootz' */
1836         argc--; argv++;
1837
1838         if (bootz_start(cmdtp, flag, argc, argv, &images))
1839                 return 1;
1840
1841         /*
1842          * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
1843          * disable interrupts ourselves
1844          */
1845         bootm_disable_interrupts();
1846
1847         images.os.os = IH_OS_LINUX;
1848         ret = do_bootm_states(cmdtp, flag, argc, argv,
1849                               BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
1850                               BOOTM_STATE_OS_GO,
1851                               &images, 1);
1852
1853         return ret;
1854 }
1855
1856 #ifdef CONFIG_SYS_LONGHELP
1857 static char bootz_help_text[] =
1858         "[addr [initrd[:size]] [fdt]]\n"
1859         "    - boot Linux zImage stored in memory\n"
1860         "\tThe argument 'initrd' is optional and specifies the address\n"
1861         "\tof the initrd in memory. The optional argument ':size' allows\n"
1862         "\tspecifying the size of RAW initrd.\n"
1863 #if defined(CONFIG_OF_LIBFDT)
1864         "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1865         "\ta third argument is required which is the address of the\n"
1866         "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1867         "\tuse a '-' for the second argument. If you do not pass a third\n"
1868         "\ta bd_info struct will be passed instead\n"
1869 #endif
1870         "";
1871 #endif
1872
1873 U_BOOT_CMD(
1874         bootz,  CONFIG_SYS_MAXARGS,     1,      do_bootz,
1875         "boot Linux zImage image from memory", bootz_help_text
1876 );
1877 #endif  /* CONFIG_CMD_BOOTZ */