blob: da38c322a23bdc0426551d43e4e4310e6549b17e [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
wdenk47d1a6e2002-11-03 00:01:44 +000025/*
26 * Boot support
27 */
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
wdenk47d1a6e2002-11-03 00:01:44 +000031#include <image.h>
32#include <malloc.h>
33#include <zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000034#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000035#include <environment.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060036#include <lmb.h>
wdenk47d1a6e2002-11-03 00:01:44 +000037#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000038
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020039#if (CONFIG_COMMANDS & CFG_CMD_USB)
40#include <usb.h>
41#endif
42
wdenk47d1a6e2002-11-03 00:01:44 +000043#ifdef CFG_HUSH_PARSER
44#include <hush.h>
45#endif
46
Marian Balakowicz1ee11802008-01-08 18:17:10 +010047DECLARE_GLOBAL_DATA_PTR;
48
49extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
50#ifndef CFG_BOOTM_LEN
51#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000052#endif
53
Marian Balakowicz321359f2008-01-08 18:11:43 +010054#ifdef CONFIG_BZIP2
55extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000056#endif
57
Jon Loeligerbaa26db2007-07-08 17:51:39 -050058#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000059static int image_info (unsigned long addr);
60#endif
wdenk27b207f2003-07-24 23:38:38 +000061
Jon Loeligerbaa26db2007-07-08 17:51:39 -050062#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000063#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020064extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000065static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
66#endif
67
Marian Balakowicz1ee11802008-01-08 18:17:10 +010068#ifdef CONFIG_SILENT_CONSOLE
69static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000070#endif
71
Marian Balakowicz6986a382008-03-12 10:01:05 +010072static image_header_t *image_get_kernel (ulong img_addr, int verify);
73#if defined(CONFIG_FIT)
74static int fit_check_kernel (const void *fit, int os_noffset, int verify);
75#endif
76
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010077static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010078 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010079extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000080
wdenk47d1a6e2002-11-03 00:01:44 +000081/*
82 * Continue booting an OS image; caller already has:
83 * - copied image header to global variable `header'
84 * - checked header magic number, checksums (both header & image),
85 * - verified image architecture (PPC) and type (KERNEL or MULTI),
86 * - loaded (first part of) image to header load address,
87 * - disabled interrupts.
88 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +010089typedef void boot_os_fn (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010090 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010091 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +000092
Marian Balakowicz1ee11802008-01-08 18:17:10 +010093extern boot_os_fn do_bootm_linux;
94static boot_os_fn do_bootm_netbsd;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010095#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010096static boot_os_fn do_bootm_lynxkdi;
97extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +000098#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +010099static boot_os_fn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500100#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100101static boot_os_fn do_bootm_vxworks;
102static boot_os_fn do_bootm_qnxelf;
103int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
104int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500105#endif
wdenk7f70e852003-05-20 14:25:27 +0000106#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100107static boot_os_fn do_bootm_artos;
wdenk1f4bb372003-07-27 00:21:01 +0000108#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000109
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100110ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100111static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100112
Kumar Galae822d7f2008-02-27 21:51:49 -0600113void __board_lmb_reserve(struct lmb *lmb)
114{
115 /* please define platform specific board_lmb_reserve() */
116}
117void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000118
wdenk47d1a6e2002-11-03 00:01:44 +0000119
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100120/*******************************************************************/
121/* bootm - boot application image from image in memory */
122/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000123int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
124{
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100125 ulong iflag;
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100126 const char *type_name;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100127 uint unc_len = CFG_BOOTM_LEN;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100128 uint8_t comp, type, os;
wdenk47d1a6e2002-11-03 00:01:44 +0000129
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100130 void *os_hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100131 ulong os_data, os_len;
Marian Balakowicz75824382008-01-31 13:20:06 +0100132 ulong image_start, image_end;
133 ulong load_start, load_end;
Becky Bruce391fd932008-06-09 20:37:18 -0500134 ulong mem_start;
135 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000136
Kumar Gala4ed65522008-02-27 21:51:47 -0600137 struct lmb lmb;
wdenk47d1a6e2002-11-03 00:01:44 +0000138
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100139 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200140 images.verify = getenv_yesno ("verify");
141 images.autostart = getenv_yesno ("autostart");
Kumar Gala4ed65522008-02-27 21:51:47 -0600142 images.lmb = &lmb;
wdenk47d1a6e2002-11-03 00:01:44 +0000143
Kumar Gala4ed65522008-02-27 21:51:47 -0600144 lmb_init(&lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000145
Kumar Galad3f2fa02008-02-27 21:51:50 -0600146 mem_start = getenv_bootm_low();
147 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000148
Becky Bruce391fd932008-06-09 20:37:18 -0500149 lmb_add(&lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000150
Kumar Galae822d7f2008-02-27 21:51:49 -0600151 board_lmb_reserve(&lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000152
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100153 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100154 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100155 &images, &os_data, &os_len);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100156 if (os_len == 0) {
157 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000158 return 1;
159 }
wdenk47d1a6e2002-11-03 00:01:44 +0000160
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100161 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100162 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100163 case IMAGE_FORMAT_LEGACY:
164 type = image_get_type (os_hdr);
165 comp = image_get_comp (os_hdr);
166 os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200167
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100168 image_end = image_get_image_end (os_hdr);
169 load_start = image_get_load (os_hdr);
170 break;
171#if defined(CONFIG_FIT)
172 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100173 if (fit_image_get_type (images.fit_hdr_os,
174 images.fit_noffset_os, &type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100175 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100176 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000177 return 1;
178 }
wdenk47d1a6e2002-11-03 00:01:44 +0000179
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100180 if (fit_image_get_comp (images.fit_hdr_os,
181 images.fit_noffset_os, &comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100182 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100183 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100184 return 1;
185 }
wdenk47d1a6e2002-11-03 00:01:44 +0000186
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100187 if (fit_image_get_os (images.fit_hdr_os,
188 images.fit_noffset_os, &os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100189 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100190 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100191 return 1;
192 }
wdenk47d1a6e2002-11-03 00:01:44 +0000193
Marian Balakowicz6986a382008-03-12 10:01:05 +0100194 image_end = fit_get_end (images.fit_hdr_os);
195
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100196 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Marian Balakowicz6986a382008-03-12 10:01:05 +0100197 &load_start)) {
198 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100199 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100200 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000201 }
202 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100203#endif
204 default:
205 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000206 return 1;
207 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100208
209 image_start = (ulong)os_hdr;
210 load_end = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100211 type_name = genimg_get_type_name (type);
wdenk47d1a6e2002-11-03 00:01:44 +0000212
213 /*
214 * We have reached the point of no return: we are going to
215 * overwrite all exception vector code, so we cannot easily
216 * recover from any failures any more...
217 */
wdenk47d1a6e2002-11-03 00:01:44 +0000218 iflag = disable_interrupts();
219
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200220#if (CONFIG_COMMANDS & CFG_CMD_USB)
221 /*
222 * turn off USB to prevent the host controller from writing to the
223 * SDRAM while Linux is booting. This could happen (at least for OHCI
224 * controller), because the HCCA (Host Controller Communication Area)
225 * lies within the SDRAM and the host controller writes continously to
226 * this area (as busmaster!). The HccaFrameNumber is for example
227 * updated every 1 ms within the HCCA structure in SDRAM! For more
228 * details see the OpenHCI specification.
229 */
230 usb_stop();
231#endif
232
233
wdenkc7de8292002-11-19 11:04:11 +0000234#ifdef CONFIG_AMIGAONEG3SE
235 /*
wdenk8bde7f72003-06-27 21:31:46 +0000236 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000237 * bios emulation, so turn them off again
238 */
239 icache_disable();
240 invalidate_l1_instruction_cache();
241 flush_data_cache();
242 dcache_disable();
243#endif
244
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100245 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000246 case IH_COMP_NONE:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100247 if (load_start == (ulong)os_hdr) {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100248 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000249 } else {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100250 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000251
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100252 memmove_wd ((void *)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100253 (void *)os_data, os_len, CHUNKSZ);
wdenk47d1a6e2002-11-03 00:01:44 +0000254
Marian Balakowicz75824382008-01-31 13:20:06 +0100255 load_end = load_start + os_len;
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100256 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000257 }
258 break;
259 case IH_COMP_GZIP:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100260 printf (" Uncompressing %s ... ", type_name);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100261 if (gunzip ((void *)load_start, unc_len,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100262 (uchar *)os_data, &os_len) != 0) {
Marian Balakowicz2682ce82008-03-12 10:33:01 +0100263 puts ("GUNZIP: uncompress or overwrite error "
264 "- must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200265 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000266 do_reset (cmdtp, flag, argc, argv);
267 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100268
269 load_end = load_start + os_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000270 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000271#ifdef CONFIG_BZIP2
272 case IH_COMP_BZIP2:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100273 printf (" Uncompressing %s ... ", type_name);
wdenk5653fc32004-02-08 22:55:38 +0000274 /*
275 * If we've got less than 4 MB of malloc() space,
276 * use slower decompression algorithm which requires
277 * at most 2300 KB of memory.
278 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100279 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100280 &unc_len, (char *)os_data, os_len,
281 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000282 if (i != BZ_OK) {
Marian Balakowicz2682ce82008-03-12 10:33:01 +0100283 printf ("BUNZIP2: uncompress or overwrite error %d "
284 "- must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200285 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000286 do_reset (cmdtp, flag, argc, argv);
287 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100288
289 load_end = load_start + unc_len;
wdenkc29fdfc2003-08-29 20:57:53 +0000290 break;
291#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000292 default:
293 if (iflag)
294 enable_interrupts();
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100295 printf ("Unimplemented compression type %d\n", comp);
Heiko Schocherfad63402007-07-13 09:54:17 +0200296 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000297 return 1;
298 }
wdenk4b9206e2004-03-23 22:14:11 +0000299 puts ("OK\n");
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100300 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
Heiko Schocherfad63402007-07-13 09:54:17 +0200301 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000302
Marian Balakowicz75824382008-01-31 13:20:06 +0100303 if ((load_start < image_end) && (load_end > image_start)) {
304 debug ("image_start = 0x%lX, image_end = 0x%lx\n", image_start, image_end);
305 debug ("load_start = 0x%lx, load_end = 0x%lx\n", load_start, load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000306
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200307 if (images.legacy_hdr_valid) {
308 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
309 puts ("WARNING: legacy format multi component "
310 "image overwritten\n");
311 } else {
312 puts ("ERROR: new format image overwritten - "
313 "must RESET the board to recover\n");
314 show_boot_progress (-113);
315 do_reset (cmdtp, flag, argc, argv);
316 }
wdenk47d1a6e2002-11-03 00:01:44 +0000317 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100318
Heiko Schocherfad63402007-07-13 09:54:17 +0200319 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000320
Kumar Gala4ed65522008-02-27 21:51:47 -0600321 lmb_reserve(&lmb, load_start, (load_end - load_start));
322
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100323 switch (os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000324 default: /* handled by (original) Linux case */
325 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000326#ifdef CONFIG_SILENT_CONSOLE
327 fixup_silent_linux();
328#endif
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100329 do_bootm_linux (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000330 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100331
wdenk47d1a6e2002-11-03 00:01:44 +0000332 case IH_OS_NETBSD:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100333 do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000334 break;
wdenk8bde7f72003-06-27 21:31:46 +0000335
wdenk1f4bb372003-07-27 00:21:01 +0000336#ifdef CONFIG_LYNXKDI
337 case IH_OS_LYNXOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100338 do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000339 break;
340#endif
341
wdenkd791b1d2003-04-20 14:04:18 +0000342 case IH_OS_RTEMS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100343 do_bootm_rtems (cmdtp, flag, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000344 break;
wdenk8bde7f72003-06-27 21:31:46 +0000345
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500346#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000347 case IH_OS_VXWORKS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100348 do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000349 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100350
wdenk47d1a6e2002-11-03 00:01:44 +0000351 case IH_OS_QNX:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100352 do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000353 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500354#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100355
wdenk7f70e852003-05-20 14:25:27 +0000356#ifdef CONFIG_ARTOS
357 case IH_OS_ARTOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100358 do_bootm_artos (cmdtp, flag, argc, argv, &images);
wdenk7f70e852003-05-20 14:25:27 +0000359 break;
360#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000361 }
362
Heiko Schocherfad63402007-07-13 09:54:17 +0200363 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000364#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000365 puts ("\n## Control returned to monitor - resetting...\n");
Marian Balakowicza44a2692008-03-12 10:14:57 +0100366 if (images.autostart)
367 do_reset (cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000368#endif
Marian Balakowicza44a2692008-03-12 10:14:57 +0100369 if (!images.autostart && iflag)
370 enable_interrupts();
371
wdenk47d1a6e2002-11-03 00:01:44 +0000372 return 1;
373}
374
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100375/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100376 * image_get_kernel - verify legacy format kernel image
377 * @img_addr: in RAM address of the legacy format image to be verified
378 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100379 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100380 * image_get_kernel() verifies legacy image integrity and returns pointer to
381 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100382 *
383 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100384 * pointer to a legacy image header if valid image was found
385 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100386 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100387static image_header_t *image_get_kernel (ulong img_addr, int verify)
388{
389 image_header_t *hdr = (image_header_t *)img_addr;
390
391 if (!image_check_magic(hdr)) {
392 puts ("Bad Magic Number\n");
393 show_boot_progress (-1);
394 return NULL;
395 }
396 show_boot_progress (2);
397
398 if (!image_check_hcrc (hdr)) {
399 puts ("Bad Header Checksum\n");
400 show_boot_progress (-2);
401 return NULL;
402 }
403
404 show_boot_progress (3);
405 image_print_contents (hdr);
406
407 if (verify) {
408 puts (" Verifying Checksum ... ");
409 if (!image_check_dcrc (hdr)) {
410 printf ("Bad Data CRC\n");
411 show_boot_progress (-3);
412 return NULL;
413 }
414 puts ("OK\n");
415 }
416 show_boot_progress (4);
417
418 if (!image_check_target_arch (hdr)) {
419 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
420 show_boot_progress (-4);
421 return NULL;
422 }
423 return hdr;
424}
425
426/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100427 * fit_check_kernel - verify FIT format kernel subimage
428 * @fit_hdr: pointer to the FIT image header
429 * os_noffset: kernel subimage node offset within FIT image
430 * @verify: data CRC verification flag
431 *
432 * fit_check_kernel() verifies integrity of the kernel subimage and from
433 * specified FIT image.
434 *
435 * returns:
436 * 1, on success
437 * 0, on failure
438 */
439#if defined (CONFIG_FIT)
440static int fit_check_kernel (const void *fit, int os_noffset, int verify)
441{
442 fit_image_print (fit, os_noffset, " ");
443
444 if (verify) {
445 puts (" Verifying Hash Integrity ... ");
446 if (!fit_image_check_hashes (fit, os_noffset)) {
447 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100448 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100449 return 0;
450 }
451 puts ("OK\n");
452 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100453 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100454
455 if (!fit_image_check_target_arch (fit, os_noffset)) {
456 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100457 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100458 return 0;
459 }
460
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100461 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100462 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
463 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100464 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100465 return 0;
466 }
467
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100468 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100469 return 1;
470}
471#endif /* CONFIG_FIT */
472
473/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100474 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100475 * @os_data: pointer to a ulong variable, will hold os data start address
476 * @os_len: pointer to a ulong variable, will hold os data length
477 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100478 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100479 * and locates kernel data.
480 *
481 * returns:
482 * pointer to image header if valid image was found, plus kernel start
483 * address and length, otherwise NULL
484 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100485static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100486 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100487{
488 image_header_t *hdr;
489 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100490#if defined(CONFIG_FIT)
491 void *fit_hdr;
492 const char *fit_uname_config = NULL;
493 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100494 const void *data;
495 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100496 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100497 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100498#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100499
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100500 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100501 if (argc < 2) {
502 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100503 debug ("* kernel: default image load address = 0x%08lx\n",
504 load_addr);
505#if defined(CONFIG_FIT)
506 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
507 &fit_uname_config)) {
508 debug ("* kernel: config '%s' from image at 0x%08lx\n",
509 fit_uname_config, img_addr);
510 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
511 &fit_uname_kernel)) {
512 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
513 fit_uname_kernel, img_addr);
514#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100515 } else {
516 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100517 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100518 }
519
520 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100521
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100522 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100523 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100524
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100525 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100526 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100527 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100528 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100529 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
530 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100531 hdr = image_get_kernel (img_addr, images->verify);
532 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100533 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100534 show_boot_progress (5);
535
Marian Balakowicz6986a382008-03-12 10:01:05 +0100536 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100537 switch (image_get_type (hdr)) {
538 case IH_TYPE_KERNEL:
539 *os_data = image_get_data (hdr);
540 *os_len = image_get_data_size (hdr);
541 break;
542 case IH_TYPE_MULTI:
543 image_multi_getimg (hdr, 0, os_data, os_len);
544 break;
545 default:
546 printf ("Wrong Image Type for %s command\n", cmdtp->name);
547 show_boot_progress (-5);
548 return NULL;
549 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100550
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200551 /*
552 * copy image header to allow for image overwrites during kernel
553 * decompression.
554 */
555 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
556
557 /* save pointer to image header */
558 images->legacy_hdr_os = hdr;
559
560 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100561 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100562 break;
563#if defined(CONFIG_FIT)
564 case IMAGE_FORMAT_FIT:
565 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100566 printf ("## Booting kernel from FIT Image at %08lx ...\n",
567 img_addr);
568
569 if (!fit_check_format (fit_hdr)) {
570 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100571 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100572 return NULL;
573 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100574 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100575
576 if (!fit_uname_kernel) {
577 /*
578 * no kernel image node unit name, try to get config
579 * node first. If config unit node name is NULL
580 * fit_conf_get_node() will try to find default config node
581 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100582 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100583 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
584 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100585 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100586 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100587 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100588 /* save configuration uname provided in the first
589 * bootm argument
590 */
591 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
592 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
593 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100594
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100595 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100596 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
597 } else {
598 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100599 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100600 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
601 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100602 if (os_noffset < 0) {
603 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100604 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100605 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100606
607 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
608
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100609 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100610 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
611 return NULL;
612
613 /* get kernel image data address and length */
614 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
615 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100616 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100617 return NULL;
618 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100619 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100620
621 *os_len = len;
622 *os_data = (ulong)data;
623 images->fit_hdr_os = fit_hdr;
624 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100625 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100626 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100627#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100628 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100629 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100630 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100631 return NULL;
632 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100633
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200634 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100635 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100636
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100637 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100638}
639
wdenk0d498392003-07-01 21:06:45 +0000640U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100641 bootm, CFG_MAXARGS, 1, do_bootm,
642 "bootm - boot application image from memory\n",
643 "[addr [arg ...]]\n - boot application image stored in memory\n"
644 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
645 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100646#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500647 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200648 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500649 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
650 "\tuse a '-' for the second argument. If you do not pass a third\n"
651 "\ta bd_info struct will be passed instead\n"
652#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100653#if defined(CONFIG_FIT)
654 "\t\nFor the new multi component uImage format (FIT) addresses\n"
655 "\tmust be extened to include component or configuration unit name:\n"
656 "\taddr:<subimg_uname> - direct component image specification\n"
657 "\taddr#<conf_uname> - configuration specification\n"
658 "\tUse iminfo command to get the list of existing component\n"
659 "\timages and configurations.\n"
660#endif
wdenk8bde7f72003-06-27 21:31:46 +0000661);
662
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100663/*******************************************************************/
664/* bootd - boot default image */
665/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500666#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000667int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
668{
669 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100670
wdenk47d1a6e2002-11-03 00:01:44 +0000671#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100672 if (run_command (getenv ("bootcmd"), flag) < 0)
673 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000674#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100675 if (parse_string_outer (getenv ("bootcmd"),
676 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
677 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000678#endif
679 return rcode;
680}
wdenk8bde7f72003-06-27 21:31:46 +0000681
wdenk0d498392003-07-01 21:06:45 +0000682U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100683 boot, 1, 1, do_bootd,
684 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000685 NULL
686);
687
688/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000689U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100690 bootd, 1, 1, do_bootd,
691 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000692 NULL
693);
694
wdenk47d1a6e2002-11-03 00:01:44 +0000695#endif
696
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100697
698/*******************************************************************/
699/* iminfo - print header info for a requested image */
700/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500701#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100702int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000703{
704 int arg;
705 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100706 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000707
708 if (argc < 2) {
709 return image_info (load_addr);
710 }
711
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100712 for (arg = 1; arg < argc; ++arg) {
713 addr = simple_strtoul (argv[arg], NULL, 16);
714 if (image_info (addr) != 0)
715 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000716 }
717 return rcode;
718}
719
720static int image_info (ulong addr)
721{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100722 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000723
724 printf ("\n## Checking Image at %08lx ...\n", addr);
725
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100726 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100727 case IMAGE_FORMAT_LEGACY:
728 puts (" Legacy image found\n");
729 if (!image_check_magic (hdr)) {
730 puts (" Bad Magic Number\n");
731 return 1;
732 }
733
734 if (!image_check_hcrc (hdr)) {
735 puts (" Bad Header Checksum\n");
736 return 1;
737 }
738
739 image_print_contents (hdr);
740
741 puts (" Verifying Checksum ... ");
742 if (!image_check_dcrc (hdr)) {
743 puts (" Bad Data CRC\n");
744 return 1;
745 }
746 puts ("OK\n");
747 return 0;
748#if defined(CONFIG_FIT)
749 case IMAGE_FORMAT_FIT:
750 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100751
752 if (!fit_check_format (hdr)) {
753 puts ("Bad FIT image format!\n");
754 return 1;
755 }
756
757 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100758 return 0;
759#endif
760 default:
761 puts ("Unknown image format!\n");
762 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000763 }
764
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100765 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000766}
wdenk0d498392003-07-01 21:06:45 +0000767
768U_BOOT_CMD(
769 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000770 "iminfo - print header information for application image\n",
771 "addr [addr ...]\n"
772 " - print header information for application image starting at\n"
773 " address 'addr' in memory; this includes verification of the\n"
774 " image contents (magic number, header and payload checksums)\n"
775);
Jon Loeliger90253172007-07-10 11:02:44 -0500776#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000777
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100778
779/*******************************************************************/
780/* imls - list all images found in flash */
781/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500782#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000783int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
784{
785 flash_info_t *info;
786 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100787 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000788
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100789 for (i = 0, info = &flash_info[0];
790 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
791
wdenk27b207f2003-07-24 23:38:38 +0000792 if (info->flash_id == FLASH_UNKNOWN)
793 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100794 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000795
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100796 hdr = (void *)info->start[j];
797 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000798 goto next_sector;
799
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100800 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100801 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100802 if (!image_check_hcrc (hdr))
803 goto next_sector;
804
805 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
806 image_print_contents (hdr);
807
808 puts (" Verifying Checksum ... ");
809 if (!image_check_dcrc (hdr)) {
810 puts ("Bad Data CRC\n");
811 } else {
812 puts ("OK\n");
813 }
814 break;
815#if defined(CONFIG_FIT)
816 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100817 if (!fit_check_format (hdr))
818 goto next_sector;
819
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100820 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100821 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100822 break;
823#endif
824 default:
wdenk27b207f2003-07-24 23:38:38 +0000825 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000826 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100827
wdenkbdccc4f2003-08-05 17:43:17 +0000828next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000829 }
wdenkbdccc4f2003-08-05 17:43:17 +0000830next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000831 }
832
833 return (0);
834}
835
836U_BOOT_CMD(
837 imls, 1, 1, do_imls,
838 "imls - list all images found in flash\n",
839 "\n"
840 " - Prints information about all images found at sector\n"
841 " boundaries in flash.\n"
842);
Jon Loeliger90253172007-07-10 11:02:44 -0500843#endif
wdenk27b207f2003-07-24 23:38:38 +0000844
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100845/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100846/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100847/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000848#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100849static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +0000850{
851 char buf[256], *start, *end;
852 char *cmdline = getenv ("bootargs");
853
854 /* Only fix cmdline when requested */
855 if (!(gd->flags & GD_FLG_SILENT))
856 return;
857
858 debug ("before silent fix-up: %s\n", cmdline);
859 if (cmdline) {
860 if ((start = strstr (cmdline, "console=")) != NULL) {
861 end = strchr (start, ' ');
862 strncpy (buf, cmdline, (start - cmdline + 8));
863 if (end)
864 strcpy (buf + (start - cmdline + 8), end);
865 else
866 buf[start - cmdline + 8] = '\0';
867 } else {
868 strcpy (buf, cmdline);
869 strcat (buf, " console=");
870 }
871 } else {
872 strcpy (buf, "console=");
873 }
874
875 setenv ("bootargs", buf);
876 debug ("after silent fix-up: %s\n", buf);
877}
878#endif /* CONFIG_SILENT_CONSOLE */
879
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100880
881/*******************************************************************/
882/* OS booting routines */
883/*******************************************************************/
884
885static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100886 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100887 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000888{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100889 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100890 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100891 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100892 char *consdev;
893 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +0000894
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100895#if defined(CONFIG_FIT)
896 if (!images->legacy_hdr_valid) {
897 fit_unsupported_reset ("NetBSD");
898 do_reset (cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000899 }
900#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100901 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +0000902
903 /*
904 * Booting a (NetBSD) kernel image
905 *
906 * This process is pretty similar to a standalone application:
907 * The (first part of an multi-) image must be a stage-2 loader,
908 * which in turn is responsible for loading & invoking the actual
909 * kernel. The only differences are the parameters being passed:
910 * besides the board info strucure, the loader expects a command
911 * line, the name of the console device, and (optionally) the
912 * address of the original image header.
913 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100914 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200915 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100916 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
917 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100918 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100919 }
wdenk47d1a6e2002-11-03 00:01:44 +0000920
921 consdev = "";
922#if defined (CONFIG_8xx_CONS_SMC1)
923 consdev = "smc1";
924#elif defined (CONFIG_8xx_CONS_SMC2)
925 consdev = "smc2";
926#elif defined (CONFIG_8xx_CONS_SCC2)
927 consdev = "scc2";
928#elif defined (CONFIG_8xx_CONS_SCC3)
929 consdev = "scc3";
930#endif
931
932 if (argc > 2) {
933 ulong len;
934 int i;
935
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100936 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +0000937 len += strlen (argv[i]) + 1;
938 cmdline = malloc (len);
939
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100940 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +0000941 if (i > 2)
942 cmdline[len++] = ' ';
943 strcpy (&cmdline[len], argv[i]);
944 len += strlen (argv[i]);
945 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100946 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +0000947 cmdline = "";
948 }
949
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100950 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000951
952 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
953 (ulong)loader);
954
955 show_boot_progress (15);
956
957 /*
958 * NetBSD Stage-2 Loader Parameters:
959 * r3: ptr to board info data
960 * r4: image address
961 * r5: console device
962 * r6: boot args string
963 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100964 (*loader) (gd->bd, os_hdr, consdev, cmdline);
wdenk47d1a6e2002-11-03 00:01:44 +0000965}
966
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100967#ifdef CONFIG_LYNXKDI
968static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
969 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100970 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100971{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200972 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100973
974#if defined(CONFIG_FIT)
975 if (!images->legacy_hdr_valid) {
976 fit_unsupported_reset ("Lynx");
977 do_reset (cmdtp, flag, argc, argv);
978 }
979#endif
980
981 lynxkdi_boot ((image_header_t *)hdr);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100982}
983#endif /* CONFIG_LYNXKDI */
984
985static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
986 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100987 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100988{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200989 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100990 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +0000991
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100992#if defined(CONFIG_FIT)
993 if (!images->legacy_hdr_valid) {
994 fit_unsupported_reset ("RTEMS");
995 do_reset (cmdtp, flag, argc, argv);
996 }
997#endif
998
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100999 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
wdenkd791b1d2003-04-20 14:04:18 +00001000
1001 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1002 (ulong)entry_point);
1003
Heiko Schocherfad63402007-07-13 09:54:17 +02001004 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001005
1006 /*
1007 * RTEMS Parameters:
1008 * r3: ptr to board info data
1009 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001010 (*entry_point)(gd->bd);
wdenkd791b1d2003-04-20 14:04:18 +00001011}
1012
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001013#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001014static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
1015 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001016 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001017{
wdenk47d1a6e2002-11-03 00:01:44 +00001018 char str[80];
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001019 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001020
1021#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001022 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001023 fit_unsupported_reset ("VxWorks");
1024 do_reset (cmdtp, flag, argc, argv);
1025 }
1026#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001027
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001028 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001029 setenv("loadaddr", str);
1030 do_bootvx(cmdtp, 0, 0, NULL);
1031}
1032
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001033static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
1034 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001035 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001036{
wdenk47d1a6e2002-11-03 00:01:44 +00001037 char *local_args[2];
1038 char str[16];
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001039 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001040
1041#if defined(CONFIG_FIT)
1042 if (!images->legacy_hdr_valid) {
1043 fit_unsupported_reset ("QNX");
1044 do_reset (cmdtp, flag, argc, argv);
1045 }
1046#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001047
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001048 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001049 local_args[0] = argv[0];
1050 local_args[1] = str; /* and provide it via the arguments */
1051 do_bootelf(cmdtp, 0, 2, local_args);
1052}
Jon Loeliger90253172007-07-10 11:02:44 -05001053#endif
wdenk1f4bb372003-07-27 00:21:01 +00001054
wdenk47d1a6e2002-11-03 00:01:44 +00001055#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001056static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1057 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001058 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001059{
1060 ulong top;
1061 char *s, *cmdline;
1062 char **fwenv, **ss;
1063 int i, j, nxt, len, envno, envsz;
1064 bd_t *kbd;
1065 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001066 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001067
1068#if defined(CONFIG_FIT)
1069 if (!images->legacy_hdr_valid) {
1070 fit_unsupported_reset ("ARTOS");
1071 do_reset (cmdtp, flag, argc, argv);
1072 }
1073#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001074
1075 /*
1076 * Booting an ARTOS kernel image + application
1077 */
1078
1079 /* this used to be the top of memory, but was wrong... */
1080#ifdef CONFIG_PPC
1081 /* get stack pointer */
1082 asm volatile ("mr %0,1" : "=r"(top) );
1083#endif
1084 debug ("## Current stack ends at 0x%08lX ", top);
1085
1086 top -= 2048; /* just to be sure */
1087 if (top > CFG_BOOTMAPSZ)
1088 top = CFG_BOOTMAPSZ;
1089 top &= ~0xF;
1090
1091 debug ("=> set upper limit to 0x%08lX\n", top);
1092
1093 /* first check the artos specific boot args, then the linux args*/
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001094 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
wdenk47d1a6e2002-11-03 00:01:44 +00001095 s = "";
1096
1097 /* get length of cmdline, and place it */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001098 len = strlen (s);
wdenk47d1a6e2002-11-03 00:01:44 +00001099 top = (top - (len + 1)) & ~0xF;
1100 cmdline = (char *)top;
1101 debug ("## cmdline at 0x%08lX ", top);
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001102 strcpy (cmdline, s);
wdenk47d1a6e2002-11-03 00:01:44 +00001103
1104 /* copy bdinfo */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001105 top = (top - sizeof (bd_t)) & ~0xF;
wdenk47d1a6e2002-11-03 00:01:44 +00001106 debug ("## bd at 0x%08lX ", top);
1107 kbd = (bd_t *)top;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001108 memcpy (kbd, gd->bd, sizeof (bd_t));
wdenk47d1a6e2002-11-03 00:01:44 +00001109
1110 /* first find number of env entries, and their size */
1111 envno = 0;
1112 envsz = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001113 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1114 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
wdenk47d1a6e2002-11-03 00:01:44 +00001115 ;
1116 envno++;
1117 envsz += (nxt - i) + 1; /* plus trailing zero */
1118 }
1119 envno++; /* plus the terminating zero */
1120 debug ("## %u envvars total size %u ", envno, envsz);
1121
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001122 top = (top - sizeof (char **) * envno) & ~0xF;
wdenk47d1a6e2002-11-03 00:01:44 +00001123 fwenv = (char **)top;
1124 debug ("## fwenv at 0x%08lX ", top);
1125
1126 top = (top - envsz) & ~0xF;
1127 s = (char *)top;
1128 ss = fwenv;
1129
1130 /* now copy them */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001131 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1132 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
wdenk47d1a6e2002-11-03 00:01:44 +00001133 ;
1134 *ss++ = s;
1135 for (j = i; j < nxt; ++j)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001136 *s++ = env_get_char (j);
wdenk47d1a6e2002-11-03 00:01:44 +00001137 *s++ = '\0';
1138 }
1139 *ss++ = NULL; /* terminate */
1140
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001141 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
1142 (*entry) (kbd, cmdline, fwenv, top);
wdenk47d1a6e2002-11-03 00:01:44 +00001143}
1144#endif