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