blob: a20e5841b703219b4a62d55c62ecb1849d718f27 [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>
wdenk710e3502003-08-29 20:57:53 +000033#include <bzlib.h>
wdenk0893c472003-05-20 14:25:27 +000034#include <environment.h>
wdenk47d1a6e2002-11-03 00:01:44 +000035#include <asm/byteorder.h>
wdenk57b2d802003-06-27 21:31:46 +000036
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +020037#ifdef CONFIG_OF_FLAT_TREE
38#include <ft_build.h>
39#endif
40
wdenk57b2d802003-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
wdenk9dfa8d12002-12-08 09:53:23 +000063#ifdef CONFIG_LOGBUFFER
64#include <logbuff.h>
65#endif
66
wdenk381669a2003-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
wdenka0ebde52004-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
wdenk874ac262003-07-24 23:38:38 +000088
89#if (CONFIG_COMMANDS & CFG_CMD_IMLS)
90#include <flash.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020091extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk874ac262003-07-24 23:38:38 +000092static 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
wdenk591dda52002-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
wdenk57b2d802003-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
wdenk591dda52002-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
wdenk808532a2003-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;
wdenk92bbe3f2003-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 */
wdenk0893c472003-05-20 14:25:27 +0000135#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
136static boot_os_Fcn do_bootm_artos;
137#endif
wdenke58b0dc2003-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;
wdenk710e3502003-08-29 20:57:53 +0000153 uint unc_len = 0x400000;
wdenk47d1a6e2002-11-03 00:01:44 +0000154 int i, verify;
155 char *name, *s;
wdenk655a0f92003-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 */
wdenk381669a2003-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) {
wdenk591dda52002-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 {
wdenk42c05472004-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;
wdenk591dda52002-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
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200204 if (crc32 (0, (uchar *)data, len) != checksum) {
wdenk42c05472004-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 Denk63e44ff2005-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 */
wdenka983cc22003-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) {
wdenk42c05472004-03-23 22:14:11 +0000227 puts (" Verifying Checksum ... ");
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200228 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000229 printf ("Bad Data CRC\n");
230 SHOW_BOOT_PROGRESS (-3);
231 return 1;
232 }
wdenk42c05472004-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
wdenk591dda52002-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)
wdenk4fc95692003-02-28 00:49:47 +0000245#elif defined(__mips__)
wdenk57b2d802003-06-27 21:31:46 +0000246 if (hdr->ih_arch != IH_CPU_MIPS)
wdenk60164a82003-10-08 23:26:14 +0000247#elif defined(__nios__)
248 if (hdr->ih_arch != IH_CPU_NIOS)
wdenkabf7a7c2003-12-08 01:34:36 +0000249#elif defined(__M68K__)
250 if (hdr->ih_arch != IH_CPU_M68K)
wdenk12490652004-04-18 21:13:41 +0000251#elif defined(__microblaze__)
252 if (hdr->ih_arch != IH_CPU_MICROBLAZE)
wdenkef3386f2004-10-10 21:27:30 +0000253#elif defined(__nios2__)
254 if (hdr->ih_arch != IH_CPU_NIOS2)
Wolfgang Denk46d2b522006-03-12 02:10:00 +0100255#elif defined(__blackfin__)
256 if (hdr->ih_arch != IH_CPU_BLACKFIN)
wdenk591dda52002-11-18 00:14:45 +0000257#else
258# error Unknown CPU type
259#endif
260 {
261 printf ("Unsupported Architecture 0x%x\n", hdr->ih_arch);
wdenk47d1a6e2002-11-03 00:01:44 +0000262 SHOW_BOOT_PROGRESS (-4);
263 return 1;
264 }
265 SHOW_BOOT_PROGRESS (5);
266
267 switch (hdr->ih_type) {
wdenk655a0f92003-10-30 21:49:38 +0000268 case IH_TYPE_STANDALONE:
269 name = "Standalone Application";
270 /* A second argument overwrites the load address */
271 if (argc > 2) {
wdenkd1894de2005-06-20 10:17:34 +0000272 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
wdenk655a0f92003-10-30 21:49:38 +0000273 }
274 break;
275 case IH_TYPE_KERNEL:
276 name = "Kernel Image";
277 break;
wdenk1ebf41e2004-01-02 14:00:00 +0000278 case IH_TYPE_MULTI:
wdenk655a0f92003-10-30 21:49:38 +0000279 name = "Multi-File Image";
280 len = ntohl(len_ptr[0]);
281 /* OS kernel is always the first image */
282 data += 8; /* kernel_len + terminator */
283 for (i=1; len_ptr[i]; ++i)
284 data += 4;
285 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000286 default: printf ("Wrong Image Type for %s command\n", cmdtp->name);
287 SHOW_BOOT_PROGRESS (-5);
288 return 1;
289 }
290 SHOW_BOOT_PROGRESS (6);
291
292 /*
293 * We have reached the point of no return: we are going to
294 * overwrite all exception vector code, so we cannot easily
295 * recover from any failures any more...
296 */
297
298 iflag = disable_interrupts();
299
wdenk452cfd62002-11-19 11:04:11 +0000300#ifdef CONFIG_AMIGAONEG3SE
301 /*
wdenk57b2d802003-06-27 21:31:46 +0000302 * We've possible left the caches enabled during
wdenk452cfd62002-11-19 11:04:11 +0000303 * bios emulation, so turn them off again
304 */
305 icache_disable();
306 invalidate_l1_instruction_cache();
307 flush_data_cache();
308 dcache_disable();
309#endif
310
wdenk47d1a6e2002-11-03 00:01:44 +0000311 switch (hdr->ih_comp) {
312 case IH_COMP_NONE:
wdenk591dda52002-11-18 00:14:45 +0000313 if(ntohl(hdr->ih_load) == addr) {
wdenk47d1a6e2002-11-03 00:01:44 +0000314 printf (" XIP %s ... ", name);
315 } else {
316#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
317 size_t l = len;
318 void *to = (void *)ntohl(hdr->ih_load);
319 void *from = (void *)data;
320
321 printf (" Loading %s ... ", name);
322
323 while (l > 0) {
324 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
325 WATCHDOG_RESET();
326 memmove (to, from, tail);
327 to += tail;
328 from += tail;
329 l -= tail;
330 }
331#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
332 memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len);
333#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
334 }
335 break;
336 case IH_COMP_GZIP:
337 printf (" Uncompressing %s ... ", name);
wdenk710e3502003-08-29 20:57:53 +0000338 if (gunzip ((void *)ntohl(hdr->ih_load), unc_len,
wdenka0ebde52004-09-08 22:03:11 +0000339 (uchar *)data, &len) != 0) {
wdenk42c05472004-03-23 22:14:11 +0000340 puts ("GUNZIP ERROR - must RESET board to recover\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000341 SHOW_BOOT_PROGRESS (-6);
342 do_reset (cmdtp, flag, argc, argv);
343 }
344 break;
wdenk710e3502003-08-29 20:57:53 +0000345#ifdef CONFIG_BZIP2
346 case IH_COMP_BZIP2:
347 printf (" Uncompressing %s ... ", name);
wdenk2cefd152004-02-08 22:55:38 +0000348 /*
349 * If we've got less than 4 MB of malloc() space,
350 * use slower decompression algorithm which requires
351 * at most 2300 KB of memory.
352 */
wdenk710e3502003-08-29 20:57:53 +0000353 i = BZ2_bzBuffToBuffDecompress ((char*)ntohl(hdr->ih_load),
wdenk2cefd152004-02-08 22:55:38 +0000354 &unc_len, (char *)data, len,
355 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenk710e3502003-08-29 20:57:53 +0000356 if (i != BZ_OK) {
357 printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
358 SHOW_BOOT_PROGRESS (-6);
359 udelay(100000);
360 do_reset (cmdtp, flag, argc, argv);
361 }
362 break;
363#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000364 default:
365 if (iflag)
366 enable_interrupts();
367 printf ("Unimplemented compression type %d\n", hdr->ih_comp);
368 SHOW_BOOT_PROGRESS (-7);
369 return 1;
370 }
wdenk42c05472004-03-23 22:14:11 +0000371 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000372 SHOW_BOOT_PROGRESS (7);
373
374 switch (hdr->ih_type) {
375 case IH_TYPE_STANDALONE:
wdenk47d1a6e2002-11-03 00:01:44 +0000376 if (iflag)
377 enable_interrupts();
378
wdenk3f9ab982003-04-12 23:38:12 +0000379 /* load (and uncompress), but don't start if "autostart"
380 * is set to "no"
381 */
wdenk60164a82003-10-08 23:26:14 +0000382 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) {
383 char buf[32];
384 sprintf(buf, "%lX", len);
385 setenv("filesize", buf);
wdenk3f9ab982003-04-12 23:38:12 +0000386 return 0;
wdenk60164a82003-10-08 23:26:14 +0000387 }
wdenk655a0f92003-10-30 21:49:38 +0000388 appl = (int (*)(int, char *[]))ntohl(hdr->ih_ep);
389 (*appl)(argc-1, &argv[1]);
wdenk3f9ab982003-04-12 23:38:12 +0000390 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000391 case IH_TYPE_KERNEL:
392 case IH_TYPE_MULTI:
393 /* handled below */
394 break;
395 default:
396 if (iflag)
397 enable_interrupts();
398 printf ("Can't boot image type %d\n", hdr->ih_type);
399 SHOW_BOOT_PROGRESS (-8);
400 return 1;
401 }
402 SHOW_BOOT_PROGRESS (8);
403
404 switch (hdr->ih_os) {
405 default: /* handled by (original) Linux case */
406 case IH_OS_LINUX:
wdenk808532a2003-10-10 10:05:42 +0000407#ifdef CONFIG_SILENT_CONSOLE
408 fixup_silent_linux();
409#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000410 do_bootm_linux (cmdtp, flag, argc, argv,
411 addr, len_ptr, verify);
412 break;
413 case IH_OS_NETBSD:
414 do_bootm_netbsd (cmdtp, flag, argc, argv,
415 addr, len_ptr, verify);
416 break;
wdenke58b0dc2003-07-27 00:21:01 +0000417
418#ifdef CONFIG_LYNXKDI
419 case IH_OS_LYNXOS:
420 do_bootm_lynxkdi (cmdtp, flag, argc, argv,
421 addr, len_ptr, verify);
422 break;
423#endif
wdenk57b2d802003-06-27 21:31:46 +0000424
wdenk92bbe3f2003-04-20 14:04:18 +0000425 case IH_OS_RTEMS:
426 do_bootm_rtems (cmdtp, flag, argc, argv,
427 addr, len_ptr, verify);
428 break;
wdenk57b2d802003-06-27 21:31:46 +0000429
wdenk47d1a6e2002-11-03 00:01:44 +0000430#if (CONFIG_COMMANDS & CFG_CMD_ELF)
431 case IH_OS_VXWORKS:
432 do_bootm_vxworks (cmdtp, flag, argc, argv,
433 addr, len_ptr, verify);
434 break;
435 case IH_OS_QNX:
436 do_bootm_qnxelf (cmdtp, flag, argc, argv,
437 addr, len_ptr, verify);
438 break;
439#endif /* CFG_CMD_ELF */
wdenk0893c472003-05-20 14:25:27 +0000440#ifdef CONFIG_ARTOS
441 case IH_OS_ARTOS:
442 do_bootm_artos (cmdtp, flag, argc, argv,
443 addr, len_ptr, verify);
444 break;
445#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000446 }
447
448 SHOW_BOOT_PROGRESS (-9);
449#ifdef DEBUG
wdenk42c05472004-03-23 22:14:11 +0000450 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000451 do_reset (cmdtp, flag, argc, argv);
452#endif
453 return 1;
454}
455
wdenkf287a242003-07-01 21:06:45 +0000456U_BOOT_CMD(
457 bootm, CFG_MAXARGS, 1, do_bootm,
wdenk57b2d802003-06-27 21:31:46 +0000458 "bootm - boot application image from memory\n",
459 "[addr [arg ...]]\n - boot application image stored in memory\n"
wdenk20dd2fa2004-11-21 00:06:33 +0000460 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
461 "\t'arg' can be the address of an initrd image\n"
wdenk57b2d802003-06-27 21:31:46 +0000462);
463
wdenk808532a2003-10-10 10:05:42 +0000464#ifdef CONFIG_SILENT_CONSOLE
465static void
466fixup_silent_linux ()
467{
468 DECLARE_GLOBAL_DATA_PTR;
469 char buf[256], *start, *end;
470 char *cmdline = getenv ("bootargs");
471
472 /* Only fix cmdline when requested */
473 if (!(gd->flags & GD_FLG_SILENT))
474 return;
475
476 debug ("before silent fix-up: %s\n", cmdline);
477 if (cmdline) {
478 if ((start = strstr (cmdline, "console=")) != NULL) {
479 end = strchr (start, ' ');
480 strncpy (buf, cmdline, (start - cmdline + 8));
481 if (end)
482 strcpy (buf + (start - cmdline + 8), end);
483 else
484 buf[start - cmdline + 8] = '\0';
485 } else {
486 strcpy (buf, cmdline);
487 strcat (buf, " console=");
488 }
489 } else {
490 strcpy (buf, "console=");
491 }
492
493 setenv ("bootargs", buf);
494 debug ("after silent fix-up: %s\n", buf);
495}
496#endif /* CONFIG_SILENT_CONSOLE */
497
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200498#ifdef CONFIG_OF_FLAT_TREE
499extern const unsigned char oftree_dtb[];
500extern const unsigned int oftree_dtb_len;
501#endif
502
wdenk591dda52002-11-18 00:14:45 +0000503#ifdef CONFIG_PPC
wdenk47d1a6e2002-11-03 00:01:44 +0000504static void
505do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
506 int argc, char *argv[],
507 ulong addr,
508 ulong *len_ptr,
509 int verify)
510{
511 DECLARE_GLOBAL_DATA_PTR;
512
513 ulong sp;
514 ulong len, checksum;
515 ulong initrd_start, initrd_end;
516 ulong cmd_start, cmd_end;
517 ulong initrd_high;
518 ulong data;
wdenk6f770ed2003-05-23 23:18:21 +0000519 int initrd_copy_to_ram = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000520 char *cmdline;
521 char *s;
522 bd_t *kbd;
523 void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
524 image_header_t *hdr = &header;
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200525#ifdef CONFIG_OF_FLAT_TREE
526 char *of_flat_tree;
527#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000528
529 if ((s = getenv ("initrd_high")) != NULL) {
530 /* a value of "no" or a similar string will act like 0,
531 * turning the "load high" feature off. This is intentional.
532 */
533 initrd_high = simple_strtoul(s, NULL, 16);
wdenk6f770ed2003-05-23 23:18:21 +0000534 if (initrd_high == ~0)
535 initrd_copy_to_ram = 0;
wdenk9dfa8d12002-12-08 09:53:23 +0000536 } else { /* not set, no restrictions to load high */
wdenk47d1a6e2002-11-03 00:01:44 +0000537 initrd_high = ~0;
538 }
539
wdenk56f94be2002-11-05 16:35:14 +0000540#ifdef CONFIG_LOGBUFFER
wdenk34b613e2002-12-17 01:51:00 +0000541 kbd=gd->bd;
wdenk9dfa8d12002-12-08 09:53:23 +0000542 /* Prevent initrd from overwriting logbuffer */
543 if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD))
544 initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD;
545 debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN);
wdenk56f94be2002-11-05 16:35:14 +0000546#endif
547
wdenk47d1a6e2002-11-03 00:01:44 +0000548 /*
549 * Booting a (Linux) kernel image
550 *
551 * Allocate space for command line and board info - the
552 * address should be as high as possible within the reach of
553 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
554 * memory, which means far enough below the current stack
555 * pointer.
556 */
557
558 asm( "mr %0,1": "=r"(sp) : );
559
wdenk56f94be2002-11-05 16:35:14 +0000560 debug ("## Current stack ends at 0x%08lX ", sp);
561
wdenk47d1a6e2002-11-03 00:01:44 +0000562 sp -= 2048; /* just to be sure */
563 if (sp > CFG_BOOTMAPSZ)
564 sp = CFG_BOOTMAPSZ;
565 sp &= ~0xF;
566
wdenk56f94be2002-11-05 16:35:14 +0000567 debug ("=> set upper limit to 0x%08lX\n", sp);
568
wdenk47d1a6e2002-11-03 00:01:44 +0000569 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
570 kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF);
571
572 if ((s = getenv("bootargs")) == NULL)
573 s = "";
574
575 strcpy (cmdline, s);
576
577 cmd_start = (ulong)&cmdline[0];
578 cmd_end = cmd_start + strlen(cmdline);
579
580 *kbd = *(gd->bd);
581
582#ifdef DEBUG
583 printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
584
585 do_bdinfo (NULL, 0, 0, NULL);
586#endif
587
588 if ((s = getenv ("clocks_in_mhz")) != NULL) {
589 /* convert all clock information to MHz */
590 kbd->bi_intfreq /= 1000000L;
591 kbd->bi_busfreq /= 1000000L;
wdenk337f5652004-10-28 00:09:35 +0000592#if defined(CONFIG_MPC8220)
wdenk20dd2fa2004-11-21 00:06:33 +0000593 kbd->bi_inpfreq /= 1000000L;
594 kbd->bi_pcifreq /= 1000000L;
595 kbd->bi_pevfreq /= 1000000L;
596 kbd->bi_flbfreq /= 1000000L;
597 kbd->bi_vcofreq /= 1000000L;
wdenk337f5652004-10-28 00:09:35 +0000598#endif
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500599#if defined(CONFIG_CPM2)
wdenk47d1a6e2002-11-03 00:01:44 +0000600 kbd->bi_cpmfreq /= 1000000L;
601 kbd->bi_brgfreq /= 1000000L;
602 kbd->bi_sccfreq /= 1000000L;
603 kbd->bi_vco /= 1000000L;
Jon Loeligerf5ad3782005-07-23 10:37:35 -0500604#endif
wdenkbe9c1cb2004-02-24 02:00:03 +0000605#if defined(CONFIG_MPC5xxx)
wdenk21136db2003-07-16 21:53:01 +0000606 kbd->bi_ipbfreq /= 1000000L;
607 kbd->bi_pcifreq /= 1000000L;
wdenkbe9c1cb2004-02-24 02:00:03 +0000608#endif /* CONFIG_MPC5xxx */
wdenk47d1a6e2002-11-03 00:01:44 +0000609 }
610
Wolfgang Denkb6929f92006-03-12 01:59:35 +0100611 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong)) ntohl(hdr->ih_ep);
wdenk47d1a6e2002-11-03 00:01:44 +0000612
613 /*
614 * Check if there is an initrd image
615 */
616 if (argc >= 3) {
617 SHOW_BOOT_PROGRESS (9);
618
619 addr = simple_strtoul(argv[2], NULL, 16);
620
621 printf ("## Loading RAMDisk Image at %08lx ...\n", addr);
622
623 /* Copy header so we can blank CRC field for re-calculation */
624 memmove (&header, (char *)addr, sizeof(image_header_t));
625
Wolfgang Denkb6929f92006-03-12 01:59:35 +0100626 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk42c05472004-03-23 22:14:11 +0000627 puts ("Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000628 SHOW_BOOT_PROGRESS (-10);
629 do_reset (cmdtp, flag, argc, argv);
630 }
631
632 data = (ulong)&header;
633 len = sizeof(image_header_t);
634
Wolfgang Denkb6929f92006-03-12 01:59:35 +0100635 checksum = ntohl(hdr->ih_hcrc);
wdenk47d1a6e2002-11-03 00:01:44 +0000636 hdr->ih_hcrc = 0;
637
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200638 if (crc32 (0, (uchar *)data, len) != checksum) {
wdenk42c05472004-03-23 22:14:11 +0000639 puts ("Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000640 SHOW_BOOT_PROGRESS (-11);
641 do_reset (cmdtp, flag, argc, argv);
642 }
643
644 SHOW_BOOT_PROGRESS (10);
645
646 print_image_hdr (hdr);
647
648 data = addr + sizeof(image_header_t);
Wolfgang Denkb6929f92006-03-12 01:59:35 +0100649 len = ntohl(hdr->ih_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000650
651 if (verify) {
652 ulong csum = 0;
653#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
654 ulong cdata = data, edata = cdata + len;
655#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
656
wdenk42c05472004-03-23 22:14:11 +0000657 puts (" Verifying Checksum ... ");
wdenk47d1a6e2002-11-03 00:01:44 +0000658
659#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
660
661 while (cdata < edata) {
662 ulong chunk = edata - cdata;
663
664 if (chunk > CHUNKSZ)
665 chunk = CHUNKSZ;
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200666 csum = crc32 (csum, (uchar *)cdata, chunk);
wdenk47d1a6e2002-11-03 00:01:44 +0000667 cdata += chunk;
668
669 WATCHDOG_RESET();
670 }
671#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Wolfgang Denk7fb52662005-10-13 16:45:02 +0200672 csum = crc32 (0, (uchar *)data, len);
wdenk47d1a6e2002-11-03 00:01:44 +0000673#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
674
Wolfgang Denkb6929f92006-03-12 01:59:35 +0100675 if (csum != ntohl(hdr->ih_dcrc)) {
wdenk42c05472004-03-23 22:14:11 +0000676 puts ("Bad Data CRC\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000677 SHOW_BOOT_PROGRESS (-12);
678 do_reset (cmdtp, flag, argc, argv);
679 }
wdenk42c05472004-03-23 22:14:11 +0000680 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000681 }
682
683 SHOW_BOOT_PROGRESS (11);
684
685 if ((hdr->ih_os != IH_OS_LINUX) ||
686 (hdr->ih_arch != IH_CPU_PPC) ||
687 (hdr->ih_type != IH_TYPE_RAMDISK) ) {
wdenk42c05472004-03-23 22:14:11 +0000688 puts ("No Linux PPC Ramdisk Image\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000689 SHOW_BOOT_PROGRESS (-13);
690 do_reset (cmdtp, flag, argc, argv);
691 }
692
693 /*
694 * Now check if we have a multifile image
695 */
696 } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) {
697 u_long tail = ntohl(len_ptr[0]) % 4;
698 int i;
699
700 SHOW_BOOT_PROGRESS (13);
701
702 /* skip kernel length and terminator */
703 data = (ulong)(&len_ptr[2]);
704 /* skip any additional image length fields */
705 for (i=1; len_ptr[i]; ++i)
706 data += 4;
707 /* add kernel length, and align */
708 data += ntohl(len_ptr[0]);
709 if (tail) {
710 data += 4 - tail;
711 }
712
713 len = ntohl(len_ptr[1]);
714
715 } else {
716 /*
717 * no initrd image
718 */
719 SHOW_BOOT_PROGRESS (14);
720
721 len = data = 0;
722 }
723
wdenk47d1a6e2002-11-03 00:01:44 +0000724 if (!data) {
wdenk56f94be2002-11-05 16:35:14 +0000725 debug ("No initrd\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000726 }
wdenk47d1a6e2002-11-03 00:01:44 +0000727
728 if (data) {
wdenk6f770ed2003-05-23 23:18:21 +0000729 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
730 initrd_start = data;
731 initrd_end = initrd_start + len;
732 } else {
wdenk47d1a6e2002-11-03 00:01:44 +0000733 initrd_start = (ulong)kbd - len;
734 initrd_start &= ~(4096 - 1); /* align on page */
735
736 if (initrd_high) {
737 ulong nsp;
738
739 /*
740 * the inital ramdisk does not need to be within
741 * CFG_BOOTMAPSZ as it is not accessed until after
742 * the mm system is initialised.
743 *
744 * do the stack bottom calculation again and see if
745 * the initrd will fit just below the monitor stack
746 * bottom without overwriting the area allocated
747 * above for command line args and board info.
748 */
749 asm( "mr %0,1": "=r"(nsp) : );
750 nsp -= 2048; /* just to be sure */
751 nsp &= ~0xF;
752 if (nsp > initrd_high) /* limit as specified */
753 nsp = initrd_high;
754 nsp -= len;
755 nsp &= ~(4096 - 1); /* align on page */
756 if (nsp >= sp)
757 initrd_start = nsp;
758 }
759
760 SHOW_BOOT_PROGRESS (12);
wdenk56f94be2002-11-05 16:35:14 +0000761
762 debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
wdenk47d1a6e2002-11-03 00:01:44 +0000763 data, data + len - 1, len, len);
wdenk56f94be2002-11-05 16:35:14 +0000764
wdenk47d1a6e2002-11-03 00:01:44 +0000765 initrd_end = initrd_start + len;
766 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
767 initrd_start, initrd_end);
768#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
769 {
770 size_t l = len;
771 void *to = (void *)initrd_start;
772 void *from = (void *)data;
773
774 while (l > 0) {
775 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
776 WATCHDOG_RESET();
777 memmove (to, from, tail);
778 to += tail;
779 from += tail;
780 l -= tail;
781 }
782 }
783#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
784 memmove ((void *)initrd_start, (void *)data, len);
785#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
wdenk42c05472004-03-23 22:14:11 +0000786 puts ("OK\n");
wdenk6f770ed2003-05-23 23:18:21 +0000787 }
wdenk47d1a6e2002-11-03 00:01:44 +0000788 } else {
789 initrd_start = 0;
790 initrd_end = 0;
791 }
792
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200793#ifdef CONFIG_OF_FLAT_TREE
794 if (initrd_start == 0)
795 of_flat_tree = (char *)(((ulong)kbd - OF_FLAT_TREE_MAX_SIZE -
796 sizeof(bd_t)) & ~0xF);
797 else
798 of_flat_tree = (char *)((initrd_start - OF_FLAT_TREE_MAX_SIZE -
799 sizeof(bd_t)) & ~0xF);
800#endif
wdenk56f94be2002-11-05 16:35:14 +0000801
802 debug ("## Transferring control to Linux (at address %08lx) ...\n",
wdenk47d1a6e2002-11-03 00:01:44 +0000803 (ulong)kernel);
wdenk56f94be2002-11-05 16:35:14 +0000804
wdenk47d1a6e2002-11-03 00:01:44 +0000805 SHOW_BOOT_PROGRESS (15);
806
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200807#ifndef CONFIG_OF_FLAT_TREE
808
wdenk9c53f402003-10-15 23:53:47 +0000809#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
wdenk47d1a6e2002-11-03 00:01:44 +0000810 unlock_ram_in_cache();
811#endif
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200812
wdenk47d1a6e2002-11-03 00:01:44 +0000813 /*
814 * Linux Kernel Parameters:
815 * r3: ptr to board info data
816 * r4: initrd_start or 0 if no initrd
817 * r5: initrd_end - unused if r4 is 0
818 * r6: Start of command line string
819 * r7: End of command line string
820 */
821 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200822
823#else
Kumar Galaa8b76de2006-01-11 16:41:35 -0600824 ft_setup(of_flat_tree, OF_FLAT_TREE_MAX_SIZE, kbd, initrd_start, initrd_end);
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200825 /* ft_dump_blob(of_flat_tree); */
826
827#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
828 unlock_ram_in_cache();
829#endif
830 /*
831 * Linux Kernel Parameters:
832 * r3: ptr to OF flat tree, followed by the board info data
Kumar Galaa8b76de2006-01-11 16:41:35 -0600833 * r4: physical pointer to the kernel itself
834 * r5: NULL
835 * r6: NULL
836 * r7: NULL
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200837 */
Kumar Galaa8b76de2006-01-11 16:41:35 -0600838 if (getenv("disable_of") != NULL)
839 (*kernel) ((bd_t *)of_flat_tree, initrd_start, initrd_end,
840 cmd_start, cmd_end);
841 else
842 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
Wolfgang Denk27a5b0b2005-10-13 01:45:54 +0200843
844#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000845}
wdenk1fe2c702003-03-06 21:55:29 +0000846#endif /* CONFIG_PPC */
wdenk47d1a6e2002-11-03 00:01:44 +0000847
848static void
849do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
850 int argc, char *argv[],
851 ulong addr,
852 ulong *len_ptr,
853 int verify)
854{
855 DECLARE_GLOBAL_DATA_PTR;
856
857 image_header_t *hdr = &header;
858
859 void (*loader)(bd_t *, image_header_t *, char *, char *);
860 image_header_t *img_addr;
861 char *consdev;
862 char *cmdline;
863
864
865 /*
866 * Booting a (NetBSD) kernel image
867 *
868 * This process is pretty similar to a standalone application:
869 * The (first part of an multi-) image must be a stage-2 loader,
870 * which in turn is responsible for loading & invoking the actual
871 * kernel. The only differences are the parameters being passed:
872 * besides the board info strucure, the loader expects a command
873 * line, the name of the console device, and (optionally) the
874 * address of the original image header.
875 */
876
877 img_addr = 0;
878 if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]))
879 img_addr = (image_header_t *) addr;
880
881
882 consdev = "";
883#if defined (CONFIG_8xx_CONS_SMC1)
884 consdev = "smc1";
885#elif defined (CONFIG_8xx_CONS_SMC2)
886 consdev = "smc2";
887#elif defined (CONFIG_8xx_CONS_SCC2)
888 consdev = "scc2";
889#elif defined (CONFIG_8xx_CONS_SCC3)
890 consdev = "scc3";
891#endif
892
893 if (argc > 2) {
894 ulong len;
895 int i;
896
897 for (i=2, len=0 ; i<argc ; i+=1)
898 len += strlen (argv[i]) + 1;
899 cmdline = malloc (len);
900
901 for (i=2, len=0 ; i<argc ; i+=1) {
902 if (i > 2)
903 cmdline[len++] = ' ';
904 strcpy (&cmdline[len], argv[i]);
905 len += strlen (argv[i]);
906 }
907 } else if ((cmdline = getenv("bootargs")) == NULL) {
908 cmdline = "";
909 }
910
Wolfgang Denkb6929f92006-03-12 01:59:35 +0100911 loader = (void (*)(bd_t *, image_header_t *, char *, char *)) ntohl(hdr->ih_ep);
wdenk47d1a6e2002-11-03 00:01:44 +0000912
913 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
914 (ulong)loader);
915
916 SHOW_BOOT_PROGRESS (15);
917
918 /*
919 * NetBSD Stage-2 Loader Parameters:
920 * r3: ptr to board info data
921 * r4: image address
922 * r5: console device
923 * r6: boot args string
924 */
925 (*loader) (gd->bd, img_addr, consdev, cmdline);
926}
wdenk0893c472003-05-20 14:25:27 +0000927
928#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
929
930/* Function that returns a character from the environment */
931extern uchar (*env_get_char)(int);
932
933static void
934do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
935 int argc, char *argv[],
936 ulong addr,
937 ulong *len_ptr,
938 int verify)
939{
940 DECLARE_GLOBAL_DATA_PTR;
941 ulong top;
942 char *s, *cmdline;
943 char **fwenv, **ss;
944 int i, j, nxt, len, envno, envsz;
945 bd_t *kbd;
946 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
947 image_header_t *hdr = &header;
948
949 /*
950 * Booting an ARTOS kernel image + application
951 */
952
953 /* this used to be the top of memory, but was wrong... */
954#ifdef CONFIG_PPC
955 /* get stack pointer */
956 asm volatile ("mr %0,1" : "=r"(top) );
957#endif
958 debug ("## Current stack ends at 0x%08lX ", top);
959
960 top -= 2048; /* just to be sure */
961 if (top > CFG_BOOTMAPSZ)
962 top = CFG_BOOTMAPSZ;
963 top &= ~0xF;
964
965 debug ("=> set upper limit to 0x%08lX\n", top);
966
967 /* first check the artos specific boot args, then the linux args*/
968 if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL)
969 s = "";
970
971 /* get length of cmdline, and place it */
972 len = strlen(s);
973 top = (top - (len + 1)) & ~0xF;
974 cmdline = (char *)top;
975 debug ("## cmdline at 0x%08lX ", top);
976 strcpy(cmdline, s);
977
978 /* copy bdinfo */
979 top = (top - sizeof(bd_t)) & ~0xF;
980 debug ("## bd at 0x%08lX ", top);
981 kbd = (bd_t *)top;
982 memcpy(kbd, gd->bd, sizeof(bd_t));
983
984 /* first find number of env entries, and their size */
985 envno = 0;
986 envsz = 0;
987 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
988 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
989 ;
990 envno++;
991 envsz += (nxt - i) + 1; /* plus trailing zero */
992 }
993 envno++; /* plus the terminating zero */
994 debug ("## %u envvars total size %u ", envno, envsz);
995
996 top = (top - sizeof(char **)*envno) & ~0xF;
997 fwenv = (char **)top;
998 debug ("## fwenv at 0x%08lX ", top);
999
1000 top = (top - envsz) & ~0xF;
1001 s = (char *)top;
1002 ss = fwenv;
1003
1004 /* now copy them */
1005 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1006 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1007 ;
1008 *ss++ = s;
1009 for (j = i; j < nxt; ++j)
1010 *s++ = env_get_char(j);
1011 *s++ = '\0';
1012 }
1013 *ss++ = NULL; /* terminate */
1014
1015 entry = (void (*)(bd_t *, char *, char **, ulong))ntohl(hdr->ih_ep);
1016 (*entry)(kbd, cmdline, fwenv, top);
1017}
1018#endif
1019
wdenk47d1a6e2002-11-03 00:01:44 +00001020
1021#if (CONFIG_COMMANDS & CFG_CMD_BOOTD)
1022int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1023{
1024 int rcode = 0;
1025#ifndef CFG_HUSH_PARSER
1026 if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1;
1027#else
1028 if (parse_string_outer(getenv("bootcmd"),
1029 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1;
1030#endif
1031 return rcode;
1032}
wdenk57b2d802003-06-27 21:31:46 +00001033
wdenkf287a242003-07-01 21:06:45 +00001034U_BOOT_CMD(
1035 boot, 1, 1, do_bootd,
wdenk3086a972003-06-28 23:11:04 +00001036 "boot - boot default, i.e., run 'bootcmd'\n",
1037 NULL
1038);
1039
1040/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +00001041U_BOOT_CMD(
1042 bootd, 1, 1, do_bootd,
wdenk57b2d802003-06-27 21:31:46 +00001043 "bootd - boot default, i.e., run 'bootcmd'\n",
1044 NULL
1045);
1046
wdenk47d1a6e2002-11-03 00:01:44 +00001047#endif
1048
1049#if (CONFIG_COMMANDS & CFG_CMD_IMI)
1050int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1051{
1052 int arg;
1053 ulong addr;
1054 int rcode=0;
1055
1056 if (argc < 2) {
1057 return image_info (load_addr);
1058 }
1059
1060 for (arg=1; arg <argc; ++arg) {
1061 addr = simple_strtoul(argv[arg], NULL, 16);
1062 if (image_info (addr) != 0) rcode = 1;
1063 }
1064 return rcode;
1065}
1066
1067static int image_info (ulong addr)
1068{
1069 ulong data, len, checksum;
1070 image_header_t *hdr = &header;
1071
1072 printf ("\n## Checking Image at %08lx ...\n", addr);
1073
1074 /* Copy header so we can blank CRC field for re-calculation */
1075 memmove (&header, (char *)addr, sizeof(image_header_t));
1076
1077 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk42c05472004-03-23 22:14:11 +00001078 puts (" Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001079 return 1;
1080 }
1081
1082 data = (ulong)&header;
1083 len = sizeof(image_header_t);
1084
1085 checksum = ntohl(hdr->ih_hcrc);
1086 hdr->ih_hcrc = 0;
1087
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001088 if (crc32 (0, (uchar *)data, len) != checksum) {
wdenk42c05472004-03-23 22:14:11 +00001089 puts (" Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001090 return 1;
1091 }
1092
1093 /* for multi-file images we need the data part, too */
1094 print_image_hdr ((image_header_t *)addr);
1095
1096 data = addr + sizeof(image_header_t);
1097 len = ntohl(hdr->ih_size);
1098
wdenk42c05472004-03-23 22:14:11 +00001099 puts (" Verifying Checksum ... ");
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001100 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk42c05472004-03-23 22:14:11 +00001101 puts (" Bad Data CRC\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001102 return 1;
1103 }
wdenk42c05472004-03-23 22:14:11 +00001104 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001105 return 0;
1106}
wdenkf287a242003-07-01 21:06:45 +00001107
1108U_BOOT_CMD(
1109 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk57b2d802003-06-27 21:31:46 +00001110 "iminfo - print header information for application image\n",
1111 "addr [addr ...]\n"
1112 " - print header information for application image starting at\n"
1113 " address 'addr' in memory; this includes verification of the\n"
1114 " image contents (magic number, header and payload checksums)\n"
1115);
1116
wdenk47d1a6e2002-11-03 00:01:44 +00001117#endif /* CFG_CMD_IMI */
1118
wdenk874ac262003-07-24 23:38:38 +00001119#if (CONFIG_COMMANDS & CFG_CMD_IMLS)
1120/*-----------------------------------------------------------------------
1121 * List all images found in flash.
1122 */
1123int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1124{
1125 flash_info_t *info;
1126 int i, j;
1127 image_header_t *hdr;
wdenkc6abb7e2003-11-17 21:14:37 +00001128 ulong data, len, checksum;
wdenk874ac262003-07-24 23:38:38 +00001129
1130 for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) {
1131 if (info->flash_id == FLASH_UNKNOWN)
1132 goto next_bank;
Marian Balakowicz513b4a12005-10-11 19:09:42 +02001133 for (j=0; j<info->sector_count; ++j) {
wdenk874ac262003-07-24 23:38:38 +00001134
1135 if (!(hdr=(image_header_t *)info->start[j]) ||
1136 (ntohl(hdr->ih_magic) != IH_MAGIC))
1137 goto next_sector;
1138
1139 /* Copy header so we can blank CRC field for re-calculation */
1140 memmove (&header, (char *)hdr, sizeof(image_header_t));
1141
1142 checksum = ntohl(header.ih_hcrc);
1143 header.ih_hcrc = 0;
1144
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001145 if (crc32 (0, (uchar *)&header, sizeof(image_header_t))
wdenk874ac262003-07-24 23:38:38 +00001146 != checksum)
1147 goto next_sector;
1148
1149 printf ("Image at %08lX:\n", (ulong)hdr);
1150 print_image_hdr( hdr );
wdenkc6abb7e2003-11-17 21:14:37 +00001151
1152 data = (ulong)hdr + sizeof(image_header_t);
1153 len = ntohl(hdr->ih_size);
1154
wdenk42c05472004-03-23 22:14:11 +00001155 puts (" Verifying Checksum ... ");
Wolfgang Denk7fb52662005-10-13 16:45:02 +02001156 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk42c05472004-03-23 22:14:11 +00001157 puts (" Bad Data CRC\n");
wdenkc6abb7e2003-11-17 21:14:37 +00001158 }
wdenk42c05472004-03-23 22:14:11 +00001159 puts ("OK\n");
wdenk0a658552003-08-05 17:43:17 +00001160next_sector: ;
wdenk874ac262003-07-24 23:38:38 +00001161 }
wdenk0a658552003-08-05 17:43:17 +00001162next_bank: ;
wdenk874ac262003-07-24 23:38:38 +00001163 }
1164
1165 return (0);
1166}
1167
1168U_BOOT_CMD(
1169 imls, 1, 1, do_imls,
1170 "imls - list all images found in flash\n",
1171 "\n"
1172 " - Prints information about all images found at sector\n"
1173 " boundaries in flash.\n"
1174);
1175#endif /* CFG_CMD_IMLS */
1176
wdenk47d1a6e2002-11-03 00:01:44 +00001177void
1178print_image_hdr (image_header_t *hdr)
1179{
1180#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1181 time_t timestamp = (time_t)ntohl(hdr->ih_time);
1182 struct rtc_time tm;
1183#endif
1184
1185 printf (" Image Name: %.*s\n", IH_NMLEN, hdr->ih_name);
1186#if (CONFIG_COMMANDS & CFG_CMD_DATE) || defined(CONFIG_TIMESTAMP)
1187 to_tm (timestamp, &tm);
1188 printf (" Created: %4d-%02d-%02d %2d:%02d:%02d UTC\n",
1189 tm.tm_year, tm.tm_mon, tm.tm_mday,
1190 tm.tm_hour, tm.tm_min, tm.tm_sec);
1191#endif /* CFG_CMD_DATE, CONFIG_TIMESTAMP */
wdenk42c05472004-03-23 22:14:11 +00001192 puts (" Image Type: "); print_type(hdr);
1193 printf ("\n Data Size: %d Bytes = ", ntohl(hdr->ih_size));
wdenk47d1a6e2002-11-03 00:01:44 +00001194 print_size (ntohl(hdr->ih_size), "\n");
wdenk42c05472004-03-23 22:14:11 +00001195 printf (" Load Address: %08x\n"
1196 " Entry Point: %08x\n",
1197 ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
wdenk47d1a6e2002-11-03 00:01:44 +00001198
1199 if (hdr->ih_type == IH_TYPE_MULTI) {
1200 int i;
1201 ulong len;
1202 ulong *len_ptr = (ulong *)((ulong)hdr + sizeof(image_header_t));
1203
wdenk42c05472004-03-23 22:14:11 +00001204 puts (" Contents:\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001205 for (i=0; (len = ntohl(*len_ptr)); ++i, ++len_ptr) {
1206 printf (" Image %d: %8ld Bytes = ", i, len);
1207 print_size (len, "\n");
1208 }
1209 }
1210}
1211
1212
1213static void
1214print_type (image_header_t *hdr)
1215{
1216 char *os, *arch, *type, *comp;
1217
1218 switch (hdr->ih_os) {
1219 case IH_OS_INVALID: os = "Invalid OS"; break;
1220 case IH_OS_NETBSD: os = "NetBSD"; break;
1221 case IH_OS_LINUX: os = "Linux"; break;
1222 case IH_OS_VXWORKS: os = "VxWorks"; break;
1223 case IH_OS_QNX: os = "QNX"; break;
1224 case IH_OS_U_BOOT: os = "U-Boot"; break;
wdenk92bbe3f2003-04-20 14:04:18 +00001225 case IH_OS_RTEMS: os = "RTEMS"; break;
wdenk0893c472003-05-20 14:25:27 +00001226#ifdef CONFIG_ARTOS
1227 case IH_OS_ARTOS: os = "ARTOS"; break;
1228#endif
wdenke58b0dc2003-07-27 00:21:01 +00001229#ifdef CONFIG_LYNXKDI
1230 case IH_OS_LYNXOS: os = "LynxOS"; break;
1231#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001232 default: os = "Unknown OS"; break;
1233 }
1234
1235 switch (hdr->ih_arch) {
1236 case IH_CPU_INVALID: arch = "Invalid CPU"; break;
1237 case IH_CPU_ALPHA: arch = "Alpha"; break;
1238 case IH_CPU_ARM: arch = "ARM"; break;
1239 case IH_CPU_I386: arch = "Intel x86"; break;
1240 case IH_CPU_IA64: arch = "IA64"; break;
1241 case IH_CPU_MIPS: arch = "MIPS"; break;
1242 case IH_CPU_MIPS64: arch = "MIPS 64 Bit"; break;
1243 case IH_CPU_PPC: arch = "PowerPC"; break;
1244 case IH_CPU_S390: arch = "IBM S390"; break;
1245 case IH_CPU_SH: arch = "SuperH"; break;
1246 case IH_CPU_SPARC: arch = "SPARC"; break;
1247 case IH_CPU_SPARC64: arch = "SPARC 64 Bit"; break;
wdenkdccbda02003-07-14 22:13:32 +00001248 case IH_CPU_M68K: arch = "M68K"; break;
wdenk12490652004-04-18 21:13:41 +00001249 case IH_CPU_MICROBLAZE: arch = "Microblaze"; break;
wdenk1873b602005-04-03 21:11:16 +00001250 case IH_CPU_NIOS: arch = "Nios"; break;
1251 case IH_CPU_NIOS2: arch = "Nios-II"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001252 default: arch = "Unknown Architecture"; break;
1253 }
1254
1255 switch (hdr->ih_type) {
1256 case IH_TYPE_INVALID: type = "Invalid Image"; break;
1257 case IH_TYPE_STANDALONE:type = "Standalone Program"; break;
1258 case IH_TYPE_KERNEL: type = "Kernel Image"; break;
1259 case IH_TYPE_RAMDISK: type = "RAMDisk Image"; break;
1260 case IH_TYPE_MULTI: type = "Multi-File Image"; break;
1261 case IH_TYPE_FIRMWARE: type = "Firmware"; break;
1262 case IH_TYPE_SCRIPT: type = "Script"; break;
1263 default: type = "Unknown Image"; break;
1264 }
1265
1266 switch (hdr->ih_comp) {
1267 case IH_COMP_NONE: comp = "uncompressed"; break;
1268 case IH_COMP_GZIP: comp = "gzip compressed"; break;
1269 case IH_COMP_BZIP2: comp = "bzip2 compressed"; break;
1270 default: comp = "unknown compression"; break;
1271 }
1272
1273 printf ("%s %s %s (%s)", arch, os, type, comp);
1274}
1275
1276#define ZALLOC_ALIGNMENT 16
1277
1278static void *zalloc(void *x, unsigned items, unsigned size)
1279{
1280 void *p;
1281
1282 size *= items;
1283 size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
1284
1285 p = malloc (size);
1286
1287 return (p);
1288}
1289
1290static void zfree(void *x, void *addr, unsigned nb)
1291{
1292 free (addr);
1293}
1294
1295#define HEAD_CRC 2
1296#define EXTRA_FIELD 4
1297#define ORIG_NAME 8
1298#define COMMENT 0x10
1299#define RESERVED 0xe0
1300
1301#define DEFLATED 8
1302
wdenka0ebde52004-09-08 22:03:11 +00001303int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
wdenk47d1a6e2002-11-03 00:01:44 +00001304{
1305 z_stream s;
1306 int r, i, flags;
1307
1308 /* skip header */
1309 i = 10;
1310 flags = src[3];
1311 if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
wdenk42c05472004-03-23 22:14:11 +00001312 puts ("Error: Bad gzipped data\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001313 return (-1);
1314 }
1315 if ((flags & EXTRA_FIELD) != 0)
1316 i = 12 + src[10] + (src[11] << 8);
1317 if ((flags & ORIG_NAME) != 0)
1318 while (src[i++] != 0)
1319 ;
1320 if ((flags & COMMENT) != 0)
1321 while (src[i++] != 0)
1322 ;
1323 if ((flags & HEAD_CRC) != 0)
1324 i += 2;
1325 if (i >= *lenp) {
wdenk42c05472004-03-23 22:14:11 +00001326 puts ("Error: gunzip out of data in header\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001327 return (-1);
1328 }
1329
1330 s.zalloc = zalloc;
1331 s.zfree = zfree;
1332#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
1333 s.outcb = (cb_func)WATCHDOG_RESET;
1334#else
1335 s.outcb = Z_NULL;
1336#endif /* CONFIG_HW_WATCHDOG */
1337
1338 r = inflateInit2(&s, -MAX_WBITS);
1339 if (r != Z_OK) {
1340 printf ("Error: inflateInit2() returned %d\n", r);
1341 return (-1);
1342 }
1343 s.next_in = src + i;
1344 s.avail_in = *lenp - i;
1345 s.next_out = dst;
1346 s.avail_out = dstlen;
1347 r = inflate(&s, Z_FINISH);
1348 if (r != Z_OK && r != Z_STREAM_END) {
1349 printf ("Error: inflate() returned %d\n", r);
1350 return (-1);
1351 }
1352 *lenp = s.next_out - (unsigned char *) dst;
1353 inflateEnd(&s);
1354
1355 return (0);
1356}
wdenk710e3502003-08-29 20:57:53 +00001357
1358#ifdef CONFIG_BZIP2
1359void bz_internal_error(int errcode)
1360{
1361 printf ("BZIP2 internal error %d\n", errcode);
1362}
1363#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +00001364
wdenk92bbe3f2003-04-20 14:04:18 +00001365static void
1366do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1367 ulong addr, ulong *len_ptr, int verify)
1368{
1369 DECLARE_GLOBAL_DATA_PTR;
1370 image_header_t *hdr = &header;
1371 void (*entry_point)(bd_t *);
1372
Wolfgang Denkb6929f92006-03-12 01:59:35 +01001373 entry_point = (void (*)(bd_t *)) ntohl(hdr->ih_ep);
wdenk92bbe3f2003-04-20 14:04:18 +00001374
1375 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1376 (ulong)entry_point);
1377
1378 SHOW_BOOT_PROGRESS (15);
1379
1380 /*
1381 * RTEMS Parameters:
1382 * r3: ptr to board info data
1383 */
1384
1385 (*entry_point ) ( gd->bd );
1386}
1387
wdenk47d1a6e2002-11-03 00:01:44 +00001388#if (CONFIG_COMMANDS & CFG_CMD_ELF)
1389static void
1390do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1391 ulong addr, ulong *len_ptr, int verify)
1392{
1393 image_header_t *hdr = &header;
1394 char str[80];
1395
Wolfgang Denkb6929f92006-03-12 01:59:35 +01001396 sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001397 setenv("loadaddr", str);
1398 do_bootvx(cmdtp, 0, 0, NULL);
1399}
1400
1401static void
1402do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1403 ulong addr, ulong *len_ptr, int verify)
1404{
1405 image_header_t *hdr = &header;
1406 char *local_args[2];
1407 char str[16];
1408
Wolfgang Denkb6929f92006-03-12 01:59:35 +01001409 sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001410 local_args[0] = argv[0];
1411 local_args[1] = str; /* and provide it via the arguments */
1412 do_bootelf(cmdtp, 0, 2, local_args);
1413}
1414#endif /* CFG_CMD_ELF */
wdenke58b0dc2003-07-27 00:21:01 +00001415
1416#ifdef CONFIG_LYNXKDI
1417static void
1418do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
1419 int argc, char *argv[],
1420 ulong addr,
1421 ulong *len_ptr,
1422 int verify)
1423{
1424 lynxkdi_boot( &header );
1425}
1426
1427#endif /* CONFIG_LYNXKDI */