blob: db59e6f295d6ff97861a576cdcf7d1ce80c115f9 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Detlev Zundel77094472009-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 Balakowicz41d71ed2008-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-VILLARD6bb94492009-04-04 12:49:11 +020033#include <u-boot/zlib.h>
wdenk710e3502003-08-29 20:57:53 +000034#include <bzlib.h>
wdenk0893c472003-05-20 14:25:27 +000035#include <environment.h>
Kumar Gala6d7bfa82008-02-27 21:51:47 -060036#include <lmb.h>
Kumar Gala18178bc2008-10-21 17:25:45 -050037#include <linux/ctype.h>
wdenk47d1a6e2002-11-03 00:01:44 +000038#include <asm/byteorder.h>
wdenk57b2d802003-06-27 21:31:46 +000039
Stefan Roesea629a722008-07-30 09:59:51 +020040#if defined(CONFIG_CMD_USB)
Markus Klotzbücher09197cb2008-07-10 14:47:09 +020041#include <usb.h>
42#endif
43
Jean-Christophe PLAGNIOL-VILLARD03836942008-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 Gala9f4e7e42008-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' Mantellini35afc062008-09-08 02:46:13 +020054#ifdef CONFIG_LZMA
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +020055#include <lzma/LzmaTypes.h>
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +020056#include <lzma/LzmaDec.h>
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +020057#include <lzma/LzmaTools.h>
58#endif /* CONFIG_LZMA */
59
Peter Korsgaardf7440cd2009-11-19 11:37:51 +010060#ifdef CONFIG_LZO
61#include <linux/lzo.h>
62#endif /* CONFIG_LZO */
63
Marian Balakowicz2df645e2008-01-08 18:17:10 +010064DECLARE_GLOBAL_DATA_PTR;
wdenk9dfa8d12002-12-08 09:53:23 +000065
Jean-Christophe PLAGNIOL-VILLARD03836942008-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 */
wdenk381669a2003-06-16 23:50:08 +000068#endif
69
Marian Balakowiczbe946ba2008-01-08 18:11:43 +010070#ifdef CONFIG_BZIP2
71extern void bz_internal_error(int);
wdenk47d1a6e2002-11-03 00:01:44 +000072#endif
73
Jon Loeliger54324d02007-07-08 17:51:39 -050074#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000075static int image_info (unsigned long addr);
76#endif
wdenk874ac262003-07-24 23:38:38 +000077
Jon Loeliger54324d02007-07-08 17:51:39 -050078#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +000079#include <flash.h>
Stefan Roesefb9a7302010-08-31 10:00:10 +020080#include <mtd/cfi_flash.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020081extern flash_info_t flash_info[]; /* info for FLASH chips */
Wolfgang Denk6262d0212010-06-28 22:00:46 +020082static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk874ac262003-07-24 23:38:38 +000083#endif
84
Marian Balakowicz2df645e2008-01-08 18:17:10 +010085#ifdef CONFIG_SILENT_CONSOLE
86static void fixup_silent_linux (void);
87#endif
wdenk47d1a6e2002-11-03 00:01:44 +000088
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +010089static image_header_t *image_get_kernel (ulong img_addr, int verify);
90#if defined(CONFIG_FIT)
91static int fit_check_kernel (const void *fit, int os_noffset, int verify);
wdenk591dda52002-11-18 00:14:45 +000092#endif
93
Wolfgang Denk6262d0212010-06-28 22:00:46 +020094static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +010095 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Wolfgang Denk6262d0212010-06-28 22:00:46 +020096extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
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 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200106typedef int boot_os_fn (int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100107 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000108
Kumar Gala697675e2008-10-21 17:25:47 -0500109#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100110extern boot_os_fn do_bootm_linux;
Kumar Gala697675e2008-10-21 17:25:47 -0500111#endif
112#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100113static boot_os_fn do_bootm_netbsd;
Kumar Gala697675e2008-10-21 17:25:47 -0500114#endif
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100115#if defined(CONFIG_LYNXKDI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100116static boot_os_fn do_bootm_lynxkdi;
117extern void lynxkdi_boot (image_header_t *);
wdenk47d1a6e2002-11-03 00:01:44 +0000118#endif
Kumar Gala697675e2008-10-21 17:25:47 -0500119#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100120static boot_os_fn do_bootm_rtems;
Kumar Gala697675e2008-10-21 17:25:47 -0500121#endif
Torkel Lundgren29a58662010-09-28 11:05:36 +0200122#if defined(CONFIG_BOOTM_OSE)
123static boot_os_fn do_bootm_ose;
124#endif
Jon Loeliger54324d02007-07-08 17:51:39 -0500125#if defined(CONFIG_CMD_ELF)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100126static boot_os_fn do_bootm_vxworks;
127static boot_os_fn do_bootm_qnxelf;
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200128int 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 Loeligerd704d912007-07-10 11:02:44 -0500130#endif
Peter Tyser56b8dd12008-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 Frysinger6c1616a2009-11-03 11:36:26 -0500135static boot_os_fn *boot_os[] = {
Kumar Gala697675e2008-10-21 17:25:47 -0500136#ifdef CONFIG_BOOTM_LINUX
Kumar Galabf3954f2008-10-21 17:25:44 -0500137 [IH_OS_LINUX] = do_bootm_linux,
Kumar Gala697675e2008-10-21 17:25:47 -0500138#endif
139#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabf3954f2008-10-21 17:25:44 -0500140 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Gala697675e2008-10-21 17:25:47 -0500141#endif
Kumar Galabf3954f2008-10-21 17:25:44 -0500142#ifdef CONFIG_LYNXKDI
143 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
144#endif
Kumar Gala697675e2008-10-21 17:25:47 -0500145#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabf3954f2008-10-21 17:25:44 -0500146 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Gala697675e2008-10-21 17:25:47 -0500147#endif
Torkel Lundgren29a58662010-09-28 11:05:36 +0200148#if defined(CONFIG_BOOTM_OSE)
149 [IH_OS_OSE] = do_bootm_ose,
150#endif
Kumar Galabf3954f2008-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
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200160ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100161static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese5d5ce292006-03-13 11:16:36 +0100162
Kumar Gala5e726692009-08-27 08:23:55 -0500163/* Allow for arch specific config before we boot */
164void __arch_preboot_os(void)
165{
166 /* please define platform specific arch_preboot_os() */
167}
168void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
169
Kumar Galafffb1432008-08-15 08:24:37 -0500170#if defined(__ARM__)
171 #define IH_INITRD_ARCH IH_ARCH_ARM
172#elif defined(__avr32__)
173 #define IH_INITRD_ARCH IH_ARCH_AVR32
174#elif defined(__bfin__)
175 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
176#elif defined(__I386__)
177 #define IH_INITRD_ARCH IH_ARCH_I386
178#elif defined(__M68K__)
179 #define IH_INITRD_ARCH IH_ARCH_M68K
180#elif defined(__microblaze__)
181 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
182#elif defined(__mips__)
183 #define IH_INITRD_ARCH IH_ARCH_MIPS
Kumar Galafffb1432008-08-15 08:24:37 -0500184#elif defined(__nios2__)
185 #define IH_INITRD_ARCH IH_ARCH_NIOS2
186#elif defined(__PPC__)
187 #define IH_INITRD_ARCH IH_ARCH_PPC
188#elif defined(__sh__)
189 #define IH_INITRD_ARCH IH_ARCH_SH
190#elif defined(__sparc__)
191 #define IH_INITRD_ARCH IH_ARCH_SPARC
192#else
193# error Unknown CPU type
194#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000195
Mike Frysingera0dadf82009-11-03 11:35:59 -0500196static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000197{
Mike Frysingera0dadf82009-11-03 11:35:59 -0500198#ifdef CONFIG_LMB
Becky Bruced26d67c2008-06-09 20:37:18 -0500199 ulong mem_start;
200 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Galada6d11e2008-08-15 08:24:40 -0500202 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000203
Kumar Galac5bacfd2008-02-27 21:51:50 -0600204 mem_start = getenv_bootm_low();
205 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000206
Kumar Galada6d11e2008-08-15 08:24:40 -0500207 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000208
Kumar Galab02d7222008-10-16 21:52:08 -0500209 arch_lmb_reserve(&images.lmb);
Kumar Galada6d11e2008-08-15 08:24:40 -0500210 board_lmb_reserve(&images.lmb);
Mike Frysingera0dadf82009-11-03 11:35:59 -0500211#else
212# define lmb_reserve(lmb, base, size)
213#endif
214}
215
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200216static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera0dadf82009-11-03 11:35:59 -0500217{
218 void *os_hdr;
219 int ret;
220
221 memset ((void *)&images, 0, sizeof (images));
222 images.verify = getenv_yesno ("verify");
223
224 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000225
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100226 /* get kernel image header, start address and length */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100227 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500228 &images, &images.os.image_start, &images.os.image_len);
229 if (images.os.image_len == 0) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100230 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000231 return 1;
232 }
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200233
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100234 /* get image parameters */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100235 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100236 case IMAGE_FORMAT_LEGACY:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500237 images.os.type = image_get_type (os_hdr);
238 images.os.comp = image_get_comp (os_hdr);
239 images.os.os = image_get_os (os_hdr);
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200240
Kumar Galabd70bbe2008-08-15 08:24:41 -0500241 images.os.end = image_get_image_end (os_hdr);
242 images.os.load = image_get_load (os_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100243 break;
244#if defined(CONFIG_FIT)
245 case IMAGE_FORMAT_FIT:
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100246 if (fit_image_get_type (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500247 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100248 puts ("Can't get image type!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100249 show_boot_progress (-109);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100250 return 1;
251 }
wdenk47d1a6e2002-11-03 00:01:44 +0000252
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100253 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500254 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100255 puts ("Can't get image compression!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100256 show_boot_progress (-110);
wdenk47d1a6e2002-11-03 00:01:44 +0000257 return 1;
258 }
wdenk47d1a6e2002-11-03 00:01:44 +0000259
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100260 if (fit_image_get_os (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500261 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100262 puts ("Can't get image OS!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100263 show_boot_progress (-111);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100264 return 1;
265 }
wdenk47d1a6e2002-11-03 00:01:44 +0000266
Kumar Galabd70bbe2008-08-15 08:24:41 -0500267 images.os.end = fit_get_end (images.fit_hdr_os);
wdenk47d1a6e2002-11-03 00:01:44 +0000268
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100269 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500270 &images.os.load)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100271 puts ("Can't get image load address!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100272 show_boot_progress (-112);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100273 return 1;
wdenk655a0f92003-10-30 21:49:38 +0000274 }
275 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100276#endif
277 default:
278 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000279 return 1;
280 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100281
Kumar Gala93467bc2008-08-15 08:24:36 -0500282 /* find kernel entry point */
283 if (images.legacy_hdr_valid) {
284 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
285#if defined(CONFIG_FIT)
286 } else if (images.fit_uname_os) {
287 ret = fit_image_get_entry (images.fit_hdr_os,
288 images.fit_noffset_os, &images.ep);
289 if (ret) {
290 puts ("Can't get entry point property!\n");
291 return 1;
292 }
293#endif
294 } else {
295 puts ("Could not find kernel entry point!\n");
296 return 1;
297 }
298
Heiko Schocher64ccc832010-03-29 13:15:48 +0200299 if (((images.os.type == IH_TYPE_KERNEL) ||
300 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel4e46ab32009-12-22 12:43:01 +0100301 (images.os.os == IH_OS_LINUX)) {
Kumar Galafffb1432008-08-15 08:24:37 -0500302 /* find ramdisk */
303 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
304 &images.rd_start, &images.rd_end);
305 if (ret) {
Kumar Galab8ca7342008-08-29 19:08:29 -0500306 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galafffb1432008-08-15 08:24:37 -0500307 return 1;
308 }
Kumar Galaa5130ad2008-08-15 08:24:38 -0500309
310#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200311#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Galaa5130ad2008-08-15 08:24:38 -0500312 /* find flattened device tree */
313 ret = boot_get_fdt (flag, argc, argv, &images,
314 &images.ft_addr, &images.ft_len);
315 if (ret) {
316 puts ("Could not find a valid device tree\n");
317 return 1;
318 }
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500319
320 set_working_fdt_addr(images.ft_addr);
Kumar Galaa5130ad2008-08-15 08:24:38 -0500321#endif
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200322#endif
Kumar Galafffb1432008-08-15 08:24:37 -0500323 }
324
Kumar Galabd70bbe2008-08-15 08:24:41 -0500325 images.os.start = (ulong)os_hdr;
Kumar Gala18178bc2008-10-21 17:25:45 -0500326 images.state = BOOTM_STATE_START;
wdenk47d1a6e2002-11-03 00:01:44 +0000327
Kumar Galabd70bbe2008-08-15 08:24:41 -0500328 return 0;
329}
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200330
Kumar Galabd70bbe2008-08-15 08:24:41 -0500331#define BOOTM_ERR_RESET -1
332#define BOOTM_ERR_OVERLAP -2
333#define BOOTM_ERR_UNIMPLEMENTED -3
334static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
335{
336 uint8_t comp = os.comp;
337 ulong load = os.load;
338 ulong blob_start = os.start;
339 ulong blob_end = os.end;
340 ulong image_start = os.image_start;
341 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200342 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisserc8bb9632010-08-05 13:17:30 +0200343#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
344 int ret;
345#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200346
Kumar Galabd70bbe2008-08-15 08:24:41 -0500347 const char *type_name = genimg_get_type_name (os.type);
wdenk452cfd62002-11-19 11:04:11 +0000348
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100349 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000350 case IH_COMP_NONE:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500351 if (load == blob_start) {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100352 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000353 } else {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100354 printf (" Loading %s ... ", type_name);
Larry Johnsone4551002010-04-20 08:09:43 -0400355 memmove_wd ((void *)load, (void *)image_start,
356 image_len, CHUNKSZ);
wdenk47d1a6e2002-11-03 00:01:44 +0000357 }
Kumar Galabd70bbe2008-08-15 08:24:41 -0500358 *load_end = load + image_len;
Guennadi Liakhovetski3110cf82008-07-31 12:35:04 +0200359 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000360 break;
Mike Frysingerab427ae2010-01-21 19:30:36 -0500361#ifdef CONFIG_GZIP
wdenk47d1a6e2002-11-03 00:01:44 +0000362 case IH_COMP_GZIP:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100363 printf (" Uncompressing %s ... ", type_name);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500364 if (gunzip ((void *)load, unc_len,
365 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs1f2b05a2009-01-02 15:11:41 +0100366 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100367 "- must RESET board to recover\n");
Kumar Galabd70bbe2008-08-15 08:24:41 -0500368 if (boot_progress)
369 show_boot_progress (-6);
370 return BOOTM_ERR_RESET;
wdenk47d1a6e2002-11-03 00:01:44 +0000371 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100372
Kumar Galabd70bbe2008-08-15 08:24:41 -0500373 *load_end = load + image_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000374 break;
Mike Frysingerab427ae2010-01-21 19:30:36 -0500375#endif /* CONFIG_GZIP */
wdenk710e3502003-08-29 20:57:53 +0000376#ifdef CONFIG_BZIP2
377 case IH_COMP_BZIP2:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100378 printf (" Uncompressing %s ... ", type_name);
wdenk2cefd152004-02-08 22:55:38 +0000379 /*
380 * If we've got less than 4 MB of malloc() space,
381 * use slower decompression algorithm which requires
382 * at most 2300 KB of memory.
383 */
Kumar Galabd70bbe2008-08-15 08:24:41 -0500384 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
385 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200386 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
wdenk710e3502003-08-29 20:57:53 +0000387 if (i != BZ_OK) {
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100388 printf ("BUNZIP2: uncompress or overwrite error %d "
389 "- must RESET board to recover\n", i);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500390 if (boot_progress)
391 show_boot_progress (-6);
392 return BOOTM_ERR_RESET;
wdenk710e3502003-08-29 20:57:53 +0000393 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100394
Kumar Galabd70bbe2008-08-15 08:24:41 -0500395 *load_end = load + unc_len;
wdenk710e3502003-08-29 20:57:53 +0000396 break;
397#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200398#ifdef CONFIG_LZMA
Mike Frysingerb41ad242010-07-25 15:54:17 -0400399 case IH_COMP_LZMA: {
400 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200401 printf (" Uncompressing %s ... ", type_name);
402
Matthias Weisserc8bb9632010-08-05 13:17:30 +0200403 ret = lzmaBuffToBuffDecompress(
Mike Frysingerb41ad242010-07-25 15:54:17 -0400404 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellini22834672008-09-13 10:04:32 +0200405 (unsigned char *)image_start, image_len);
Mike Frysingerb41ad242010-07-25 15:54:17 -0400406 unc_len = lzma_len;
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +0200407 if (ret != SZ_OK) {
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200408 printf ("LZMA: uncompress or overwrite error %d "
409 "- must RESET board to recover\n", ret);
410 show_boot_progress (-6);
411 return BOOTM_ERR_RESET;
412 }
413 *load_end = load + unc_len;
414 break;
Mike Frysingerb41ad242010-07-25 15:54:17 -0400415 }
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200416#endif /* CONFIG_LZMA */
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100417#ifdef CONFIG_LZO
418 case IH_COMP_LZO:
419 printf (" Uncompressing %s ... ", type_name);
420
Matthias Weisserc8bb9632010-08-05 13:17:30 +0200421 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100422 image_len, (unsigned char *)load,
423 &unc_len);
424 if (ret != LZO_E_OK) {
425 printf ("LZO: uncompress or overwrite error %d "
426 "- must RESET board to recover\n", ret);
427 if (boot_progress)
428 show_boot_progress (-6);
429 return BOOTM_ERR_RESET;
430 }
431
432 *load_end = load + unc_len;
433 break;
434#endif /* CONFIG_LZO */
wdenk47d1a6e2002-11-03 00:01:44 +0000435 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100436 printf ("Unimplemented compression type %d\n", comp);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500437 return BOOTM_ERR_UNIMPLEMENTED;
wdenk47d1a6e2002-11-03 00:01:44 +0000438 }
wdenk42c05472004-03-23 22:14:11 +0000439 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARDfcd96442008-09-09 22:18:24 +0200440 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500441 if (boot_progress)
442 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000443
Kumar Galabd70bbe2008-08-15 08:24:41 -0500444 if ((load < blob_end) && (*load_end > blob_start)) {
445 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
Jean-Christophe PLAGNIOL-VILLARDfcd96442008-09-09 22:18:24 +0200446 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000447
Kumar Galabd70bbe2008-08-15 08:24:41 -0500448 return BOOTM_ERR_OVERLAP;
449 }
450
451 return 0;
452}
453
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200454static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200455{
456 char *s;
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200457 int (*appl)(int, char * const []);
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200458
459 /* Don't start if "autostart" is set to "no" */
460 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
461 char buf[32];
462 sprintf(buf, "%lX", images.os.image_len);
463 setenv("filesize", buf);
464 return 0;
465 }
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200466 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200467 (*appl)(argc-1, &argv[1]);
468
469 return 0;
470}
471
Kumar Gala18178bc2008-10-21 17:25:45 -0500472/* we overload the cmd field with our state machine info instead of a
473 * function pointer */
Frans Meulenbroeks6b419fb2010-02-25 10:12:13 +0100474static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala18178bc2008-10-21 17:25:45 -0500475 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
476 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
477#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
478 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
479#endif
480#ifdef CONFIG_OF_LIBFDT
481 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
482#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500483 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser694a3932009-11-18 19:08:59 -0600484 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -0500485 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
486 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
487};
488
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200489int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala18178bc2008-10-21 17:25:45 -0500490{
491 int ret = 0;
492 int state;
493 cmd_tbl_t *c;
494 boot_os_fn *boot_fn;
495
496 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
497
498 if (c) {
499 state = (int)c->cmd;
500
501 /* treat start special since it resets the state machine */
502 if (state == BOOTM_STATE_START) {
503 argc--;
504 argv++;
505 return bootm_start(cmdtp, flag, argc, argv);
506 }
Wolfgang Denk3b683112010-07-17 01:06:04 +0200507 } else {
508 /* Unrecognized command */
509 return cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500510 }
511
512 if (images.state >= state) {
513 printf ("Trying to execute a command out of order\n");
Wolfgang Denk3b683112010-07-17 01:06:04 +0200514 return cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500515 }
516
517 images.state |= state;
518 boot_fn = boot_os[images.os.os];
519
520 switch (state) {
521 ulong load_end;
522 case BOOTM_STATE_START:
523 /* should never occur */
524 break;
525 case BOOTM_STATE_LOADOS:
526 ret = bootm_load_os(images.os, &load_end, 0);
527 if (ret)
528 return ret;
529
530 lmb_reserve(&images.lmb, images.os.load,
531 (load_end - images.os.load));
532 break;
533#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
534 case BOOTM_STATE_RAMDISK:
535 {
536 ulong rd_len = images.rd_end - images.rd_start;
537 char str[17];
538
539 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
540 rd_len, &images.initrd_start, &images.initrd_end);
541 if (ret)
542 return ret;
543
544 sprintf(str, "%lx", images.initrd_start);
545 setenv("initrd_start", str);
546 sprintf(str, "%lx", images.initrd_end);
547 setenv("initrd_end", str);
548 }
549 break;
550#endif
Remy Bohmer00d86562009-10-29 14:24:22 +0100551#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala18178bc2008-10-21 17:25:45 -0500552 case BOOTM_STATE_FDT:
553 {
554 ulong bootmap_base = getenv_bootm_low();
555 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
556 &images.ft_addr, &images.ft_len);
557 break;
558 }
559#endif
560 case BOOTM_STATE_OS_CMDLINE:
561 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
562 if (ret)
563 printf ("cmdline subcommand not supported\n");
564 break;
565 case BOOTM_STATE_OS_BD_T:
566 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
567 if (ret)
568 printf ("bdt subcommand not supported\n");
569 break;
570 case BOOTM_STATE_OS_PREP:
571 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
572 if (ret)
573 printf ("prep subcommand not supported\n");
574 break;
575 case BOOTM_STATE_OS_GO:
576 disable_interrupts();
Kumar Gala5e726692009-08-27 08:23:55 -0500577 arch_preboot_os();
Kumar Gala18178bc2008-10-21 17:25:45 -0500578 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
579 break;
580 }
581
582 return ret;
583}
584
Kumar Galabd70bbe2008-08-15 08:24:41 -0500585/*******************************************************************/
586/* bootm - boot application image from image in memory */
587/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -0500588
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200589int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Galabd70bbe2008-08-15 08:24:41 -0500590{
Kumar Galabd70bbe2008-08-15 08:24:41 -0500591 ulong iflag;
592 ulong load_end = 0;
593 int ret;
Kumar Galabf3954f2008-10-21 17:25:44 -0500594 boot_os_fn *boot_fn;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500595#ifndef CONFIG_RELOC_FIXUP_WORKS
596 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -0500597
598 /* relocate boot function table */
599 if (!relocated) {
600 int i;
601 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundel77094472009-07-13 16:01:18 +0200602 if (boot_os[i] != NULL)
603 boot_os[i] += gd->reloc_off;
Kumar Galabf3954f2008-10-21 17:25:44 -0500604 relocated = 1;
605 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500606#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500607
Kumar Gala18178bc2008-10-21 17:25:45 -0500608 /* determine if we have a sub command */
609 if (argc > 1) {
610 char *endp;
611
612 simple_strtoul(argv[1], &endp, 16);
613 /* endp pointing to NULL means that argv[1] was just a
614 * valid number, pass it along to the normal bootm processing
615 *
616 * If endp is ':' or '#' assume a FIT identifier so pass
617 * along for normal processing.
618 *
619 * Right now we assume the first arg should never be '-'
620 */
621 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
622 return do_bootm_subcommand(cmdtp, flag, argc, argv);
623 }
624
Anatolij Gustschin128de002008-08-29 21:04:45 +0200625 if (bootm_start(cmdtp, flag, argc, argv))
626 return 1;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500627
628 /*
629 * We have reached the point of no return: we are going to
630 * overwrite all exception vector code, so we cannot easily
631 * recover from any failures any more...
632 */
633 iflag = disable_interrupts();
634
635#if defined(CONFIG_CMD_USB)
636 /*
637 * turn off USB to prevent the host controller from writing to the
638 * SDRAM while Linux is booting. This could happen (at least for OHCI
639 * controller), because the HCCA (Host Controller Communication Area)
640 * lies within the SDRAM and the host controller writes continously to
641 * this area (as busmaster!). The HccaFrameNumber is for example
642 * updated every 1 ms within the HCCA structure in SDRAM! For more
643 * details see the OpenHCI specification.
644 */
645 usb_stop();
646#endif
647
Kumar Galabd70bbe2008-08-15 08:24:41 -0500648 ret = bootm_load_os(images.os, &load_end, 1);
649
650 if (ret < 0) {
651 if (ret == BOOTM_ERR_RESET)
Marian Balakowiczab00e022008-04-11 11:07:49 +0200652 do_reset (cmdtp, flag, argc, argv);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500653 if (ret == BOOTM_ERR_OVERLAP) {
654 if (images.legacy_hdr_valid) {
655 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
656 puts ("WARNING: legacy format multi component "
657 "image overwritten\n");
658 } else {
659 puts ("ERROR: new format image overwritten - "
660 "must RESET the board to recover\n");
661 show_boot_progress (-113);
662 do_reset (cmdtp, flag, argc, argv);
663 }
664 }
665 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
666 if (iflag)
667 enable_interrupts();
668 show_boot_progress (-7);
669 return 1;
Marian Balakowiczab00e022008-04-11 11:07:49 +0200670 }
wdenk47d1a6e2002-11-03 00:01:44 +0000671 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100672
Kumar Galabd70bbe2008-08-15 08:24:41 -0500673 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
wdenk47d1a6e2002-11-03 00:01:44 +0000674
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200675 if (images.os.type == IH_TYPE_STANDALONE) {
676 if (iflag)
677 enable_interrupts();
678 /* This may return when 'autostart' is 'no' */
679 bootm_start_standalone(iflag, argc, argv);
680 return 0;
681 }
682
Kumar Galabd70bbe2008-08-15 08:24:41 -0500683 show_boot_progress (8);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600684
wdenk808532a2003-10-10 10:05:42 +0000685#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabf3954f2008-10-21 17:25:44 -0500686 if (images.os.os == IH_OS_LINUX)
687 fixup_silent_linux();
wdenk808532a2003-10-10 10:05:42 +0000688#endif
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100689
Kumar Galabf3954f2008-10-21 17:25:44 -0500690 boot_fn = boot_os[images.os.os];
Detlev Zundel77094472009-07-13 16:01:18 +0200691
692 if (boot_fn == NULL) {
693 if (iflag)
694 enable_interrupts();
695 printf ("ERROR: booting os '%s' (%d) is not supported\n",
696 genimg_get_os_name(images.os.os), images.os.os);
697 show_boot_progress (-8);
698 return 1;
699 }
700
Kumar Gala5e726692009-08-27 08:23:55 -0500701 arch_preboot_os();
702
Kumar Galabf3954f2008-10-21 17:25:44 -0500703 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000704
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200705 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000706#ifdef DEBUG
wdenk42c05472004-03-23 22:14:11 +0000707 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000708#endif
Kumar Gala48626aa2008-08-15 08:24:45 -0500709 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicz9c220262008-03-12 10:14:57 +0100710
wdenk47d1a6e2002-11-03 00:01:44 +0000711 return 1;
712}
713
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100714/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100715 * image_get_kernel - verify legacy format kernel image
716 * @img_addr: in RAM address of the legacy format image to be verified
717 * @verify: data CRC verification flag
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100718 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100719 * image_get_kernel() verifies legacy image integrity and returns pointer to
720 * legacy image header if image verification was completed successfully.
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100721 *
722 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100723 * pointer to a legacy image header if valid image was found
724 * otherwise return NULL
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100725 */
Marian Balakowicz59504f62008-02-27 11:02:07 +0100726static image_header_t *image_get_kernel (ulong img_addr, int verify)
wdenk808532a2003-10-10 10:05:42 +0000727{
Marian Balakowicz59504f62008-02-27 11:02:07 +0100728 image_header_t *hdr = (image_header_t *)img_addr;
wdenk808532a2003-10-10 10:05:42 +0000729
Marian Balakowicz59504f62008-02-27 11:02:07 +0100730 if (!image_check_magic(hdr)) {
731 puts ("Bad Magic Number\n");
732 show_boot_progress (-1);
733 return NULL;
734 }
735 show_boot_progress (2);
wdenk808532a2003-10-10 10:05:42 +0000736
Marian Balakowicz59504f62008-02-27 11:02:07 +0100737 if (!image_check_hcrc (hdr)) {
738 puts ("Bad Header Checksum\n");
739 show_boot_progress (-2);
740 return NULL;
741 }
742
743 show_boot_progress (3);
744 image_print_contents (hdr);
745
746 if (verify) {
747 puts (" Verifying Checksum ... ");
748 if (!image_check_dcrc (hdr)) {
749 printf ("Bad Data CRC\n");
750 show_boot_progress (-3);
751 return NULL;
wdenk808532a2003-10-10 10:05:42 +0000752 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100753 puts ("OK\n");
wdenk808532a2003-10-10 10:05:42 +0000754 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100755 show_boot_progress (4);
wdenk808532a2003-10-10 10:05:42 +0000756
Marian Balakowicz59504f62008-02-27 11:02:07 +0100757 if (!image_check_target_arch (hdr)) {
758 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
759 show_boot_progress (-4);
760 return NULL;
761 }
762 return hdr;
wdenk808532a2003-10-10 10:05:42 +0000763}
wdenk808532a2003-10-10 10:05:42 +0000764
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100765/**
766 * fit_check_kernel - verify FIT format kernel subimage
767 * @fit_hdr: pointer to the FIT image header
768 * os_noffset: kernel subimage node offset within FIT image
769 * @verify: data CRC verification flag
770 *
771 * fit_check_kernel() verifies integrity of the kernel subimage and from
772 * specified FIT image.
773 *
774 * returns:
775 * 1, on success
776 * 0, on failure
777 */
778#if defined (CONFIG_FIT)
779static int fit_check_kernel (const void *fit, int os_noffset, int verify)
wdenk47d1a6e2002-11-03 00:01:44 +0000780{
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100781 fit_image_print (fit, os_noffset, " ");
wdenk47d1a6e2002-11-03 00:01:44 +0000782
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100783 if (verify) {
784 puts (" Verifying Hash Integrity ... ");
785 if (!fit_image_check_hashes (fit, os_noffset)) {
786 puts ("Bad Data Hash\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100787 show_boot_progress (-104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100788 return 0;
789 }
790 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000791 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100792 show_boot_progress (105);
wdenk47d1a6e2002-11-03 00:01:44 +0000793
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100794 if (!fit_image_check_target_arch (fit, os_noffset)) {
795 puts ("Unsupported Architecture\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100796 show_boot_progress (-105);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100797 return 0;
798 }
wdenk47d1a6e2002-11-03 00:01:44 +0000799
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100800 show_boot_progress (106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100801 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
802 puts ("Not a kernel image\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100803 show_boot_progress (-106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100804 return 0;
805 }
wdenk47d1a6e2002-11-03 00:01:44 +0000806
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100807 show_boot_progress (107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100808 return 1;
809}
810#endif /* CONFIG_FIT */
wdenk56f94be2002-11-05 16:35:14 +0000811
Marian Balakowicz59504f62008-02-27 11:02:07 +0100812/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100813 * boot_get_kernel - find kernel image
Marian Balakowicz59504f62008-02-27 11:02:07 +0100814 * @os_data: pointer to a ulong variable, will hold os data start address
815 * @os_len: pointer to a ulong variable, will hold os data length
816 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100817 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz59504f62008-02-27 11:02:07 +0100818 * and locates kernel data.
819 *
820 * returns:
821 * pointer to image header if valid image was found, plus kernel start
822 * address and length, otherwise NULL
823 */
Wolfgang Denk6262d0212010-06-28 22:00:46 +0200824static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100825 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100826{
827 image_header_t *hdr;
828 ulong img_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100829#if defined(CONFIG_FIT)
830 void *fit_hdr;
831 const char *fit_uname_config = NULL;
832 const char *fit_uname_kernel = NULL;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100833 const void *data;
834 size_t len;
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100835 int cfg_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100836 int os_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100837#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000838
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100839 /* find out kernel image address */
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100840 if (argc < 2) {
841 img_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100842 debug ("* kernel: default image load address = 0x%08lx\n",
843 load_addr);
844#if defined(CONFIG_FIT)
845 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
846 &fit_uname_config)) {
847 debug ("* kernel: config '%s' from image at 0x%08lx\n",
848 fit_uname_config, img_addr);
849 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
850 &fit_uname_kernel)) {
851 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
852 fit_uname_kernel, img_addr);
853#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100854 } else {
855 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100856 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100857 }
wdenk56f94be2002-11-05 16:35:14 +0000858
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100859 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000860
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100861 /* copy from dataflash if needed */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100862 img_addr = genimg_get_image (img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000863
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100864 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100865 *os_data = *os_len = 0;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100866 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100867 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100868 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
869 img_addr);
Marian Balakowicz59504f62008-02-27 11:02:07 +0100870 hdr = image_get_kernel (img_addr, images->verify);
871 if (!hdr)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100872 return NULL;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100873 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000874
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100875 /* get os_data and os_len */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100876 switch (image_get_type (hdr)) {
877 case IH_TYPE_KERNEL:
878 *os_data = image_get_data (hdr);
879 *os_len = image_get_data_size (hdr);
880 break;
881 case IH_TYPE_MULTI:
882 image_multi_getimg (hdr, 0, os_data, os_len);
883 break;
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200884 case IH_TYPE_STANDALONE:
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200885 *os_data = image_get_data (hdr);
886 *os_len = image_get_data_size (hdr);
887 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100888 default:
889 printf ("Wrong Image Type for %s command\n", cmdtp->name);
890 show_boot_progress (-5);
891 return NULL;
892 }
Marian Balakowiczab00e022008-04-11 11:07:49 +0200893
894 /*
895 * copy image header to allow for image overwrites during kernel
896 * decompression.
897 */
898 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
899
900 /* save pointer to image header */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100901 images->legacy_hdr_os = hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000902
Marian Balakowiczab00e022008-04-11 11:07:49 +0200903 images->legacy_hdr_valid = 1;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100904 show_boot_progress (6);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100905 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100906#if defined(CONFIG_FIT)
907 case IMAGE_FORMAT_FIT:
908 fit_hdr = (void *)img_addr;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100909 printf ("## Booting kernel from FIT Image at %08lx ...\n",
910 img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000911
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100912 if (!fit_check_format (fit_hdr)) {
913 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100914 show_boot_progress (-100);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100915 return NULL;
916 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100917 show_boot_progress (100);
wdenk47d1a6e2002-11-03 00:01:44 +0000918
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100919 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
923 * fit_conf_get_node() will try to find default config node
924 */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100925 show_boot_progress (101);
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100926 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
927 if (cfg_noffset < 0) {
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100928 show_boot_progress (-101);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100929 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100930 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100931 /* save configuration uname provided in the first
932 * bootm argument
933 */
934 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
935 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
936 show_boot_progress (103);
wdenk47d1a6e2002-11-03 00:01:44 +0000937
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100938 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100939 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
940 } else {
941 /* get kernel component image node offset */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100942 show_boot_progress (102);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100943 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
944 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100945 if (os_noffset < 0) {
946 show_boot_progress (-103);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100947 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100948 }
wdenk47d1a6e2002-11-03 00:01:44 +0000949
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100950 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
wdenk47d1a6e2002-11-03 00:01:44 +0000951
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100952 show_boot_progress (104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100953 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
954 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500955
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100956 /* get kernel image data address and length */
957 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
958 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100959 show_boot_progress (-107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100960 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500961 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100962 show_boot_progress (108);
wdenk47d1a6e2002-11-03 00:01:44 +0000963
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100964 *os_len = len;
965 *os_data = (ulong)data;
966 images->fit_hdr_os = fit_hdr;
967 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100968 images->fit_noffset_os = os_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100969 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100970#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100971 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100972 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100973 show_boot_progress (-108);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100974 return NULL;
975 }
wdenk47d1a6e2002-11-03 00:01:44 +0000976
Wolfgang Denk8d541882008-07-10 13:16:09 +0200977 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100978 *os_data, *os_len, *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +0000979
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100980 return (void *)img_addr;
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100981}
wdenk47d1a6e2002-11-03 00:01:44 +0000982
wdenk47d1a6e2002-11-03 00:01:44 +0000983U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200984 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600985 "boot application image from memory",
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100986 "[addr [arg ...]]\n - boot application image stored in memory\n"
987 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
988 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100989#if defined(CONFIG_OF_LIBFDT)
wdenk47d1a6e2002-11-03 00:01:44 +0000990 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
991 "\ta third argument is required which is the address of the\n"
992 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
993 "\tuse a '-' for the second argument. If you do not pass a third\n"
994 "\ta bd_info struct will be passed instead\n"
995#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100996#if defined(CONFIG_FIT)
997 "\t\nFor the new multi component uImage format (FIT) addresses\n"
998 "\tmust be extened to include component or configuration unit name:\n"
999 "\taddr:<subimg_uname> - direct component image specification\n"
1000 "\taddr#<conf_uname> - configuration specification\n"
1001 "\tUse iminfo command to get the list of existing component\n"
1002 "\timages and configurations.\n"
1003#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001004 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1005 "must be\n"
1006 "issued in the order below (it's ok to not issue all sub-commands):\n"
1007 "\tstart [addr [arg ...]]\n"
1008 "\tloados - load OS image\n"
1009#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1010 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1011#endif
1012#if defined(CONFIG_OF_LIBFDT)
1013 "\tfdt - relocate flat device tree\n"
1014#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001015 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser694a3932009-11-18 19:08:59 -06001016 "\tbdt - OS specific bd_t processing\n"
Kumar Gala18178bc2008-10-21 17:25:45 -05001017 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001018 "\tgo - start OS"
wdenk47d1a6e2002-11-03 00:01:44 +00001019);
wdenk47d1a6e2002-11-03 00:01:44 +00001020
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001021/*******************************************************************/
1022/* bootd - boot default image */
1023/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001024#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001025int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001026{
1027 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001028
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001029#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001030 if (run_command (getenv ("bootcmd"), flag) < 0)
1031 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001032#else
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001033 if (parse_string_outer (getenv ("bootcmd"),
1034 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1035 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001036#endif
1037 return rcode;
1038}
wdenk47d1a6e2002-11-03 00:01:44 +00001039
wdenkf287a242003-07-01 21:06:45 +00001040U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001041 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001042 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001043 ""
wdenk3086a972003-06-28 23:11:04 +00001044);
wdenk47d1a6e2002-11-03 00:01:44 +00001045
wdenk3086a972003-06-28 23:11:04 +00001046/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +00001047U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001048 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001049 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001050 ""
wdenk57b2d802003-06-27 21:31:46 +00001051);
wdenk47d1a6e2002-11-03 00:01:44 +00001052
wdenk47d1a6e2002-11-03 00:01:44 +00001053#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001054
wdenk47d1a6e2002-11-03 00:01:44 +00001055
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001056/*******************************************************************/
1057/* iminfo - print header info for a requested image */
1058/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001059#if defined(CONFIG_CMD_IMI)
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001060int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001061{
1062 int arg;
1063 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001064 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001065
wdenk47d1a6e2002-11-03 00:01:44 +00001066 if (argc < 2) {
1067 return image_info (load_addr);
1068 }
wdenk47d1a6e2002-11-03 00:01:44 +00001069
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001070 for (arg = 1; arg < argc; ++arg) {
1071 addr = simple_strtoul (argv[arg], NULL, 16);
1072 if (image_info (addr) != 0)
1073 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001074 }
1075 return rcode;
1076}
wdenk47d1a6e2002-11-03 00:01:44 +00001077
wdenk47d1a6e2002-11-03 00:01:44 +00001078static int image_info (ulong addr)
1079{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001080 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001081
wdenk47d1a6e2002-11-03 00:01:44 +00001082 printf ("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001083
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001084 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001085 case IMAGE_FORMAT_LEGACY:
1086 puts (" Legacy image found\n");
1087 if (!image_check_magic (hdr)) {
1088 puts (" Bad Magic Number\n");
1089 return 1;
1090 }
wdenk47d1a6e2002-11-03 00:01:44 +00001091
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001092 if (!image_check_hcrc (hdr)) {
1093 puts (" Bad Header Checksum\n");
1094 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001095 }
1096
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001097 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001098
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001099 puts (" Verifying Checksum ... ");
1100 if (!image_check_dcrc (hdr)) {
1101 puts (" Bad Data CRC\n");
1102 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001103 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001104 puts ("OK\n");
1105 return 0;
1106#if defined(CONFIG_FIT)
1107 case IMAGE_FORMAT_FIT:
1108 puts (" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001109
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001110 if (!fit_check_format (hdr)) {
1111 puts ("Bad FIT image format!\n");
1112 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001113 }
1114
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001115 fit_print_contents (hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +02001116
1117 if (!fit_all_image_check_hashes (hdr)) {
1118 puts ("Bad hash in FIT image!\n");
1119 return 1;
1120 }
1121
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001122 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001123#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001124 default:
1125 puts ("Unknown image format!\n");
1126 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001127 }
wdenk47d1a6e2002-11-03 00:01:44 +00001128
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001129 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001130}
wdenk47d1a6e2002-11-03 00:01:44 +00001131
wdenkf287a242003-07-01 21:06:45 +00001132U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001133 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001134 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +00001135 "addr [addr ...]\n"
1136 " - print header information for application image starting at\n"
1137 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001138 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +00001139);
wdenk47d1a6e2002-11-03 00:01:44 +00001140#endif
1141
1142
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001143/*******************************************************************/
1144/* imls - list all images found in flash */
1145/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001146#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001147int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk874ac262003-07-24 23:38:38 +00001148{
1149 flash_info_t *info;
1150 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001151 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +00001152
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001153 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001154 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +00001155
wdenk874ac262003-07-24 23:38:38 +00001156 if (info->flash_id == FLASH_UNKNOWN)
1157 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001158 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +00001159
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001160 hdr = (void *)info->start[j];
1161 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01001162 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001163
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001164 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001165 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001166 if (!image_check_hcrc (hdr))
1167 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001168
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001169 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1170 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001171
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001172 puts (" Verifying Checksum ... ");
1173 if (!image_check_dcrc (hdr)) {
1174 puts ("Bad Data CRC\n");
1175 } else {
1176 puts ("OK\n");
1177 }
1178 break;
1179#if defined(CONFIG_FIT)
1180 case IMAGE_FORMAT_FIT:
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001181 if (!fit_check_format (hdr))
1182 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001183
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001184 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001185 fit_print_contents (hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001186 break;
1187#endif
1188 default:
1189 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001190 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001191
wdenk0a658552003-08-05 17:43:17 +00001192next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001193 }
wdenk0a658552003-08-05 17:43:17 +00001194next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001195 }
1196
wdenk874ac262003-07-24 23:38:38 +00001197 return (0);
1198}
wdenk47d1a6e2002-11-03 00:01:44 +00001199
wdenk874ac262003-07-24 23:38:38 +00001200U_BOOT_CMD(
1201 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001202 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +00001203 "\n"
1204 " - Prints information about all images found at sector\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001205 " boundaries in flash."
wdenk874ac262003-07-24 23:38:38 +00001206);
wdenk47d1a6e2002-11-03 00:01:44 +00001207#endif
1208
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001209/*******************************************************************/
Marian Balakowiczc40032c2008-01-31 13:59:09 +01001210/* helper routines */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001211/*******************************************************************/
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001212#ifdef CONFIG_SILENT_CONSOLE
1213static void fixup_silent_linux ()
1214{
1215 char buf[256], *start, *end;
1216 char *cmdline = getenv ("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001217
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001218 /* Only fix cmdline when requested */
1219 if (!(gd->flags & GD_FLG_SILENT))
1220 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001221
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001222 debug ("before silent fix-up: %s\n", cmdline);
1223 if (cmdline) {
1224 if ((start = strstr (cmdline, "console=")) != NULL) {
1225 end = strchr (start, ' ');
1226 strncpy (buf, cmdline, (start - cmdline + 8));
1227 if (end)
1228 strcpy (buf + (start - cmdline + 8), end);
1229 else
1230 buf[start - cmdline + 8] = '\0';
1231 } else {
1232 strcpy (buf, cmdline);
1233 strcat (buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001234 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001235 } else {
1236 strcpy (buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001237 }
wdenk47d1a6e2002-11-03 00:01:44 +00001238
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001239 setenv ("bootargs", buf);
1240 debug ("after silent fix-up: %s\n", buf);
1241}
1242#endif /* CONFIG_SILENT_CONSOLE */
wdenk47d1a6e2002-11-03 00:01:44 +00001243
wdenk47d1a6e2002-11-03 00:01:44 +00001244
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001245/*******************************************************************/
1246/* OS booting routines */
1247/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001248
Kumar Gala697675e2008-10-21 17:25:47 -05001249#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001250static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001251 bootm_headers_t *images)
wdenk92bbe3f2003-04-20 14:04:18 +00001252{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001253 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001254 image_header_t *os_hdr, *hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001255 ulong kernel_data, kernel_len;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001256 char *consdev;
1257 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001258
Kumar Gala18178bc2008-10-21 17:25:45 -05001259 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1260 return 1;
1261
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001262#if defined(CONFIG_FIT)
1263 if (!images->legacy_hdr_valid) {
1264 fit_unsupported_reset ("NetBSD");
Kumar Gala48626aa2008-08-15 08:24:45 -05001265 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001266 }
1267#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001268 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001269
1270 /*
1271 * Booting a (NetBSD) kernel image
1272 *
1273 * This process is pretty similar to a standalone application:
1274 * The (first part of an multi-) image must be a stage-2 loader,
1275 * which in turn is responsible for loading & invoking the actual
1276 * kernel. The only differences are the parameters being passed:
1277 * besides the board info strucure, the loader expects a command
1278 * line, the name of the console device, and (optionally) the
1279 * address of the original image header.
1280 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001281 os_hdr = NULL;
Marian Balakowiczab00e022008-04-11 11:07:49 +02001282 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001283 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1284 if (kernel_len)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001285 os_hdr = hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001286 }
wdenk47d1a6e2002-11-03 00:01:44 +00001287
1288 consdev = "";
1289#if defined (CONFIG_8xx_CONS_SMC1)
1290 consdev = "smc1";
1291#elif defined (CONFIG_8xx_CONS_SMC2)
1292 consdev = "smc2";
1293#elif defined (CONFIG_8xx_CONS_SCC2)
1294 consdev = "scc2";
1295#elif defined (CONFIG_8xx_CONS_SCC3)
1296 consdev = "scc3";
1297#endif
1298
1299 if (argc > 2) {
1300 ulong len;
1301 int i;
1302
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001303 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001304 len += strlen (argv[i]) + 1;
1305 cmdline = malloc (len);
1306
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001307 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001308 if (i > 2)
1309 cmdline[len++] = ' ';
1310 strcpy (&cmdline[len], argv[i]);
1311 len += strlen (argv[i]);
1312 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001313 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001314 cmdline = "";
1315 }
1316
Kumar Gala93467bc2008-08-15 08:24:36 -05001317 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001318
1319 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1320 (ulong)loader);
1321
1322 show_boot_progress (15);
1323
1324 /*
1325 * NetBSD Stage-2 Loader Parameters:
1326 * r3: ptr to board info data
1327 * r4: image address
1328 * r5: console device
1329 * r6: boot args string
1330 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001331 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala48626aa2008-08-15 08:24:45 -05001332
1333 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001334}
Kumar Gala697675e2008-10-21 17:25:47 -05001335#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001336
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001337#ifdef CONFIG_LYNXKDI
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001338static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001339 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001340{
Marian Balakowiczab00e022008-04-11 11:07:49 +02001341 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001342
Kumar Gala18178bc2008-10-21 17:25:45 -05001343 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1344 return 1;
1345
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001346#if defined(CONFIG_FIT)
1347 if (!images->legacy_hdr_valid) {
1348 fit_unsupported_reset ("Lynx");
Kumar Gala48626aa2008-08-15 08:24:45 -05001349 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001350 }
1351#endif
1352
1353 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala48626aa2008-08-15 08:24:45 -05001354
1355 return 1;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001356}
1357#endif /* CONFIG_LYNXKDI */
1358
Kumar Gala697675e2008-10-21 17:25:47 -05001359#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001360static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001361 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001362{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001363 void (*entry_point)(bd_t *);
wdenk92bbe3f2003-04-20 14:04:18 +00001364
Kumar Gala18178bc2008-10-21 17:25:45 -05001365 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1366 return 1;
1367
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001368#if defined(CONFIG_FIT)
1369 if (!images->legacy_hdr_valid) {
1370 fit_unsupported_reset ("RTEMS");
Kumar Gala48626aa2008-08-15 08:24:45 -05001371 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001372 }
1373#endif
1374
Kumar Gala93467bc2008-08-15 08:24:36 -05001375 entry_point = (void (*)(bd_t *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001376
wdenk92bbe3f2003-04-20 14:04:18 +00001377 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1378 (ulong)entry_point);
wdenk47d1a6e2002-11-03 00:01:44 +00001379
Heiko Schocher8a8ec532007-07-13 09:54:17 +02001380 show_boot_progress (15);
wdenk92bbe3f2003-04-20 14:04:18 +00001381
1382 /*
1383 * RTEMS Parameters:
1384 * r3: ptr to board info data
1385 */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001386 (*entry_point)(gd->bd);
Kumar Gala48626aa2008-08-15 08:24:45 -05001387
1388 return 1;
wdenk92bbe3f2003-04-20 14:04:18 +00001389}
Kumar Gala697675e2008-10-21 17:25:47 -05001390#endif /* CONFIG_BOOTM_RTEMS */
wdenk92bbe3f2003-04-20 14:04:18 +00001391
Torkel Lundgren29a58662010-09-28 11:05:36 +02001392#if defined(CONFIG_BOOTM_OSE)
1393static int do_bootm_ose (int flag, int argc, char * const argv[],
1394 bootm_headers_t *images)
1395{
1396 void (*entry_point)(void);
1397
1398 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1399 return 1;
1400
1401#if defined(CONFIG_FIT)
1402 if (!images->legacy_hdr_valid) {
1403 fit_unsupported_reset ("OSE");
1404 return 1;
1405 }
1406#endif
1407
1408 entry_point = (void (*)(void))images->ep;
1409
1410 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1411 (ulong)entry_point);
1412
1413 show_boot_progress (15);
1414
1415 /*
1416 * OSE Parameters:
1417 * None
1418 */
1419 (*entry_point)();
1420
1421 return 1;
1422}
1423#endif /* CONFIG_BOOTM_OSE */
1424
Jon Loeliger54324d02007-07-08 17:51:39 -05001425#if defined(CONFIG_CMD_ELF)
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001426static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001427 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001428{
wdenk47d1a6e2002-11-03 00:01:44 +00001429 char str[80];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001430
Kumar Gala18178bc2008-10-21 17:25:45 -05001431 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1432 return 1;
1433
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001434#if defined(CONFIG_FIT)
Marian Balakowiczab00e022008-04-11 11:07:49 +02001435 if (!images->legacy_hdr_valid) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001436 fit_unsupported_reset ("VxWorks");
Kumar Gala48626aa2008-08-15 08:24:45 -05001437 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001438 }
1439#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001440
Kumar Gala93467bc2008-08-15 08:24:36 -05001441 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001442 setenv("loadaddr", str);
Kumar Gala48626aa2008-08-15 08:24:45 -05001443 do_bootvx(NULL, 0, 0, NULL);
1444
1445 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001446}
1447
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001448static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001449 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001450{
wdenk47d1a6e2002-11-03 00:01:44 +00001451 char *local_args[2];
1452 char str[16];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001453
Kumar Gala18178bc2008-10-21 17:25:45 -05001454 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1455 return 1;
1456
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001457#if defined(CONFIG_FIT)
1458 if (!images->legacy_hdr_valid) {
1459 fit_unsupported_reset ("QNX");
Kumar Gala48626aa2008-08-15 08:24:45 -05001460 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001461 }
1462#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001463
Kumar Gala93467bc2008-08-15 08:24:36 -05001464 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001465 local_args[0] = argv[0];
1466 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala48626aa2008-08-15 08:24:45 -05001467 do_bootelf(NULL, 0, 2, local_args);
1468
1469 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001470}
Jon Loeligerd704d912007-07-10 11:02:44 -05001471#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -05001472
1473#ifdef CONFIG_INTEGRITY
Wolfgang Denk6262d0212010-06-28 22:00:46 +02001474static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyser56b8dd12008-09-08 14:56:49 -05001475 bootm_headers_t *images)
1476{
1477 void (*entry_point)(void);
1478
Kumar Gala18178bc2008-10-21 17:25:45 -05001479 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1480 return 1;
1481
Peter Tyser56b8dd12008-09-08 14:56:49 -05001482#if defined(CONFIG_FIT)
1483 if (!images->legacy_hdr_valid) {
1484 fit_unsupported_reset ("INTEGRITY");
1485 return 1;
1486 }
1487#endif
1488
1489 entry_point = (void (*)(void))images->ep;
1490
1491 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1492 (ulong)entry_point);
1493
1494 show_boot_progress (15);
1495
1496 /*
1497 * INTEGRITY Parameters:
1498 * None
1499 */
1500 (*entry_point)();
1501
1502 return 1;
1503}
1504#endif