blob: 90e3f8b9afe465608468a9c7629b5a6e21d809d9 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Stefan Roese15940c92006-03-13 11:16:36 +01002 * (C) Copyright 2000-2006
wdenk47d1a6e2002-11-03 00:01:44 +00003 * 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
Gerald Van Baren213bf8c2007-03-31 12:23:51 -040037#if defined(CONFIG_OF_LIBFDT)
38#include <fdt.h>
39#include <libfdt.h>
Gerald Van Barenc28abb92007-04-14 22:51:24 -040040#include <fdt_support.h>
Gerald Van Baren213bf8c2007-03-31 12:23:51 -040041#endif
Gerald Van Barenaea03c42007-03-31 14:30:53 -040042#if defined(CONFIG_OF_FLAT_TREE)
Wolfgang Denkf57f70a2005-10-13 01:45:54 +020043#include <ft_build.h>
44#endif
45
Wolfgang Denkd87080b2006-03-31 18:32:53 +020046DECLARE_GLOBAL_DATA_PTR;
47
Gerald Van Baren38eb5082007-05-12 09:45:46 -040048/*cmd_boot.c*/
49extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk8bde7f72003-06-27 21:31:46 +000050
Jon Loeligerbaa26db2007-07-08 17:51:39 -050051#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
wdenk47d1a6e2002-11-03 00:01:44 +000052#include <rtc.h>
53#endif
54
55#ifdef CFG_HUSH_PARSER
56#include <hush.h>
57#endif
58
wdenk47d1a6e2002-11-03 00:01:44 +000059#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
Jon Loeligerbaa26db2007-07-08 17:51:39 -050085#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000086static int image_info (unsigned long addr);
87#endif
wdenk27b207f2003-07-24 23:38:38 +000088
Jon Loeligerbaa26db2007-07-08 17:51:39 -050089#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000090#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020091extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-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
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;
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500129#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000130static 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[] );
Jon Loeliger90253172007-07-10 11:02:44 -0500134#endif
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
Stefan Roese15940c92006-03-13 11:16:36 +0100143#ifndef CFG_BOOTM_LEN
144#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
145#endif
146
wdenk47d1a6e2002-11-03 00:01:44 +0000147image_header_t header;
148
149ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
150
151int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
152{
153 ulong iflag;
154 ulong addr;
155 ulong data, len, checksum;
156 ulong *len_ptr;
Stefan Roese15940c92006-03-13 11:16:36 +0100157 uint unc_len = CFG_BOOTM_LEN;
wdenk47d1a6e2002-11-03 00:01:44 +0000158 int i, verify;
159 char *name, *s;
wdenkb13fb012003-10-30 21:49:38 +0000160 int (*appl)(int, char *[]);
wdenk47d1a6e2002-11-03 00:01:44 +0000161 image_header_t *hdr = &header;
162
163 s = getenv ("verify");
164 verify = (s && (*s == 'n')) ? 0 : 1;
165
166 if (argc < 2) {
167 addr = load_addr;
168 } else {
169 addr = simple_strtoul(argv[1], NULL, 16);
170 }
171
Heiko Schocherfad63402007-07-13 09:54:17 +0200172 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000173 printf ("## Booting image at %08lx ...\n", addr);
174
175 /* Copy header so we can blank CRC field for re-calculation */
wdenk2abbe072003-06-16 23:50:08 +0000176#ifdef CONFIG_HAS_DATAFLASH
177 if (addr_dataflash(addr)){
178 read_dataflash(addr, sizeof(image_header_t), (char *)&header);
179 } else
180#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000181 memmove (&header, (char *)addr, sizeof(image_header_t));
182
183 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk2262cfe2002-11-18 00:14:45 +0000184#ifdef __I386__ /* correct image format not implemented yet - fake it */
185 if (fake_header(hdr, (void*)addr, -1) != NULL) {
186 /* to compensate for the addition below */
187 addr -= sizeof(image_header_t);
188 /* turnof verify,
189 * fake_header() does not fake the data crc
190 */
191 verify = 0;
192 } else
193#endif /* __I386__ */
194 {
wdenk4b9206e2004-03-23 22:14:11 +0000195 puts ("Bad Magic Number\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200196 show_boot_progress (-1);
wdenk47d1a6e2002-11-03 00:01:44 +0000197 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000198 }
wdenk47d1a6e2002-11-03 00:01:44 +0000199 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200200 show_boot_progress (2);
wdenk47d1a6e2002-11-03 00:01:44 +0000201
202 data = (ulong)&header;
203 len = sizeof(image_header_t);
204
205 checksum = ntohl(hdr->ih_hcrc);
206 hdr->ih_hcrc = 0;
207
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200208 if (crc32 (0, (uchar *)data, len) != checksum) {
wdenk4b9206e2004-03-23 22:14:11 +0000209 puts ("Bad Header Checksum\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200210 show_boot_progress (-2);
wdenk47d1a6e2002-11-03 00:01:44 +0000211 return 1;
212 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200213 show_boot_progress (3);
wdenk47d1a6e2002-11-03 00:01:44 +0000214
Wolfgang Denkbccae902005-10-06 01:50:50 +0200215#ifdef CONFIG_HAS_DATAFLASH
216 if (addr_dataflash(addr)){
217 len = ntohl(hdr->ih_size) + sizeof(image_header_t);
218 read_dataflash(addr, len, (char *)CFG_LOAD_ADDR);
219 addr = CFG_LOAD_ADDR;
220 }
221#endif
222
223
wdenk47d1a6e2002-11-03 00:01:44 +0000224 /* for multi-file images we need the data part, too */
wdenka57a4962003-10-26 22:52:58 +0000225 print_image_hdr ((image_header_t *)addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000226
227 data = addr + sizeof(image_header_t);
228 len = ntohl(hdr->ih_size);
229
230 if (verify) {
wdenk4b9206e2004-03-23 22:14:11 +0000231 puts (" Verifying Checksum ... ");
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200232 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000233 printf ("Bad Data CRC\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200234 show_boot_progress (-3);
wdenk47d1a6e2002-11-03 00:01:44 +0000235 return 1;
236 }
wdenk4b9206e2004-03-23 22:14:11 +0000237 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000238 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200239 show_boot_progress (4);
wdenk47d1a6e2002-11-03 00:01:44 +0000240
241 len_ptr = (ulong *)data;
242
Wolfgang Denk44ba4642007-03-22 00:13:12 +0100243#if defined(__ARM__)
wdenk2262cfe2002-11-18 00:14:45 +0000244 if (hdr->ih_arch != IH_CPU_ARM)
Wolfgang Denk44ba4642007-03-22 00:13:12 +0100245#elif defined(__avr32__)
246 if (hdr->ih_arch != IH_CPU_AVR32)
247#elif defined(__bfin__)
248 if (hdr->ih_arch != IH_CPU_BLACKFIN)
wdenk2262cfe2002-11-18 00:14:45 +0000249#elif defined(__I386__)
250 if (hdr->ih_arch != IH_CPU_I386)
wdenk4e5ca3e2003-12-08 01:34:36 +0000251#elif defined(__M68K__)
252 if (hdr->ih_arch != IH_CPU_M68K)
wdenk507bbe32004-04-18 21:13:41 +0000253#elif defined(__microblaze__)
254 if (hdr->ih_arch != IH_CPU_MICROBLAZE)
Wolfgang Denk44ba4642007-03-22 00:13:12 +0100255#elif defined(__mips__)
256 if (hdr->ih_arch != IH_CPU_MIPS)
257#elif defined(__nios__)
258 if (hdr->ih_arch != IH_CPU_NIOS)
wdenk5c952cf2004-10-10 21:27:30 +0000259#elif defined(__nios2__)
260 if (hdr->ih_arch != IH_CPU_NIOS2)
Wolfgang Denk44ba4642007-03-22 00:13:12 +0100261#elif defined(__PPC__)
262 if (hdr->ih_arch != IH_CPU_PPC)
wdenk2262cfe2002-11-18 00:14:45 +0000263#else
264# error Unknown CPU type
265#endif
266 {
267 printf ("Unsupported Architecture 0x%x\n", hdr->ih_arch);
Heiko Schocherfad63402007-07-13 09:54:17 +0200268 show_boot_progress (-4);
wdenk47d1a6e2002-11-03 00:01:44 +0000269 return 1;
270 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200271 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000272
273 switch (hdr->ih_type) {
wdenkb13fb012003-10-30 21:49:38 +0000274 case IH_TYPE_STANDALONE:
275 name = "Standalone Application";
276 /* A second argument overwrites the load address */
277 if (argc > 2) {
wdenkb2532ef2005-06-20 10:17:34 +0000278 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
wdenkb13fb012003-10-30 21:49:38 +0000279 }
280 break;
281 case IH_TYPE_KERNEL:
282 name = "Kernel Image";
283 break;
wdenkd4ca31c2004-01-02 14:00:00 +0000284 case IH_TYPE_MULTI:
wdenkb13fb012003-10-30 21:49:38 +0000285 name = "Multi-File Image";
286 len = ntohl(len_ptr[0]);
287 /* OS kernel is always the first image */
288 data += 8; /* kernel_len + terminator */
289 for (i=1; len_ptr[i]; ++i)
290 data += 4;
291 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000292 default: printf ("Wrong Image Type for %s command\n", cmdtp->name);
Heiko Schocherfad63402007-07-13 09:54:17 +0200293 show_boot_progress (-5);
wdenk47d1a6e2002-11-03 00:01:44 +0000294 return 1;
295 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200296 show_boot_progress (6);
wdenk47d1a6e2002-11-03 00:01:44 +0000297
298 /*
299 * We have reached the point of no return: we are going to
300 * overwrite all exception vector code, so we cannot easily
301 * recover from any failures any more...
302 */
303
304 iflag = disable_interrupts();
305
wdenkc7de8292002-11-19 11:04:11 +0000306#ifdef CONFIG_AMIGAONEG3SE
307 /*
wdenk8bde7f72003-06-27 21:31:46 +0000308 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000309 * bios emulation, so turn them off again
310 */
311 icache_disable();
312 invalidate_l1_instruction_cache();
313 flush_data_cache();
314 dcache_disable();
315#endif
316
wdenk47d1a6e2002-11-03 00:01:44 +0000317 switch (hdr->ih_comp) {
318 case IH_COMP_NONE:
wdenk2262cfe2002-11-18 00:14:45 +0000319 if(ntohl(hdr->ih_load) == addr) {
wdenk47d1a6e2002-11-03 00:01:44 +0000320 printf (" XIP %s ... ", name);
321 } else {
322#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
323 size_t l = len;
324 void *to = (void *)ntohl(hdr->ih_load);
325 void *from = (void *)data;
326
327 printf (" Loading %s ... ", name);
328
329 while (l > 0) {
330 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
331 WATCHDOG_RESET();
332 memmove (to, from, tail);
333 to += tail;
334 from += tail;
335 l -= tail;
336 }
337#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
338 memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len);
339#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
340 }
341 break;
342 case IH_COMP_GZIP:
343 printf (" Uncompressing %s ... ", name);
wdenkc29fdfc2003-08-29 20:57:53 +0000344 if (gunzip ((void *)ntohl(hdr->ih_load), unc_len,
wdenkeedcd072004-09-08 22:03:11 +0000345 (uchar *)data, &len) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000346 puts ("GUNZIP ERROR - must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200347 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000348 do_reset (cmdtp, flag, argc, argv);
349 }
350 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000351#ifdef CONFIG_BZIP2
352 case IH_COMP_BZIP2:
353 printf (" Uncompressing %s ... ", name);
wdenk5653fc32004-02-08 22:55:38 +0000354 /*
355 * If we've got less than 4 MB of malloc() space,
356 * use slower decompression algorithm which requires
357 * at most 2300 KB of memory.
358 */
wdenkc29fdfc2003-08-29 20:57:53 +0000359 i = BZ2_bzBuffToBuffDecompress ((char*)ntohl(hdr->ih_load),
wdenk5653fc32004-02-08 22:55:38 +0000360 &unc_len, (char *)data, len,
361 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000362 if (i != BZ_OK) {
363 printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200364 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000365 do_reset (cmdtp, flag, argc, argv);
366 }
367 break;
368#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000369 default:
370 if (iflag)
371 enable_interrupts();
372 printf ("Unimplemented compression type %d\n", hdr->ih_comp);
Heiko Schocherfad63402007-07-13 09:54:17 +0200373 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000374 return 1;
375 }
wdenk4b9206e2004-03-23 22:14:11 +0000376 puts ("OK\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200377 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000378
379 switch (hdr->ih_type) {
380 case IH_TYPE_STANDALONE:
wdenk47d1a6e2002-11-03 00:01:44 +0000381 if (iflag)
382 enable_interrupts();
383
wdenk4a6fd342003-04-12 23:38:12 +0000384 /* load (and uncompress), but don't start if "autostart"
385 * is set to "no"
386 */
wdenk4a551702003-10-08 23:26:14 +0000387 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) {
388 char buf[32];
389 sprintf(buf, "%lX", len);
390 setenv("filesize", buf);
wdenk4a6fd342003-04-12 23:38:12 +0000391 return 0;
wdenk4a551702003-10-08 23:26:14 +0000392 }
wdenkb13fb012003-10-30 21:49:38 +0000393 appl = (int (*)(int, char *[]))ntohl(hdr->ih_ep);
394 (*appl)(argc-1, &argv[1]);
wdenk4a6fd342003-04-12 23:38:12 +0000395 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000396 case IH_TYPE_KERNEL:
397 case IH_TYPE_MULTI:
398 /* handled below */
399 break;
400 default:
401 if (iflag)
402 enable_interrupts();
403 printf ("Can't boot image type %d\n", hdr->ih_type);
Heiko Schocherfad63402007-07-13 09:54:17 +0200404 show_boot_progress (-8);
wdenk47d1a6e2002-11-03 00:01:44 +0000405 return 1;
406 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200407 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000408
409 switch (hdr->ih_os) {
410 default: /* handled by (original) Linux case */
411 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000412#ifdef CONFIG_SILENT_CONSOLE
413 fixup_silent_linux();
414#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000415 do_bootm_linux (cmdtp, flag, argc, argv,
416 addr, len_ptr, verify);
417 break;
418 case IH_OS_NETBSD:
419 do_bootm_netbsd (cmdtp, flag, argc, argv,
420 addr, len_ptr, verify);
421 break;
wdenk8bde7f72003-06-27 21:31:46 +0000422
wdenk1f4bb372003-07-27 00:21:01 +0000423#ifdef CONFIG_LYNXKDI
424 case IH_OS_LYNXOS:
425 do_bootm_lynxkdi (cmdtp, flag, argc, argv,
426 addr, len_ptr, verify);
427 break;
428#endif
429
wdenkd791b1d2003-04-20 14:04:18 +0000430 case IH_OS_RTEMS:
431 do_bootm_rtems (cmdtp, flag, argc, argv,
432 addr, len_ptr, verify);
433 break;
wdenk8bde7f72003-06-27 21:31:46 +0000434
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500435#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000436 case IH_OS_VXWORKS:
437 do_bootm_vxworks (cmdtp, flag, argc, argv,
438 addr, len_ptr, verify);
439 break;
440 case IH_OS_QNX:
441 do_bootm_qnxelf (cmdtp, flag, argc, argv,
442 addr, len_ptr, verify);
443 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500444#endif
wdenk7f70e852003-05-20 14:25:27 +0000445#ifdef CONFIG_ARTOS
446 case IH_OS_ARTOS:
447 do_bootm_artos (cmdtp, flag, argc, argv,
448 addr, len_ptr, verify);
449 break;
450#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000451 }
452
Heiko Schocherfad63402007-07-13 09:54:17 +0200453 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000454#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000455 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000456 do_reset (cmdtp, flag, argc, argv);
457#endif
458 return 1;
459}
460
wdenk0d498392003-07-01 21:06:45 +0000461U_BOOT_CMD(
462 bootm, CFG_MAXARGS, 1, do_bootm,
wdenk8bde7f72003-06-27 21:31:46 +0000463 "bootm - boot application image from memory\n",
464 "[addr [arg ...]]\n - boot application image stored in memory\n"
wdenk9d5028c2004-11-21 00:06:33 +0000465 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
466 "\t'arg' can be the address of an initrd image\n"
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400467#if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500468 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
469 "\ta third argument is required which is the address of the of the\n"
470 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
471 "\tuse a '-' for the second argument. If you do not pass a third\n"
472 "\ta bd_info struct will be passed instead\n"
473#endif
wdenk8bde7f72003-06-27 21:31:46 +0000474);
475
wdenkf72da342003-10-10 10:05:42 +0000476#ifdef CONFIG_SILENT_CONSOLE
477static void
478fixup_silent_linux ()
479{
wdenkf72da342003-10-10 10:05:42 +0000480 char buf[256], *start, *end;
481 char *cmdline = getenv ("bootargs");
482
483 /* Only fix cmdline when requested */
484 if (!(gd->flags & GD_FLG_SILENT))
485 return;
486
487 debug ("before silent fix-up: %s\n", cmdline);
488 if (cmdline) {
489 if ((start = strstr (cmdline, "console=")) != NULL) {
490 end = strchr (start, ' ');
491 strncpy (buf, cmdline, (start - cmdline + 8));
492 if (end)
493 strcpy (buf + (start - cmdline + 8), end);
494 else
495 buf[start - cmdline + 8] = '\0';
496 } else {
497 strcpy (buf, cmdline);
498 strcat (buf, " console=");
499 }
500 } else {
501 strcpy (buf, "console=");
502 }
503
504 setenv ("bootargs", buf);
505 debug ("after silent fix-up: %s\n", buf);
506}
507#endif /* CONFIG_SILENT_CONSOLE */
508
wdenk2262cfe2002-11-18 00:14:45 +0000509#ifdef CONFIG_PPC
Matthew McClintockb2b78422006-08-23 13:32:45 -0500510static void __attribute__((noinline))
wdenk47d1a6e2002-11-03 00:01:44 +0000511do_bootm_linux (cmd_tbl_t *cmdtp, int flag,
512 int argc, char *argv[],
513 ulong addr,
514 ulong *len_ptr,
515 int verify)
516{
wdenk47d1a6e2002-11-03 00:01:44 +0000517 ulong sp;
518 ulong len, checksum;
519 ulong initrd_start, initrd_end;
520 ulong cmd_start, cmd_end;
521 ulong initrd_high;
522 ulong data;
wdenk38b99262003-05-23 23:18:21 +0000523 int initrd_copy_to_ram = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000524 char *cmdline;
525 char *s;
526 bd_t *kbd;
527 void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
528 image_header_t *hdr = &header;
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400529#if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT)
Matthew McClintock25c751e2006-08-16 10:54:09 -0500530 char *of_flat_tree = NULL;
Kumar Galac76f9512006-10-24 23:47:37 -0500531 ulong of_data = 0;
Wolfgang Denkf57f70a2005-10-13 01:45:54 +0200532#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000533
534 if ((s = getenv ("initrd_high")) != NULL) {
535 /* a value of "no" or a similar string will act like 0,
536 * turning the "load high" feature off. This is intentional.
537 */
538 initrd_high = simple_strtoul(s, NULL, 16);
wdenk38b99262003-05-23 23:18:21 +0000539 if (initrd_high == ~0)
540 initrd_copy_to_ram = 0;
wdenk228f29a2002-12-08 09:53:23 +0000541 } else { /* not set, no restrictions to load high */
wdenk47d1a6e2002-11-03 00:01:44 +0000542 initrd_high = ~0;
543 }
544
wdenk56f94be2002-11-05 16:35:14 +0000545#ifdef CONFIG_LOGBUFFER
wdenk6aff3112002-12-17 01:51:00 +0000546 kbd=gd->bd;
wdenk228f29a2002-12-08 09:53:23 +0000547 /* Prevent initrd from overwriting logbuffer */
548 if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD))
549 initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD;
550 debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN);
wdenk56f94be2002-11-05 16:35:14 +0000551#endif
552
wdenk47d1a6e2002-11-03 00:01:44 +0000553 /*
554 * Booting a (Linux) kernel image
555 *
556 * Allocate space for command line and board info - the
557 * address should be as high as possible within the reach of
558 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
559 * memory, which means far enough below the current stack
560 * pointer.
561 */
562
563 asm( "mr %0,1": "=r"(sp) : );
564
wdenk56f94be2002-11-05 16:35:14 +0000565 debug ("## Current stack ends at 0x%08lX ", sp);
566
wdenk47d1a6e2002-11-03 00:01:44 +0000567 sp -= 2048; /* just to be sure */
568 if (sp > CFG_BOOTMAPSZ)
569 sp = CFG_BOOTMAPSZ;
570 sp &= ~0xF;
571
wdenk56f94be2002-11-05 16:35:14 +0000572 debug ("=> set upper limit to 0x%08lX\n", sp);
573
wdenk47d1a6e2002-11-03 00:01:44 +0000574 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
575 kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF);
576
577 if ((s = getenv("bootargs")) == NULL)
578 s = "";
579
580 strcpy (cmdline, s);
581
582 cmd_start = (ulong)&cmdline[0];
583 cmd_end = cmd_start + strlen(cmdline);
584
585 *kbd = *(gd->bd);
586
587#ifdef DEBUG
588 printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
589
590 do_bdinfo (NULL, 0, 0, NULL);
591#endif
592
593 if ((s = getenv ("clocks_in_mhz")) != NULL) {
594 /* convert all clock information to MHz */
595 kbd->bi_intfreq /= 1000000L;
596 kbd->bi_busfreq /= 1000000L;
wdenk983fda82004-10-28 00:09:35 +0000597#if defined(CONFIG_MPC8220)
wdenk9d5028c2004-11-21 00:06:33 +0000598 kbd->bi_inpfreq /= 1000000L;
599 kbd->bi_pcifreq /= 1000000L;
600 kbd->bi_pevfreq /= 1000000L;
601 kbd->bi_flbfreq /= 1000000L;
602 kbd->bi_vcofreq /= 1000000L;
wdenk983fda82004-10-28 00:09:35 +0000603#endif
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500604#if defined(CONFIG_CPM2)
wdenk47d1a6e2002-11-03 00:01:44 +0000605 kbd->bi_cpmfreq /= 1000000L;
606 kbd->bi_brgfreq /= 1000000L;
607 kbd->bi_sccfreq /= 1000000L;
608 kbd->bi_vco /= 1000000L;
Jon Loeliger9c4c5ae2005-07-23 10:37:35 -0500609#endif
wdenkcbd8a352004-02-24 02:00:03 +0000610#if defined(CONFIG_MPC5xxx)
wdenk945af8d2003-07-16 21:53:01 +0000611 kbd->bi_ipbfreq /= 1000000L;
612 kbd->bi_pcifreq /= 1000000L;
wdenkcbd8a352004-02-24 02:00:03 +0000613#endif /* CONFIG_MPC5xxx */
wdenk47d1a6e2002-11-03 00:01:44 +0000614 }
615
Wolfgang Denkdc013d42006-03-12 01:59:35 +0100616 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong)) ntohl(hdr->ih_ep);
wdenk47d1a6e2002-11-03 00:01:44 +0000617
618 /*
619 * Check if there is an initrd image
620 */
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500621
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400622#if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500623 /* Look for a '-' which indicates to ignore the ramdisk argument */
624 if (argc >= 3 && strcmp(argv[2], "-") == 0) {
625 debug ("Skipping initrd\n");
Matthew McClintock7376eb82006-10-11 15:13:01 -0500626 len = data = 0;
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500627 }
628 else
629#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000630 if (argc >= 3) {
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500631 debug ("Not skipping initrd\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200632 show_boot_progress (9);
wdenk47d1a6e2002-11-03 00:01:44 +0000633
634 addr = simple_strtoul(argv[2], NULL, 16);
635
636 printf ("## Loading RAMDisk Image at %08lx ...\n", addr);
637
638 /* Copy header so we can blank CRC field for re-calculation */
639 memmove (&header, (char *)addr, sizeof(image_header_t));
640
Wolfgang Denkdc013d42006-03-12 01:59:35 +0100641 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk4b9206e2004-03-23 22:14:11 +0000642 puts ("Bad Magic Number\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200643 show_boot_progress (-10);
wdenk47d1a6e2002-11-03 00:01:44 +0000644 do_reset (cmdtp, flag, argc, argv);
645 }
646
647 data = (ulong)&header;
648 len = sizeof(image_header_t);
649
Wolfgang Denkdc013d42006-03-12 01:59:35 +0100650 checksum = ntohl(hdr->ih_hcrc);
wdenk47d1a6e2002-11-03 00:01:44 +0000651 hdr->ih_hcrc = 0;
652
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200653 if (crc32 (0, (uchar *)data, len) != checksum) {
wdenk4b9206e2004-03-23 22:14:11 +0000654 puts ("Bad Header Checksum\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200655 show_boot_progress (-11);
wdenk47d1a6e2002-11-03 00:01:44 +0000656 do_reset (cmdtp, flag, argc, argv);
657 }
658
Heiko Schocherfad63402007-07-13 09:54:17 +0200659 show_boot_progress (10);
wdenk47d1a6e2002-11-03 00:01:44 +0000660
661 print_image_hdr (hdr);
662
663 data = addr + sizeof(image_header_t);
Wolfgang Denkdc013d42006-03-12 01:59:35 +0100664 len = ntohl(hdr->ih_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000665
666 if (verify) {
667 ulong csum = 0;
668#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
669 ulong cdata = data, edata = cdata + len;
670#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
671
wdenk4b9206e2004-03-23 22:14:11 +0000672 puts (" Verifying Checksum ... ");
wdenk47d1a6e2002-11-03 00:01:44 +0000673
674#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
675
676 while (cdata < edata) {
677 ulong chunk = edata - cdata;
678
679 if (chunk > CHUNKSZ)
680 chunk = CHUNKSZ;
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200681 csum = crc32 (csum, (uchar *)cdata, chunk);
wdenk47d1a6e2002-11-03 00:01:44 +0000682 cdata += chunk;
683
684 WATCHDOG_RESET();
685 }
686#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Wolfgang Denk77ddac92005-10-13 16:45:02 +0200687 csum = crc32 (0, (uchar *)data, len);
wdenk47d1a6e2002-11-03 00:01:44 +0000688#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
689
Wolfgang Denkdc013d42006-03-12 01:59:35 +0100690 if (csum != ntohl(hdr->ih_dcrc)) {
wdenk4b9206e2004-03-23 22:14:11 +0000691 puts ("Bad Data CRC\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200692 show_boot_progress (-12);
wdenk47d1a6e2002-11-03 00:01:44 +0000693 do_reset (cmdtp, flag, argc, argv);
694 }
wdenk4b9206e2004-03-23 22:14:11 +0000695 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000696 }
697
Heiko Schocherfad63402007-07-13 09:54:17 +0200698 show_boot_progress (11);
wdenk47d1a6e2002-11-03 00:01:44 +0000699
700 if ((hdr->ih_os != IH_OS_LINUX) ||
701 (hdr->ih_arch != IH_CPU_PPC) ||
702 (hdr->ih_type != IH_TYPE_RAMDISK) ) {
wdenk4b9206e2004-03-23 22:14:11 +0000703 puts ("No Linux PPC Ramdisk Image\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200704 show_boot_progress (-13);
wdenk47d1a6e2002-11-03 00:01:44 +0000705 do_reset (cmdtp, flag, argc, argv);
706 }
707
708 /*
709 * Now check if we have a multifile image
710 */
711 } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) {
712 u_long tail = ntohl(len_ptr[0]) % 4;
713 int i;
714
Heiko Schocherfad63402007-07-13 09:54:17 +0200715 show_boot_progress (13);
wdenk47d1a6e2002-11-03 00:01:44 +0000716
717 /* skip kernel length and terminator */
718 data = (ulong)(&len_ptr[2]);
719 /* skip any additional image length fields */
720 for (i=1; len_ptr[i]; ++i)
721 data += 4;
722 /* add kernel length, and align */
723 data += ntohl(len_ptr[0]);
724 if (tail) {
725 data += 4 - tail;
726 }
727
728 len = ntohl(len_ptr[1]);
729
730 } else {
731 /*
732 * no initrd image
733 */
Heiko Schocherfad63402007-07-13 09:54:17 +0200734 show_boot_progress (14);
wdenk47d1a6e2002-11-03 00:01:44 +0000735
736 len = data = 0;
737 }
738
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400739#if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT)
Matthew McClintock5de62c42006-08-22 09:31:59 -0500740 if(argc > 3) {
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500741 of_flat_tree = (char *) simple_strtoul(argv[3], NULL, 16);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500742 hdr = (image_header_t *)of_flat_tree;
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400743#if defined(CONFIG_OF_FLAT_TREE)
744 if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400745#else
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400746 if (fdt_check_header(of_flat_tree + sizeof(image_header_t)) != 0) {
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400747#endif
Matthew McClintock25c751e2006-08-16 10:54:09 -0500748#ifndef CFG_NO_FLASH
Kumar Galac76f9512006-10-24 23:47:37 -0500749 if (addr2info((ulong)of_flat_tree) != NULL)
750 of_data = (ulong)of_flat_tree;
Matthew McClintock25c751e2006-08-16 10:54:09 -0500751#endif
752 } else if (ntohl(hdr->ih_magic) == IH_MAGIC) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400753 printf("## Flat Device Tree at %08lX\n", hdr);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500754 print_image_hdr(hdr);
755
756 if ((ntohl(hdr->ih_load) < ((unsigned long)hdr + ntohl(hdr->ih_size) + sizeof(hdr))) &&
757 ((ntohl(hdr->ih_load) + ntohl(hdr->ih_size)) > (unsigned long)hdr)) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400758 puts ("ERROR: fdt overwritten - "
759 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400760 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500761 }
Matthew McClintock87a449c2006-08-22 09:23:55 -0500762
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400763 puts (" Verifying Checksum ... ");
Matthew McClintock25c751e2006-08-16 10:54:09 -0500764 memmove (&header, (char *)hdr, sizeof(image_header_t));
765 checksum = ntohl(header.ih_hcrc);
766 header.ih_hcrc = 0;
767
768 if(checksum != crc32(0, (uchar *)&header, sizeof(image_header_t))) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400769 puts ("ERROR: fdt header checksum invalid - "
770 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400771 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500772 }
773
774 checksum = ntohl(hdr->ih_dcrc);
775 addr = (ulong)((uchar *)(hdr) + sizeof(image_header_t));
Matthew McClintock25c751e2006-08-16 10:54:09 -0500776
Wolfgang Denk9877d7d2007-05-04 10:02:33 +0200777 if(checksum != crc32(0, (uchar *)addr, ntohl(hdr->ih_size))) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400778 puts ("ERROR: fdt checksum invalid - "
779 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400780 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500781 }
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400782 puts ("OK\n");
Matthew McClintock25c751e2006-08-16 10:54:09 -0500783
784 if (ntohl(hdr->ih_type) != IH_TYPE_FLATDT) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400785 puts ("ERROR: uImage is not a fdt - "
786 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400787 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500788 }
789 if (ntohl(hdr->ih_comp) != IH_COMP_NONE) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400790 puts ("ERROR: uImage is compressed - "
791 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400792 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500793 }
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400794#if defined(CONFIG_OF_FLAT_TREE)
Matthew McClintock25c751e2006-08-16 10:54:09 -0500795 if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400796#else
797 if (fdt_check_header(of_flat_tree + sizeof(image_header_t)) != 0) {
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400798#endif
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400799 puts ("ERROR: uImage data is not a fdt - "
800 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400801 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500802 }
Matthew McClintock87a449c2006-08-22 09:23:55 -0500803
804 memmove((void *)ntohl(hdr->ih_load),
Matthew McClintock25c751e2006-08-16 10:54:09 -0500805 (void *)(of_flat_tree + sizeof(image_header_t)),
806 ntohl(hdr->ih_size));
807 of_flat_tree = (char *)ntohl(hdr->ih_load);
808 } else {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400809 puts ("Did not find a flat Flat Device Tree.\n"
810 "Must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400811 do_reset (cmdtp, flag, argc, argv);
Matthew McClintock25c751e2006-08-16 10:54:09 -0500812 }
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400813 printf (" Booting using the fdt at 0x%x\n",
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500814 of_flat_tree);
Kumar Galac76f9512006-10-24 23:47:37 -0500815 } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]) && (len_ptr[2])) {
816 u_long tail = ntohl(len_ptr[0]) % 4;
817 int i;
818
819 /* skip kernel length, initrd length, and terminator */
820 of_data = (ulong)(&len_ptr[3]);
821 /* skip any additional image length fields */
822 for (i=2; len_ptr[i]; ++i)
823 of_data += 4;
824 /* add kernel length, and align */
825 of_data += ntohl(len_ptr[0]);
826 if (tail) {
827 of_data += 4 - tail;
828 }
829
830 /* add initrd length, and align */
831 tail = ntohl(len_ptr[1]) % 4;
832 of_data += ntohl(len_ptr[1]);
833 if (tail) {
834 of_data += 4 - tail;
835 }
836
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400837#if defined(CONFIG_OF_FLAT_TREE)
838 if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) {
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400839#else
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400840 if (fdt_check_header(of_flat_tree + sizeof(image_header_t)) != 0) {
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400841#endif
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400842 puts ("ERROR: image is not a fdt - "
843 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400844 do_reset (cmdtp, flag, argc, argv);
Kumar Galac76f9512006-10-24 23:47:37 -0500845 }
846
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400847#if defined(CONFIG_OF_FLAT_TREE)
Kumar Galac76f9512006-10-24 23:47:37 -0500848 if (((struct boot_param_header *)of_data)->totalsize != ntohl(len_ptr[2])) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400849#else
850 if (be32_to_cpu(fdt_totalsize(of_data)) != ntohl(len_ptr[2])) {
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400851#endif
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400852 puts ("ERROR: fdt size != image size - "
853 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400854 do_reset (cmdtp, flag, argc, argv);
Kumar Galac76f9512006-10-24 23:47:37 -0500855 }
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500856 }
857#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000858 if (!data) {
wdenk56f94be2002-11-05 16:35:14 +0000859 debug ("No initrd\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000860 }
wdenk47d1a6e2002-11-03 00:01:44 +0000861
862 if (data) {
wdenk38b99262003-05-23 23:18:21 +0000863 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
864 initrd_start = data;
865 initrd_end = initrd_start + len;
866 } else {
wdenk47d1a6e2002-11-03 00:01:44 +0000867 initrd_start = (ulong)kbd - len;
868 initrd_start &= ~(4096 - 1); /* align on page */
869
870 if (initrd_high) {
871 ulong nsp;
872
873 /*
874 * the inital ramdisk does not need to be within
875 * CFG_BOOTMAPSZ as it is not accessed until after
876 * the mm system is initialised.
877 *
878 * do the stack bottom calculation again and see if
879 * the initrd will fit just below the monitor stack
880 * bottom without overwriting the area allocated
881 * above for command line args and board info.
882 */
883 asm( "mr %0,1": "=r"(nsp) : );
884 nsp -= 2048; /* just to be sure */
885 nsp &= ~0xF;
886 if (nsp > initrd_high) /* limit as specified */
887 nsp = initrd_high;
888 nsp -= len;
889 nsp &= ~(4096 - 1); /* align on page */
890 if (nsp >= sp)
891 initrd_start = nsp;
892 }
893
Heiko Schocherfad63402007-07-13 09:54:17 +0200894 show_boot_progress (12);
wdenk56f94be2002-11-05 16:35:14 +0000895
896 debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
wdenk47d1a6e2002-11-03 00:01:44 +0000897 data, data + len - 1, len, len);
wdenk56f94be2002-11-05 16:35:14 +0000898
wdenk47d1a6e2002-11-03 00:01:44 +0000899 initrd_end = initrd_start + len;
900 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
901 initrd_start, initrd_end);
902#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
903 {
904 size_t l = len;
905 void *to = (void *)initrd_start;
906 void *from = (void *)data;
907
908 while (l > 0) {
909 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
910 WATCHDOG_RESET();
911 memmove (to, from, tail);
912 to += tail;
913 from += tail;
914 l -= tail;
915 }
916 }
917#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
918 memmove ((void *)initrd_start, (void *)data, len);
919#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
wdenk4b9206e2004-03-23 22:14:11 +0000920 puts ("OK\n");
wdenk38b99262003-05-23 23:18:21 +0000921 }
wdenk47d1a6e2002-11-03 00:01:44 +0000922 } else {
923 initrd_start = 0;
924 initrd_end = 0;
925 }
926
Jerry Van Baren210f4632007-08-15 11:13:15 -0400927#if defined(CONFIG_OF_LIBFDT)
928
Andy Fleming073e1b52007-08-14 10:32:59 -0500929#ifdef CFG_BOOTMAPSZ
930 /*
931 * The blob must be within CFG_BOOTMAPSZ,
Jerry Van Baren210f4632007-08-15 11:13:15 -0400932 * so we flag it to be copied if it is not.
Andy Fleming073e1b52007-08-14 10:32:59 -0500933 */
934 if (of_flat_tree >= (char *)CFG_BOOTMAPSZ)
935 of_data = of_flat_tree;
936#endif
937
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400938 /* move of_flat_tree if needed */
939 if (of_data) {
940 int err;
941 ulong of_start, of_len;
Gerald Van Barenc28abb92007-04-14 22:51:24 -0400942
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400943 of_len = be32_to_cpu(fdt_totalsize(of_data));
Andy Fleming073e1b52007-08-14 10:32:59 -0500944
945 /* position on a 4K boundary before the kbd */
946 of_start = (ulong)kbd - of_len;
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400947 of_start &= ~(4096 - 1); /* align on page */
948 debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
949 of_data, of_data + of_len - 1, of_len, of_len);
950
Gerald Van Barenc28abb92007-04-14 22:51:24 -0400951 of_flat_tree = (char *)of_start;
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400952 printf (" Loading Device Tree to %08lx, end %08lx ... ",
953 of_start, of_start + of_len - 1);
Gerald Van Baren89c87572007-05-08 21:27:35 -0400954 err = fdt_open_into((void *)of_data, (void *)of_start, of_len);
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400955 if (err != 0) {
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400956 puts ("ERROR: fdt move failed - "
957 "must RESET the board to recover.\n");
Gerald Van Baren38eb5082007-05-12 09:45:46 -0400958 do_reset (cmdtp, flag, argc, argv);
Gerald Van Barenc28abb92007-04-14 22:51:24 -0400959 }
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400960 }
961 /*
962 * Add the chosen node if it doesn't exist, add the env and bd_t
963 * if the user wants it (the logic is in the subroutines).
964 */
965 if (fdt_chosen(of_flat_tree, initrd_start, initrd_end, 0) < 0) {
966 puts ("ERROR: /chosen node create failed - "
967 "must RESET the board to recover.\n");
968 do_reset (cmdtp, flag, argc, argv);
969 }
Gerald Van Barenc28abb92007-04-14 22:51:24 -0400970#ifdef CONFIG_OF_HAS_UBOOT_ENV
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400971 if (fdt_env(of_flat_tree) < 0) {
972 puts ("ERROR: /u-boot-env node create failed - "
973 "must RESET the board to recover.\n");
974 do_reset (cmdtp, flag, argc, argv);
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400975 }
976#endif
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400977#ifdef CONFIG_OF_HAS_BD_T
978 if (fdt_bd_t(of_flat_tree) < 0) {
979 puts ("ERROR: /bd_t node create failed - "
980 "must RESET the board to recover.\n");
981 do_reset (cmdtp, flag, argc, argv);
982 }
983#endif
Gerald Van Barene125a2f2007-07-10 20:40:39 -0400984#ifdef CONFIG_OF_BOARD_SETUP
985 /* Call the board-specific fixup routine */
Kim Phillips91148bf2007-07-17 13:56:53 -0500986 ft_board_setup(of_flat_tree, gd->bd);
Gerald Van Barene125a2f2007-07-10 20:40:39 -0400987#endif
Gerald Van Barenc45874b2007-06-25 19:52:23 -0400988#endif /* CONFIG_OF_LIBFDT */
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400989#if defined(CONFIG_OF_FLAT_TREE)
Andy Fleming10aaf712007-08-15 17:30:56 -0500990#ifdef CFG_BOOTMAPSZ
991 /*
992 * The blob must be within CFG_BOOTMAPSZ,
993 * so we flag it to be copied if it is not.
994 */
995 if (of_flat_tree >= (char *)CFG_BOOTMAPSZ)
996 of_data = of_flat_tree;
997#endif
998
Kumar Galac76f9512006-10-24 23:47:37 -0500999 /* move of_flat_tree if needed */
1000 if (of_data) {
1001 ulong of_start, of_len;
1002 of_len = ((struct boot_param_header *)of_data)->totalsize;
Andy Fleming073e1b52007-08-14 10:32:59 -05001003
Kumar Galac76f9512006-10-24 23:47:37 -05001004 /* provide extra 8k pad */
Andy Fleming073e1b52007-08-14 10:32:59 -05001005 of_start = (ulong)kbd - of_len - 8192;
Kumar Galac76f9512006-10-24 23:47:37 -05001006 of_start &= ~(4096 - 1); /* align on page */
1007 debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
1008 of_data, of_data + of_len - 1, of_len, of_len);
1009
1010 of_flat_tree = (char *)of_start;
1011 printf (" Loading Device Tree to %08lx, end %08lx ... ",
1012 of_start, of_start + of_len - 1);
1013 memmove ((void *)of_start, (void *)of_data, of_len);
1014 }
Gerald Van Barenc45874b2007-06-25 19:52:23 -04001015 /*
1016 * Create the /chosen node and modify the blob with board specific
1017 * values as needed.
1018 */
Gerald Van Baren38eb5082007-05-12 09:45:46 -04001019 ft_setup(of_flat_tree, kbd, initrd_start, initrd_end);
1020 /* ft_dump_blob(of_flat_tree); */
1021#endif
Gerald Van Baren38eb5082007-05-12 09:45:46 -04001022 debug ("## Transferring control to Linux (at address %08lx) ...\n",
1023 (ulong)kernel);
1024
1025 show_boot_progress (15);
1026
1027#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
1028 unlock_ram_in_cache();
1029#endif
1030
1031#if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT)
1032 if (of_flat_tree) { /* device tree; boot new style */
1033 /*
1034 * Linux Kernel Parameters (passing device tree):
Gerald Van Barenc45874b2007-06-25 19:52:23 -04001035 * r3: pointer to the fdt, followed by the board info data
Gerald Van Baren38eb5082007-05-12 09:45:46 -04001036 * r4: physical pointer to the kernel itself
1037 * r5: NULL
1038 * r6: NULL
1039 * r7: NULL
1040 */
1041 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
1042 /* does not return */
1043 }
1044#endif
Wolfgang Denkf57f70a2005-10-13 01:45:54 +02001045 /*
Stefan Roeseda5553b2006-11-27 17:04:06 +01001046 * Linux Kernel Parameters (passing board info data):
1047 * r3: ptr to board info data
1048 * r4: initrd_start or 0 if no initrd
1049 * r5: initrd_end - unused if r4 is 0
1050 * r6: Start of command line string
1051 * r7: End of command line string
1052 */
Gerald Van Baren38eb5082007-05-12 09:45:46 -04001053 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
1054 /* does not return */
wdenk47d1a6e2002-11-03 00:01:44 +00001055}
wdenk1cb8e982003-03-06 21:55:29 +00001056#endif /* CONFIG_PPC */
wdenk47d1a6e2002-11-03 00:01:44 +00001057
1058static void
1059do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
1060 int argc, char *argv[],
1061 ulong addr,
1062 ulong *len_ptr,
1063 int verify)
1064{
wdenk47d1a6e2002-11-03 00:01:44 +00001065 image_header_t *hdr = &header;
1066
1067 void (*loader)(bd_t *, image_header_t *, char *, char *);
1068 image_header_t *img_addr;
1069 char *consdev;
1070 char *cmdline;
1071
1072
1073 /*
1074 * Booting a (NetBSD) kernel image
1075 *
1076 * This process is pretty similar to a standalone application:
1077 * The (first part of an multi-) image must be a stage-2 loader,
1078 * which in turn is responsible for loading & invoking the actual
1079 * kernel. The only differences are the parameters being passed:
1080 * besides the board info strucure, the loader expects a command
1081 * line, the name of the console device, and (optionally) the
1082 * address of the original image header.
1083 */
1084
1085 img_addr = 0;
1086 if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]))
1087 img_addr = (image_header_t *) addr;
1088
1089
1090 consdev = "";
1091#if defined (CONFIG_8xx_CONS_SMC1)
1092 consdev = "smc1";
1093#elif defined (CONFIG_8xx_CONS_SMC2)
1094 consdev = "smc2";
1095#elif defined (CONFIG_8xx_CONS_SCC2)
1096 consdev = "scc2";
1097#elif defined (CONFIG_8xx_CONS_SCC3)
1098 consdev = "scc3";
1099#endif
1100
1101 if (argc > 2) {
1102 ulong len;
1103 int i;
1104
1105 for (i=2, len=0 ; i<argc ; i+=1)
1106 len += strlen (argv[i]) + 1;
1107 cmdline = malloc (len);
1108
1109 for (i=2, len=0 ; i<argc ; i+=1) {
1110 if (i > 2)
1111 cmdline[len++] = ' ';
1112 strcpy (&cmdline[len], argv[i]);
1113 len += strlen (argv[i]);
1114 }
1115 } else if ((cmdline = getenv("bootargs")) == NULL) {
1116 cmdline = "";
1117 }
1118
Wolfgang Denkdc013d42006-03-12 01:59:35 +01001119 loader = (void (*)(bd_t *, image_header_t *, char *, char *)) ntohl(hdr->ih_ep);
wdenk47d1a6e2002-11-03 00:01:44 +00001120
1121 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1122 (ulong)loader);
1123
Heiko Schocherfad63402007-07-13 09:54:17 +02001124 show_boot_progress (15);
wdenk47d1a6e2002-11-03 00:01:44 +00001125
1126 /*
1127 * NetBSD Stage-2 Loader Parameters:
1128 * r3: ptr to board info data
1129 * r4: image address
1130 * r5: console device
1131 * r6: boot args string
1132 */
1133 (*loader) (gd->bd, img_addr, consdev, cmdline);
1134}
1135
wdenk7f70e852003-05-20 14:25:27 +00001136#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1137
1138/* Function that returns a character from the environment */
1139extern uchar (*env_get_char)(int);
1140
1141static void
1142do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1143 int argc, char *argv[],
1144 ulong addr,
1145 ulong *len_ptr,
1146 int verify)
1147{
wdenk7f70e852003-05-20 14:25:27 +00001148 ulong top;
1149 char *s, *cmdline;
1150 char **fwenv, **ss;
1151 int i, j, nxt, len, envno, envsz;
1152 bd_t *kbd;
1153 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
1154 image_header_t *hdr = &header;
1155
1156 /*
1157 * Booting an ARTOS kernel image + application
1158 */
1159
1160 /* this used to be the top of memory, but was wrong... */
1161#ifdef CONFIG_PPC
1162 /* get stack pointer */
1163 asm volatile ("mr %0,1" : "=r"(top) );
1164#endif
1165 debug ("## Current stack ends at 0x%08lX ", top);
1166
1167 top -= 2048; /* just to be sure */
1168 if (top > CFG_BOOTMAPSZ)
1169 top = CFG_BOOTMAPSZ;
1170 top &= ~0xF;
1171
1172 debug ("=> set upper limit to 0x%08lX\n", top);
1173
1174 /* first check the artos specific boot args, then the linux args*/
1175 if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL)
1176 s = "";
1177
1178 /* get length of cmdline, and place it */
1179 len = strlen(s);
1180 top = (top - (len + 1)) & ~0xF;
1181 cmdline = (char *)top;
1182 debug ("## cmdline at 0x%08lX ", top);
1183 strcpy(cmdline, s);
1184
1185 /* copy bdinfo */
1186 top = (top - sizeof(bd_t)) & ~0xF;
1187 debug ("## bd at 0x%08lX ", top);
1188 kbd = (bd_t *)top;
1189 memcpy(kbd, gd->bd, sizeof(bd_t));
1190
1191 /* first find number of env entries, and their size */
1192 envno = 0;
1193 envsz = 0;
1194 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1195 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1196 ;
1197 envno++;
1198 envsz += (nxt - i) + 1; /* plus trailing zero */
1199 }
1200 envno++; /* plus the terminating zero */
1201 debug ("## %u envvars total size %u ", envno, envsz);
1202
1203 top = (top - sizeof(char **)*envno) & ~0xF;
1204 fwenv = (char **)top;
1205 debug ("## fwenv at 0x%08lX ", top);
1206
1207 top = (top - envsz) & ~0xF;
1208 s = (char *)top;
1209 ss = fwenv;
1210
1211 /* now copy them */
1212 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
1213 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
1214 ;
1215 *ss++ = s;
1216 for (j = i; j < nxt; ++j)
1217 *s++ = env_get_char(j);
1218 *s++ = '\0';
1219 }
1220 *ss++ = NULL; /* terminate */
1221
1222 entry = (void (*)(bd_t *, char *, char **, ulong))ntohl(hdr->ih_ep);
1223 (*entry)(kbd, cmdline, fwenv, top);
1224}
1225#endif
1226
1227
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001228#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001229int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1230{
1231 int rcode = 0;
1232#ifndef CFG_HUSH_PARSER
1233 if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1;
1234#else
1235 if (parse_string_outer(getenv("bootcmd"),
1236 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1;
1237#endif
1238 return rcode;
1239}
wdenk8bde7f72003-06-27 21:31:46 +00001240
wdenk0d498392003-07-01 21:06:45 +00001241U_BOOT_CMD(
1242 boot, 1, 1, do_bootd,
wdenk9d2b18a2003-06-28 23:11:04 +00001243 "boot - boot default, i.e., run 'bootcmd'\n",
1244 NULL
1245);
1246
1247/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001248U_BOOT_CMD(
1249 bootd, 1, 1, do_bootd,
wdenk8bde7f72003-06-27 21:31:46 +00001250 "bootd - boot default, i.e., run 'bootcmd'\n",
1251 NULL
1252);
1253
wdenk47d1a6e2002-11-03 00:01:44 +00001254#endif
1255
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001256#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +00001257int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1258{
1259 int arg;
1260 ulong addr;
1261 int rcode=0;
1262
1263 if (argc < 2) {
1264 return image_info (load_addr);
1265 }
1266
1267 for (arg=1; arg <argc; ++arg) {
1268 addr = simple_strtoul(argv[arg], NULL, 16);
1269 if (image_info (addr) != 0) rcode = 1;
1270 }
1271 return rcode;
1272}
1273
1274static int image_info (ulong addr)
1275{
1276 ulong data, len, checksum;
1277 image_header_t *hdr = &header;
1278
1279 printf ("\n## Checking Image at %08lx ...\n", addr);
1280
1281 /* Copy header so we can blank CRC field for re-calculation */
1282 memmove (&header, (char *)addr, sizeof(image_header_t));
1283
1284 if (ntohl(hdr->ih_magic) != IH_MAGIC) {
wdenk4b9206e2004-03-23 22:14:11 +00001285 puts (" Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001286 return 1;
1287 }
1288
1289 data = (ulong)&header;
1290 len = sizeof(image_header_t);
1291
1292 checksum = ntohl(hdr->ih_hcrc);
1293 hdr->ih_hcrc = 0;
1294
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001295 if (crc32 (0, (uchar *)data, len) != checksum) {
wdenk4b9206e2004-03-23 22:14:11 +00001296 puts (" Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001297 return 1;
1298 }
1299
1300 /* for multi-file images we need the data part, too */
1301 print_image_hdr ((image_header_t *)addr);
1302
1303 data = addr + sizeof(image_header_t);
1304 len = ntohl(hdr->ih_size);
1305
wdenk4b9206e2004-03-23 22:14:11 +00001306 puts (" Verifying Checksum ... ");
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001307 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk4b9206e2004-03-23 22:14:11 +00001308 puts (" Bad Data CRC\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001309 return 1;
1310 }
wdenk4b9206e2004-03-23 22:14:11 +00001311 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001312 return 0;
1313}
wdenk0d498392003-07-01 21:06:45 +00001314
1315U_BOOT_CMD(
1316 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +00001317 "iminfo - print header information for application image\n",
1318 "addr [addr ...]\n"
1319 " - print header information for application image starting at\n"
1320 " address 'addr' in memory; this includes verification of the\n"
1321 " image contents (magic number, header and payload checksums)\n"
1322);
1323
Jon Loeliger90253172007-07-10 11:02:44 -05001324#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001325
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001326#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +00001327/*-----------------------------------------------------------------------
1328 * List all images found in flash.
1329 */
1330int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1331{
1332 flash_info_t *info;
1333 int i, j;
1334 image_header_t *hdr;
wdenk5bb226e2003-11-17 21:14:37 +00001335 ulong data, len, checksum;
wdenk27b207f2003-07-24 23:38:38 +00001336
1337 for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) {
1338 if (info->flash_id == FLASH_UNKNOWN)
1339 goto next_bank;
Marian Balakowicze6f2e902005-10-11 19:09:42 +02001340 for (j=0; j<info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001341
1342 if (!(hdr=(image_header_t *)info->start[j]) ||
1343 (ntohl(hdr->ih_magic) != IH_MAGIC))
1344 goto next_sector;
1345
1346 /* Copy header so we can blank CRC field for re-calculation */
1347 memmove (&header, (char *)hdr, sizeof(image_header_t));
1348
1349 checksum = ntohl(header.ih_hcrc);
1350 header.ih_hcrc = 0;
1351
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001352 if (crc32 (0, (uchar *)&header, sizeof(image_header_t))
wdenk27b207f2003-07-24 23:38:38 +00001353 != checksum)
1354 goto next_sector;
1355
1356 printf ("Image at %08lX:\n", (ulong)hdr);
1357 print_image_hdr( hdr );
wdenk5bb226e2003-11-17 21:14:37 +00001358
1359 data = (ulong)hdr + sizeof(image_header_t);
1360 len = ntohl(hdr->ih_size);
1361
wdenk4b9206e2004-03-23 22:14:11 +00001362 puts (" Verifying Checksum ... ");
Wolfgang Denk77ddac92005-10-13 16:45:02 +02001363 if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) {
wdenk4b9206e2004-03-23 22:14:11 +00001364 puts (" Bad Data CRC\n");
wdenk5bb226e2003-11-17 21:14:37 +00001365 }
wdenk4b9206e2004-03-23 22:14:11 +00001366 puts ("OK\n");
wdenkbdccc4f2003-08-05 17:43:17 +00001367next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001368 }
wdenkbdccc4f2003-08-05 17:43:17 +00001369next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001370 }
1371
1372 return (0);
1373}
1374
1375U_BOOT_CMD(
1376 imls, 1, 1, do_imls,
1377 "imls - list all images found in flash\n",
1378 "\n"
1379 " - Prints information about all images found at sector\n"
1380 " boundaries in flash.\n"
1381);
Jon Loeliger90253172007-07-10 11:02:44 -05001382#endif
wdenk27b207f2003-07-24 23:38:38 +00001383
wdenk47d1a6e2002-11-03 00:01:44 +00001384void
1385print_image_hdr (image_header_t *hdr)
1386{
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001387#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
wdenk47d1a6e2002-11-03 00:01:44 +00001388 time_t timestamp = (time_t)ntohl(hdr->ih_time);
1389 struct rtc_time tm;
1390#endif
1391
1392 printf (" Image Name: %.*s\n", IH_NMLEN, hdr->ih_name);
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001393#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
wdenk47d1a6e2002-11-03 00:01:44 +00001394 to_tm (timestamp, &tm);
1395 printf (" Created: %4d-%02d-%02d %2d:%02d:%02d UTC\n",
1396 tm.tm_year, tm.tm_mon, tm.tm_mday,
1397 tm.tm_hour, tm.tm_min, tm.tm_sec);
Jon Loeliger90253172007-07-10 11:02:44 -05001398#endif
wdenk4b9206e2004-03-23 22:14:11 +00001399 puts (" Image Type: "); print_type(hdr);
1400 printf ("\n Data Size: %d Bytes = ", ntohl(hdr->ih_size));
wdenk47d1a6e2002-11-03 00:01:44 +00001401 print_size (ntohl(hdr->ih_size), "\n");
wdenk4b9206e2004-03-23 22:14:11 +00001402 printf (" Load Address: %08x\n"
1403 " Entry Point: %08x\n",
1404 ntohl(hdr->ih_load), ntohl(hdr->ih_ep));
wdenk47d1a6e2002-11-03 00:01:44 +00001405
1406 if (hdr->ih_type == IH_TYPE_MULTI) {
1407 int i;
1408 ulong len;
1409 ulong *len_ptr = (ulong *)((ulong)hdr + sizeof(image_header_t));
1410
wdenk4b9206e2004-03-23 22:14:11 +00001411 puts (" Contents:\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001412 for (i=0; (len = ntohl(*len_ptr)); ++i, ++len_ptr) {
1413 printf (" Image %d: %8ld Bytes = ", i, len);
1414 print_size (len, "\n");
1415 }
1416 }
1417}
1418
1419
1420static void
1421print_type (image_header_t *hdr)
1422{
1423 char *os, *arch, *type, *comp;
1424
1425 switch (hdr->ih_os) {
1426 case IH_OS_INVALID: os = "Invalid OS"; break;
1427 case IH_OS_NETBSD: os = "NetBSD"; break;
1428 case IH_OS_LINUX: os = "Linux"; break;
1429 case IH_OS_VXWORKS: os = "VxWorks"; break;
1430 case IH_OS_QNX: os = "QNX"; break;
1431 case IH_OS_U_BOOT: os = "U-Boot"; break;
wdenkd791b1d2003-04-20 14:04:18 +00001432 case IH_OS_RTEMS: os = "RTEMS"; break;
wdenk7f70e852003-05-20 14:25:27 +00001433#ifdef CONFIG_ARTOS
1434 case IH_OS_ARTOS: os = "ARTOS"; break;
1435#endif
wdenk1f4bb372003-07-27 00:21:01 +00001436#ifdef CONFIG_LYNXKDI
1437 case IH_OS_LYNXOS: os = "LynxOS"; break;
1438#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001439 default: os = "Unknown OS"; break;
1440 }
1441
1442 switch (hdr->ih_arch) {
1443 case IH_CPU_INVALID: arch = "Invalid CPU"; break;
1444 case IH_CPU_ALPHA: arch = "Alpha"; break;
1445 case IH_CPU_ARM: arch = "ARM"; break;
Stefan Roese1a1b7372006-10-09 12:55:38 +02001446 case IH_CPU_AVR32: arch = "AVR32"; break;
Wolfgang Denk44ba4642007-03-22 00:13:12 +01001447 case IH_CPU_BLACKFIN: arch = "Blackfin"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001448 case IH_CPU_I386: arch = "Intel x86"; break;
1449 case IH_CPU_IA64: arch = "IA64"; break;
Wolfgang Denk44ba4642007-03-22 00:13:12 +01001450 case IH_CPU_M68K: arch = "M68K"; break;
1451 case IH_CPU_MICROBLAZE: arch = "Microblaze"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001452 case IH_CPU_MIPS64: arch = "MIPS 64 Bit"; break;
Wolfgang Denk44ba4642007-03-22 00:13:12 +01001453 case IH_CPU_MIPS: arch = "MIPS"; break;
1454 case IH_CPU_NIOS2: arch = "Nios-II"; break;
1455 case IH_CPU_NIOS: arch = "Nios"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001456 case IH_CPU_PPC: arch = "PowerPC"; break;
1457 case IH_CPU_S390: arch = "IBM S390"; break;
1458 case IH_CPU_SH: arch = "SuperH"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001459 case IH_CPU_SPARC64: arch = "SPARC 64 Bit"; break;
Wolfgang Denk44ba4642007-03-22 00:13:12 +01001460 case IH_CPU_SPARC: arch = "SPARC"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001461 default: arch = "Unknown Architecture"; break;
1462 }
1463
1464 switch (hdr->ih_type) {
1465 case IH_TYPE_INVALID: type = "Invalid Image"; break;
1466 case IH_TYPE_STANDALONE:type = "Standalone Program"; break;
1467 case IH_TYPE_KERNEL: type = "Kernel Image"; break;
1468 case IH_TYPE_RAMDISK: type = "RAMDisk Image"; break;
1469 case IH_TYPE_MULTI: type = "Multi-File Image"; break;
1470 case IH_TYPE_FIRMWARE: type = "Firmware"; break;
1471 case IH_TYPE_SCRIPT: type = "Script"; break;
Matthew McClintock25c751e2006-08-16 10:54:09 -05001472 case IH_TYPE_FLATDT: type = "Flat Device Tree"; break;
wdenk47d1a6e2002-11-03 00:01:44 +00001473 default: type = "Unknown Image"; break;
1474 }
1475
1476 switch (hdr->ih_comp) {
1477 case IH_COMP_NONE: comp = "uncompressed"; break;
1478 case IH_COMP_GZIP: comp = "gzip compressed"; break;
1479 case IH_COMP_BZIP2: comp = "bzip2 compressed"; break;
1480 default: comp = "unknown compression"; break;
1481 }
1482
1483 printf ("%s %s %s (%s)", arch, os, type, comp);
1484}
1485
1486#define ZALLOC_ALIGNMENT 16
1487
1488static void *zalloc(void *x, unsigned items, unsigned size)
1489{
1490 void *p;
1491
1492 size *= items;
1493 size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1);
1494
1495 p = malloc (size);
1496
1497 return (p);
1498}
1499
1500static void zfree(void *x, void *addr, unsigned nb)
1501{
1502 free (addr);
1503}
1504
1505#define HEAD_CRC 2
1506#define EXTRA_FIELD 4
1507#define ORIG_NAME 8
1508#define COMMENT 0x10
1509#define RESERVED 0xe0
1510
1511#define DEFLATED 8
1512
wdenkeedcd072004-09-08 22:03:11 +00001513int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp)
wdenk47d1a6e2002-11-03 00:01:44 +00001514{
1515 z_stream s;
1516 int r, i, flags;
1517
1518 /* skip header */
1519 i = 10;
1520 flags = src[3];
1521 if (src[2] != DEFLATED || (flags & RESERVED) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +00001522 puts ("Error: Bad gzipped data\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001523 return (-1);
1524 }
1525 if ((flags & EXTRA_FIELD) != 0)
1526 i = 12 + src[10] + (src[11] << 8);
1527 if ((flags & ORIG_NAME) != 0)
1528 while (src[i++] != 0)
1529 ;
1530 if ((flags & COMMENT) != 0)
1531 while (src[i++] != 0)
1532 ;
1533 if ((flags & HEAD_CRC) != 0)
1534 i += 2;
1535 if (i >= *lenp) {
wdenk4b9206e2004-03-23 22:14:11 +00001536 puts ("Error: gunzip out of data in header\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001537 return (-1);
1538 }
1539
1540 s.zalloc = zalloc;
1541 s.zfree = zfree;
1542#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
1543 s.outcb = (cb_func)WATCHDOG_RESET;
1544#else
1545 s.outcb = Z_NULL;
1546#endif /* CONFIG_HW_WATCHDOG */
1547
1548 r = inflateInit2(&s, -MAX_WBITS);
1549 if (r != Z_OK) {
1550 printf ("Error: inflateInit2() returned %d\n", r);
1551 return (-1);
1552 }
1553 s.next_in = src + i;
1554 s.avail_in = *lenp - i;
1555 s.next_out = dst;
1556 s.avail_out = dstlen;
1557 r = inflate(&s, Z_FINISH);
1558 if (r != Z_OK && r != Z_STREAM_END) {
1559 printf ("Error: inflate() returned %d\n", r);
1560 return (-1);
1561 }
1562 *lenp = s.next_out - (unsigned char *) dst;
1563 inflateEnd(&s);
1564
1565 return (0);
1566}
1567
wdenkc29fdfc2003-08-29 20:57:53 +00001568#ifdef CONFIG_BZIP2
1569void bz_internal_error(int errcode)
1570{
1571 printf ("BZIP2 internal error %d\n", errcode);
1572}
1573#endif /* CONFIG_BZIP2 */
1574
wdenkd791b1d2003-04-20 14:04:18 +00001575static void
1576do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1577 ulong addr, ulong *len_ptr, int verify)
1578{
wdenkd791b1d2003-04-20 14:04:18 +00001579 image_header_t *hdr = &header;
1580 void (*entry_point)(bd_t *);
1581
Wolfgang Denkdc013d42006-03-12 01:59:35 +01001582 entry_point = (void (*)(bd_t *)) ntohl(hdr->ih_ep);
wdenkd791b1d2003-04-20 14:04:18 +00001583
1584 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1585 (ulong)entry_point);
1586
Heiko Schocherfad63402007-07-13 09:54:17 +02001587 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001588
1589 /*
1590 * RTEMS Parameters:
1591 * r3: ptr to board info data
1592 */
1593
1594 (*entry_point ) ( gd->bd );
1595}
1596
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001597#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +00001598static void
1599do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1600 ulong addr, ulong *len_ptr, int verify)
1601{
1602 image_header_t *hdr = &header;
1603 char str[80];
1604
Wolfgang Denkdc013d42006-03-12 01:59:35 +01001605 sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001606 setenv("loadaddr", str);
1607 do_bootvx(cmdtp, 0, 0, NULL);
1608}
1609
1610static void
1611do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
1612 ulong addr, ulong *len_ptr, int verify)
1613{
1614 image_header_t *hdr = &header;
1615 char *local_args[2];
1616 char str[16];
1617
Wolfgang Denkdc013d42006-03-12 01:59:35 +01001618 sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001619 local_args[0] = argv[0];
1620 local_args[1] = str; /* and provide it via the arguments */
1621 do_bootelf(cmdtp, 0, 2, local_args);
1622}
Jon Loeliger90253172007-07-10 11:02:44 -05001623#endif
wdenk1f4bb372003-07-27 00:21:01 +00001624
1625#ifdef CONFIG_LYNXKDI
1626static void
1627do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
1628 int argc, char *argv[],
1629 ulong addr,
1630 ulong *len_ptr,
1631 int verify)
1632{
1633 lynxkdi_boot( &header );
1634}
1635
1636#endif /* CONFIG_LYNXKDI */