blob: 880320211ee6f36f95a49f1694deae1e234d5c94 [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#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100109extern boot_os_fn do_bootm_linux;
Kumar Gala697675e2008-10-21 17:25:47 -0500110#endif
111#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100112static boot_os_fn do_bootm_netbsd;
Kumar Gala697675e2008-10-21 17:25:47 -0500113#endif
Marian Balakowiczb4a12a92008-01-08 18:12:17 +0100114#if defined(CONFIG_LYNXKDI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100115static boot_os_fn do_bootm_lynxkdi;
116extern void lynxkdi_boot (image_header_t *);
wdenk47d1a6e2002-11-03 00:01:44 +0000117#endif
Kumar Gala697675e2008-10-21 17:25:47 -0500118#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100119static boot_os_fn do_bootm_rtems;
Kumar Gala697675e2008-10-21 17:25:47 -0500120#endif
Jon Loeliger54324d02007-07-08 17:51:39 -0500121#if defined(CONFIG_CMD_ELF)
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100122static boot_os_fn do_bootm_vxworks;
123static boot_os_fn do_bootm_qnxelf;
124int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
125int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeligerd704d912007-07-10 11:02:44 -0500126#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -0500127#if defined(CONFIG_INTEGRITY)
128static boot_os_fn do_bootm_integrity;
129#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000130
Mike Frysinger6c1616a2009-11-03 11:36:26 -0500131static boot_os_fn *boot_os[] = {
Kumar Gala697675e2008-10-21 17:25:47 -0500132#ifdef CONFIG_BOOTM_LINUX
Kumar Galabf3954f2008-10-21 17:25:44 -0500133 [IH_OS_LINUX] = do_bootm_linux,
Kumar Gala697675e2008-10-21 17:25:47 -0500134#endif
135#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabf3954f2008-10-21 17:25:44 -0500136 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Gala697675e2008-10-21 17:25:47 -0500137#endif
Kumar Galabf3954f2008-10-21 17:25:44 -0500138#ifdef CONFIG_LYNXKDI
139 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
140#endif
Kumar Gala697675e2008-10-21 17:25:47 -0500141#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabf3954f2008-10-21 17:25:44 -0500142 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Gala697675e2008-10-21 17:25:47 -0500143#endif
Kumar Galabf3954f2008-10-21 17:25:44 -0500144#if defined(CONFIG_CMD_ELF)
145 [IH_OS_VXWORKS] = do_bootm_vxworks,
146 [IH_OS_QNX] = do_bootm_qnxelf,
147#endif
148#ifdef CONFIG_INTEGRITY
149 [IH_OS_INTEGRITY] = do_bootm_integrity,
150#endif
151};
152
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200153ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100154static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese5d5ce292006-03-13 11:16:36 +0100155
Kumar Gala5e726692009-08-27 08:23:55 -0500156/* Allow for arch specific config before we boot */
157void __arch_preboot_os(void)
158{
159 /* please define platform specific arch_preboot_os() */
160}
161void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
162
Kumar Galafffb1432008-08-15 08:24:37 -0500163#if defined(__ARM__)
164 #define IH_INITRD_ARCH IH_ARCH_ARM
165#elif defined(__avr32__)
166 #define IH_INITRD_ARCH IH_ARCH_AVR32
167#elif defined(__bfin__)
168 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
169#elif defined(__I386__)
170 #define IH_INITRD_ARCH IH_ARCH_I386
171#elif defined(__M68K__)
172 #define IH_INITRD_ARCH IH_ARCH_M68K
173#elif defined(__microblaze__)
174 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
175#elif defined(__mips__)
176 #define IH_INITRD_ARCH IH_ARCH_MIPS
Kumar Galafffb1432008-08-15 08:24:37 -0500177#elif defined(__nios2__)
178 #define IH_INITRD_ARCH IH_ARCH_NIOS2
179#elif defined(__PPC__)
180 #define IH_INITRD_ARCH IH_ARCH_PPC
181#elif defined(__sh__)
182 #define IH_INITRD_ARCH IH_ARCH_SH
183#elif defined(__sparc__)
184 #define IH_INITRD_ARCH IH_ARCH_SPARC
185#else
186# error Unknown CPU type
187#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000188
Mike Frysingera0dadf82009-11-03 11:35:59 -0500189static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000190{
Mike Frysingera0dadf82009-11-03 11:35:59 -0500191#ifdef CONFIG_LMB
Becky Bruced26d67c2008-06-09 20:37:18 -0500192 ulong mem_start;
193 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000194
Kumar Galada6d11e2008-08-15 08:24:40 -0500195 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000196
Kumar Galac5bacfd2008-02-27 21:51:50 -0600197 mem_start = getenv_bootm_low();
198 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000199
Kumar Galada6d11e2008-08-15 08:24:40 -0500200 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Galab02d7222008-10-16 21:52:08 -0500202 arch_lmb_reserve(&images.lmb);
Kumar Galada6d11e2008-08-15 08:24:40 -0500203 board_lmb_reserve(&images.lmb);
Mike Frysingera0dadf82009-11-03 11:35:59 -0500204#else
205# define lmb_reserve(lmb, base, size)
206#endif
207}
208
209static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
210{
211 void *os_hdr;
212 int ret;
213
214 memset ((void *)&images, 0, sizeof (images));
215 images.verify = getenv_yesno ("verify");
216
217 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000218
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100219 /* get kernel image header, start address and length */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100220 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500221 &images, &images.os.image_start, &images.os.image_len);
222 if (images.os.image_len == 0) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100223 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000224 return 1;
225 }
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200226
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100227 /* get image parameters */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100228 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100229 case IMAGE_FORMAT_LEGACY:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500230 images.os.type = image_get_type (os_hdr);
231 images.os.comp = image_get_comp (os_hdr);
232 images.os.os = image_get_os (os_hdr);
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200233
Kumar Galabd70bbe2008-08-15 08:24:41 -0500234 images.os.end = image_get_image_end (os_hdr);
235 images.os.load = image_get_load (os_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100236 break;
237#if defined(CONFIG_FIT)
238 case IMAGE_FORMAT_FIT:
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100239 if (fit_image_get_type (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500240 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100241 puts ("Can't get image type!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100242 show_boot_progress (-109);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100243 return 1;
244 }
wdenk47d1a6e2002-11-03 00:01:44 +0000245
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100246 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500247 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100248 puts ("Can't get image compression!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100249 show_boot_progress (-110);
wdenk47d1a6e2002-11-03 00:01:44 +0000250 return 1;
251 }
wdenk47d1a6e2002-11-03 00:01:44 +0000252
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100253 if (fit_image_get_os (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500254 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100255 puts ("Can't get image OS!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100256 show_boot_progress (-111);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100257 return 1;
258 }
wdenk47d1a6e2002-11-03 00:01:44 +0000259
Kumar Galabd70bbe2008-08-15 08:24:41 -0500260 images.os.end = fit_get_end (images.fit_hdr_os);
wdenk47d1a6e2002-11-03 00:01:44 +0000261
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100262 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500263 &images.os.load)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100264 puts ("Can't get image load address!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100265 show_boot_progress (-112);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100266 return 1;
wdenk655a0f92003-10-30 21:49:38 +0000267 }
268 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100269#endif
270 default:
271 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000272 return 1;
273 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100274
Kumar Gala93467bc2008-08-15 08:24:36 -0500275 /* find kernel entry point */
276 if (images.legacy_hdr_valid) {
277 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
278#if defined(CONFIG_FIT)
279 } else if (images.fit_uname_os) {
280 ret = fit_image_get_entry (images.fit_hdr_os,
281 images.fit_noffset_os, &images.ep);
282 if (ret) {
283 puts ("Can't get entry point property!\n");
284 return 1;
285 }
286#endif
287 } else {
288 puts ("Could not find kernel entry point!\n");
289 return 1;
290 }
291
Heiko Schocher64ccc832010-03-29 13:15:48 +0200292 if (((images.os.type == IH_TYPE_KERNEL) ||
293 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel4e46ab32009-12-22 12:43:01 +0100294 (images.os.os == IH_OS_LINUX)) {
Kumar Galafffb1432008-08-15 08:24:37 -0500295 /* find ramdisk */
296 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
297 &images.rd_start, &images.rd_end);
298 if (ret) {
Kumar Galab8ca7342008-08-29 19:08:29 -0500299 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galafffb1432008-08-15 08:24:37 -0500300 return 1;
301 }
Kumar Galaa5130ad2008-08-15 08:24:38 -0500302
303#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200304#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Galaa5130ad2008-08-15 08:24:38 -0500305 /* find flattened device tree */
306 ret = boot_get_fdt (flag, argc, argv, &images,
307 &images.ft_addr, &images.ft_len);
308 if (ret) {
309 puts ("Could not find a valid device tree\n");
310 return 1;
311 }
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500312
313 set_working_fdt_addr(images.ft_addr);
Kumar Galaa5130ad2008-08-15 08:24:38 -0500314#endif
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200315#endif
Kumar Galafffb1432008-08-15 08:24:37 -0500316 }
317
Kumar Galabd70bbe2008-08-15 08:24:41 -0500318 images.os.start = (ulong)os_hdr;
Kumar Gala18178bc2008-10-21 17:25:45 -0500319 images.state = BOOTM_STATE_START;
wdenk47d1a6e2002-11-03 00:01:44 +0000320
Kumar Galabd70bbe2008-08-15 08:24:41 -0500321 return 0;
322}
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200323
Kumar Galabd70bbe2008-08-15 08:24:41 -0500324#define BOOTM_ERR_RESET -1
325#define BOOTM_ERR_OVERLAP -2
326#define BOOTM_ERR_UNIMPLEMENTED -3
327static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
328{
329 uint8_t comp = os.comp;
330 ulong load = os.load;
331 ulong blob_start = os.start;
332 ulong blob_end = os.end;
333 ulong image_start = os.image_start;
334 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200335 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200336
Kumar Galabd70bbe2008-08-15 08:24:41 -0500337 const char *type_name = genimg_get_type_name (os.type);
wdenk452cfd62002-11-19 11:04:11 +0000338
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100339 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000340 case IH_COMP_NONE:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500341 if (load == blob_start) {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100342 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000343 } else {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100344 printf (" Loading %s ... ", type_name);
Larry Johnsone4551002010-04-20 08:09:43 -0400345 memmove_wd ((void *)load, (void *)image_start,
346 image_len, CHUNKSZ);
wdenk47d1a6e2002-11-03 00:01:44 +0000347 }
Kumar Galabd70bbe2008-08-15 08:24:41 -0500348 *load_end = load + image_len;
Guennadi Liakhovetski3110cf82008-07-31 12:35:04 +0200349 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000350 break;
Mike Frysingerab427ae2010-01-21 19:30:36 -0500351#ifdef CONFIG_GZIP
wdenk47d1a6e2002-11-03 00:01:44 +0000352 case IH_COMP_GZIP:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100353 printf (" Uncompressing %s ... ", type_name);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500354 if (gunzip ((void *)load, unc_len,
355 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs1f2b05a2009-01-02 15:11:41 +0100356 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100357 "- must RESET board to recover\n");
Kumar Galabd70bbe2008-08-15 08:24:41 -0500358 if (boot_progress)
359 show_boot_progress (-6);
360 return BOOTM_ERR_RESET;
wdenk47d1a6e2002-11-03 00:01:44 +0000361 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100362
Kumar Galabd70bbe2008-08-15 08:24:41 -0500363 *load_end = load + image_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000364 break;
Mike Frysingerab427ae2010-01-21 19:30:36 -0500365#endif /* CONFIG_GZIP */
wdenk710e3502003-08-29 20:57:53 +0000366#ifdef CONFIG_BZIP2
367 case IH_COMP_BZIP2:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100368 printf (" Uncompressing %s ... ", type_name);
wdenk2cefd152004-02-08 22:55:38 +0000369 /*
370 * If we've got less than 4 MB of malloc() space,
371 * use slower decompression algorithm which requires
372 * at most 2300 KB of memory.
373 */
Kumar Galabd70bbe2008-08-15 08:24:41 -0500374 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
375 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200376 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
wdenk710e3502003-08-29 20:57:53 +0000377 if (i != BZ_OK) {
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100378 printf ("BUNZIP2: uncompress or overwrite error %d "
379 "- must RESET board to recover\n", i);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500380 if (boot_progress)
381 show_boot_progress (-6);
382 return BOOTM_ERR_RESET;
wdenk710e3502003-08-29 20:57:53 +0000383 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100384
Kumar Galabd70bbe2008-08-15 08:24:41 -0500385 *load_end = load + unc_len;
wdenk710e3502003-08-29 20:57:53 +0000386 break;
387#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200388#ifdef CONFIG_LZMA
389 case IH_COMP_LZMA:
390 printf (" Uncompressing %s ... ", type_name);
391
392 int ret = lzmaBuffToBuffDecompress(
393 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellini22834672008-09-13 10:04:32 +0200394 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +0200395 if (ret != SZ_OK) {
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200396 printf ("LZMA: uncompress or overwrite error %d "
397 "- must RESET board to recover\n", ret);
398 show_boot_progress (-6);
399 return BOOTM_ERR_RESET;
400 }
401 *load_end = load + unc_len;
402 break;
403#endif /* CONFIG_LZMA */
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100404#ifdef CONFIG_LZO
405 case IH_COMP_LZO:
406 printf (" Uncompressing %s ... ", type_name);
407
408 int ret = lzop_decompress((const unsigned char *)image_start,
409 image_len, (unsigned char *)load,
410 &unc_len);
411 if (ret != LZO_E_OK) {
412 printf ("LZO: uncompress or overwrite error %d "
413 "- must RESET board to recover\n", ret);
414 if (boot_progress)
415 show_boot_progress (-6);
416 return BOOTM_ERR_RESET;
417 }
418
419 *load_end = load + unc_len;
420 break;
421#endif /* CONFIG_LZO */
wdenk47d1a6e2002-11-03 00:01:44 +0000422 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100423 printf ("Unimplemented compression type %d\n", comp);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500424 return BOOTM_ERR_UNIMPLEMENTED;
wdenk47d1a6e2002-11-03 00:01:44 +0000425 }
wdenk42c05472004-03-23 22:14:11 +0000426 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARDfcd96442008-09-09 22:18:24 +0200427 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500428 if (boot_progress)
429 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000430
Kumar Galabd70bbe2008-08-15 08:24:41 -0500431 if ((load < blob_end) && (*load_end > blob_start)) {
432 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 +0200433 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000434
Kumar Galabd70bbe2008-08-15 08:24:41 -0500435 return BOOTM_ERR_OVERLAP;
436 }
437
438 return 0;
439}
440
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200441static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
442{
443 char *s;
444 int (*appl)(int, char *[]);
445
446 /* Don't start if "autostart" is set to "no" */
447 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
448 char buf[32];
449 sprintf(buf, "%lX", images.os.image_len);
450 setenv("filesize", buf);
451 return 0;
452 }
453 appl = (int (*)(int, char *[]))ntohl(images.ep);
454 (*appl)(argc-1, &argv[1]);
455
456 return 0;
457}
458
Kumar Gala18178bc2008-10-21 17:25:45 -0500459/* we overload the cmd field with our state machine info instead of a
460 * function pointer */
Frans Meulenbroeks6b419fb2010-02-25 10:12:13 +0100461static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala18178bc2008-10-21 17:25:45 -0500462 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
463 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
464#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
465 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
466#endif
467#ifdef CONFIG_OF_LIBFDT
468 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
469#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500470 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser694a3932009-11-18 19:08:59 -0600471 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -0500472 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
473 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
474};
475
476int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
477{
478 int ret = 0;
479 int state;
480 cmd_tbl_t *c;
481 boot_os_fn *boot_fn;
482
483 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
484
485 if (c) {
486 state = (int)c->cmd;
487
488 /* treat start special since it resets the state machine */
489 if (state == BOOTM_STATE_START) {
490 argc--;
491 argv++;
492 return bootm_start(cmdtp, flag, argc, argv);
493 }
494 }
495 /* Unrecognized command */
496 else {
Peter Tyserddb3af92009-01-27 18:03:10 -0600497 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500498 return 1;
499 }
500
501 if (images.state >= state) {
502 printf ("Trying to execute a command out of order\n");
Peter Tyserddb3af92009-01-27 18:03:10 -0600503 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500504 return 1;
505 }
506
507 images.state |= state;
508 boot_fn = boot_os[images.os.os];
509
510 switch (state) {
511 ulong load_end;
512 case BOOTM_STATE_START:
513 /* should never occur */
514 break;
515 case BOOTM_STATE_LOADOS:
516 ret = bootm_load_os(images.os, &load_end, 0);
517 if (ret)
518 return ret;
519
520 lmb_reserve(&images.lmb, images.os.load,
521 (load_end - images.os.load));
522 break;
523#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
524 case BOOTM_STATE_RAMDISK:
525 {
526 ulong rd_len = images.rd_end - images.rd_start;
527 char str[17];
528
529 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
530 rd_len, &images.initrd_start, &images.initrd_end);
531 if (ret)
532 return ret;
533
534 sprintf(str, "%lx", images.initrd_start);
535 setenv("initrd_start", str);
536 sprintf(str, "%lx", images.initrd_end);
537 setenv("initrd_end", str);
538 }
539 break;
540#endif
Remy Bohmer00d86562009-10-29 14:24:22 +0100541#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala18178bc2008-10-21 17:25:45 -0500542 case BOOTM_STATE_FDT:
543 {
544 ulong bootmap_base = getenv_bootm_low();
545 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
546 &images.ft_addr, &images.ft_len);
547 break;
548 }
549#endif
550 case BOOTM_STATE_OS_CMDLINE:
551 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
552 if (ret)
553 printf ("cmdline subcommand not supported\n");
554 break;
555 case BOOTM_STATE_OS_BD_T:
556 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
557 if (ret)
558 printf ("bdt subcommand not supported\n");
559 break;
560 case BOOTM_STATE_OS_PREP:
561 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
562 if (ret)
563 printf ("prep subcommand not supported\n");
564 break;
565 case BOOTM_STATE_OS_GO:
566 disable_interrupts();
Kumar Gala5e726692009-08-27 08:23:55 -0500567 arch_preboot_os();
Kumar Gala18178bc2008-10-21 17:25:45 -0500568 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
569 break;
570 }
571
572 return ret;
573}
574
Kumar Galabd70bbe2008-08-15 08:24:41 -0500575/*******************************************************************/
576/* bootm - boot application image from image in memory */
577/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -0500578
Kumar Galabd70bbe2008-08-15 08:24:41 -0500579int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
580{
Kumar Galabd70bbe2008-08-15 08:24:41 -0500581 ulong iflag;
582 ulong load_end = 0;
583 int ret;
Kumar Galabf3954f2008-10-21 17:25:44 -0500584 boot_os_fn *boot_fn;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500585#ifndef CONFIG_RELOC_FIXUP_WORKS
586 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -0500587
588 /* relocate boot function table */
589 if (!relocated) {
590 int i;
591 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundel77094472009-07-13 16:01:18 +0200592 if (boot_os[i] != NULL)
593 boot_os[i] += gd->reloc_off;
Kumar Galabf3954f2008-10-21 17:25:44 -0500594 relocated = 1;
595 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500596#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500597
Kumar Gala18178bc2008-10-21 17:25:45 -0500598 /* determine if we have a sub command */
599 if (argc > 1) {
600 char *endp;
601
602 simple_strtoul(argv[1], &endp, 16);
603 /* endp pointing to NULL means that argv[1] was just a
604 * valid number, pass it along to the normal bootm processing
605 *
606 * If endp is ':' or '#' assume a FIT identifier so pass
607 * along for normal processing.
608 *
609 * Right now we assume the first arg should never be '-'
610 */
611 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
612 return do_bootm_subcommand(cmdtp, flag, argc, argv);
613 }
614
Anatolij Gustschin128de002008-08-29 21:04:45 +0200615 if (bootm_start(cmdtp, flag, argc, argv))
616 return 1;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500617
618 /*
619 * We have reached the point of no return: we are going to
620 * overwrite all exception vector code, so we cannot easily
621 * recover from any failures any more...
622 */
623 iflag = disable_interrupts();
624
625#if defined(CONFIG_CMD_USB)
626 /*
627 * turn off USB to prevent the host controller from writing to the
628 * SDRAM while Linux is booting. This could happen (at least for OHCI
629 * controller), because the HCCA (Host Controller Communication Area)
630 * lies within the SDRAM and the host controller writes continously to
631 * this area (as busmaster!). The HccaFrameNumber is for example
632 * updated every 1 ms within the HCCA structure in SDRAM! For more
633 * details see the OpenHCI specification.
634 */
635 usb_stop();
636#endif
637
638#ifdef CONFIG_AMIGAONEG3SE
639 /*
640 * We've possible left the caches enabled during
641 * bios emulation, so turn them off again
642 */
643 icache_disable();
644 dcache_disable();
645#endif
646
647 ret = bootm_load_os(images.os, &load_end, 1);
648
649 if (ret < 0) {
650 if (ret == BOOTM_ERR_RESET)
Marian Balakowiczab00e022008-04-11 11:07:49 +0200651 do_reset (cmdtp, flag, argc, argv);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500652 if (ret == BOOTM_ERR_OVERLAP) {
653 if (images.legacy_hdr_valid) {
654 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
655 puts ("WARNING: legacy format multi component "
656 "image overwritten\n");
657 } else {
658 puts ("ERROR: new format image overwritten - "
659 "must RESET the board to recover\n");
660 show_boot_progress (-113);
661 do_reset (cmdtp, flag, argc, argv);
662 }
663 }
664 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
665 if (iflag)
666 enable_interrupts();
667 show_boot_progress (-7);
668 return 1;
Marian Balakowiczab00e022008-04-11 11:07:49 +0200669 }
wdenk47d1a6e2002-11-03 00:01:44 +0000670 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100671
Kumar Galabd70bbe2008-08-15 08:24:41 -0500672 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
wdenk47d1a6e2002-11-03 00:01:44 +0000673
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200674 if (images.os.type == IH_TYPE_STANDALONE) {
675 if (iflag)
676 enable_interrupts();
677 /* This may return when 'autostart' is 'no' */
678 bootm_start_standalone(iflag, argc, argv);
679 return 0;
680 }
681
Kumar Galabd70bbe2008-08-15 08:24:41 -0500682 show_boot_progress (8);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600683
wdenk808532a2003-10-10 10:05:42 +0000684#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabf3954f2008-10-21 17:25:44 -0500685 if (images.os.os == IH_OS_LINUX)
686 fixup_silent_linux();
wdenk808532a2003-10-10 10:05:42 +0000687#endif
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100688
Kumar Galabf3954f2008-10-21 17:25:44 -0500689 boot_fn = boot_os[images.os.os];
Detlev Zundel77094472009-07-13 16:01:18 +0200690
691 if (boot_fn == NULL) {
692 if (iflag)
693 enable_interrupts();
694 printf ("ERROR: booting os '%s' (%d) is not supported\n",
695 genimg_get_os_name(images.os.os), images.os.os);
696 show_boot_progress (-8);
697 return 1;
698 }
699
Kumar Gala5e726692009-08-27 08:23:55 -0500700 arch_preboot_os();
701
Kumar Galabf3954f2008-10-21 17:25:44 -0500702 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000703
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200704 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000705#ifdef DEBUG
wdenk42c05472004-03-23 22:14:11 +0000706 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000707#endif
Kumar Gala48626aa2008-08-15 08:24:45 -0500708 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicz9c220262008-03-12 10:14:57 +0100709
wdenk47d1a6e2002-11-03 00:01:44 +0000710 return 1;
711}
712
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100713/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100714 * image_get_kernel - verify legacy format kernel image
715 * @img_addr: in RAM address of the legacy format image to be verified
716 * @verify: data CRC verification flag
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100717 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100718 * image_get_kernel() verifies legacy image integrity and returns pointer to
719 * legacy image header if image verification was completed successfully.
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100720 *
721 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100722 * pointer to a legacy image header if valid image was found
723 * otherwise return NULL
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100724 */
Marian Balakowicz59504f62008-02-27 11:02:07 +0100725static image_header_t *image_get_kernel (ulong img_addr, int verify)
wdenk808532a2003-10-10 10:05:42 +0000726{
Marian Balakowicz59504f62008-02-27 11:02:07 +0100727 image_header_t *hdr = (image_header_t *)img_addr;
wdenk808532a2003-10-10 10:05:42 +0000728
Marian Balakowicz59504f62008-02-27 11:02:07 +0100729 if (!image_check_magic(hdr)) {
730 puts ("Bad Magic Number\n");
731 show_boot_progress (-1);
732 return NULL;
733 }
734 show_boot_progress (2);
wdenk808532a2003-10-10 10:05:42 +0000735
Marian Balakowicz59504f62008-02-27 11:02:07 +0100736 if (!image_check_hcrc (hdr)) {
737 puts ("Bad Header Checksum\n");
738 show_boot_progress (-2);
739 return NULL;
740 }
741
742 show_boot_progress (3);
743 image_print_contents (hdr);
744
745 if (verify) {
746 puts (" Verifying Checksum ... ");
747 if (!image_check_dcrc (hdr)) {
748 printf ("Bad Data CRC\n");
749 show_boot_progress (-3);
750 return NULL;
wdenk808532a2003-10-10 10:05:42 +0000751 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100752 puts ("OK\n");
wdenk808532a2003-10-10 10:05:42 +0000753 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100754 show_boot_progress (4);
wdenk808532a2003-10-10 10:05:42 +0000755
Marian Balakowicz59504f62008-02-27 11:02:07 +0100756 if (!image_check_target_arch (hdr)) {
757 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
758 show_boot_progress (-4);
759 return NULL;
760 }
761 return hdr;
wdenk808532a2003-10-10 10:05:42 +0000762}
wdenk808532a2003-10-10 10:05:42 +0000763
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100764/**
765 * fit_check_kernel - verify FIT format kernel subimage
766 * @fit_hdr: pointer to the FIT image header
767 * os_noffset: kernel subimage node offset within FIT image
768 * @verify: data CRC verification flag
769 *
770 * fit_check_kernel() verifies integrity of the kernel subimage and from
771 * specified FIT image.
772 *
773 * returns:
774 * 1, on success
775 * 0, on failure
776 */
777#if defined (CONFIG_FIT)
778static int fit_check_kernel (const void *fit, int os_noffset, int verify)
wdenk47d1a6e2002-11-03 00:01:44 +0000779{
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100780 fit_image_print (fit, os_noffset, " ");
wdenk47d1a6e2002-11-03 00:01:44 +0000781
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100782 if (verify) {
783 puts (" Verifying Hash Integrity ... ");
784 if (!fit_image_check_hashes (fit, os_noffset)) {
785 puts ("Bad Data Hash\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100786 show_boot_progress (-104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100787 return 0;
788 }
789 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000790 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100791 show_boot_progress (105);
wdenk47d1a6e2002-11-03 00:01:44 +0000792
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100793 if (!fit_image_check_target_arch (fit, os_noffset)) {
794 puts ("Unsupported Architecture\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100795 show_boot_progress (-105);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100796 return 0;
797 }
wdenk47d1a6e2002-11-03 00:01:44 +0000798
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100799 show_boot_progress (106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100800 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
801 puts ("Not a kernel image\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100802 show_boot_progress (-106);
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 (107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100807 return 1;
808}
809#endif /* CONFIG_FIT */
wdenk56f94be2002-11-05 16:35:14 +0000810
Marian Balakowicz59504f62008-02-27 11:02:07 +0100811/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100812 * boot_get_kernel - find kernel image
Marian Balakowicz59504f62008-02-27 11:02:07 +0100813 * @os_data: pointer to a ulong variable, will hold os data start address
814 * @os_len: pointer to a ulong variable, will hold os data length
815 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100816 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz59504f62008-02-27 11:02:07 +0100817 * and locates kernel data.
818 *
819 * returns:
820 * pointer to image header if valid image was found, plus kernel start
821 * address and length, otherwise NULL
822 */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100823static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100824 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100825{
826 image_header_t *hdr;
827 ulong img_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100828#if defined(CONFIG_FIT)
829 void *fit_hdr;
830 const char *fit_uname_config = NULL;
831 const char *fit_uname_kernel = NULL;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100832 const void *data;
833 size_t len;
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100834 int cfg_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100835 int os_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100836#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000837
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100838 /* find out kernel image address */
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100839 if (argc < 2) {
840 img_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100841 debug ("* kernel: default image load address = 0x%08lx\n",
842 load_addr);
843#if defined(CONFIG_FIT)
844 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
845 &fit_uname_config)) {
846 debug ("* kernel: config '%s' from image at 0x%08lx\n",
847 fit_uname_config, img_addr);
848 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
849 &fit_uname_kernel)) {
850 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
851 fit_uname_kernel, img_addr);
852#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100853 } else {
854 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100855 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100856 }
wdenk56f94be2002-11-05 16:35:14 +0000857
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100858 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000859
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100860 /* copy from dataflash if needed */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100861 img_addr = genimg_get_image (img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000862
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100863 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100864 *os_data = *os_len = 0;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100865 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100866 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100867 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
868 img_addr);
Marian Balakowicz59504f62008-02-27 11:02:07 +0100869 hdr = image_get_kernel (img_addr, images->verify);
870 if (!hdr)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100871 return NULL;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100872 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000873
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100874 /* get os_data and os_len */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100875 switch (image_get_type (hdr)) {
876 case IH_TYPE_KERNEL:
877 *os_data = image_get_data (hdr);
878 *os_len = image_get_data_size (hdr);
879 break;
880 case IH_TYPE_MULTI:
881 image_multi_getimg (hdr, 0, os_data, os_len);
882 break;
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200883 case IH_TYPE_STANDALONE:
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200884 *os_data = image_get_data (hdr);
885 *os_len = image_get_data_size (hdr);
886 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100887 default:
888 printf ("Wrong Image Type for %s command\n", cmdtp->name);
889 show_boot_progress (-5);
890 return NULL;
891 }
Marian Balakowiczab00e022008-04-11 11:07:49 +0200892
893 /*
894 * copy image header to allow for image overwrites during kernel
895 * decompression.
896 */
897 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
898
899 /* save pointer to image header */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100900 images->legacy_hdr_os = hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000901
Marian Balakowiczab00e022008-04-11 11:07:49 +0200902 images->legacy_hdr_valid = 1;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100903 show_boot_progress (6);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100904 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100905#if defined(CONFIG_FIT)
906 case IMAGE_FORMAT_FIT:
907 fit_hdr = (void *)img_addr;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100908 printf ("## Booting kernel from FIT Image at %08lx ...\n",
909 img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000910
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100911 if (!fit_check_format (fit_hdr)) {
912 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100913 show_boot_progress (-100);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100914 return NULL;
915 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100916 show_boot_progress (100);
wdenk47d1a6e2002-11-03 00:01:44 +0000917
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100918 if (!fit_uname_kernel) {
919 /*
920 * no kernel image node unit name, try to get config
921 * node first. If config unit node name is NULL
922 * fit_conf_get_node() will try to find default config node
923 */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100924 show_boot_progress (101);
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100925 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
926 if (cfg_noffset < 0) {
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100927 show_boot_progress (-101);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100928 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100929 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100930 /* save configuration uname provided in the first
931 * bootm argument
932 */
933 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
934 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
935 show_boot_progress (103);
wdenk47d1a6e2002-11-03 00:01:44 +0000936
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100937 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100938 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
939 } else {
940 /* get kernel component image node offset */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100941 show_boot_progress (102);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100942 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
943 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100944 if (os_noffset < 0) {
945 show_boot_progress (-103);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100946 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100947 }
wdenk47d1a6e2002-11-03 00:01:44 +0000948
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100949 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
wdenk47d1a6e2002-11-03 00:01:44 +0000950
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100951 show_boot_progress (104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100952 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
953 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500954
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100955 /* get kernel image data address and length */
956 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
957 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100958 show_boot_progress (-107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100959 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500960 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100961 show_boot_progress (108);
wdenk47d1a6e2002-11-03 00:01:44 +0000962
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100963 *os_len = len;
964 *os_data = (ulong)data;
965 images->fit_hdr_os = fit_hdr;
966 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100967 images->fit_noffset_os = os_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100968 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100969#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100970 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100971 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100972 show_boot_progress (-108);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100973 return NULL;
974 }
wdenk47d1a6e2002-11-03 00:01:44 +0000975
Wolfgang Denk8d541882008-07-10 13:16:09 +0200976 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100977 *os_data, *os_len, *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +0000978
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100979 return (void *)img_addr;
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100980}
wdenk47d1a6e2002-11-03 00:01:44 +0000981
wdenk47d1a6e2002-11-03 00:01:44 +0000982U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200983 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600984 "boot application image from memory",
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100985 "[addr [arg ...]]\n - boot application image stored in memory\n"
986 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
987 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100988#if defined(CONFIG_OF_LIBFDT)
wdenk47d1a6e2002-11-03 00:01:44 +0000989 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
990 "\ta third argument is required which is the address of the\n"
991 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
992 "\tuse a '-' for the second argument. If you do not pass a third\n"
993 "\ta bd_info struct will be passed instead\n"
994#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100995#if defined(CONFIG_FIT)
996 "\t\nFor the new multi component uImage format (FIT) addresses\n"
997 "\tmust be extened to include component or configuration unit name:\n"
998 "\taddr:<subimg_uname> - direct component image specification\n"
999 "\taddr#<conf_uname> - configuration specification\n"
1000 "\tUse iminfo command to get the list of existing component\n"
1001 "\timages and configurations.\n"
1002#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001003 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1004 "must be\n"
1005 "issued in the order below (it's ok to not issue all sub-commands):\n"
1006 "\tstart [addr [arg ...]]\n"
1007 "\tloados - load OS image\n"
1008#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1009 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1010#endif
1011#if defined(CONFIG_OF_LIBFDT)
1012 "\tfdt - relocate flat device tree\n"
1013#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001014 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser694a3932009-11-18 19:08:59 -06001015 "\tbdt - OS specific bd_t processing\n"
Kumar Gala18178bc2008-10-21 17:25:45 -05001016 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001017 "\tgo - start OS"
wdenk47d1a6e2002-11-03 00:01:44 +00001018);
wdenk47d1a6e2002-11-03 00:01:44 +00001019
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001020/*******************************************************************/
1021/* bootd - boot default image */
1022/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001023#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001024int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1025{
1026 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001027
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001028#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001029 if (run_command (getenv ("bootcmd"), flag) < 0)
1030 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001031#else
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001032 if (parse_string_outer (getenv ("bootcmd"),
1033 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1034 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001035#endif
1036 return rcode;
1037}
wdenk47d1a6e2002-11-03 00:01:44 +00001038
wdenkf287a242003-07-01 21:06:45 +00001039U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001040 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001041 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001042 ""
wdenk3086a972003-06-28 23:11:04 +00001043);
wdenk47d1a6e2002-11-03 00:01:44 +00001044
wdenk3086a972003-06-28 23:11:04 +00001045/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +00001046U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001047 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001048 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001049 ""
wdenk57b2d802003-06-27 21:31:46 +00001050);
wdenk47d1a6e2002-11-03 00:01:44 +00001051
wdenk47d1a6e2002-11-03 00:01:44 +00001052#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001053
wdenk47d1a6e2002-11-03 00:01:44 +00001054
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001055/*******************************************************************/
1056/* iminfo - print header info for a requested image */
1057/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001058#if defined(CONFIG_CMD_IMI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001059int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001060{
1061 int arg;
1062 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001063 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001064
wdenk47d1a6e2002-11-03 00:01:44 +00001065 if (argc < 2) {
1066 return image_info (load_addr);
1067 }
wdenk47d1a6e2002-11-03 00:01:44 +00001068
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001069 for (arg = 1; arg < argc; ++arg) {
1070 addr = simple_strtoul (argv[arg], NULL, 16);
1071 if (image_info (addr) != 0)
1072 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001073 }
1074 return rcode;
1075}
wdenk47d1a6e2002-11-03 00:01:44 +00001076
wdenk47d1a6e2002-11-03 00:01:44 +00001077static int image_info (ulong addr)
1078{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001079 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001080
wdenk47d1a6e2002-11-03 00:01:44 +00001081 printf ("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001082
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001083 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001084 case IMAGE_FORMAT_LEGACY:
1085 puts (" Legacy image found\n");
1086 if (!image_check_magic (hdr)) {
1087 puts (" Bad Magic Number\n");
1088 return 1;
1089 }
wdenk47d1a6e2002-11-03 00:01:44 +00001090
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001091 if (!image_check_hcrc (hdr)) {
1092 puts (" Bad Header Checksum\n");
1093 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001094 }
1095
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001096 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001097
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001098 puts (" Verifying Checksum ... ");
1099 if (!image_check_dcrc (hdr)) {
1100 puts (" Bad Data CRC\n");
1101 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001102 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001103 puts ("OK\n");
1104 return 0;
1105#if defined(CONFIG_FIT)
1106 case IMAGE_FORMAT_FIT:
1107 puts (" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001108
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001109 if (!fit_check_format (hdr)) {
1110 puts ("Bad FIT image format!\n");
1111 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001112 }
1113
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001114 fit_print_contents (hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +02001115
1116 if (!fit_all_image_check_hashes (hdr)) {
1117 puts ("Bad hash in FIT image!\n");
1118 return 1;
1119 }
1120
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001121 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001122#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001123 default:
1124 puts ("Unknown image format!\n");
1125 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001126 }
wdenk47d1a6e2002-11-03 00:01:44 +00001127
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001128 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001129}
wdenk47d1a6e2002-11-03 00:01:44 +00001130
wdenkf287a242003-07-01 21:06:45 +00001131U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001132 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001133 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +00001134 "addr [addr ...]\n"
1135 " - print header information for application image starting at\n"
1136 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001137 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +00001138);
wdenk47d1a6e2002-11-03 00:01:44 +00001139#endif
1140
1141
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001142/*******************************************************************/
1143/* imls - list all images found in flash */
1144/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001145#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +00001146int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1147{
1148 flash_info_t *info;
1149 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001150 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +00001151
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001152 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001153 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +00001154
wdenk874ac262003-07-24 23:38:38 +00001155 if (info->flash_id == FLASH_UNKNOWN)
1156 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001157 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +00001158
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001159 hdr = (void *)info->start[j];
1160 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01001161 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001162
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001163 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001164 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001165 if (!image_check_hcrc (hdr))
1166 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001167
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001168 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1169 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001170
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001171 puts (" Verifying Checksum ... ");
1172 if (!image_check_dcrc (hdr)) {
1173 puts ("Bad Data CRC\n");
1174 } else {
1175 puts ("OK\n");
1176 }
1177 break;
1178#if defined(CONFIG_FIT)
1179 case IMAGE_FORMAT_FIT:
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001180 if (!fit_check_format (hdr))
1181 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001182
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001183 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001184 fit_print_contents (hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001185 break;
1186#endif
1187 default:
1188 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001189 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001190
wdenk0a658552003-08-05 17:43:17 +00001191next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001192 }
wdenk0a658552003-08-05 17:43:17 +00001193next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001194 }
1195
wdenk874ac262003-07-24 23:38:38 +00001196 return (0);
1197}
wdenk47d1a6e2002-11-03 00:01:44 +00001198
wdenk874ac262003-07-24 23:38:38 +00001199U_BOOT_CMD(
1200 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001201 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +00001202 "\n"
1203 " - Prints information about all images found at sector\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001204 " boundaries in flash."
wdenk874ac262003-07-24 23:38:38 +00001205);
wdenk47d1a6e2002-11-03 00:01:44 +00001206#endif
1207
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001208/*******************************************************************/
Marian Balakowiczc40032c2008-01-31 13:59:09 +01001209/* helper routines */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001210/*******************************************************************/
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001211#ifdef CONFIG_SILENT_CONSOLE
1212static void fixup_silent_linux ()
1213{
1214 char buf[256], *start, *end;
1215 char *cmdline = getenv ("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001216
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001217 /* Only fix cmdline when requested */
1218 if (!(gd->flags & GD_FLG_SILENT))
1219 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001220
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001221 debug ("before silent fix-up: %s\n", cmdline);
1222 if (cmdline) {
1223 if ((start = strstr (cmdline, "console=")) != NULL) {
1224 end = strchr (start, ' ');
1225 strncpy (buf, cmdline, (start - cmdline + 8));
1226 if (end)
1227 strcpy (buf + (start - cmdline + 8), end);
1228 else
1229 buf[start - cmdline + 8] = '\0';
1230 } else {
1231 strcpy (buf, cmdline);
1232 strcat (buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001233 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001234 } else {
1235 strcpy (buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001236 }
wdenk47d1a6e2002-11-03 00:01:44 +00001237
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001238 setenv ("bootargs", buf);
1239 debug ("after silent fix-up: %s\n", buf);
1240}
1241#endif /* CONFIG_SILENT_CONSOLE */
wdenk47d1a6e2002-11-03 00:01:44 +00001242
wdenk47d1a6e2002-11-03 00:01:44 +00001243
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001244/*******************************************************************/
1245/* OS booting routines */
1246/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001247
Kumar Gala697675e2008-10-21 17:25:47 -05001248#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala48626aa2008-08-15 08:24:45 -05001249static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001250 bootm_headers_t *images)
wdenk92bbe3f2003-04-20 14:04:18 +00001251{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001252 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001253 image_header_t *os_hdr, *hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001254 ulong kernel_data, kernel_len;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001255 char *consdev;
1256 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001257
Kumar Gala18178bc2008-10-21 17:25:45 -05001258 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1259 return 1;
1260
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001261#if defined(CONFIG_FIT)
1262 if (!images->legacy_hdr_valid) {
1263 fit_unsupported_reset ("NetBSD");
Kumar Gala48626aa2008-08-15 08:24:45 -05001264 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001265 }
1266#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001267 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001268
1269 /*
1270 * Booting a (NetBSD) kernel image
1271 *
1272 * This process is pretty similar to a standalone application:
1273 * The (first part of an multi-) image must be a stage-2 loader,
1274 * which in turn is responsible for loading & invoking the actual
1275 * kernel. The only differences are the parameters being passed:
1276 * besides the board info strucure, the loader expects a command
1277 * line, the name of the console device, and (optionally) the
1278 * address of the original image header.
1279 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001280 os_hdr = NULL;
Marian Balakowiczab00e022008-04-11 11:07:49 +02001281 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001282 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1283 if (kernel_len)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001284 os_hdr = hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001285 }
wdenk47d1a6e2002-11-03 00:01:44 +00001286
1287 consdev = "";
1288#if defined (CONFIG_8xx_CONS_SMC1)
1289 consdev = "smc1";
1290#elif defined (CONFIG_8xx_CONS_SMC2)
1291 consdev = "smc2";
1292#elif defined (CONFIG_8xx_CONS_SCC2)
1293 consdev = "scc2";
1294#elif defined (CONFIG_8xx_CONS_SCC3)
1295 consdev = "scc3";
1296#endif
1297
1298 if (argc > 2) {
1299 ulong len;
1300 int i;
1301
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001302 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001303 len += strlen (argv[i]) + 1;
1304 cmdline = malloc (len);
1305
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001306 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001307 if (i > 2)
1308 cmdline[len++] = ' ';
1309 strcpy (&cmdline[len], argv[i]);
1310 len += strlen (argv[i]);
1311 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001312 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001313 cmdline = "";
1314 }
1315
Kumar Gala93467bc2008-08-15 08:24:36 -05001316 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001317
1318 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1319 (ulong)loader);
1320
1321 show_boot_progress (15);
1322
1323 /*
1324 * NetBSD Stage-2 Loader Parameters:
1325 * r3: ptr to board info data
1326 * r4: image address
1327 * r5: console device
1328 * r6: boot args string
1329 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001330 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala48626aa2008-08-15 08:24:45 -05001331
1332 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001333}
Kumar Gala697675e2008-10-21 17:25:47 -05001334#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001335
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001336#ifdef CONFIG_LYNXKDI
Kumar Gala48626aa2008-08-15 08:24:45 -05001337static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001338 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001339{
Marian Balakowiczab00e022008-04-11 11:07:49 +02001340 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001341
Kumar Gala18178bc2008-10-21 17:25:45 -05001342 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1343 return 1;
1344
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001345#if defined(CONFIG_FIT)
1346 if (!images->legacy_hdr_valid) {
1347 fit_unsupported_reset ("Lynx");
Kumar Gala48626aa2008-08-15 08:24:45 -05001348 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001349 }
1350#endif
1351
1352 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala48626aa2008-08-15 08:24:45 -05001353
1354 return 1;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001355}
1356#endif /* CONFIG_LYNXKDI */
1357
Kumar Gala697675e2008-10-21 17:25:47 -05001358#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala48626aa2008-08-15 08:24:45 -05001359static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001360 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001361{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001362 void (*entry_point)(bd_t *);
wdenk92bbe3f2003-04-20 14:04:18 +00001363
Kumar Gala18178bc2008-10-21 17:25:45 -05001364 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1365 return 1;
1366
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001367#if defined(CONFIG_FIT)
1368 if (!images->legacy_hdr_valid) {
1369 fit_unsupported_reset ("RTEMS");
Kumar Gala48626aa2008-08-15 08:24:45 -05001370 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001371 }
1372#endif
1373
Kumar Gala93467bc2008-08-15 08:24:36 -05001374 entry_point = (void (*)(bd_t *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001375
wdenk92bbe3f2003-04-20 14:04:18 +00001376 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1377 (ulong)entry_point);
wdenk47d1a6e2002-11-03 00:01:44 +00001378
Heiko Schocher8a8ec532007-07-13 09:54:17 +02001379 show_boot_progress (15);
wdenk92bbe3f2003-04-20 14:04:18 +00001380
1381 /*
1382 * RTEMS Parameters:
1383 * r3: ptr to board info data
1384 */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001385 (*entry_point)(gd->bd);
Kumar Gala48626aa2008-08-15 08:24:45 -05001386
1387 return 1;
wdenk92bbe3f2003-04-20 14:04:18 +00001388}
Kumar Gala697675e2008-10-21 17:25:47 -05001389#endif /* CONFIG_BOOTM_RTEMS */
wdenk92bbe3f2003-04-20 14:04:18 +00001390
Jon Loeliger54324d02007-07-08 17:51:39 -05001391#if defined(CONFIG_CMD_ELF)
Kumar Gala48626aa2008-08-15 08:24:45 -05001392static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001393 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001394{
wdenk47d1a6e2002-11-03 00:01:44 +00001395 char str[80];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001396
Kumar Gala18178bc2008-10-21 17:25:45 -05001397 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1398 return 1;
1399
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001400#if defined(CONFIG_FIT)
Marian Balakowiczab00e022008-04-11 11:07:49 +02001401 if (!images->legacy_hdr_valid) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001402 fit_unsupported_reset ("VxWorks");
Kumar Gala48626aa2008-08-15 08:24:45 -05001403 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001404 }
1405#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001406
Kumar Gala93467bc2008-08-15 08:24:36 -05001407 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001408 setenv("loadaddr", str);
Kumar Gala48626aa2008-08-15 08:24:45 -05001409 do_bootvx(NULL, 0, 0, NULL);
1410
1411 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001412}
1413
Kumar Gala48626aa2008-08-15 08:24:45 -05001414static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001415 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001416{
wdenk47d1a6e2002-11-03 00:01:44 +00001417 char *local_args[2];
1418 char str[16];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001419
Kumar Gala18178bc2008-10-21 17:25:45 -05001420 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1421 return 1;
1422
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001423#if defined(CONFIG_FIT)
1424 if (!images->legacy_hdr_valid) {
1425 fit_unsupported_reset ("QNX");
Kumar Gala48626aa2008-08-15 08:24:45 -05001426 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001427 }
1428#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001429
Kumar Gala93467bc2008-08-15 08:24:36 -05001430 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001431 local_args[0] = argv[0];
1432 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala48626aa2008-08-15 08:24:45 -05001433 do_bootelf(NULL, 0, 2, local_args);
1434
1435 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001436}
Jon Loeligerd704d912007-07-10 11:02:44 -05001437#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -05001438
1439#ifdef CONFIG_INTEGRITY
1440static int do_bootm_integrity (int flag, int argc, char *argv[],
1441 bootm_headers_t *images)
1442{
1443 void (*entry_point)(void);
1444
Kumar Gala18178bc2008-10-21 17:25:45 -05001445 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1446 return 1;
1447
Peter Tyser56b8dd12008-09-08 14:56:49 -05001448#if defined(CONFIG_FIT)
1449 if (!images->legacy_hdr_valid) {
1450 fit_unsupported_reset ("INTEGRITY");
1451 return 1;
1452 }
1453#endif
1454
1455 entry_point = (void (*)(void))images->ep;
1456
1457 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1458 (ulong)entry_point);
1459
1460 show_boot_progress (15);
1461
1462 /*
1463 * INTEGRITY Parameters:
1464 * None
1465 */
1466 (*entry_point)();
1467
1468 return 1;
1469}
1470#endif