Coding style cleanup
[platform/kernel/u-boot.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 #elif defined(__avr32__)
264         if (hdr->ih_arch != IH_CPU_AVR32)
265 #else
266 # error Unknown CPU type
267 #endif
268         {
269                 printf ("Unsupported Architecture 0x%x\n", hdr->ih_arch);
270                 SHOW_BOOT_PROGRESS (-4);
271                 return 1;
272         }
273         SHOW_BOOT_PROGRESS (5);
274
275         switch (hdr->ih_type) {
276         case IH_TYPE_STANDALONE:
277                 name = "Standalone Application";
278                 /* A second argument overwrites the load address */
279                 if (argc > 2) {
280                         hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
281                 }
282                 break;
283         case IH_TYPE_KERNEL:
284                 name = "Kernel Image";
285                 break;
286         case IH_TYPE_MULTI:
287                 name = "Multi-File Image";
288                 len  = ntohl(len_ptr[0]);
289                 /* OS kernel is always the first image */
290                 data += 8; /* kernel_len + terminator */
291                 for (i=1; len_ptr[i]; ++i)
292                         data += 4;
293                 break;
294         default: printf ("Wrong Image Type for %s command\n", cmdtp->name);
295                 SHOW_BOOT_PROGRESS (-5);
296                 return 1;
297         }
298         SHOW_BOOT_PROGRESS (6);
299
300         /*
301          * We have reached the point of no return: we are going to
302          * overwrite all exception vector code, so we cannot easily
303          * recover from any failures any more...
304          */
305
306         iflag = disable_interrupts();
307
308 #ifdef CONFIG_AMIGAONEG3SE
309         /*
310          * We've possible left the caches enabled during
311          * bios emulation, so turn them off again
312          */
313         icache_disable();
314         invalidate_l1_instruction_cache();
315         flush_data_cache();
316         dcache_disable();
317 #endif
318
319         switch (hdr->ih_comp) {
320         case IH_COMP_NONE:
321                 if(ntohl(hdr->ih_load) == addr) {
322                         printf ("   XIP %s ... ", name);
323                 } else {
324 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
325                         size_t l = len;
326                         void *to = (void *)ntohl(hdr->ih_load);
327                         void *from = (void *)data;
328
329                         printf ("   Loading %s ... ", name);
330
331                         while (l > 0) {
332                                 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
333                                 WATCHDOG_RESET();
334                                 memmove (to, from, tail);
335                                 to += tail;
336                                 from += tail;
337                                 l -= tail;
338                         }
339 #else   /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
340                         memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len);
341 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
342                 }
343                 break;
344         case IH_COMP_GZIP:
345                 printf ("   Uncompressing %s ... ", name);
346                 if (gunzip ((void *)ntohl(hdr->ih_load), unc_len,
347                             (uchar *)data, &len) != 0) {
348                         puts ("GUNZIP ERROR - must RESET board to recover\n");
349                         SHOW_BOOT_PROGRESS (-6);
350                         do_reset (cmdtp, flag, argc, argv);
351                 }
352                 break;
353 #ifdef CONFIG_BZIP2
354         case IH_COMP_BZIP2:
355                 printf ("   Uncompressing %s ... ", name);
356                 /*
357                  * If we've got less than 4 MB of malloc() space,
358                  * use slower decompression algorithm which requires
359                  * at most 2300 KB of memory.
360                  */
361                 i = BZ2_bzBuffToBuffDecompress ((char*)ntohl(hdr->ih_load),
362                                                 &unc_len, (char *)data, len,
363                                                 CFG_MALLOC_LEN < (4096 * 1024), 0);
364                 if (i != BZ_OK) {
365                         printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
366                         SHOW_BOOT_PROGRESS (-6);
367                         udelay(100000);
368                         do_reset (cmdtp, flag, argc, argv);
369                 }
370                 break;
371 #endif /* CONFIG_BZIP2 */
372         default:
373                 if (iflag)
374                         enable_interrupts();
375                 printf ("Unimplemented compression type %d\n", hdr->ih_comp);
376                 SHOW_BOOT_PROGRESS (-7);
377                 return 1;
378         }
379         puts ("OK\n");
380         SHOW_BOOT_PROGRESS (7);
381
382         switch (hdr->ih_type) {
383         case IH_TYPE_STANDALONE:
384                 if (iflag)
385                         enable_interrupts();
386
387                 /* load (and uncompress), but don't start if "autostart"
388                  * is set to "no"
389                  */
390                 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) {
391                         char buf[32];
392                         sprintf(buf, "%lX", len);
393                         setenv("filesize", buf);
394                         return 0;
395                 }
396                 appl = (int (*)(int, char *[]))ntohl(hdr->ih_ep);
397                 (*appl)(argc-1, &argv[1]);
398                 return 0;
399         case IH_TYPE_KERNEL:
400         case IH_TYPE_MULTI:
401                 /* handled below */
402                 break;
403         default:
404                 if (iflag)
405                         enable_interrupts();
406                 printf ("Can't boot image type %d\n", hdr->ih_type);
407                 SHOW_BOOT_PROGRESS (-8);
408                 return 1;
409         }
410         SHOW_BOOT_PROGRESS (8);
411
412         switch (hdr->ih_os) {
413         default:                        /* handled by (original) Linux case */
414         case IH_OS_LINUX:
415 #ifdef CONFIG_SILENT_CONSOLE
416             fixup_silent_linux();
417 #endif
418             do_bootm_linux  (cmdtp, flag, argc, argv,
419                              addr, len_ptr, verify);
420             break;
421         case IH_OS_NETBSD:
422             do_bootm_netbsd (cmdtp, flag, argc, argv,
423                              addr, len_ptr, verify);
424             break;
425
426 #ifdef CONFIG_LYNXKDI
427         case IH_OS_LYNXOS:
428             do_bootm_lynxkdi (cmdtp, flag, argc, argv,
429                              addr, len_ptr, verify);
430             break;
431 #endif
432
433         case IH_OS_RTEMS:
434             do_bootm_rtems (cmdtp, flag, argc, argv,
435                              addr, len_ptr, verify);
436             break;
437
438 #if (CONFIG_COMMANDS & CFG_CMD_ELF)
439         case IH_OS_VXWORKS:
440             do_bootm_vxworks (cmdtp, flag, argc, argv,
441                               addr, len_ptr, verify);
442             break;
443         case IH_OS_QNX:
444             do_bootm_qnxelf (cmdtp, flag, argc, argv,
445                               addr, len_ptr, verify);
446             break;
447 #endif /* CFG_CMD_ELF */
448 #ifdef CONFIG_ARTOS
449         case IH_OS_ARTOS:
450             do_bootm_artos  (cmdtp, flag, argc, argv,
451                              addr, len_ptr, verify);
452             break;
453 #endif
454         }
455
456         SHOW_BOOT_PROGRESS (-9);
457 #ifdef DEBUG
458         puts ("\n## Control returned to monitor - resetting...\n");
459         do_reset (cmdtp, flag, argc, argv);
460 #endif
461         return 1;
462 }
463
464 U_BOOT_CMD(
465         bootm,  CFG_MAXARGS,    1,      do_bootm,
466         "bootm   - boot application image from memory\n",
467         "[addr [arg ...]]\n    - boot application image stored in memory\n"
468         "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
469         "\t'arg' can be the address of an initrd image\n"
470 );
471
472 #ifdef CONFIG_SILENT_CONSOLE
473 static void
474 fixup_silent_linux ()
475 {
476         char buf[256], *start, *end;
477         char *cmdline = getenv ("bootargs");
478
479         /* Only fix cmdline when requested */
480         if (!(gd->flags & GD_FLG_SILENT))
481                 return;
482
483         debug ("before silent fix-up: %s\n", cmdline);
484         if (cmdline) {
485                 if ((start = strstr (cmdline, "console=")) != NULL) {
486                         end = strchr (start, ' ');
487                         strncpy (buf, cmdline, (start - cmdline + 8));
488                         if (end)
489                                 strcpy (buf + (start - cmdline + 8), end);
490                         else
491                                 buf[start - cmdline + 8] = '\0';
492                 } else {
493                         strcpy (buf, cmdline);
494                         strcat (buf, " console=");
495                 }
496         } else {
497                 strcpy (buf, "console=");
498         }
499
500         setenv ("bootargs", buf);
501         debug ("after silent fix-up: %s\n", buf);
502 }
503 #endif /* CONFIG_SILENT_CONSOLE */
504
505 #ifdef CONFIG_OF_FLAT_TREE
506 extern const unsigned char oftree_dtb[];
507 extern const unsigned int oftree_dtb_len;
508 #endif
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;
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         if (argc >= 3) {
622                 SHOW_BOOT_PROGRESS (9);
623
624                 addr = simple_strtoul(argv[2], NULL, 16);
625
626                 printf ("## Loading RAMDisk Image at %08lx ...\n", addr);
627
628                 /* Copy header so we can blank CRC field for re-calculation */
629                 memmove (&header, (char *)addr, sizeof(image_header_t));
630
631                 if (ntohl(hdr->ih_magic)  != IH_MAGIC) {
632                         puts ("Bad Magic Number\n");
633                         SHOW_BOOT_PROGRESS (-10);
634                         do_reset (cmdtp, flag, argc, argv);
635                 }
636
637                 data = (ulong)&header;
638                 len  = sizeof(image_header_t);
639
640                 checksum = ntohl(hdr->ih_hcrc);
641                 hdr->ih_hcrc = 0;
642
643                 if (crc32 (0, (uchar *)data, len) != checksum) {
644                         puts ("Bad Header Checksum\n");
645                         SHOW_BOOT_PROGRESS (-11);
646                         do_reset (cmdtp, flag, argc, argv);
647                 }
648
649                 SHOW_BOOT_PROGRESS (10);
650
651                 print_image_hdr (hdr);
652
653                 data = addr + sizeof(image_header_t);
654                 len  = ntohl(hdr->ih_size);
655
656                 if (verify) {
657                         ulong csum = 0;
658 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
659                         ulong cdata = data, edata = cdata + len;
660 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
661
662                         puts ("   Verifying Checksum ... ");
663
664 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
665
666                         while (cdata < edata) {
667                                 ulong chunk = edata - cdata;
668
669                                 if (chunk > CHUNKSZ)
670                                         chunk = CHUNKSZ;
671                                 csum = crc32 (csum, (uchar *)cdata, chunk);
672                                 cdata += chunk;
673
674                                 WATCHDOG_RESET();
675                         }
676 #else   /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
677                         csum = crc32 (0, (uchar *)data, len);
678 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
679
680                         if (csum != ntohl(hdr->ih_dcrc)) {
681                                 puts ("Bad Data CRC\n");
682                                 SHOW_BOOT_PROGRESS (-12);
683                                 do_reset (cmdtp, flag, argc, argv);
684                         }
685                         puts ("OK\n");
686                 }
687
688                 SHOW_BOOT_PROGRESS (11);
689
690                 if ((hdr->ih_os   != IH_OS_LINUX)       ||
691                     (hdr->ih_arch != IH_CPU_PPC)        ||
692                     (hdr->ih_type != IH_TYPE_RAMDISK)   ) {
693                         puts ("No Linux PPC Ramdisk Image\n");
694                         SHOW_BOOT_PROGRESS (-13);
695                         do_reset (cmdtp, flag, argc, argv);
696                 }
697
698                 /*
699                  * Now check if we have a multifile image
700                  */
701         } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) {
702                 u_long tail    = ntohl(len_ptr[0]) % 4;
703                 int i;
704
705                 SHOW_BOOT_PROGRESS (13);
706
707                 /* skip kernel length and terminator */
708                 data = (ulong)(&len_ptr[2]);
709                 /* skip any additional image length fields */
710                 for (i=1; len_ptr[i]; ++i)
711                         data += 4;
712                 /* add kernel length, and align */
713                 data += ntohl(len_ptr[0]);
714                 if (tail) {
715                         data += 4 - tail;
716                 }
717
718                 len   = ntohl(len_ptr[1]);
719
720         } else {
721                 /*
722                  * no initrd image
723                  */
724                 SHOW_BOOT_PROGRESS (14);
725
726                 len = data = 0;
727         }
728
729         if (!data) {
730                 debug ("No initrd\n");
731         }
732
733         if (data) {
734             if (!initrd_copy_to_ram) {  /* zero-copy ramdisk support */
735                 initrd_start = data;
736                 initrd_end = initrd_start + len;
737             } else {
738                 initrd_start  = (ulong)kbd - len;
739                 initrd_start &= ~(4096 - 1);    /* align on page */
740
741                 if (initrd_high) {
742                         ulong nsp;
743
744                         /*
745                          * the inital ramdisk does not need to be within
746                          * CFG_BOOTMAPSZ as it is not accessed until after
747                          * the mm system is initialised.
748                          *
749                          * do the stack bottom calculation again and see if
750                          * the initrd will fit just below the monitor stack
751                          * bottom without overwriting the area allocated
752                          * above for command line args and board info.
753                          */
754                         asm( "mr %0,1": "=r"(nsp) : );
755                         nsp -= 2048;            /* just to be sure */
756                         nsp &= ~0xF;
757                         if (nsp > initrd_high)  /* limit as specified */
758                                 nsp = initrd_high;
759                         nsp -= len;
760                         nsp &= ~(4096 - 1);     /* align on page */
761                         if (nsp >= sp)
762                                 initrd_start = nsp;
763                 }
764
765                 SHOW_BOOT_PROGRESS (12);
766
767                 debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
768                         data, data + len - 1, len, len);
769
770                 initrd_end    = initrd_start + len;
771                 printf ("   Loading Ramdisk to %08lx, end %08lx ... ",
772                         initrd_start, initrd_end);
773 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
774                 {
775                         size_t l = len;
776                         void *to = (void *)initrd_start;
777                         void *from = (void *)data;
778
779                         while (l > 0) {
780                                 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
781                                 WATCHDOG_RESET();
782                                 memmove (to, from, tail);
783                                 to += tail;
784                                 from += tail;
785                                 l -= tail;
786                         }
787                 }
788 #else   /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
789                 memmove ((void *)initrd_start, (void *)data, len);
790 #endif  /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
791                 puts ("OK\n");
792             }
793         } else {
794                 initrd_start = 0;
795                 initrd_end = 0;
796         }
797
798 #ifdef CONFIG_OF_FLAT_TREE
799         if (initrd_start == 0)
800                 of_flat_tree = (char *)(((ulong)kbd - OF_FLAT_TREE_MAX_SIZE -
801                                         sizeof(bd_t)) & ~0xF);
802         else
803                 of_flat_tree = (char *)((initrd_start - OF_FLAT_TREE_MAX_SIZE -
804                                         sizeof(bd_t)) & ~0xF);
805 #endif
806
807         debug ("## Transferring control to Linux (at address %08lx) ...\n",
808                 (ulong)kernel);
809
810         SHOW_BOOT_PROGRESS (15);
811
812 #ifndef CONFIG_OF_FLAT_TREE
813
814 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
815         unlock_ram_in_cache();
816 #endif
817
818         /*
819          * Linux Kernel Parameters:
820          *   r3: ptr to board info data
821          *   r4: initrd_start or 0 if no initrd
822          *   r5: initrd_end - unused if r4 is 0
823          *   r6: Start of command line string
824          *   r7: End   of command line string
825          */
826         (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
827
828 #else
829         ft_setup(of_flat_tree, OF_FLAT_TREE_MAX_SIZE, kbd, initrd_start, initrd_end);
830         /* ft_dump_blob(of_flat_tree); */
831
832 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
833         unlock_ram_in_cache();
834 #endif
835         /*
836          * Linux Kernel Parameters:
837          *   r3: ptr to OF flat tree, followed by the board info data
838          *   r4: physical pointer to the kernel itself
839          *   r5: NULL
840          *   r6: NULL
841          *   r7: NULL
842          */
843         if (getenv("disable_of") != NULL)
844                 (*kernel) ((bd_t *)of_flat_tree, initrd_start, initrd_end,
845                         cmd_start, cmd_end);
846         else
847                 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
848
849 #endif
850 }
851 #endif /* CONFIG_PPC */
852
853 static void
854 do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
855                 int     argc, char *argv[],
856                 ulong   addr,
857                 ulong   *len_ptr,
858                 int     verify)
859 {
860         image_header_t *hdr = &header;
861
862         void    (*loader)(bd_t *, image_header_t *, char *, char *);
863         image_header_t *img_addr;
864         char     *consdev;
865         char     *cmdline;
866
867
868         /*
869          * Booting a (NetBSD) kernel image
870          *
871          * This process is pretty similar to a standalone application:
872          * The (first part of an multi-) image must be a stage-2 loader,
873          * which in turn is responsible for loading & invoking the actual
874          * kernel.  The only differences are the parameters being passed:
875          * besides the board info strucure, the loader expects a command
876          * line, the name of the console device, and (optionally) the
877          * address of the original image header.
878          */
879
880         img_addr = 0;
881         if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]))
882                 img_addr = (image_header_t *) addr;
883
884
885         consdev = "";
886 #if   defined (CONFIG_8xx_CONS_SMC1)
887         consdev = "smc1";
888 #elif defined (CONFIG_8xx_CONS_SMC2)
889         consdev = "smc2";
890 #elif defined (CONFIG_8xx_CONS_SCC2)
891         consdev = "scc2";
892 #elif defined (CONFIG_8xx_CONS_SCC3)
893         consdev = "scc3";
894 #endif
895
896         if (argc > 2) {
897                 ulong len;
898                 int   i;
899
900                 for (i=2, len=0 ; i<argc ; i+=1)
901                         len += strlen (argv[i]) + 1;
902                 cmdline = malloc (len);
903
904                 for (i=2, len=0 ; i<argc ; i+=1) {
905                         if (i > 2)
906                                 cmdline[len++] = ' ';
907                         strcpy (&cmdline[len], argv[i]);
908                         len += strlen (argv[i]);
909                 }
910         } else if ((cmdline = getenv("bootargs")) == NULL) {
911                 cmdline = "";
912         }
913
914         loader = (void (*)(bd_t *, image_header_t *, char *, char *)) ntohl(hdr->ih_ep);
915
916         printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
917                 (ulong)loader);
918
919         SHOW_BOOT_PROGRESS (15);
920
921         /*
922          * NetBSD Stage-2 Loader Parameters:
923          *   r3: ptr to board info data
924          *   r4: image address
925          *   r5: console device
926          *   r6: boot args string
927          */
928         (*loader) (gd->bd, img_addr, consdev, cmdline);
929 }
930
931 #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
932
933 /* Function that returns a character from the environment */
934 extern uchar (*env_get_char)(int);
935
936 static void
937 do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
938                 int     argc, char *argv[],
939                 ulong   addr,
940                 ulong   *len_ptr,
941                 int     verify)
942 {
943         ulong top;
944         char *s, *cmdline;
945         char **fwenv, **ss;
946         int i, j, nxt, len, envno, envsz;
947         bd_t *kbd;
948         void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
949         image_header_t *hdr = &header;
950
951         /*
952          * Booting an ARTOS kernel image + application
953          */
954
955         /* this used to be the top of memory, but was wrong... */
956 #ifdef CONFIG_PPC
957         /* get stack pointer */
958         asm volatile ("mr %0,1" : "=r"(top) );
959 #endif
960         debug ("## Current stack ends at 0x%08lX ", top);
961
962         top -= 2048;            /* just to be sure */
963         if (top > CFG_BOOTMAPSZ)
964                 top = CFG_BOOTMAPSZ;
965         top &= ~0xF;
966
967         debug ("=> set upper limit to 0x%08lX\n", top);
968
969         /* first check the artos specific boot args, then the linux args*/
970         if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL)
971                 s = "";
972
973         /* get length of cmdline, and place it */
974         len = strlen(s);
975         top = (top - (len + 1)) & ~0xF;
976         cmdline = (char *)top;
977         debug ("## cmdline at 0x%08lX ", top);
978         strcpy(cmdline, s);
979
980         /* copy bdinfo */
981         top = (top - sizeof(bd_t)) & ~0xF;
982         debug ("## bd at 0x%08lX ", top);
983         kbd = (bd_t *)top;
984         memcpy(kbd, gd->bd, sizeof(bd_t));
985
986         /* first find number of env entries, and their size */
987         envno = 0;
988         envsz = 0;
989         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
990                 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
991                         ;
992                 envno++;
993                 envsz += (nxt - i) + 1; /* plus trailing zero */
994         }
995         envno++;        /* plus the terminating zero */
996         debug ("## %u envvars total size %u ", envno, envsz);
997
998         top = (top - sizeof(char **)*envno) & ~0xF;
999         fwenv = (char **)top;
1000         debug ("## fwenv at 0x%08lX ", top);
1001
1002         top = (top - envsz) & ~0xF;
1003         s = (char *)top;
1004         ss = fwenv;
1005
1006         /* now copy them */
1007         for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1008                 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1009                         ;
1010                 *ss++ = s;
1011                 for (j = i; j < nxt; ++j)
1012                         *s++ = env_get_char(j);
1013                 *s++ = '\0';
1014         }
1015         *ss++ = NULL;   /* terminate */
1016
1017         entry = (void (*)(bd_t *, char *, char **, ulong))ntohl(hdr->ih_ep);
1018         (*entry)(kbd, cmdline, fwenv, top);
1019 }
1020 #endif
1021
1022
1023 #if (CONFIG_COMMANDS & CFG_CMD_BOOTD)
1024 int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1025 {
1026         int rcode = 0;
1027 #ifndef CFG_HUSH_PARSER
1028         if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1;
1029 #else
1030         if (parse_string_outer(getenv("bootcmd"),
1031                 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1;
1032 #endif
1033         return rcode;
1034 }
1035
1036 U_BOOT_CMD(
1037         boot,   1,      1,      do_bootd,
1038         "boot    - boot default, i.e., run 'bootcmd'\n",
1039         NULL
1040 );
1041
1042 /* keep old command name "bootd" for backward compatibility */
1043 U_BOOT_CMD(
1044         bootd, 1,       1,      do_bootd,
1045         "bootd   - boot default, i.e., run 'bootcmd'\n",
1046         NULL
1047 );
1048
1049 #endif
1050
1051 #if (CONFIG_COMMANDS & CFG_CMD_IMI)
1052 int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1053 {
1054         int     arg;
1055         ulong   addr;
1056         int     rcode=0;
1057
1058         if (argc < 2) {
1059                 return image_info (load_addr);
1060         }
1061
1062         for (arg=1; arg <argc; ++arg) {
1063                 addr = simple_strtoul(argv[arg], NULL, 16);
1064                 if (image_info (addr) != 0) rcode = 1;
1065         }
1066         return rcode;
1067 }
1068
1069 static int image_info (ulong addr)
1070 {
1071         ulong   data, len, checksum;
1072         image_header_t *hdr = &header;
1073
1074         printf ("\n## Checking Image at %08lx ...\n", addr);
1075
1076         /* Copy header so we can blank CRC field for re-calculation */
1077         memmove (&header, (char *)addr, sizeof(image_header_t));
1078
1079         if (ntohl(hdr->ih_magic) != IH_MAGIC) {
1080                 puts ("   Bad Magic Number\n");
1081                 return 1;
1082         }
1083
1084         data = (ulong)&header;
1085         len  = sizeof(image_header_t);
1086
1087         checksum = ntohl(hdr->ih_hcrc);
1088         hdr->ih_hcrc = 0;
1089
1090         if (crc32 (0, (uchar *)data, len) != checksum) {
1091                 puts ("   Bad Header Checksum\n");
1092                 return 1;
1093         }
1094
1095         /* for multi-file images we need the data part, too */
1096         print_image_hdr ((image_header_t *)addr);
1097
1098         data = addr + sizeof(image_header_t);
1099         len  = ntohl(hdr->ih_size);
1100
1101         puts ("   Verifying Checksum ... ");
1102         if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
1103                 puts ("   Bad Data CRC\n");
1104                 return 1;
1105         }
1106         puts ("OK\n");
1107         return 0;
1108 }
1109
1110 U_BOOT_CMD(
1111         iminfo, CFG_MAXARGS,    1,      do_iminfo,
1112         "iminfo  - print header information for application image\n",
1113         "addr [addr ...]\n"
1114         "    - print header information for application image starting at\n"
1115         "      address 'addr' in memory; this includes verification of the\n"
1116         "      image contents (magic number, header and payload checksums)\n"
1117 );
1118
1119 #endif  /* CFG_CMD_IMI */
1120
1121 #if (CONFIG_COMMANDS & CFG_CMD_IMLS)
1122 /*-----------------------------------------------------------------------
1123  * List all images found in flash.
1124  */
1125 int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1126 {
1127         flash_info_t *info;
1128         int i, j;
1129         image_header_t *hdr;
1130         ulong data, len, checksum;
1131
1132         for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) {
1133                 if (info->flash_id == FLASH_UNKNOWN)
1134                         goto next_bank;
1135                 for (j=0; j<info->sector_count; ++j) {
1136
1137                         if (!(hdr=(image_header_t *)info->start[j]) ||
1138                             (ntohl(hdr->ih_magic) != IH_MAGIC))
1139                                 goto next_sector;
1140
1141                         /* Copy header so we can blank CRC field for re-calculation */
1142                         memmove (&header, (char *)hdr, sizeof(image_header_t));
1143
1144                         checksum = ntohl(header.ih_hcrc);
1145                         header.ih_hcrc = 0;
1146
1147                         if (crc32 (0, (uchar *)&header, sizeof(image_header_t))
1148                             != checksum)
1149                                 goto next_sector;
1150
1151                         printf ("Image at %08lX:\n", (ulong)hdr);
1152                         print_image_hdr( hdr );
1153
1154                         data = (ulong)hdr + sizeof(image_header_t);
1155                         len  = ntohl(hdr->ih_size);
1156
1157                         puts ("   Verifying Checksum ... ");
1158                         if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
1159                                 puts ("   Bad Data CRC\n");
1160                         }
1161                         puts ("OK\n");
1162 next_sector:            ;
1163                 }
1164 next_bank:      ;
1165         }
1166
1167         return (0);
1168 }
1169
1170 U_BOOT_CMD(
1171         imls,   1,              1,      do_imls,
1172         "imls    - list all images found in flash\n",
1173         "\n"
1174         "    - Prints information about all images found at sector\n"
1175         "      boundaries in flash.\n"
1176 );
1177 #endif  /* CFG_CMD_IMLS */
1178
1179 void
1180 print_image_hdr (image_header_t *hdr)
1181 {
1182 #if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1183         time_t timestamp = (time_t)ntohl(hdr->ih_time);
1184         struct rtc_time tm;
1185 #endif
1186
1187         printf ("   Image Name:   %.*s\n", IH_NMLEN, hdr->ih_name);
1188 #if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1189         to_tm (timestamp, &tm);
1190         printf ("   Created:      %4d-%02d-%02d  %2d:%02d:%02d UTC\n",
1191                 tm.tm_year, tm.tm_mon, tm.tm_mday,
1192                 tm.tm_hour, tm.tm_min, tm.tm_sec);
1193 #endif  /* CFG_CMD_DATE, CONFIG_TIMESTAMP */
1194         puts ("   Image Type:   "); print_type(hdr);
1195         printf ("\n   Data Size:    %d Bytes = ", ntohl(hdr->ih_size));
1196         print_size (ntohl(hdr->ih_size), "\n");
1197         printf ("   Load Address: %08x\n"
1198                 "   Entry Point:  %08x\n",
1199                  ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
1200
1201         if (hdr->ih_type == IH_TYPE_MULTI) {
1202                 int i;
1203                 ulong len;
1204                 ulong *len_ptr = (ulong *)((ulong)hdr + sizeof(image_header_t));
1205
1206                 puts ("   Contents:\n");
1207                 for (i=0; (len = ntohl(*len_ptr)); ++i, ++len_ptr) {
1208                         printf ("   Image %d: %8ld Bytes = ", i, len);
1209                         print_size (len, "\n");
1210                 }
1211         }
1212 }
1213
1214
1215 static void
1216 print_type (image_header_t *hdr)
1217 {
1218         char *os, *arch, *type, *comp;
1219
1220         switch (hdr->ih_os) {
1221         case IH_OS_INVALID:     os = "Invalid OS";              break;
1222         case IH_OS_NETBSD:      os = "NetBSD";                  break;
1223         case IH_OS_LINUX:       os = "Linux";                   break;
1224         case IH_OS_VXWORKS:     os = "VxWorks";                 break;
1225         case IH_OS_QNX:         os = "QNX";                     break;
1226         case IH_OS_U_BOOT:      os = "U-Boot";                  break;
1227         case IH_OS_RTEMS:       os = "RTEMS";                   break;
1228 #ifdef CONFIG_ARTOS
1229         case IH_OS_ARTOS:       os = "ARTOS";                   break;
1230 #endif
1231 #ifdef CONFIG_LYNXKDI
1232         case IH_OS_LYNXOS:      os = "LynxOS";                  break;
1233 #endif
1234         default:                os = "Unknown OS";              break;
1235         }
1236
1237         switch (hdr->ih_arch) {
1238         case IH_CPU_INVALID:    arch = "Invalid CPU";           break;
1239         case IH_CPU_ALPHA:      arch = "Alpha";                 break;
1240         case IH_CPU_ARM:        arch = "ARM";                   break;
1241         case IH_CPU_AVR32:      arch = "AVR32";                 break;
1242         case IH_CPU_I386:       arch = "Intel x86";             break;
1243         case IH_CPU_IA64:       arch = "IA64";                  break;
1244         case IH_CPU_MIPS:       arch = "MIPS";                  break;
1245         case IH_CPU_MIPS64:     arch = "MIPS 64 Bit";           break;
1246         case IH_CPU_PPC:        arch = "PowerPC";               break;
1247         case IH_CPU_S390:       arch = "IBM S390";              break;
1248         case IH_CPU_SH:         arch = "SuperH";                break;
1249         case IH_CPU_SPARC:      arch = "SPARC";                 break;
1250         case IH_CPU_SPARC64:    arch = "SPARC 64 Bit";          break;
1251         case IH_CPU_M68K:       arch = "M68K";                  break;
1252         case IH_CPU_MICROBLAZE: arch = "Microblaze";            break;
1253         case IH_CPU_NIOS:       arch = "Nios";                  break;
1254         case IH_CPU_NIOS2:      arch = "Nios-II";               break;
1255         default:                arch = "Unknown Architecture";  break;
1256         }
1257
1258         switch (hdr->ih_type) {
1259         case IH_TYPE_INVALID:   type = "Invalid Image";         break;
1260         case IH_TYPE_STANDALONE:type = "Standalone Program";    break;
1261         case IH_TYPE_KERNEL:    type = "Kernel Image";          break;
1262         case IH_TYPE_RAMDISK:   type = "RAMDisk Image";         break;
1263         case IH_TYPE_MULTI:     type = "Multi-File Image";      break;
1264         case IH_TYPE_FIRMWARE:  type = "Firmware";              break;
1265         case IH_TYPE_SCRIPT:    type = "Script";                break;
1266         default:                type = "Unknown Image";         break;
1267         }
1268
1269         switch (hdr->ih_comp) {
1270         case IH_COMP_NONE:      comp = "uncompressed";          break;
1271         case IH_COMP_GZIP:      comp = "gzip compressed";       break;
1272         case IH_COMP_BZIP2:     comp = "bzip2 compressed";      break;
1273         default:                comp = "unknown compression";   break;
1274         }
1275
1276         printf ("%s %s %s (%s)", arch, os, type, comp);
1277 }
1278
1279 #define ZALLOC_ALIGNMENT        16
1280
1281 static void *zalloc(void *x, unsigned items, unsigned size)
1282 {
1283         void *p;
1284
1285         size *= items;
1286         size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
1287
1288         p = malloc (size);
1289
1290         return (p);
1291 }
1292
1293 static void zfree(void *x, void *addr, unsigned nb)
1294 {
1295         free (addr);
1296 }
1297
1298 #define HEAD_CRC        2
1299 #define EXTRA_FIELD     4
1300 #define ORIG_NAME       8
1301 #define COMMENT         0x10
1302 #define RESERVED        0xe0
1303
1304 #define DEFLATED        8
1305
1306 int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
1307 {
1308         z_stream s;
1309         int r, i, flags;
1310
1311         /* skip header */
1312         i = 10;
1313         flags = src[3];
1314         if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
1315                 puts ("Error: Bad gzipped data\n");
1316                 return (-1);
1317         }
1318         if ((flags & EXTRA_FIELD) != 0)
1319                 i = 12 + src[10] + (src[11] << 8);
1320         if ((flags & ORIG_NAME) != 0)
1321                 while (src[i++] != 0)
1322                         ;
1323         if ((flags & COMMENT) != 0)
1324                 while (src[i++] != 0)
1325                         ;
1326         if ((flags & HEAD_CRC) != 0)
1327                 i += 2;
1328         if (i >= *lenp) {
1329                 puts ("Error: gunzip out of data in header\n");
1330                 return (-1);
1331         }
1332
1333         s.zalloc = zalloc;
1334         s.zfree = zfree;
1335 #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
1336         s.outcb = (cb_func)WATCHDOG_RESET;
1337 #else
1338         s.outcb = Z_NULL;
1339 #endif  /* CONFIG_HW_WATCHDOG */
1340
1341         r = inflateInit2(&s, -MAX_WBITS);
1342         if (r != Z_OK) {
1343                 printf ("Error: inflateInit2() returned %d\n", r);
1344                 return (-1);
1345         }
1346         s.next_in = src + i;
1347         s.avail_in = *lenp - i;
1348         s.next_out = dst;
1349         s.avail_out = dstlen;
1350         r = inflate(&s, Z_FINISH);
1351         if (r != Z_OK && r != Z_STREAM_END) {
1352                 printf ("Error: inflate() returned %d\n", r);
1353                 return (-1);
1354         }
1355         *lenp = s.next_out - (unsigned char *) dst;
1356         inflateEnd(&s);
1357
1358         return (0);
1359 }
1360
1361 #ifdef CONFIG_BZIP2
1362 void bz_internal_error(int errcode)
1363 {
1364         printf ("BZIP2 internal error %d\n", errcode);
1365 }
1366 #endif /* CONFIG_BZIP2 */
1367
1368 static void
1369 do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1370                 ulong addr, ulong *len_ptr, int verify)
1371 {
1372         image_header_t *hdr = &header;
1373         void    (*entry_point)(bd_t *);
1374
1375         entry_point = (void (*)(bd_t *)) ntohl(hdr->ih_ep);
1376
1377         printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1378                 (ulong)entry_point);
1379
1380         SHOW_BOOT_PROGRESS (15);
1381
1382         /*
1383          * RTEMS Parameters:
1384          *   r3: ptr to board info data
1385          */
1386
1387         (*entry_point ) ( gd->bd );
1388 }
1389
1390 #if (CONFIG_COMMANDS & CFG_CMD_ELF)
1391 static void
1392 do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1393                   ulong addr, ulong *len_ptr, int verify)
1394 {
1395         image_header_t *hdr = &header;
1396         char str[80];
1397
1398         sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
1399         setenv("loadaddr", str);
1400         do_bootvx(cmdtp, 0, 0, NULL);
1401 }
1402
1403 static void
1404 do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1405                  ulong addr, ulong *len_ptr, int verify)
1406 {
1407         image_header_t *hdr = &header;
1408         char *local_args[2];
1409         char str[16];
1410
1411         sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
1412         local_args[0] = argv[0];
1413         local_args[1] = str;    /* and provide it via the arguments */
1414         do_bootelf(cmdtp, 0, 2, local_args);
1415 }
1416 #endif /* CFG_CMD_ELF */
1417
1418 #ifdef CONFIG_LYNXKDI
1419 static void
1420 do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
1421                  int    argc, char *argv[],
1422                  ulong  addr,
1423                  ulong  *len_ptr,
1424                  int    verify)
1425 {
1426         lynxkdi_boot( &header );
1427 }
1428
1429 #endif /* CONFIG_LYNXKDI */