]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - common/cmd_bootm.c
* Support for FDT in uImage format, error when using FDT from flash
[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  * Boot support
26  */
27 #include <common.h>
28 #include <watchdog.h>
29 #include <command.h>
30 #include <image.h>
31 #include <malloc.h>
32 #include <zlib.h>
33 #include <bzlib.h>
34 #include <environment.h>
35 #include <asm/byteorder.h>
36
37 #ifdef CONFIG_OF_FLAT_TREE
38 #include <ft_build.h>
39 #endif
40
41 DECLARE_GLOBAL_DATA_PTR;
42
43  /*cmd_boot.c*/
44  extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
45
46 #if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
47 #include <rtc.h>
48 #endif
49
50 #ifdef CFG_HUSH_PARSER
51 #include <hush.h>
52 #endif
53
54 #ifdef CONFIG_SHOW_BOOT_PROGRESS
55 # include <status_led.h>
56 # define SHOW_BOOT_PROGRESS(arg)        show_boot_progress(arg)
57 #else
58 # define SHOW_BOOT_PROGRESS(arg)
59 #endif
60
61 #ifdef CFG_INIT_RAM_LOCK
62 #include <asm/cache.h>
63 #endif
64
65 #ifdef CONFIG_LOGBUFFER
66 #include <logbuff.h>
67 #endif
68
69 #ifdef CONFIG_HAS_DATAFLASH
70 #include <dataflash.h>
71 #endif
72
73 /*
74  * Some systems (for example LWMON) have very short watchdog periods;
75  * we must make sure to split long operations like memmove() or
76  * crc32() into reasonable chunks.
77  */
78 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
79 # define CHUNKSZ (64 * 1024)
80 #endif
81
82 int  gunzip (void *, int, unsigned char *, unsigned long *);
83
84 static void *zalloc(void *, unsigned, unsigned);
85 static void zfree(void *, void *, unsigned);
86
87 #if (CONFIG_COMMANDS & CFG_CMD_IMI)
88 static int image_info (unsigned long addr);
89 #endif
90
91 #if (CONFIG_COMMANDS & CFG_CMD_IMLS)
92 #include <flash.h>
93 extern flash_info_t flash_info[]; /* info for FLASH chips */
94 static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
95 #endif
96
97 static void print_type (image_header_t *hdr);
98
99 #ifdef __I386__
100 image_header_t *fake_header(image_header_t *hdr, void *ptr, int size);
101 #endif
102
103 /*
104  *  Continue booting an OS image; caller already has:
105  *  - copied image header to global variable `header'
106  *  - checked header magic number, checksums (both header & image),
107  *  - verified image architecture (PPC) and type (KERNEL or MULTI),
108  *  - loaded (first part of) image to header load address,
109  *  - disabled interrupts.
110  */
111 typedef void boot_os_Fcn (cmd_tbl_t *cmdtp, int flag,
112                           int   argc, char *argv[],
113                           ulong addr,           /* of image to boot */
114                           ulong *len_ptr,       /* multi-file image length table */
115                           int   verify);        /* getenv("verify")[0] != 'n' */
116
117 #ifdef  DEBUG
118 extern int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
119 #endif
120
121 #ifdef CONFIG_PPC
122 static boot_os_Fcn do_bootm_linux;
123 #else
124 extern boot_os_Fcn do_bootm_linux;
125 #endif
126 #ifdef CONFIG_SILENT_CONSOLE
127 static void fixup_silent_linux (void);
128 #endif
129 static boot_os_Fcn do_bootm_netbsd;
130 static boot_os_Fcn do_bootm_rtems;
131 #if (CONFIG_COMMANDS & CFG_CMD_ELF)
132 static boot_os_Fcn do_bootm_vxworks;
133 static boot_os_Fcn do_bootm_qnxelf;
134 int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] );
135 int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] );
136 #endif /* CFG_CMD_ELF */
137 #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
138 static boot_os_Fcn do_bootm_artos;
139 #endif
140 #ifdef CONFIG_LYNXKDI
141 static boot_os_Fcn do_bootm_lynxkdi;
142 extern void lynxkdi_boot( image_header_t * );
143 #endif
144
145 #ifndef CFG_BOOTM_LEN
146 #define CFG_BOOTM_LEN   0x800000        /* use 8MByte as default max gunzip size */
147 #endif
148
149 image_header_t header;
150
151 ulong load_addr = CFG_LOAD_ADDR;                /* Default Load Address */
152
153 int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
154 {
155         ulong   iflag;
156         ulong   addr;
157         ulong   data, len, checksum;
158         ulong  *len_ptr;
159         uint    unc_len = CFG_BOOTM_LEN;
160         int     i, verify;
161         char    *name, *s;
162         int     (*appl)(int, char *[]);
163         image_header_t *hdr = &header;
164
165         s = getenv ("verify");
166         verify = (s && (*s == 'n')) ? 0 : 1;
167
168         if (argc < 2) {
169                 addr = load_addr;
170         } else {
171                 addr = simple_strtoul(argv[1], NULL, 16);
172         }
173
174         SHOW_BOOT_PROGRESS (1);
175         printf ("## Booting image at %08lx ...\n", addr);
176
177         /* Copy header so we can blank CRC field for re-calculation */
178 #ifdef CONFIG_HAS_DATAFLASH
179         if (addr_dataflash(addr)){
180                 read_dataflash(addr, sizeof(image_header_t), (char *)&header);
181         } else
182 #endif
183         memmove (&header, (char *)addr, sizeof(image_header_t));
184
185         if (ntohl(hdr->ih_magic) != IH_MAGIC) {
186 #ifdef __I386__ /* correct image format not implemented yet - fake it */
187                 if (fake_header(hdr, (void*)addr, -1) != NULL) {
188                         /* to compensate for the addition below */
189                         addr -= sizeof(image_header_t);
190                         /* turnof verify,
191                          * fake_header() does not fake the data crc
192                          */
193                         verify = 0;
194                 } else
195 #endif  /* __I386__ */
196             {
197                 puts ("Bad Magic Number\n");
198                 SHOW_BOOT_PROGRESS (-1);
199                 return 1;
200             }
201         }
202         SHOW_BOOT_PROGRESS (2);
203
204         data = (ulong)&header;
205         len  = sizeof(image_header_t);
206
207         checksum = ntohl(hdr->ih_hcrc);
208         hdr->ih_hcrc = 0;
209
210         if (crc32 (0, (uchar *)data, len) != checksum) {
211                 puts ("Bad Header Checksum\n");
212                 SHOW_BOOT_PROGRESS (-2);
213                 return 1;
214         }
215         SHOW_BOOT_PROGRESS (3);
216
217 #ifdef CONFIG_HAS_DATAFLASH
218         if (addr_dataflash(addr)){
219                 len  = ntohl(hdr->ih_size) + sizeof(image_header_t);
220                 read_dataflash(addr, len, (char *)CFG_LOAD_ADDR);
221                 addr = CFG_LOAD_ADDR;
222         }
223 #endif
224
225
226         /* for multi-file images we need the data part, too */
227         print_image_hdr ((image_header_t *)addr);
228
229         data = addr + sizeof(image_header_t);
230         len  = ntohl(hdr->ih_size);
231
232         if (verify) {
233                 puts ("   Verifying Checksum ... ");
234                 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
235                         printf ("Bad Data CRC\n");
236                         SHOW_BOOT_PROGRESS (-3);
237                         return 1;
238                 }
239                 puts ("OK\n");
240         }
241         SHOW_BOOT_PROGRESS (4);
242
243         len_ptr = (ulong *)data;
244
245 #if defined(__PPC__)
246         if (hdr->ih_arch != IH_CPU_PPC)
247 #elif defined(__ARM__)
248         if (hdr->ih_arch != IH_CPU_ARM)
249 #elif defined(__I386__)
250         if (hdr->ih_arch != IH_CPU_I386)
251 #elif defined(__mips__)
252         if (hdr->ih_arch != IH_CPU_MIPS)
253 #elif defined(__nios__)
254         if (hdr->ih_arch != IH_CPU_NIOS)
255 #elif defined(__M68K__)
256         if (hdr->ih_arch != IH_CPU_M68K)
257 #elif defined(__microblaze__)
258         if (hdr->ih_arch != IH_CPU_MICROBLAZE)
259 #elif defined(__nios2__)
260         if (hdr->ih_arch != IH_CPU_NIOS2)
261 #elif defined(__blackfin__)
262         if (hdr->ih_arch != IH_CPU_BLACKFIN)
263 #else
264 # error Unknown CPU type
265 #endif
266         {
267                 printf ("Unsupported Architecture 0x%x\n", hdr->ih_arch);
268                 SHOW_BOOT_PROGRESS (-4);
269                 return 1;
270         }
271         SHOW_BOOT_PROGRESS (5);
272
273         switch (hdr->ih_type) {
274         case IH_TYPE_STANDALONE:
275                 name = "Standalone Application";
276                 /* A second argument overwrites the load address */
277                 if (argc > 2) {
278                         hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
279                 }
280                 break;
281         case IH_TYPE_KERNEL:
282                 name = "Kernel Image";
283                 break;
284         case IH_TYPE_MULTI:
285                 name = "Multi-File Image";
286                 len  = ntohl(len_ptr[0]);
287                 /* OS kernel is always the first image */
288                 data += 8; /* kernel_len + terminator */
289                 for (i=1; len_ptr[i]; ++i)
290                         data += 4;
291                 break;
292         default: printf ("Wrong Image Type for %s command\n", cmdtp->name);
293                 SHOW_BOOT_PROGRESS (-5);
294                 return 1;
295         }
296         SHOW_BOOT_PROGRESS (6);
297
298         /*
299          * We have reached the point of no return: we are going to
300          * overwrite all exception vector code, so we cannot easily
301          * recover from any failures any more...
302          */
303
304         iflag = disable_interrupts();
305
306 #ifdef CONFIG_AMIGAONEG3SE
307         /*
308          * We've possible left the caches enabled during
309          * bios emulation, so turn them off again
310          */
311         icache_disable();
312         invalidate_l1_instruction_cache();
313         flush_data_cache();
314         dcache_disable();
315 #endif
316
317         switch (hdr->ih_comp) {
318         case IH_COMP_NONE:
319                 if(ntohl(hdr->ih_load) == addr) {
320                         printf ("   XIP %s ... ", name);
321                 } else {
322 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
323                         size_t l = len;
324                         void *to = (void *)ntohl(hdr->ih_load);
325                         void *from = (void *)data;
326
327                         printf ("   Loading %s ... ", name);
328
329                         while (l > 0) {
330                                 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
331                                 WATCHDOG_RESET();
332                                 memmove (to, from, tail);
333                                 to += tail;
334                                 from += tail;
335                                 l -= tail;
336                         }
337 #else   /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
338                         memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len);
339 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
340                 }
341                 break;
342         case IH_COMP_GZIP:
343                 printf ("   Uncompressing %s ... ", name);
344                 if (gunzip ((void *)ntohl(hdr->ih_load), unc_len,
345                             (uchar *)data, &len) != 0) {
346                         puts ("GUNZIP ERROR - must RESET board to recover\n");
347                         SHOW_BOOT_PROGRESS (-6);
348                         do_reset (cmdtp, flag, argc, argv);
349                 }
350                 break;
351 #ifdef CONFIG_BZIP2
352         case IH_COMP_BZIP2:
353                 printf ("   Uncompressing %s ... ", name);
354                 /*
355                  * If we've got less than 4 MB of malloc() space,
356                  * use slower decompression algorithm which requires
357                  * at most 2300 KB of memory.
358                  */
359                 i = BZ2_bzBuffToBuffDecompress ((char*)ntohl(hdr->ih_load),
360                                                 &unc_len, (char *)data, len,
361                                                 CFG_MALLOC_LEN < (4096 * 1024), 0);
362                 if (i != BZ_OK) {
363                         printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
364                         SHOW_BOOT_PROGRESS (-6);
365                         udelay(100000);
366                         do_reset (cmdtp, flag, argc, argv);
367                 }
368                 break;
369 #endif /* CONFIG_BZIP2 */
370         default:
371                 if (iflag)
372                         enable_interrupts();
373                 printf ("Unimplemented compression type %d\n", hdr->ih_comp);
374                 SHOW_BOOT_PROGRESS (-7);
375                 return 1;
376         }
377         puts ("OK\n");
378         SHOW_BOOT_PROGRESS (7);
379
380         switch (hdr->ih_type) {
381         case IH_TYPE_STANDALONE:
382                 if (iflag)
383                         enable_interrupts();
384
385                 /* load (and uncompress), but don't start if "autostart"
386                  * is set to "no"
387                  */
388                 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) {
389                         char buf[32];
390                         sprintf(buf, "%lX", len);
391                         setenv("filesize", buf);
392                         return 0;
393                 }
394                 appl = (int (*)(int, char *[]))ntohl(hdr->ih_ep);
395                 (*appl)(argc-1, &argv[1]);
396                 return 0;
397         case IH_TYPE_KERNEL:
398         case IH_TYPE_MULTI:
399                 /* handled below */
400                 break;
401         default:
402                 if (iflag)
403                         enable_interrupts();
404                 printf ("Can't boot image type %d\n", hdr->ih_type);
405                 SHOW_BOOT_PROGRESS (-8);
406                 return 1;
407         }
408         SHOW_BOOT_PROGRESS (8);
409
410         switch (hdr->ih_os) {
411         default:                        /* handled by (original) Linux case */
412         case IH_OS_LINUX:
413 #ifdef CONFIG_SILENT_CONSOLE
414             fixup_silent_linux();
415 #endif
416             do_bootm_linux  (cmdtp, flag, argc, argv,
417                              addr, len_ptr, verify);
418             break;
419         case IH_OS_NETBSD:
420             do_bootm_netbsd (cmdtp, flag, argc, argv,
421                              addr, len_ptr, verify);
422             break;
423
424 #ifdef CONFIG_LYNXKDI
425         case IH_OS_LYNXOS:
426             do_bootm_lynxkdi (cmdtp, flag, argc, argv,
427                              addr, len_ptr, verify);
428             break;
429 #endif
430
431         case IH_OS_RTEMS:
432             do_bootm_rtems (cmdtp, flag, argc, argv,
433                              addr, len_ptr, verify);
434             break;
435
436 #if (CONFIG_COMMANDS & CFG_CMD_ELF)
437         case IH_OS_VXWORKS:
438             do_bootm_vxworks (cmdtp, flag, argc, argv,
439                               addr, len_ptr, verify);
440             break;
441         case IH_OS_QNX:
442             do_bootm_qnxelf (cmdtp, flag, argc, argv,
443                               addr, len_ptr, verify);
444             break;
445 #endif /* CFG_CMD_ELF */
446 #ifdef CONFIG_ARTOS
447         case IH_OS_ARTOS:
448             do_bootm_artos  (cmdtp, flag, argc, argv,
449                              addr, len_ptr, verify);
450             break;
451 #endif
452         }
453
454         SHOW_BOOT_PROGRESS (-9);
455 #ifdef DEBUG
456         puts ("\n## Control returned to monitor - resetting...\n");
457         do_reset (cmdtp, flag, argc, argv);
458 #endif
459         return 1;
460 }
461
462 U_BOOT_CMD(
463         bootm,  CFG_MAXARGS,    1,      do_bootm,
464         "bootm   - boot application image from memory\n",
465         "[addr [arg ...]]\n    - boot application image stored in memory\n"
466         "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
467         "\t'arg' can be the address of an initrd image\n"
468 #ifdef CONFIG_OF_FLAT_TREE
469         "\tWhen booting a Linux kernel which requires a flat device-tree\n"
470         "\ta third argument is required which is the address of the of the\n"
471         "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
472         "\tuse a '-' for the second argument. If you do not pass a third\n"
473         "\ta bd_info struct will be passed instead\n"
474 #endif
475 );
476
477 #ifdef CONFIG_SILENT_CONSOLE
478 static void
479 fixup_silent_linux ()
480 {
481         char buf[256], *start, *end;
482         char *cmdline = getenv ("bootargs");
483
484         /* Only fix cmdline when requested */
485         if (!(gd->flags & GD_FLG_SILENT))
486                 return;
487
488         debug ("before silent fix-up: %s\n", cmdline);
489         if (cmdline) {
490                 if ((start = strstr (cmdline, "console=")) != NULL) {
491                         end = strchr (start, ' ');
492                         strncpy (buf, cmdline, (start - cmdline + 8));
493                         if (end)
494                                 strcpy (buf + (start - cmdline + 8), end);
495                         else
496                                 buf[start - cmdline + 8] = '\0';
497                 } else {
498                         strcpy (buf, cmdline);
499                         strcat (buf, " console=");
500                 }
501         } else {
502                 strcpy (buf, "console=");
503         }
504
505         setenv ("bootargs", buf);
506         debug ("after silent fix-up: %s\n", buf);
507 }
508 #endif /* CONFIG_SILENT_CONSOLE */
509
510 #ifdef CONFIG_PPC
511 static void
512 do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
513                 int     argc, char *argv[],
514                 ulong   addr,
515                 ulong   *len_ptr,
516                 int     verify)
517 {
518         ulong   sp;
519         ulong   len, checksum;
520         ulong   initrd_start, initrd_end;
521         ulong   cmd_start, cmd_end;
522         ulong   initrd_high;
523         ulong   data;
524         int     initrd_copy_to_ram = 1;
525         char    *cmdline;
526         char    *s;
527         bd_t    *kbd;
528         void    (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
529         image_header_t *hdr = &header;
530 #ifdef CONFIG_OF_FLAT_TREE
531         char    *of_flat_tree = NULL;
532 #endif
533
534         if ((s = getenv ("initrd_high")) != NULL) {
535                 /* a value of "no" or a similar string will act like 0,
536                  * turning the "load high" feature off. This is intentional.
537                  */
538                 initrd_high = simple_strtoul(s, NULL, 16);
539                 if (initrd_high == ~0)
540                         initrd_copy_to_ram = 0;
541         } else {        /* not set, no restrictions to load high */
542                 initrd_high = ~0;
543         }
544
545 #ifdef CONFIG_LOGBUFFER
546         kbd=gd->bd;
547         /* Prevent initrd from overwriting logbuffer */
548         if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD))
549                 initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD;
550         debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN);
551 #endif
552
553         /*
554          * Booting a (Linux) kernel image
555          *
556          * Allocate space for command line and board info - the
557          * address should be as high as possible within the reach of
558          * the kernel (see CFG_BOOTMAPSZ settings), but in unused
559          * memory, which means far enough below the current stack
560          * pointer.
561          */
562
563         asm( "mr %0,1": "=r"(sp) : );
564
565         debug ("## Current stack ends at 0x%08lX ", sp);
566
567         sp -= 2048;             /* just to be sure */
568         if (sp > CFG_BOOTMAPSZ)
569                 sp = CFG_BOOTMAPSZ;
570         sp &= ~0xF;
571
572         debug ("=> set upper limit to 0x%08lX\n", sp);
573
574         cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
575         kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF);
576
577         if ((s = getenv("bootargs")) == NULL)
578                 s = "";
579
580         strcpy (cmdline, s);
581
582         cmd_start    = (ulong)&cmdline[0];
583         cmd_end      = cmd_start + strlen(cmdline);
584
585         *kbd = *(gd->bd);
586
587 #ifdef  DEBUG
588         printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
589
590         do_bdinfo (NULL, 0, 0, NULL);
591 #endif
592
593         if ((s = getenv ("clocks_in_mhz")) != NULL) {
594                 /* convert all clock information to MHz */
595                 kbd->bi_intfreq /= 1000000L;
596                 kbd->bi_busfreq /= 1000000L;
597 #if defined(CONFIG_MPC8220)
598         kbd->bi_inpfreq /= 1000000L;
599         kbd->bi_pcifreq /= 1000000L;
600         kbd->bi_pevfreq /= 1000000L;
601         kbd->bi_flbfreq /= 1000000L;
602         kbd->bi_vcofreq /= 1000000L;
603 #endif
604 #if defined(CONFIG_CPM2)
605                 kbd->bi_cpmfreq /= 1000000L;
606                 kbd->bi_brgfreq /= 1000000L;
607                 kbd->bi_sccfreq /= 1000000L;
608                 kbd->bi_vco     /= 1000000L;
609 #endif
610 #if defined(CONFIG_MPC5xxx)
611                 kbd->bi_ipbfreq /= 1000000L;
612                 kbd->bi_pcifreq /= 1000000L;
613 #endif /* CONFIG_MPC5xxx */
614         }
615
616         kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong)) ntohl(hdr->ih_ep);
617
618         /*
619          * Check if there is an initrd image
620          */
621
622 #ifdef CONFIG_OF_FLAT_TREE
623         /* Look for a '-' which indicates to ignore the ramdisk argument */
624         if (argc >= 3 && strcmp(argv[2], "-") ==  0) {
625                         debug ("Skipping initrd\n");
626                         data = 0;
627                 }
628         else
629 #endif
630         if (argc >= 3) {
631                 debug ("Not skipping initrd\n");
632                 SHOW_BOOT_PROGRESS (9);
633
634                 addr = simple_strtoul(argv[2], NULL, 16);
635
636                 printf ("## Loading RAMDisk Image at %08lx ...\n", addr);
637
638                 /* Copy header so we can blank CRC field for re-calculation */
639                 memmove (&header, (char *)addr, sizeof(image_header_t));
640
641                 if (ntohl(hdr->ih_magic)  != IH_MAGIC) {
642                         puts ("Bad Magic Number\n");
643                         SHOW_BOOT_PROGRESS (-10);
644                         do_reset (cmdtp, flag, argc, argv);
645                 }
646
647                 data = (ulong)&header;
648                 len  = sizeof(image_header_t);
649
650                 checksum = ntohl(hdr->ih_hcrc);
651                 hdr->ih_hcrc = 0;
652
653                 if (crc32 (0, (uchar *)data, len) != checksum) {
654                         puts ("Bad Header Checksum\n");
655                         SHOW_BOOT_PROGRESS (-11);
656                         do_reset (cmdtp, flag, argc, argv);
657                 }
658
659                 SHOW_BOOT_PROGRESS (10);
660
661                 print_image_hdr (hdr);
662
663                 data = addr + sizeof(image_header_t);
664                 len  = ntohl(hdr->ih_size);
665
666                 if (verify) {
667                         ulong csum = 0;
668 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
669                         ulong cdata = data, edata = cdata + len;
670 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
671
672                         puts ("   Verifying Checksum ... ");
673
674 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
675
676                         while (cdata < edata) {
677                                 ulong chunk = edata - cdata;
678
679                                 if (chunk > CHUNKSZ)
680                                         chunk = CHUNKSZ;
681                                 csum = crc32 (csum, (uchar *)cdata, chunk);
682                                 cdata += chunk;
683
684                                 WATCHDOG_RESET();
685                         }
686 #else   /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
687                         csum = crc32 (0, (uchar *)data, len);
688 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
689
690                         if (csum != ntohl(hdr->ih_dcrc)) {
691                                 puts ("Bad Data CRC\n");
692                                 SHOW_BOOT_PROGRESS (-12);
693                                 do_reset (cmdtp, flag, argc, argv);
694                         }
695                         puts ("OK\n");
696                 }
697
698                 SHOW_BOOT_PROGRESS (11);
699
700                 if ((hdr->ih_os   != IH_OS_LINUX)       ||
701                     (hdr->ih_arch != IH_CPU_PPC)        ||
702                     (hdr->ih_type != IH_TYPE_RAMDISK)   ) {
703                         puts ("No Linux PPC Ramdisk Image\n");
704                         SHOW_BOOT_PROGRESS (-13);
705                         do_reset (cmdtp, flag, argc, argv);
706                 }
707
708                 /*
709                  * Now check if we have a multifile image
710                  */
711         } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) {
712                 u_long tail    = ntohl(len_ptr[0]) % 4;
713                 int i;
714
715                 SHOW_BOOT_PROGRESS (13);
716
717                 /* skip kernel length and terminator */
718                 data = (ulong)(&len_ptr[2]);
719                 /* skip any additional image length fields */
720                 for (i=1; len_ptr[i]; ++i)
721                         data += 4;
722                 /* add kernel length, and align */
723                 data += ntohl(len_ptr[0]);
724                 if (tail) {
725                         data += 4 - tail;
726                 }
727
728                 len   = ntohl(len_ptr[1]);
729
730         } else {
731                 /*
732                  * no initrd image
733                  */
734                 SHOW_BOOT_PROGRESS (14);
735
736                 len = data = 0;
737         }
738
739 #ifdef CONFIG_OF_FLAT_TREE
740         if(argc >= 3) { 
741                 of_flat_tree = (char *) simple_strtoul(argv[3], NULL, 16);
742                 hdr = (image_header_t *)of_flat_tree;
743                 
744                 if  (*(ulong *)of_flat_tree == OF_DT_HEADER) {
745 #ifndef CFG_NO_FLASH
746                         if (addr2info((ulong)of_flat_tree) != NULL) {
747                                 printf ("Cannot modify flat device tree stored in flash\n" \
748                                         "Copy to memory before using the bootm command\n");
749                                 return;
750                         }
751 #endif
752                 } else if (ntohl(hdr->ih_magic) == IH_MAGIC) {
753                         printf("## Flat Device Tree Image at %08lX\n", hdr);
754                         print_image_hdr(hdr);
755
756                         if ((ntohl(hdr->ih_load) <  ((unsigned long)hdr + ntohl(hdr->ih_size) + sizeof(hdr))) &&
757                            ((ntohl(hdr->ih_load) + ntohl(hdr->ih_size)) > (unsigned long)hdr)) {
758                                 printf ("ERROR: Load address overwrites Flat Device Tree uImage\n");
759                                 return;
760                         }
761                         
762                         printf("   Verifying Checksum ... ");
763                         memmove (&header, (char *)hdr, sizeof(image_header_t));
764                         checksum = ntohl(header.ih_hcrc);
765                         header.ih_hcrc = 0;
766
767                         if(checksum != crc32(0, (uchar *)&header, sizeof(image_header_t))) {
768                                 printf("ERROR: Flat Device Tree header checksum is invalid\n");
769                                 return;
770                         }
771
772                         checksum = ntohl(hdr->ih_dcrc);
773                         addr = (ulong)((uchar *)(hdr) + sizeof(image_header_t));
774                         len = ntohl(hdr->ih_size);
775
776                         if(checksum != crc32(0, (uchar *)addr, len)) {
777                                 printf("ERROR: Flat Device Tree checksum is invalid\n");
778                                 return;
779                         }
780                         printf("OK\n");
781
782                         if (ntohl(hdr->ih_type) != IH_TYPE_FLATDT) {
783                                 printf ("ERROR: uImage not Flat Device Tree type\n");
784                                 return;
785                         }
786                         if (ntohl(hdr->ih_comp) != IH_COMP_NONE) {
787                                 printf("ERROR: uImage is not uncompressed\n");
788                                 return;
789                         }
790                         if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
791                                 printf ("ERROR: uImage data is not a flat device tree\n");
792                                 return;
793                         }
794                                         
795                         memmove((void *)ntohl(hdr->ih_load), 
796                                 (void *)(of_flat_tree + sizeof(image_header_t)),
797                                 ntohl(hdr->ih_size));
798                         of_flat_tree = (char *)ntohl(hdr->ih_load);
799                 } else {
800                         printf ("Did not find a flat flat device tree at address %08lX\n", of_flat_tree);
801                         return;
802                 }
803                 printf ("   Booting using flat device tree at 0x%x\n",
804                                 of_flat_tree);
805         }
806 #endif
807         if (!data) {
808                 debug ("No initrd\n");
809         }
810
811         if (data) {
812             if (!initrd_copy_to_ram) {  /* zero-copy ramdisk support */
813                 initrd_start = data;
814                 initrd_end = initrd_start + len;
815             } else {
816                 initrd_start  = (ulong)kbd - len;
817                 initrd_start &= ~(4096 - 1);    /* align on page */
818
819                 if (initrd_high) {
820                         ulong nsp;
821
822                         /*
823                          * the inital ramdisk does not need to be within
824                          * CFG_BOOTMAPSZ as it is not accessed until after
825                          * the mm system is initialised.
826                          *
827                          * do the stack bottom calculation again and see if
828                          * the initrd will fit just below the monitor stack
829                          * bottom without overwriting the area allocated
830                          * above for command line args and board info.
831                          */
832                         asm( "mr %0,1": "=r"(nsp) : );
833                         nsp -= 2048;            /* just to be sure */
834                         nsp &= ~0xF;
835                         if (nsp > initrd_high)  /* limit as specified */
836                                 nsp = initrd_high;
837                         nsp -= len;
838                         nsp &= ~(4096 - 1);     /* align on page */
839                         if (nsp >= sp)
840                                 initrd_start = nsp;
841                 }
842
843                 SHOW_BOOT_PROGRESS (12);
844
845                 debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
846                         data, data + len - 1, len, len);
847
848                 initrd_end    = initrd_start + len;
849                 printf ("   Loading Ramdisk to %08lx, end %08lx ... ",
850                         initrd_start, initrd_end);
851 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
852                 {
853                         size_t l = len;
854                         void *to = (void *)initrd_start;
855                         void *from = (void *)data;
856
857                         while (l > 0) {
858                                 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
859                                 WATCHDOG_RESET();
860                                 memmove (to, from, tail);
861                                 to += tail;
862                                 from += tail;
863                                 l -= tail;
864                         }
865                 }
866 #else   /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
867                 memmove ((void *)initrd_start, (void *)data, len);
868 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
869                 puts ("OK\n");
870             }
871         } else {
872                 initrd_start = 0;
873                 initrd_end = 0;
874         }
875
876         debug ("## Transferring control to Linux (at address %08lx) ...\n",
877                 (ulong)kernel);
878
879         SHOW_BOOT_PROGRESS (15);
880
881 #ifndef CONFIG_OF_FLAT_TREE
882
883 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
884         unlock_ram_in_cache();
885 #endif
886
887         /*
888          * Linux Kernel Parameters:
889          *   r3: ptr to board info data
890          *   r4: initrd_start or 0 if no initrd
891          *   r5: initrd_end - unused if r4 is 0
892          *   r6: Start of command line string
893          *   r7: End   of command line string
894          */
895         (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
896
897 #else
898         ft_setup(of_flat_tree, kbd, initrd_start, initrd_end);
899         /* ft_dump_blob(of_flat_tree); */
900
901 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
902         unlock_ram_in_cache();
903 #endif
904         /*
905          * Linux Kernel Parameters:
906          *   r3: ptr to OF flat tree, followed by the board info data
907          *   r4: physical pointer to the kernel itself
908          *   r5: NULL
909          *   r6: NULL
910          *   r7: NULL
911          */
912         if (getenv("disable_of") != NULL)
913                 (*kernel) ((bd_t *)of_flat_tree, initrd_start, initrd_end,
914                         cmd_start, cmd_end);
915         else
916                 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
917
918 #endif
919 }
920 #endif /* CONFIG_PPC */
921
922 static void
923 do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
924                 int     argc, char *argv[],
925                 ulong   addr,
926                 ulong   *len_ptr,
927                 int     verify)
928 {
929         image_header_t *hdr = &header;
930
931         void    (*loader)(bd_t *, image_header_t *, char *, char *);
932         image_header_t *img_addr;
933         char     *consdev;
934         char     *cmdline;
935
936
937         /*
938          * Booting a (NetBSD) kernel image
939          *
940          * This process is pretty similar to a standalone application:
941          * The (first part of an multi-) image must be a stage-2 loader,
942          * which in turn is responsible for loading & invoking the actual
943          * kernel.  The only differences are the parameters being passed:
944          * besides the board info strucure, the loader expects a command
945          * line, the name of the console device, and (optionally) the
946          * address of the original image header.
947          */
948
949         img_addr = 0;
950         if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]))
951                 img_addr = (image_header_t *) addr;
952
953
954         consdev = "";
955 #if   defined (CONFIG_8xx_CONS_SMC1)
956         consdev = "smc1";
957 #elif defined (CONFIG_8xx_CONS_SMC2)
958         consdev = "smc2";
959 #elif defined (CONFIG_8xx_CONS_SCC2)
960         consdev = "scc2";
961 #elif defined (CONFIG_8xx_CONS_SCC3)
962         consdev = "scc3";
963 #endif
964
965         if (argc > 2) {
966                 ulong len;
967                 int   i;
968
969                 for (i=2, len=0 ; i<argc ; i+=1)
970                         len += strlen (argv[i]) + 1;
971                 cmdline = malloc (len);
972
973                 for (i=2, len=0 ; i<argc ; i+=1) {
974                         if (i > 2)
975                                 cmdline[len++] = ' ';
976                         strcpy (&cmdline[len], argv[i]);
977                         len += strlen (argv[i]);
978                 }
979         } else if ((cmdline = getenv("bootargs")) == NULL) {
980                 cmdline = "";
981         }
982
983         loader = (void (*)(bd_t *, image_header_t *, char *, char *)) ntohl(hdr->ih_ep);
984
985         printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
986                 (ulong)loader);
987
988         SHOW_BOOT_PROGRESS (15);
989
990         /*
991          * NetBSD Stage-2 Loader Parameters:
992          *   r3: ptr to board info data
993          *   r4: image address
994          *   r5: console device
995          *   r6: boot args string
996          */
997         (*loader) (gd->bd, img_addr, consdev, cmdline);
998 }
999
1000 #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1001
1002 /* Function that returns a character from the environment */
1003 extern uchar (*env_get_char)(int);
1004
1005 static void
1006 do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1007                 int     argc, char *argv[],
1008                 ulong   addr,
1009                 ulong   *len_ptr,
1010                 int     verify)
1011 {
1012         ulong top;
1013         char *s, *cmdline;
1014         char **fwenv, **ss;
1015         int i, j, nxt, len, envno, envsz;
1016         bd_t *kbd;
1017         void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
1018         image_header_t *hdr = &header;
1019
1020         /*
1021          * Booting an ARTOS kernel image + application
1022          */
1023
1024         /* this used to be the top of memory, but was wrong... */
1025 #ifdef CONFIG_PPC
1026         /* get stack pointer */
1027         asm volatile ("mr %0,1" : "=r"(top) );
1028 #endif
1029         debug ("## Current stack ends at 0x%08lX ", top);
1030
1031         top -= 2048;            /* just to be sure */
1032         if (top > CFG_BOOTMAPSZ)
1033                 top = CFG_BOOTMAPSZ;
1034         top &= ~0xF;
1035
1036         debug ("=> set upper limit to 0x%08lX\n", top);
1037
1038         /* first check the artos specific boot args, then the linux args*/
1039         if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL)
1040                 s = "";
1041
1042         /* get length of cmdline, and place it */
1043         len = strlen(s);
1044         top = (top - (len + 1)) & ~0xF;
1045         cmdline = (char *)top;
1046         debug ("## cmdline at 0x%08lX ", top);
1047         strcpy(cmdline, s);
1048
1049         /* copy bdinfo */
1050         top = (top - sizeof(bd_t)) & ~0xF;
1051         debug ("## bd at 0x%08lX ", top);
1052         kbd = (bd_t *)top;
1053         memcpy(kbd, gd->bd, sizeof(bd_t));
1054
1055         /* first find number of env entries, and their size */
1056         envno = 0;
1057         envsz = 0;
1058         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1059                 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1060                         ;
1061                 envno++;
1062                 envsz += (nxt - i) + 1; /* plus trailing zero */
1063         }
1064         envno++;        /* plus the terminating zero */
1065         debug ("## %u envvars total size %u ", envno, envsz);
1066
1067         top = (top - sizeof(char **)*envno) & ~0xF;
1068         fwenv = (char **)top;
1069         debug ("## fwenv at 0x%08lX ", top);
1070
1071         top = (top - envsz) & ~0xF;
1072         s = (char *)top;
1073         ss = fwenv;
1074
1075         /* now copy them */
1076         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1077                 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1078                         ;
1079                 *ss++ = s;
1080                 for (j = i; j < nxt; ++j)
1081                         *s++ = env_get_char(j);
1082                 *s++ = '\0';
1083         }
1084         *ss++ = NULL;   /* terminate */
1085
1086         entry = (void (*)(bd_t *, char *, char **, ulong))ntohl(hdr->ih_ep);
1087         (*entry)(kbd, cmdline, fwenv, top);
1088 }
1089 #endif
1090
1091
1092 #if (CONFIG_COMMANDS & CFG_CMD_BOOTD)
1093 int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1094 {
1095         int rcode = 0;
1096 #ifndef CFG_HUSH_PARSER
1097         if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1;
1098 #else
1099         if (parse_string_outer(getenv("bootcmd"),
1100                 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1;
1101 #endif
1102         return rcode;
1103 }
1104
1105 U_BOOT_CMD(
1106         boot,   1,      1,      do_bootd,
1107         "boot    - boot default, i.e., run 'bootcmd'\n",
1108         NULL
1109 );
1110
1111 /* keep old command name "bootd" for backward compatibility */
1112 U_BOOT_CMD(
1113         bootd, 1,       1,      do_bootd,
1114         "bootd   - boot default, i.e., run 'bootcmd'\n",
1115         NULL
1116 );
1117
1118 #endif
1119
1120 #if (CONFIG_COMMANDS & CFG_CMD_IMI)
1121 int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1122 {
1123         int     arg;
1124         ulong   addr;
1125         int     rcode=0;
1126
1127         if (argc < 2) {
1128                 return image_info (load_addr);
1129         }
1130
1131         for (arg=1; arg <argc; ++arg) {
1132                 addr = simple_strtoul(argv[arg], NULL, 16);
1133                 if (image_info (addr) != 0) rcode = 1;
1134         }
1135         return rcode;
1136 }
1137
1138 static int image_info (ulong addr)
1139 {
1140         ulong   data, len, checksum;
1141         image_header_t *hdr = &header;
1142
1143         printf ("\n## Checking Image at %08lx ...\n", addr);
1144
1145         /* Copy header so we can blank CRC field for re-calculation */
1146         memmove (&header, (char *)addr, sizeof(image_header_t));
1147
1148         if (ntohl(hdr->ih_magic) != IH_MAGIC) {
1149                 puts ("   Bad Magic Number\n");
1150                 return 1;
1151         }
1152
1153         data = (ulong)&header;
1154         len  = sizeof(image_header_t);
1155
1156         checksum = ntohl(hdr->ih_hcrc);
1157         hdr->ih_hcrc = 0;
1158
1159         if (crc32 (0, (uchar *)data, len) != checksum) {
1160                 puts ("   Bad Header Checksum\n");
1161                 return 1;
1162         }
1163
1164         /* for multi-file images we need the data part, too */
1165         print_image_hdr ((image_header_t *)addr);
1166
1167         data = addr + sizeof(image_header_t);
1168         len  = ntohl(hdr->ih_size);
1169
1170         puts ("   Verifying Checksum ... ");
1171         if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
1172                 puts ("   Bad Data CRC\n");
1173                 return 1;
1174         }
1175         puts ("OK\n");
1176         return 0;
1177 }
1178
1179 U_BOOT_CMD(
1180         iminfo, CFG_MAXARGS,    1,      do_iminfo,
1181         "iminfo  - print header information for application image\n",
1182         "addr [addr ...]\n"
1183         "    - print header information for application image starting at\n"
1184         "      address 'addr' in memory; this includes verification of the\n"
1185         "      image contents (magic number, header and payload checksums)\n"
1186 );
1187
1188 #endif  /* CFG_CMD_IMI */
1189
1190 #if (CONFIG_COMMANDS & CFG_CMD_IMLS)
1191 /*-----------------------------------------------------------------------
1192  * List all images found in flash.
1193  */
1194 int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1195 {
1196         flash_info_t *info;
1197         int i, j;
1198         image_header_t *hdr;
1199         ulong data, len, checksum;
1200
1201         for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) {
1202                 if (info->flash_id == FLASH_UNKNOWN)
1203                         goto next_bank;
1204                 for (j=0; j<info->sector_count; ++j) {
1205
1206                         if (!(hdr=(image_header_t *)info->start[j]) ||
1207                             (ntohl(hdr->ih_magic) != IH_MAGIC))
1208                                 goto next_sector;
1209
1210                         /* Copy header so we can blank CRC field for re-calculation */
1211                         memmove (&header, (char *)hdr, sizeof(image_header_t));
1212
1213                         checksum = ntohl(header.ih_hcrc);
1214                         header.ih_hcrc = 0;
1215
1216                         if (crc32 (0, (uchar *)&header, sizeof(image_header_t))
1217                             != checksum)
1218                                 goto next_sector;
1219
1220                         printf ("Image at %08lX:\n", (ulong)hdr);
1221                         print_image_hdr( hdr );
1222
1223                         data = (ulong)hdr + sizeof(image_header_t);
1224                         len  = ntohl(hdr->ih_size);
1225
1226                         puts ("   Verifying Checksum ... ");
1227                         if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
1228                                 puts ("   Bad Data CRC\n");
1229                         }
1230                         puts ("OK\n");
1231 next_sector:            ;
1232                 }
1233 next_bank:      ;
1234         }
1235
1236         return (0);
1237 }
1238
1239 U_BOOT_CMD(
1240         imls,   1,              1,      do_imls,
1241         "imls    - list all images found in flash\n",
1242         "\n"
1243         "    - Prints information about all images found at sector\n"
1244         "      boundaries in flash.\n"
1245 );
1246 #endif  /* CFG_CMD_IMLS */
1247
1248 void
1249 print_image_hdr (image_header_t *hdr)
1250 {
1251 #if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1252         time_t timestamp = (time_t)ntohl(hdr->ih_time);
1253         struct rtc_time tm;
1254 #endif
1255
1256         printf ("   Image Name:   %.*s\n", IH_NMLEN, hdr->ih_name);
1257 #if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1258         to_tm (timestamp, &tm);
1259         printf ("   Created:      %4d-%02d-%02d  %2d:%02d:%02d UTC\n",
1260                 tm.tm_year, tm.tm_mon, tm.tm_mday,
1261                 tm.tm_hour, tm.tm_min, tm.tm_sec);
1262 #endif  /* CFG_CMD_DATE, CONFIG_TIMESTAMP */
1263         puts ("   Image Type:   "); print_type(hdr);
1264         printf ("\n   Data Size:    %d Bytes = ", ntohl(hdr->ih_size));
1265         print_size (ntohl(hdr->ih_size), "\n");
1266         printf ("   Load Address: %08x\n"
1267                 "   Entry Point:  %08x\n",
1268                  ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
1269
1270         if (hdr->ih_type == IH_TYPE_MULTI) {
1271                 int i;
1272                 ulong len;
1273                 ulong *len_ptr = (ulong *)((ulong)hdr + sizeof(image_header_t));
1274
1275                 puts ("   Contents:\n");
1276                 for (i=0; (len = ntohl(*len_ptr)); ++i, ++len_ptr) {
1277                         printf ("   Image %d: %8ld Bytes = ", i, len);
1278                         print_size (len, "\n");
1279                 }
1280         }
1281 }
1282
1283
1284 static void
1285 print_type (image_header_t *hdr)
1286 {
1287         char *os, *arch, *type, *comp;
1288
1289         switch (hdr->ih_os) {
1290         case IH_OS_INVALID:     os = "Invalid OS";              break;
1291         case IH_OS_NETBSD:      os = "NetBSD";                  break;
1292         case IH_OS_LINUX:       os = "Linux";                   break;
1293         case IH_OS_VXWORKS:     os = "VxWorks";                 break;
1294         case IH_OS_QNX:         os = "QNX";                     break;
1295         case IH_OS_U_BOOT:      os = "U-Boot";                  break;
1296         case IH_OS_RTEMS:       os = "RTEMS";                   break;
1297 #ifdef CONFIG_ARTOS
1298         case IH_OS_ARTOS:       os = "ARTOS";                   break;
1299 #endif
1300 #ifdef CONFIG_LYNXKDI
1301         case IH_OS_LYNXOS:      os = "LynxOS";                  break;
1302 #endif
1303         default:                os = "Unknown OS";              break;
1304         }
1305
1306         switch (hdr->ih_arch) {
1307         case IH_CPU_INVALID:    arch = "Invalid CPU";           break;
1308         case IH_CPU_ALPHA:      arch = "Alpha";                 break;
1309         case IH_CPU_ARM:        arch = "ARM";                   break;
1310         case IH_CPU_I386:       arch = "Intel x86";             break;
1311         case IH_CPU_IA64:       arch = "IA64";                  break;
1312         case IH_CPU_MIPS:       arch = "MIPS";                  break;
1313         case IH_CPU_MIPS64:     arch = "MIPS 64 Bit";           break;
1314         case IH_CPU_PPC:        arch = "PowerPC";               break;
1315         case IH_CPU_S390:       arch = "IBM S390";              break;
1316         case IH_CPU_SH:         arch = "SuperH";                break;
1317         case IH_CPU_SPARC:      arch = "SPARC";                 break;
1318         case IH_CPU_SPARC64:    arch = "SPARC 64 Bit";          break;
1319         case IH_CPU_M68K:       arch = "M68K";                  break;
1320         case IH_CPU_MICROBLAZE: arch = "Microblaze";            break;
1321         case IH_CPU_NIOS:       arch = "Nios";                  break;
1322         case IH_CPU_NIOS2:      arch = "Nios-II";               break;
1323         default:                arch = "Unknown Architecture";  break;
1324         }
1325
1326         switch (hdr->ih_type) {
1327         case IH_TYPE_INVALID:   type = "Invalid Image";         break;
1328         case IH_TYPE_STANDALONE:type = "Standalone Program";    break;
1329         case IH_TYPE_KERNEL:    type = "Kernel Image";          break;
1330         case IH_TYPE_RAMDISK:   type = "RAMDisk Image";         break;
1331         case IH_TYPE_MULTI:     type = "Multi-File Image";      break;
1332         case IH_TYPE_FIRMWARE:  type = "Firmware";              break;
1333         case IH_TYPE_SCRIPT:    type = "Script";                break;
1334         case IH_TYPE_FLATDT:    type = "Flat Device Tree";      break;
1335         default:                type = "Unknown Image";         break;
1336         }
1337
1338         switch (hdr->ih_comp) {
1339         case IH_COMP_NONE:      comp = "uncompressed";          break;
1340         case IH_COMP_GZIP:      comp = "gzip compressed";       break;
1341         case IH_COMP_BZIP2:     comp = "bzip2 compressed";      break;
1342         default:                comp = "unknown compression";   break;
1343         }
1344
1345         printf ("%s %s %s (%s)", arch, os, type, comp);
1346 }
1347
1348 #define ZALLOC_ALIGNMENT        16
1349
1350 static void *zalloc(void *x, unsigned items, unsigned size)
1351 {
1352         void *p;
1353
1354         size *= items;
1355         size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
1356
1357         p = malloc (size);
1358
1359         return (p);
1360 }
1361
1362 static void zfree(void *x, void *addr, unsigned nb)
1363 {
1364         free (addr);
1365 }
1366
1367 #define HEAD_CRC        2
1368 #define EXTRA_FIELD     4
1369 #define ORIG_NAME       8
1370 #define COMMENT         0x10
1371 #define RESERVED        0xe0
1372
1373 #define DEFLATED        8
1374
1375 int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
1376 {
1377         z_stream s;
1378         int r, i, flags;
1379
1380         /* skip header */
1381         i = 10;
1382         flags = src[3];
1383         if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
1384                 puts ("Error: Bad gzipped data\n");
1385                 return (-1);
1386         }
1387         if ((flags & EXTRA_FIELD) != 0)
1388                 i = 12 + src[10] + (src[11] << 8);
1389         if ((flags & ORIG_NAME) != 0)
1390                 while (src[i++] != 0)
1391                         ;
1392         if ((flags & COMMENT) != 0)
1393                 while (src[i++] != 0)
1394                         ;
1395         if ((flags & HEAD_CRC) != 0)
1396                 i += 2;
1397         if (i >= *lenp) {
1398                 puts ("Error: gunzip out of data in header\n");
1399                 return (-1);
1400         }
1401
1402         s.zalloc = zalloc;
1403         s.zfree = zfree;
1404 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
1405         s.outcb = (cb_func)WATCHDOG_RESET;
1406 #else
1407         s.outcb = Z_NULL;
1408 #endif  /* CONFIG_HW_WATCHDOG */
1409
1410         r = inflateInit2(&s, -MAX_WBITS);
1411         if (r != Z_OK) {
1412                 printf ("Error: inflateInit2() returned %d\n", r);
1413                 return (-1);
1414         }
1415         s.next_in = src + i;
1416         s.avail_in = *lenp - i;
1417         s.next_out = dst;
1418         s.avail_out = dstlen;
1419         r = inflate(&s, Z_FINISH);
1420         if (r != Z_OK && r != Z_STREAM_END) {
1421                 printf ("Error: inflate() returned %d\n", r);
1422                 return (-1);
1423         }
1424         *lenp = s.next_out - (unsigned char *) dst;
1425         inflateEnd(&s);
1426
1427         return (0);
1428 }
1429
1430 #ifdef CONFIG_BZIP2
1431 void bz_internal_error(int errcode)
1432 {
1433         printf ("BZIP2 internal error %d\n", errcode);
1434 }
1435 #endif /* CONFIG_BZIP2 */
1436
1437 static void
1438 do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1439                 ulong addr, ulong *len_ptr, int verify)
1440 {
1441         image_header_t *hdr = &header;
1442         void    (*entry_point)(bd_t *);
1443
1444         entry_point = (void (*)(bd_t *)) ntohl(hdr->ih_ep);
1445
1446         printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1447                 (ulong)entry_point);
1448
1449         SHOW_BOOT_PROGRESS (15);
1450
1451         /*
1452          * RTEMS Parameters:
1453          *   r3: ptr to board info data
1454          */
1455
1456         (*entry_point ) ( gd->bd );
1457 }
1458
1459 #if (CONFIG_COMMANDS & CFG_CMD_ELF)
1460 static void
1461 do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1462                   ulong addr, ulong *len_ptr, int verify)
1463 {
1464         image_header_t *hdr = &header;
1465         char str[80];
1466
1467         sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
1468         setenv("loadaddr", str);
1469         do_bootvx(cmdtp, 0, 0, NULL);
1470 }
1471
1472 static void
1473 do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1474                  ulong addr, ulong *len_ptr, int verify)
1475 {
1476         image_header_t *hdr = &header;
1477         char *local_args[2];
1478         char str[16];
1479
1480         sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
1481         local_args[0] = argv[0];
1482         local_args[1] = str;    /* and provide it via the arguments */
1483         do_bootelf(cmdtp, 0, 2, local_args);
1484 }
1485 #endif /* CFG_CMD_ELF */
1486
1487 #ifdef CONFIG_LYNXKDI
1488 static void
1489 do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
1490                  int    argc, char *argv[],
1491                  ulong  addr,
1492                  ulong  *len_ptr,
1493                  int    verify)
1494 {
1495         lynxkdi_boot( &header );
1496 }
1497
1498 #endif /* CONFIG_LYNXKDI */