blob: 94ddac37cf33142db1d718b1b35d8ea22cb26147 [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>
Marian Balakowicz513b4a12005-10-11 19:09:42 +020080extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk874ac262003-07-24 23:38:38 +000081static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
82#endif
83
Marian Balakowicz2df645e2008-01-08 18:17:10 +010084#ifdef CONFIG_SILENT_CONSOLE
85static void fixup_silent_linux (void);
86#endif
wdenk47d1a6e2002-11-03 00:01:44 +000087
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +010088static image_header_t *image_get_kernel (ulong img_addr, int verify);
89#if defined(CONFIG_FIT)
90static int fit_check_kernel (const void *fit, int os_noffset, int verify);
wdenk591dda52002-11-18 00:14:45 +000091#endif
92
Marian Balakowiczd7c88a42008-02-29 14:58:34 +010093static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +010094 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz2df645e2008-01-08 18:17:10 +010095extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000096
wdenk47d1a6e2002-11-03 00:01:44 +000097/*
98 * Continue booting an OS image; caller already has:
99 * - copied image header to global variable `header'
100 * - checked header magic number, checksums (both header & image),
101 * - verified image architecture (PPC) and type (KERNEL or MULTI),
102 * - loaded (first part of) image to header load address,
103 * - disabled interrupts.
104 */
Kumar Gala48626aa2008-08-15 08:24:45 -0500105typedef int boot_os_fn (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100106 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000107
Kumar Gala697675e2008-10-21 17:25:47 -0500108#define CONFIG_BOOTM_LINUX 1
109#define CONFIG_BOOTM_NETBSD 1
110#define CONFIG_BOOTM_RTEMS 1
111
112#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100113extern boot_os_fn do_bootm_linux;
Kumar Gala697675e2008-10-21 17:25:47 -0500114#endif
115#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100116static boot_os_fn do_bootm_netbsd;
Kumar Gala697675e2008-10-21 17:25:47 -0500117#endif
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100118#if defined(CONFIG_LYNXKDI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100119static boot_os_fn do_bootm_lynxkdi;
120extern void lynxkdi_boot (image_header_t *);
wdenk47d1a6e2002-11-03 00:01:44 +0000121#endif
Kumar Gala697675e2008-10-21 17:25:47 -0500122#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100123static boot_os_fn do_bootm_rtems;
Kumar Gala697675e2008-10-21 17:25:47 -0500124#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;
128int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
129int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *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
Kumar Galabf3954f2008-10-21 17:25:44 -0500148#if defined(CONFIG_CMD_ELF)
149 [IH_OS_VXWORKS] = do_bootm_vxworks,
150 [IH_OS_QNX] = do_bootm_qnxelf,
151#endif
152#ifdef CONFIG_INTEGRITY
153 [IH_OS_INTEGRITY] = do_bootm_integrity,
154#endif
155};
156
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200157ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100158static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese5d5ce292006-03-13 11:16:36 +0100159
Kumar Galab937bb72008-02-27 21:51:49 -0600160void __board_lmb_reserve(struct lmb *lmb)
161{
162 /* please define platform specific board_lmb_reserve() */
163}
164void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000165
Kumar Galab02d7222008-10-16 21:52:08 -0500166void __arch_lmb_reserve(struct lmb *lmb)
167{
168 /* please define platform specific arch_lmb_reserve() */
169}
170void arch_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__arch_lmb_reserve")));
171
Kumar Gala5e726692009-08-27 08:23:55 -0500172/* Allow for arch specific config before we boot */
173void __arch_preboot_os(void)
174{
175 /* please define platform specific arch_preboot_os() */
176}
177void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
178
Kumar Galafffb1432008-08-15 08:24:37 -0500179#if defined(__ARM__)
180 #define IH_INITRD_ARCH IH_ARCH_ARM
181#elif defined(__avr32__)
182 #define IH_INITRD_ARCH IH_ARCH_AVR32
183#elif defined(__bfin__)
184 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
185#elif defined(__I386__)
186 #define IH_INITRD_ARCH IH_ARCH_I386
187#elif defined(__M68K__)
188 #define IH_INITRD_ARCH IH_ARCH_M68K
189#elif defined(__microblaze__)
190 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
191#elif defined(__mips__)
192 #define IH_INITRD_ARCH IH_ARCH_MIPS
193#elif defined(__nios__)
194 #define IH_INITRD_ARCH IH_ARCH_NIOS
195#elif defined(__nios2__)
196 #define IH_INITRD_ARCH IH_ARCH_NIOS2
197#elif defined(__PPC__)
198 #define IH_INITRD_ARCH IH_ARCH_PPC
199#elif defined(__sh__)
200 #define IH_INITRD_ARCH IH_ARCH_SH
201#elif defined(__sparc__)
202 #define IH_INITRD_ARCH IH_ARCH_SPARC
203#else
204# error Unknown CPU type
205#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000206
Kumar Galabd70bbe2008-08-15 08:24:41 -0500207static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000208{
Becky Bruced26d67c2008-06-09 20:37:18 -0500209 ulong mem_start;
210 phys_size_t mem_size;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500211 void *os_hdr;
Kumar Galafffb1432008-08-15 08:24:37 -0500212 int ret;
wdenk47d1a6e2002-11-03 00:01:44 +0000213
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100214 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Sieka47868592008-04-18 12:39:23 +0200215 images.verify = getenv_yesno ("verify");
wdenk47d1a6e2002-11-03 00:01:44 +0000216
Kumar Galada6d11e2008-08-15 08:24:40 -0500217 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000218
Kumar Galac5bacfd2008-02-27 21:51:50 -0600219 mem_start = getenv_bootm_low();
220 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000221
Kumar Galada6d11e2008-08-15 08:24:40 -0500222 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000223
Kumar Galab02d7222008-10-16 21:52:08 -0500224 arch_lmb_reserve(&images.lmb);
Kumar Galada6d11e2008-08-15 08:24:40 -0500225 board_lmb_reserve(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000226
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100227 /* get kernel image header, start address and length */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100228 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500229 &images, &images.os.image_start, &images.os.image_len);
230 if (images.os.image_len == 0) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100231 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000232 return 1;
233 }
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200234
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100235 /* get image parameters */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100236 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100237 case IMAGE_FORMAT_LEGACY:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500238 images.os.type = image_get_type (os_hdr);
239 images.os.comp = image_get_comp (os_hdr);
240 images.os.os = image_get_os (os_hdr);
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200241
Kumar Galabd70bbe2008-08-15 08:24:41 -0500242 images.os.end = image_get_image_end (os_hdr);
243 images.os.load = image_get_load (os_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100244 break;
245#if defined(CONFIG_FIT)
246 case IMAGE_FORMAT_FIT:
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100247 if (fit_image_get_type (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500248 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100249 puts ("Can't get image type!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100250 show_boot_progress (-109);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100251 return 1;
252 }
wdenk47d1a6e2002-11-03 00:01:44 +0000253
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100254 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500255 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100256 puts ("Can't get image compression!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100257 show_boot_progress (-110);
wdenk47d1a6e2002-11-03 00:01:44 +0000258 return 1;
259 }
wdenk47d1a6e2002-11-03 00:01:44 +0000260
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100261 if (fit_image_get_os (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500262 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100263 puts ("Can't get image OS!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100264 show_boot_progress (-111);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100265 return 1;
266 }
wdenk47d1a6e2002-11-03 00:01:44 +0000267
Kumar Galabd70bbe2008-08-15 08:24:41 -0500268 images.os.end = fit_get_end (images.fit_hdr_os);
wdenk47d1a6e2002-11-03 00:01:44 +0000269
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100270 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500271 &images.os.load)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100272 puts ("Can't get image load address!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100273 show_boot_progress (-112);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100274 return 1;
wdenk655a0f92003-10-30 21:49:38 +0000275 }
276 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100277#endif
278 default:
279 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000280 return 1;
281 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100282
Kumar Gala93467bc2008-08-15 08:24:36 -0500283 /* find kernel entry point */
284 if (images.legacy_hdr_valid) {
285 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
286#if defined(CONFIG_FIT)
287 } else if (images.fit_uname_os) {
288 ret = fit_image_get_entry (images.fit_hdr_os,
289 images.fit_noffset_os, &images.ep);
290 if (ret) {
291 puts ("Can't get entry point property!\n");
292 return 1;
293 }
294#endif
295 } else {
296 puts ("Could not find kernel entry point!\n");
297 return 1;
298 }
299
Kumar Galabd70bbe2008-08-15 08:24:41 -0500300 if (images.os.os == IH_OS_LINUX) {
Kumar Galafffb1432008-08-15 08:24:37 -0500301 /* find ramdisk */
302 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
303 &images.rd_start, &images.rd_end);
304 if (ret) {
Kumar Galab8ca7342008-08-29 19:08:29 -0500305 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galafffb1432008-08-15 08:24:37 -0500306 return 1;
307 }
Kumar Galaa5130ad2008-08-15 08:24:38 -0500308
309#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200310#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Galaa5130ad2008-08-15 08:24:38 -0500311 /* find flattened device tree */
312 ret = boot_get_fdt (flag, argc, argv, &images,
313 &images.ft_addr, &images.ft_len);
314 if (ret) {
315 puts ("Could not find a valid device tree\n");
316 return 1;
317 }
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500318
319 set_working_fdt_addr(images.ft_addr);
Kumar Galaa5130ad2008-08-15 08:24:38 -0500320#endif
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200321#endif
Kumar Galafffb1432008-08-15 08:24:37 -0500322 }
323
Kumar Galabd70bbe2008-08-15 08:24:41 -0500324 images.os.start = (ulong)os_hdr;
Kumar Gala18178bc2008-10-21 17:25:45 -0500325 images.state = BOOTM_STATE_START;
wdenk47d1a6e2002-11-03 00:01:44 +0000326
Kumar Galabd70bbe2008-08-15 08:24:41 -0500327 return 0;
328}
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200329
Kumar Galabd70bbe2008-08-15 08:24:41 -0500330#define BOOTM_ERR_RESET -1
331#define BOOTM_ERR_OVERLAP -2
332#define BOOTM_ERR_UNIMPLEMENTED -3
333static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
334{
335 uint8_t comp = os.comp;
336 ulong load = os.load;
337 ulong blob_start = os.start;
338 ulong blob_end = os.end;
339 ulong image_start = os.image_start;
340 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200341 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200342
Kumar Galabd70bbe2008-08-15 08:24:41 -0500343 const char *type_name = genimg_get_type_name (os.type);
wdenk452cfd62002-11-19 11:04:11 +0000344
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100345 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000346 case IH_COMP_NONE:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500347 if (load == blob_start) {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100348 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000349 } else {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100350 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000351
Minkyu Kangce56fea2009-02-18 09:05:52 +0900352 if (load != image_start) {
353 memmove_wd ((void *)load,
354 (void *)image_start, image_len, CHUNKSZ);
355 }
wdenk47d1a6e2002-11-03 00:01:44 +0000356 }
Kumar Galabd70bbe2008-08-15 08:24:41 -0500357 *load_end = load + image_len;
Guennadi Liakhovetski3110cf82008-07-31 12:35:04 +0200358 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000359 break;
360 case IH_COMP_GZIP:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100361 printf (" Uncompressing %s ... ", type_name);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500362 if (gunzip ((void *)load, unc_len,
363 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs1f2b05a2009-01-02 15:11:41 +0100364 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100365 "- must RESET board to recover\n");
Kumar Galabd70bbe2008-08-15 08:24:41 -0500366 if (boot_progress)
367 show_boot_progress (-6);
368 return BOOTM_ERR_RESET;
wdenk47d1a6e2002-11-03 00:01:44 +0000369 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100370
Kumar Galabd70bbe2008-08-15 08:24:41 -0500371 *load_end = load + image_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000372 break;
wdenk710e3502003-08-29 20:57:53 +0000373#ifdef CONFIG_BZIP2
374 case IH_COMP_BZIP2:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100375 printf (" Uncompressing %s ... ", type_name);
wdenk2cefd152004-02-08 22:55:38 +0000376 /*
377 * If we've got less than 4 MB of malloc() space,
378 * use slower decompression algorithm which requires
379 * at most 2300 KB of memory.
380 */
Kumar Galabd70bbe2008-08-15 08:24:41 -0500381 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
382 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200383 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
wdenk710e3502003-08-29 20:57:53 +0000384 if (i != BZ_OK) {
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100385 printf ("BUNZIP2: uncompress or overwrite error %d "
386 "- must RESET board to recover\n", i);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500387 if (boot_progress)
388 show_boot_progress (-6);
389 return BOOTM_ERR_RESET;
wdenk710e3502003-08-29 20:57:53 +0000390 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100391
Kumar Galabd70bbe2008-08-15 08:24:41 -0500392 *load_end = load + unc_len;
wdenk710e3502003-08-29 20:57:53 +0000393 break;
394#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200395#ifdef CONFIG_LZMA
396 case IH_COMP_LZMA:
397 printf (" Uncompressing %s ... ", type_name);
398
399 int ret = lzmaBuffToBuffDecompress(
400 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellini22834672008-09-13 10:04:32 +0200401 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +0200402 if (ret != SZ_OK) {
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200403 printf ("LZMA: uncompress or overwrite error %d "
404 "- must RESET board to recover\n", ret);
405 show_boot_progress (-6);
406 return BOOTM_ERR_RESET;
407 }
408 *load_end = load + unc_len;
409 break;
410#endif /* CONFIG_LZMA */
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100411#ifdef CONFIG_LZO
412 case IH_COMP_LZO:
413 printf (" Uncompressing %s ... ", type_name);
414
415 int ret = lzop_decompress((const unsigned char *)image_start,
416 image_len, (unsigned char *)load,
417 &unc_len);
418 if (ret != LZO_E_OK) {
419 printf ("LZO: uncompress or overwrite error %d "
420 "- must RESET board to recover\n", ret);
421 if (boot_progress)
422 show_boot_progress (-6);
423 return BOOTM_ERR_RESET;
424 }
425
426 *load_end = load + unc_len;
427 break;
428#endif /* CONFIG_LZO */
wdenk47d1a6e2002-11-03 00:01:44 +0000429 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100430 printf ("Unimplemented compression type %d\n", comp);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500431 return BOOTM_ERR_UNIMPLEMENTED;
wdenk47d1a6e2002-11-03 00:01:44 +0000432 }
wdenk42c05472004-03-23 22:14:11 +0000433 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARDfcd96442008-09-09 22:18:24 +0200434 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500435 if (boot_progress)
436 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000437
Kumar Galabd70bbe2008-08-15 08:24:41 -0500438 if ((load < blob_end) && (*load_end > blob_start)) {
439 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 +0200440 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000441
Kumar Galabd70bbe2008-08-15 08:24:41 -0500442 return BOOTM_ERR_OVERLAP;
443 }
444
445 return 0;
446}
447
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200448static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
449{
450 char *s;
451 int (*appl)(int, char *[]);
452
453 /* Don't start if "autostart" is set to "no" */
454 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
455 char buf[32];
456 sprintf(buf, "%lX", images.os.image_len);
457 setenv("filesize", buf);
458 return 0;
459 }
460 appl = (int (*)(int, char *[]))ntohl(images.ep);
461 (*appl)(argc-1, &argv[1]);
462
463 return 0;
464}
465
Kumar Gala18178bc2008-10-21 17:25:45 -0500466/* we overload the cmd field with our state machine info instead of a
467 * function pointer */
468cmd_tbl_t cmd_bootm_sub[] = {
469 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
470 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
471#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
472 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
473#endif
474#ifdef CONFIG_OF_LIBFDT
475 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
476#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500477 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser694a3932009-11-18 19:08:59 -0600478 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -0500479 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
480 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
481};
482
483int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
484{
485 int ret = 0;
486 int state;
487 cmd_tbl_t *c;
488 boot_os_fn *boot_fn;
489
490 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
491
492 if (c) {
493 state = (int)c->cmd;
494
495 /* treat start special since it resets the state machine */
496 if (state == BOOTM_STATE_START) {
497 argc--;
498 argv++;
499 return bootm_start(cmdtp, flag, argc, argv);
500 }
501 }
502 /* Unrecognized command */
503 else {
Peter Tyserddb3af92009-01-27 18:03:10 -0600504 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500505 return 1;
506 }
507
508 if (images.state >= state) {
509 printf ("Trying to execute a command out of order\n");
Peter Tyserddb3af92009-01-27 18:03:10 -0600510 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500511 return 1;
512 }
513
514 images.state |= state;
515 boot_fn = boot_os[images.os.os];
516
517 switch (state) {
518 ulong load_end;
519 case BOOTM_STATE_START:
520 /* should never occur */
521 break;
522 case BOOTM_STATE_LOADOS:
523 ret = bootm_load_os(images.os, &load_end, 0);
524 if (ret)
525 return ret;
526
527 lmb_reserve(&images.lmb, images.os.load,
528 (load_end - images.os.load));
529 break;
530#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
531 case BOOTM_STATE_RAMDISK:
532 {
533 ulong rd_len = images.rd_end - images.rd_start;
534 char str[17];
535
536 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
537 rd_len, &images.initrd_start, &images.initrd_end);
538 if (ret)
539 return ret;
540
541 sprintf(str, "%lx", images.initrd_start);
542 setenv("initrd_start", str);
543 sprintf(str, "%lx", images.initrd_end);
544 setenv("initrd_end", str);
545 }
546 break;
547#endif
Remy Bohmer00d86562009-10-29 14:24:22 +0100548#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala18178bc2008-10-21 17:25:45 -0500549 case BOOTM_STATE_FDT:
550 {
551 ulong bootmap_base = getenv_bootm_low();
552 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
553 &images.ft_addr, &images.ft_len);
554 break;
555 }
556#endif
557 case BOOTM_STATE_OS_CMDLINE:
558 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
559 if (ret)
560 printf ("cmdline subcommand not supported\n");
561 break;
562 case BOOTM_STATE_OS_BD_T:
563 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
564 if (ret)
565 printf ("bdt subcommand not supported\n");
566 break;
567 case BOOTM_STATE_OS_PREP:
568 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
569 if (ret)
570 printf ("prep subcommand not supported\n");
571 break;
572 case BOOTM_STATE_OS_GO:
573 disable_interrupts();
Kumar Gala5e726692009-08-27 08:23:55 -0500574 arch_preboot_os();
Kumar Gala18178bc2008-10-21 17:25:45 -0500575 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
576 break;
577 }
578
579 return ret;
580}
581
Kumar Galabd70bbe2008-08-15 08:24:41 -0500582/*******************************************************************/
583/* bootm - boot application image from image in memory */
584/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -0500585
Kumar Galabd70bbe2008-08-15 08:24:41 -0500586int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
587{
Kumar Galabd70bbe2008-08-15 08:24:41 -0500588 ulong iflag;
589 ulong load_end = 0;
590 int ret;
Kumar Galabf3954f2008-10-21 17:25:44 -0500591 boot_os_fn *boot_fn;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500592#ifndef CONFIG_RELOC_FIXUP_WORKS
593 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -0500594
595 /* relocate boot function table */
596 if (!relocated) {
597 int i;
598 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundel77094472009-07-13 16:01:18 +0200599 if (boot_os[i] != NULL)
600 boot_os[i] += gd->reloc_off;
Kumar Galabf3954f2008-10-21 17:25:44 -0500601 relocated = 1;
602 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500603#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500604
Kumar Gala18178bc2008-10-21 17:25:45 -0500605 /* determine if we have a sub command */
606 if (argc > 1) {
607 char *endp;
608
609 simple_strtoul(argv[1], &endp, 16);
610 /* endp pointing to NULL means that argv[1] was just a
611 * valid number, pass it along to the normal bootm processing
612 *
613 * If endp is ':' or '#' assume a FIT identifier so pass
614 * along for normal processing.
615 *
616 * Right now we assume the first arg should never be '-'
617 */
618 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
619 return do_bootm_subcommand(cmdtp, flag, argc, argv);
620 }
621
Anatolij Gustschin128de002008-08-29 21:04:45 +0200622 if (bootm_start(cmdtp, flag, argc, argv))
623 return 1;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500624
625 /*
626 * We have reached the point of no return: we are going to
627 * overwrite all exception vector code, so we cannot easily
628 * recover from any failures any more...
629 */
630 iflag = disable_interrupts();
631
632#if defined(CONFIG_CMD_USB)
633 /*
634 * turn off USB to prevent the host controller from writing to the
635 * SDRAM while Linux is booting. This could happen (at least for OHCI
636 * controller), because the HCCA (Host Controller Communication Area)
637 * lies within the SDRAM and the host controller writes continously to
638 * this area (as busmaster!). The HccaFrameNumber is for example
639 * updated every 1 ms within the HCCA structure in SDRAM! For more
640 * details see the OpenHCI specification.
641 */
642 usb_stop();
643#endif
644
645#ifdef CONFIG_AMIGAONEG3SE
646 /*
647 * We've possible left the caches enabled during
648 * bios emulation, so turn them off again
649 */
650 icache_disable();
651 dcache_disable();
652#endif
653
654 ret = bootm_load_os(images.os, &load_end, 1);
655
656 if (ret < 0) {
657 if (ret == BOOTM_ERR_RESET)
Marian Balakowiczab00e022008-04-11 11:07:49 +0200658 do_reset (cmdtp, flag, argc, argv);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500659 if (ret == BOOTM_ERR_OVERLAP) {
660 if (images.legacy_hdr_valid) {
661 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
662 puts ("WARNING: legacy format multi component "
663 "image overwritten\n");
664 } else {
665 puts ("ERROR: new format image overwritten - "
666 "must RESET the board to recover\n");
667 show_boot_progress (-113);
668 do_reset (cmdtp, flag, argc, argv);
669 }
670 }
671 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
672 if (iflag)
673 enable_interrupts();
674 show_boot_progress (-7);
675 return 1;
Marian Balakowiczab00e022008-04-11 11:07:49 +0200676 }
wdenk47d1a6e2002-11-03 00:01:44 +0000677 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100678
Kumar Galabd70bbe2008-08-15 08:24:41 -0500679 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
wdenk47d1a6e2002-11-03 00:01:44 +0000680
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200681 if (images.os.type == IH_TYPE_STANDALONE) {
682 if (iflag)
683 enable_interrupts();
684 /* This may return when 'autostart' is 'no' */
685 bootm_start_standalone(iflag, argc, argv);
686 return 0;
687 }
688
Kumar Galabd70bbe2008-08-15 08:24:41 -0500689 show_boot_progress (8);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600690
wdenk808532a2003-10-10 10:05:42 +0000691#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabf3954f2008-10-21 17:25:44 -0500692 if (images.os.os == IH_OS_LINUX)
693 fixup_silent_linux();
wdenk808532a2003-10-10 10:05:42 +0000694#endif
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100695
Kumar Galabf3954f2008-10-21 17:25:44 -0500696 boot_fn = boot_os[images.os.os];
Detlev Zundel77094472009-07-13 16:01:18 +0200697
698 if (boot_fn == NULL) {
699 if (iflag)
700 enable_interrupts();
701 printf ("ERROR: booting os '%s' (%d) is not supported\n",
702 genimg_get_os_name(images.os.os), images.os.os);
703 show_boot_progress (-8);
704 return 1;
705 }
706
Kumar Gala5e726692009-08-27 08:23:55 -0500707 arch_preboot_os();
708
Kumar Galabf3954f2008-10-21 17:25:44 -0500709 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000710
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200711 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000712#ifdef DEBUG
wdenk42c05472004-03-23 22:14:11 +0000713 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000714#endif
Kumar Gala48626aa2008-08-15 08:24:45 -0500715 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicz9c220262008-03-12 10:14:57 +0100716
wdenk47d1a6e2002-11-03 00:01:44 +0000717 return 1;
718}
719
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100720/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100721 * image_get_kernel - verify legacy format kernel image
722 * @img_addr: in RAM address of the legacy format image to be verified
723 * @verify: data CRC verification flag
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100724 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100725 * image_get_kernel() verifies legacy image integrity and returns pointer to
726 * legacy image header if image verification was completed successfully.
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100727 *
728 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100729 * pointer to a legacy image header if valid image was found
730 * otherwise return NULL
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100731 */
Marian Balakowicz59504f62008-02-27 11:02:07 +0100732static image_header_t *image_get_kernel (ulong img_addr, int verify)
wdenk808532a2003-10-10 10:05:42 +0000733{
Marian Balakowicz59504f62008-02-27 11:02:07 +0100734 image_header_t *hdr = (image_header_t *)img_addr;
wdenk808532a2003-10-10 10:05:42 +0000735
Marian Balakowicz59504f62008-02-27 11:02:07 +0100736 if (!image_check_magic(hdr)) {
737 puts ("Bad Magic Number\n");
738 show_boot_progress (-1);
739 return NULL;
740 }
741 show_boot_progress (2);
wdenk808532a2003-10-10 10:05:42 +0000742
Marian Balakowicz59504f62008-02-27 11:02:07 +0100743 if (!image_check_hcrc (hdr)) {
744 puts ("Bad Header Checksum\n");
745 show_boot_progress (-2);
746 return NULL;
747 }
748
749 show_boot_progress (3);
750 image_print_contents (hdr);
751
752 if (verify) {
753 puts (" Verifying Checksum ... ");
754 if (!image_check_dcrc (hdr)) {
755 printf ("Bad Data CRC\n");
756 show_boot_progress (-3);
757 return NULL;
wdenk808532a2003-10-10 10:05:42 +0000758 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100759 puts ("OK\n");
wdenk808532a2003-10-10 10:05:42 +0000760 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100761 show_boot_progress (4);
wdenk808532a2003-10-10 10:05:42 +0000762
Marian Balakowicz59504f62008-02-27 11:02:07 +0100763 if (!image_check_target_arch (hdr)) {
764 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
765 show_boot_progress (-4);
766 return NULL;
767 }
768 return hdr;
wdenk808532a2003-10-10 10:05:42 +0000769}
wdenk808532a2003-10-10 10:05:42 +0000770
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100771/**
772 * fit_check_kernel - verify FIT format kernel subimage
773 * @fit_hdr: pointer to the FIT image header
774 * os_noffset: kernel subimage node offset within FIT image
775 * @verify: data CRC verification flag
776 *
777 * fit_check_kernel() verifies integrity of the kernel subimage and from
778 * specified FIT image.
779 *
780 * returns:
781 * 1, on success
782 * 0, on failure
783 */
784#if defined (CONFIG_FIT)
785static int fit_check_kernel (const void *fit, int os_noffset, int verify)
wdenk47d1a6e2002-11-03 00:01:44 +0000786{
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100787 fit_image_print (fit, os_noffset, " ");
wdenk47d1a6e2002-11-03 00:01:44 +0000788
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100789 if (verify) {
790 puts (" Verifying Hash Integrity ... ");
791 if (!fit_image_check_hashes (fit, os_noffset)) {
792 puts ("Bad Data Hash\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100793 show_boot_progress (-104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100794 return 0;
795 }
796 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000797 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100798 show_boot_progress (105);
wdenk47d1a6e2002-11-03 00:01:44 +0000799
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100800 if (!fit_image_check_target_arch (fit, os_noffset)) {
801 puts ("Unsupported Architecture\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100802 show_boot_progress (-105);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100803 return 0;
804 }
wdenk47d1a6e2002-11-03 00:01:44 +0000805
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100806 show_boot_progress (106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100807 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
808 puts ("Not a kernel image\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100809 show_boot_progress (-106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100810 return 0;
811 }
wdenk47d1a6e2002-11-03 00:01:44 +0000812
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100813 show_boot_progress (107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100814 return 1;
815}
816#endif /* CONFIG_FIT */
wdenk56f94be2002-11-05 16:35:14 +0000817
Marian Balakowicz59504f62008-02-27 11:02:07 +0100818/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100819 * boot_get_kernel - find kernel image
Marian Balakowicz59504f62008-02-27 11:02:07 +0100820 * @os_data: pointer to a ulong variable, will hold os data start address
821 * @os_len: pointer to a ulong variable, will hold os data length
822 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100823 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz59504f62008-02-27 11:02:07 +0100824 * and locates kernel data.
825 *
826 * returns:
827 * pointer to image header if valid image was found, plus kernel start
828 * address and length, otherwise NULL
829 */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100830static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100831 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100832{
833 image_header_t *hdr;
834 ulong img_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100835#if defined(CONFIG_FIT)
836 void *fit_hdr;
837 const char *fit_uname_config = NULL;
838 const char *fit_uname_kernel = NULL;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100839 const void *data;
840 size_t len;
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100841 int cfg_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100842 int os_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100843#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000844
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100845 /* find out kernel image address */
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100846 if (argc < 2) {
847 img_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100848 debug ("* kernel: default image load address = 0x%08lx\n",
849 load_addr);
850#if defined(CONFIG_FIT)
851 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
852 &fit_uname_config)) {
853 debug ("* kernel: config '%s' from image at 0x%08lx\n",
854 fit_uname_config, img_addr);
855 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
856 &fit_uname_kernel)) {
857 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
858 fit_uname_kernel, img_addr);
859#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100860 } else {
861 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100862 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100863 }
wdenk56f94be2002-11-05 16:35:14 +0000864
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100865 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000866
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100867 /* copy from dataflash if needed */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100868 img_addr = genimg_get_image (img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000869
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100870 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100871 *os_data = *os_len = 0;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100872 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100873 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100874 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
875 img_addr);
Marian Balakowicz59504f62008-02-27 11:02:07 +0100876 hdr = image_get_kernel (img_addr, images->verify);
877 if (!hdr)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100878 return NULL;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100879 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000880
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100881 /* get os_data and os_len */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100882 switch (image_get_type (hdr)) {
883 case IH_TYPE_KERNEL:
884 *os_data = image_get_data (hdr);
885 *os_len = image_get_data_size (hdr);
886 break;
887 case IH_TYPE_MULTI:
888 image_multi_getimg (hdr, 0, os_data, os_len);
889 break;
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200890 case IH_TYPE_STANDALONE:
891 if (argc >2) {
892 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
893 }
894 *os_data = image_get_data (hdr);
895 *os_len = image_get_data_size (hdr);
896 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100897 default:
898 printf ("Wrong Image Type for %s command\n", cmdtp->name);
899 show_boot_progress (-5);
900 return NULL;
901 }
Marian Balakowiczab00e022008-04-11 11:07:49 +0200902
903 /*
904 * copy image header to allow for image overwrites during kernel
905 * decompression.
906 */
907 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
908
909 /* save pointer to image header */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100910 images->legacy_hdr_os = hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000911
Marian Balakowiczab00e022008-04-11 11:07:49 +0200912 images->legacy_hdr_valid = 1;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100913 show_boot_progress (6);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100914 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100915#if defined(CONFIG_FIT)
916 case IMAGE_FORMAT_FIT:
917 fit_hdr = (void *)img_addr;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100918 printf ("## Booting kernel from FIT Image at %08lx ...\n",
919 img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000920
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100921 if (!fit_check_format (fit_hdr)) {
922 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100923 show_boot_progress (-100);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100924 return NULL;
925 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100926 show_boot_progress (100);
wdenk47d1a6e2002-11-03 00:01:44 +0000927
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100928 if (!fit_uname_kernel) {
929 /*
930 * no kernel image node unit name, try to get config
931 * node first. If config unit node name is NULL
932 * fit_conf_get_node() will try to find default config node
933 */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100934 show_boot_progress (101);
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100935 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
936 if (cfg_noffset < 0) {
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100937 show_boot_progress (-101);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100938 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100939 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100940 /* save configuration uname provided in the first
941 * bootm argument
942 */
943 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
944 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
945 show_boot_progress (103);
wdenk47d1a6e2002-11-03 00:01:44 +0000946
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100947 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100948 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
949 } else {
950 /* get kernel component image node offset */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100951 show_boot_progress (102);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100952 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
953 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100954 if (os_noffset < 0) {
955 show_boot_progress (-103);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100956 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100957 }
wdenk47d1a6e2002-11-03 00:01:44 +0000958
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100959 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
wdenk47d1a6e2002-11-03 00:01:44 +0000960
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100961 show_boot_progress (104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100962 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
963 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500964
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100965 /* get kernel image data address and length */
966 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
967 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100968 show_boot_progress (-107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100969 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500970 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100971 show_boot_progress (108);
wdenk47d1a6e2002-11-03 00:01:44 +0000972
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100973 *os_len = len;
974 *os_data = (ulong)data;
975 images->fit_hdr_os = fit_hdr;
976 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100977 images->fit_noffset_os = os_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100978 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100979#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100980 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100981 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100982 show_boot_progress (-108);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100983 return NULL;
984 }
wdenk47d1a6e2002-11-03 00:01:44 +0000985
Wolfgang Denk8d541882008-07-10 13:16:09 +0200986 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100987 *os_data, *os_len, *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +0000988
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100989 return (void *)img_addr;
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100990}
wdenk47d1a6e2002-11-03 00:01:44 +0000991
wdenk47d1a6e2002-11-03 00:01:44 +0000992U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200993 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600994 "boot application image from memory",
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100995 "[addr [arg ...]]\n - boot application image stored in memory\n"
996 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
997 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100998#if defined(CONFIG_OF_LIBFDT)
wdenk47d1a6e2002-11-03 00:01:44 +0000999 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1000 "\ta third argument is required which is the address of the\n"
1001 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1002 "\tuse a '-' for the second argument. If you do not pass a third\n"
1003 "\ta bd_info struct will be passed instead\n"
1004#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +01001005#if defined(CONFIG_FIT)
1006 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1007 "\tmust be extened to include component or configuration unit name:\n"
1008 "\taddr:<subimg_uname> - direct component image specification\n"
1009 "\taddr#<conf_uname> - configuration specification\n"
1010 "\tUse iminfo command to get the list of existing component\n"
1011 "\timages and configurations.\n"
1012#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001013 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1014 "must be\n"
1015 "issued in the order below (it's ok to not issue all sub-commands):\n"
1016 "\tstart [addr [arg ...]]\n"
1017 "\tloados - load OS image\n"
1018#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1019 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1020#endif
1021#if defined(CONFIG_OF_LIBFDT)
1022 "\tfdt - relocate flat device tree\n"
1023#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001024 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser694a3932009-11-18 19:08:59 -06001025 "\tbdt - OS specific bd_t processing\n"
Kumar Gala18178bc2008-10-21 17:25:45 -05001026 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001027 "\tgo - start OS"
wdenk47d1a6e2002-11-03 00:01:44 +00001028);
wdenk47d1a6e2002-11-03 00:01:44 +00001029
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001030/*******************************************************************/
1031/* bootd - boot default image */
1032/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001033#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001034int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1035{
1036 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001037
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001038#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001039 if (run_command (getenv ("bootcmd"), flag) < 0)
1040 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001041#else
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001042 if (parse_string_outer (getenv ("bootcmd"),
1043 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1044 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001045#endif
1046 return rcode;
1047}
wdenk47d1a6e2002-11-03 00:01:44 +00001048
wdenkf287a242003-07-01 21:06:45 +00001049U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001050 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001051 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001052 ""
wdenk3086a972003-06-28 23:11:04 +00001053);
wdenk47d1a6e2002-11-03 00:01:44 +00001054
wdenk3086a972003-06-28 23:11:04 +00001055/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +00001056U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001057 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001058 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001059 ""
wdenk57b2d802003-06-27 21:31:46 +00001060);
wdenk47d1a6e2002-11-03 00:01:44 +00001061
wdenk47d1a6e2002-11-03 00:01:44 +00001062#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001063
wdenk47d1a6e2002-11-03 00:01:44 +00001064
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001065/*******************************************************************/
1066/* iminfo - print header info for a requested image */
1067/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001068#if defined(CONFIG_CMD_IMI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001069int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001070{
1071 int arg;
1072 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001073 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001074
wdenk47d1a6e2002-11-03 00:01:44 +00001075 if (argc < 2) {
1076 return image_info (load_addr);
1077 }
wdenk47d1a6e2002-11-03 00:01:44 +00001078
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001079 for (arg = 1; arg < argc; ++arg) {
1080 addr = simple_strtoul (argv[arg], NULL, 16);
1081 if (image_info (addr) != 0)
1082 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001083 }
1084 return rcode;
1085}
wdenk47d1a6e2002-11-03 00:01:44 +00001086
wdenk47d1a6e2002-11-03 00:01:44 +00001087static int image_info (ulong addr)
1088{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001089 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001090
wdenk47d1a6e2002-11-03 00:01:44 +00001091 printf ("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001092
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001093 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001094 case IMAGE_FORMAT_LEGACY:
1095 puts (" Legacy image found\n");
1096 if (!image_check_magic (hdr)) {
1097 puts (" Bad Magic Number\n");
1098 return 1;
1099 }
wdenk47d1a6e2002-11-03 00:01:44 +00001100
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001101 if (!image_check_hcrc (hdr)) {
1102 puts (" Bad Header Checksum\n");
1103 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001104 }
1105
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001106 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001107
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001108 puts (" Verifying Checksum ... ");
1109 if (!image_check_dcrc (hdr)) {
1110 puts (" Bad Data CRC\n");
1111 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001112 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001113 puts ("OK\n");
1114 return 0;
1115#if defined(CONFIG_FIT)
1116 case IMAGE_FORMAT_FIT:
1117 puts (" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001118
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001119 if (!fit_check_format (hdr)) {
1120 puts ("Bad FIT image format!\n");
1121 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001122 }
1123
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001124 fit_print_contents (hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +02001125
1126 if (!fit_all_image_check_hashes (hdr)) {
1127 puts ("Bad hash in FIT image!\n");
1128 return 1;
1129 }
1130
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001131 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001132#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001133 default:
1134 puts ("Unknown image format!\n");
1135 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001136 }
wdenk47d1a6e2002-11-03 00:01:44 +00001137
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001138 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001139}
wdenk47d1a6e2002-11-03 00:01:44 +00001140
wdenkf287a242003-07-01 21:06:45 +00001141U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001142 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001143 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +00001144 "addr [addr ...]\n"
1145 " - print header information for application image starting at\n"
1146 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001147 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +00001148);
wdenk47d1a6e2002-11-03 00:01:44 +00001149#endif
1150
1151
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001152/*******************************************************************/
1153/* imls - list all images found in flash */
1154/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001155#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +00001156int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1157{
1158 flash_info_t *info;
1159 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001160 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +00001161
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001162 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001163 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +00001164
wdenk874ac262003-07-24 23:38:38 +00001165 if (info->flash_id == FLASH_UNKNOWN)
1166 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001167 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +00001168
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001169 hdr = (void *)info->start[j];
1170 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01001171 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001172
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001173 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001174 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001175 if (!image_check_hcrc (hdr))
1176 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001177
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001178 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1179 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001180
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001181 puts (" Verifying Checksum ... ");
1182 if (!image_check_dcrc (hdr)) {
1183 puts ("Bad Data CRC\n");
1184 } else {
1185 puts ("OK\n");
1186 }
1187 break;
1188#if defined(CONFIG_FIT)
1189 case IMAGE_FORMAT_FIT:
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001190 if (!fit_check_format (hdr))
1191 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001192
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001193 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001194 fit_print_contents (hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001195 break;
1196#endif
1197 default:
1198 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001199 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001200
wdenk0a658552003-08-05 17:43:17 +00001201next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001202 }
wdenk0a658552003-08-05 17:43:17 +00001203next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001204 }
1205
wdenk874ac262003-07-24 23:38:38 +00001206 return (0);
1207}
wdenk47d1a6e2002-11-03 00:01:44 +00001208
wdenk874ac262003-07-24 23:38:38 +00001209U_BOOT_CMD(
1210 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001211 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +00001212 "\n"
1213 " - Prints information about all images found at sector\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001214 " boundaries in flash."
wdenk874ac262003-07-24 23:38:38 +00001215);
wdenk47d1a6e2002-11-03 00:01:44 +00001216#endif
1217
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001218/*******************************************************************/
Marian Balakowiczc40032c2008-01-31 13:59:09 +01001219/* helper routines */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001220/*******************************************************************/
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001221#ifdef CONFIG_SILENT_CONSOLE
1222static void fixup_silent_linux ()
1223{
1224 char buf[256], *start, *end;
1225 char *cmdline = getenv ("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001226
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001227 /* Only fix cmdline when requested */
1228 if (!(gd->flags & GD_FLG_SILENT))
1229 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001230
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001231 debug ("before silent fix-up: %s\n", cmdline);
1232 if (cmdline) {
1233 if ((start = strstr (cmdline, "console=")) != NULL) {
1234 end = strchr (start, ' ');
1235 strncpy (buf, cmdline, (start - cmdline + 8));
1236 if (end)
1237 strcpy (buf + (start - cmdline + 8), end);
1238 else
1239 buf[start - cmdline + 8] = '\0';
1240 } else {
1241 strcpy (buf, cmdline);
1242 strcat (buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001243 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001244 } else {
1245 strcpy (buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001246 }
wdenk47d1a6e2002-11-03 00:01:44 +00001247
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001248 setenv ("bootargs", buf);
1249 debug ("after silent fix-up: %s\n", buf);
1250}
1251#endif /* CONFIG_SILENT_CONSOLE */
wdenk47d1a6e2002-11-03 00:01:44 +00001252
wdenk47d1a6e2002-11-03 00:01:44 +00001253
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001254/*******************************************************************/
1255/* OS booting routines */
1256/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001257
Kumar Gala697675e2008-10-21 17:25:47 -05001258#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala48626aa2008-08-15 08:24:45 -05001259static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001260 bootm_headers_t *images)
wdenk92bbe3f2003-04-20 14:04:18 +00001261{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001262 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001263 image_header_t *os_hdr, *hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001264 ulong kernel_data, kernel_len;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001265 char *consdev;
1266 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001267
Kumar Gala18178bc2008-10-21 17:25:45 -05001268 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1269 return 1;
1270
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001271#if defined(CONFIG_FIT)
1272 if (!images->legacy_hdr_valid) {
1273 fit_unsupported_reset ("NetBSD");
Kumar Gala48626aa2008-08-15 08:24:45 -05001274 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001275 }
1276#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001277 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001278
1279 /*
1280 * Booting a (NetBSD) kernel image
1281 *
1282 * This process is pretty similar to a standalone application:
1283 * The (first part of an multi-) image must be a stage-2 loader,
1284 * which in turn is responsible for loading & invoking the actual
1285 * kernel. The only differences are the parameters being passed:
1286 * besides the board info strucure, the loader expects a command
1287 * line, the name of the console device, and (optionally) the
1288 * address of the original image header.
1289 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001290 os_hdr = NULL;
Marian Balakowiczab00e022008-04-11 11:07:49 +02001291 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001292 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1293 if (kernel_len)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001294 os_hdr = hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001295 }
wdenk47d1a6e2002-11-03 00:01:44 +00001296
1297 consdev = "";
1298#if defined (CONFIG_8xx_CONS_SMC1)
1299 consdev = "smc1";
1300#elif defined (CONFIG_8xx_CONS_SMC2)
1301 consdev = "smc2";
1302#elif defined (CONFIG_8xx_CONS_SCC2)
1303 consdev = "scc2";
1304#elif defined (CONFIG_8xx_CONS_SCC3)
1305 consdev = "scc3";
1306#endif
1307
1308 if (argc > 2) {
1309 ulong len;
1310 int i;
1311
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001312 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001313 len += strlen (argv[i]) + 1;
1314 cmdline = malloc (len);
1315
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001316 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001317 if (i > 2)
1318 cmdline[len++] = ' ';
1319 strcpy (&cmdline[len], argv[i]);
1320 len += strlen (argv[i]);
1321 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001322 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001323 cmdline = "";
1324 }
1325
Kumar Gala93467bc2008-08-15 08:24:36 -05001326 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001327
1328 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1329 (ulong)loader);
1330
1331 show_boot_progress (15);
1332
1333 /*
1334 * NetBSD Stage-2 Loader Parameters:
1335 * r3: ptr to board info data
1336 * r4: image address
1337 * r5: console device
1338 * r6: boot args string
1339 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001340 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala48626aa2008-08-15 08:24:45 -05001341
1342 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001343}
Kumar Gala697675e2008-10-21 17:25:47 -05001344#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001345
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001346#ifdef CONFIG_LYNXKDI
Kumar Gala48626aa2008-08-15 08:24:45 -05001347static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001348 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001349{
Marian Balakowiczab00e022008-04-11 11:07:49 +02001350 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001351
Kumar Gala18178bc2008-10-21 17:25:45 -05001352 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1353 return 1;
1354
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001355#if defined(CONFIG_FIT)
1356 if (!images->legacy_hdr_valid) {
1357 fit_unsupported_reset ("Lynx");
Kumar Gala48626aa2008-08-15 08:24:45 -05001358 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001359 }
1360#endif
1361
1362 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala48626aa2008-08-15 08:24:45 -05001363
1364 return 1;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001365}
1366#endif /* CONFIG_LYNXKDI */
1367
Kumar Gala697675e2008-10-21 17:25:47 -05001368#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala48626aa2008-08-15 08:24:45 -05001369static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001370 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001371{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001372 void (*entry_point)(bd_t *);
wdenk92bbe3f2003-04-20 14:04:18 +00001373
Kumar Gala18178bc2008-10-21 17:25:45 -05001374 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1375 return 1;
1376
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001377#if defined(CONFIG_FIT)
1378 if (!images->legacy_hdr_valid) {
1379 fit_unsupported_reset ("RTEMS");
Kumar Gala48626aa2008-08-15 08:24:45 -05001380 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001381 }
1382#endif
1383
Kumar Gala93467bc2008-08-15 08:24:36 -05001384 entry_point = (void (*)(bd_t *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001385
wdenk92bbe3f2003-04-20 14:04:18 +00001386 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1387 (ulong)entry_point);
wdenk47d1a6e2002-11-03 00:01:44 +00001388
Heiko Schocher8a8ec532007-07-13 09:54:17 +02001389 show_boot_progress (15);
wdenk92bbe3f2003-04-20 14:04:18 +00001390
1391 /*
1392 * RTEMS Parameters:
1393 * r3: ptr to board info data
1394 */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001395 (*entry_point)(gd->bd);
Kumar Gala48626aa2008-08-15 08:24:45 -05001396
1397 return 1;
wdenk92bbe3f2003-04-20 14:04:18 +00001398}
Kumar Gala697675e2008-10-21 17:25:47 -05001399#endif /* CONFIG_BOOTM_RTEMS */
wdenk92bbe3f2003-04-20 14:04:18 +00001400
Jon Loeliger54324d02007-07-08 17:51:39 -05001401#if defined(CONFIG_CMD_ELF)
Kumar Gala48626aa2008-08-15 08:24:45 -05001402static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001403 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001404{
wdenk47d1a6e2002-11-03 00:01:44 +00001405 char str[80];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001406
Kumar Gala18178bc2008-10-21 17:25:45 -05001407 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1408 return 1;
1409
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001410#if defined(CONFIG_FIT)
Marian Balakowiczab00e022008-04-11 11:07:49 +02001411 if (!images->legacy_hdr_valid) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001412 fit_unsupported_reset ("VxWorks");
Kumar Gala48626aa2008-08-15 08:24:45 -05001413 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001414 }
1415#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001416
Kumar Gala93467bc2008-08-15 08:24:36 -05001417 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001418 setenv("loadaddr", str);
Kumar Gala48626aa2008-08-15 08:24:45 -05001419 do_bootvx(NULL, 0, 0, NULL);
1420
1421 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001422}
1423
Kumar Gala48626aa2008-08-15 08:24:45 -05001424static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001425 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001426{
wdenk47d1a6e2002-11-03 00:01:44 +00001427 char *local_args[2];
1428 char str[16];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001429
Kumar Gala18178bc2008-10-21 17:25:45 -05001430 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1431 return 1;
1432
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001433#if defined(CONFIG_FIT)
1434 if (!images->legacy_hdr_valid) {
1435 fit_unsupported_reset ("QNX");
Kumar Gala48626aa2008-08-15 08:24:45 -05001436 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001437 }
1438#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001439
Kumar Gala93467bc2008-08-15 08:24:36 -05001440 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001441 local_args[0] = argv[0];
1442 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala48626aa2008-08-15 08:24:45 -05001443 do_bootelf(NULL, 0, 2, local_args);
1444
1445 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001446}
Jon Loeligerd704d912007-07-10 11:02:44 -05001447#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -05001448
1449#ifdef CONFIG_INTEGRITY
1450static int do_bootm_integrity (int flag, int argc, char *argv[],
1451 bootm_headers_t *images)
1452{
1453 void (*entry_point)(void);
1454
Kumar Gala18178bc2008-10-21 17:25:45 -05001455 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1456 return 1;
1457
Peter Tyser56b8dd12008-09-08 14:56:49 -05001458#if defined(CONFIG_FIT)
1459 if (!images->legacy_hdr_valid) {
1460 fit_unsupported_reset ("INTEGRITY");
1461 return 1;
1462 }
1463#endif
1464
1465 entry_point = (void (*)(void))images->ep;
1466
1467 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1468 (ulong)entry_point);
1469
1470 show_boot_progress (15);
1471
1472 /*
1473 * INTEGRITY Parameters:
1474 * None
1475 */
1476 (*entry_point)();
1477
1478 return 1;
1479}
1480#endif