blob: 0db7b75bac5bdab908f1264261079d92db1529ad [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
wdenk7f70e852003-05-20 14:25:27 +0000111#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100112static boot_os_fn do_bootm_artos;
wdenk1f4bb372003-07-27 00:21:01 +0000113#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) {
249 puts ("Ramdisk image is corrupt\n");
250 return 1;
251 }
Kumar Gala06a09912008-08-15 08:24:38 -0500252
253#if defined(CONFIG_OF_LIBFDT)
254 /* find flattened device tree */
255 ret = boot_get_fdt (flag, argc, argv, &images,
256 &images.ft_addr, &images.ft_len);
257 if (ret) {
258 puts ("Could not find a valid device tree\n");
259 return 1;
260 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500261
262 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500263#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500264 }
265
Kumar Gala396f6352008-08-15 08:24:41 -0500266 images.os.start = (ulong)os_hdr;
267 images.valid = 1;
268
269 return 0;
270}
271
272#define BOOTM_ERR_RESET -1
273#define BOOTM_ERR_OVERLAP -2
274#define BOOTM_ERR_UNIMPLEMENTED -3
275static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
276{
277 uint8_t comp = os.comp;
278 ulong load = os.load;
279 ulong blob_start = os.start;
280 ulong blob_end = os.end;
281 ulong image_start = os.image_start;
282 ulong image_len = os.image_len;
283 uint unc_len = CFG_BOOTM_LEN;
284
285 const char *type_name = genimg_get_type_name (os.type);
286
287 switch (comp) {
288 case IH_COMP_NONE:
289 if (load == blob_start) {
290 printf (" XIP %s ... ", type_name);
291 } else {
292 printf (" Loading %s ... ", type_name);
293
294 memmove_wd ((void *)load,
295 (void *)image_start, image_len, CHUNKSZ);
296 }
297 *load_end = load + image_len;
298 puts("OK\n");
299 break;
300 case IH_COMP_GZIP:
301 printf (" Uncompressing %s ... ", type_name);
302 if (gunzip ((void *)load, unc_len,
303 (uchar *)image_start, &image_len) != 0) {
304 puts ("GUNZIP: uncompress or overwrite error "
305 "- must RESET board to recover\n");
306 if (boot_progress)
307 show_boot_progress (-6);
308 return BOOTM_ERR_RESET;
309 }
310
311 *load_end = load + image_len;
312 break;
313#ifdef CONFIG_BZIP2
314 case IH_COMP_BZIP2:
315 printf (" Uncompressing %s ... ", type_name);
316 /*
317 * If we've got less than 4 MB of malloc() space,
318 * use slower decompression algorithm which requires
319 * at most 2300 KB of memory.
320 */
321 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
322 &unc_len, (char *)image_start, image_len,
323 CFG_MALLOC_LEN < (4096 * 1024), 0);
324 if (i != BZ_OK) {
325 printf ("BUNZIP2: uncompress or overwrite error %d "
326 "- must RESET board to recover\n", i);
327 if (boot_progress)
328 show_boot_progress (-6);
329 return BOOTM_ERR_RESET;
330 }
331
332 *load_end = load + unc_len;
333 break;
334#endif /* CONFIG_BZIP2 */
335 default:
336 printf ("Unimplemented compression type %d\n", comp);
337 return BOOTM_ERR_UNIMPLEMENTED;
338 }
339 puts ("OK\n");
340 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, load_end);
341 if (boot_progress)
342 show_boot_progress (7);
343
344 if ((load < blob_end) && (*load_end > blob_start)) {
345 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
346 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, load_end);
347
348 return BOOTM_ERR_OVERLAP;
349 }
350
351 return 0;
352}
353
354/*******************************************************************/
355/* bootm - boot application image from image in memory */
356/*******************************************************************/
357int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
358{
359
360 ulong iflag;
361 ulong load_end = 0;
362 int ret;
363
364 bootm_start(cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000365
366 /*
367 * We have reached the point of no return: we are going to
368 * overwrite all exception vector code, so we cannot easily
369 * recover from any failures any more...
370 */
wdenk47d1a6e2002-11-03 00:01:44 +0000371 iflag = disable_interrupts();
372
Stefan Roeseebb86c42008-07-30 09:59:51 +0200373#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200374 /*
375 * turn off USB to prevent the host controller from writing to the
376 * SDRAM while Linux is booting. This could happen (at least for OHCI
377 * controller), because the HCCA (Host Controller Communication Area)
378 * lies within the SDRAM and the host controller writes continously to
379 * this area (as busmaster!). The HccaFrameNumber is for example
380 * updated every 1 ms within the HCCA structure in SDRAM! For more
381 * details see the OpenHCI specification.
382 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200383 usb_stop();
384#endif
385
wdenkc7de8292002-11-19 11:04:11 +0000386#ifdef CONFIG_AMIGAONEG3SE
387 /*
wdenk8bde7f72003-06-27 21:31:46 +0000388 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000389 * bios emulation, so turn them off again
390 */
391 icache_disable();
wdenkc7de8292002-11-19 11:04:11 +0000392 dcache_disable();
393#endif
394
Kumar Gala396f6352008-08-15 08:24:41 -0500395 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000396
Kumar Gala396f6352008-08-15 08:24:41 -0500397 if (ret < 0) {
398 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000399 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500400 if (ret == BOOTM_ERR_OVERLAP) {
401 if (images.legacy_hdr_valid) {
402 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
403 puts ("WARNING: legacy format multi component "
404 "image overwritten\n");
405 } else {
406 puts ("ERROR: new format image overwritten - "
407 "must RESET the board to recover\n");
408 show_boot_progress (-113);
409 do_reset (cmdtp, flag, argc, argv);
410 }
wdenk47d1a6e2002-11-03 00:01:44 +0000411 }
Kumar Gala396f6352008-08-15 08:24:41 -0500412 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
413 if (iflag)
414 enable_interrupts();
415 show_boot_progress (-7);
416 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200417 }
wdenk47d1a6e2002-11-03 00:01:44 +0000418 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100419
Kumar Gala396f6352008-08-15 08:24:41 -0500420 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
421
Heiko Schocherfad63402007-07-13 09:54:17 +0200422 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000423
Kumar Gala396f6352008-08-15 08:24:41 -0500424 switch (images.os.os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000425 default: /* handled by (original) Linux case */
426 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000427#ifdef CONFIG_SILENT_CONSOLE
428 fixup_silent_linux();
429#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500430 do_bootm_linux (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000431 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100432
wdenk47d1a6e2002-11-03 00:01:44 +0000433 case IH_OS_NETBSD:
Kumar Gala40d7e992008-08-15 08:24:45 -0500434 do_bootm_netbsd (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000435 break;
wdenk8bde7f72003-06-27 21:31:46 +0000436
wdenk1f4bb372003-07-27 00:21:01 +0000437#ifdef CONFIG_LYNXKDI
438 case IH_OS_LYNXOS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500439 do_bootm_lynxkdi (0, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000440 break;
441#endif
442
wdenkd791b1d2003-04-20 14:04:18 +0000443 case IH_OS_RTEMS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500444 do_bootm_rtems (0, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000445 break;
wdenk8bde7f72003-06-27 21:31:46 +0000446
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500447#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000448 case IH_OS_VXWORKS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500449 do_bootm_vxworks (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000450 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100451
wdenk47d1a6e2002-11-03 00:01:44 +0000452 case IH_OS_QNX:
Kumar Gala40d7e992008-08-15 08:24:45 -0500453 do_bootm_qnxelf (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000454 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500455#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100456
wdenk7f70e852003-05-20 14:25:27 +0000457#ifdef CONFIG_ARTOS
458 case IH_OS_ARTOS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500459 do_bootm_artos (0, argc, argv, &images);
wdenk7f70e852003-05-20 14:25:27 +0000460 break;
461#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000462 }
463
Heiko Schocherfad63402007-07-13 09:54:17 +0200464 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000465#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000466 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000467#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500468 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100469
wdenk47d1a6e2002-11-03 00:01:44 +0000470 return 1;
471}
472
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100473/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100474 * image_get_kernel - verify legacy format kernel image
475 * @img_addr: in RAM address of the legacy format image to be verified
476 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100477 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100478 * image_get_kernel() verifies legacy image integrity and returns pointer to
479 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100480 *
481 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100482 * pointer to a legacy image header if valid image was found
483 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100484 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100485static image_header_t *image_get_kernel (ulong img_addr, int verify)
486{
487 image_header_t *hdr = (image_header_t *)img_addr;
488
489 if (!image_check_magic(hdr)) {
490 puts ("Bad Magic Number\n");
491 show_boot_progress (-1);
492 return NULL;
493 }
494 show_boot_progress (2);
495
496 if (!image_check_hcrc (hdr)) {
497 puts ("Bad Header Checksum\n");
498 show_boot_progress (-2);
499 return NULL;
500 }
501
502 show_boot_progress (3);
503 image_print_contents (hdr);
504
505 if (verify) {
506 puts (" Verifying Checksum ... ");
507 if (!image_check_dcrc (hdr)) {
508 printf ("Bad Data CRC\n");
509 show_boot_progress (-3);
510 return NULL;
511 }
512 puts ("OK\n");
513 }
514 show_boot_progress (4);
515
516 if (!image_check_target_arch (hdr)) {
517 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
518 show_boot_progress (-4);
519 return NULL;
520 }
521 return hdr;
522}
523
524/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100525 * fit_check_kernel - verify FIT format kernel subimage
526 * @fit_hdr: pointer to the FIT image header
527 * os_noffset: kernel subimage node offset within FIT image
528 * @verify: data CRC verification flag
529 *
530 * fit_check_kernel() verifies integrity of the kernel subimage and from
531 * specified FIT image.
532 *
533 * returns:
534 * 1, on success
535 * 0, on failure
536 */
537#if defined (CONFIG_FIT)
538static int fit_check_kernel (const void *fit, int os_noffset, int verify)
539{
540 fit_image_print (fit, os_noffset, " ");
541
542 if (verify) {
543 puts (" Verifying Hash Integrity ... ");
544 if (!fit_image_check_hashes (fit, os_noffset)) {
545 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100546 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100547 return 0;
548 }
549 puts ("OK\n");
550 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100551 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100552
553 if (!fit_image_check_target_arch (fit, os_noffset)) {
554 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100555 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100556 return 0;
557 }
558
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100559 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100560 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
561 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100562 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100563 return 0;
564 }
565
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100566 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100567 return 1;
568}
569#endif /* CONFIG_FIT */
570
571/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100572 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100573 * @os_data: pointer to a ulong variable, will hold os data start address
574 * @os_len: pointer to a ulong variable, will hold os data length
575 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100576 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100577 * and locates kernel data.
578 *
579 * returns:
580 * pointer to image header if valid image was found, plus kernel start
581 * address and length, otherwise NULL
582 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100583static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100584 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100585{
586 image_header_t *hdr;
587 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100588#if defined(CONFIG_FIT)
589 void *fit_hdr;
590 const char *fit_uname_config = NULL;
591 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100592 const void *data;
593 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100594 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100595 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100596#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100597
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100598 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100599 if (argc < 2) {
600 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100601 debug ("* kernel: default image load address = 0x%08lx\n",
602 load_addr);
603#if defined(CONFIG_FIT)
604 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
605 &fit_uname_config)) {
606 debug ("* kernel: config '%s' from image at 0x%08lx\n",
607 fit_uname_config, img_addr);
608 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
609 &fit_uname_kernel)) {
610 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
611 fit_uname_kernel, img_addr);
612#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100613 } else {
614 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100615 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100616 }
617
618 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100619
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100620 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100621 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100622
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100623 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100624 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100625 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100626 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100627 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
628 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100629 hdr = image_get_kernel (img_addr, images->verify);
630 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100631 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100632 show_boot_progress (5);
633
Marian Balakowicz6986a382008-03-12 10:01:05 +0100634 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100635 switch (image_get_type (hdr)) {
636 case IH_TYPE_KERNEL:
637 *os_data = image_get_data (hdr);
638 *os_len = image_get_data_size (hdr);
639 break;
640 case IH_TYPE_MULTI:
641 image_multi_getimg (hdr, 0, os_data, os_len);
642 break;
643 default:
644 printf ("Wrong Image Type for %s command\n", cmdtp->name);
645 show_boot_progress (-5);
646 return NULL;
647 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100648
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200649 /*
650 * copy image header to allow for image overwrites during kernel
651 * decompression.
652 */
653 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
654
655 /* save pointer to image header */
656 images->legacy_hdr_os = hdr;
657
658 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100659 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100660 break;
661#if defined(CONFIG_FIT)
662 case IMAGE_FORMAT_FIT:
663 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100664 printf ("## Booting kernel from FIT Image at %08lx ...\n",
665 img_addr);
666
667 if (!fit_check_format (fit_hdr)) {
668 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100669 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100670 return NULL;
671 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100672 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100673
674 if (!fit_uname_kernel) {
675 /*
676 * no kernel image node unit name, try to get config
677 * node first. If config unit node name is NULL
678 * fit_conf_get_node() will try to find default config node
679 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100680 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100681 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
682 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100683 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100684 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100685 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100686 /* save configuration uname provided in the first
687 * bootm argument
688 */
689 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
690 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
691 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100692
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100693 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100694 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
695 } else {
696 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100697 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100698 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
699 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100700 if (os_noffset < 0) {
701 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100702 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100703 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100704
705 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
706
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100707 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100708 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
709 return NULL;
710
711 /* get kernel image data address and length */
712 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
713 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100714 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100715 return NULL;
716 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100717 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100718
719 *os_len = len;
720 *os_data = (ulong)data;
721 images->fit_hdr_os = fit_hdr;
722 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100723 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100724 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100725#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100726 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100727 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100728 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100729 return NULL;
730 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100731
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200732 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100733 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100734
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100735 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100736}
737
wdenk0d498392003-07-01 21:06:45 +0000738U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100739 bootm, CFG_MAXARGS, 1, do_bootm,
740 "bootm - boot application image from memory\n",
741 "[addr [arg ...]]\n - boot application image stored in memory\n"
742 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
743 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100744#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500745 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200746 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500747 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
748 "\tuse a '-' for the second argument. If you do not pass a third\n"
749 "\ta bd_info struct will be passed instead\n"
750#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100751#if defined(CONFIG_FIT)
752 "\t\nFor the new multi component uImage format (FIT) addresses\n"
753 "\tmust be extened to include component or configuration unit name:\n"
754 "\taddr:<subimg_uname> - direct component image specification\n"
755 "\taddr#<conf_uname> - configuration specification\n"
756 "\tUse iminfo command to get the list of existing component\n"
757 "\timages and configurations.\n"
758#endif
wdenk8bde7f72003-06-27 21:31:46 +0000759);
760
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100761/*******************************************************************/
762/* bootd - boot default image */
763/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500764#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000765int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
766{
767 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100768
wdenk47d1a6e2002-11-03 00:01:44 +0000769#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100770 if (run_command (getenv ("bootcmd"), flag) < 0)
771 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000772#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100773 if (parse_string_outer (getenv ("bootcmd"),
774 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
775 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000776#endif
777 return rcode;
778}
wdenk8bde7f72003-06-27 21:31:46 +0000779
wdenk0d498392003-07-01 21:06:45 +0000780U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100781 boot, 1, 1, do_bootd,
782 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000783 NULL
784);
785
786/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000787U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100788 bootd, 1, 1, do_bootd,
789 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000790 NULL
791);
792
wdenk47d1a6e2002-11-03 00:01:44 +0000793#endif
794
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100795
796/*******************************************************************/
797/* iminfo - print header info for a requested image */
798/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500799#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100800int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000801{
802 int arg;
803 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100804 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000805
806 if (argc < 2) {
807 return image_info (load_addr);
808 }
809
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100810 for (arg = 1; arg < argc; ++arg) {
811 addr = simple_strtoul (argv[arg], NULL, 16);
812 if (image_info (addr) != 0)
813 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000814 }
815 return rcode;
816}
817
818static int image_info (ulong addr)
819{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100820 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000821
822 printf ("\n## Checking Image at %08lx ...\n", addr);
823
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100824 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100825 case IMAGE_FORMAT_LEGACY:
826 puts (" Legacy image found\n");
827 if (!image_check_magic (hdr)) {
828 puts (" Bad Magic Number\n");
829 return 1;
830 }
831
832 if (!image_check_hcrc (hdr)) {
833 puts (" Bad Header Checksum\n");
834 return 1;
835 }
836
837 image_print_contents (hdr);
838
839 puts (" Verifying Checksum ... ");
840 if (!image_check_dcrc (hdr)) {
841 puts (" Bad Data CRC\n");
842 return 1;
843 }
844 puts ("OK\n");
845 return 0;
846#if defined(CONFIG_FIT)
847 case IMAGE_FORMAT_FIT:
848 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100849
850 if (!fit_check_format (hdr)) {
851 puts ("Bad FIT image format!\n");
852 return 1;
853 }
854
855 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100856 return 0;
857#endif
858 default:
859 puts ("Unknown image format!\n");
860 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000861 }
862
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100863 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000864}
wdenk0d498392003-07-01 21:06:45 +0000865
866U_BOOT_CMD(
867 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000868 "iminfo - print header information for application image\n",
869 "addr [addr ...]\n"
870 " - print header information for application image starting at\n"
871 " address 'addr' in memory; this includes verification of the\n"
872 " image contents (magic number, header and payload checksums)\n"
873);
Jon Loeliger90253172007-07-10 11:02:44 -0500874#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000875
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100876
877/*******************************************************************/
878/* imls - list all images found in flash */
879/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500880#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000881int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
882{
883 flash_info_t *info;
884 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100885 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000886
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100887 for (i = 0, info = &flash_info[0];
888 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
889
wdenk27b207f2003-07-24 23:38:38 +0000890 if (info->flash_id == FLASH_UNKNOWN)
891 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100892 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000893
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100894 hdr = (void *)info->start[j];
895 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000896 goto next_sector;
897
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100898 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100899 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100900 if (!image_check_hcrc (hdr))
901 goto next_sector;
902
903 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
904 image_print_contents (hdr);
905
906 puts (" Verifying Checksum ... ");
907 if (!image_check_dcrc (hdr)) {
908 puts ("Bad Data CRC\n");
909 } else {
910 puts ("OK\n");
911 }
912 break;
913#if defined(CONFIG_FIT)
914 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100915 if (!fit_check_format (hdr))
916 goto next_sector;
917
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100918 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100919 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100920 break;
921#endif
922 default:
wdenk27b207f2003-07-24 23:38:38 +0000923 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000924 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100925
wdenkbdccc4f2003-08-05 17:43:17 +0000926next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000927 }
wdenkbdccc4f2003-08-05 17:43:17 +0000928next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000929 }
930
931 return (0);
932}
933
934U_BOOT_CMD(
935 imls, 1, 1, do_imls,
936 "imls - list all images found in flash\n",
937 "\n"
938 " - Prints information about all images found at sector\n"
939 " boundaries in flash.\n"
940);
Jon Loeliger90253172007-07-10 11:02:44 -0500941#endif
wdenk27b207f2003-07-24 23:38:38 +0000942
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100943/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100944/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100945/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000946#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100947static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +0000948{
949 char buf[256], *start, *end;
950 char *cmdline = getenv ("bootargs");
951
952 /* Only fix cmdline when requested */
953 if (!(gd->flags & GD_FLG_SILENT))
954 return;
955
956 debug ("before silent fix-up: %s\n", cmdline);
957 if (cmdline) {
958 if ((start = strstr (cmdline, "console=")) != NULL) {
959 end = strchr (start, ' ');
960 strncpy (buf, cmdline, (start - cmdline + 8));
961 if (end)
962 strcpy (buf + (start - cmdline + 8), end);
963 else
964 buf[start - cmdline + 8] = '\0';
965 } else {
966 strcpy (buf, cmdline);
967 strcat (buf, " console=");
968 }
969 } else {
970 strcpy (buf, "console=");
971 }
972
973 setenv ("bootargs", buf);
974 debug ("after silent fix-up: %s\n", buf);
975}
976#endif /* CONFIG_SILENT_CONSOLE */
977
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100978
979/*******************************************************************/
980/* OS booting routines */
981/*******************************************************************/
982
Kumar Gala40d7e992008-08-15 08:24:45 -0500983static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100984 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000985{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100986 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100987 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100988 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100989 char *consdev;
990 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +0000991
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100992#if defined(CONFIG_FIT)
993 if (!images->legacy_hdr_valid) {
994 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -0500995 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000996 }
997#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100998 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +0000999
1000 /*
1001 * Booting a (NetBSD) kernel image
1002 *
1003 * This process is pretty similar to a standalone application:
1004 * The (first part of an multi-) image must be a stage-2 loader,
1005 * which in turn is responsible for loading & invoking the actual
1006 * kernel. The only differences are the parameters being passed:
1007 * besides the board info strucure, the loader expects a command
1008 * line, the name of the console device, and (optionally) the
1009 * address of the original image header.
1010 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001011 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001012 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001013 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1014 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001015 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001016 }
wdenk47d1a6e2002-11-03 00:01:44 +00001017
1018 consdev = "";
1019#if defined (CONFIG_8xx_CONS_SMC1)
1020 consdev = "smc1";
1021#elif defined (CONFIG_8xx_CONS_SMC2)
1022 consdev = "smc2";
1023#elif defined (CONFIG_8xx_CONS_SCC2)
1024 consdev = "scc2";
1025#elif defined (CONFIG_8xx_CONS_SCC3)
1026 consdev = "scc3";
1027#endif
1028
1029 if (argc > 2) {
1030 ulong len;
1031 int i;
1032
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001033 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001034 len += strlen (argv[i]) + 1;
1035 cmdline = malloc (len);
1036
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001037 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001038 if (i > 2)
1039 cmdline[len++] = ' ';
1040 strcpy (&cmdline[len], argv[i]);
1041 len += strlen (argv[i]);
1042 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001043 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001044 cmdline = "";
1045 }
1046
Kumar Galac160a952008-08-15 08:24:36 -05001047 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001048
1049 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1050 (ulong)loader);
1051
1052 show_boot_progress (15);
1053
1054 /*
1055 * NetBSD Stage-2 Loader Parameters:
1056 * r3: ptr to board info data
1057 * r4: image address
1058 * r5: console device
1059 * r6: boot args string
1060 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001061 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001062
1063 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001064}
1065
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001066#ifdef CONFIG_LYNXKDI
Kumar Gala40d7e992008-08-15 08:24:45 -05001067static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001068 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001069{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001070 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001071
1072#if defined(CONFIG_FIT)
1073 if (!images->legacy_hdr_valid) {
1074 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001075 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001076 }
1077#endif
1078
1079 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001080
1081 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001082}
1083#endif /* CONFIG_LYNXKDI */
1084
Kumar Gala40d7e992008-08-15 08:24:45 -05001085static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001086 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001087{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001088 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001089
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001090#if defined(CONFIG_FIT)
1091 if (!images->legacy_hdr_valid) {
1092 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001093 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001094 }
1095#endif
1096
Kumar Galac160a952008-08-15 08:24:36 -05001097 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001098
1099 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1100 (ulong)entry_point);
1101
Heiko Schocherfad63402007-07-13 09:54:17 +02001102 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001103
1104 /*
1105 * RTEMS Parameters:
1106 * r3: ptr to board info data
1107 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001108 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001109
1110 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001111}
1112
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001113#if defined(CONFIG_CMD_ELF)
Kumar Gala40d7e992008-08-15 08:24:45 -05001114static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001115 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001116{
wdenk47d1a6e2002-11-03 00:01:44 +00001117 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001118
1119#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001120 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001121 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001122 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001123 }
1124#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001125
Kumar Galac160a952008-08-15 08:24:36 -05001126 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001127 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001128 do_bootvx(NULL, 0, 0, NULL);
1129
1130 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001131}
1132
Kumar Gala40d7e992008-08-15 08:24:45 -05001133static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001134 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001135{
wdenk47d1a6e2002-11-03 00:01:44 +00001136 char *local_args[2];
1137 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001138
1139#if defined(CONFIG_FIT)
1140 if (!images->legacy_hdr_valid) {
1141 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001142 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001143 }
1144#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001145
Kumar Galac160a952008-08-15 08:24:36 -05001146 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001147 local_args[0] = argv[0];
1148 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001149 do_bootelf(NULL, 0, 2, local_args);
1150
1151 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001152}
Jon Loeliger90253172007-07-10 11:02:44 -05001153#endif
wdenk1f4bb372003-07-27 00:21:01 +00001154
wdenk47d1a6e2002-11-03 00:01:44 +00001155#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Kumar Gala40d7e992008-08-15 08:24:45 -05001156static int do_bootm_artos (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001157 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001158{
1159 ulong top;
1160 char *s, *cmdline;
1161 char **fwenv, **ss;
1162 int i, j, nxt, len, envno, envsz;
1163 bd_t *kbd;
1164 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001165
1166#if defined(CONFIG_FIT)
1167 if (!images->legacy_hdr_valid) {
1168 fit_unsupported_reset ("ARTOS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001169 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001170 }
1171#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001172
1173 /*
1174 * Booting an ARTOS kernel image + application
1175 */
1176
1177 /* this used to be the top of memory, but was wrong... */
1178#ifdef CONFIG_PPC
1179 /* get stack pointer */
1180 asm volatile ("mr %0,1" : "=r"(top) );
1181#endif
1182 debug ("## Current stack ends at 0x%08lX ", top);
1183
1184 top -= 2048; /* just to be sure */
1185 if (top > CFG_BOOTMAPSZ)
1186 top = CFG_BOOTMAPSZ;
1187 top &= ~0xF;
1188
1189 debug ("=> set upper limit to 0x%08lX\n", top);
1190
1191 /* first check the artos specific boot args, then the linux args*/
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001192 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
wdenk47d1a6e2002-11-03 00:01:44 +00001193 s = "";
1194
1195 /* get length of cmdline, and place it */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001196 len = strlen (s);
wdenk47d1a6e2002-11-03 00:01:44 +00001197 top = (top - (len + 1)) & ~0xF;
1198 cmdline = (char *)top;
1199 debug ("## cmdline at 0x%08lX ", top);
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001200 strcpy (cmdline, s);
wdenk47d1a6e2002-11-03 00:01:44 +00001201
1202 /* copy bdinfo */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001203 top = (top - sizeof (bd_t)) & ~0xF;
wdenk47d1a6e2002-11-03 00:01:44 +00001204 debug ("## bd at 0x%08lX ", top);
1205 kbd = (bd_t *)top;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001206 memcpy (kbd, gd->bd, sizeof (bd_t));
wdenk47d1a6e2002-11-03 00:01:44 +00001207
1208 /* first find number of env entries, and their size */
1209 envno = 0;
1210 envsz = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001211 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1212 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
wdenk47d1a6e2002-11-03 00:01:44 +00001213 ;
1214 envno++;
1215 envsz += (nxt - i) + 1; /* plus trailing zero */
1216 }
1217 envno++; /* plus the terminating zero */
1218 debug ("## %u envvars total size %u ", envno, envsz);
1219
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001220 top = (top - sizeof (char **) * envno) & ~0xF;
wdenk47d1a6e2002-11-03 00:01:44 +00001221 fwenv = (char **)top;
1222 debug ("## fwenv at 0x%08lX ", top);
1223
1224 top = (top - envsz) & ~0xF;
1225 s = (char *)top;
1226 ss = fwenv;
1227
1228 /* now copy them */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001229 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1230 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
wdenk47d1a6e2002-11-03 00:01:44 +00001231 ;
1232 *ss++ = s;
1233 for (j = i; j < nxt; ++j)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001234 *s++ = env_get_char (j);
wdenk47d1a6e2002-11-03 00:01:44 +00001235 *s++ = '\0';
1236 }
1237 *ss++ = NULL; /* terminate */
1238
Kumar Galac160a952008-08-15 08:24:36 -05001239 entry = (void (*)(bd_t *, char *, char **, ulong))images->ep;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001240 (*entry) (kbd, cmdline, fwenv, top);
Kumar Gala40d7e992008-08-15 08:24:45 -05001241
1242 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001243}
1244#endif