]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bootm.c
bootm: refactor ramdisk locating code
[karo-tx-uboot.git] / common / cmd_bootm.c
1 /*
2  * (C) Copyright 2000-2006
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 <zlib.h>
34 #include <bzlib.h>
35 #include <environment.h>
36 #include <lmb.h>
37 #include <asm/byteorder.h>
38
39 #if defined(CONFIG_CMD_USB)
40 #include <usb.h>
41 #endif
42
43 #ifdef CFG_HUSH_PARSER
44 #include <hush.h>
45 #endif
46
47 DECLARE_GLOBAL_DATA_PTR;
48
49 extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
50 #ifndef CFG_BOOTM_LEN
51 #define CFG_BOOTM_LEN   0x800000        /* use 8MByte as default max gunzip size */
52 #endif
53
54 #ifdef CONFIG_BZIP2
55 extern void bz_internal_error(int);
56 #endif
57
58 #if defined(CONFIG_CMD_IMI)
59 static int image_info (unsigned long addr);
60 #endif
61
62 #if defined(CONFIG_CMD_IMLS)
63 #include <flash.h>
64 extern flash_info_t flash_info[]; /* info for FLASH chips */
65 static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
66 #endif
67
68 #ifdef CONFIG_SILENT_CONSOLE
69 static void fixup_silent_linux (void);
70 #endif
71
72 static image_header_t *image_get_kernel (ulong img_addr, int verify);
73 #if defined(CONFIG_FIT)
74 static int fit_check_kernel (const void *fit, int os_noffset, int verify);
75 #endif
76
77 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
78                 bootm_headers_t *images, ulong *os_data, ulong *os_len);
79 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
80
81 /*
82  *  Continue booting an OS image; caller already has:
83  *  - copied image header to global variable `header'
84  *  - checked header magic number, checksums (both header & image),
85  *  - verified image architecture (PPC) and type (KERNEL or MULTI),
86  *  - loaded (first part of) image to header load address,
87  *  - disabled interrupts.
88  */
89 typedef void boot_os_fn (cmd_tbl_t *cmdtp, int flag,
90                         int argc, char *argv[],
91                         bootm_headers_t *images); /* pointers to os/initrd/fdt */
92
93 extern boot_os_fn do_bootm_linux;
94 static boot_os_fn do_bootm_netbsd;
95 #if defined(CONFIG_LYNXKDI)
96 static boot_os_fn do_bootm_lynxkdi;
97 extern void lynxkdi_boot (image_header_t *);
98 #endif
99 static boot_os_fn do_bootm_rtems;
100 #if defined(CONFIG_CMD_ELF)
101 static boot_os_fn do_bootm_vxworks;
102 static boot_os_fn do_bootm_qnxelf;
103 int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
104 int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
105 #endif
106 #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
107 static boot_os_fn do_bootm_artos;
108 #endif
109
110 ulong load_addr = CFG_LOAD_ADDR;        /* Default Load Address */
111 static bootm_headers_t images;          /* pointers to os/initrd/fdt images */
112
113 void __board_lmb_reserve(struct lmb *lmb)
114 {
115         /* please define platform specific board_lmb_reserve() */
116 }
117 void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
118
119 #if defined(__ARM__)
120   #define IH_INITRD_ARCH IH_ARCH_ARM
121 #elif defined(__avr32__)
122   #define IH_INITRD_ARCH IH_ARCH_AVR32
123 #elif defined(__bfin__)
124   #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
125 #elif defined(__I386__)
126   #define IH_INITRD_ARCH IH_ARCH_I386
127 #elif defined(__M68K__)
128   #define IH_INITRD_ARCH IH_ARCH_M68K
129 #elif defined(__microblaze__)
130   #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
131 #elif defined(__mips__)
132   #define IH_INITRD_ARCH IH_ARCH_MIPS
133 #elif defined(__nios__)
134   #define IH_INITRD_ARCH IH_ARCH_NIOS
135 #elif defined(__nios2__)
136   #define IH_INITRD_ARCH IH_ARCH_NIOS2
137 #elif defined(__PPC__)
138   #define IH_INITRD_ARCH IH_ARCH_PPC
139 #elif defined(__sh__)
140   #define IH_INITRD_ARCH IH_ARCH_SH
141 #elif defined(__sparc__)
142   #define IH_INITRD_ARCH IH_ARCH_SPARC
143 #else
144 # error Unknown CPU type
145 #endif
146
147 /*******************************************************************/
148 /* bootm - boot application image from image in memory */
149 /*******************************************************************/
150 int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
151 {
152         ulong           iflag;
153         const char      *type_name;
154         uint            unc_len = CFG_BOOTM_LEN;
155         uint8_t         comp, type, os;
156
157         void            *os_hdr;
158         ulong           os_data, os_len;
159         ulong           image_start, image_end;
160         ulong           load_start, load_end;
161         ulong           mem_start;
162         phys_size_t     mem_size;
163         int             ret;
164
165         struct lmb lmb;
166
167         memset ((void *)&images, 0, sizeof (images));
168         images.verify = getenv_yesno ("verify");
169         images.lmb = &lmb;
170
171         lmb_init(&lmb);
172
173         mem_start = getenv_bootm_low();
174         mem_size = getenv_bootm_size();
175
176         lmb_add(&lmb, (phys_addr_t)mem_start, mem_size);
177
178         board_lmb_reserve(&lmb);
179
180         /* get kernel image header, start address and length */
181         os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
182                         &images, &os_data, &os_len);
183         if (os_len == 0) {
184                 puts ("ERROR: can't get kernel image!\n");
185                 return 1;
186         }
187
188         /* get image parameters */
189         switch (genimg_get_format (os_hdr)) {
190         case IMAGE_FORMAT_LEGACY:
191                 type = image_get_type (os_hdr);
192                 comp = image_get_comp (os_hdr);
193                 os = image_get_os (os_hdr);
194
195                 image_end = image_get_image_end (os_hdr);
196                 load_start = image_get_load (os_hdr);
197                 break;
198 #if defined(CONFIG_FIT)
199         case IMAGE_FORMAT_FIT:
200                 if (fit_image_get_type (images.fit_hdr_os,
201                                         images.fit_noffset_os, &type)) {
202                         puts ("Can't get image type!\n");
203                         show_boot_progress (-109);
204                         return 1;
205                 }
206
207                 if (fit_image_get_comp (images.fit_hdr_os,
208                                         images.fit_noffset_os, &comp)) {
209                         puts ("Can't get image compression!\n");
210                         show_boot_progress (-110);
211                         return 1;
212                 }
213
214                 if (fit_image_get_os (images.fit_hdr_os,
215                                         images.fit_noffset_os, &os)) {
216                         puts ("Can't get image OS!\n");
217                         show_boot_progress (-111);
218                         return 1;
219                 }
220
221                 image_end = fit_get_end (images.fit_hdr_os);
222
223                 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
224                                         &load_start)) {
225                         puts ("Can't get image load address!\n");
226                         show_boot_progress (-112);
227                         return 1;
228                 }
229                 break;
230 #endif
231         default:
232                 puts ("ERROR: unknown image format type!\n");
233                 return 1;
234         }
235
236         /* find kernel entry point */
237         if (images.legacy_hdr_valid) {
238                 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
239 #if defined(CONFIG_FIT)
240         } else if (images.fit_uname_os) {
241                 ret = fit_image_get_entry (images.fit_hdr_os,
242                                 images.fit_noffset_os, &images.ep);
243                 if (ret) {
244                         puts ("Can't get entry point property!\n");
245                         return 1;
246                 }
247 #endif
248         } else {
249                 puts ("Could not find kernel entry point!\n");
250                 return 1;
251         }
252
253         if (os == IH_OS_LINUX) {
254                 /* find ramdisk */
255                 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
256                                 &images.rd_start, &images.rd_end);
257                 if (ret) {
258                         puts ("Ramdisk image is corrupt\n");
259                         return 1;
260                 }
261         }
262
263         image_start = (ulong)os_hdr;
264         load_end = 0;
265         type_name = genimg_get_type_name (type);
266
267         /*
268          * We have reached the point of no return: we are going to
269          * overwrite all exception vector code, so we cannot easily
270          * recover from any failures any more...
271          */
272         iflag = disable_interrupts();
273
274 #if defined(CONFIG_CMD_USB)
275         /*
276          * turn off USB to prevent the host controller from writing to the
277          * SDRAM while Linux is booting. This could happen (at least for OHCI
278          * controller), because the HCCA (Host Controller Communication Area)
279          * lies within the SDRAM and the host controller writes continously to
280          * this area (as busmaster!). The HccaFrameNumber is for example
281          * updated every 1 ms within the HCCA structure in SDRAM! For more
282          * details see the OpenHCI specification.
283          */
284         usb_stop();
285 #endif
286
287
288 #ifdef CONFIG_AMIGAONEG3SE
289         /*
290          * We've possible left the caches enabled during
291          * bios emulation, so turn them off again
292          */
293         icache_disable();
294         dcache_disable();
295 #endif
296
297         switch (comp) {
298         case IH_COMP_NONE:
299                 if (load_start == (ulong)os_hdr) {
300                         printf ("   XIP %s ... ", type_name);
301                 } else {
302                         printf ("   Loading %s ... ", type_name);
303
304                         memmove_wd ((void *)load_start,
305                                    (void *)os_data, os_len, CHUNKSZ);
306                 }
307                 load_end = load_start + os_len;
308                 puts("OK\n");
309                 break;
310         case IH_COMP_GZIP:
311                 printf ("   Uncompressing %s ... ", type_name);
312                 if (gunzip ((void *)load_start, unc_len,
313                                         (uchar *)os_data, &os_len) != 0) {
314                         puts ("GUNZIP: uncompress or overwrite error "
315                                 "- must RESET board to recover\n");
316                         show_boot_progress (-6);
317                         do_reset (cmdtp, flag, argc, argv);
318                 }
319
320                 load_end = load_start + os_len;
321                 break;
322 #ifdef CONFIG_BZIP2
323         case IH_COMP_BZIP2:
324                 printf ("   Uncompressing %s ... ", type_name);
325                 /*
326                  * If we've got less than 4 MB of malloc() space,
327                  * use slower decompression algorithm which requires
328                  * at most 2300 KB of memory.
329                  */
330                 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
331                                         &unc_len, (char *)os_data, os_len,
332                                         CFG_MALLOC_LEN < (4096 * 1024), 0);
333                 if (i != BZ_OK) {
334                         printf ("BUNZIP2: uncompress or overwrite error %d "
335                                 "- must RESET board to recover\n", i);
336                         show_boot_progress (-6);
337                         do_reset (cmdtp, flag, argc, argv);
338                 }
339
340                 load_end = load_start + unc_len;
341                 break;
342 #endif /* CONFIG_BZIP2 */
343         default:
344                 if (iflag)
345                         enable_interrupts();
346                 printf ("Unimplemented compression type %d\n", comp);
347                 show_boot_progress (-7);
348                 return 1;
349         }
350         puts ("OK\n");
351         debug ("   kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
352         show_boot_progress (7);
353
354         if ((load_start < image_end) && (load_end > image_start)) {
355                 debug ("image_start = 0x%lX, image_end = 0x%lx\n", image_start, image_end);
356                 debug ("load_start = 0x%lx, load_end = 0x%lx\n", load_start, load_end);
357
358                 if (images.legacy_hdr_valid) {
359                         if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
360                                 puts ("WARNING: legacy format multi component "
361                                         "image overwritten\n");
362                 } else {
363                         puts ("ERROR: new format image overwritten - "
364                                 "must RESET the board to recover\n");
365                         show_boot_progress (-113);
366                         do_reset (cmdtp, flag, argc, argv);
367                 }
368         }
369
370         show_boot_progress (8);
371
372         lmb_reserve(&lmb, load_start, (load_end - load_start));
373
374         switch (os) {
375         default:                        /* handled by (original) Linux case */
376         case IH_OS_LINUX:
377 #ifdef CONFIG_SILENT_CONSOLE
378             fixup_silent_linux();
379 #endif
380             do_bootm_linux (cmdtp, flag, argc, argv, &images);
381             break;
382
383         case IH_OS_NETBSD:
384             do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
385             break;
386
387 #ifdef CONFIG_LYNXKDI
388         case IH_OS_LYNXOS:
389             do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
390             break;
391 #endif
392
393         case IH_OS_RTEMS:
394             do_bootm_rtems (cmdtp, flag, argc, argv, &images);
395             break;
396
397 #if defined(CONFIG_CMD_ELF)
398         case IH_OS_VXWORKS:
399             do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
400             break;
401
402         case IH_OS_QNX:
403             do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
404             break;
405 #endif
406
407 #ifdef CONFIG_ARTOS
408         case IH_OS_ARTOS:
409             do_bootm_artos (cmdtp, flag, argc, argv, &images);
410             break;
411 #endif
412         }
413
414         show_boot_progress (-9);
415 #ifdef DEBUG
416         puts ("\n## Control returned to monitor - resetting...\n");
417         do_reset (cmdtp, flag, argc, argv);
418 #endif
419         if (iflag)
420                 enable_interrupts();
421
422         return 1;
423 }
424
425 /**
426  * image_get_kernel - verify legacy format kernel image
427  * @img_addr: in RAM address of the legacy format image to be verified
428  * @verify: data CRC verification flag
429  *
430  * image_get_kernel() verifies legacy image integrity and returns pointer to
431  * legacy image header if image verification was completed successfully.
432  *
433  * returns:
434  *     pointer to a legacy image header if valid image was found
435  *     otherwise return NULL
436  */
437 static image_header_t *image_get_kernel (ulong img_addr, int verify)
438 {
439         image_header_t *hdr = (image_header_t *)img_addr;
440
441         if (!image_check_magic(hdr)) {
442                 puts ("Bad Magic Number\n");
443                 show_boot_progress (-1);
444                 return NULL;
445         }
446         show_boot_progress (2);
447
448         if (!image_check_hcrc (hdr)) {
449                 puts ("Bad Header Checksum\n");
450                 show_boot_progress (-2);
451                 return NULL;
452         }
453
454         show_boot_progress (3);
455         image_print_contents (hdr);
456
457         if (verify) {
458                 puts ("   Verifying Checksum ... ");
459                 if (!image_check_dcrc (hdr)) {
460                         printf ("Bad Data CRC\n");
461                         show_boot_progress (-3);
462                         return NULL;
463                 }
464                 puts ("OK\n");
465         }
466         show_boot_progress (4);
467
468         if (!image_check_target_arch (hdr)) {
469                 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
470                 show_boot_progress (-4);
471                 return NULL;
472         }
473         return hdr;
474 }
475
476 /**
477  * fit_check_kernel - verify FIT format kernel subimage
478  * @fit_hdr: pointer to the FIT image header
479  * os_noffset: kernel subimage node offset within FIT image
480  * @verify: data CRC verification flag
481  *
482  * fit_check_kernel() verifies integrity of the kernel subimage and from
483  * specified FIT image.
484  *
485  * returns:
486  *     1, on success
487  *     0, on failure
488  */
489 #if defined (CONFIG_FIT)
490 static int fit_check_kernel (const void *fit, int os_noffset, int verify)
491 {
492         fit_image_print (fit, os_noffset, "   ");
493
494         if (verify) {
495                 puts ("   Verifying Hash Integrity ... ");
496                 if (!fit_image_check_hashes (fit, os_noffset)) {
497                         puts ("Bad Data Hash\n");
498                         show_boot_progress (-104);
499                         return 0;
500                 }
501                 puts ("OK\n");
502         }
503         show_boot_progress (105);
504
505         if (!fit_image_check_target_arch (fit, os_noffset)) {
506                 puts ("Unsupported Architecture\n");
507                 show_boot_progress (-105);
508                 return 0;
509         }
510
511         show_boot_progress (106);
512         if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
513                 puts ("Not a kernel image\n");
514                 show_boot_progress (-106);
515                 return 0;
516         }
517
518         show_boot_progress (107);
519         return 1;
520 }
521 #endif /* CONFIG_FIT */
522
523 /**
524  * boot_get_kernel - find kernel image
525  * @os_data: pointer to a ulong variable, will hold os data start address
526  * @os_len: pointer to a ulong variable, will hold os data length
527  *
528  * boot_get_kernel() tries to find a kernel image, verifies its integrity
529  * and locates kernel data.
530  *
531  * returns:
532  *     pointer to image header if valid image was found, plus kernel start
533  *     address and length, otherwise NULL
534  */
535 static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
536                 bootm_headers_t *images, ulong *os_data, ulong *os_len)
537 {
538         image_header_t  *hdr;
539         ulong           img_addr;
540 #if defined(CONFIG_FIT)
541         void            *fit_hdr;
542         const char      *fit_uname_config = NULL;
543         const char      *fit_uname_kernel = NULL;
544         const void      *data;
545         size_t          len;
546         int             cfg_noffset;
547         int             os_noffset;
548 #endif
549
550         /* find out kernel image address */
551         if (argc < 2) {
552                 img_addr = load_addr;
553                 debug ("*  kernel: default image load address = 0x%08lx\n",
554                                 load_addr);
555 #if defined(CONFIG_FIT)
556         } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
557                                                         &fit_uname_config)) {
558                 debug ("*  kernel: config '%s' from image at 0x%08lx\n",
559                                 fit_uname_config, img_addr);
560         } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
561                                                         &fit_uname_kernel)) {
562                 debug ("*  kernel: subimage '%s' from image at 0x%08lx\n",
563                                 fit_uname_kernel, img_addr);
564 #endif
565         } else {
566                 img_addr = simple_strtoul(argv[1], NULL, 16);
567                 debug ("*  kernel: cmdline image address = 0x%08lx\n", img_addr);
568         }
569
570         show_boot_progress (1);
571
572         /* copy from dataflash if needed */
573         img_addr = genimg_get_image (img_addr);
574
575         /* check image type, for FIT images get FIT kernel node */
576         *os_data = *os_len = 0;
577         switch (genimg_get_format ((void *)img_addr)) {
578         case IMAGE_FORMAT_LEGACY:
579                 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
580                                 img_addr);
581                 hdr = image_get_kernel (img_addr, images->verify);
582                 if (!hdr)
583                         return NULL;
584                 show_boot_progress (5);
585
586                 /* get os_data and os_len */
587                 switch (image_get_type (hdr)) {
588                 case IH_TYPE_KERNEL:
589                         *os_data = image_get_data (hdr);
590                         *os_len = image_get_data_size (hdr);
591                         break;
592                 case IH_TYPE_MULTI:
593                         image_multi_getimg (hdr, 0, os_data, os_len);
594                         break;
595                 default:
596                         printf ("Wrong Image Type for %s command\n", cmdtp->name);
597                         show_boot_progress (-5);
598                         return NULL;
599                 }
600
601                 /*
602                  * copy image header to allow for image overwrites during kernel
603                  * decompression.
604                  */
605                 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
606
607                 /* save pointer to image header */
608                 images->legacy_hdr_os = hdr;
609
610                 images->legacy_hdr_valid = 1;
611                 show_boot_progress (6);
612                 break;
613 #if defined(CONFIG_FIT)
614         case IMAGE_FORMAT_FIT:
615                 fit_hdr = (void *)img_addr;
616                 printf ("## Booting kernel from FIT Image at %08lx ...\n",
617                                 img_addr);
618
619                 if (!fit_check_format (fit_hdr)) {
620                         puts ("Bad FIT kernel image format!\n");
621                         show_boot_progress (-100);
622                         return NULL;
623                 }
624                 show_boot_progress (100);
625
626                 if (!fit_uname_kernel) {
627                         /*
628                          * no kernel image node unit name, try to get config
629                          * node first. If config unit node name is NULL
630                          * fit_conf_get_node() will try to find default config node
631                          */
632                         show_boot_progress (101);
633                         cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
634                         if (cfg_noffset < 0) {
635                                 show_boot_progress (-101);
636                                 return NULL;
637                         }
638                         /* save configuration uname provided in the first
639                          * bootm argument
640                          */
641                         images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
642                         printf ("   Using '%s' configuration\n", images->fit_uname_cfg);
643                         show_boot_progress (103);
644
645                         os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
646                         fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
647                 } else {
648                         /* get kernel component image node offset */
649                         show_boot_progress (102);
650                         os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
651                 }
652                 if (os_noffset < 0) {
653                         show_boot_progress (-103);
654                         return NULL;
655                 }
656
657                 printf ("   Trying '%s' kernel subimage\n", fit_uname_kernel);
658
659                 show_boot_progress (104);
660                 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
661                         return NULL;
662
663                 /* get kernel image data address and length */
664                 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
665                         puts ("Could not find kernel subimage data!\n");
666                         show_boot_progress (-107);
667                         return NULL;
668                 }
669                 show_boot_progress (108);
670
671                 *os_len = len;
672                 *os_data = (ulong)data;
673                 images->fit_hdr_os = fit_hdr;
674                 images->fit_uname_os = fit_uname_kernel;
675                 images->fit_noffset_os = os_noffset;
676                 break;
677 #endif
678         default:
679                 printf ("Wrong Image Format for %s command\n", cmdtp->name);
680                 show_boot_progress (-108);
681                 return NULL;
682         }
683
684         debug ("   kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
685                         *os_data, *os_len, *os_len);
686
687         return (void *)img_addr;
688 }
689
690 U_BOOT_CMD(
691         bootm,  CFG_MAXARGS,    1,      do_bootm,
692         "bootm   - boot application image from memory\n",
693         "[addr [arg ...]]\n    - boot application image stored in memory\n"
694         "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
695         "\t'arg' can be the address of an initrd image\n"
696 #if defined(CONFIG_OF_LIBFDT)
697         "\tWhen booting a Linux kernel which requires a flat device-tree\n"
698         "\ta third argument is required which is the address of the\n"
699         "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
700         "\tuse a '-' for the second argument. If you do not pass a third\n"
701         "\ta bd_info struct will be passed instead\n"
702 #endif
703 #if defined(CONFIG_FIT)
704         "\t\nFor the new multi component uImage format (FIT) addresses\n"
705         "\tmust be extened to include component or configuration unit name:\n"
706         "\taddr:<subimg_uname> - direct component image specification\n"
707         "\taddr#<conf_uname>   - configuration specification\n"
708         "\tUse iminfo command to get the list of existing component\n"
709         "\timages and configurations.\n"
710 #endif
711 );
712
713 /*******************************************************************/
714 /* bootd - boot default image */
715 /*******************************************************************/
716 #if defined(CONFIG_CMD_BOOTD)
717 int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
718 {
719         int rcode = 0;
720
721 #ifndef CFG_HUSH_PARSER
722         if (run_command (getenv ("bootcmd"), flag) < 0)
723                 rcode = 1;
724 #else
725         if (parse_string_outer (getenv ("bootcmd"),
726                         FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
727                 rcode = 1;
728 #endif
729         return rcode;
730 }
731
732 U_BOOT_CMD(
733         boot,   1,      1,      do_bootd,
734         "boot    - boot default, i.e., run 'bootcmd'\n",
735         NULL
736 );
737
738 /* keep old command name "bootd" for backward compatibility */
739 U_BOOT_CMD(
740         bootd, 1,       1,      do_bootd,
741         "bootd   - boot default, i.e., run 'bootcmd'\n",
742         NULL
743 );
744
745 #endif
746
747
748 /*******************************************************************/
749 /* iminfo - print header info for a requested image */
750 /*******************************************************************/
751 #if defined(CONFIG_CMD_IMI)
752 int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
753 {
754         int     arg;
755         ulong   addr;
756         int     rcode = 0;
757
758         if (argc < 2) {
759                 return image_info (load_addr);
760         }
761
762         for (arg = 1; arg < argc; ++arg) {
763                 addr = simple_strtoul (argv[arg], NULL, 16);
764                 if (image_info (addr) != 0)
765                         rcode = 1;
766         }
767         return rcode;
768 }
769
770 static int image_info (ulong addr)
771 {
772         void *hdr = (void *)addr;
773
774         printf ("\n## Checking Image at %08lx ...\n", addr);
775
776         switch (genimg_get_format (hdr)) {
777         case IMAGE_FORMAT_LEGACY:
778                 puts ("   Legacy image found\n");
779                 if (!image_check_magic (hdr)) {
780                         puts ("   Bad Magic Number\n");
781                         return 1;
782                 }
783
784                 if (!image_check_hcrc (hdr)) {
785                         puts ("   Bad Header Checksum\n");
786                         return 1;
787                 }
788
789                 image_print_contents (hdr);
790
791                 puts ("   Verifying Checksum ... ");
792                 if (!image_check_dcrc (hdr)) {
793                         puts ("   Bad Data CRC\n");
794                         return 1;
795                 }
796                 puts ("OK\n");
797                 return 0;
798 #if defined(CONFIG_FIT)
799         case IMAGE_FORMAT_FIT:
800                 puts ("   FIT image found\n");
801
802                 if (!fit_check_format (hdr)) {
803                         puts ("Bad FIT image format!\n");
804                         return 1;
805                 }
806
807                 fit_print_contents (hdr);
808                 return 0;
809 #endif
810         default:
811                 puts ("Unknown image format!\n");
812                 break;
813         }
814
815         return 1;
816 }
817
818 U_BOOT_CMD(
819         iminfo, CFG_MAXARGS,    1,      do_iminfo,
820         "iminfo  - print header information for application image\n",
821         "addr [addr ...]\n"
822         "    - print header information for application image starting at\n"
823         "      address 'addr' in memory; this includes verification of the\n"
824         "      image contents (magic number, header and payload checksums)\n"
825 );
826 #endif
827
828
829 /*******************************************************************/
830 /* imls - list all images found in flash */
831 /*******************************************************************/
832 #if defined(CONFIG_CMD_IMLS)
833 int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
834 {
835         flash_info_t *info;
836         int i, j;
837         void *hdr;
838
839         for (i = 0, info = &flash_info[0];
840                 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
841
842                 if (info->flash_id == FLASH_UNKNOWN)
843                         goto next_bank;
844                 for (j = 0; j < info->sector_count; ++j) {
845
846                         hdr = (void *)info->start[j];
847                         if (!hdr)
848                                 goto next_sector;
849
850                         switch (genimg_get_format (hdr)) {
851                         case IMAGE_FORMAT_LEGACY:
852                                 if (!image_check_hcrc (hdr))
853                                         goto next_sector;
854
855                                 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
856                                 image_print_contents (hdr);
857
858                                 puts ("   Verifying Checksum ... ");
859                                 if (!image_check_dcrc (hdr)) {
860                                         puts ("Bad Data CRC\n");
861                                 } else {
862                                         puts ("OK\n");
863                                 }
864                                 break;
865 #if defined(CONFIG_FIT)
866                         case IMAGE_FORMAT_FIT:
867                                 if (!fit_check_format (hdr))
868                                         goto next_sector;
869
870                                 printf ("FIT Image at %08lX:\n", (ulong)hdr);
871                                 fit_print_contents (hdr);
872                                 break;
873 #endif
874                         default:
875                                 goto next_sector;
876                         }
877
878 next_sector:            ;
879                 }
880 next_bank:      ;
881         }
882
883         return (0);
884 }
885
886 U_BOOT_CMD(
887         imls,   1,              1,      do_imls,
888         "imls    - list all images found in flash\n",
889         "\n"
890         "    - Prints information about all images found at sector\n"
891         "      boundaries in flash.\n"
892 );
893 #endif
894
895 /*******************************************************************/
896 /* helper routines */
897 /*******************************************************************/
898 #ifdef CONFIG_SILENT_CONSOLE
899 static void fixup_silent_linux ()
900 {
901         char buf[256], *start, *end;
902         char *cmdline = getenv ("bootargs");
903
904         /* Only fix cmdline when requested */
905         if (!(gd->flags & GD_FLG_SILENT))
906                 return;
907
908         debug ("before silent fix-up: %s\n", cmdline);
909         if (cmdline) {
910                 if ((start = strstr (cmdline, "console=")) != NULL) {
911                         end = strchr (start, ' ');
912                         strncpy (buf, cmdline, (start - cmdline + 8));
913                         if (end)
914                                 strcpy (buf + (start - cmdline + 8), end);
915                         else
916                                 buf[start - cmdline + 8] = '\0';
917                 } else {
918                         strcpy (buf, cmdline);
919                         strcat (buf, " console=");
920                 }
921         } else {
922                 strcpy (buf, "console=");
923         }
924
925         setenv ("bootargs", buf);
926         debug ("after silent fix-up: %s\n", buf);
927 }
928 #endif /* CONFIG_SILENT_CONSOLE */
929
930
931 /*******************************************************************/
932 /* OS booting routines */
933 /*******************************************************************/
934
935 static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
936                             int argc, char *argv[],
937                             bootm_headers_t *images)
938 {
939         void (*loader)(bd_t *, image_header_t *, char *, char *);
940         image_header_t *os_hdr, *hdr;
941         ulong kernel_data, kernel_len;
942         char *consdev;
943         char *cmdline;
944
945 #if defined(CONFIG_FIT)
946         if (!images->legacy_hdr_valid) {
947                 fit_unsupported_reset ("NetBSD");
948                 do_reset (cmdtp, flag, argc, argv);
949         }
950 #endif
951         hdr = images->legacy_hdr_os;
952
953         /*
954          * Booting a (NetBSD) kernel image
955          *
956          * This process is pretty similar to a standalone application:
957          * The (first part of an multi-) image must be a stage-2 loader,
958          * which in turn is responsible for loading & invoking the actual
959          * kernel.  The only differences are the parameters being passed:
960          * besides the board info strucure, the loader expects a command
961          * line, the name of the console device, and (optionally) the
962          * address of the original image header.
963          */
964         os_hdr = NULL;
965         if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
966                 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
967                 if (kernel_len)
968                         os_hdr = hdr;
969         }
970
971         consdev = "";
972 #if   defined (CONFIG_8xx_CONS_SMC1)
973         consdev = "smc1";
974 #elif defined (CONFIG_8xx_CONS_SMC2)
975         consdev = "smc2";
976 #elif defined (CONFIG_8xx_CONS_SCC2)
977         consdev = "scc2";
978 #elif defined (CONFIG_8xx_CONS_SCC3)
979         consdev = "scc3";
980 #endif
981
982         if (argc > 2) {
983                 ulong len;
984                 int   i;
985
986                 for (i = 2, len = 0; i < argc; i += 1)
987                         len += strlen (argv[i]) + 1;
988                 cmdline = malloc (len);
989
990                 for (i = 2, len = 0; i < argc; i += 1) {
991                         if (i > 2)
992                                 cmdline[len++] = ' ';
993                         strcpy (&cmdline[len], argv[i]);
994                         len += strlen (argv[i]);
995                 }
996         } else if ((cmdline = getenv ("bootargs")) == NULL) {
997                 cmdline = "";
998         }
999
1000         loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
1001
1002         printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1003                 (ulong)loader);
1004
1005         show_boot_progress (15);
1006
1007         /*
1008          * NetBSD Stage-2 Loader Parameters:
1009          *   r3: ptr to board info data
1010          *   r4: image address
1011          *   r5: console device
1012          *   r6: boot args string
1013          */
1014         (*loader) (gd->bd, os_hdr, consdev, cmdline);
1015 }
1016
1017 #ifdef CONFIG_LYNXKDI
1018 static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
1019                              int argc, char *argv[],
1020                              bootm_headers_t *images)
1021 {
1022         image_header_t *hdr = &images->legacy_hdr_os_copy;
1023
1024 #if defined(CONFIG_FIT)
1025         if (!images->legacy_hdr_valid) {
1026                 fit_unsupported_reset ("Lynx");
1027                 do_reset (cmdtp, flag, argc, argv);
1028         }
1029 #endif
1030
1031         lynxkdi_boot ((image_header_t *)hdr);
1032 }
1033 #endif /* CONFIG_LYNXKDI */
1034
1035 static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
1036                            int argc, char *argv[],
1037                            bootm_headers_t *images)
1038 {
1039         void (*entry_point)(bd_t *);
1040
1041 #if defined(CONFIG_FIT)
1042         if (!images->legacy_hdr_valid) {
1043                 fit_unsupported_reset ("RTEMS");
1044                 do_reset (cmdtp, flag, argc, argv);
1045         }
1046 #endif
1047
1048         entry_point = (void (*)(bd_t *))images->ep;
1049
1050         printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1051                 (ulong)entry_point);
1052
1053         show_boot_progress (15);
1054
1055         /*
1056          * RTEMS Parameters:
1057          *   r3: ptr to board info data
1058          */
1059         (*entry_point)(gd->bd);
1060 }
1061
1062 #if defined(CONFIG_CMD_ELF)
1063 static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
1064                              int argc, char *argv[],
1065                              bootm_headers_t *images)
1066 {
1067         char str[80];
1068
1069 #if defined(CONFIG_FIT)
1070         if (!images->legacy_hdr_valid) {
1071                 fit_unsupported_reset ("VxWorks");
1072                 do_reset (cmdtp, flag, argc, argv);
1073         }
1074 #endif
1075
1076         sprintf(str, "%lx", images->ep); /* write entry-point into string */
1077         setenv("loadaddr", str);
1078         do_bootvx(cmdtp, 0, 0, NULL);
1079 }
1080
1081 static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
1082                             int argc, char *argv[],
1083                             bootm_headers_t *images)
1084 {
1085         char *local_args[2];
1086         char str[16];
1087
1088 #if defined(CONFIG_FIT)
1089         if (!images->legacy_hdr_valid) {
1090                 fit_unsupported_reset ("QNX");
1091                 do_reset (cmdtp, flag, argc, argv);
1092         }
1093 #endif
1094
1095         sprintf(str, "%lx", images->ep); /* write entry-point into string */
1096         local_args[0] = argv[0];
1097         local_args[1] = str;    /* and provide it via the arguments */
1098         do_bootelf(cmdtp, 0, 2, local_args);
1099 }
1100 #endif
1101
1102 #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1103 static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1104                            int argc, char *argv[],
1105                            bootm_headers_t *images)
1106 {
1107         ulong top;
1108         char *s, *cmdline;
1109         char **fwenv, **ss;
1110         int i, j, nxt, len, envno, envsz;
1111         bd_t *kbd;
1112         void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
1113
1114 #if defined(CONFIG_FIT)
1115         if (!images->legacy_hdr_valid) {
1116                 fit_unsupported_reset ("ARTOS");
1117                 do_reset (cmdtp, flag, argc, argv);
1118         }
1119 #endif
1120
1121         /*
1122          * Booting an ARTOS kernel image + application
1123          */
1124
1125         /* this used to be the top of memory, but was wrong... */
1126 #ifdef CONFIG_PPC
1127         /* get stack pointer */
1128         asm volatile ("mr %0,1" : "=r"(top) );
1129 #endif
1130         debug ("## Current stack ends at 0x%08lX ", top);
1131
1132         top -= 2048;            /* just to be sure */
1133         if (top > CFG_BOOTMAPSZ)
1134                 top = CFG_BOOTMAPSZ;
1135         top &= ~0xF;
1136
1137         debug ("=> set upper limit to 0x%08lX\n", top);
1138
1139         /* first check the artos specific boot args, then the linux args*/
1140         if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
1141                 s = "";
1142
1143         /* get length of cmdline, and place it */
1144         len = strlen (s);
1145         top = (top - (len + 1)) & ~0xF;
1146         cmdline = (char *)top;
1147         debug ("## cmdline at 0x%08lX ", top);
1148         strcpy (cmdline, s);
1149
1150         /* copy bdinfo */
1151         top = (top - sizeof (bd_t)) & ~0xF;
1152         debug ("## bd at 0x%08lX ", top);
1153         kbd = (bd_t *)top;
1154         memcpy (kbd, gd->bd, sizeof (bd_t));
1155
1156         /* first find number of env entries, and their size */
1157         envno = 0;
1158         envsz = 0;
1159         for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1160                 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
1161                         ;
1162                 envno++;
1163                 envsz += (nxt - i) + 1; /* plus trailing zero */
1164         }
1165         envno++;        /* plus the terminating zero */
1166         debug ("## %u envvars total size %u ", envno, envsz);
1167
1168         top = (top - sizeof (char **) * envno) & ~0xF;
1169         fwenv = (char **)top;
1170         debug ("## fwenv at 0x%08lX ", top);
1171
1172         top = (top - envsz) & ~0xF;
1173         s = (char *)top;
1174         ss = fwenv;
1175
1176         /* now copy them */
1177         for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1178                 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
1179                         ;
1180                 *ss++ = s;
1181                 for (j = i; j < nxt; ++j)
1182                         *s++ = env_get_char (j);
1183                 *s++ = '\0';
1184         }
1185         *ss++ = NULL;   /* terminate */
1186
1187         entry = (void (*)(bd_t *, char *, char **, ulong))images->ep;
1188         (*entry) (kbd, cmdline, fwenv, top);
1189 }
1190 #endif