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