blob: 67f555e1de358cca7f96da7e4dc7fb0d9b235d54 [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
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010024#define DEBUG
25
wdenk47d1a6e2002-11-03 00:01:44 +000026/*
27 * Boot support
28 */
29#include <common.h>
30#include <watchdog.h>
31#include <command.h>
wdenk47d1a6e2002-11-03 00:01:44 +000032#include <image.h>
33#include <malloc.h>
34#include <zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000035#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000036#include <environment.h>
wdenk47d1a6e2002-11-03 00:01:44 +000037#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000038
Gerald Van Baren213bf8c2007-03-31 12:23:51 -040039#if defined(CONFIG_OF_LIBFDT)
40#include <fdt.h>
41#include <libfdt.h>
Gerald Van Barenc28abb92007-04-14 22:51:24 -040042#include <fdt_support.h>
Marian Balakowiczd45d5a12008-01-08 18:11:43 +010043#elif defined(CONFIG_OF_FLAT_TREE)
Wolfgang Denkf57f70a2005-10-13 01:45:54 +020044#include <ft_build.h>
45#endif
46
Wolfgang Denkd87080b2006-03-31 18:32:53 +020047DECLARE_GLOBAL_DATA_PTR;
48
Gerald Van Baren38eb5082007-05-12 09:45:46 -040049/*cmd_boot.c*/
50extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk8bde7f72003-06-27 21:31:46 +000051
Jon Loeligerbaa26db2007-07-08 17:51:39 -050052#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
wdenk47d1a6e2002-11-03 00:01:44 +000053#include <rtc.h>
54#endif
55
56#ifdef CFG_HUSH_PARSER
57#include <hush.h>
58#endif
59
wdenk2abbe072003-06-16 23:50:08 +000060#ifdef CONFIG_HAS_DATAFLASH
61#include <dataflash.h>
62#endif
63
wdenk47d1a6e2002-11-03 00:01:44 +000064/*
65 * Some systems (for example LWMON) have very short watchdog periods;
66 * we must make sure to split long operations like memmove() or
67 * crc32() into reasonable chunks.
68 */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010069#define CHUNKSZ (64 * 1024)
wdenk47d1a6e2002-11-03 00:01:44 +000070
wdenkeedcd072004-09-08 22:03:11 +000071int gunzip (void *, int, unsigned char *, unsigned long *);
wdenk47d1a6e2002-11-03 00:01:44 +000072
Marian Balakowicz321359f2008-01-08 18:11:43 +010073#ifdef CONFIG_BZIP2
74extern void bz_internal_error(int);
75#endif
wdenk47d1a6e2002-11-03 00:01:44 +000076
Jon Loeligerbaa26db2007-07-08 17:51:39 -050077#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000078static int image_info (unsigned long addr);
79#endif
wdenk27b207f2003-07-24 23:38:38 +000080
Jon Loeligerbaa26db2007-07-08 17:51:39 -050081#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000082#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020083extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000084static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
85#endif
86
wdenk47d1a6e2002-11-03 00:01:44 +000087static void print_type (image_header_t *hdr);
88
wdenk2262cfe2002-11-18 00:14:45 +000089#ifdef __I386__
90image_header_t *fake_header(image_header_t *hdr, void *ptr, int size);
91#endif
92
wdenk47d1a6e2002-11-03 00:01:44 +000093/*
94 * Continue booting an OS image; caller already has:
95 * - copied image header to global variable `header'
96 * - checked header magic number, checksums (both header & image),
97 * - verified image architecture (PPC) and type (KERNEL or MULTI),
98 * - loaded (first part of) image to header load address,
99 * - disabled interrupts.
100 */
101typedef void boot_os_Fcn (cmd_tbl_t *cmdtp, int flag,
102 int argc, char *argv[],
103 ulong addr, /* of image to boot */
104 ulong *len_ptr, /* multi-file image length table */
105 int verify); /* getenv("verify")[0] != 'n' */
106
wdenk47d1a6e2002-11-03 00:01:44 +0000107extern boot_os_Fcn do_bootm_linux;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100108
wdenkf72da342003-10-10 10:05:42 +0000109#ifdef CONFIG_SILENT_CONSOLE
110static void fixup_silent_linux (void);
111#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000112static boot_os_Fcn do_bootm_netbsd;
wdenkd791b1d2003-04-20 14:04:18 +0000113static boot_os_Fcn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500114#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000115static boot_os_Fcn do_bootm_vxworks;
116static boot_os_Fcn do_bootm_qnxelf;
117int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] );
118int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] );
Jon Loeliger90253172007-07-10 11:02:44 -0500119#endif
wdenk7f70e852003-05-20 14:25:27 +0000120#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
121static boot_os_Fcn do_bootm_artos;
122#endif
wdenk1f4bb372003-07-27 00:21:01 +0000123#ifdef CONFIG_LYNXKDI
124static boot_os_Fcn do_bootm_lynxkdi;
125extern void lynxkdi_boot( image_header_t * );
126#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000127
Stefan Roese15940c92006-03-13 11:16:36 +0100128#ifndef CFG_BOOTM_LEN
129#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
130#endif
131
wdenk47d1a6e2002-11-03 00:01:44 +0000132image_header_t header;
133
134ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
135
136int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
137{
138 ulong iflag;
139 ulong addr;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100140 ulong data, len;
wdenk47d1a6e2002-11-03 00:01:44 +0000141 ulong *len_ptr;
Stefan Roese15940c92006-03-13 11:16:36 +0100142 uint unc_len = CFG_BOOTM_LEN;
wdenk47d1a6e2002-11-03 00:01:44 +0000143 int i, verify;
144 char *name, *s;
wdenkb13fb012003-10-30 21:49:38 +0000145 int (*appl)(int, char *[]);
wdenk47d1a6e2002-11-03 00:01:44 +0000146 image_header_t *hdr = &header;
147
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100148 verify = getenv_verify ();
wdenk47d1a6e2002-11-03 00:01:44 +0000149
150 if (argc < 2) {
151 addr = load_addr;
152 } else {
153 addr = simple_strtoul(argv[1], NULL, 16);
154 }
155
Heiko Schocherfad63402007-07-13 09:54:17 +0200156 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000157 printf ("## Booting image at %08lx ...\n", addr);
158
159 /* Copy header so we can blank CRC field for re-calculation */
wdenk2abbe072003-06-16 23:50:08 +0000160#ifdef CONFIG_HAS_DATAFLASH
161 if (addr_dataflash(addr)){
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100162 read_dataflash (addr, image_get_header_size (), (char *)&header);
wdenk2abbe072003-06-16 23:50:08 +0000163 } else
164#endif
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100165 memmove (&header, (char *)addr, image_get_header_size ());
wdenk47d1a6e2002-11-03 00:01:44 +0000166
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100167 if (!image_check_magic (hdr)) {
wdenk2262cfe2002-11-18 00:14:45 +0000168#ifdef __I386__ /* correct image format not implemented yet - fake it */
169 if (fake_header(hdr, (void*)addr, -1) != NULL) {
170 /* to compensate for the addition below */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100171 addr -= image_get_header_size ();
wdenk2262cfe2002-11-18 00:14:45 +0000172 /* turnof verify,
173 * fake_header() does not fake the data crc
174 */
175 verify = 0;
176 } else
177#endif /* __I386__ */
178 {
wdenk4b9206e2004-03-23 22:14:11 +0000179 puts ("Bad Magic Number\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200180 show_boot_progress (-1);
wdenk47d1a6e2002-11-03 00:01:44 +0000181 return 1;
wdenk2262cfe2002-11-18 00:14:45 +0000182 }
wdenk47d1a6e2002-11-03 00:01:44 +0000183 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200184 show_boot_progress (2);
wdenk47d1a6e2002-11-03 00:01:44 +0000185
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100186 if (!image_check_hcrc (hdr)) {
wdenk4b9206e2004-03-23 22:14:11 +0000187 puts ("Bad Header Checksum\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200188 show_boot_progress (-2);
wdenk47d1a6e2002-11-03 00:01:44 +0000189 return 1;
190 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200191 show_boot_progress (3);
wdenk47d1a6e2002-11-03 00:01:44 +0000192
Wolfgang Denkbccae902005-10-06 01:50:50 +0200193#ifdef CONFIG_HAS_DATAFLASH
194 if (addr_dataflash(addr)){
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100195 len = image_get_image_size (hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200196 read_dataflash(addr, len, (char *)CFG_LOAD_ADDR);
197 addr = CFG_LOAD_ADDR;
198 }
199#endif
200
201
wdenk47d1a6e2002-11-03 00:01:44 +0000202 /* for multi-file images we need the data part, too */
wdenka57a4962003-10-26 22:52:58 +0000203 print_image_hdr ((image_header_t *)addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000204
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100205 len = image_get_data_size (hdr);
206 data = addr + image_get_header_size ();
207 len_ptr = (ulong *)data;
wdenk47d1a6e2002-11-03 00:01:44 +0000208
209 if (verify) {
wdenk4b9206e2004-03-23 22:14:11 +0000210 puts (" Verifying Checksum ... ");
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100211 if (!image_check_dcrc ((image_header_t *)addr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000212 printf ("Bad Data CRC\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200213 show_boot_progress (-3);
wdenk47d1a6e2002-11-03 00:01:44 +0000214 return 1;
215 }
wdenk4b9206e2004-03-23 22:14:11 +0000216 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000217 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200218 show_boot_progress (4);
wdenk47d1a6e2002-11-03 00:01:44 +0000219
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100220 if (!image_check_target_arch (hdr)) {
221 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
Heiko Schocherfad63402007-07-13 09:54:17 +0200222 show_boot_progress (-4);
wdenk47d1a6e2002-11-03 00:01:44 +0000223 return 1;
224 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200225 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000226
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100227 switch (image_get_type (hdr)) {
wdenkb13fb012003-10-30 21:49:38 +0000228 case IH_TYPE_STANDALONE:
229 name = "Standalone Application";
230 /* A second argument overwrites the load address */
231 if (argc > 2) {
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100232 image_set_load (hdr, simple_strtoul (argv[2], NULL, 16));
wdenkb13fb012003-10-30 21:49:38 +0000233 }
234 break;
235 case IH_TYPE_KERNEL:
236 name = "Kernel Image";
237 break;
wdenkd4ca31c2004-01-02 14:00:00 +0000238 case IH_TYPE_MULTI:
wdenkb13fb012003-10-30 21:49:38 +0000239 name = "Multi-File Image";
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100240 len = image_to_cpu (len_ptr[0]);
wdenkb13fb012003-10-30 21:49:38 +0000241 /* OS kernel is always the first image */
242 data += 8; /* kernel_len + terminator */
243 for (i=1; len_ptr[i]; ++i)
244 data += 4;
245 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000246 default: printf ("Wrong Image Type for %s command\n", cmdtp->name);
Heiko Schocherfad63402007-07-13 09:54:17 +0200247 show_boot_progress (-5);
wdenk47d1a6e2002-11-03 00:01:44 +0000248 return 1;
249 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200250 show_boot_progress (6);
wdenk47d1a6e2002-11-03 00:01:44 +0000251
252 /*
253 * We have reached the point of no return: we are going to
254 * overwrite all exception vector code, so we cannot easily
255 * recover from any failures any more...
256 */
257
258 iflag = disable_interrupts();
259
wdenkc7de8292002-11-19 11:04:11 +0000260#ifdef CONFIG_AMIGAONEG3SE
261 /*
wdenk8bde7f72003-06-27 21:31:46 +0000262 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000263 * bios emulation, so turn them off again
264 */
265 icache_disable();
266 invalidate_l1_instruction_cache();
267 flush_data_cache();
268 dcache_disable();
269#endif
270
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100271 switch (image_get_comp (hdr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000272 case IH_COMP_NONE:
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100273 if (image_get_load (hdr) == addr) {
wdenk47d1a6e2002-11-03 00:01:44 +0000274 printf (" XIP %s ... ", name);
275 } else {
276#if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG)
277 size_t l = len;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100278 void *to = (void *)image_get_load (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000279 void *from = (void *)data;
280
281 printf (" Loading %s ... ", name);
282
283 while (l > 0) {
284 size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l;
285 WATCHDOG_RESET();
286 memmove (to, from, tail);
287 to += tail;
288 from += tail;
289 l -= tail;
290 }
291#else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100292 memmove ((void *)image_get_load (hdr), (uchar *)data, len);
wdenk47d1a6e2002-11-03 00:01:44 +0000293#endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */
294 }
295 break;
296 case IH_COMP_GZIP:
297 printf (" Uncompressing %s ... ", name);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100298 if (gunzip ((void *)image_get_load (hdr), unc_len,
wdenkeedcd072004-09-08 22:03:11 +0000299 (uchar *)data, &len) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000300 puts ("GUNZIP ERROR - must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200301 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000302 do_reset (cmdtp, flag, argc, argv);
303 }
304 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000305#ifdef CONFIG_BZIP2
306 case IH_COMP_BZIP2:
307 printf (" Uncompressing %s ... ", name);
wdenk5653fc32004-02-08 22:55:38 +0000308 /*
309 * If we've got less than 4 MB of malloc() space,
310 * use slower decompression algorithm which requires
311 * at most 2300 KB of memory.
312 */
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100313 i = BZ2_bzBuffToBuffDecompress ((char*)image_get_load (hdr),
wdenk5653fc32004-02-08 22:55:38 +0000314 &unc_len, (char *)data, len,
315 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000316 if (i != BZ_OK) {
317 printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200318 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000319 do_reset (cmdtp, flag, argc, argv);
320 }
321 break;
322#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000323 default:
324 if (iflag)
325 enable_interrupts();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100326 printf ("Unimplemented compression type %d\n", image_get_comp (hdr));
Heiko Schocherfad63402007-07-13 09:54:17 +0200327 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000328 return 1;
329 }
wdenk4b9206e2004-03-23 22:14:11 +0000330 puts ("OK\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200331 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000332
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100333 switch (image_get_type (hdr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000334 case IH_TYPE_STANDALONE:
wdenk47d1a6e2002-11-03 00:01:44 +0000335 if (iflag)
336 enable_interrupts();
337
wdenk4a6fd342003-04-12 23:38:12 +0000338 /* load (and uncompress), but don't start if "autostart"
339 * is set to "no"
340 */
wdenk4a551702003-10-08 23:26:14 +0000341 if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) {
342 char buf[32];
343 sprintf(buf, "%lX", len);
344 setenv("filesize", buf);
wdenk4a6fd342003-04-12 23:38:12 +0000345 return 0;
wdenk4a551702003-10-08 23:26:14 +0000346 }
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100347 appl = (int (*)(int, char *[]))image_get_ep (hdr);
wdenkb13fb012003-10-30 21:49:38 +0000348 (*appl)(argc-1, &argv[1]);
wdenk4a6fd342003-04-12 23:38:12 +0000349 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000350 case IH_TYPE_KERNEL:
351 case IH_TYPE_MULTI:
352 /* handled below */
353 break;
354 default:
355 if (iflag)
356 enable_interrupts();
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100357 printf ("Can't boot image type %d\n", image_get_type (hdr));
Heiko Schocherfad63402007-07-13 09:54:17 +0200358 show_boot_progress (-8);
wdenk47d1a6e2002-11-03 00:01:44 +0000359 return 1;
360 }
Heiko Schocherfad63402007-07-13 09:54:17 +0200361 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000362
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100363 switch (image_get_os (hdr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000364 default: /* handled by (original) Linux case */
365 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000366#ifdef CONFIG_SILENT_CONSOLE
367 fixup_silent_linux();
368#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000369 do_bootm_linux (cmdtp, flag, argc, argv,
370 addr, len_ptr, verify);
371 break;
372 case IH_OS_NETBSD:
373 do_bootm_netbsd (cmdtp, flag, argc, argv,
374 addr, len_ptr, verify);
375 break;
wdenk8bde7f72003-06-27 21:31:46 +0000376
wdenk1f4bb372003-07-27 00:21:01 +0000377#ifdef CONFIG_LYNXKDI
378 case IH_OS_LYNXOS:
379 do_bootm_lynxkdi (cmdtp, flag, argc, argv,
380 addr, len_ptr, verify);
381 break;
382#endif
383
wdenkd791b1d2003-04-20 14:04:18 +0000384 case IH_OS_RTEMS:
385 do_bootm_rtems (cmdtp, flag, argc, argv,
386 addr, len_ptr, verify);
387 break;
wdenk8bde7f72003-06-27 21:31:46 +0000388
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500389#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000390 case IH_OS_VXWORKS:
391 do_bootm_vxworks (cmdtp, flag, argc, argv,
392 addr, len_ptr, verify);
393 break;
394 case IH_OS_QNX:
395 do_bootm_qnxelf (cmdtp, flag, argc, argv,
396 addr, len_ptr, verify);
397 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500398#endif
wdenk7f70e852003-05-20 14:25:27 +0000399#ifdef CONFIG_ARTOS
400 case IH_OS_ARTOS:
401 do_bootm_artos (cmdtp, flag, argc, argv,
402 addr, len_ptr, verify);
403 break;
404#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000405 }
406
Heiko Schocherfad63402007-07-13 09:54:17 +0200407 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000408#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000409 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000410 do_reset (cmdtp, flag, argc, argv);
411#endif
412 return 1;
413}
414
wdenk0d498392003-07-01 21:06:45 +0000415U_BOOT_CMD(
416 bootm, CFG_MAXARGS, 1, do_bootm,
wdenk8bde7f72003-06-27 21:31:46 +0000417 "bootm - boot application image from memory\n",
418 "[addr [arg ...]]\n - boot application image stored in memory\n"
wdenk9d5028c2004-11-21 00:06:33 +0000419 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
420 "\t'arg' can be the address of an initrd image\n"
Gerald Van Baren213bf8c2007-03-31 12:23:51 -0400421#if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500422 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200423 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500424 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
425 "\tuse a '-' for the second argument. If you do not pass a third\n"
426 "\ta bd_info struct will be passed instead\n"
427#endif
wdenk8bde7f72003-06-27 21:31:46 +0000428);
429
wdenkf72da342003-10-10 10:05:42 +0000430#ifdef CONFIG_SILENT_CONSOLE
431static void
432fixup_silent_linux ()
433{
wdenkf72da342003-10-10 10:05:42 +0000434 char buf[256], *start, *end;
435 char *cmdline = getenv ("bootargs");
436
437 /* Only fix cmdline when requested */
438 if (!(gd->flags & GD_FLG_SILENT))
439 return;
440
441 debug ("before silent fix-up: %s\n", cmdline);
442 if (cmdline) {
443 if ((start = strstr (cmdline, "console=")) != NULL) {
444 end = strchr (start, ' ');
445 strncpy (buf, cmdline, (start - cmdline + 8));
446 if (end)
447 strcpy (buf + (start - cmdline + 8), end);
448 else
449 buf[start - cmdline + 8] = '\0';
450 } else {
451 strcpy (buf, cmdline);
452 strcat (buf, " console=");
453 }
454 } else {
455 strcpy (buf, "console=");
456 }
457
458 setenv ("bootargs", buf);
459 debug ("after silent fix-up: %s\n", buf);
460}
461#endif /* CONFIG_SILENT_CONSOLE */
462
wdenk47d1a6e2002-11-03 00:01:44 +0000463static void
464do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
465 int argc, char *argv[],
466 ulong addr,
467 ulong *len_ptr,
468 int verify)
469{
wdenk47d1a6e2002-11-03 00:01:44 +0000470 image_header_t *hdr = &header;
471
472 void (*loader)(bd_t *, image_header_t *, char *, char *);
473 image_header_t *img_addr;
474 char *consdev;
475 char *cmdline;
476
477
478 /*
479 * Booting a (NetBSD) kernel image
480 *
481 * This process is pretty similar to a standalone application:
482 * The (first part of an multi-) image must be a stage-2 loader,
483 * which in turn is responsible for loading & invoking the actual
484 * kernel. The only differences are the parameters being passed:
485 * besides the board info strucure, the loader expects a command
486 * line, the name of the console device, and (optionally) the
487 * address of the original image header.
488 */
489
490 img_addr = 0;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100491 if ((image_check_type (hdr, IH_TYPE_MULTI)) && (len_ptr[1]))
wdenk47d1a6e2002-11-03 00:01:44 +0000492 img_addr = (image_header_t *) addr;
493
494
495 consdev = "";
496#if defined (CONFIG_8xx_CONS_SMC1)
497 consdev = "smc1";
498#elif defined (CONFIG_8xx_CONS_SMC2)
499 consdev = "smc2";
500#elif defined (CONFIG_8xx_CONS_SCC2)
501 consdev = "scc2";
502#elif defined (CONFIG_8xx_CONS_SCC3)
503 consdev = "scc3";
504#endif
505
506 if (argc > 2) {
507 ulong len;
508 int i;
509
510 for (i=2, len=0 ; i<argc ; i+=1)
511 len += strlen (argv[i]) + 1;
512 cmdline = malloc (len);
513
514 for (i=2, len=0 ; i<argc ; i+=1) {
515 if (i > 2)
516 cmdline[len++] = ' ';
517 strcpy (&cmdline[len], argv[i]);
518 len += strlen (argv[i]);
519 }
520 } else if ((cmdline = getenv("bootargs")) == NULL) {
521 cmdline = "";
522 }
523
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100524 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000525
526 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
527 (ulong)loader);
528
Heiko Schocherfad63402007-07-13 09:54:17 +0200529 show_boot_progress (15);
wdenk47d1a6e2002-11-03 00:01:44 +0000530
531 /*
532 * NetBSD Stage-2 Loader Parameters:
533 * r3: ptr to board info data
534 * r4: image address
535 * r5: console device
536 * r6: boot args string
537 */
538 (*loader) (gd->bd, img_addr, consdev, cmdline);
539}
540
wdenk7f70e852003-05-20 14:25:27 +0000541#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
542
543/* Function that returns a character from the environment */
544extern uchar (*env_get_char)(int);
545
546static void
547do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
548 int argc, char *argv[],
549 ulong addr,
550 ulong *len_ptr,
551 int verify)
552{
wdenk7f70e852003-05-20 14:25:27 +0000553 ulong top;
554 char *s, *cmdline;
555 char **fwenv, **ss;
556 int i, j, nxt, len, envno, envsz;
557 bd_t *kbd;
558 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
559 image_header_t *hdr = &header;
560
561 /*
562 * Booting an ARTOS kernel image + application
563 */
564
565 /* this used to be the top of memory, but was wrong... */
566#ifdef CONFIG_PPC
567 /* get stack pointer */
568 asm volatile ("mr %0,1" : "=r"(top) );
569#endif
570 debug ("## Current stack ends at 0x%08lX ", top);
571
572 top -= 2048; /* just to be sure */
573 if (top > CFG_BOOTMAPSZ)
574 top = CFG_BOOTMAPSZ;
575 top &= ~0xF;
576
577 debug ("=> set upper limit to 0x%08lX\n", top);
578
579 /* first check the artos specific boot args, then the linux args*/
580 if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL)
581 s = "";
582
583 /* get length of cmdline, and place it */
584 len = strlen(s);
585 top = (top - (len + 1)) & ~0xF;
586 cmdline = (char *)top;
587 debug ("## cmdline at 0x%08lX ", top);
588 strcpy(cmdline, s);
589
590 /* copy bdinfo */
591 top = (top - sizeof(bd_t)) & ~0xF;
592 debug ("## bd at 0x%08lX ", top);
593 kbd = (bd_t *)top;
594 memcpy(kbd, gd->bd, sizeof(bd_t));
595
596 /* first find number of env entries, and their size */
597 envno = 0;
598 envsz = 0;
599 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
600 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
601 ;
602 envno++;
603 envsz += (nxt - i) + 1; /* plus trailing zero */
604 }
605 envno++; /* plus the terminating zero */
606 debug ("## %u envvars total size %u ", envno, envsz);
607
608 top = (top - sizeof(char **)*envno) & ~0xF;
609 fwenv = (char **)top;
610 debug ("## fwenv at 0x%08lX ", top);
611
612 top = (top - envsz) & ~0xF;
613 s = (char *)top;
614 ss = fwenv;
615
616 /* now copy them */
617 for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) {
618 for (nxt = i; env_get_char(nxt) != '\0'; ++nxt)
619 ;
620 *ss++ = s;
621 for (j = i; j < nxt; ++j)
622 *s++ = env_get_char(j);
623 *s++ = '\0';
624 }
625 *ss++ = NULL; /* terminate */
626
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100627 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
wdenk7f70e852003-05-20 14:25:27 +0000628 (*entry)(kbd, cmdline, fwenv, top);
629}
630#endif
631
632
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500633#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000634int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
635{
636 int rcode = 0;
637#ifndef CFG_HUSH_PARSER
638 if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1;
639#else
640 if (parse_string_outer(getenv("bootcmd"),
641 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1;
642#endif
643 return rcode;
644}
wdenk8bde7f72003-06-27 21:31:46 +0000645
wdenk0d498392003-07-01 21:06:45 +0000646U_BOOT_CMD(
647 boot, 1, 1, do_bootd,
wdenk9d2b18a2003-06-28 23:11:04 +0000648 "boot - boot default, i.e., run 'bootcmd'\n",
649 NULL
650);
651
652/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000653U_BOOT_CMD(
654 bootd, 1, 1, do_bootd,
wdenk8bde7f72003-06-27 21:31:46 +0000655 "bootd - boot default, i.e., run 'bootcmd'\n",
656 NULL
657);
658
wdenk47d1a6e2002-11-03 00:01:44 +0000659#endif
660
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500661#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +0000662int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
663{
664 int arg;
665 ulong addr;
666 int rcode=0;
667
668 if (argc < 2) {
669 return image_info (load_addr);
670 }
671
672 for (arg=1; arg <argc; ++arg) {
673 addr = simple_strtoul(argv[arg], NULL, 16);
674 if (image_info (addr) != 0) rcode = 1;
675 }
676 return rcode;
677}
678
679static int image_info (ulong addr)
680{
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100681 image_header_t *hdr = (image_header_t *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000682
683 printf ("\n## Checking Image at %08lx ...\n", addr);
684
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100685 if (!image_check_magic (hdr)) {
wdenk4b9206e2004-03-23 22:14:11 +0000686 puts (" Bad Magic Number\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000687 return 1;
688 }
689
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100690 if (!image_check_hcrc (hdr)) {
wdenk4b9206e2004-03-23 22:14:11 +0000691 puts (" Bad Header Checksum\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000692 return 1;
693 }
694
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100695 print_image_hdr (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000696
wdenk4b9206e2004-03-23 22:14:11 +0000697 puts (" Verifying Checksum ... ");
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100698 if (!image_check_dcrc (hdr)) {
wdenk4b9206e2004-03-23 22:14:11 +0000699 puts (" Bad Data CRC\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000700 return 1;
701 }
wdenk4b9206e2004-03-23 22:14:11 +0000702 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000703 return 0;
704}
wdenk0d498392003-07-01 21:06:45 +0000705
706U_BOOT_CMD(
707 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000708 "iminfo - print header information for application image\n",
709 "addr [addr ...]\n"
710 " - print header information for application image starting at\n"
711 " address 'addr' in memory; this includes verification of the\n"
712 " image contents (magic number, header and payload checksums)\n"
713);
714
Jon Loeliger90253172007-07-10 11:02:44 -0500715#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000716
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500717#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000718/*-----------------------------------------------------------------------
719 * List all images found in flash.
720 */
721int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
722{
723 flash_info_t *info;
724 int i, j;
725 image_header_t *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000726
727 for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) {
728 if (info->flash_id == FLASH_UNKNOWN)
729 goto next_bank;
Marian Balakowicze6f2e902005-10-11 19:09:42 +0200730 for (j=0; j<info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000731
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100732 hdr = (image_header_t *)info->start[j];
733
734 if (!hdr || !image_check_magic (hdr))
wdenk27b207f2003-07-24 23:38:38 +0000735 goto next_sector;
736
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100737 if (!image_check_hcrc (hdr))
wdenk27b207f2003-07-24 23:38:38 +0000738 goto next_sector;
739
740 printf ("Image at %08lX:\n", (ulong)hdr);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100741 print_image_hdr (hdr);
wdenk5bb226e2003-11-17 21:14:37 +0000742
wdenk4b9206e2004-03-23 22:14:11 +0000743 puts (" Verifying Checksum ... ");
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100744 if (!image_check_dcrc (hdr)) {
745 puts ("Bad Data CRC\n");
746 } else {
747 puts ("OK\n");
wdenk5bb226e2003-11-17 21:14:37 +0000748 }
wdenkbdccc4f2003-08-05 17:43:17 +0000749next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000750 }
wdenkbdccc4f2003-08-05 17:43:17 +0000751next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000752 }
753
754 return (0);
755}
756
757U_BOOT_CMD(
758 imls, 1, 1, do_imls,
759 "imls - list all images found in flash\n",
760 "\n"
761 " - Prints information about all images found at sector\n"
762 " boundaries in flash.\n"
763);
Jon Loeliger90253172007-07-10 11:02:44 -0500764#endif
wdenk27b207f2003-07-24 23:38:38 +0000765
wdenk47d1a6e2002-11-03 00:01:44 +0000766void
767print_image_hdr (image_header_t *hdr)
768{
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500769#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100770 time_t timestamp = (time_t)image_get_time (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000771 struct rtc_time tm;
772#endif
773
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100774 printf (" Image Name: %.*s\n", IH_NMLEN, image_get_name (hdr));
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500775#if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE)
wdenk47d1a6e2002-11-03 00:01:44 +0000776 to_tm (timestamp, &tm);
777 printf (" Created: %4d-%02d-%02d %2d:%02d:%02d UTC\n",
778 tm.tm_year, tm.tm_mon, tm.tm_mday,
779 tm.tm_hour, tm.tm_min, tm.tm_sec);
Jon Loeliger90253172007-07-10 11:02:44 -0500780#endif
wdenk4b9206e2004-03-23 22:14:11 +0000781 puts (" Image Type: "); print_type(hdr);
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100782 printf ("\n Data Size: %d Bytes = ", image_get_data_size (hdr));
783 print_size (image_get_data_size (hdr), "\n");
wdenk4b9206e2004-03-23 22:14:11 +0000784 printf (" Load Address: %08x\n"
785 " Entry Point: %08x\n",
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100786 image_get_load (hdr), image_get_ep (hdr));
wdenk47d1a6e2002-11-03 00:01:44 +0000787
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100788 if (image_check_type (hdr, IH_TYPE_MULTI)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000789 int i;
790 ulong len;
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100791 ulong *len_ptr = (ulong *)((ulong)hdr + image_get_header_size ());
wdenk47d1a6e2002-11-03 00:01:44 +0000792
wdenk4b9206e2004-03-23 22:14:11 +0000793 puts (" Contents:\n");
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100794 for (i=0; (len = image_to_cpu (*len_ptr)); ++i, ++len_ptr) {
wdenk47d1a6e2002-11-03 00:01:44 +0000795 printf (" Image %d: %8ld Bytes = ", i, len);
796 print_size (len, "\n");
797 }
798 }
799}
800
801
802static void
803print_type (image_header_t *hdr)
804{
805 char *os, *arch, *type, *comp;
806
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100807 switch (image_get_os (hdr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000808 case IH_OS_INVALID: os = "Invalid OS"; break;
809 case IH_OS_NETBSD: os = "NetBSD"; break;
810 case IH_OS_LINUX: os = "Linux"; break;
811 case IH_OS_VXWORKS: os = "VxWorks"; break;
812 case IH_OS_QNX: os = "QNX"; break;
813 case IH_OS_U_BOOT: os = "U-Boot"; break;
wdenkd791b1d2003-04-20 14:04:18 +0000814 case IH_OS_RTEMS: os = "RTEMS"; break;
wdenk7f70e852003-05-20 14:25:27 +0000815#ifdef CONFIG_ARTOS
816 case IH_OS_ARTOS: os = "ARTOS"; break;
817#endif
wdenk1f4bb372003-07-27 00:21:01 +0000818#ifdef CONFIG_LYNXKDI
819 case IH_OS_LYNXOS: os = "LynxOS"; break;
820#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000821 default: os = "Unknown OS"; break;
822 }
823
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100824 switch (image_get_arch (hdr)) {
825 case IH_ARCH_INVALID: arch = "Invalid CPU"; break;
826 case IH_ARCH_ALPHA: arch = "Alpha"; break;
827 case IH_ARCH_ARM: arch = "ARM"; break;
828 case IH_ARCH_AVR32: arch = "AVR32"; break;
829 case IH_ARCH_BLACKFIN: arch = "Blackfin"; break;
830 case IH_ARCH_I386: arch = "Intel x86"; break;
831 case IH_ARCH_IA64: arch = "IA64"; break;
832 case IH_ARCH_M68K: arch = "M68K"; break;
833 case IH_ARCH_MICROBLAZE:arch = "Microblaze"; break;
834 case IH_ARCH_MIPS64: arch = "MIPS 64 Bit"; break;
835 case IH_ARCH_MIPS: arch = "MIPS"; break;
836 case IH_ARCH_NIOS2: arch = "Nios-II"; break;
837 case IH_ARCH_NIOS: arch = "Nios"; break;
838 case IH_ARCH_PPC: arch = "PowerPC"; break;
839 case IH_ARCH_S390: arch = "IBM S390"; break;
840 case IH_ARCH_SH: arch = "SuperH"; break;
841 case IH_ARCH_SPARC64: arch = "SPARC 64 Bit"; break;
842 case IH_ARCH_SPARC: arch = "SPARC"; break;
wdenk47d1a6e2002-11-03 00:01:44 +0000843 default: arch = "Unknown Architecture"; break;
844 }
845
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100846 switch (image_get_type (hdr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000847 case IH_TYPE_INVALID: type = "Invalid Image"; break;
848 case IH_TYPE_STANDALONE:type = "Standalone Program"; break;
849 case IH_TYPE_KERNEL: type = "Kernel Image"; break;
850 case IH_TYPE_RAMDISK: type = "RAMDisk Image"; break;
851 case IH_TYPE_MULTI: type = "Multi-File Image"; break;
852 case IH_TYPE_FIRMWARE: type = "Firmware"; break;
853 case IH_TYPE_SCRIPT: type = "Script"; break;
Matthew McClintock25c751e2006-08-16 10:54:09 -0500854 case IH_TYPE_FLATDT: type = "Flat Device Tree"; break;
wdenk47d1a6e2002-11-03 00:01:44 +0000855 default: type = "Unknown Image"; break;
856 }
857
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100858 switch (image_get_comp (hdr)) {
wdenk47d1a6e2002-11-03 00:01:44 +0000859 case IH_COMP_NONE: comp = "uncompressed"; break;
860 case IH_COMP_GZIP: comp = "gzip compressed"; break;
861 case IH_COMP_BZIP2: comp = "bzip2 compressed"; break;
862 default: comp = "unknown compression"; break;
863 }
864
865 printf ("%s %s %s (%s)", arch, os, type, comp);
866}
867
wdenkd791b1d2003-04-20 14:04:18 +0000868static void
869do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
870 ulong addr, ulong *len_ptr, int verify)
871{
wdenkd791b1d2003-04-20 14:04:18 +0000872 image_header_t *hdr = &header;
873 void (*entry_point)(bd_t *);
874
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100875 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
wdenkd791b1d2003-04-20 14:04:18 +0000876
877 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
878 (ulong)entry_point);
879
Heiko Schocherfad63402007-07-13 09:54:17 +0200880 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +0000881
882 /*
883 * RTEMS Parameters:
884 * r3: ptr to board info data
885 */
886
887 (*entry_point ) ( gd->bd );
888}
889
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500890#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000891static void
892do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
893 ulong addr, ulong *len_ptr, int verify)
894{
895 image_header_t *hdr = &header;
896 char str[80];
897
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100898 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +0000899 setenv("loadaddr", str);
900 do_bootvx(cmdtp, 0, 0, NULL);
901}
902
903static void
904do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
905 ulong addr, ulong *len_ptr, int verify)
906{
907 image_header_t *hdr = &header;
908 char *local_args[2];
909 char str[16];
910
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100911 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +0000912 local_args[0] = argv[0];
913 local_args[1] = str; /* and provide it via the arguments */
914 do_bootelf(cmdtp, 0, 2, local_args);
915}
Jon Loeliger90253172007-07-10 11:02:44 -0500916#endif
wdenk1f4bb372003-07-27 00:21:01 +0000917
918#ifdef CONFIG_LYNXKDI
919static void
920do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
921 int argc, char *argv[],
922 ulong addr,
923 ulong *len_ptr,
924 int verify)
925{
926 lynxkdi_boot( &header );
927}
928
929#endif /* CONFIG_LYNXKDI */