blob: d301332d36ddb588819613f6fcf29f0bf3b9ba6c [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Detlev Zundelca95c9d2009-07-13 16:01:18 +02002 * (C) Copyright 2000-2009
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>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020033#include <u-boot/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>
Kumar Gala49c3a862008-10-21 17:25:45 -050037#include <linux/ctype.h>
wdenk47d1a6e2002-11-03 00:01:44 +000038#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000039
Stefan Roeseebb86c42008-07-30 09:59:51 +020040#if defined(CONFIG_CMD_USB)
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020041#include <usb.h>
42#endif
43
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044#ifdef CONFIG_SYS_HUSH_PARSER
wdenk47d1a6e2002-11-03 00:01:44 +000045#include <hush.h>
46#endif
47
Kumar Gala54f9c862008-08-15 08:24:39 -050048#if defined(CONFIG_OF_LIBFDT)
49#include <fdt.h>
50#include <libfdt.h>
51#include <fdt_support.h>
52#endif
53
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020054#ifdef CONFIG_LZMA
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020055#include <lzma/LzmaTypes.h>
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +020056#include <lzma/LzmaDec.h>
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020057#include <lzma/LzmaTools.h>
58#endif /* CONFIG_LZMA */
59
Peter Korsgaard20dde482009-11-19 11:37:51 +010060#ifdef CONFIG_LZO
61#include <linux/lzo.h>
62#endif /* CONFIG_LZO */
63
Marian Balakowicz1ee11802008-01-08 18:17:10 +010064DECLARE_GLOBAL_DATA_PTR;
65
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#ifndef CONFIG_SYS_BOOTM_LEN
67#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000068#endif
69
Marian Balakowicz321359f2008-01-08 18:11:43 +010070#ifdef CONFIG_BZIP2
71extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000072#endif
73
Jon Loeligerbaa26db2007-07-08 17:51:39 -050074#if defined(CONFIG_CMD_IMI)
Stephen Warren712fbcf2011-10-18 11:11:49 +000075static int image_info(unsigned long addr);
wdenk47d1a6e2002-11-03 00:01:44 +000076#endif
wdenk27b207f2003-07-24 23:38:38 +000077
Jon Loeligerbaa26db2007-07-08 17:51:39 -050078#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000079#include <flash.h>
Stefan Roeseca5def32010-08-31 10:00:10 +020080#include <mtd/cfi_flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020081extern flash_info_t flash_info[]; /* info for FLASH chips */
Stephen Warren712fbcf2011-10-18 11:11:49 +000082static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000083#endif
84
Marian Balakowicz1ee11802008-01-08 18:17:10 +010085#ifdef CONFIG_SILENT_CONSOLE
Stephen Warren712fbcf2011-10-18 11:11:49 +000086static void fixup_silent_linux(void);
wdenk2262cfe2002-11-18 00:14:45 +000087#endif
88
Stephen Warren712fbcf2011-10-18 11:11:49 +000089static image_header_t *image_get_kernel(ulong img_addr, int verify);
Marian Balakowicz6986a382008-03-12 10:01:05 +010090#if defined(CONFIG_FIT)
Stephen Warren712fbcf2011-10-18 11:11:49 +000091static int fit_check_kernel(const void *fit, int os_noffset, int verify);
Marian Balakowicz6986a382008-03-12 10:01:05 +010092#endif
93
Stephen Warren712fbcf2011-10-18 11:11:49 +000094static void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
95 char * const argv[], bootm_headers_t *images,
96 ulong *os_data, ulong *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +000097
wdenk47d1a6e2002-11-03 00:01:44 +000098/*
99 * Continue booting an OS image; caller already has:
100 * - copied image header to global variable `header'
101 * - checked header magic number, checksums (both header & image),
102 * - verified image architecture (PPC) and type (KERNEL or MULTI),
103 * - loaded (first part of) image to header load address,
104 * - disabled interrupts.
105 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000106typedef int boot_os_fn(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100107 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000108
Kumar Galab1d0db12008-10-21 17:25:47 -0500109#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100110extern boot_os_fn do_bootm_linux;
Kumar Galab1d0db12008-10-21 17:25:47 -0500111#endif
112#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100113static boot_os_fn do_bootm_netbsd;
Kumar Galab1d0db12008-10-21 17:25:47 -0500114#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100115#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100116static boot_os_fn do_bootm_lynxkdi;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000117extern void lynxkdi_boot(image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000118#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500119#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100120static boot_os_fn do_bootm_rtems;
Kumar Galab1d0db12008-10-21 17:25:47 -0500121#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200122#if defined(CONFIG_BOOTM_OSE)
123static boot_os_fn do_bootm_ose;
124#endif
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500125#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100126static boot_os_fn do_bootm_vxworks;
127static boot_os_fn do_bootm_qnxelf;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000128int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
129int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500130#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500131#if defined(CONFIG_INTEGRITY)
132static boot_os_fn do_bootm_integrity;
133#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000134
Mike Frysinger00085552009-11-03 11:36:26 -0500135static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500136#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500137 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500138#endif
139#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500140 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500141#endif
Kumar Galabe083152008-10-21 17:25:44 -0500142#ifdef CONFIG_LYNXKDI
143 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
144#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500145#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500146 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500147#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200148#if defined(CONFIG_BOOTM_OSE)
149 [IH_OS_OSE] = do_bootm_ose,
150#endif
Kumar Galabe083152008-10-21 17:25:44 -0500151#if defined(CONFIG_CMD_ELF)
152 [IH_OS_VXWORKS] = do_bootm_vxworks,
153 [IH_OS_QNX] = do_bootm_qnxelf,
154#endif
155#ifdef CONFIG_INTEGRITY
156 [IH_OS_INTEGRITY] = do_bootm_integrity,
157#endif
158};
159
Simon Schwarzdee17762011-09-02 00:50:31 +0000160bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100161
Kumar Gala3dfad402009-08-27 08:23:55 -0500162/* Allow for arch specific config before we boot */
163void __arch_preboot_os(void)
164{
165 /* please define platform specific arch_preboot_os() */
166}
167void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
168
Mike Frysinger476af292011-10-03 14:50:33 +0000169#define IH_INITRD_ARCH IH_ARCH_DEFAULT
wdenk47d1a6e2002-11-03 00:01:44 +0000170
Mike Frysingera16028d2009-11-03 11:35:59 -0500171static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000172{
Mike Frysingera16028d2009-11-03 11:35:59 -0500173#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500174 ulong mem_start;
175 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000176
Kumar Galae906cfa2008-08-15 08:24:40 -0500177 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000178
Kumar Galad3f2fa02008-02-27 21:51:50 -0600179 mem_start = getenv_bootm_low();
180 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000181
Kumar Galae906cfa2008-08-15 08:24:40 -0500182 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000183
Kumar Gala76da19d2008-10-16 21:52:08 -0500184 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500185 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500186#else
187# define lmb_reserve(lmb, base, size)
188#endif
189}
190
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200191static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500192{
193 void *os_hdr;
194 int ret;
195
Stephen Warren712fbcf2011-10-18 11:11:49 +0000196 memset((void *)&images, 0, sizeof(images));
197 images.verify = getenv_yesno("verify");
Mike Frysingera16028d2009-11-03 11:35:59 -0500198
199 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000200
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100201 /* get kernel image header, start address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000202 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500203 &images, &images.os.image_start, &images.os.image_len);
204 if (images.os.image_len == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000205 puts("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000206 return 1;
207 }
wdenk47d1a6e2002-11-03 00:01:44 +0000208
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100209 /* get image parameters */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000210 switch (genimg_get_format(os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100211 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000212 images.os.type = image_get_type(os_hdr);
213 images.os.comp = image_get_comp(os_hdr);
214 images.os.os = image_get_os(os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200215
Stephen Warren712fbcf2011-10-18 11:11:49 +0000216 images.os.end = image_get_image_end(os_hdr);
217 images.os.load = image_get_load(os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100218 break;
219#if defined(CONFIG_FIT)
220 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000221 if (fit_image_get_type(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500222 images.fit_noffset_os, &images.os.type)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000223 puts("Can't get image type!\n");
224 show_boot_progress(-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000225 return 1;
226 }
wdenk47d1a6e2002-11-03 00:01:44 +0000227
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228 if (fit_image_get_comp(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500229 images.fit_noffset_os, &images.os.comp)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000230 puts("Can't get image compression!\n");
231 show_boot_progress(-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100232 return 1;
233 }
wdenk47d1a6e2002-11-03 00:01:44 +0000234
Stephen Warren712fbcf2011-10-18 11:11:49 +0000235 if (fit_image_get_os(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500236 images.fit_noffset_os, &images.os.os)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000237 puts("Can't get image OS!\n");
238 show_boot_progress(-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100239 return 1;
240 }
wdenk47d1a6e2002-11-03 00:01:44 +0000241
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 images.os.end = fit_get_end(images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100243
Stephen Warren712fbcf2011-10-18 11:11:49 +0000244 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500245 &images.os.load)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000246 puts("Can't get image load address!\n");
247 show_boot_progress(-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100248 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000249 }
250 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100251#endif
252 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000253 puts("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000254 return 1;
255 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100256
Kumar Galac160a952008-08-15 08:24:36 -0500257 /* find kernel entry point */
258 if (images.legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000259 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
Kumar Galac160a952008-08-15 08:24:36 -0500260#if defined(CONFIG_FIT)
261 } else if (images.fit_uname_os) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000262 ret = fit_image_get_entry(images.fit_hdr_os,
Kumar Galac160a952008-08-15 08:24:36 -0500263 images.fit_noffset_os, &images.ep);
264 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000265 puts("Can't get entry point property!\n");
Kumar Galac160a952008-08-15 08:24:36 -0500266 return 1;
267 }
268#endif
269 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000270 puts("Could not find kernel entry point!\n");
Kumar Galac160a952008-08-15 08:24:36 -0500271 return 1;
272 }
273
Heiko Schocher24de2f42010-03-29 13:15:48 +0200274 if (((images.os.type == IH_TYPE_KERNEL) ||
275 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100276 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500277 /* find ramdisk */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000278 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
Kumar Galac4f94192008-08-15 08:24:37 -0500279 &images.rd_start, &images.rd_end);
280 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000281 puts("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500282 return 1;
283 }
Kumar Gala06a09912008-08-15 08:24:38 -0500284
285#if defined(CONFIG_OF_LIBFDT)
286 /* find flattened device tree */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000287 ret = boot_get_fdt(flag, argc, argv, &images,
288 &images.ft_addr, &images.ft_len);
Kumar Gala06a09912008-08-15 08:24:38 -0500289 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 puts("Could not find a valid device tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -0500291 return 1;
292 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500293
294 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500295#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500296 }
297
Kumar Gala396f6352008-08-15 08:24:41 -0500298 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500299 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500300
301 return 0;
302}
303
304#define BOOTM_ERR_RESET -1
305#define BOOTM_ERR_OVERLAP -2
306#define BOOTM_ERR_UNIMPLEMENTED -3
307static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
308{
309 uint8_t comp = os.comp;
310 ulong load = os.load;
311 ulong blob_start = os.start;
312 ulong blob_end = os.end;
313 ulong image_start = os.image_start;
314 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200315 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200316#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
317 int ret;
318#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500319
Stephen Warren712fbcf2011-10-18 11:11:49 +0000320 const char *type_name = genimg_get_type_name(os.type);
Kumar Gala396f6352008-08-15 08:24:41 -0500321
322 switch (comp) {
323 case IH_COMP_NONE:
Lei Wen02cf3452011-01-10 18:21:15 +0800324 if (load == blob_start || load == image_start) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325 printf(" XIP %s ... ", type_name);
Kumar Gala396f6352008-08-15 08:24:41 -0500326 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000327 printf(" Loading %s ... ", type_name);
328 memmove_wd((void *)load, (void *)image_start,
Larry Johnson54fa2c52010-04-20 08:09:43 -0400329 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500330 }
331 *load_end = load + image_len;
332 puts("OK\n");
333 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500334#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500335 case IH_COMP_GZIP:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000336 printf(" Uncompressing %s ... ", type_name);
337 if (gunzip((void *)load, unc_len,
338 (uchar *)image_start, &image_len) != 0) {
339 puts("GUNZIP: uncompress, out-of-mem or overwrite "
340 "error - must RESET board to recover\n");
Kumar Gala396f6352008-08-15 08:24:41 -0500341 if (boot_progress)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000342 show_boot_progress(-6);
Kumar Gala396f6352008-08-15 08:24:41 -0500343 return BOOTM_ERR_RESET;
344 }
345
346 *load_end = load + image_len;
347 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500348#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500349#ifdef CONFIG_BZIP2
350 case IH_COMP_BZIP2:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000351 printf(" Uncompressing %s ... ", type_name);
Kumar Gala396f6352008-08-15 08:24:41 -0500352 /*
353 * If we've got less than 4 MB of malloc() space,
354 * use slower decompression algorithm which requires
355 * at most 2300 KB of memory.
356 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000357 int i = BZ2_bzBuffToBuffDecompress((char *)load,
Kumar Gala396f6352008-08-15 08:24:41 -0500358 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200359 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500360 if (i != BZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000361 printf("BUNZIP2: uncompress or overwrite error %d "
Kumar Gala396f6352008-08-15 08:24:41 -0500362 "- must RESET board to recover\n", i);
363 if (boot_progress)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000364 show_boot_progress(-6);
Kumar Gala396f6352008-08-15 08:24:41 -0500365 return BOOTM_ERR_RESET;
366 }
367
368 *load_end = load + unc_len;
369 break;
370#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200371#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400372 case IH_COMP_LZMA: {
373 SizeT lzma_len = unc_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000374 printf(" Uncompressing %s ... ", type_name);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200375
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200376 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400377 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200378 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400379 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200380 if (ret != SZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000381 printf("LZMA: uncompress or overwrite error %d "
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200382 "- must RESET board to recover\n", ret);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000383 show_boot_progress(-6);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200384 return BOOTM_ERR_RESET;
385 }
386 *load_end = load + unc_len;
387 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400388 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200389#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100390#ifdef CONFIG_LZO
391 case IH_COMP_LZO:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000392 printf(" Uncompressing %s ... ", type_name);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100393
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200394 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100395 image_len, (unsigned char *)load,
396 &unc_len);
397 if (ret != LZO_E_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000398 printf("LZO: uncompress or overwrite error %d "
Peter Korsgaard20dde482009-11-19 11:37:51 +0100399 "- must RESET board to recover\n", ret);
400 if (boot_progress)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000401 show_boot_progress(-6);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100402 return BOOTM_ERR_RESET;
403 }
404
405 *load_end = load + unc_len;
406 break;
407#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500408 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000409 printf("Unimplemented compression type %d\n", comp);
Kumar Gala396f6352008-08-15 08:24:41 -0500410 return BOOTM_ERR_UNIMPLEMENTED;
411 }
Diana CRACIUN99ffccb2011-08-31 02:45:23 +0000412
413 flush_cache(load, (*load_end - load) * sizeof(ulong));
414
Stephen Warren712fbcf2011-10-18 11:11:49 +0000415 puts("OK\n");
416 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500417 if (boot_progress)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000418 show_boot_progress(7);
Kumar Gala396f6352008-08-15 08:24:41 -0500419
420 if ((load < blob_end) && (*load_end > blob_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000421 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
422 blob_start, blob_end);
423 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
424 *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500425
426 return BOOTM_ERR_OVERLAP;
427 }
428
429 return 0;
430}
431
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200432static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200433{
434 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200435 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200436
437 /* Don't start if "autostart" is set to "no" */
438 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
439 char buf[32];
440 sprintf(buf, "%lX", images.os.image_len);
441 setenv("filesize", buf);
442 return 0;
443 }
Simon Glass6d6f1232011-10-07 13:53:40 +0000444 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200445 (*appl)(argc-1, &argv[1]);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200446 return 0;
447}
448
Kumar Gala49c3a862008-10-21 17:25:45 -0500449/* we overload the cmd field with our state machine info instead of a
450 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100451static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500452 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
453 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600454#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500455 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
456#endif
457#ifdef CONFIG_OF_LIBFDT
458 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
459#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500460 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600461 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500462 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
463 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
464};
465
Stephen Warren712fbcf2011-10-18 11:11:49 +0000466int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
467 char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500468{
469 int ret = 0;
Simon Glass6d6f1232011-10-07 13:53:40 +0000470 long state;
Kumar Gala49c3a862008-10-21 17:25:45 -0500471 cmd_tbl_t *c;
472 boot_os_fn *boot_fn;
473
474 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
475
476 if (c) {
Simon Glass6d6f1232011-10-07 13:53:40 +0000477 state = (long)c->cmd;
Kumar Gala49c3a862008-10-21 17:25:45 -0500478
479 /* treat start special since it resets the state machine */
480 if (state == BOOTM_STATE_START) {
481 argc--;
482 argv++;
483 return bootm_start(cmdtp, flag, argc, argv);
484 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200485 } else {
486 /* Unrecognized command */
487 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500488 }
489
490 if (images.state >= state) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000491 printf("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200492 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500493 }
494
495 images.state |= state;
496 boot_fn = boot_os[images.os.os];
497
498 switch (state) {
499 ulong load_end;
500 case BOOTM_STATE_START:
501 /* should never occur */
502 break;
503 case BOOTM_STATE_LOADOS:
504 ret = bootm_load_os(images.os, &load_end, 0);
505 if (ret)
506 return ret;
507
508 lmb_reserve(&images.lmb, images.os.load,
509 (load_end - images.os.load));
510 break;
John Rigbyfca43cc2010-10-13 13:57:35 -0600511#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500512 case BOOTM_STATE_RAMDISK:
513 {
514 ulong rd_len = images.rd_end - images.rd_start;
515 char str[17];
516
517 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
518 rd_len, &images.initrd_start, &images.initrd_end);
519 if (ret)
520 return ret;
521
522 sprintf(str, "%lx", images.initrd_start);
523 setenv("initrd_start", str);
524 sprintf(str, "%lx", images.initrd_end);
525 setenv("initrd_end", str);
526 }
527 break;
528#endif
Grant Likelyed59e582011-03-28 09:58:49 +0000529#if defined(CONFIG_OF_LIBFDT)
Kumar Gala49c3a862008-10-21 17:25:45 -0500530 case BOOTM_STATE_FDT:
531 {
Grant Likely55b0a392011-03-28 09:59:01 +0000532 boot_fdt_add_mem_rsv_regions(&images.lmb,
533 images.ft_addr);
Grant Likely590d3ca2011-03-28 09:58:34 +0000534 ret = boot_relocate_fdt(&images.lmb,
Kumar Gala49c3a862008-10-21 17:25:45 -0500535 &images.ft_addr, &images.ft_len);
536 break;
537 }
538#endif
539 case BOOTM_STATE_OS_CMDLINE:
540 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
541 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000542 printf("cmdline subcommand not supported\n");
Kumar Gala49c3a862008-10-21 17:25:45 -0500543 break;
544 case BOOTM_STATE_OS_BD_T:
545 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
546 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000547 printf("bdt subcommand not supported\n");
Kumar Gala49c3a862008-10-21 17:25:45 -0500548 break;
549 case BOOTM_STATE_OS_PREP:
550 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
551 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000552 printf("prep subcommand not supported\n");
Kumar Gala49c3a862008-10-21 17:25:45 -0500553 break;
554 case BOOTM_STATE_OS_GO:
555 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500556 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500557 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
558 break;
559 }
560
561 return ret;
562}
563
Kumar Gala396f6352008-08-15 08:24:41 -0500564/*******************************************************************/
565/* bootm - boot application image from image in memory */
566/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500567
Stephen Warren712fbcf2011-10-18 11:11:49 +0000568int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500569{
Kumar Gala396f6352008-08-15 08:24:41 -0500570 ulong iflag;
571 ulong load_end = 0;
572 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500573 boot_os_fn *boot_fn;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200574#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500575 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500576
577 /* relocate boot function table */
578 if (!relocated) {
579 int i;
580 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200581 if (boot_os[i] != NULL)
582 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500583 relocated = 1;
584 }
Peter Tyser521af042009-09-21 11:20:36 -0500585#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500586
Kumar Gala49c3a862008-10-21 17:25:45 -0500587 /* determine if we have a sub command */
588 if (argc > 1) {
589 char *endp;
590
591 simple_strtoul(argv[1], &endp, 16);
592 /* endp pointing to NULL means that argv[1] was just a
593 * valid number, pass it along to the normal bootm processing
594 *
595 * If endp is ':' or '#' assume a FIT identifier so pass
596 * along for normal processing.
597 *
598 * Right now we assume the first arg should never be '-'
599 */
600 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
601 return do_bootm_subcommand(cmdtp, flag, argc, argv);
602 }
603
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200604 if (bootm_start(cmdtp, flag, argc, argv))
605 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000606
607 /*
608 * We have reached the point of no return: we are going to
609 * overwrite all exception vector code, so we cannot easily
610 * recover from any failures any more...
611 */
wdenk47d1a6e2002-11-03 00:01:44 +0000612 iflag = disable_interrupts();
613
Stefan Roeseebb86c42008-07-30 09:59:51 +0200614#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200615 /*
616 * turn off USB to prevent the host controller from writing to the
617 * SDRAM while Linux is booting. This could happen (at least for OHCI
618 * controller), because the HCCA (Host Controller Communication Area)
619 * lies within the SDRAM and the host controller writes continously to
620 * this area (as busmaster!). The HccaFrameNumber is for example
621 * updated every 1 ms within the HCCA structure in SDRAM! For more
622 * details see the OpenHCI specification.
623 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200624 usb_stop();
625#endif
626
Kumar Gala396f6352008-08-15 08:24:41 -0500627 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000628
Kumar Gala396f6352008-08-15 08:24:41 -0500629 if (ret < 0) {
630 if (ret == BOOTM_ERR_RESET)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000631 do_reset(cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500632 if (ret == BOOTM_ERR_OVERLAP) {
633 if (images.legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000634 image_header_t *hdr;
635 hdr = &images.legacy_hdr_os_copy;
636 if (image_get_type(hdr) == IH_TYPE_MULTI)
637 puts("WARNING: legacy format multi "
638 "component image "
639 "overwritten\n");
Kumar Gala396f6352008-08-15 08:24:41 -0500640 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000641 puts("ERROR: new format image overwritten - "
Kumar Gala396f6352008-08-15 08:24:41 -0500642 "must RESET the board to recover\n");
Stephen Warren712fbcf2011-10-18 11:11:49 +0000643 show_boot_progress(-113);
644 do_reset(cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500645 }
wdenk47d1a6e2002-11-03 00:01:44 +0000646 }
Kumar Gala396f6352008-08-15 08:24:41 -0500647 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
648 if (iflag)
649 enable_interrupts();
Stephen Warren712fbcf2011-10-18 11:11:49 +0000650 show_boot_progress(-7);
Kumar Gala396f6352008-08-15 08:24:41 -0500651 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200652 }
wdenk47d1a6e2002-11-03 00:01:44 +0000653 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100654
Kumar Gala396f6352008-08-15 08:24:41 -0500655 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
656
Detlev Zundelf97ec302009-07-13 16:01:19 +0200657 if (images.os.type == IH_TYPE_STANDALONE) {
658 if (iflag)
659 enable_interrupts();
660 /* This may return when 'autostart' is 'no' */
661 bootm_start_standalone(iflag, argc, argv);
662 return 0;
663 }
664
Stephen Warren712fbcf2011-10-18 11:11:49 +0000665 show_boot_progress(8);
wdenk47d1a6e2002-11-03 00:01:44 +0000666
wdenkf72da342003-10-10 10:05:42 +0000667#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500668 if (images.os.os == IH_OS_LINUX)
669 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000670#endif
671
Kumar Galabe083152008-10-21 17:25:44 -0500672 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200673
674 if (boot_fn == NULL) {
675 if (iflag)
676 enable_interrupts();
Stephen Warren712fbcf2011-10-18 11:11:49 +0000677 printf("ERROR: booting os '%s' (%d) is not supported\n",
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200678 genimg_get_os_name(images.os.os), images.os.os);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000679 show_boot_progress(-8);
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200680 return 1;
681 }
682
Kumar Gala3dfad402009-08-27 08:23:55 -0500683 arch_preboot_os();
684
Kumar Galabe083152008-10-21 17:25:44 -0500685 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000686
Stephen Warren712fbcf2011-10-18 11:11:49 +0000687 show_boot_progress(-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000688#ifdef DEBUG
Stephen Warren712fbcf2011-10-18 11:11:49 +0000689 puts("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000690#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +0000691 do_reset(cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100692
wdenk47d1a6e2002-11-03 00:01:44 +0000693 return 1;
694}
695
Mike Frysinger67d668b2011-06-05 13:43:02 +0000696int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
697{
698 const char *ep = getenv("autostart");
699
700 if (ep && !strcmp(ep, "yes")) {
701 char *local_args[2];
702 local_args[0] = (char *)cmd;
703 local_args[1] = NULL;
704 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
705 return do_bootm(cmdtp, 0, 1, local_args);
706 }
707
708 return 0;
709}
710
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100711/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100712 * image_get_kernel - verify legacy format kernel image
713 * @img_addr: in RAM address of the legacy format image to be verified
714 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100715 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100716 * image_get_kernel() verifies legacy image integrity and returns pointer to
717 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100718 *
719 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100720 * pointer to a legacy image header if valid image was found
721 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100722 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000723static image_header_t *image_get_kernel(ulong img_addr, int verify)
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100724{
725 image_header_t *hdr = (image_header_t *)img_addr;
726
727 if (!image_check_magic(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000728 puts("Bad Magic Number\n");
729 show_boot_progress(-1);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100730 return NULL;
731 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000732 show_boot_progress(2);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100733
Stephen Warren712fbcf2011-10-18 11:11:49 +0000734 if (!image_check_hcrc(hdr)) {
735 puts("Bad Header Checksum\n");
736 show_boot_progress(-2);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100737 return NULL;
738 }
739
Stephen Warren712fbcf2011-10-18 11:11:49 +0000740 show_boot_progress(3);
741 image_print_contents(hdr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100742
743 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000744 puts(" Verifying Checksum ... ");
745 if (!image_check_dcrc(hdr)) {
746 printf("Bad Data CRC\n");
747 show_boot_progress(-3);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100748 return NULL;
749 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000750 puts("OK\n");
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100751 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000752 show_boot_progress(4);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100753
Stephen Warren712fbcf2011-10-18 11:11:49 +0000754 if (!image_check_target_arch(hdr)) {
755 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
756 show_boot_progress(-4);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100757 return NULL;
758 }
759 return hdr;
760}
761
762/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100763 * fit_check_kernel - verify FIT format kernel subimage
764 * @fit_hdr: pointer to the FIT image header
765 * os_noffset: kernel subimage node offset within FIT image
766 * @verify: data CRC verification flag
767 *
768 * fit_check_kernel() verifies integrity of the kernel subimage and from
769 * specified FIT image.
770 *
771 * returns:
772 * 1, on success
773 * 0, on failure
774 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775#if defined(CONFIG_FIT)
776static int fit_check_kernel(const void *fit, int os_noffset, int verify)
Marian Balakowicz6986a382008-03-12 10:01:05 +0100777{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000778 fit_image_print(fit, os_noffset, " ");
Marian Balakowicz6986a382008-03-12 10:01:05 +0100779
780 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000781 puts(" Verifying Hash Integrity ... ");
782 if (!fit_image_check_hashes(fit, os_noffset)) {
783 puts("Bad Data Hash\n");
784 show_boot_progress(-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100785 return 0;
786 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000787 puts("OK\n");
Marian Balakowicz6986a382008-03-12 10:01:05 +0100788 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000789 show_boot_progress(105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100790
Stephen Warren712fbcf2011-10-18 11:11:49 +0000791 if (!fit_image_check_target_arch(fit, os_noffset)) {
792 puts("Unsupported Architecture\n");
793 show_boot_progress(-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100794 return 0;
795 }
796
Stephen Warren712fbcf2011-10-18 11:11:49 +0000797 show_boot_progress(106);
798 if (!fit_image_check_type(fit, os_noffset, IH_TYPE_KERNEL)) {
799 puts("Not a kernel image\n");
800 show_boot_progress(-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100801 return 0;
802 }
803
Stephen Warren712fbcf2011-10-18 11:11:49 +0000804 show_boot_progress(107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100805 return 1;
806}
807#endif /* CONFIG_FIT */
808
809/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100810 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100811 * @os_data: pointer to a ulong variable, will hold os data start address
812 * @os_len: pointer to a ulong variable, will hold os data length
813 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100814 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100815 * and locates kernel data.
816 *
817 * returns:
818 * pointer to image header if valid image was found, plus kernel start
819 * address and length, otherwise NULL
820 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000821static void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
822 char * const argv[], bootm_headers_t *images, ulong *os_data,
823 ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100824{
825 image_header_t *hdr;
826 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100827#if defined(CONFIG_FIT)
828 void *fit_hdr;
829 const char *fit_uname_config = NULL;
830 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100831 const void *data;
832 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100833 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100834 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100835#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100836
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100837 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100838 if (argc < 2) {
839 img_addr = load_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000840 debug("* kernel: default image load address = 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100841 load_addr);
842#if defined(CONFIG_FIT)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000843 } else if (fit_parse_conf(argv[1], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100844 &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000845 debug("* kernel: config '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100846 fit_uname_config, img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000847 } else if (fit_parse_subimage(argv[1], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100848 &fit_uname_kernel)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000849 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100850 fit_uname_kernel, img_addr);
851#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100852 } else {
853 img_addr = simple_strtoul(argv[1], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000854 debug("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100855 }
856
Stephen Warren712fbcf2011-10-18 11:11:49 +0000857 show_boot_progress(1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100858
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100859 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000860 img_addr = genimg_get_image(img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100861
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100862 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100863 *os_data = *os_len = 0;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000864 switch (genimg_get_format((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100865 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000866 printf("## Booting kernel from Legacy Image at %08lx ...\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100867 img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000868 hdr = image_get_kernel(img_addr, images->verify);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100869 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100870 return NULL;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000871 show_boot_progress(5);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100872
Marian Balakowicz6986a382008-03-12 10:01:05 +0100873 /* get os_data and os_len */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000874 switch (image_get_type(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100875 case IH_TYPE_KERNEL:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000876 *os_data = image_get_data(hdr);
877 *os_len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100878 break;
879 case IH_TYPE_MULTI:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000880 image_multi_getimg(hdr, 0, os_data, os_len);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100881 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200882 case IH_TYPE_STANDALONE:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000883 *os_data = image_get_data(hdr);
884 *os_len = image_get_data_size(hdr);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200885 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100886 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000887 printf("Wrong Image Type for %s command\n",
888 cmdtp->name);
889 show_boot_progress(-5);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100890 return NULL;
891 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100892
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200893 /*
Stephen Warren712fbcf2011-10-18 11:11:49 +0000894 * copy image header to allow for image overwrites during
895 * kernel decompression.
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200896 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000897 memmove(&images->legacy_hdr_os_copy, hdr,
898 sizeof(image_header_t));
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200899
900 /* save pointer to image header */
901 images->legacy_hdr_os = hdr;
902
903 images->legacy_hdr_valid = 1;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000904 show_boot_progress(6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100905 break;
906#if defined(CONFIG_FIT)
907 case IMAGE_FORMAT_FIT:
908 fit_hdr = (void *)img_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000909 printf("## Booting kernel from FIT Image at %08lx ...\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100910 img_addr);
911
Stephen Warren712fbcf2011-10-18 11:11:49 +0000912 if (!fit_check_format(fit_hdr)) {
913 puts("Bad FIT kernel image format!\n");
914 show_boot_progress(-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100915 return NULL;
916 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000917 show_boot_progress(100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100918
919 if (!fit_uname_kernel) {
920 /*
921 * no kernel image node unit name, try to get config
922 * node first. If config unit node name is NULL
Stephen Warren712fbcf2011-10-18 11:11:49 +0000923 * fit_conf_get_node() will try to find default config
924 * node
Marian Balakowicz6986a382008-03-12 10:01:05 +0100925 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000926 show_boot_progress(101);
927 cfg_noffset = fit_conf_get_node(fit_hdr,
928 fit_uname_config);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100929 if (cfg_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000930 show_boot_progress(-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100931 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100932 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100933 /* save configuration uname provided in the first
934 * bootm argument
935 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000936 images->fit_uname_cfg = fdt_get_name(fit_hdr,
937 cfg_noffset,
938 NULL);
939 printf(" Using '%s' configuration\n",
940 images->fit_uname_cfg);
941 show_boot_progress(103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100942
Stephen Warren712fbcf2011-10-18 11:11:49 +0000943 os_noffset = fit_conf_get_kernel_node(fit_hdr,
944 cfg_noffset);
945 fit_uname_kernel = fit_get_name(fit_hdr, os_noffset,
946 NULL);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100947 } else {
948 /* get kernel component image node offset */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000949 show_boot_progress(102);
950 os_noffset = fit_image_get_node(fit_hdr,
951 fit_uname_kernel);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100952 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100953 if (os_noffset < 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000954 show_boot_progress(-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100955 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100956 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100957
Stephen Warren712fbcf2011-10-18 11:11:49 +0000958 printf(" Trying '%s' kernel subimage\n", fit_uname_kernel);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100959
Stephen Warren712fbcf2011-10-18 11:11:49 +0000960 show_boot_progress(104);
961 if (!fit_check_kernel(fit_hdr, os_noffset, images->verify))
Marian Balakowicz6986a382008-03-12 10:01:05 +0100962 return NULL;
963
964 /* get kernel image data address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000965 if (fit_image_get_data(fit_hdr, os_noffset, &data, &len)) {
966 puts("Could not find kernel subimage data!\n");
967 show_boot_progress(-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100968 return NULL;
969 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000970 show_boot_progress(108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100971
972 *os_len = len;
973 *os_data = (ulong)data;
974 images->fit_hdr_os = fit_hdr;
975 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100976 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100977 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100978#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100979 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000980 printf("Wrong Image Format for %s command\n", cmdtp->name);
981 show_boot_progress(-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100982 return NULL;
983 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100984
Stephen Warren712fbcf2011-10-18 11:11:49 +0000985 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100986 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100987
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100988 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100989}
990
wdenk0d498392003-07-01 21:06:45 +0000991U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200992 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600993 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100994 "[addr [arg ...]]\n - boot application image stored in memory\n"
995 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
996 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100997#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500998 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200999 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001000 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1001 "\tuse a '-' for the second argument. If you do not pass a third\n"
1002 "\ta bd_info struct will be passed instead\n"
1003#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +01001004#if defined(CONFIG_FIT)
1005 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1006 "\tmust be extened to include component or configuration unit name:\n"
1007 "\taddr:<subimg_uname> - direct component image specification\n"
1008 "\taddr#<conf_uname> - configuration specification\n"
1009 "\tUse iminfo command to get the list of existing component\n"
1010 "\timages and configurations.\n"
1011#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001012 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1013 "must be\n"
1014 "issued in the order below (it's ok to not issue all sub-commands):\n"
1015 "\tstart [addr [arg ...]]\n"
1016 "\tloados - load OS image\n"
1017#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1018 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1019#endif
1020#if defined(CONFIG_OF_LIBFDT)
1021 "\tfdt - relocate flat device tree\n"
1022#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001023 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001024 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001025 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001026 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001027);
1028
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001029/*******************************************************************/
1030/* bootd - boot default image */
1031/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001032#if defined(CONFIG_CMD_BOOTD)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001033int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001034{
1035 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001036
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001037#ifndef CONFIG_SYS_HUSH_PARSER
Stephen Warren712fbcf2011-10-18 11:11:49 +00001038 if (run_command(getenv("bootcmd"), flag) < 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001039 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001040#else
Stephen Warren712fbcf2011-10-18 11:11:49 +00001041 if (parse_string_outer(getenv("bootcmd"),
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001042 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1043 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001044#endif
1045 return rcode;
1046}
wdenk8bde7f72003-06-27 21:31:46 +00001047
wdenk0d498392003-07-01 21:06:45 +00001048U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001049 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001050 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001051 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001052);
1053
1054/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001055U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001056 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001057 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001058 ""
wdenk8bde7f72003-06-27 21:31:46 +00001059);
1060
wdenk47d1a6e2002-11-03 00:01:44 +00001061#endif
1062
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001063
1064/*******************************************************************/
1065/* iminfo - print header info for a requested image */
1066/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001067#if defined(CONFIG_CMD_IMI)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001068int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001069{
1070 int arg;
1071 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001072 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001073
1074 if (argc < 2) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001075 return image_info(load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001076 }
1077
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001078 for (arg = 1; arg < argc; ++arg) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001079 addr = simple_strtoul(argv[arg], NULL, 16);
1080 if (image_info(addr) != 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001081 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001082 }
1083 return rcode;
1084}
1085
Stephen Warren712fbcf2011-10-18 11:11:49 +00001086static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +00001087{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001088 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001089
Stephen Warren712fbcf2011-10-18 11:11:49 +00001090 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001091
Stephen Warren712fbcf2011-10-18 11:11:49 +00001092 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001093 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001094 puts(" Legacy image found\n");
1095 if (!image_check_magic(hdr)) {
1096 puts(" Bad Magic Number\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001097 return 1;
1098 }
1099
Stephen Warren712fbcf2011-10-18 11:11:49 +00001100 if (!image_check_hcrc(hdr)) {
1101 puts(" Bad Header Checksum\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001102 return 1;
1103 }
1104
Stephen Warren712fbcf2011-10-18 11:11:49 +00001105 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001106
Stephen Warren712fbcf2011-10-18 11:11:49 +00001107 puts(" Verifying Checksum ... ");
1108 if (!image_check_dcrc(hdr)) {
1109 puts(" Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001110 return 1;
1111 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001112 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001113 return 0;
1114#if defined(CONFIG_FIT)
1115 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001116 puts(" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001117
Stephen Warren712fbcf2011-10-18 11:11:49 +00001118 if (!fit_check_format(hdr)) {
1119 puts("Bad FIT image format!\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001120 return 1;
1121 }
1122
Stephen Warren712fbcf2011-10-18 11:11:49 +00001123 fit_print_contents(hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001124
Stephen Warren712fbcf2011-10-18 11:11:49 +00001125 if (!fit_all_image_check_hashes(hdr)) {
1126 puts("Bad hash in FIT image!\n");
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001127 return 1;
1128 }
1129
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001130 return 0;
1131#endif
1132 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001133 puts("Unknown image format!\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001134 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001135 }
1136
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001137 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001138}
wdenk0d498392003-07-01 21:06:45 +00001139
1140U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001141 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001142 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001143 "addr [addr ...]\n"
1144 " - print header information for application image starting at\n"
1145 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001146 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001147);
Jon Loeliger90253172007-07-10 11:02:44 -05001148#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001149
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001150
1151/*******************************************************************/
1152/* imls - list all images found in flash */
1153/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001154#if defined(CONFIG_CMD_IMLS)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001155int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001156{
1157 flash_info_t *info;
1158 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001159 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001160
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001161 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001162 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001163
wdenk27b207f2003-07-24 23:38:38 +00001164 if (info->flash_id == FLASH_UNKNOWN)
1165 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001166 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001167
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001168 hdr = (void *)info->start[j];
1169 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001170 goto next_sector;
1171
Stephen Warren712fbcf2011-10-18 11:11:49 +00001172 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001173 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001174 if (!image_check_hcrc(hdr))
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001175 goto next_sector;
1176
Stephen Warren712fbcf2011-10-18 11:11:49 +00001177 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1178 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001179
Stephen Warren712fbcf2011-10-18 11:11:49 +00001180 puts(" Verifying Checksum ... ");
1181 if (!image_check_dcrc(hdr)) {
1182 puts("Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001183 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001184 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001185 }
1186 break;
1187#if defined(CONFIG_FIT)
1188 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001189 if (!fit_check_format(hdr))
Marian Balakowicze32fea62008-03-11 12:35:20 +01001190 goto next_sector;
1191
Stephen Warren712fbcf2011-10-18 11:11:49 +00001192 printf("FIT Image at %08lX:\n", (ulong)hdr);
1193 fit_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001194 break;
1195#endif
1196 default:
wdenk27b207f2003-07-24 23:38:38 +00001197 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001198 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001199
wdenkbdccc4f2003-08-05 17:43:17 +00001200next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001201 }
wdenkbdccc4f2003-08-05 17:43:17 +00001202next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001203 }
1204
1205 return (0);
1206}
1207
1208U_BOOT_CMD(
1209 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001210 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001211 "\n"
1212 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001213 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001214);
Jon Loeliger90253172007-07-10 11:02:44 -05001215#endif
wdenk27b207f2003-07-24 23:38:38 +00001216
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001217/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001218/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001219/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001220#ifdef CONFIG_SILENT_CONSOLE
Doug Anderson3a8653b2011-10-19 12:30:57 +00001221static void fixup_silent_linux(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001222{
1223 char buf[256], *start, *end;
Doug Anderson3a8653b2011-10-19 12:30:57 +00001224 char *cmdline = getenv("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001225
1226 /* Only fix cmdline when requested */
1227 if (!(gd->flags & GD_FLG_SILENT))
1228 return;
1229
Doug Anderson3a8653b2011-10-19 12:30:57 +00001230 debug("before silent fix-up: %s\n", cmdline);
wdenk47d1a6e2002-11-03 00:01:44 +00001231 if (cmdline) {
Doug Anderson3a8653b2011-10-19 12:30:57 +00001232 start = strstr(cmdline, "console=");
1233 if (start) {
1234 end = strchr(start, ' ');
1235 strncpy(buf, cmdline, (start - cmdline + 8));
wdenk47d1a6e2002-11-03 00:01:44 +00001236 if (end)
Doug Anderson3a8653b2011-10-19 12:30:57 +00001237 strcpy(buf + (start - cmdline + 8), end);
wdenk47d1a6e2002-11-03 00:01:44 +00001238 else
1239 buf[start - cmdline + 8] = '\0';
1240 } else {
Doug Anderson3a8653b2011-10-19 12:30:57 +00001241 strcpy(buf, cmdline);
1242 strcat(buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001243 }
1244 } else {
Doug Anderson3a8653b2011-10-19 12:30:57 +00001245 strcpy(buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001246 }
1247
Doug Anderson3a8653b2011-10-19 12:30:57 +00001248 setenv("bootargs", buf);
1249 debug("after silent fix-up: %s\n", buf);
wdenk47d1a6e2002-11-03 00:01:44 +00001250}
1251#endif /* CONFIG_SILENT_CONSOLE */
1252
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001253
1254/*******************************************************************/
1255/* OS booting routines */
1256/*******************************************************************/
1257
Kumar Galab1d0db12008-10-21 17:25:47 -05001258#ifdef CONFIG_BOOTM_NETBSD
Stephen Warren712fbcf2011-10-18 11:11:49 +00001259static int do_bootm_netbsd(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001260 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001261{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001262 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001263 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001264 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001265 char *consdev;
1266 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001267
Kumar Gala49c3a862008-10-21 17:25:45 -05001268 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1269 return 1;
1270
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001271#if defined(CONFIG_FIT)
1272 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001273 fit_unsupported_reset("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001274 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001275 }
1276#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001277 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001278
1279 /*
1280 * Booting a (NetBSD) kernel image
1281 *
1282 * This process is pretty similar to a standalone application:
1283 * The (first part of an multi-) image must be a stage-2 loader,
1284 * which in turn is responsible for loading & invoking the actual
1285 * kernel. The only differences are the parameters being passed:
1286 * besides the board info strucure, the loader expects a command
1287 * line, the name of the console device, and (optionally) the
1288 * address of the original image header.
1289 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001290 os_hdr = NULL;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001291 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1292 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001293 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001294 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001295 }
wdenk47d1a6e2002-11-03 00:01:44 +00001296
1297 consdev = "";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001298#if defined(CONFIG_8xx_CONS_SMC1)
wdenk47d1a6e2002-11-03 00:01:44 +00001299 consdev = "smc1";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001300#elif defined(CONFIG_8xx_CONS_SMC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001301 consdev = "smc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001302#elif defined(CONFIG_8xx_CONS_SCC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001303 consdev = "scc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001304#elif defined(CONFIG_8xx_CONS_SCC3)
wdenk47d1a6e2002-11-03 00:01:44 +00001305 consdev = "scc3";
1306#endif
1307
1308 if (argc > 2) {
1309 ulong len;
1310 int i;
1311
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001312 for (i = 2, len = 0; i < argc; i += 1)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001313 len += strlen(argv[i]) + 1;
1314 cmdline = malloc(len);
wdenk47d1a6e2002-11-03 00:01:44 +00001315
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001316 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001317 if (i > 2)
1318 cmdline[len++] = ' ';
Stephen Warren712fbcf2011-10-18 11:11:49 +00001319 strcpy(&cmdline[len], argv[i]);
1320 len += strlen(argv[i]);
wdenk47d1a6e2002-11-03 00:01:44 +00001321 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001322 } else if ((cmdline = getenv("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001323 cmdline = "";
1324 }
1325
Kumar Galac160a952008-08-15 08:24:36 -05001326 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001327
Stephen Warren712fbcf2011-10-18 11:11:49 +00001328 printf("## Transferring control to NetBSD stage-2 loader "
1329 "(at address %08lx) ...\n",
wdenk47d1a6e2002-11-03 00:01:44 +00001330 (ulong)loader);
1331
Stephen Warren712fbcf2011-10-18 11:11:49 +00001332 show_boot_progress(15);
wdenk47d1a6e2002-11-03 00:01:44 +00001333
1334 /*
1335 * NetBSD Stage-2 Loader Parameters:
1336 * r3: ptr to board info data
1337 * r4: image address
1338 * r5: console device
1339 * r6: boot args string
1340 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001341 (*loader)(gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001342
1343 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001344}
Kumar Galab1d0db12008-10-21 17:25:47 -05001345#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001346
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001347#ifdef CONFIG_LYNXKDI
Stephen Warren712fbcf2011-10-18 11:11:49 +00001348static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001349 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001350{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001351 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001352
Kumar Gala49c3a862008-10-21 17:25:45 -05001353 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1354 return 1;
1355
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001356#if defined(CONFIG_FIT)
1357 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001358 fit_unsupported_reset("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001359 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001360 }
1361#endif
1362
Stephen Warren712fbcf2011-10-18 11:11:49 +00001363 lynxkdi_boot((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001364
1365 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001366}
1367#endif /* CONFIG_LYNXKDI */
1368
Kumar Galab1d0db12008-10-21 17:25:47 -05001369#ifdef CONFIG_BOOTM_RTEMS
Stephen Warren712fbcf2011-10-18 11:11:49 +00001370static int do_bootm_rtems(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001371 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001372{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001373 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001374
Kumar Gala49c3a862008-10-21 17:25:45 -05001375 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1376 return 1;
1377
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001378#if defined(CONFIG_FIT)
1379 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001380 fit_unsupported_reset("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001381 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001382 }
1383#endif
1384
Kumar Galac160a952008-08-15 08:24:36 -05001385 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001386
Stephen Warren712fbcf2011-10-18 11:11:49 +00001387 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
wdenkd791b1d2003-04-20 14:04:18 +00001388 (ulong)entry_point);
1389
Stephen Warren712fbcf2011-10-18 11:11:49 +00001390 show_boot_progress(15);
wdenkd791b1d2003-04-20 14:04:18 +00001391
1392 /*
1393 * RTEMS Parameters:
1394 * r3: ptr to board info data
1395 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001396 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001397
1398 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001399}
Kumar Galab1d0db12008-10-21 17:25:47 -05001400#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001401
Torkel Lundgren3df61952010-09-28 11:05:36 +02001402#if defined(CONFIG_BOOTM_OSE)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001403static int do_bootm_ose(int flag, int argc, char * const argv[],
Torkel Lundgren3df61952010-09-28 11:05:36 +02001404 bootm_headers_t *images)
1405{
1406 void (*entry_point)(void);
1407
1408 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1409 return 1;
1410
1411#if defined(CONFIG_FIT)
1412 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001413 fit_unsupported_reset("OSE");
Torkel Lundgren3df61952010-09-28 11:05:36 +02001414 return 1;
1415 }
1416#endif
1417
1418 entry_point = (void (*)(void))images->ep;
1419
Stephen Warren712fbcf2011-10-18 11:11:49 +00001420 printf("## Transferring control to OSE (at address %08lx) ...\n",
Torkel Lundgren3df61952010-09-28 11:05:36 +02001421 (ulong)entry_point);
1422
Stephen Warren712fbcf2011-10-18 11:11:49 +00001423 show_boot_progress(15);
Torkel Lundgren3df61952010-09-28 11:05:36 +02001424
1425 /*
1426 * OSE Parameters:
1427 * None
1428 */
1429 (*entry_point)();
1430
1431 return 1;
1432}
1433#endif /* CONFIG_BOOTM_OSE */
1434
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001435#if defined(CONFIG_CMD_ELF)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001436static int do_bootm_vxworks(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001437 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001438{
wdenk47d1a6e2002-11-03 00:01:44 +00001439 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001440
Kumar Gala49c3a862008-10-21 17:25:45 -05001441 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1442 return 1;
1443
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001444#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001445 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001446 fit_unsupported_reset("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001447 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001448 }
1449#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001450
Kumar Galac160a952008-08-15 08:24:36 -05001451 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001452 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001453 do_bootvx(NULL, 0, 0, NULL);
1454
1455 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001456}
1457
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001458static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001459 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001460{
wdenk47d1a6e2002-11-03 00:01:44 +00001461 char *local_args[2];
1462 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001463
Kumar Gala49c3a862008-10-21 17:25:45 -05001464 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1465 return 1;
1466
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001467#if defined(CONFIG_FIT)
1468 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001469 fit_unsupported_reset("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001470 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001471 }
1472#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001473
Kumar Galac160a952008-08-15 08:24:36 -05001474 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001475 local_args[0] = argv[0];
1476 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001477 do_bootelf(NULL, 0, 2, local_args);
1478
1479 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001480}
Jon Loeliger90253172007-07-10 11:02:44 -05001481#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001482
1483#ifdef CONFIG_INTEGRITY
Stephen Warren712fbcf2011-10-18 11:11:49 +00001484static int do_bootm_integrity(int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001485 bootm_headers_t *images)
1486{
1487 void (*entry_point)(void);
1488
Kumar Gala49c3a862008-10-21 17:25:45 -05001489 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1490 return 1;
1491
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001492#if defined(CONFIG_FIT)
1493 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001494 fit_unsupported_reset("INTEGRITY");
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001495 return 1;
1496 }
1497#endif
1498
1499 entry_point = (void (*)(void))images->ep;
1500
Stephen Warren712fbcf2011-10-18 11:11:49 +00001501 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001502 (ulong)entry_point);
1503
Stephen Warren712fbcf2011-10-18 11:11:49 +00001504 show_boot_progress(15);
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001505
1506 /*
1507 * INTEGRITY Parameters:
1508 * None
1509 */
1510 (*entry_point)();
1511
1512 return 1;
1513}
1514#endif