blob: ee1b5c1c2426c99288ae430bcd8a32c78125641b [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
2 * (C) Copyright 2000-2002
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>
wdenk47d1a6e2002-11-03 00:01:44 +000030#include <image.h>
31#include <malloc.h>
32#include <zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000033#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000034#include <environment.h>
wdenk47d1a6e2002-11-03 00:01:44 +000035#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000036
Wolfgang Denkf57f70a2005-10-13 01:45:54 +020037#ifdef CONFIG_OF_FLAT_TREE
38#include <ft_build.h>
39#endif
40
wdenk8bde7f72003-06-27 21:31:46 +000041 /*cmd_boot.c*/
42 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
43
wdenk47d1a6e2002-11-03 00:01:44 +000044#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
45#include <rtc.h>
46#endif
47
48#ifdef CFG_HUSH_PARSER
49#include <hush.h>
50#endif
51
52#ifdef CONFIG_SHOW_BOOT_PROGRESS
53# include <status_led.h>
54# define SHOW_BOOT_PROGRESS(arg) show_boot_progress(arg)
55#else
56# define SHOW_BOOT_PROGRESS(arg)
57#endif
58
59#ifdef CFG_INIT_RAM_LOCK
60#include <asm/cache.h>
61#endif
62
wdenk228f29a2002-12-08 09:53:23 +000063#ifdef CONFIG_LOGBUFFER
64#include <logbuff.h>
65#endif
66
wdenk2abbe072003-06-16 23:50:08 +000067#ifdef CONFIG_HAS_DATAFLASH
68#include <dataflash.h>
69#endif
70
wdenk47d1a6e2002-11-03 00:01:44 +000071/*
72 * Some systems (for example LWMON) have very short watchdog periods;
73 * we must make sure to split long operations like memmove() or
74 * crc32() into reasonable chunks.
75 */
76#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
77# define CHUNKSZ (64 * 1024)
78#endif
79
wdenkeedcd072004-09-08 22:03:11 +000080int gunzip (void *, int, unsigned char *, unsigned long *);
wdenk47d1a6e2002-11-03 00:01:44 +000081
82static void *zalloc(void *, unsigned, unsigned);
83static void zfree(void *, void *, unsigned);
84
85#if (CONFIG_COMMANDS & CFG_CMD_IMI)
86static int image_info (unsigned long addr);
87#endif
wdenk27b207f2003-07-24 23:38:38 +000088
89#if (CONFIG_COMMANDS & CFG_CMD_IMLS)
90#include <flash.h>
91extern flash_info_t flash_info[CFG_MAX_FLASH_BANKS]; /* info for FLASH chips */
92static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
93#endif
94
wdenk47d1a6e2002-11-03 00:01:44 +000095static void print_type (image_header_t *hdr);
96
wdenk2262cfe2002-11-18 00:14:45 +000097#ifdef __I386__
98image_header_t *fake_header(image_header_t *hdr, void *ptr, int size);
99#endif
100
wdenk47d1a6e2002-11-03 00:01:44 +0000101/*
102 * Continue booting an OS image; caller already has:
103 * - copied image header to global variable `header'
104 * - checked header magic number, checksums (both header & image),
105 * - verified image architecture (PPC) and type (KERNEL or MULTI),
106 * - loaded (first part of) image to header load address,
107 * - disabled interrupts.
108 */
109typedef void boot_os_Fcn (cmd_tbl_t *cmdtp, int flag,
110 int argc, char *argv[],
111 ulong addr, /* of image to boot */
112 ulong *len_ptr, /* multi-file image length table */
113 int verify); /* getenv("verify")[0] != 'n' */
114
wdenk8bde7f72003-06-27 21:31:46 +0000115#ifdef DEBUG
116extern int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
117#endif
118
wdenk2262cfe2002-11-18 00:14:45 +0000119#ifdef CONFIG_PPC
wdenk47d1a6e2002-11-03 00:01:44 +0000120static boot_os_Fcn do_bootm_linux;
121#else
122extern boot_os_Fcn do_bootm_linux;
123#endif
wdenkf72da342003-10-10 10:05:42 +0000124#ifdef CONFIG_SILENT_CONSOLE
125static void fixup_silent_linux (void);
126#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000127static boot_os_Fcn do_bootm_netbsd;
wdenkd791b1d2003-04-20 14:04:18 +0000128static boot_os_Fcn do_bootm_rtems;
wdenk47d1a6e2002-11-03 00:01:44 +0000129#if (CONFIG_COMMANDS & CFG_CMD_ELF)
130static boot_os_Fcn do_bootm_vxworks;
131static boot_os_Fcn do_bootm_qnxelf;
132int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] );
133int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] );
134#endif /* CFG_CMD_ELF */
wdenk7f70e852003-05-20 14:25:27 +0000135#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
136static boot_os_Fcn do_bootm_artos;
137#endif
wdenk1f4bb372003-07-27 00:21:01 +0000138#ifdef CONFIG_LYNXKDI
139static boot_os_Fcn do_bootm_lynxkdi;
140extern void lynxkdi_boot( image_header_t * );
141#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000142
143image_header_t header;
144
145ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
146
147int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
148{
149 ulong iflag;
150 ulong addr;
151 ulong data, len, checksum;
152 ulong *len_ptr;
wdenkc29fdfc2003-08-29 20:57:53 +0000153 uint unc_len = 0x400000;
wdenk47d1a6e2002-11-03 00:01:44 +0000154 int i, verify;
155 char *name, *s;
wdenkb13fb012003-10-30 21:49:38 +0000156 int (*appl)(int, char *[]);
wdenk47d1a6e2002-11-03 00:01:44 +0000157 image_header_t *hdr = &header;
158
159 s = getenv ("verify");
160 verify = (s && (*s == 'n')) ? 0 : 1;
161
162 if (argc < 2) {
163 addr = load_addr;
164 } else {
165 addr = simple_strtoul(argv[1], NULL, 16);
166 }
167
168 SHOW_BOOT_PROGRESS (1);
169 printf ("## Booting image at %08lx ...\n", addr);
170
171 /* Copy header so we can blank CRC field for re-calculation */
wdenk2abbe072003-06-16 23:50:08 +0000172#ifdef CONFIG_HAS_DATAFLASH
173 if (addr_dataflash(addr)){
174 read_dataflash(addr, sizeof(image_header_t), (char *)&header);
175 } else
176#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000177 memmove (&header, (char *)addr, sizeof(image_header_t));
178
179 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk2262cfe2002-11-18 00:14:45 +0000180#ifdef __I386__ /* correct image format not implemented yet - fake it */
181 if (fake_header(hdr, (void*)addr, -1) != NULL) {
182 /* to compensate for the addition below */
183 addr -= sizeof(image_header_t);
184 /* turnof verify,
185 * fake_header() does not fake the data crc
186 */
187 verify = 0;
188 } else
189#endif /* __I386__ */
190 {
wdenk4b9206e2004-03-23 22:14:11 +0000191 puts ("Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000192 SHOW_BOOT_PROGRESS (-1);
193 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000194 }
wdenk47d1a6e2002-11-03 00:01:44 +0000195 }
196 SHOW_BOOT_PROGRESS (2);
197
198 data = (ulong)&header;
199 len = sizeof(image_header_t);
200
201 checksum = ntohl(hdr->ih_hcrc);
202 hdr->ih_hcrc = 0;
203
204 if (crc32 (0, (char *)data, len) != checksum) {
wdenk4b9206e2004-03-23 22:14:11 +0000205 puts ("Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000206 SHOW_BOOT_PROGRESS (-2);
207 return 1;
208 }
209 SHOW_BOOT_PROGRESS (3);
210
Wolfgang Denkbccae902005-10-06 01:50:50 +0200211#ifdef CONFIG_HAS_DATAFLASH
212 if (addr_dataflash(addr)){
213 len = ntohl(hdr->ih_size) + sizeof(image_header_t);
214 read_dataflash(addr, len, (char *)CFG_LOAD_ADDR);
215 addr = CFG_LOAD_ADDR;
216 }
217#endif
218
219
wdenk47d1a6e2002-11-03 00:01:44 +0000220 /* for multi-file images we need the data part, too */
wdenka57a4962003-10-26 22:52:58 +0000221 print_image_hdr ((image_header_t *)addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000222
223 data = addr + sizeof(image_header_t);
224 len = ntohl(hdr->ih_size);
225
226 if (verify) {
wdenk4b9206e2004-03-23 22:14:11 +0000227 puts (" Verifying Checksum ... ");
wdenk47d1a6e2002-11-03 00:01:44 +0000228 if (crc32 (0, (char *)data, len) != ntohl(hdr->ih_dcrc)) {
229 printf ("Bad Data CRC\n");
230 SHOW_BOOT_PROGRESS (-3);
231 return 1;
232 }
wdenk4b9206e2004-03-23 22:14:11 +0000233 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000234 }
235 SHOW_BOOT_PROGRESS (4);
236
237 len_ptr = (ulong *)data;
238
wdenk2262cfe2002-11-18 00:14:45 +0000239#if defined(__PPC__)
240 if (hdr->ih_arch != IH_CPU_PPC)
241#elif defined(__ARM__)
242 if (hdr->ih_arch != IH_CPU_ARM)
243#elif defined(__I386__)
244 if (hdr->ih_arch != IH_CPU_I386)
wdenk6069ff22003-02-28 00:49:47 +0000245#elif defined(__mips__)
wdenk8bde7f72003-06-27 21:31:46 +0000246 if (hdr->ih_arch != IH_CPU_MIPS)
wdenk4a551702003-10-08 23:26:14 +0000247#elif defined(__nios__)
248 if (hdr->ih_arch != IH_CPU_NIOS)
wdenk4e5ca3e2003-12-08 01:34:36 +0000249#elif defined(__M68K__)
250 if (hdr->ih_arch != IH_CPU_M68K)
wdenk507bbe32004-04-18 21:13:41 +0000251#elif defined(__microblaze__)
252 if (hdr->ih_arch != IH_CPU_MICROBLAZE)
wdenk5c952cf2004-10-10 21:27:30 +0000253#elif defined(__nios2__)
254 if (hdr->ih_arch != IH_CPU_NIOS2)
wdenk2262cfe2002-11-18 00:14:45 +0000255#else
256# error Unknown CPU type
257#endif
258 {
259 printf ("Unsupported Architecture 0x%x\n", hdr->ih_arch);
wdenk47d1a6e2002-11-03 00:01:44 +0000260 SHOW_BOOT_PROGRESS (-4);
261 return 1;
262 }
263 SHOW_BOOT_PROGRESS (5);
264
265 switch (hdr->ih_type) {
wdenkb13fb012003-10-30 21:49:38 +0000266 case IH_TYPE_STANDALONE:
267 name = "Standalone Application";
268 /* A second argument overwrites the load address */
269 if (argc > 2) {
wdenkb2532ef2005-06-20 10:17:34 +0000270 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
wdenkb13fb012003-10-30 21:49:38 +0000271 }
272 break;
273 case IH_TYPE_KERNEL:
274 name = "Kernel Image";
275 break;
wdenkd4ca31c2004-01-02 14:00:00 +0000276 case IH_TYPE_MULTI:
wdenkb13fb012003-10-30 21:49:38 +0000277 name = "Multi-File Image";
278 len = ntohl(len_ptr[0]);
279 /* OS kernel is always the first image */
280 data += 8; /* kernel_len + terminator */
281 for (i=1; len_ptr[i]; ++i)
282 data += 4;
283 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000284 default: printf ("Wrong Image Type for %s command\n", cmdtp->name);
285 SHOW_BOOT_PROGRESS (-5);
286 return 1;
287 }
288 SHOW_BOOT_PROGRESS (6);
289
290 /*
291 * We have reached the point of no return: we are going to
292 * overwrite all exception vector code, so we cannot easily
293 * recover from any failures any more...
294 */
295
296 iflag = disable_interrupts();
297
wdenkc7de8292002-11-19 11:04:11 +0000298#ifdef CONFIG_AMIGAONEG3SE
299 /*
wdenk8bde7f72003-06-27 21:31:46 +0000300 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000301 * bios emulation, so turn them off again
302 */
303 icache_disable();
304 invalidate_l1_instruction_cache();
305 flush_data_cache();
306 dcache_disable();
307#endif
308
wdenk47d1a6e2002-11-03 00:01:44 +0000309 switch (hdr->ih_comp) {
310 case IH_COMP_NONE:
wdenk2262cfe2002-11-18 00:14:45 +0000311 if(ntohl(hdr->ih_load) == addr) {
wdenk47d1a6e2002-11-03 00:01:44 +0000312 printf (" XIP %s ... ", name);
313 } else {
314#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
315 size_t l = len;
316 void *to = (void *)ntohl(hdr->ih_load);
317 void *from = (void *)data;
318
319 printf (" Loading %s ... ", name);
320
321 while (l > 0) {
322 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
323 WATCHDOG_RESET();
324 memmove (to, from, tail);
325 to += tail;
326 from += tail;
327 l -= tail;
328 }
329#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
330 memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len);
331#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
332 }
333 break;
334 case IH_COMP_GZIP:
335 printf (" Uncompressing %s ... ", name);
wdenkc29fdfc2003-08-29 20:57:53 +0000336 if (gunzip ((void *)ntohl(hdr->ih_load), unc_len,
wdenkeedcd072004-09-08 22:03:11 +0000337 (uchar *)data, &len) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000338 puts ("GUNZIP ERROR - must RESET board to recover\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000339 SHOW_BOOT_PROGRESS (-6);
340 do_reset (cmdtp, flag, argc, argv);
341 }
342 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000343#ifdef CONFIG_BZIP2
344 case IH_COMP_BZIP2:
345 printf (" Uncompressing %s ... ", name);
wdenk5653fc32004-02-08 22:55:38 +0000346 /*
347 * If we've got less than 4 MB of malloc() space,
348 * use slower decompression algorithm which requires
349 * at most 2300 KB of memory.
350 */
wdenkc29fdfc2003-08-29 20:57:53 +0000351 i = BZ2_bzBuffToBuffDecompress ((char*)ntohl(hdr->ih_load),
wdenk5653fc32004-02-08 22:55:38 +0000352 &unc_len, (char *)data, len,
353 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000354 if (i != BZ_OK) {
355 printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
356 SHOW_BOOT_PROGRESS (-6);
357 udelay(100000);
358 do_reset (cmdtp, flag, argc, argv);
359 }
360 break;
361#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000362 default:
363 if (iflag)
364 enable_interrupts();
365 printf ("Unimplemented compression type %d\n", hdr->ih_comp);
366 SHOW_BOOT_PROGRESS (-7);
367 return 1;
368 }
wdenk4b9206e2004-03-23 22:14:11 +0000369 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000370 SHOW_BOOT_PROGRESS (7);
371
372 switch (hdr->ih_type) {
373 case IH_TYPE_STANDALONE:
wdenk47d1a6e2002-11-03 00:01:44 +0000374 if (iflag)
375 enable_interrupts();
376
wdenk4a6fd342003-04-12 23:38:12 +0000377 /* load (and uncompress), but don't start if "autostart"
378 * is set to "no"
379 */
wdenk4a551702003-10-08 23:26:14 +0000380 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) {
381 char buf[32];
382 sprintf(buf, "%lX", len);
383 setenv("filesize", buf);
wdenk4a6fd342003-04-12 23:38:12 +0000384 return 0;
wdenk4a551702003-10-08 23:26:14 +0000385 }
wdenkb13fb012003-10-30 21:49:38 +0000386 appl = (int (*)(int, char *[]))ntohl(hdr->ih_ep);
387 (*appl)(argc-1, &argv[1]);
wdenk4a6fd342003-04-12 23:38:12 +0000388 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000389 case IH_TYPE_KERNEL:
390 case IH_TYPE_MULTI:
391 /* handled below */
392 break;
393 default:
394 if (iflag)
395 enable_interrupts();
396 printf ("Can't boot image type %d\n", hdr->ih_type);
397 SHOW_BOOT_PROGRESS (-8);
398 return 1;
399 }
400 SHOW_BOOT_PROGRESS (8);
401
402 switch (hdr->ih_os) {
403 default: /* handled by (original) Linux case */
404 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000405#ifdef CONFIG_SILENT_CONSOLE
406 fixup_silent_linux();
407#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000408 do_bootm_linux (cmdtp, flag, argc, argv,
409 addr, len_ptr, verify);
410 break;
411 case IH_OS_NETBSD:
412 do_bootm_netbsd (cmdtp, flag, argc, argv,
413 addr, len_ptr, verify);
414 break;
wdenk8bde7f72003-06-27 21:31:46 +0000415
wdenk1f4bb372003-07-27 00:21:01 +0000416#ifdef CONFIG_LYNXKDI
417 case IH_OS_LYNXOS:
418 do_bootm_lynxkdi (cmdtp, flag, argc, argv,
419 addr, len_ptr, verify);
420 break;
421#endif
422
wdenkd791b1d2003-04-20 14:04:18 +0000423 case IH_OS_RTEMS:
424 do_bootm_rtems (cmdtp, flag, argc, argv,
425 addr, len_ptr, verify);
426 break;
wdenk8bde7f72003-06-27 21:31:46 +0000427
wdenk47d1a6e2002-11-03 00:01:44 +0000428#if (CONFIG_COMMANDS & CFG_CMD_ELF)
429 case IH_OS_VXWORKS:
430 do_bootm_vxworks (cmdtp, flag, argc, argv,
431 addr, len_ptr, verify);
432 break;
433 case IH_OS_QNX:
434 do_bootm_qnxelf (cmdtp, flag, argc, argv,
435 addr, len_ptr, verify);
436 break;
437#endif /* CFG_CMD_ELF */
wdenk7f70e852003-05-20 14:25:27 +0000438#ifdef CONFIG_ARTOS
439 case IH_OS_ARTOS:
440 do_bootm_artos (cmdtp, flag, argc, argv,
441 addr, len_ptr, verify);
442 break;
443#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000444 }
445
446 SHOW_BOOT_PROGRESS (-9);
447#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000448 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000449 do_reset (cmdtp, flag, argc, argv);
450#endif
451 return 1;
452}
453
wdenk0d498392003-07-01 21:06:45 +0000454U_BOOT_CMD(
455 bootm, CFG_MAXARGS, 1, do_bootm,
wdenk8bde7f72003-06-27 21:31:46 +0000456 "bootm - boot application image from memory\n",
457 "[addr [arg ...]]\n - boot application image stored in memory\n"
wdenk9d5028c2004-11-21 00:06:33 +0000458 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
459 "\t'arg' can be the address of an initrd image\n"
wdenk8bde7f72003-06-27 21:31:46 +0000460);
461
wdenkf72da342003-10-10 10:05:42 +0000462#ifdef CONFIG_SILENT_CONSOLE
463static void
464fixup_silent_linux ()
465{
466 DECLARE_GLOBAL_DATA_PTR;
467 char buf[256], *start, *end;
468 char *cmdline = getenv ("bootargs");
469
470 /* Only fix cmdline when requested */
471 if (!(gd->flags & GD_FLG_SILENT))
472 return;
473
474 debug ("before silent fix-up: %s\n", cmdline);
475 if (cmdline) {
476 if ((start = strstr (cmdline, "console=")) != NULL) {
477 end = strchr (start, ' ');
478 strncpy (buf, cmdline, (start - cmdline + 8));
479 if (end)
480 strcpy (buf + (start - cmdline + 8), end);
481 else
482 buf[start - cmdline + 8] = '\0';
483 } else {
484 strcpy (buf, cmdline);
485 strcat (buf, " console=");
486 }
487 } else {
488 strcpy (buf, "console=");
489 }
490
491 setenv ("bootargs", buf);
492 debug ("after silent fix-up: %s\n", buf);
493}
494#endif /* CONFIG_SILENT_CONSOLE */
495
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200496#ifdef CONFIG_OF_FLAT_TREE
497extern const unsigned char oftree_dtb[];
498extern const unsigned int oftree_dtb_len;
499#endif
500
wdenk2262cfe2002-11-18 00:14:45 +0000501#ifdef CONFIG_PPC
wdenk47d1a6e2002-11-03 00:01:44 +0000502static void
503do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
504 int argc, char *argv[],
505 ulong addr,
506 ulong *len_ptr,
507 int verify)
508{
509 DECLARE_GLOBAL_DATA_PTR;
510
511 ulong sp;
512 ulong len, checksum;
513 ulong initrd_start, initrd_end;
514 ulong cmd_start, cmd_end;
515 ulong initrd_high;
516 ulong data;
wdenk38b99262003-05-23 23:18:21 +0000517 int initrd_copy_to_ram = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000518 char *cmdline;
519 char *s;
520 bd_t *kbd;
521 void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
522 image_header_t *hdr = &header;
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200523#ifdef CONFIG_OF_FLAT_TREE
524 char *of_flat_tree;
525#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000526
527 if ((s = getenv ("initrd_high")) != NULL) {
528 /* a value of "no" or a similar string will act like 0,
529 * turning the "load high" feature off. This is intentional.
530 */
531 initrd_high = simple_strtoul(s, NULL, 16);
wdenk38b99262003-05-23 23:18:21 +0000532 if (initrd_high == ~0)
533 initrd_copy_to_ram = 0;
wdenk228f29a2002-12-08 09:53:23 +0000534 } else { /* not set, no restrictions to load high */
wdenk47d1a6e2002-11-03 00:01:44 +0000535 initrd_high = ~0;
536 }
537
wdenk56f94be2002-11-05 16:35:14 +0000538#ifdef CONFIG_LOGBUFFER
wdenk6aff3112002-12-17 01:51:00 +0000539 kbd=gd->bd;
wdenk228f29a2002-12-08 09:53:23 +0000540 /* Prevent initrd from overwriting logbuffer */
541 if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD))
542 initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD;
543 debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN);
wdenk56f94be2002-11-05 16:35:14 +0000544#endif
545
wdenk47d1a6e2002-11-03 00:01:44 +0000546 /*
547 * Booting a (Linux) kernel image
548 *
549 * Allocate space for command line and board info - the
550 * address should be as high as possible within the reach of
551 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
552 * memory, which means far enough below the current stack
553 * pointer.
554 */
555
556 asm( "mr %0,1": "=r"(sp) : );
557
wdenk56f94be2002-11-05 16:35:14 +0000558 debug ("## Current stack ends at 0x%08lX ", sp);
559
wdenk47d1a6e2002-11-03 00:01:44 +0000560 sp -= 2048; /* just to be sure */
561 if (sp > CFG_BOOTMAPSZ)
562 sp = CFG_BOOTMAPSZ;
563 sp &= ~0xF;
564
wdenk56f94be2002-11-05 16:35:14 +0000565 debug ("=> set upper limit to 0x%08lX\n", sp);
566
wdenk47d1a6e2002-11-03 00:01:44 +0000567 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
568 kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF);
569
570 if ((s = getenv("bootargs")) == NULL)
571 s = "";
572
573 strcpy (cmdline, s);
574
575 cmd_start = (ulong)&cmdline[0];
576 cmd_end = cmd_start + strlen(cmdline);
577
578 *kbd = *(gd->bd);
579
580#ifdef DEBUG
581 printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
582
583 do_bdinfo (NULL, 0, 0, NULL);
584#endif
585
586 if ((s = getenv ("clocks_in_mhz")) != NULL) {
587 /* convert all clock information to MHz */
588 kbd->bi_intfreq /= 1000000L;
589 kbd->bi_busfreq /= 1000000L;
wdenk983fda82004-10-28 00:09:35 +0000590#if defined(CONFIG_MPC8220)
wdenk9d5028c2004-11-21 00:06:33 +0000591 kbd->bi_inpfreq /= 1000000L;
592 kbd->bi_pcifreq /= 1000000L;
593 kbd->bi_pevfreq /= 1000000L;
594 kbd->bi_flbfreq /= 1000000L;
595 kbd->bi_vcofreq /= 1000000L;
wdenk983fda82004-10-28 00:09:35 +0000596#endif
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500597#if defined(CONFIG_CPM2)
wdenk47d1a6e2002-11-03 00:01:44 +0000598 kbd->bi_cpmfreq /= 1000000L;
599 kbd->bi_brgfreq /= 1000000L;
600 kbd->bi_sccfreq /= 1000000L;
601 kbd->bi_vco /= 1000000L;
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500602#endif
wdenkcbd8a352004-02-24 02:00:03 +0000603#if defined(CONFIG_MPC5xxx)
wdenk945af8d2003-07-16 21:53:01 +0000604 kbd->bi_ipbfreq /= 1000000L;
605 kbd->bi_pcifreq /= 1000000L;
wdenkcbd8a352004-02-24 02:00:03 +0000606#endif /* CONFIG_MPC5xxx */
wdenk47d1a6e2002-11-03 00:01:44 +0000607 }
608
609 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))hdr->ih_ep;
610
611 /*
612 * Check if there is an initrd image
613 */
614 if (argc >= 3) {
615 SHOW_BOOT_PROGRESS (9);
616
617 addr = simple_strtoul(argv[2], NULL, 16);
618
619 printf ("## Loading RAMDisk Image at %08lx ...\n", addr);
620
621 /* Copy header so we can blank CRC field for re-calculation */
622 memmove (&header, (char *)addr, sizeof(image_header_t));
623
624 if (hdr->ih_magic != IH_MAGIC) {
wdenk4b9206e2004-03-23 22:14:11 +0000625 puts ("Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000626 SHOW_BOOT_PROGRESS (-10);
627 do_reset (cmdtp, flag, argc, argv);
628 }
629
630 data = (ulong)&header;
631 len = sizeof(image_header_t);
632
633 checksum = hdr->ih_hcrc;
634 hdr->ih_hcrc = 0;
635
636 if (crc32 (0, (char *)data, len) != checksum) {
wdenk4b9206e2004-03-23 22:14:11 +0000637 puts ("Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000638 SHOW_BOOT_PROGRESS (-11);
639 do_reset (cmdtp, flag, argc, argv);
640 }
641
642 SHOW_BOOT_PROGRESS (10);
643
644 print_image_hdr (hdr);
645
646 data = addr + sizeof(image_header_t);
647 len = hdr->ih_size;
648
649 if (verify) {
650 ulong csum = 0;
651#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
652 ulong cdata = data, edata = cdata + len;
653#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
654
wdenk4b9206e2004-03-23 22:14:11 +0000655 puts (" Verifying Checksum ... ");
wdenk47d1a6e2002-11-03 00:01:44 +0000656
657#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
658
659 while (cdata < edata) {
660 ulong chunk = edata - cdata;
661
662 if (chunk > CHUNKSZ)
663 chunk = CHUNKSZ;
664 csum = crc32 (csum, (char *)cdata, chunk);
665 cdata += chunk;
666
667 WATCHDOG_RESET();
668 }
669#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
670 csum = crc32 (0, (char *)data, len);
671#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
672
673 if (csum != hdr->ih_dcrc) {
wdenk4b9206e2004-03-23 22:14:11 +0000674 puts ("Bad Data CRC\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000675 SHOW_BOOT_PROGRESS (-12);
676 do_reset (cmdtp, flag, argc, argv);
677 }
wdenk4b9206e2004-03-23 22:14:11 +0000678 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000679 }
680
681 SHOW_BOOT_PROGRESS (11);
682
683 if ((hdr->ih_os != IH_OS_LINUX) ||
684 (hdr->ih_arch != IH_CPU_PPC) ||
685 (hdr->ih_type != IH_TYPE_RAMDISK) ) {
wdenk4b9206e2004-03-23 22:14:11 +0000686 puts ("No Linux PPC Ramdisk Image\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000687 SHOW_BOOT_PROGRESS (-13);
688 do_reset (cmdtp, flag, argc, argv);
689 }
690
691 /*
692 * Now check if we have a multifile image
693 */
694 } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) {
695 u_long tail = ntohl(len_ptr[0]) % 4;
696 int i;
697
698 SHOW_BOOT_PROGRESS (13);
699
700 /* skip kernel length and terminator */
701 data = (ulong)(&len_ptr[2]);
702 /* skip any additional image length fields */
703 for (i=1; len_ptr[i]; ++i)
704 data += 4;
705 /* add kernel length, and align */
706 data += ntohl(len_ptr[0]);
707 if (tail) {
708 data += 4 - tail;
709 }
710
711 len = ntohl(len_ptr[1]);
712
713 } else {
714 /*
715 * no initrd image
716 */
717 SHOW_BOOT_PROGRESS (14);
718
719 len = data = 0;
720 }
721
wdenk47d1a6e2002-11-03 00:01:44 +0000722 if (!data) {
wdenk56f94be2002-11-05 16:35:14 +0000723 debug ("No initrd\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000724 }
wdenk47d1a6e2002-11-03 00:01:44 +0000725
726 if (data) {
wdenk38b99262003-05-23 23:18:21 +0000727 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
728 initrd_start = data;
729 initrd_end = initrd_start + len;
730 } else {
wdenk47d1a6e2002-11-03 00:01:44 +0000731 initrd_start = (ulong)kbd - len;
732 initrd_start &= ~(4096 - 1); /* align on page */
733
734 if (initrd_high) {
735 ulong nsp;
736
737 /*
738 * the inital ramdisk does not need to be within
739 * CFG_BOOTMAPSZ as it is not accessed until after
740 * the mm system is initialised.
741 *
742 * do the stack bottom calculation again and see if
743 * the initrd will fit just below the monitor stack
744 * bottom without overwriting the area allocated
745 * above for command line args and board info.
746 */
747 asm( "mr %0,1": "=r"(nsp) : );
748 nsp -= 2048; /* just to be sure */
749 nsp &= ~0xF;
750 if (nsp > initrd_high) /* limit as specified */
751 nsp = initrd_high;
752 nsp -= len;
753 nsp &= ~(4096 - 1); /* align on page */
754 if (nsp >= sp)
755 initrd_start = nsp;
756 }
757
758 SHOW_BOOT_PROGRESS (12);
wdenk56f94be2002-11-05 16:35:14 +0000759
760 debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
wdenk47d1a6e2002-11-03 00:01:44 +0000761 data, data + len - 1, len, len);
wdenk56f94be2002-11-05 16:35:14 +0000762
wdenk47d1a6e2002-11-03 00:01:44 +0000763 initrd_end = initrd_start + len;
764 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
765 initrd_start, initrd_end);
766#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
767 {
768 size_t l = len;
769 void *to = (void *)initrd_start;
770 void *from = (void *)data;
771
772 while (l > 0) {
773 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
774 WATCHDOG_RESET();
775 memmove (to, from, tail);
776 to += tail;
777 from += tail;
778 l -= tail;
779 }
780 }
781#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
782 memmove ((void *)initrd_start, (void *)data, len);
783#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
wdenk4b9206e2004-03-23 22:14:11 +0000784 puts ("OK\n");
wdenk38b99262003-05-23 23:18:21 +0000785 }
wdenk47d1a6e2002-11-03 00:01:44 +0000786 } else {
787 initrd_start = 0;
788 initrd_end = 0;
789 }
790
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200791#ifdef CONFIG_OF_FLAT_TREE
792 if (initrd_start == 0)
793 of_flat_tree = (char *)(((ulong)kbd - OF_FLAT_TREE_MAX_SIZE -
794 sizeof(bd_t)) & ~0xF);
795 else
796 of_flat_tree = (char *)((initrd_start - OF_FLAT_TREE_MAX_SIZE -
797 sizeof(bd_t)) & ~0xF);
798#endif
wdenk56f94be2002-11-05 16:35:14 +0000799
800 debug ("## Transferring control to Linux (at address %08lx) ...\n",
wdenk47d1a6e2002-11-03 00:01:44 +0000801 (ulong)kernel);
wdenk56f94be2002-11-05 16:35:14 +0000802
wdenk47d1a6e2002-11-03 00:01:44 +0000803 SHOW_BOOT_PROGRESS (15);
804
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200805#ifndef CONFIG_OF_FLAT_TREE
806
wdenk42d1f032003-10-15 23:53:47 +0000807#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
wdenk47d1a6e2002-11-03 00:01:44 +0000808 unlock_ram_in_cache();
809#endif
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200810
wdenk47d1a6e2002-11-03 00:01:44 +0000811 /*
812 * Linux Kernel Parameters:
813 * r3: ptr to board info data
814 * r4: initrd_start or 0 if no initrd
815 * r5: initrd_end - unused if r4 is 0
816 * r6: Start of command line string
817 * r7: End of command line string
818 */
819 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200820
821#else
822 ft_setup(of_flat_tree, OF_FLAT_TREE_MAX_SIZE, kbd);
823 /* ft_dump_blob(of_flat_tree); */
824
825#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
826 unlock_ram_in_cache();
827#endif
828 /*
829 * Linux Kernel Parameters:
830 * r3: ptr to OF flat tree, followed by the board info data
831 * r4: initrd_start or 0 if no initrd
832 * r5: initrd_end - unused if r4 is 0
833 * r6: Start of command line string
834 * r7: End of command line string
835 */
836 (*kernel) ((bd_t *)of_flat_tree, initrd_start, initrd_end, cmd_start, cmd_end);
837
838#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000839}
wdenk1cb8e982003-03-06 21:55:29 +0000840#endif /* CONFIG_PPC */
wdenk47d1a6e2002-11-03 00:01:44 +0000841
842static void
843do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
844 int argc, char *argv[],
845 ulong addr,
846 ulong *len_ptr,
847 int verify)
848{
849 DECLARE_GLOBAL_DATA_PTR;
850
851 image_header_t *hdr = &header;
852
853 void (*loader)(bd_t *, image_header_t *, char *, char *);
854 image_header_t *img_addr;
855 char *consdev;
856 char *cmdline;
857
858
859 /*
860 * Booting a (NetBSD) kernel image
861 *
862 * This process is pretty similar to a standalone application:
863 * The (first part of an multi-) image must be a stage-2 loader,
864 * which in turn is responsible for loading & invoking the actual
865 * kernel. The only differences are the parameters being passed:
866 * besides the board info strucure, the loader expects a command
867 * line, the name of the console device, and (optionally) the
868 * address of the original image header.
869 */
870
871 img_addr = 0;
872 if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]))
873 img_addr = (image_header_t *) addr;
874
875
876 consdev = "";
877#if defined (CONFIG_8xx_CONS_SMC1)
878 consdev = "smc1";
879#elif defined (CONFIG_8xx_CONS_SMC2)
880 consdev = "smc2";
881#elif defined (CONFIG_8xx_CONS_SCC2)
882 consdev = "scc2";
883#elif defined (CONFIG_8xx_CONS_SCC3)
884 consdev = "scc3";
885#endif
886
887 if (argc > 2) {
888 ulong len;
889 int i;
890
891 for (i=2, len=0 ; i<argc ; i+=1)
892 len += strlen (argv[i]) + 1;
893 cmdline = malloc (len);
894
895 for (i=2, len=0 ; i<argc ; i+=1) {
896 if (i > 2)
897 cmdline[len++] = ' ';
898 strcpy (&cmdline[len], argv[i]);
899 len += strlen (argv[i]);
900 }
901 } else if ((cmdline = getenv("bootargs")) == NULL) {
902 cmdline = "";
903 }
904
905 loader = (void (*)(bd_t *, image_header_t *, char *, char *)) hdr->ih_ep;
906
907 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
908 (ulong)loader);
909
910 SHOW_BOOT_PROGRESS (15);
911
912 /*
913 * NetBSD Stage-2 Loader Parameters:
914 * r3: ptr to board info data
915 * r4: image address
916 * r5: console device
917 * r6: boot args string
918 */
919 (*loader) (gd->bd, img_addr, consdev, cmdline);
920}
921
wdenk7f70e852003-05-20 14:25:27 +0000922#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
923
924/* Function that returns a character from the environment */
925extern uchar (*env_get_char)(int);
926
927static void
928do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
929 int argc, char *argv[],
930 ulong addr,
931 ulong *len_ptr,
932 int verify)
933{
934 DECLARE_GLOBAL_DATA_PTR;
935 ulong top;
936 char *s, *cmdline;
937 char **fwenv, **ss;
938 int i, j, nxt, len, envno, envsz;
939 bd_t *kbd;
940 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
941 image_header_t *hdr = &header;
942
943 /*
944 * Booting an ARTOS kernel image + application
945 */
946
947 /* this used to be the top of memory, but was wrong... */
948#ifdef CONFIG_PPC
949 /* get stack pointer */
950 asm volatile ("mr %0,1" : "=r"(top) );
951#endif
952 debug ("## Current stack ends at 0x%08lX ", top);
953
954 top -= 2048; /* just to be sure */
955 if (top > CFG_BOOTMAPSZ)
956 top = CFG_BOOTMAPSZ;
957 top &= ~0xF;
958
959 debug ("=> set upper limit to 0x%08lX\n", top);
960
961 /* first check the artos specific boot args, then the linux args*/
962 if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL)
963 s = "";
964
965 /* get length of cmdline, and place it */
966 len = strlen(s);
967 top = (top - (len + 1)) & ~0xF;
968 cmdline = (char *)top;
969 debug ("## cmdline at 0x%08lX ", top);
970 strcpy(cmdline, s);
971
972 /* copy bdinfo */
973 top = (top - sizeof(bd_t)) & ~0xF;
974 debug ("## bd at 0x%08lX ", top);
975 kbd = (bd_t *)top;
976 memcpy(kbd, gd->bd, sizeof(bd_t));
977
978 /* first find number of env entries, and their size */
979 envno = 0;
980 envsz = 0;
981 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
982 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
983 ;
984 envno++;
985 envsz += (nxt - i) + 1; /* plus trailing zero */
986 }
987 envno++; /* plus the terminating zero */
988 debug ("## %u envvars total size %u ", envno, envsz);
989
990 top = (top - sizeof(char **)*envno) & ~0xF;
991 fwenv = (char **)top;
992 debug ("## fwenv at 0x%08lX ", top);
993
994 top = (top - envsz) & ~0xF;
995 s = (char *)top;
996 ss = fwenv;
997
998 /* now copy them */
999 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1000 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1001 ;
1002 *ss++ = s;
1003 for (j = i; j < nxt; ++j)
1004 *s++ = env_get_char(j);
1005 *s++ = '\0';
1006 }
1007 *ss++ = NULL; /* terminate */
1008
1009 entry = (void (*)(bd_t *, char *, char **, ulong))ntohl(hdr->ih_ep);
1010 (*entry)(kbd, cmdline, fwenv, top);
1011}
1012#endif
1013
1014
wdenk47d1a6e2002-11-03 00:01:44 +00001015#if (CONFIG_COMMANDS & CFG_CMD_BOOTD)
1016int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1017{
1018 int rcode = 0;
1019#ifndef CFG_HUSH_PARSER
1020 if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1;
1021#else
1022 if (parse_string_outer(getenv("bootcmd"),
1023 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1;
1024#endif
1025 return rcode;
1026}
wdenk8bde7f72003-06-27 21:31:46 +00001027
wdenk0d498392003-07-01 21:06:45 +00001028U_BOOT_CMD(
1029 boot, 1, 1, do_bootd,
wdenk9d2b18a2003-06-28 23:11:04 +00001030 "boot - boot default, i.e., run 'bootcmd'\n",
1031 NULL
1032);
1033
1034/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001035U_BOOT_CMD(
1036 bootd, 1, 1, do_bootd,
wdenk8bde7f72003-06-27 21:31:46 +00001037 "bootd - boot default, i.e., run 'bootcmd'\n",
1038 NULL
1039);
1040
wdenk47d1a6e2002-11-03 00:01:44 +00001041#endif
1042
1043#if (CONFIG_COMMANDS & CFG_CMD_IMI)
1044int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1045{
1046 int arg;
1047 ulong addr;
1048 int rcode=0;
1049
1050 if (argc < 2) {
1051 return image_info (load_addr);
1052 }
1053
1054 for (arg=1; arg <argc; ++arg) {
1055 addr = simple_strtoul(argv[arg], NULL, 16);
1056 if (image_info (addr) != 0) rcode = 1;
1057 }
1058 return rcode;
1059}
1060
1061static int image_info (ulong addr)
1062{
1063 ulong data, len, checksum;
1064 image_header_t *hdr = &header;
1065
1066 printf ("\n## Checking Image at %08lx ...\n", addr);
1067
1068 /* Copy header so we can blank CRC field for re-calculation */
1069 memmove (&header, (char *)addr, sizeof(image_header_t));
1070
1071 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk4b9206e2004-03-23 22:14:11 +00001072 puts (" Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001073 return 1;
1074 }
1075
1076 data = (ulong)&header;
1077 len = sizeof(image_header_t);
1078
1079 checksum = ntohl(hdr->ih_hcrc);
1080 hdr->ih_hcrc = 0;
1081
1082 if (crc32 (0, (char *)data, len) != checksum) {
wdenk4b9206e2004-03-23 22:14:11 +00001083 puts (" Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001084 return 1;
1085 }
1086
1087 /* for multi-file images we need the data part, too */
1088 print_image_hdr ((image_header_t *)addr);
1089
1090 data = addr + sizeof(image_header_t);
1091 len = ntohl(hdr->ih_size);
1092
wdenk4b9206e2004-03-23 22:14:11 +00001093 puts (" Verifying Checksum ... ");
wdenk47d1a6e2002-11-03 00:01:44 +00001094 if (crc32 (0, (char *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk4b9206e2004-03-23 22:14:11 +00001095 puts (" Bad Data CRC\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001096 return 1;
1097 }
wdenk4b9206e2004-03-23 22:14:11 +00001098 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001099 return 0;
1100}
wdenk0d498392003-07-01 21:06:45 +00001101
1102U_BOOT_CMD(
1103 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +00001104 "iminfo - print header information for application image\n",
1105 "addr [addr ...]\n"
1106 " - print header information for application image starting at\n"
1107 " address 'addr' in memory; this includes verification of the\n"
1108 " image contents (magic number, header and payload checksums)\n"
1109);
1110
wdenk47d1a6e2002-11-03 00:01:44 +00001111#endif /* CFG_CMD_IMI */
1112
wdenk27b207f2003-07-24 23:38:38 +00001113#if (CONFIG_COMMANDS & CFG_CMD_IMLS)
1114/*-----------------------------------------------------------------------
1115 * List all images found in flash.
1116 */
1117int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1118{
1119 flash_info_t *info;
1120 int i, j;
1121 image_header_t *hdr;
wdenk5bb226e2003-11-17 21:14:37 +00001122 ulong data, len, checksum;
wdenk27b207f2003-07-24 23:38:38 +00001123
1124 for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) {
1125 if (info->flash_id == FLASH_UNKNOWN)
1126 goto next_bank;
1127 for (j=0; j<CFG_MAX_FLASH_SECT; ++j) {
1128
1129 if (!(hdr=(image_header_t *)info->start[j]) ||
1130 (ntohl(hdr->ih_magic) != IH_MAGIC))
1131 goto next_sector;
1132
1133 /* Copy header so we can blank CRC field for re-calculation */
1134 memmove (&header, (char *)hdr, sizeof(image_header_t));
1135
1136 checksum = ntohl(header.ih_hcrc);
1137 header.ih_hcrc = 0;
1138
1139 if (crc32 (0, (char *)&header, sizeof(image_header_t))
1140 != checksum)
1141 goto next_sector;
1142
1143 printf ("Image at %08lX:\n", (ulong)hdr);
1144 print_image_hdr( hdr );
wdenk5bb226e2003-11-17 21:14:37 +00001145
1146 data = (ulong)hdr + sizeof(image_header_t);
1147 len = ntohl(hdr->ih_size);
1148
wdenk4b9206e2004-03-23 22:14:11 +00001149 puts (" Verifying Checksum ... ");
wdenk5bb226e2003-11-17 21:14:37 +00001150 if (crc32 (0, (char *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk4b9206e2004-03-23 22:14:11 +00001151 puts (" Bad Data CRC\n");
wdenk5bb226e2003-11-17 21:14:37 +00001152 }
wdenk4b9206e2004-03-23 22:14:11 +00001153 puts ("OK\n");
wdenkbdccc4f2003-08-05 17:43:17 +00001154next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001155 }
wdenkbdccc4f2003-08-05 17:43:17 +00001156next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001157 }
1158
1159 return (0);
1160}
1161
1162U_BOOT_CMD(
1163 imls, 1, 1, do_imls,
1164 "imls - list all images found in flash\n",
1165 "\n"
1166 " - Prints information about all images found at sector\n"
1167 " boundaries in flash.\n"
1168);
1169#endif /* CFG_CMD_IMLS */
1170
wdenk47d1a6e2002-11-03 00:01:44 +00001171void
1172print_image_hdr (image_header_t *hdr)
1173{
1174#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1175 time_t timestamp = (time_t)ntohl(hdr->ih_time);
1176 struct rtc_time tm;
1177#endif
1178
1179 printf (" Image Name: %.*s\n", IH_NMLEN, hdr->ih_name);
1180#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1181 to_tm (timestamp, &tm);
1182 printf (" Created: %4d-%02d-%02d %2d:%02d:%02d UTC\n",
1183 tm.tm_year, tm.tm_mon, tm.tm_mday,
1184 tm.tm_hour, tm.tm_min, tm.tm_sec);
1185#endif /* CFG_CMD_DATE, CONFIG_TIMESTAMP */
wdenk4b9206e2004-03-23 22:14:11 +00001186 puts (" Image Type: "); print_type(hdr);
1187 printf ("\n Data Size: %d Bytes = ", ntohl(hdr->ih_size));
wdenk47d1a6e2002-11-03 00:01:44 +00001188 print_size (ntohl(hdr->ih_size), "\n");
wdenk4b9206e2004-03-23 22:14:11 +00001189 printf (" Load Address: %08x\n"
1190 " Entry Point: %08x\n",
1191 ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
wdenk47d1a6e2002-11-03 00:01:44 +00001192
1193 if (hdr->ih_type == IH_TYPE_MULTI) {
1194 int i;
1195 ulong len;
1196 ulong *len_ptr = (ulong *)((ulong)hdr + sizeof(image_header_t));
1197
wdenk4b9206e2004-03-23 22:14:11 +00001198 puts (" Contents:\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001199 for (i=0; (len = ntohl(*len_ptr)); ++i, ++len_ptr) {
1200 printf (" Image %d: %8ld Bytes = ", i, len);
1201 print_size (len, "\n");
1202 }
1203 }
1204}
1205
1206
1207static void
1208print_type (image_header_t *hdr)
1209{
1210 char *os, *arch, *type, *comp;
1211
1212 switch (hdr->ih_os) {
1213 case IH_OS_INVALID: os = "Invalid OS"; break;
1214 case IH_OS_NETBSD: os = "NetBSD"; break;
1215 case IH_OS_LINUX: os = "Linux"; break;
1216 case IH_OS_VXWORKS: os = "VxWorks"; break;
1217 case IH_OS_QNX: os = "QNX"; break;
1218 case IH_OS_U_BOOT: os = "U-Boot"; break;
wdenkd791b1d2003-04-20 14:04:18 +00001219 case IH_OS_RTEMS: os = "RTEMS"; break;
wdenk7f70e852003-05-20 14:25:27 +00001220#ifdef CONFIG_ARTOS
1221 case IH_OS_ARTOS: os = "ARTOS"; break;
1222#endif
wdenk1f4bb372003-07-27 00:21:01 +00001223#ifdef CONFIG_LYNXKDI
1224 case IH_OS_LYNXOS: os = "LynxOS"; break;
1225#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001226 default: os = "Unknown OS"; break;
1227 }
1228
1229 switch (hdr->ih_arch) {
1230 case IH_CPU_INVALID: arch = "Invalid CPU"; break;
1231 case IH_CPU_ALPHA: arch = "Alpha"; break;
1232 case IH_CPU_ARM: arch = "ARM"; break;
1233 case IH_CPU_I386: arch = "Intel x86"; break;
1234 case IH_CPU_IA64: arch = "IA64"; break;
1235 case IH_CPU_MIPS: arch = "MIPS"; break;
1236 case IH_CPU_MIPS64: arch = "MIPS 64 Bit"; break;
1237 case IH_CPU_PPC: arch = "PowerPC"; break;
1238 case IH_CPU_S390: arch = "IBM S390"; break;
1239 case IH_CPU_SH: arch = "SuperH"; break;
1240 case IH_CPU_SPARC: arch = "SPARC"; break;
1241 case IH_CPU_SPARC64: arch = "SPARC 64 Bit"; break;
wdenk8564acf2003-07-14 22:13:32 +00001242 case IH_CPU_M68K: arch = "M68K"; break;
wdenk507bbe32004-04-18 21:13:41 +00001243 case IH_CPU_MICROBLAZE: arch = "Microblaze"; break;
wdenkc1a11c12005-04-03 21:11:16 +00001244 case IH_CPU_NIOS: arch = "Nios"; break;
1245 case IH_CPU_NIOS2: arch = "Nios-II"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001246 default: arch = "Unknown Architecture"; break;
1247 }
1248
1249 switch (hdr->ih_type) {
1250 case IH_TYPE_INVALID: type = "Invalid Image"; break;
1251 case IH_TYPE_STANDALONE:type = "Standalone Program"; break;
1252 case IH_TYPE_KERNEL: type = "Kernel Image"; break;
1253 case IH_TYPE_RAMDISK: type = "RAMDisk Image"; break;
1254 case IH_TYPE_MULTI: type = "Multi-File Image"; break;
1255 case IH_TYPE_FIRMWARE: type = "Firmware"; break;
1256 case IH_TYPE_SCRIPT: type = "Script"; break;
1257 default: type = "Unknown Image"; break;
1258 }
1259
1260 switch (hdr->ih_comp) {
1261 case IH_COMP_NONE: comp = "uncompressed"; break;
1262 case IH_COMP_GZIP: comp = "gzip compressed"; break;
1263 case IH_COMP_BZIP2: comp = "bzip2 compressed"; break;
1264 default: comp = "unknown compression"; break;
1265 }
1266
1267 printf ("%s %s %s (%s)", arch, os, type, comp);
1268}
1269
1270#define ZALLOC_ALIGNMENT 16
1271
1272static void *zalloc(void *x, unsigned items, unsigned size)
1273{
1274 void *p;
1275
1276 size *= items;
1277 size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
1278
1279 p = malloc (size);
1280
1281 return (p);
1282}
1283
1284static void zfree(void *x, void *addr, unsigned nb)
1285{
1286 free (addr);
1287}
1288
1289#define HEAD_CRC 2
1290#define EXTRA_FIELD 4
1291#define ORIG_NAME 8
1292#define COMMENT 0x10
1293#define RESERVED 0xe0
1294
1295#define DEFLATED 8
1296
wdenkeedcd072004-09-08 22:03:11 +00001297int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
wdenk47d1a6e2002-11-03 00:01:44 +00001298{
1299 z_stream s;
1300 int r, i, flags;
1301
1302 /* skip header */
1303 i = 10;
1304 flags = src[3];
1305 if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +00001306 puts ("Error: Bad gzipped data\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001307 return (-1);
1308 }
1309 if ((flags & EXTRA_FIELD) != 0)
1310 i = 12 + src[10] + (src[11] << 8);
1311 if ((flags & ORIG_NAME) != 0)
1312 while (src[i++] != 0)
1313 ;
1314 if ((flags & COMMENT) != 0)
1315 while (src[i++] != 0)
1316 ;
1317 if ((flags & HEAD_CRC) != 0)
1318 i += 2;
1319 if (i >= *lenp) {
wdenk4b9206e2004-03-23 22:14:11 +00001320 puts ("Error: gunzip out of data in header\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001321 return (-1);
1322 }
1323
1324 s.zalloc = zalloc;
1325 s.zfree = zfree;
1326#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
1327 s.outcb = (cb_func)WATCHDOG_RESET;
1328#else
1329 s.outcb = Z_NULL;
1330#endif /* CONFIG_HW_WATCHDOG */
1331
1332 r = inflateInit2(&s, -MAX_WBITS);
1333 if (r != Z_OK) {
1334 printf ("Error: inflateInit2() returned %d\n", r);
1335 return (-1);
1336 }
1337 s.next_in = src + i;
1338 s.avail_in = *lenp - i;
1339 s.next_out = dst;
1340 s.avail_out = dstlen;
1341 r = inflate(&s, Z_FINISH);
1342 if (r != Z_OK && r != Z_STREAM_END) {
1343 printf ("Error: inflate() returned %d\n", r);
1344 return (-1);
1345 }
1346 *lenp = s.next_out - (unsigned char *) dst;
1347 inflateEnd(&s);
1348
1349 return (0);
1350}
1351
wdenkc29fdfc2003-08-29 20:57:53 +00001352#ifdef CONFIG_BZIP2
1353void bz_internal_error(int errcode)
1354{
1355 printf ("BZIP2 internal error %d\n", errcode);
1356}
1357#endif /* CONFIG_BZIP2 */
1358
wdenkd791b1d2003-04-20 14:04:18 +00001359static void
1360do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1361 ulong addr, ulong *len_ptr, int verify)
1362{
1363 DECLARE_GLOBAL_DATA_PTR;
1364 image_header_t *hdr = &header;
1365 void (*entry_point)(bd_t *);
1366
1367 entry_point = (void (*)(bd_t *)) hdr->ih_ep;
1368
1369 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1370 (ulong)entry_point);
1371
1372 SHOW_BOOT_PROGRESS (15);
1373
1374 /*
1375 * RTEMS Parameters:
1376 * r3: ptr to board info data
1377 */
1378
1379 (*entry_point ) ( gd->bd );
1380}
1381
wdenk47d1a6e2002-11-03 00:01:44 +00001382#if (CONFIG_COMMANDS & CFG_CMD_ELF)
1383static void
1384do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1385 ulong addr, ulong *len_ptr, int verify)
1386{
1387 image_header_t *hdr = &header;
1388 char str[80];
1389
1390 sprintf(str, "%x", hdr->ih_ep); /* write entry-point into string */
1391 setenv("loadaddr", str);
1392 do_bootvx(cmdtp, 0, 0, NULL);
1393}
1394
1395static void
1396do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1397 ulong addr, ulong *len_ptr, int verify)
1398{
1399 image_header_t *hdr = &header;
1400 char *local_args[2];
1401 char str[16];
1402
1403 sprintf(str, "%x", hdr->ih_ep); /* write entry-point into string */
1404 local_args[0] = argv[0];
1405 local_args[1] = str; /* and provide it via the arguments */
1406 do_bootelf(cmdtp, 0, 2, local_args);
1407}
1408#endif /* CFG_CMD_ELF */
wdenk1f4bb372003-07-27 00:21:01 +00001409
1410#ifdef CONFIG_LYNXKDI
1411static void
1412do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
1413 int argc, char *argv[],
1414 ulong addr,
1415 ulong *len_ptr,
1416 int verify)
1417{
1418 lynxkdi_boot( &header );
1419}
1420
1421#endif /* CONFIG_LYNXKDI */