blob: 8f8359856162e47b450c0d41cd779c97981c3778 [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
Marian Balakowicz2df645e2008-01-08 18:17:10 +010060DECLARE_GLOBAL_DATA_PTR;
wdenk9dfa8d12002-12-08 09:53:23 +000061
Marian Balakowicz2df645e2008-01-08 18:17:10 +010062extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +020063#ifndef CONFIG_SYS_BOOTM_LEN
64#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk381669a2003-06-16 23:50:08 +000065#endif
66
Marian Balakowiczbe946ba2008-01-08 18:11:43 +010067#ifdef CONFIG_BZIP2
68extern void bz_internal_error(int);
wdenk47d1a6e2002-11-03 00:01:44 +000069#endif
70
Jon Loeliger54324d02007-07-08 17:51:39 -050071#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000072static int image_info (unsigned long addr);
73#endif
wdenk874ac262003-07-24 23:38:38 +000074
Jon Loeliger54324d02007-07-08 17:51:39 -050075#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +000076#include <flash.h>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020077extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk874ac262003-07-24 23:38:38 +000078static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
79#endif
80
Marian Balakowicz2df645e2008-01-08 18:17:10 +010081#ifdef CONFIG_SILENT_CONSOLE
82static void fixup_silent_linux (void);
83#endif
wdenk47d1a6e2002-11-03 00:01:44 +000084
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +010085static image_header_t *image_get_kernel (ulong img_addr, int verify);
86#if defined(CONFIG_FIT)
87static int fit_check_kernel (const void *fit, int os_noffset, int verify);
wdenk591dda52002-11-18 00:14:45 +000088#endif
89
Marian Balakowiczd7c88a42008-02-29 14:58:34 +010090static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +010091 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz2df645e2008-01-08 18:17:10 +010092extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000093
wdenk47d1a6e2002-11-03 00:01:44 +000094/*
95 * Continue booting an OS image; caller already has:
96 * - copied image header to global variable `header'
97 * - checked header magic number, checksums (both header & image),
98 * - verified image architecture (PPC) and type (KERNEL or MULTI),
99 * - loaded (first part of) image to header load address,
100 * - disabled interrupts.
101 */
Kumar Gala48626aa2008-08-15 08:24:45 -0500102typedef int boot_os_fn (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100103 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000104
Kumar Gala697675e2008-10-21 17:25:47 -0500105#define CONFIG_BOOTM_LINUX 1
106#define CONFIG_BOOTM_NETBSD 1
107#define CONFIG_BOOTM_RTEMS 1
108
109#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
Jon Loeliger54324d02007-07-08 17:51:39 -0500122#if defined(CONFIG_CMD_ELF)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100123static boot_os_fn do_bootm_vxworks;
124static boot_os_fn do_bootm_qnxelf;
125int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
126int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeligerd704d912007-07-10 11:02:44 -0500127#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500128#if defined(CONFIG_INTEGRITY)
129static boot_os_fn do_bootm_integrity;
130#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000131
Kumar Galabf3954f2008-10-21 17:25:44 -0500132boot_os_fn * boot_os[] = {
Kumar Gala697675e2008-10-21 17:25:47 -0500133#ifdef CONFIG_BOOTM_LINUX
Kumar Galabf3954f2008-10-21 17:25:44 -0500134 [IH_OS_LINUX] = do_bootm_linux,
Kumar Gala697675e2008-10-21 17:25:47 -0500135#endif
136#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabf3954f2008-10-21 17:25:44 -0500137 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Gala697675e2008-10-21 17:25:47 -0500138#endif
Kumar Galabf3954f2008-10-21 17:25:44 -0500139#ifdef CONFIG_LYNXKDI
140 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
141#endif
Kumar Gala697675e2008-10-21 17:25:47 -0500142#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabf3954f2008-10-21 17:25:44 -0500143 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Gala697675e2008-10-21 17:25:47 -0500144#endif
Kumar Galabf3954f2008-10-21 17:25:44 -0500145#if defined(CONFIG_CMD_ELF)
146 [IH_OS_VXWORKS] = do_bootm_vxworks,
147 [IH_OS_QNX] = do_bootm_qnxelf,
148#endif
149#ifdef CONFIG_INTEGRITY
150 [IH_OS_INTEGRITY] = do_bootm_integrity,
151#endif
152};
153
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200154ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100155static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese5d5ce292006-03-13 11:16:36 +0100156
Kumar Galab937bb72008-02-27 21:51:49 -0600157void __board_lmb_reserve(struct lmb *lmb)
158{
159 /* please define platform specific board_lmb_reserve() */
160}
161void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000162
Kumar Galab02d7222008-10-16 21:52:08 -0500163void __arch_lmb_reserve(struct lmb *lmb)
164{
165 /* please define platform specific arch_lmb_reserve() */
166}
167void arch_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__arch_lmb_reserve")));
168
Kumar Gala5e726692009-08-27 08:23:55 -0500169/* Allow for arch specific config before we boot */
170void __arch_preboot_os(void)
171{
172 /* please define platform specific arch_preboot_os() */
173}
174void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
175
Kumar Galafffb1432008-08-15 08:24:37 -0500176#if defined(__ARM__)
177 #define IH_INITRD_ARCH IH_ARCH_ARM
178#elif defined(__avr32__)
179 #define IH_INITRD_ARCH IH_ARCH_AVR32
180#elif defined(__bfin__)
181 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
182#elif defined(__I386__)
183 #define IH_INITRD_ARCH IH_ARCH_I386
184#elif defined(__M68K__)
185 #define IH_INITRD_ARCH IH_ARCH_M68K
186#elif defined(__microblaze__)
187 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
188#elif defined(__mips__)
189 #define IH_INITRD_ARCH IH_ARCH_MIPS
190#elif defined(__nios__)
191 #define IH_INITRD_ARCH IH_ARCH_NIOS
192#elif defined(__nios2__)
193 #define IH_INITRD_ARCH IH_ARCH_NIOS2
194#elif defined(__PPC__)
195 #define IH_INITRD_ARCH IH_ARCH_PPC
196#elif defined(__sh__)
197 #define IH_INITRD_ARCH IH_ARCH_SH
198#elif defined(__sparc__)
199 #define IH_INITRD_ARCH IH_ARCH_SPARC
200#else
201# error Unknown CPU type
202#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000203
Kumar Galabd70bbe2008-08-15 08:24:41 -0500204static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000205{
Becky Bruced26d67c2008-06-09 20:37:18 -0500206 ulong mem_start;
207 phys_size_t mem_size;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500208 void *os_hdr;
Kumar Galafffb1432008-08-15 08:24:37 -0500209 int ret;
wdenk47d1a6e2002-11-03 00:01:44 +0000210
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100211 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200212 images.verify = getenv_yesno ("verify");
wdenk47d1a6e2002-11-03 00:01:44 +0000213
Kumar Galada6d11e2008-08-15 08:24:40 -0500214 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000215
Kumar Galac5bacfd2008-02-27 21:51:50 -0600216 mem_start = getenv_bootm_low();
217 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000218
Kumar Galada6d11e2008-08-15 08:24:40 -0500219 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000220
Kumar Galab02d7222008-10-16 21:52:08 -0500221 arch_lmb_reserve(&images.lmb);
Kumar Galada6d11e2008-08-15 08:24:40 -0500222 board_lmb_reserve(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000223
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100224 /* get kernel image header, start address and length */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100225 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500226 &images, &images.os.image_start, &images.os.image_len);
227 if (images.os.image_len == 0) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100228 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000229 return 1;
230 }
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200231
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100232 /* get image parameters */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100233 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100234 case IMAGE_FORMAT_LEGACY:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500235 images.os.type = image_get_type (os_hdr);
236 images.os.comp = image_get_comp (os_hdr);
237 images.os.os = image_get_os (os_hdr);
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200238
Kumar Galabd70bbe2008-08-15 08:24:41 -0500239 images.os.end = image_get_image_end (os_hdr);
240 images.os.load = image_get_load (os_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100241 break;
242#if defined(CONFIG_FIT)
243 case IMAGE_FORMAT_FIT:
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100244 if (fit_image_get_type (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500245 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100246 puts ("Can't get image type!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100247 show_boot_progress (-109);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100248 return 1;
249 }
wdenk47d1a6e2002-11-03 00:01:44 +0000250
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100251 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500252 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100253 puts ("Can't get image compression!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100254 show_boot_progress (-110);
wdenk47d1a6e2002-11-03 00:01:44 +0000255 return 1;
256 }
wdenk47d1a6e2002-11-03 00:01:44 +0000257
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100258 if (fit_image_get_os (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500259 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100260 puts ("Can't get image OS!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100261 show_boot_progress (-111);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100262 return 1;
263 }
wdenk47d1a6e2002-11-03 00:01:44 +0000264
Kumar Galabd70bbe2008-08-15 08:24:41 -0500265 images.os.end = fit_get_end (images.fit_hdr_os);
wdenk47d1a6e2002-11-03 00:01:44 +0000266
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100267 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500268 &images.os.load)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100269 puts ("Can't get image load address!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100270 show_boot_progress (-112);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100271 return 1;
wdenk655a0f92003-10-30 21:49:38 +0000272 }
273 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100274#endif
275 default:
276 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000277 return 1;
278 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100279
Kumar Gala93467bc2008-08-15 08:24:36 -0500280 /* find kernel entry point */
281 if (images.legacy_hdr_valid) {
282 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
283#if defined(CONFIG_FIT)
284 } else if (images.fit_uname_os) {
285 ret = fit_image_get_entry (images.fit_hdr_os,
286 images.fit_noffset_os, &images.ep);
287 if (ret) {
288 puts ("Can't get entry point property!\n");
289 return 1;
290 }
291#endif
292 } else {
293 puts ("Could not find kernel entry point!\n");
294 return 1;
295 }
296
Kumar Galabd70bbe2008-08-15 08:24:41 -0500297 if (images.os.os == IH_OS_LINUX) {
Kumar Galafffb1432008-08-15 08:24:37 -0500298 /* find ramdisk */
299 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
300 &images.rd_start, &images.rd_end);
301 if (ret) {
Kumar Galab8ca7342008-08-29 19:08:29 -0500302 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galafffb1432008-08-15 08:24:37 -0500303 return 1;
304 }
Kumar Galaa5130ad2008-08-15 08:24:38 -0500305
306#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200307#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Galaa5130ad2008-08-15 08:24:38 -0500308 /* find flattened device tree */
309 ret = boot_get_fdt (flag, argc, argv, &images,
310 &images.ft_addr, &images.ft_len);
311 if (ret) {
312 puts ("Could not find a valid device tree\n");
313 return 1;
314 }
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500315
316 set_working_fdt_addr(images.ft_addr);
Kumar Galaa5130ad2008-08-15 08:24:38 -0500317#endif
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200318#endif
Kumar Galafffb1432008-08-15 08:24:37 -0500319 }
320
Kumar Galabd70bbe2008-08-15 08:24:41 -0500321 images.os.start = (ulong)os_hdr;
Kumar Gala18178bc2008-10-21 17:25:45 -0500322 images.state = BOOTM_STATE_START;
wdenk47d1a6e2002-11-03 00:01:44 +0000323
Kumar Galabd70bbe2008-08-15 08:24:41 -0500324 return 0;
325}
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200326
Kumar Galabd70bbe2008-08-15 08:24:41 -0500327#define BOOTM_ERR_RESET -1
328#define BOOTM_ERR_OVERLAP -2
329#define BOOTM_ERR_UNIMPLEMENTED -3
330static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
331{
332 uint8_t comp = os.comp;
333 ulong load = os.load;
334 ulong blob_start = os.start;
335 ulong blob_end = os.end;
336 ulong image_start = os.image_start;
337 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200338 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200339
Kumar Galabd70bbe2008-08-15 08:24:41 -0500340 const char *type_name = genimg_get_type_name (os.type);
wdenk452cfd62002-11-19 11:04:11 +0000341
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100342 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000343 case IH_COMP_NONE:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500344 if (load == blob_start) {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100345 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000346 } else {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100347 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000348
Minkyu Kangce56fea2009-02-18 09:05:52 +0900349 if (load != image_start) {
350 memmove_wd ((void *)load,
351 (void *)image_start, image_len, CHUNKSZ);
352 }
wdenk47d1a6e2002-11-03 00:01:44 +0000353 }
Kumar Galabd70bbe2008-08-15 08:24:41 -0500354 *load_end = load + image_len;
Guennadi Liakhovetski3110cf82008-07-31 12:35:04 +0200355 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000356 break;
357 case IH_COMP_GZIP:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100358 printf (" Uncompressing %s ... ", type_name);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500359 if (gunzip ((void *)load, unc_len,
360 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs1f2b05a2009-01-02 15:11:41 +0100361 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100362 "- must RESET board to recover\n");
Kumar Galabd70bbe2008-08-15 08:24:41 -0500363 if (boot_progress)
364 show_boot_progress (-6);
365 return BOOTM_ERR_RESET;
wdenk47d1a6e2002-11-03 00:01:44 +0000366 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100367
Kumar Galabd70bbe2008-08-15 08:24:41 -0500368 *load_end = load + image_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000369 break;
wdenk710e3502003-08-29 20:57:53 +0000370#ifdef CONFIG_BZIP2
371 case IH_COMP_BZIP2:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100372 printf (" Uncompressing %s ... ", type_name);
wdenk2cefd152004-02-08 22:55:38 +0000373 /*
374 * If we've got less than 4 MB of malloc() space,
375 * use slower decompression algorithm which requires
376 * at most 2300 KB of memory.
377 */
Kumar Galabd70bbe2008-08-15 08:24:41 -0500378 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
379 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200380 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
wdenk710e3502003-08-29 20:57:53 +0000381 if (i != BZ_OK) {
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100382 printf ("BUNZIP2: uncompress or overwrite error %d "
383 "- must RESET board to recover\n", i);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500384 if (boot_progress)
385 show_boot_progress (-6);
386 return BOOTM_ERR_RESET;
wdenk710e3502003-08-29 20:57:53 +0000387 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100388
Kumar Galabd70bbe2008-08-15 08:24:41 -0500389 *load_end = load + unc_len;
wdenk710e3502003-08-29 20:57:53 +0000390 break;
391#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200392#ifdef CONFIG_LZMA
393 case IH_COMP_LZMA:
394 printf (" Uncompressing %s ... ", type_name);
395
396 int ret = lzmaBuffToBuffDecompress(
397 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellini22834672008-09-13 10:04:32 +0200398 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +0200399 if (ret != SZ_OK) {
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200400 printf ("LZMA: uncompress or overwrite error %d "
401 "- must RESET board to recover\n", ret);
402 show_boot_progress (-6);
403 return BOOTM_ERR_RESET;
404 }
405 *load_end = load + unc_len;
406 break;
407#endif /* CONFIG_LZMA */
wdenk47d1a6e2002-11-03 00:01:44 +0000408 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100409 printf ("Unimplemented compression type %d\n", comp);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500410 return BOOTM_ERR_UNIMPLEMENTED;
wdenk47d1a6e2002-11-03 00:01:44 +0000411 }
wdenk42c05472004-03-23 22:14:11 +0000412 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARDfcd96442008-09-09 22:18:24 +0200413 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500414 if (boot_progress)
415 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000416
Kumar Galabd70bbe2008-08-15 08:24:41 -0500417 if ((load < blob_end) && (*load_end > blob_start)) {
418 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 +0200419 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000420
Kumar Galabd70bbe2008-08-15 08:24:41 -0500421 return BOOTM_ERR_OVERLAP;
422 }
423
424 return 0;
425}
426
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200427static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
428{
429 char *s;
430 int (*appl)(int, char *[]);
431
432 /* Don't start if "autostart" is set to "no" */
433 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
434 char buf[32];
435 sprintf(buf, "%lX", images.os.image_len);
436 setenv("filesize", buf);
437 return 0;
438 }
439 appl = (int (*)(int, char *[]))ntohl(images.ep);
440 (*appl)(argc-1, &argv[1]);
441
442 return 0;
443}
444
Kumar Gala18178bc2008-10-21 17:25:45 -0500445/* we overload the cmd field with our state machine info instead of a
446 * function pointer */
447cmd_tbl_t cmd_bootm_sub[] = {
448 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
449 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
450#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
451 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
452#endif
453#ifdef CONFIG_OF_LIBFDT
454 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
455#endif
456 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
457 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
458 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
459 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
460};
461
462int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
463{
464 int ret = 0;
465 int state;
466 cmd_tbl_t *c;
467 boot_os_fn *boot_fn;
468
469 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
470
471 if (c) {
472 state = (int)c->cmd;
473
474 /* treat start special since it resets the state machine */
475 if (state == BOOTM_STATE_START) {
476 argc--;
477 argv++;
478 return bootm_start(cmdtp, flag, argc, argv);
479 }
480 }
481 /* Unrecognized command */
482 else {
Peter Tyserddb3af92009-01-27 18:03:10 -0600483 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500484 return 1;
485 }
486
487 if (images.state >= state) {
488 printf ("Trying to execute a command out of order\n");
Peter Tyserddb3af92009-01-27 18:03:10 -0600489 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500490 return 1;
491 }
492
493 images.state |= state;
494 boot_fn = boot_os[images.os.os];
495
496 switch (state) {
497 ulong load_end;
498 case BOOTM_STATE_START:
499 /* should never occur */
500 break;
501 case BOOTM_STATE_LOADOS:
502 ret = bootm_load_os(images.os, &load_end, 0);
503 if (ret)
504 return ret;
505
506 lmb_reserve(&images.lmb, images.os.load,
507 (load_end - images.os.load));
508 break;
509#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
510 case BOOTM_STATE_RAMDISK:
511 {
512 ulong rd_len = images.rd_end - images.rd_start;
513 char str[17];
514
515 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
516 rd_len, &images.initrd_start, &images.initrd_end);
517 if (ret)
518 return ret;
519
520 sprintf(str, "%lx", images.initrd_start);
521 setenv("initrd_start", str);
522 sprintf(str, "%lx", images.initrd_end);
523 setenv("initrd_end", str);
524 }
525 break;
526#endif
527#ifdef CONFIG_OF_LIBFDT
528 case BOOTM_STATE_FDT:
529 {
530 ulong bootmap_base = getenv_bootm_low();
531 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
532 &images.ft_addr, &images.ft_len);
533 break;
534 }
535#endif
536 case BOOTM_STATE_OS_CMDLINE:
537 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
538 if (ret)
539 printf ("cmdline subcommand not supported\n");
540 break;
541 case BOOTM_STATE_OS_BD_T:
542 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
543 if (ret)
544 printf ("bdt subcommand not supported\n");
545 break;
546 case BOOTM_STATE_OS_PREP:
547 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
548 if (ret)
549 printf ("prep subcommand not supported\n");
550 break;
551 case BOOTM_STATE_OS_GO:
552 disable_interrupts();
Kumar Gala5e726692009-08-27 08:23:55 -0500553 arch_preboot_os();
Kumar Gala18178bc2008-10-21 17:25:45 -0500554 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
555 break;
556 }
557
558 return ret;
559}
560
Kumar Galabd70bbe2008-08-15 08:24:41 -0500561/*******************************************************************/
562/* bootm - boot application image from image in memory */
563/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -0500564
Kumar Galabd70bbe2008-08-15 08:24:41 -0500565int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
566{
Kumar Galabd70bbe2008-08-15 08:24:41 -0500567 ulong iflag;
568 ulong load_end = 0;
569 int ret;
Kumar Galabf3954f2008-10-21 17:25:44 -0500570 boot_os_fn *boot_fn;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500571#ifndef CONFIG_RELOC_FIXUP_WORKS
572 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -0500573
574 /* relocate boot function table */
575 if (!relocated) {
576 int i;
577 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundel77094472009-07-13 16:01:18 +0200578 if (boot_os[i] != NULL)
579 boot_os[i] += gd->reloc_off;
Kumar Galabf3954f2008-10-21 17:25:44 -0500580 relocated = 1;
581 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500582#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500583
Kumar Gala18178bc2008-10-21 17:25:45 -0500584 /* determine if we have a sub command */
585 if (argc > 1) {
586 char *endp;
587
588 simple_strtoul(argv[1], &endp, 16);
589 /* endp pointing to NULL means that argv[1] was just a
590 * valid number, pass it along to the normal bootm processing
591 *
592 * If endp is ':' or '#' assume a FIT identifier so pass
593 * along for normal processing.
594 *
595 * Right now we assume the first arg should never be '-'
596 */
597 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
598 return do_bootm_subcommand(cmdtp, flag, argc, argv);
599 }
600
Anatolij Gustschin128de002008-08-29 21:04:45 +0200601 if (bootm_start(cmdtp, flag, argc, argv))
602 return 1;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500603
604 /*
605 * We have reached the point of no return: we are going to
606 * overwrite all exception vector code, so we cannot easily
607 * recover from any failures any more...
608 */
609 iflag = disable_interrupts();
610
611#if defined(CONFIG_CMD_USB)
612 /*
613 * turn off USB to prevent the host controller from writing to the
614 * SDRAM while Linux is booting. This could happen (at least for OHCI
615 * controller), because the HCCA (Host Controller Communication Area)
616 * lies within the SDRAM and the host controller writes continously to
617 * this area (as busmaster!). The HccaFrameNumber is for example
618 * updated every 1 ms within the HCCA structure in SDRAM! For more
619 * details see the OpenHCI specification.
620 */
621 usb_stop();
622#endif
623
624#ifdef CONFIG_AMIGAONEG3SE
625 /*
626 * We've possible left the caches enabled during
627 * bios emulation, so turn them off again
628 */
629 icache_disable();
630 dcache_disable();
631#endif
632
633 ret = bootm_load_os(images.os, &load_end, 1);
634
635 if (ret < 0) {
636 if (ret == BOOTM_ERR_RESET)
Marian Balakowiczab00e022008-04-11 11:07:49 +0200637 do_reset (cmdtp, flag, argc, argv);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500638 if (ret == BOOTM_ERR_OVERLAP) {
639 if (images.legacy_hdr_valid) {
640 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
641 puts ("WARNING: legacy format multi component "
642 "image overwritten\n");
643 } else {
644 puts ("ERROR: new format image overwritten - "
645 "must RESET the board to recover\n");
646 show_boot_progress (-113);
647 do_reset (cmdtp, flag, argc, argv);
648 }
649 }
650 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
651 if (iflag)
652 enable_interrupts();
653 show_boot_progress (-7);
654 return 1;
Marian Balakowiczab00e022008-04-11 11:07:49 +0200655 }
wdenk47d1a6e2002-11-03 00:01:44 +0000656 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100657
Kumar Galabd70bbe2008-08-15 08:24:41 -0500658 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
wdenk47d1a6e2002-11-03 00:01:44 +0000659
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200660 if (images.os.type == IH_TYPE_STANDALONE) {
661 if (iflag)
662 enable_interrupts();
663 /* This may return when 'autostart' is 'no' */
664 bootm_start_standalone(iflag, argc, argv);
665 return 0;
666 }
667
Kumar Galabd70bbe2008-08-15 08:24:41 -0500668 show_boot_progress (8);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600669
wdenk808532a2003-10-10 10:05:42 +0000670#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabf3954f2008-10-21 17:25:44 -0500671 if (images.os.os == IH_OS_LINUX)
672 fixup_silent_linux();
wdenk808532a2003-10-10 10:05:42 +0000673#endif
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100674
Kumar Galabf3954f2008-10-21 17:25:44 -0500675 boot_fn = boot_os[images.os.os];
Detlev Zundel77094472009-07-13 16:01:18 +0200676
677 if (boot_fn == NULL) {
678 if (iflag)
679 enable_interrupts();
680 printf ("ERROR: booting os '%s' (%d) is not supported\n",
681 genimg_get_os_name(images.os.os), images.os.os);
682 show_boot_progress (-8);
683 return 1;
684 }
685
Kumar Gala5e726692009-08-27 08:23:55 -0500686 arch_preboot_os();
687
Kumar Galabf3954f2008-10-21 17:25:44 -0500688 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000689
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200690 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000691#ifdef DEBUG
wdenk42c05472004-03-23 22:14:11 +0000692 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000693#endif
Kumar Gala48626aa2008-08-15 08:24:45 -0500694 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicz9c220262008-03-12 10:14:57 +0100695
wdenk47d1a6e2002-11-03 00:01:44 +0000696 return 1;
697}
698
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100699/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100700 * image_get_kernel - verify legacy format kernel image
701 * @img_addr: in RAM address of the legacy format image to be verified
702 * @verify: data CRC verification flag
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100703 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100704 * image_get_kernel() verifies legacy image integrity and returns pointer to
705 * legacy image header if image verification was completed successfully.
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100706 *
707 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100708 * pointer to a legacy image header if valid image was found
709 * otherwise return NULL
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100710 */
Marian Balakowicz59504f62008-02-27 11:02:07 +0100711static image_header_t *image_get_kernel (ulong img_addr, int verify)
wdenk808532a2003-10-10 10:05:42 +0000712{
Marian Balakowicz59504f62008-02-27 11:02:07 +0100713 image_header_t *hdr = (image_header_t *)img_addr;
wdenk808532a2003-10-10 10:05:42 +0000714
Marian Balakowicz59504f62008-02-27 11:02:07 +0100715 if (!image_check_magic(hdr)) {
716 puts ("Bad Magic Number\n");
717 show_boot_progress (-1);
718 return NULL;
719 }
720 show_boot_progress (2);
wdenk808532a2003-10-10 10:05:42 +0000721
Marian Balakowicz59504f62008-02-27 11:02:07 +0100722 if (!image_check_hcrc (hdr)) {
723 puts ("Bad Header Checksum\n");
724 show_boot_progress (-2);
725 return NULL;
726 }
727
728 show_boot_progress (3);
729 image_print_contents (hdr);
730
731 if (verify) {
732 puts (" Verifying Checksum ... ");
733 if (!image_check_dcrc (hdr)) {
734 printf ("Bad Data CRC\n");
735 show_boot_progress (-3);
736 return NULL;
wdenk808532a2003-10-10 10:05:42 +0000737 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100738 puts ("OK\n");
wdenk808532a2003-10-10 10:05:42 +0000739 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100740 show_boot_progress (4);
wdenk808532a2003-10-10 10:05:42 +0000741
Marian Balakowicz59504f62008-02-27 11:02:07 +0100742 if (!image_check_target_arch (hdr)) {
743 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
744 show_boot_progress (-4);
745 return NULL;
746 }
747 return hdr;
wdenk808532a2003-10-10 10:05:42 +0000748}
wdenk808532a2003-10-10 10:05:42 +0000749
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100750/**
751 * fit_check_kernel - verify FIT format kernel subimage
752 * @fit_hdr: pointer to the FIT image header
753 * os_noffset: kernel subimage node offset within FIT image
754 * @verify: data CRC verification flag
755 *
756 * fit_check_kernel() verifies integrity of the kernel subimage and from
757 * specified FIT image.
758 *
759 * returns:
760 * 1, on success
761 * 0, on failure
762 */
763#if defined (CONFIG_FIT)
764static int fit_check_kernel (const void *fit, int os_noffset, int verify)
wdenk47d1a6e2002-11-03 00:01:44 +0000765{
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100766 fit_image_print (fit, os_noffset, " ");
wdenk47d1a6e2002-11-03 00:01:44 +0000767
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100768 if (verify) {
769 puts (" Verifying Hash Integrity ... ");
770 if (!fit_image_check_hashes (fit, os_noffset)) {
771 puts ("Bad Data Hash\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100772 show_boot_progress (-104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100773 return 0;
774 }
775 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000776 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100777 show_boot_progress (105);
wdenk47d1a6e2002-11-03 00:01:44 +0000778
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100779 if (!fit_image_check_target_arch (fit, os_noffset)) {
780 puts ("Unsupported Architecture\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100781 show_boot_progress (-105);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100782 return 0;
783 }
wdenk47d1a6e2002-11-03 00:01:44 +0000784
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100785 show_boot_progress (106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100786 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
787 puts ("Not a kernel image\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100788 show_boot_progress (-106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100789 return 0;
790 }
wdenk47d1a6e2002-11-03 00:01:44 +0000791
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100792 show_boot_progress (107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100793 return 1;
794}
795#endif /* CONFIG_FIT */
wdenk56f94be2002-11-05 16:35:14 +0000796
Marian Balakowicz59504f62008-02-27 11:02:07 +0100797/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100798 * boot_get_kernel - find kernel image
Marian Balakowicz59504f62008-02-27 11:02:07 +0100799 * @os_data: pointer to a ulong variable, will hold os data start address
800 * @os_len: pointer to a ulong variable, will hold os data length
801 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100802 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz59504f62008-02-27 11:02:07 +0100803 * and locates kernel data.
804 *
805 * returns:
806 * pointer to image header if valid image was found, plus kernel start
807 * address and length, otherwise NULL
808 */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100809static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100810 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100811{
812 image_header_t *hdr;
813 ulong img_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100814#if defined(CONFIG_FIT)
815 void *fit_hdr;
816 const char *fit_uname_config = NULL;
817 const char *fit_uname_kernel = NULL;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100818 const void *data;
819 size_t len;
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100820 int cfg_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100821 int os_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100822#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000823
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100824 /* find out kernel image address */
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100825 if (argc < 2) {
826 img_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100827 debug ("* kernel: default image load address = 0x%08lx\n",
828 load_addr);
829#if defined(CONFIG_FIT)
830 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
831 &fit_uname_config)) {
832 debug ("* kernel: config '%s' from image at 0x%08lx\n",
833 fit_uname_config, img_addr);
834 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
835 &fit_uname_kernel)) {
836 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
837 fit_uname_kernel, img_addr);
838#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100839 } else {
840 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100841 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100842 }
wdenk56f94be2002-11-05 16:35:14 +0000843
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100844 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000845
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100846 /* copy from dataflash if needed */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100847 img_addr = genimg_get_image (img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000848
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100849 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100850 *os_data = *os_len = 0;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100851 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100852 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100853 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
854 img_addr);
Marian Balakowicz59504f62008-02-27 11:02:07 +0100855 hdr = image_get_kernel (img_addr, images->verify);
856 if (!hdr)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100857 return NULL;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100858 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000859
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100860 /* get os_data and os_len */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100861 switch (image_get_type (hdr)) {
862 case IH_TYPE_KERNEL:
863 *os_data = image_get_data (hdr);
864 *os_len = image_get_data_size (hdr);
865 break;
866 case IH_TYPE_MULTI:
867 image_multi_getimg (hdr, 0, os_data, os_len);
868 break;
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200869 case IH_TYPE_STANDALONE:
870 if (argc >2) {
871 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
872 }
873 *os_data = image_get_data (hdr);
874 *os_len = image_get_data_size (hdr);
875 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100876 default:
877 printf ("Wrong Image Type for %s command\n", cmdtp->name);
878 show_boot_progress (-5);
879 return NULL;
880 }
Marian Balakowiczab00e022008-04-11 11:07:49 +0200881
882 /*
883 * copy image header to allow for image overwrites during kernel
884 * decompression.
885 */
886 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
887
888 /* save pointer to image header */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100889 images->legacy_hdr_os = hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000890
Marian Balakowiczab00e022008-04-11 11:07:49 +0200891 images->legacy_hdr_valid = 1;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100892 show_boot_progress (6);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100893 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100894#if defined(CONFIG_FIT)
895 case IMAGE_FORMAT_FIT:
896 fit_hdr = (void *)img_addr;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100897 printf ("## Booting kernel from FIT Image at %08lx ...\n",
898 img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000899
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100900 if (!fit_check_format (fit_hdr)) {
901 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100902 show_boot_progress (-100);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100903 return NULL;
904 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100905 show_boot_progress (100);
wdenk47d1a6e2002-11-03 00:01:44 +0000906
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100907 if (!fit_uname_kernel) {
908 /*
909 * no kernel image node unit name, try to get config
910 * node first. If config unit node name is NULL
911 * fit_conf_get_node() will try to find default config node
912 */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100913 show_boot_progress (101);
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100914 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
915 if (cfg_noffset < 0) {
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100916 show_boot_progress (-101);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100917 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100918 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100919 /* save configuration uname provided in the first
920 * bootm argument
921 */
922 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
923 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
924 show_boot_progress (103);
wdenk47d1a6e2002-11-03 00:01:44 +0000925
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100926 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100927 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
928 } else {
929 /* get kernel component image node offset */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100930 show_boot_progress (102);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100931 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
932 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100933 if (os_noffset < 0) {
934 show_boot_progress (-103);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100935 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100936 }
wdenk47d1a6e2002-11-03 00:01:44 +0000937
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100938 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
wdenk47d1a6e2002-11-03 00:01:44 +0000939
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100940 show_boot_progress (104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100941 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
942 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500943
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100944 /* get kernel image data address and length */
945 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
946 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100947 show_boot_progress (-107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100948 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500949 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100950 show_boot_progress (108);
wdenk47d1a6e2002-11-03 00:01:44 +0000951
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100952 *os_len = len;
953 *os_data = (ulong)data;
954 images->fit_hdr_os = fit_hdr;
955 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100956 images->fit_noffset_os = os_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100957 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100958#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100959 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100960 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100961 show_boot_progress (-108);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100962 return NULL;
963 }
wdenk47d1a6e2002-11-03 00:01:44 +0000964
Wolfgang Denk8d541882008-07-10 13:16:09 +0200965 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100966 *os_data, *os_len, *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +0000967
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100968 return (void *)img_addr;
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100969}
wdenk47d1a6e2002-11-03 00:01:44 +0000970
wdenk47d1a6e2002-11-03 00:01:44 +0000971U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200972 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600973 "boot application image from memory",
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100974 "[addr [arg ...]]\n - boot application image stored in memory\n"
975 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
976 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100977#if defined(CONFIG_OF_LIBFDT)
wdenk47d1a6e2002-11-03 00:01:44 +0000978 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
979 "\ta third argument is required which is the address of the\n"
980 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
981 "\tuse a '-' for the second argument. If you do not pass a third\n"
982 "\ta bd_info struct will be passed instead\n"
983#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100984#if defined(CONFIG_FIT)
985 "\t\nFor the new multi component uImage format (FIT) addresses\n"
986 "\tmust be extened to include component or configuration unit name:\n"
987 "\taddr:<subimg_uname> - direct component image specification\n"
988 "\taddr#<conf_uname> - configuration specification\n"
989 "\tUse iminfo command to get the list of existing component\n"
990 "\timages and configurations.\n"
991#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500992 "\nSub-commands to do part of the bootm sequence. The sub-commands "
993 "must be\n"
994 "issued in the order below (it's ok to not issue all sub-commands):\n"
995 "\tstart [addr [arg ...]]\n"
996 "\tloados - load OS image\n"
997#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
998 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
999#endif
1000#if defined(CONFIG_OF_LIBFDT)
1001 "\tfdt - relocate flat device tree\n"
1002#endif
1003 "\tbdt - OS specific bd_t processing\n"
1004 "\tcmdline - OS specific command line processing/setup\n"
1005 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001006 "\tgo - start OS"
wdenk47d1a6e2002-11-03 00:01:44 +00001007);
wdenk47d1a6e2002-11-03 00:01:44 +00001008
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001009/*******************************************************************/
1010/* bootd - boot default image */
1011/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001012#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001013int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1014{
1015 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001016
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001017#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001018 if (run_command (getenv ("bootcmd"), flag) < 0)
1019 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001020#else
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001021 if (parse_string_outer (getenv ("bootcmd"),
1022 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1023 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001024#endif
1025 return rcode;
1026}
wdenk47d1a6e2002-11-03 00:01:44 +00001027
wdenkf287a242003-07-01 21:06:45 +00001028U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001029 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001030 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001031 ""
wdenk3086a972003-06-28 23:11:04 +00001032);
wdenk47d1a6e2002-11-03 00:01:44 +00001033
wdenk3086a972003-06-28 23:11:04 +00001034/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +00001035U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001036 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001037 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001038 ""
wdenk57b2d802003-06-27 21:31:46 +00001039);
wdenk47d1a6e2002-11-03 00:01:44 +00001040
wdenk47d1a6e2002-11-03 00:01:44 +00001041#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001042
wdenk47d1a6e2002-11-03 00:01:44 +00001043
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001044/*******************************************************************/
1045/* iminfo - print header info for a requested image */
1046/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001047#if defined(CONFIG_CMD_IMI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001048int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001049{
1050 int arg;
1051 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001052 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001053
wdenk47d1a6e2002-11-03 00:01:44 +00001054 if (argc < 2) {
1055 return image_info (load_addr);
1056 }
wdenk47d1a6e2002-11-03 00:01:44 +00001057
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001058 for (arg = 1; arg < argc; ++arg) {
1059 addr = simple_strtoul (argv[arg], NULL, 16);
1060 if (image_info (addr) != 0)
1061 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001062 }
1063 return rcode;
1064}
wdenk47d1a6e2002-11-03 00:01:44 +00001065
wdenk47d1a6e2002-11-03 00:01:44 +00001066static int image_info (ulong addr)
1067{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001068 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001069
wdenk47d1a6e2002-11-03 00:01:44 +00001070 printf ("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001071
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001072 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001073 case IMAGE_FORMAT_LEGACY:
1074 puts (" Legacy image found\n");
1075 if (!image_check_magic (hdr)) {
1076 puts (" Bad Magic Number\n");
1077 return 1;
1078 }
wdenk47d1a6e2002-11-03 00:01:44 +00001079
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001080 if (!image_check_hcrc (hdr)) {
1081 puts (" Bad Header Checksum\n");
1082 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001083 }
1084
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001085 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001086
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001087 puts (" Verifying Checksum ... ");
1088 if (!image_check_dcrc (hdr)) {
1089 puts (" Bad Data CRC\n");
1090 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001091 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001092 puts ("OK\n");
1093 return 0;
1094#if defined(CONFIG_FIT)
1095 case IMAGE_FORMAT_FIT:
1096 puts (" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001097
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001098 if (!fit_check_format (hdr)) {
1099 puts ("Bad FIT image format!\n");
1100 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001101 }
1102
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001103 fit_print_contents (hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +02001104
1105 if (!fit_all_image_check_hashes (hdr)) {
1106 puts ("Bad hash in FIT image!\n");
1107 return 1;
1108 }
1109
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001110 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001111#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001112 default:
1113 puts ("Unknown image format!\n");
1114 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001115 }
wdenk47d1a6e2002-11-03 00:01:44 +00001116
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001117 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001118}
wdenk47d1a6e2002-11-03 00:01:44 +00001119
wdenkf287a242003-07-01 21:06:45 +00001120U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001121 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001122 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +00001123 "addr [addr ...]\n"
1124 " - print header information for application image starting at\n"
1125 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001126 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +00001127);
wdenk47d1a6e2002-11-03 00:01:44 +00001128#endif
1129
1130
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001131/*******************************************************************/
1132/* imls - list all images found in flash */
1133/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001134#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +00001135int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1136{
1137 flash_info_t *info;
1138 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001139 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +00001140
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001141 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001142 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +00001143
wdenk874ac262003-07-24 23:38:38 +00001144 if (info->flash_id == FLASH_UNKNOWN)
1145 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001146 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +00001147
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001148 hdr = (void *)info->start[j];
1149 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01001150 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001151
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001152 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001153 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001154 if (!image_check_hcrc (hdr))
1155 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001156
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001157 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1158 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001159
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001160 puts (" Verifying Checksum ... ");
1161 if (!image_check_dcrc (hdr)) {
1162 puts ("Bad Data CRC\n");
1163 } else {
1164 puts ("OK\n");
1165 }
1166 break;
1167#if defined(CONFIG_FIT)
1168 case IMAGE_FORMAT_FIT:
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001169 if (!fit_check_format (hdr))
1170 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001171
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001172 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001173 fit_print_contents (hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001174 break;
1175#endif
1176 default:
1177 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001178 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001179
wdenk0a658552003-08-05 17:43:17 +00001180next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001181 }
wdenk0a658552003-08-05 17:43:17 +00001182next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001183 }
1184
wdenk874ac262003-07-24 23:38:38 +00001185 return (0);
1186}
wdenk47d1a6e2002-11-03 00:01:44 +00001187
wdenk874ac262003-07-24 23:38:38 +00001188U_BOOT_CMD(
1189 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001190 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +00001191 "\n"
1192 " - Prints information about all images found at sector\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001193 " boundaries in flash."
wdenk874ac262003-07-24 23:38:38 +00001194);
wdenk47d1a6e2002-11-03 00:01:44 +00001195#endif
1196
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001197/*******************************************************************/
Marian Balakowiczc40032c2008-01-31 13:59:09 +01001198/* helper routines */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001199/*******************************************************************/
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001200#ifdef CONFIG_SILENT_CONSOLE
1201static void fixup_silent_linux ()
1202{
1203 char buf[256], *start, *end;
1204 char *cmdline = getenv ("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001205
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001206 /* Only fix cmdline when requested */
1207 if (!(gd->flags & GD_FLG_SILENT))
1208 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001209
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001210 debug ("before silent fix-up: %s\n", cmdline);
1211 if (cmdline) {
1212 if ((start = strstr (cmdline, "console=")) != NULL) {
1213 end = strchr (start, ' ');
1214 strncpy (buf, cmdline, (start - cmdline + 8));
1215 if (end)
1216 strcpy (buf + (start - cmdline + 8), end);
1217 else
1218 buf[start - cmdline + 8] = '\0';
1219 } else {
1220 strcpy (buf, cmdline);
1221 strcat (buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001222 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001223 } else {
1224 strcpy (buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001225 }
wdenk47d1a6e2002-11-03 00:01:44 +00001226
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001227 setenv ("bootargs", buf);
1228 debug ("after silent fix-up: %s\n", buf);
1229}
1230#endif /* CONFIG_SILENT_CONSOLE */
wdenk47d1a6e2002-11-03 00:01:44 +00001231
wdenk47d1a6e2002-11-03 00:01:44 +00001232
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001233/*******************************************************************/
1234/* OS booting routines */
1235/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001236
Kumar Gala697675e2008-10-21 17:25:47 -05001237#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala48626aa2008-08-15 08:24:45 -05001238static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001239 bootm_headers_t *images)
wdenk92bbe3f2003-04-20 14:04:18 +00001240{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001241 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001242 image_header_t *os_hdr, *hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001243 ulong kernel_data, kernel_len;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001244 char *consdev;
1245 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001246
Kumar Gala18178bc2008-10-21 17:25:45 -05001247 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1248 return 1;
1249
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001250#if defined(CONFIG_FIT)
1251 if (!images->legacy_hdr_valid) {
1252 fit_unsupported_reset ("NetBSD");
Kumar Gala48626aa2008-08-15 08:24:45 -05001253 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001254 }
1255#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001256 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001257
1258 /*
1259 * Booting a (NetBSD) kernel image
1260 *
1261 * This process is pretty similar to a standalone application:
1262 * The (first part of an multi-) image must be a stage-2 loader,
1263 * which in turn is responsible for loading & invoking the actual
1264 * kernel. The only differences are the parameters being passed:
1265 * besides the board info strucure, the loader expects a command
1266 * line, the name of the console device, and (optionally) the
1267 * address of the original image header.
1268 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001269 os_hdr = NULL;
Marian Balakowiczab00e022008-04-11 11:07:49 +02001270 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001271 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1272 if (kernel_len)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001273 os_hdr = hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001274 }
wdenk47d1a6e2002-11-03 00:01:44 +00001275
1276 consdev = "";
1277#if defined (CONFIG_8xx_CONS_SMC1)
1278 consdev = "smc1";
1279#elif defined (CONFIG_8xx_CONS_SMC2)
1280 consdev = "smc2";
1281#elif defined (CONFIG_8xx_CONS_SCC2)
1282 consdev = "scc2";
1283#elif defined (CONFIG_8xx_CONS_SCC3)
1284 consdev = "scc3";
1285#endif
1286
1287 if (argc > 2) {
1288 ulong len;
1289 int i;
1290
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001291 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001292 len += strlen (argv[i]) + 1;
1293 cmdline = malloc (len);
1294
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001295 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001296 if (i > 2)
1297 cmdline[len++] = ' ';
1298 strcpy (&cmdline[len], argv[i]);
1299 len += strlen (argv[i]);
1300 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001301 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001302 cmdline = "";
1303 }
1304
Kumar Gala93467bc2008-08-15 08:24:36 -05001305 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001306
1307 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1308 (ulong)loader);
1309
1310 show_boot_progress (15);
1311
1312 /*
1313 * NetBSD Stage-2 Loader Parameters:
1314 * r3: ptr to board info data
1315 * r4: image address
1316 * r5: console device
1317 * r6: boot args string
1318 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001319 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala48626aa2008-08-15 08:24:45 -05001320
1321 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001322}
Kumar Gala697675e2008-10-21 17:25:47 -05001323#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001324
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001325#ifdef CONFIG_LYNXKDI
Kumar Gala48626aa2008-08-15 08:24:45 -05001326static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001327 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001328{
Marian Balakowiczab00e022008-04-11 11:07:49 +02001329 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001330
Kumar Gala18178bc2008-10-21 17:25:45 -05001331 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1332 return 1;
1333
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001334#if defined(CONFIG_FIT)
1335 if (!images->legacy_hdr_valid) {
1336 fit_unsupported_reset ("Lynx");
Kumar Gala48626aa2008-08-15 08:24:45 -05001337 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001338 }
1339#endif
1340
1341 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala48626aa2008-08-15 08:24:45 -05001342
1343 return 1;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001344}
1345#endif /* CONFIG_LYNXKDI */
1346
Kumar Gala697675e2008-10-21 17:25:47 -05001347#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala48626aa2008-08-15 08:24:45 -05001348static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001349 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001350{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001351 void (*entry_point)(bd_t *);
wdenk92bbe3f2003-04-20 14:04:18 +00001352
Kumar Gala18178bc2008-10-21 17:25:45 -05001353 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1354 return 1;
1355
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001356#if defined(CONFIG_FIT)
1357 if (!images->legacy_hdr_valid) {
1358 fit_unsupported_reset ("RTEMS");
Kumar Gala48626aa2008-08-15 08:24:45 -05001359 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001360 }
1361#endif
1362
Kumar Gala93467bc2008-08-15 08:24:36 -05001363 entry_point = (void (*)(bd_t *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001364
wdenk92bbe3f2003-04-20 14:04:18 +00001365 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1366 (ulong)entry_point);
wdenk47d1a6e2002-11-03 00:01:44 +00001367
Heiko Schocher8a8ec532007-07-13 09:54:17 +02001368 show_boot_progress (15);
wdenk92bbe3f2003-04-20 14:04:18 +00001369
1370 /*
1371 * RTEMS Parameters:
1372 * r3: ptr to board info data
1373 */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001374 (*entry_point)(gd->bd);
Kumar Gala48626aa2008-08-15 08:24:45 -05001375
1376 return 1;
wdenk92bbe3f2003-04-20 14:04:18 +00001377}
Kumar Gala697675e2008-10-21 17:25:47 -05001378#endif /* CONFIG_BOOTM_RTEMS */
wdenk92bbe3f2003-04-20 14:04:18 +00001379
Jon Loeliger54324d02007-07-08 17:51:39 -05001380#if defined(CONFIG_CMD_ELF)
Kumar Gala48626aa2008-08-15 08:24:45 -05001381static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001382 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001383{
wdenk47d1a6e2002-11-03 00:01:44 +00001384 char str[80];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001385
Kumar Gala18178bc2008-10-21 17:25:45 -05001386 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1387 return 1;
1388
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001389#if defined(CONFIG_FIT)
Marian Balakowiczab00e022008-04-11 11:07:49 +02001390 if (!images->legacy_hdr_valid) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001391 fit_unsupported_reset ("VxWorks");
Kumar Gala48626aa2008-08-15 08:24:45 -05001392 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001393 }
1394#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001395
Kumar Gala93467bc2008-08-15 08:24:36 -05001396 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001397 setenv("loadaddr", str);
Kumar Gala48626aa2008-08-15 08:24:45 -05001398 do_bootvx(NULL, 0, 0, NULL);
1399
1400 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001401}
1402
Kumar Gala48626aa2008-08-15 08:24:45 -05001403static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001404 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001405{
wdenk47d1a6e2002-11-03 00:01:44 +00001406 char *local_args[2];
1407 char str[16];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001408
Kumar Gala18178bc2008-10-21 17:25:45 -05001409 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1410 return 1;
1411
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001412#if defined(CONFIG_FIT)
1413 if (!images->legacy_hdr_valid) {
1414 fit_unsupported_reset ("QNX");
Kumar Gala48626aa2008-08-15 08:24:45 -05001415 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001416 }
1417#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001418
Kumar Gala93467bc2008-08-15 08:24:36 -05001419 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001420 local_args[0] = argv[0];
1421 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala48626aa2008-08-15 08:24:45 -05001422 do_bootelf(NULL, 0, 2, local_args);
1423
1424 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001425}
Jon Loeligerd704d912007-07-10 11:02:44 -05001426#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -05001427
1428#ifdef CONFIG_INTEGRITY
1429static int do_bootm_integrity (int flag, int argc, char *argv[],
1430 bootm_headers_t *images)
1431{
1432 void (*entry_point)(void);
1433
Kumar Gala18178bc2008-10-21 17:25:45 -05001434 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1435 return 1;
1436
Peter Tyser56b8dd12008-09-08 14:56:49 -05001437#if defined(CONFIG_FIT)
1438 if (!images->legacy_hdr_valid) {
1439 fit_unsupported_reset ("INTEGRITY");
1440 return 1;
1441 }
1442#endif
1443
1444 entry_point = (void (*)(void))images->ep;
1445
1446 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1447 (ulong)entry_point);
1448
1449 show_boot_progress (15);
1450
1451 /*
1452 * INTEGRITY Parameters:
1453 * None
1454 */
1455 (*entry_point)();
1456
1457 return 1;
1458}
1459#endif