blob: 9c63e04f279b04efdbc575562e5c876cfbac02f4 [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
Stefan Roeseebb86c42008-07-30 09:59:51 +020039#if defined(CONFIG_CMD_USB)
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020040#include <usb.h>
41#endif
42
wdenk47d1a6e2002-11-03 00:01:44 +000043#ifdef CFG_HUSH_PARSER
44#include <hush.h>
45#endif
46
Kumar Gala54f9c862008-08-15 08:24:39 -050047#if defined(CONFIG_OF_LIBFDT)
48#include <fdt.h>
49#include <libfdt.h>
50#include <fdt_support.h>
51#endif
52
Marian Balakowicz1ee11802008-01-08 18:17:10 +010053DECLARE_GLOBAL_DATA_PTR;
54
55extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
56#ifndef CFG_BOOTM_LEN
57#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000058#endif
59
Marian Balakowicz321359f2008-01-08 18:11:43 +010060#ifdef CONFIG_BZIP2
61extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000062#endif
63
Jon Loeligerbaa26db2007-07-08 17:51:39 -050064#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000065static int image_info (unsigned long addr);
66#endif
wdenk27b207f2003-07-24 23:38:38 +000067
Jon Loeligerbaa26db2007-07-08 17:51:39 -050068#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000069#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020070extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000071static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
72#endif
73
Marian Balakowicz1ee11802008-01-08 18:17:10 +010074#ifdef CONFIG_SILENT_CONSOLE
75static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000076#endif
77
Marian Balakowicz6986a382008-03-12 10:01:05 +010078static image_header_t *image_get_kernel (ulong img_addr, int verify);
79#if defined(CONFIG_FIT)
80static int fit_check_kernel (const void *fit, int os_noffset, int verify);
81#endif
82
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010083static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010084 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010085extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000086
wdenk47d1a6e2002-11-03 00:01:44 +000087/*
88 * Continue booting an OS image; caller already has:
89 * - copied image header to global variable `header'
90 * - checked header magic number, checksums (both header & image),
91 * - verified image architecture (PPC) and type (KERNEL or MULTI),
92 * - loaded (first part of) image to header load address,
93 * - disabled interrupts.
94 */
Kumar Gala40d7e992008-08-15 08:24:45 -050095typedef int boot_os_fn (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010096 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +000097
Marian Balakowicz1ee11802008-01-08 18:17:10 +010098extern boot_os_fn do_bootm_linux;
99static boot_os_fn do_bootm_netbsd;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100100#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100101static boot_os_fn do_bootm_lynxkdi;
102extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000103#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100104static boot_os_fn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500105#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100106static boot_os_fn do_bootm_vxworks;
107static boot_os_fn do_bootm_qnxelf;
108int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
109int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500110#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500111#if defined(CONFIG_INTEGRITY)
112static boot_os_fn do_bootm_integrity;
113#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000114
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100115ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100116static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100117
Kumar Galae822d7f2008-02-27 21:51:49 -0600118void __board_lmb_reserve(struct lmb *lmb)
119{
120 /* please define platform specific board_lmb_reserve() */
121}
122void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000123
Kumar Galac4f94192008-08-15 08:24:37 -0500124#if defined(__ARM__)
125 #define IH_INITRD_ARCH IH_ARCH_ARM
126#elif defined(__avr32__)
127 #define IH_INITRD_ARCH IH_ARCH_AVR32
128#elif defined(__bfin__)
129 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
130#elif defined(__I386__)
131 #define IH_INITRD_ARCH IH_ARCH_I386
132#elif defined(__M68K__)
133 #define IH_INITRD_ARCH IH_ARCH_M68K
134#elif defined(__microblaze__)
135 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
136#elif defined(__mips__)
137 #define IH_INITRD_ARCH IH_ARCH_MIPS
138#elif defined(__nios__)
139 #define IH_INITRD_ARCH IH_ARCH_NIOS
140#elif defined(__nios2__)
141 #define IH_INITRD_ARCH IH_ARCH_NIOS2
142#elif defined(__PPC__)
143 #define IH_INITRD_ARCH IH_ARCH_PPC
144#elif defined(__sh__)
145 #define IH_INITRD_ARCH IH_ARCH_SH
146#elif defined(__sparc__)
147 #define IH_INITRD_ARCH IH_ARCH_SPARC
148#else
149# error Unknown CPU type
150#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000151
Kumar Gala396f6352008-08-15 08:24:41 -0500152static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000153{
Becky Bruce391fd932008-06-09 20:37:18 -0500154 ulong mem_start;
155 phys_size_t mem_size;
Kumar Gala396f6352008-08-15 08:24:41 -0500156 void *os_hdr;
Kumar Galac4f94192008-08-15 08:24:37 -0500157 int ret;
wdenk47d1a6e2002-11-03 00:01:44 +0000158
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100159 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200160 images.verify = getenv_yesno ("verify");
wdenk47d1a6e2002-11-03 00:01:44 +0000161
Kumar Galae906cfa2008-08-15 08:24:40 -0500162 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000163
Kumar Galad3f2fa02008-02-27 21:51:50 -0600164 mem_start = getenv_bootm_low();
165 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000166
Kumar Galae906cfa2008-08-15 08:24:40 -0500167 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000168
Kumar Galae906cfa2008-08-15 08:24:40 -0500169 board_lmb_reserve(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000170
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100171 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100172 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500173 &images, &images.os.image_start, &images.os.image_len);
174 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100175 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000176 return 1;
177 }
wdenk47d1a6e2002-11-03 00:01:44 +0000178
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100179 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100180 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100181 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500182 images.os.type = image_get_type (os_hdr);
183 images.os.comp = image_get_comp (os_hdr);
184 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200185
Kumar Gala396f6352008-08-15 08:24:41 -0500186 images.os.end = image_get_image_end (os_hdr);
187 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100188 break;
189#if defined(CONFIG_FIT)
190 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100191 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500192 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100193 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100194 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000195 return 1;
196 }
wdenk47d1a6e2002-11-03 00:01:44 +0000197
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100198 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500199 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100200 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100201 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100202 return 1;
203 }
wdenk47d1a6e2002-11-03 00:01:44 +0000204
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100205 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500206 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100207 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100208 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100209 return 1;
210 }
wdenk47d1a6e2002-11-03 00:01:44 +0000211
Kumar Gala396f6352008-08-15 08:24:41 -0500212 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100213
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100214 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500215 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100216 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100217 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100218 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000219 }
220 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100221#endif
222 default:
223 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000224 return 1;
225 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100226
Kumar Galac160a952008-08-15 08:24:36 -0500227 /* find kernel entry point */
228 if (images.legacy_hdr_valid) {
229 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
230#if defined(CONFIG_FIT)
231 } else if (images.fit_uname_os) {
232 ret = fit_image_get_entry (images.fit_hdr_os,
233 images.fit_noffset_os, &images.ep);
234 if (ret) {
235 puts ("Can't get entry point property!\n");
236 return 1;
237 }
238#endif
239 } else {
240 puts ("Could not find kernel entry point!\n");
241 return 1;
242 }
243
Kumar Gala396f6352008-08-15 08:24:41 -0500244 if (images.os.os == IH_OS_LINUX) {
Kumar Galac4f94192008-08-15 08:24:37 -0500245 /* find ramdisk */
246 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
247 &images.rd_start, &images.rd_end);
248 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500249 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500250 return 1;
251 }
Kumar Gala06a09912008-08-15 08:24:38 -0500252
253#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200254#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500255 /* find flattened device tree */
256 ret = boot_get_fdt (flag, argc, argv, &images,
257 &images.ft_addr, &images.ft_len);
258 if (ret) {
259 puts ("Could not find a valid device tree\n");
260 return 1;
261 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500262
263 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500264#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200265#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500266 }
267
Kumar Gala396f6352008-08-15 08:24:41 -0500268 images.os.start = (ulong)os_hdr;
269 images.valid = 1;
270
271 return 0;
272}
273
274#define BOOTM_ERR_RESET -1
275#define BOOTM_ERR_OVERLAP -2
276#define BOOTM_ERR_UNIMPLEMENTED -3
277static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
278{
279 uint8_t comp = os.comp;
280 ulong load = os.load;
281 ulong blob_start = os.start;
282 ulong blob_end = os.end;
283 ulong image_start = os.image_start;
284 ulong image_len = os.image_len;
285 uint unc_len = CFG_BOOTM_LEN;
286
287 const char *type_name = genimg_get_type_name (os.type);
288
289 switch (comp) {
290 case IH_COMP_NONE:
291 if (load == blob_start) {
292 printf (" XIP %s ... ", type_name);
293 } else {
294 printf (" Loading %s ... ", type_name);
295
296 memmove_wd ((void *)load,
297 (void *)image_start, image_len, CHUNKSZ);
298 }
299 *load_end = load + image_len;
300 puts("OK\n");
301 break;
302 case IH_COMP_GZIP:
303 printf (" Uncompressing %s ... ", type_name);
304 if (gunzip ((void *)load, unc_len,
305 (uchar *)image_start, &image_len) != 0) {
306 puts ("GUNZIP: uncompress or overwrite error "
307 "- must RESET board to recover\n");
308 if (boot_progress)
309 show_boot_progress (-6);
310 return BOOTM_ERR_RESET;
311 }
312
313 *load_end = load + image_len;
314 break;
315#ifdef CONFIG_BZIP2
316 case IH_COMP_BZIP2:
317 printf (" Uncompressing %s ... ", type_name);
318 /*
319 * If we've got less than 4 MB of malloc() space,
320 * use slower decompression algorithm which requires
321 * at most 2300 KB of memory.
322 */
323 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
324 &unc_len, (char *)image_start, image_len,
325 CFG_MALLOC_LEN < (4096 * 1024), 0);
326 if (i != BZ_OK) {
327 printf ("BUNZIP2: uncompress or overwrite error %d "
328 "- must RESET board to recover\n", i);
329 if (boot_progress)
330 show_boot_progress (-6);
331 return BOOTM_ERR_RESET;
332 }
333
334 *load_end = load + unc_len;
335 break;
336#endif /* CONFIG_BZIP2 */
337 default:
338 printf ("Unimplemented compression type %d\n", comp);
339 return BOOTM_ERR_UNIMPLEMENTED;
340 }
341 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200342 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500343 if (boot_progress)
344 show_boot_progress (7);
345
346 if ((load < blob_end) && (*load_end > blob_start)) {
347 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200348 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500349
350 return BOOTM_ERR_OVERLAP;
351 }
352
353 return 0;
354}
355
356/*******************************************************************/
357/* bootm - boot application image from image in memory */
358/*******************************************************************/
359int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
360{
361
362 ulong iflag;
363 ulong load_end = 0;
364 int ret;
365
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200366 if (bootm_start(cmdtp, flag, argc, argv))
367 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000368
369 /*
370 * We have reached the point of no return: we are going to
371 * overwrite all exception vector code, so we cannot easily
372 * recover from any failures any more...
373 */
wdenk47d1a6e2002-11-03 00:01:44 +0000374 iflag = disable_interrupts();
375
Stefan Roeseebb86c42008-07-30 09:59:51 +0200376#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200377 /*
378 * turn off USB to prevent the host controller from writing to the
379 * SDRAM while Linux is booting. This could happen (at least for OHCI
380 * controller), because the HCCA (Host Controller Communication Area)
381 * lies within the SDRAM and the host controller writes continously to
382 * this area (as busmaster!). The HccaFrameNumber is for example
383 * updated every 1 ms within the HCCA structure in SDRAM! For more
384 * details see the OpenHCI specification.
385 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200386 usb_stop();
387#endif
388
wdenkc7de8292002-11-19 11:04:11 +0000389#ifdef CONFIG_AMIGAONEG3SE
390 /*
wdenk8bde7f72003-06-27 21:31:46 +0000391 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000392 * bios emulation, so turn them off again
393 */
394 icache_disable();
wdenkc7de8292002-11-19 11:04:11 +0000395 dcache_disable();
396#endif
397
Kumar Gala396f6352008-08-15 08:24:41 -0500398 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000399
Kumar Gala396f6352008-08-15 08:24:41 -0500400 if (ret < 0) {
401 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000402 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500403 if (ret == BOOTM_ERR_OVERLAP) {
404 if (images.legacy_hdr_valid) {
405 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
406 puts ("WARNING: legacy format multi component "
407 "image overwritten\n");
408 } else {
409 puts ("ERROR: new format image overwritten - "
410 "must RESET the board to recover\n");
411 show_boot_progress (-113);
412 do_reset (cmdtp, flag, argc, argv);
413 }
wdenk47d1a6e2002-11-03 00:01:44 +0000414 }
Kumar Gala396f6352008-08-15 08:24:41 -0500415 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
416 if (iflag)
417 enable_interrupts();
418 show_boot_progress (-7);
419 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200420 }
wdenk47d1a6e2002-11-03 00:01:44 +0000421 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100422
Kumar Gala396f6352008-08-15 08:24:41 -0500423 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
424
Heiko Schocherfad63402007-07-13 09:54:17 +0200425 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000426
Kumar Gala396f6352008-08-15 08:24:41 -0500427 switch (images.os.os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000428 default: /* handled by (original) Linux case */
429 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000430#ifdef CONFIG_SILENT_CONSOLE
431 fixup_silent_linux();
432#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500433 do_bootm_linux (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000434 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100435
wdenk47d1a6e2002-11-03 00:01:44 +0000436 case IH_OS_NETBSD:
Kumar Gala40d7e992008-08-15 08:24:45 -0500437 do_bootm_netbsd (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000438 break;
wdenk8bde7f72003-06-27 21:31:46 +0000439
wdenk1f4bb372003-07-27 00:21:01 +0000440#ifdef CONFIG_LYNXKDI
441 case IH_OS_LYNXOS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500442 do_bootm_lynxkdi (0, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000443 break;
444#endif
445
wdenkd791b1d2003-04-20 14:04:18 +0000446 case IH_OS_RTEMS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500447 do_bootm_rtems (0, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000448 break;
wdenk8bde7f72003-06-27 21:31:46 +0000449
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500450#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000451 case IH_OS_VXWORKS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500452 do_bootm_vxworks (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000453 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100454
wdenk47d1a6e2002-11-03 00:01:44 +0000455 case IH_OS_QNX:
Kumar Gala40d7e992008-08-15 08:24:45 -0500456 do_bootm_qnxelf (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000457 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500458#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100459
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500460#ifdef CONFIG_INTEGRITY
461 case IH_OS_INTEGRITY:
462 do_bootm_integrity (0, argc, argv, &images);
463 break;
464#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000465 }
466
Heiko Schocherfad63402007-07-13 09:54:17 +0200467 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000468#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000469 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000470#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500471 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100472
wdenk47d1a6e2002-11-03 00:01:44 +0000473 return 1;
474}
475
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100476/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100477 * image_get_kernel - verify legacy format kernel image
478 * @img_addr: in RAM address of the legacy format image to be verified
479 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100480 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100481 * image_get_kernel() verifies legacy image integrity and returns pointer to
482 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100483 *
484 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100485 * pointer to a legacy image header if valid image was found
486 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100487 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100488static image_header_t *image_get_kernel (ulong img_addr, int verify)
489{
490 image_header_t *hdr = (image_header_t *)img_addr;
491
492 if (!image_check_magic(hdr)) {
493 puts ("Bad Magic Number\n");
494 show_boot_progress (-1);
495 return NULL;
496 }
497 show_boot_progress (2);
498
499 if (!image_check_hcrc (hdr)) {
500 puts ("Bad Header Checksum\n");
501 show_boot_progress (-2);
502 return NULL;
503 }
504
505 show_boot_progress (3);
506 image_print_contents (hdr);
507
508 if (verify) {
509 puts (" Verifying Checksum ... ");
510 if (!image_check_dcrc (hdr)) {
511 printf ("Bad Data CRC\n");
512 show_boot_progress (-3);
513 return NULL;
514 }
515 puts ("OK\n");
516 }
517 show_boot_progress (4);
518
519 if (!image_check_target_arch (hdr)) {
520 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
521 show_boot_progress (-4);
522 return NULL;
523 }
524 return hdr;
525}
526
527/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100528 * fit_check_kernel - verify FIT format kernel subimage
529 * @fit_hdr: pointer to the FIT image header
530 * os_noffset: kernel subimage node offset within FIT image
531 * @verify: data CRC verification flag
532 *
533 * fit_check_kernel() verifies integrity of the kernel subimage and from
534 * specified FIT image.
535 *
536 * returns:
537 * 1, on success
538 * 0, on failure
539 */
540#if defined (CONFIG_FIT)
541static int fit_check_kernel (const void *fit, int os_noffset, int verify)
542{
543 fit_image_print (fit, os_noffset, " ");
544
545 if (verify) {
546 puts (" Verifying Hash Integrity ... ");
547 if (!fit_image_check_hashes (fit, os_noffset)) {
548 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100549 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100550 return 0;
551 }
552 puts ("OK\n");
553 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100554 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100555
556 if (!fit_image_check_target_arch (fit, os_noffset)) {
557 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100558 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100559 return 0;
560 }
561
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100562 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100563 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
564 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100565 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100566 return 0;
567 }
568
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100569 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100570 return 1;
571}
572#endif /* CONFIG_FIT */
573
574/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100575 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100576 * @os_data: pointer to a ulong variable, will hold os data start address
577 * @os_len: pointer to a ulong variable, will hold os data length
578 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100579 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100580 * and locates kernel data.
581 *
582 * returns:
583 * pointer to image header if valid image was found, plus kernel start
584 * address and length, otherwise NULL
585 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100586static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100587 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100588{
589 image_header_t *hdr;
590 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100591#if defined(CONFIG_FIT)
592 void *fit_hdr;
593 const char *fit_uname_config = NULL;
594 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100595 const void *data;
596 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100597 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100598 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100599#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100600
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100601 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100602 if (argc < 2) {
603 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100604 debug ("* kernel: default image load address = 0x%08lx\n",
605 load_addr);
606#if defined(CONFIG_FIT)
607 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
608 &fit_uname_config)) {
609 debug ("* kernel: config '%s' from image at 0x%08lx\n",
610 fit_uname_config, img_addr);
611 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
612 &fit_uname_kernel)) {
613 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
614 fit_uname_kernel, img_addr);
615#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100616 } else {
617 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100618 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100619 }
620
621 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100622
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100623 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100624 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100625
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100626 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100627 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100628 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100629 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100630 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
631 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100632 hdr = image_get_kernel (img_addr, images->verify);
633 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100634 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100635 show_boot_progress (5);
636
Marian Balakowicz6986a382008-03-12 10:01:05 +0100637 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100638 switch (image_get_type (hdr)) {
639 case IH_TYPE_KERNEL:
640 *os_data = image_get_data (hdr);
641 *os_len = image_get_data_size (hdr);
642 break;
643 case IH_TYPE_MULTI:
644 image_multi_getimg (hdr, 0, os_data, os_len);
645 break;
646 default:
647 printf ("Wrong Image Type for %s command\n", cmdtp->name);
648 show_boot_progress (-5);
649 return NULL;
650 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100651
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200652 /*
653 * copy image header to allow for image overwrites during kernel
654 * decompression.
655 */
656 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
657
658 /* save pointer to image header */
659 images->legacy_hdr_os = hdr;
660
661 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100662 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100663 break;
664#if defined(CONFIG_FIT)
665 case IMAGE_FORMAT_FIT:
666 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100667 printf ("## Booting kernel from FIT Image at %08lx ...\n",
668 img_addr);
669
670 if (!fit_check_format (fit_hdr)) {
671 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100672 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100673 return NULL;
674 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100675 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100676
677 if (!fit_uname_kernel) {
678 /*
679 * no kernel image node unit name, try to get config
680 * node first. If config unit node name is NULL
681 * fit_conf_get_node() will try to find default config node
682 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100683 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100684 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
685 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100686 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100687 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100688 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100689 /* save configuration uname provided in the first
690 * bootm argument
691 */
692 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
693 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
694 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100695
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100696 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100697 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
698 } else {
699 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100700 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100701 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
702 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100703 if (os_noffset < 0) {
704 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100705 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100706 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100707
708 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
709
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100710 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100711 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
712 return NULL;
713
714 /* get kernel image data address and length */
715 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
716 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100717 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100718 return NULL;
719 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100720 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100721
722 *os_len = len;
723 *os_data = (ulong)data;
724 images->fit_hdr_os = fit_hdr;
725 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100726 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100727 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100728#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100729 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100730 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100731 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100732 return NULL;
733 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100734
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200735 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100736 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100737
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100738 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100739}
740
wdenk0d498392003-07-01 21:06:45 +0000741U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100742 bootm, CFG_MAXARGS, 1, do_bootm,
743 "bootm - boot application image from memory\n",
744 "[addr [arg ...]]\n - boot application image stored in memory\n"
745 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
746 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100747#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500748 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200749 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500750 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
751 "\tuse a '-' for the second argument. If you do not pass a third\n"
752 "\ta bd_info struct will be passed instead\n"
753#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100754#if defined(CONFIG_FIT)
755 "\t\nFor the new multi component uImage format (FIT) addresses\n"
756 "\tmust be extened to include component or configuration unit name:\n"
757 "\taddr:<subimg_uname> - direct component image specification\n"
758 "\taddr#<conf_uname> - configuration specification\n"
759 "\tUse iminfo command to get the list of existing component\n"
760 "\timages and configurations.\n"
761#endif
wdenk8bde7f72003-06-27 21:31:46 +0000762);
763
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100764/*******************************************************************/
765/* bootd - boot default image */
766/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500767#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000768int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
769{
770 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100771
wdenk47d1a6e2002-11-03 00:01:44 +0000772#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100773 if (run_command (getenv ("bootcmd"), flag) < 0)
774 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000775#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100776 if (parse_string_outer (getenv ("bootcmd"),
777 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
778 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000779#endif
780 return rcode;
781}
wdenk8bde7f72003-06-27 21:31:46 +0000782
wdenk0d498392003-07-01 21:06:45 +0000783U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100784 boot, 1, 1, do_bootd,
785 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000786 NULL
787);
788
789/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000790U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100791 bootd, 1, 1, do_bootd,
792 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000793 NULL
794);
795
wdenk47d1a6e2002-11-03 00:01:44 +0000796#endif
797
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100798
799/*******************************************************************/
800/* iminfo - print header info for a requested image */
801/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500802#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100803int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000804{
805 int arg;
806 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100807 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000808
809 if (argc < 2) {
810 return image_info (load_addr);
811 }
812
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100813 for (arg = 1; arg < argc; ++arg) {
814 addr = simple_strtoul (argv[arg], NULL, 16);
815 if (image_info (addr) != 0)
816 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000817 }
818 return rcode;
819}
820
821static int image_info (ulong addr)
822{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100823 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000824
825 printf ("\n## Checking Image at %08lx ...\n", addr);
826
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100827 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100828 case IMAGE_FORMAT_LEGACY:
829 puts (" Legacy image found\n");
830 if (!image_check_magic (hdr)) {
831 puts (" Bad Magic Number\n");
832 return 1;
833 }
834
835 if (!image_check_hcrc (hdr)) {
836 puts (" Bad Header Checksum\n");
837 return 1;
838 }
839
840 image_print_contents (hdr);
841
842 puts (" Verifying Checksum ... ");
843 if (!image_check_dcrc (hdr)) {
844 puts (" Bad Data CRC\n");
845 return 1;
846 }
847 puts ("OK\n");
848 return 0;
849#if defined(CONFIG_FIT)
850 case IMAGE_FORMAT_FIT:
851 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100852
853 if (!fit_check_format (hdr)) {
854 puts ("Bad FIT image format!\n");
855 return 1;
856 }
857
858 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +0200859
860 if (!fit_all_image_check_hashes (hdr)) {
861 puts ("Bad hash in FIT image!\n");
862 return 1;
863 }
864
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100865 return 0;
866#endif
867 default:
868 puts ("Unknown image format!\n");
869 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000870 }
871
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100872 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000873}
wdenk0d498392003-07-01 21:06:45 +0000874
875U_BOOT_CMD(
876 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000877 "iminfo - print header information for application image\n",
878 "addr [addr ...]\n"
879 " - print header information for application image starting at\n"
880 " address 'addr' in memory; this includes verification of the\n"
881 " image contents (magic number, header and payload checksums)\n"
882);
Jon Loeliger90253172007-07-10 11:02:44 -0500883#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000884
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100885
886/*******************************************************************/
887/* imls - list all images found in flash */
888/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500889#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000890int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
891{
892 flash_info_t *info;
893 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100894 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000895
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100896 for (i = 0, info = &flash_info[0];
897 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
898
wdenk27b207f2003-07-24 23:38:38 +0000899 if (info->flash_id == FLASH_UNKNOWN)
900 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100901 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000902
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100903 hdr = (void *)info->start[j];
904 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000905 goto next_sector;
906
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100907 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100908 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100909 if (!image_check_hcrc (hdr))
910 goto next_sector;
911
912 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
913 image_print_contents (hdr);
914
915 puts (" Verifying Checksum ... ");
916 if (!image_check_dcrc (hdr)) {
917 puts ("Bad Data CRC\n");
918 } else {
919 puts ("OK\n");
920 }
921 break;
922#if defined(CONFIG_FIT)
923 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100924 if (!fit_check_format (hdr))
925 goto next_sector;
926
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100927 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100928 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100929 break;
930#endif
931 default:
wdenk27b207f2003-07-24 23:38:38 +0000932 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000933 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100934
wdenkbdccc4f2003-08-05 17:43:17 +0000935next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000936 }
wdenkbdccc4f2003-08-05 17:43:17 +0000937next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000938 }
939
940 return (0);
941}
942
943U_BOOT_CMD(
944 imls, 1, 1, do_imls,
945 "imls - list all images found in flash\n",
946 "\n"
947 " - Prints information about all images found at sector\n"
948 " boundaries in flash.\n"
949);
Jon Loeliger90253172007-07-10 11:02:44 -0500950#endif
wdenk27b207f2003-07-24 23:38:38 +0000951
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100952/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100953/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100954/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000955#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100956static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +0000957{
958 char buf[256], *start, *end;
959 char *cmdline = getenv ("bootargs");
960
961 /* Only fix cmdline when requested */
962 if (!(gd->flags & GD_FLG_SILENT))
963 return;
964
965 debug ("before silent fix-up: %s\n", cmdline);
966 if (cmdline) {
967 if ((start = strstr (cmdline, "console=")) != NULL) {
968 end = strchr (start, ' ');
969 strncpy (buf, cmdline, (start - cmdline + 8));
970 if (end)
971 strcpy (buf + (start - cmdline + 8), end);
972 else
973 buf[start - cmdline + 8] = '\0';
974 } else {
975 strcpy (buf, cmdline);
976 strcat (buf, " console=");
977 }
978 } else {
979 strcpy (buf, "console=");
980 }
981
982 setenv ("bootargs", buf);
983 debug ("after silent fix-up: %s\n", buf);
984}
985#endif /* CONFIG_SILENT_CONSOLE */
986
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100987
988/*******************************************************************/
989/* OS booting routines */
990/*******************************************************************/
991
Kumar Gala40d7e992008-08-15 08:24:45 -0500992static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100993 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000994{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100995 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100996 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100997 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100998 char *consdev;
999 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001000
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001001#if defined(CONFIG_FIT)
1002 if (!images->legacy_hdr_valid) {
1003 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001004 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001005 }
1006#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001007 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001008
1009 /*
1010 * Booting a (NetBSD) kernel image
1011 *
1012 * This process is pretty similar to a standalone application:
1013 * The (first part of an multi-) image must be a stage-2 loader,
1014 * which in turn is responsible for loading & invoking the actual
1015 * kernel. The only differences are the parameters being passed:
1016 * besides the board info strucure, the loader expects a command
1017 * line, the name of the console device, and (optionally) the
1018 * address of the original image header.
1019 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001020 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001021 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001022 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1023 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001024 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001025 }
wdenk47d1a6e2002-11-03 00:01:44 +00001026
1027 consdev = "";
1028#if defined (CONFIG_8xx_CONS_SMC1)
1029 consdev = "smc1";
1030#elif defined (CONFIG_8xx_CONS_SMC2)
1031 consdev = "smc2";
1032#elif defined (CONFIG_8xx_CONS_SCC2)
1033 consdev = "scc2";
1034#elif defined (CONFIG_8xx_CONS_SCC3)
1035 consdev = "scc3";
1036#endif
1037
1038 if (argc > 2) {
1039 ulong len;
1040 int i;
1041
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001042 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001043 len += strlen (argv[i]) + 1;
1044 cmdline = malloc (len);
1045
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001046 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001047 if (i > 2)
1048 cmdline[len++] = ' ';
1049 strcpy (&cmdline[len], argv[i]);
1050 len += strlen (argv[i]);
1051 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001052 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001053 cmdline = "";
1054 }
1055
Kumar Galac160a952008-08-15 08:24:36 -05001056 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001057
1058 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1059 (ulong)loader);
1060
1061 show_boot_progress (15);
1062
1063 /*
1064 * NetBSD Stage-2 Loader Parameters:
1065 * r3: ptr to board info data
1066 * r4: image address
1067 * r5: console device
1068 * r6: boot args string
1069 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001070 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001071
1072 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001073}
1074
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001075#ifdef CONFIG_LYNXKDI
Kumar Gala40d7e992008-08-15 08:24:45 -05001076static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001077 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001078{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001079 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001080
1081#if defined(CONFIG_FIT)
1082 if (!images->legacy_hdr_valid) {
1083 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001084 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001085 }
1086#endif
1087
1088 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001089
1090 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001091}
1092#endif /* CONFIG_LYNXKDI */
1093
Kumar Gala40d7e992008-08-15 08:24:45 -05001094static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001095 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001096{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001097 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001098
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001099#if defined(CONFIG_FIT)
1100 if (!images->legacy_hdr_valid) {
1101 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001102 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001103 }
1104#endif
1105
Kumar Galac160a952008-08-15 08:24:36 -05001106 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001107
1108 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1109 (ulong)entry_point);
1110
Heiko Schocherfad63402007-07-13 09:54:17 +02001111 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001112
1113 /*
1114 * RTEMS Parameters:
1115 * r3: ptr to board info data
1116 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001117 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001118
1119 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001120}
1121
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001122#if defined(CONFIG_CMD_ELF)
Kumar Gala40d7e992008-08-15 08:24:45 -05001123static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001124 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001125{
wdenk47d1a6e2002-11-03 00:01:44 +00001126 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001127
1128#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001129 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001130 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001131 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001132 }
1133#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001134
Kumar Galac160a952008-08-15 08:24:36 -05001135 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001136 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001137 do_bootvx(NULL, 0, 0, NULL);
1138
1139 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001140}
1141
Kumar Gala40d7e992008-08-15 08:24:45 -05001142static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001143 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001144{
wdenk47d1a6e2002-11-03 00:01:44 +00001145 char *local_args[2];
1146 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001147
1148#if defined(CONFIG_FIT)
1149 if (!images->legacy_hdr_valid) {
1150 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001151 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001152 }
1153#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001154
Kumar Galac160a952008-08-15 08:24:36 -05001155 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001156 local_args[0] = argv[0];
1157 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001158 do_bootelf(NULL, 0, 2, local_args);
1159
1160 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001161}
Jon Loeliger90253172007-07-10 11:02:44 -05001162#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001163
1164#ifdef CONFIG_INTEGRITY
1165static int do_bootm_integrity (int flag, int argc, char *argv[],
1166 bootm_headers_t *images)
1167{
1168 void (*entry_point)(void);
1169
1170#if defined(CONFIG_FIT)
1171 if (!images->legacy_hdr_valid) {
1172 fit_unsupported_reset ("INTEGRITY");
1173 return 1;
1174 }
1175#endif
1176
1177 entry_point = (void (*)(void))images->ep;
1178
1179 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1180 (ulong)entry_point);
1181
1182 show_boot_progress (15);
1183
1184 /*
1185 * INTEGRITY Parameters:
1186 * None
1187 */
1188 (*entry_point)();
1189
1190 return 1;
1191}
1192#endif