blob: 19257bbd4cd620edbb8e356b1caf93fd21f7b98f [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
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020053#ifdef CONFIG_LZMA
54#define _7ZIP_BYTE_DEFINED /* Byte already defined by zlib */
55#include <lzma/LzmaTypes.h>
56#include <lzma/LzmaDecode.h>
57#include <lzma/LzmaTools.h>
58#endif /* CONFIG_LZMA */
59
Marian Balakowicz1ee11802008-01-08 18:17:10 +010060DECLARE_GLOBAL_DATA_PTR;
61
62extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
63#ifndef CFG_BOOTM_LEN
64#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000065#endif
66
Marian Balakowicz321359f2008-01-08 18:11:43 +010067#ifdef CONFIG_BZIP2
68extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000069#endif
70
Jon Loeligerbaa26db2007-07-08 17:51:39 -050071#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000072static int image_info (unsigned long addr);
73#endif
wdenk27b207f2003-07-24 23:38:38 +000074
Jon Loeligerbaa26db2007-07-08 17:51:39 -050075#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000076#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020077extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000078static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
79#endif
80
Marian Balakowicz1ee11802008-01-08 18:17:10 +010081#ifdef CONFIG_SILENT_CONSOLE
82static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000083#endif
84
Marian Balakowicz6986a382008-03-12 10:01:05 +010085static image_header_t *image_get_kernel (ulong img_addr, int verify);
86#if defined(CONFIG_FIT)
87static int fit_check_kernel (const void *fit, int os_noffset, int verify);
88#endif
89
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010090static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010091 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010092extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000093
wdenk47d1a6e2002-11-03 00:01:44 +000094/*
95 * Continue booting an OS image; caller already has:
96 * - copied image header to global variable `header'
97 * - checked header magic number, checksums (both header & image),
98 * - verified image architecture (PPC) and type (KERNEL or MULTI),
99 * - loaded (first part of) image to header load address,
100 * - disabled interrupts.
101 */
Kumar Gala40d7e992008-08-15 08:24:45 -0500102typedef int boot_os_fn (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100103 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000104
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100105extern boot_os_fn do_bootm_linux;
106static boot_os_fn do_bootm_netbsd;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100107#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100108static boot_os_fn do_bootm_lynxkdi;
109extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000110#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100111static boot_os_fn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500112#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100113static boot_os_fn do_bootm_vxworks;
114static boot_os_fn do_bootm_qnxelf;
115int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
116int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500117#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500118#if defined(CONFIG_INTEGRITY)
119static boot_os_fn do_bootm_integrity;
120#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000121
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100122ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100123static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100124
Kumar Galae822d7f2008-02-27 21:51:49 -0600125void __board_lmb_reserve(struct lmb *lmb)
126{
127 /* please define platform specific board_lmb_reserve() */
128}
129void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000130
Kumar Galac4f94192008-08-15 08:24:37 -0500131#if defined(__ARM__)
132 #define IH_INITRD_ARCH IH_ARCH_ARM
133#elif defined(__avr32__)
134 #define IH_INITRD_ARCH IH_ARCH_AVR32
135#elif defined(__bfin__)
136 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
137#elif defined(__I386__)
138 #define IH_INITRD_ARCH IH_ARCH_I386
139#elif defined(__M68K__)
140 #define IH_INITRD_ARCH IH_ARCH_M68K
141#elif defined(__microblaze__)
142 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
143#elif defined(__mips__)
144 #define IH_INITRD_ARCH IH_ARCH_MIPS
145#elif defined(__nios__)
146 #define IH_INITRD_ARCH IH_ARCH_NIOS
147#elif defined(__nios2__)
148 #define IH_INITRD_ARCH IH_ARCH_NIOS2
149#elif defined(__PPC__)
150 #define IH_INITRD_ARCH IH_ARCH_PPC
151#elif defined(__sh__)
152 #define IH_INITRD_ARCH IH_ARCH_SH
153#elif defined(__sparc__)
154 #define IH_INITRD_ARCH IH_ARCH_SPARC
155#else
156# error Unknown CPU type
157#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000158
Kumar Gala396f6352008-08-15 08:24:41 -0500159static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000160{
Becky Bruce391fd932008-06-09 20:37:18 -0500161 ulong mem_start;
162 phys_size_t mem_size;
Kumar Gala396f6352008-08-15 08:24:41 -0500163 void *os_hdr;
Kumar Galac4f94192008-08-15 08:24:37 -0500164 int ret;
wdenk47d1a6e2002-11-03 00:01:44 +0000165
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100166 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200167 images.verify = getenv_yesno ("verify");
wdenk47d1a6e2002-11-03 00:01:44 +0000168
Kumar Galae906cfa2008-08-15 08:24:40 -0500169 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000170
Kumar Galad3f2fa02008-02-27 21:51:50 -0600171 mem_start = getenv_bootm_low();
172 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000173
Kumar Galae906cfa2008-08-15 08:24:40 -0500174 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000175
Kumar Galae906cfa2008-08-15 08:24:40 -0500176 board_lmb_reserve(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000177
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100178 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100179 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500180 &images, &images.os.image_start, &images.os.image_len);
181 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100182 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000183 return 1;
184 }
wdenk47d1a6e2002-11-03 00:01:44 +0000185
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100186 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100187 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100188 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500189 images.os.type = image_get_type (os_hdr);
190 images.os.comp = image_get_comp (os_hdr);
191 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200192
Kumar Gala396f6352008-08-15 08:24:41 -0500193 images.os.end = image_get_image_end (os_hdr);
194 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100195 break;
196#if defined(CONFIG_FIT)
197 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100198 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500199 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100200 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100201 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000202 return 1;
203 }
wdenk47d1a6e2002-11-03 00:01:44 +0000204
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100205 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500206 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100207 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100208 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100209 return 1;
210 }
wdenk47d1a6e2002-11-03 00:01:44 +0000211
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100212 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500213 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100214 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100215 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100216 return 1;
217 }
wdenk47d1a6e2002-11-03 00:01:44 +0000218
Kumar Gala396f6352008-08-15 08:24:41 -0500219 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100220
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100221 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500222 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100223 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100224 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100225 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000226 }
227 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100228#endif
229 default:
230 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000231 return 1;
232 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100233
Kumar Galac160a952008-08-15 08:24:36 -0500234 /* find kernel entry point */
235 if (images.legacy_hdr_valid) {
236 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
237#if defined(CONFIG_FIT)
238 } else if (images.fit_uname_os) {
239 ret = fit_image_get_entry (images.fit_hdr_os,
240 images.fit_noffset_os, &images.ep);
241 if (ret) {
242 puts ("Can't get entry point property!\n");
243 return 1;
244 }
245#endif
246 } else {
247 puts ("Could not find kernel entry point!\n");
248 return 1;
249 }
250
Kumar Gala396f6352008-08-15 08:24:41 -0500251 if (images.os.os == IH_OS_LINUX) {
Kumar Galac4f94192008-08-15 08:24:37 -0500252 /* find ramdisk */
253 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
254 &images.rd_start, &images.rd_end);
255 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500256 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500257 return 1;
258 }
Kumar Gala06a09912008-08-15 08:24:38 -0500259
260#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200261#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500262 /* find flattened device tree */
263 ret = boot_get_fdt (flag, argc, argv, &images,
264 &images.ft_addr, &images.ft_len);
265 if (ret) {
266 puts ("Could not find a valid device tree\n");
267 return 1;
268 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500269
270 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500271#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200272#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500273 }
274
Kumar Gala396f6352008-08-15 08:24:41 -0500275 images.os.start = (ulong)os_hdr;
276 images.valid = 1;
277
278 return 0;
279}
280
281#define BOOTM_ERR_RESET -1
282#define BOOTM_ERR_OVERLAP -2
283#define BOOTM_ERR_UNIMPLEMENTED -3
284static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
285{
286 uint8_t comp = os.comp;
287 ulong load = os.load;
288 ulong blob_start = os.start;
289 ulong blob_end = os.end;
290 ulong image_start = os.image_start;
291 ulong image_len = os.image_len;
292 uint unc_len = CFG_BOOTM_LEN;
293
294 const char *type_name = genimg_get_type_name (os.type);
295
296 switch (comp) {
297 case IH_COMP_NONE:
298 if (load == blob_start) {
299 printf (" XIP %s ... ", type_name);
300 } else {
301 printf (" Loading %s ... ", type_name);
302
303 memmove_wd ((void *)load,
304 (void *)image_start, image_len, CHUNKSZ);
305 }
306 *load_end = load + image_len;
307 puts("OK\n");
308 break;
309 case IH_COMP_GZIP:
310 printf (" Uncompressing %s ... ", type_name);
311 if (gunzip ((void *)load, unc_len,
312 (uchar *)image_start, &image_len) != 0) {
313 puts ("GUNZIP: uncompress or overwrite error "
314 "- must RESET board to recover\n");
315 if (boot_progress)
316 show_boot_progress (-6);
317 return BOOTM_ERR_RESET;
318 }
319
320 *load_end = load + image_len;
321 break;
322#ifdef CONFIG_BZIP2
323 case IH_COMP_BZIP2:
324 printf (" Uncompressing %s ... ", type_name);
325 /*
326 * If we've got less than 4 MB of malloc() space,
327 * use slower decompression algorithm which requires
328 * at most 2300 KB of memory.
329 */
330 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
331 &unc_len, (char *)image_start, image_len,
332 CFG_MALLOC_LEN < (4096 * 1024), 0);
333 if (i != BZ_OK) {
334 printf ("BUNZIP2: uncompress or overwrite error %d "
335 "- must RESET board to recover\n", i);
336 if (boot_progress)
337 show_boot_progress (-6);
338 return BOOTM_ERR_RESET;
339 }
340
341 *load_end = load + unc_len;
342 break;
343#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200344#ifdef CONFIG_LZMA
345 case IH_COMP_LZMA:
346 printf (" Uncompressing %s ... ", type_name);
347
348 int ret = lzmaBuffToBuffDecompress(
349 (unsigned char *)load, &unc_len,
350 (unsigned char *)image_start, image_start);
351 if (ret != LZMA_RESULT_OK) {
352 printf ("LZMA: uncompress or overwrite error %d "
353 "- must RESET board to recover\n", ret);
354 show_boot_progress (-6);
355 return BOOTM_ERR_RESET;
356 }
357 *load_end = load + unc_len;
358 break;
359#endif /* CONFIG_LZMA */
Kumar Gala396f6352008-08-15 08:24:41 -0500360 default:
361 printf ("Unimplemented compression type %d\n", comp);
362 return BOOTM_ERR_UNIMPLEMENTED;
363 }
364 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200365 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500366 if (boot_progress)
367 show_boot_progress (7);
368
369 if ((load < blob_end) && (*load_end > blob_start)) {
370 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 +0200371 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500372
373 return BOOTM_ERR_OVERLAP;
374 }
375
376 return 0;
377}
378
379/*******************************************************************/
380/* bootm - boot application image from image in memory */
381/*******************************************************************/
382int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
383{
384
385 ulong iflag;
386 ulong load_end = 0;
387 int ret;
388
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200389 if (bootm_start(cmdtp, flag, argc, argv))
390 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000391
392 /*
393 * We have reached the point of no return: we are going to
394 * overwrite all exception vector code, so we cannot easily
395 * recover from any failures any more...
396 */
wdenk47d1a6e2002-11-03 00:01:44 +0000397 iflag = disable_interrupts();
398
Stefan Roeseebb86c42008-07-30 09:59:51 +0200399#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200400 /*
401 * turn off USB to prevent the host controller from writing to the
402 * SDRAM while Linux is booting. This could happen (at least for OHCI
403 * controller), because the HCCA (Host Controller Communication Area)
404 * lies within the SDRAM and the host controller writes continously to
405 * this area (as busmaster!). The HccaFrameNumber is for example
406 * updated every 1 ms within the HCCA structure in SDRAM! For more
407 * details see the OpenHCI specification.
408 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200409 usb_stop();
410#endif
411
wdenkc7de8292002-11-19 11:04:11 +0000412#ifdef CONFIG_AMIGAONEG3SE
413 /*
wdenk8bde7f72003-06-27 21:31:46 +0000414 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000415 * bios emulation, so turn them off again
416 */
417 icache_disable();
wdenkc7de8292002-11-19 11:04:11 +0000418 dcache_disable();
419#endif
420
Kumar Gala396f6352008-08-15 08:24:41 -0500421 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000422
Kumar Gala396f6352008-08-15 08:24:41 -0500423 if (ret < 0) {
424 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000425 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500426 if (ret == BOOTM_ERR_OVERLAP) {
427 if (images.legacy_hdr_valid) {
428 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
429 puts ("WARNING: legacy format multi component "
430 "image overwritten\n");
431 } else {
432 puts ("ERROR: new format image overwritten - "
433 "must RESET the board to recover\n");
434 show_boot_progress (-113);
435 do_reset (cmdtp, flag, argc, argv);
436 }
wdenk47d1a6e2002-11-03 00:01:44 +0000437 }
Kumar Gala396f6352008-08-15 08:24:41 -0500438 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
439 if (iflag)
440 enable_interrupts();
441 show_boot_progress (-7);
442 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200443 }
wdenk47d1a6e2002-11-03 00:01:44 +0000444 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100445
Kumar Gala396f6352008-08-15 08:24:41 -0500446 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
447
Heiko Schocherfad63402007-07-13 09:54:17 +0200448 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000449
Kumar Gala396f6352008-08-15 08:24:41 -0500450 switch (images.os.os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000451 default: /* handled by (original) Linux case */
452 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000453#ifdef CONFIG_SILENT_CONSOLE
454 fixup_silent_linux();
455#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500456 do_bootm_linux (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000457 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100458
wdenk47d1a6e2002-11-03 00:01:44 +0000459 case IH_OS_NETBSD:
Kumar Gala40d7e992008-08-15 08:24:45 -0500460 do_bootm_netbsd (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000461 break;
wdenk8bde7f72003-06-27 21:31:46 +0000462
wdenk1f4bb372003-07-27 00:21:01 +0000463#ifdef CONFIG_LYNXKDI
464 case IH_OS_LYNXOS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500465 do_bootm_lynxkdi (0, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000466 break;
467#endif
468
wdenkd791b1d2003-04-20 14:04:18 +0000469 case IH_OS_RTEMS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500470 do_bootm_rtems (0, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000471 break;
wdenk8bde7f72003-06-27 21:31:46 +0000472
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500473#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000474 case IH_OS_VXWORKS:
Kumar Gala40d7e992008-08-15 08:24:45 -0500475 do_bootm_vxworks (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000476 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100477
wdenk47d1a6e2002-11-03 00:01:44 +0000478 case IH_OS_QNX:
Kumar Gala40d7e992008-08-15 08:24:45 -0500479 do_bootm_qnxelf (0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000480 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500481#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100482
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500483#ifdef CONFIG_INTEGRITY
484 case IH_OS_INTEGRITY:
485 do_bootm_integrity (0, argc, argv, &images);
486 break;
487#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000488 }
489
Heiko Schocherfad63402007-07-13 09:54:17 +0200490 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000491#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000492 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000493#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500494 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100495
wdenk47d1a6e2002-11-03 00:01:44 +0000496 return 1;
497}
498
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100499/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100500 * image_get_kernel - verify legacy format kernel image
501 * @img_addr: in RAM address of the legacy format image to be verified
502 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100503 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100504 * image_get_kernel() verifies legacy image integrity and returns pointer to
505 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100506 *
507 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100508 * pointer to a legacy image header if valid image was found
509 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100510 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100511static image_header_t *image_get_kernel (ulong img_addr, int verify)
512{
513 image_header_t *hdr = (image_header_t *)img_addr;
514
515 if (!image_check_magic(hdr)) {
516 puts ("Bad Magic Number\n");
517 show_boot_progress (-1);
518 return NULL;
519 }
520 show_boot_progress (2);
521
522 if (!image_check_hcrc (hdr)) {
523 puts ("Bad Header Checksum\n");
524 show_boot_progress (-2);
525 return NULL;
526 }
527
528 show_boot_progress (3);
529 image_print_contents (hdr);
530
531 if (verify) {
532 puts (" Verifying Checksum ... ");
533 if (!image_check_dcrc (hdr)) {
534 printf ("Bad Data CRC\n");
535 show_boot_progress (-3);
536 return NULL;
537 }
538 puts ("OK\n");
539 }
540 show_boot_progress (4);
541
542 if (!image_check_target_arch (hdr)) {
543 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
544 show_boot_progress (-4);
545 return NULL;
546 }
547 return hdr;
548}
549
550/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100551 * fit_check_kernel - verify FIT format kernel subimage
552 * @fit_hdr: pointer to the FIT image header
553 * os_noffset: kernel subimage node offset within FIT image
554 * @verify: data CRC verification flag
555 *
556 * fit_check_kernel() verifies integrity of the kernel subimage and from
557 * specified FIT image.
558 *
559 * returns:
560 * 1, on success
561 * 0, on failure
562 */
563#if defined (CONFIG_FIT)
564static int fit_check_kernel (const void *fit, int os_noffset, int verify)
565{
566 fit_image_print (fit, os_noffset, " ");
567
568 if (verify) {
569 puts (" Verifying Hash Integrity ... ");
570 if (!fit_image_check_hashes (fit, os_noffset)) {
571 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100572 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100573 return 0;
574 }
575 puts ("OK\n");
576 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100577 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100578
579 if (!fit_image_check_target_arch (fit, os_noffset)) {
580 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100581 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100582 return 0;
583 }
584
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100585 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100586 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
587 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100588 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100589 return 0;
590 }
591
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100592 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100593 return 1;
594}
595#endif /* CONFIG_FIT */
596
597/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100598 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100599 * @os_data: pointer to a ulong variable, will hold os data start address
600 * @os_len: pointer to a ulong variable, will hold os data length
601 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100602 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100603 * and locates kernel data.
604 *
605 * returns:
606 * pointer to image header if valid image was found, plus kernel start
607 * address and length, otherwise NULL
608 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100609static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100610 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100611{
612 image_header_t *hdr;
613 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100614#if defined(CONFIG_FIT)
615 void *fit_hdr;
616 const char *fit_uname_config = NULL;
617 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100618 const void *data;
619 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100620 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100621 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100622#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100623
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100624 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100625 if (argc < 2) {
626 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100627 debug ("* kernel: default image load address = 0x%08lx\n",
628 load_addr);
629#if defined(CONFIG_FIT)
630 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
631 &fit_uname_config)) {
632 debug ("* kernel: config '%s' from image at 0x%08lx\n",
633 fit_uname_config, img_addr);
634 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
635 &fit_uname_kernel)) {
636 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
637 fit_uname_kernel, img_addr);
638#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100639 } else {
640 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100641 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100642 }
643
644 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100645
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100646 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100647 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100648
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100649 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100650 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100651 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100652 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100653 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
654 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100655 hdr = image_get_kernel (img_addr, images->verify);
656 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100657 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100658 show_boot_progress (5);
659
Marian Balakowicz6986a382008-03-12 10:01:05 +0100660 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100661 switch (image_get_type (hdr)) {
662 case IH_TYPE_KERNEL:
663 *os_data = image_get_data (hdr);
664 *os_len = image_get_data_size (hdr);
665 break;
666 case IH_TYPE_MULTI:
667 image_multi_getimg (hdr, 0, os_data, os_len);
668 break;
669 default:
670 printf ("Wrong Image Type for %s command\n", cmdtp->name);
671 show_boot_progress (-5);
672 return NULL;
673 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100674
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200675 /*
676 * copy image header to allow for image overwrites during kernel
677 * decompression.
678 */
679 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
680
681 /* save pointer to image header */
682 images->legacy_hdr_os = hdr;
683
684 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100685 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100686 break;
687#if defined(CONFIG_FIT)
688 case IMAGE_FORMAT_FIT:
689 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100690 printf ("## Booting kernel from FIT Image at %08lx ...\n",
691 img_addr);
692
693 if (!fit_check_format (fit_hdr)) {
694 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100695 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100696 return NULL;
697 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100698 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100699
700 if (!fit_uname_kernel) {
701 /*
702 * no kernel image node unit name, try to get config
703 * node first. If config unit node name is NULL
704 * fit_conf_get_node() will try to find default config node
705 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100706 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100707 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
708 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100709 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100710 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100711 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100712 /* save configuration uname provided in the first
713 * bootm argument
714 */
715 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
716 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
717 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100718
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100719 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100720 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
721 } else {
722 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100723 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100724 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
725 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100726 if (os_noffset < 0) {
727 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100728 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100729 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100730
731 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
732
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100733 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100734 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
735 return NULL;
736
737 /* get kernel image data address and length */
738 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
739 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100740 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100741 return NULL;
742 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100743 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100744
745 *os_len = len;
746 *os_data = (ulong)data;
747 images->fit_hdr_os = fit_hdr;
748 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100749 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100750 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100751#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100752 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100753 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100754 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100755 return NULL;
756 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100757
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200758 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100759 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100760
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100761 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100762}
763
wdenk0d498392003-07-01 21:06:45 +0000764U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100765 bootm, CFG_MAXARGS, 1, do_bootm,
766 "bootm - boot application image from memory\n",
767 "[addr [arg ...]]\n - boot application image stored in memory\n"
768 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
769 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100770#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500771 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200772 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500773 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
774 "\tuse a '-' for the second argument. If you do not pass a third\n"
775 "\ta bd_info struct will be passed instead\n"
776#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100777#if defined(CONFIG_FIT)
778 "\t\nFor the new multi component uImage format (FIT) addresses\n"
779 "\tmust be extened to include component or configuration unit name:\n"
780 "\taddr:<subimg_uname> - direct component image specification\n"
781 "\taddr#<conf_uname> - configuration specification\n"
782 "\tUse iminfo command to get the list of existing component\n"
783 "\timages and configurations.\n"
784#endif
wdenk8bde7f72003-06-27 21:31:46 +0000785);
786
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100787/*******************************************************************/
788/* bootd - boot default image */
789/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500790#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000791int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
792{
793 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100794
wdenk47d1a6e2002-11-03 00:01:44 +0000795#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100796 if (run_command (getenv ("bootcmd"), flag) < 0)
797 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000798#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100799 if (parse_string_outer (getenv ("bootcmd"),
800 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
801 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000802#endif
803 return rcode;
804}
wdenk8bde7f72003-06-27 21:31:46 +0000805
wdenk0d498392003-07-01 21:06:45 +0000806U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100807 boot, 1, 1, do_bootd,
808 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000809 NULL
810);
811
812/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000813U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100814 bootd, 1, 1, do_bootd,
815 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000816 NULL
817);
818
wdenk47d1a6e2002-11-03 00:01:44 +0000819#endif
820
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100821
822/*******************************************************************/
823/* iminfo - print header info for a requested image */
824/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500825#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100826int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000827{
828 int arg;
829 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100830 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000831
832 if (argc < 2) {
833 return image_info (load_addr);
834 }
835
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100836 for (arg = 1; arg < argc; ++arg) {
837 addr = simple_strtoul (argv[arg], NULL, 16);
838 if (image_info (addr) != 0)
839 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000840 }
841 return rcode;
842}
843
844static int image_info (ulong addr)
845{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100846 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000847
848 printf ("\n## Checking Image at %08lx ...\n", addr);
849
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100850 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100851 case IMAGE_FORMAT_LEGACY:
852 puts (" Legacy image found\n");
853 if (!image_check_magic (hdr)) {
854 puts (" Bad Magic Number\n");
855 return 1;
856 }
857
858 if (!image_check_hcrc (hdr)) {
859 puts (" Bad Header Checksum\n");
860 return 1;
861 }
862
863 image_print_contents (hdr);
864
865 puts (" Verifying Checksum ... ");
866 if (!image_check_dcrc (hdr)) {
867 puts (" Bad Data CRC\n");
868 return 1;
869 }
870 puts ("OK\n");
871 return 0;
872#if defined(CONFIG_FIT)
873 case IMAGE_FORMAT_FIT:
874 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100875
876 if (!fit_check_format (hdr)) {
877 puts ("Bad FIT image format!\n");
878 return 1;
879 }
880
881 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +0200882
883 if (!fit_all_image_check_hashes (hdr)) {
884 puts ("Bad hash in FIT image!\n");
885 return 1;
886 }
887
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100888 return 0;
889#endif
890 default:
891 puts ("Unknown image format!\n");
892 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000893 }
894
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100895 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000896}
wdenk0d498392003-07-01 21:06:45 +0000897
898U_BOOT_CMD(
899 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000900 "iminfo - print header information for application image\n",
901 "addr [addr ...]\n"
902 " - print header information for application image starting at\n"
903 " address 'addr' in memory; this includes verification of the\n"
904 " image contents (magic number, header and payload checksums)\n"
905);
Jon Loeliger90253172007-07-10 11:02:44 -0500906#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000907
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100908
909/*******************************************************************/
910/* imls - list all images found in flash */
911/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500912#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000913int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
914{
915 flash_info_t *info;
916 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100917 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000918
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100919 for (i = 0, info = &flash_info[0];
920 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
921
wdenk27b207f2003-07-24 23:38:38 +0000922 if (info->flash_id == FLASH_UNKNOWN)
923 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100924 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000925
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100926 hdr = (void *)info->start[j];
927 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000928 goto next_sector;
929
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100930 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100931 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100932 if (!image_check_hcrc (hdr))
933 goto next_sector;
934
935 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
936 image_print_contents (hdr);
937
938 puts (" Verifying Checksum ... ");
939 if (!image_check_dcrc (hdr)) {
940 puts ("Bad Data CRC\n");
941 } else {
942 puts ("OK\n");
943 }
944 break;
945#if defined(CONFIG_FIT)
946 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100947 if (!fit_check_format (hdr))
948 goto next_sector;
949
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100950 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100951 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100952 break;
953#endif
954 default:
wdenk27b207f2003-07-24 23:38:38 +0000955 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000956 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100957
wdenkbdccc4f2003-08-05 17:43:17 +0000958next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000959 }
wdenkbdccc4f2003-08-05 17:43:17 +0000960next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000961 }
962
963 return (0);
964}
965
966U_BOOT_CMD(
967 imls, 1, 1, do_imls,
968 "imls - list all images found in flash\n",
969 "\n"
970 " - Prints information about all images found at sector\n"
971 " boundaries in flash.\n"
972);
Jon Loeliger90253172007-07-10 11:02:44 -0500973#endif
wdenk27b207f2003-07-24 23:38:38 +0000974
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100975/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100976/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100977/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000978#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100979static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +0000980{
981 char buf[256], *start, *end;
982 char *cmdline = getenv ("bootargs");
983
984 /* Only fix cmdline when requested */
985 if (!(gd->flags & GD_FLG_SILENT))
986 return;
987
988 debug ("before silent fix-up: %s\n", cmdline);
989 if (cmdline) {
990 if ((start = strstr (cmdline, "console=")) != NULL) {
991 end = strchr (start, ' ');
992 strncpy (buf, cmdline, (start - cmdline + 8));
993 if (end)
994 strcpy (buf + (start - cmdline + 8), end);
995 else
996 buf[start - cmdline + 8] = '\0';
997 } else {
998 strcpy (buf, cmdline);
999 strcat (buf, " console=");
1000 }
1001 } else {
1002 strcpy (buf, "console=");
1003 }
1004
1005 setenv ("bootargs", buf);
1006 debug ("after silent fix-up: %s\n", buf);
1007}
1008#endif /* CONFIG_SILENT_CONSOLE */
1009
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001010
1011/*******************************************************************/
1012/* OS booting routines */
1013/*******************************************************************/
1014
Kumar Gala40d7e992008-08-15 08:24:45 -05001015static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001016 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001017{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001018 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001019 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001020 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001021 char *consdev;
1022 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001023
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001024#if defined(CONFIG_FIT)
1025 if (!images->legacy_hdr_valid) {
1026 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001027 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001028 }
1029#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001030 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001031
1032 /*
1033 * Booting a (NetBSD) kernel image
1034 *
1035 * This process is pretty similar to a standalone application:
1036 * The (first part of an multi-) image must be a stage-2 loader,
1037 * which in turn is responsible for loading & invoking the actual
1038 * kernel. The only differences are the parameters being passed:
1039 * besides the board info strucure, the loader expects a command
1040 * line, the name of the console device, and (optionally) the
1041 * address of the original image header.
1042 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001043 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001044 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001045 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1046 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001047 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001048 }
wdenk47d1a6e2002-11-03 00:01:44 +00001049
1050 consdev = "";
1051#if defined (CONFIG_8xx_CONS_SMC1)
1052 consdev = "smc1";
1053#elif defined (CONFIG_8xx_CONS_SMC2)
1054 consdev = "smc2";
1055#elif defined (CONFIG_8xx_CONS_SCC2)
1056 consdev = "scc2";
1057#elif defined (CONFIG_8xx_CONS_SCC3)
1058 consdev = "scc3";
1059#endif
1060
1061 if (argc > 2) {
1062 ulong len;
1063 int i;
1064
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001065 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001066 len += strlen (argv[i]) + 1;
1067 cmdline = malloc (len);
1068
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001069 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001070 if (i > 2)
1071 cmdline[len++] = ' ';
1072 strcpy (&cmdline[len], argv[i]);
1073 len += strlen (argv[i]);
1074 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001075 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001076 cmdline = "";
1077 }
1078
Kumar Galac160a952008-08-15 08:24:36 -05001079 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001080
1081 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1082 (ulong)loader);
1083
1084 show_boot_progress (15);
1085
1086 /*
1087 * NetBSD Stage-2 Loader Parameters:
1088 * r3: ptr to board info data
1089 * r4: image address
1090 * r5: console device
1091 * r6: boot args string
1092 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001093 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001094
1095 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001096}
1097
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001098#ifdef CONFIG_LYNXKDI
Kumar Gala40d7e992008-08-15 08:24:45 -05001099static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001100 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001101{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001102 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001103
1104#if defined(CONFIG_FIT)
1105 if (!images->legacy_hdr_valid) {
1106 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001107 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001108 }
1109#endif
1110
1111 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001112
1113 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001114}
1115#endif /* CONFIG_LYNXKDI */
1116
Kumar Gala40d7e992008-08-15 08:24:45 -05001117static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001118 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001119{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001120 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001121
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001122#if defined(CONFIG_FIT)
1123 if (!images->legacy_hdr_valid) {
1124 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001125 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001126 }
1127#endif
1128
Kumar Galac160a952008-08-15 08:24:36 -05001129 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001130
1131 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1132 (ulong)entry_point);
1133
Heiko Schocherfad63402007-07-13 09:54:17 +02001134 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001135
1136 /*
1137 * RTEMS Parameters:
1138 * r3: ptr to board info data
1139 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001140 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001141
1142 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001143}
1144
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001145#if defined(CONFIG_CMD_ELF)
Kumar Gala40d7e992008-08-15 08:24:45 -05001146static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001147 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001148{
wdenk47d1a6e2002-11-03 00:01:44 +00001149 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001150
1151#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001152 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001153 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001154 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001155 }
1156#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001157
Kumar Galac160a952008-08-15 08:24:36 -05001158 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001159 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001160 do_bootvx(NULL, 0, 0, NULL);
1161
1162 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001163}
1164
Kumar Gala40d7e992008-08-15 08:24:45 -05001165static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001166 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001167{
wdenk47d1a6e2002-11-03 00:01:44 +00001168 char *local_args[2];
1169 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001170
1171#if defined(CONFIG_FIT)
1172 if (!images->legacy_hdr_valid) {
1173 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001174 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001175 }
1176#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001177
Kumar Galac160a952008-08-15 08:24:36 -05001178 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001179 local_args[0] = argv[0];
1180 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001181 do_bootelf(NULL, 0, 2, local_args);
1182
1183 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001184}
Jon Loeliger90253172007-07-10 11:02:44 -05001185#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001186
1187#ifdef CONFIG_INTEGRITY
1188static int do_bootm_integrity (int flag, int argc, char *argv[],
1189 bootm_headers_t *images)
1190{
1191 void (*entry_point)(void);
1192
1193#if defined(CONFIG_FIT)
1194 if (!images->legacy_hdr_valid) {
1195 fit_unsupported_reset ("INTEGRITY");
1196 return 1;
1197 }
1198#endif
1199
1200 entry_point = (void (*)(void))images->ep;
1201
1202 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1203 (ulong)entry_point);
1204
1205 show_boot_progress (15);
1206
1207 /*
1208 * INTEGRITY Parameters:
1209 * None
1210 */
1211 (*entry_point)();
1212
1213 return 1;
1214}
1215#endif