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