blob: f28e88f340f472dc0e96b314cec77572576f04a6 [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
177#elif defined(__nios__)
178 #define IH_INITRD_ARCH IH_ARCH_NIOS
179#elif defined(__nios2__)
180 #define IH_INITRD_ARCH IH_ARCH_NIOS2
181#elif defined(__PPC__)
182 #define IH_INITRD_ARCH IH_ARCH_PPC
183#elif defined(__sh__)
184 #define IH_INITRD_ARCH IH_ARCH_SH
185#elif defined(__sparc__)
186 #define IH_INITRD_ARCH IH_ARCH_SPARC
187#else
188# error Unknown CPU type
189#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000190
Mike Frysingera0dadf82009-11-03 11:35:59 -0500191static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000192{
Mike Frysingera0dadf82009-11-03 11:35:59 -0500193#ifdef CONFIG_LMB
Becky Bruced26d67c2008-06-09 20:37:18 -0500194 ulong mem_start;
195 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000196
Kumar Galada6d11e2008-08-15 08:24:40 -0500197 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000198
Kumar Galac5bacfd2008-02-27 21:51:50 -0600199 mem_start = getenv_bootm_low();
200 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Galada6d11e2008-08-15 08:24:40 -0500202 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000203
Kumar Galab02d7222008-10-16 21:52:08 -0500204 arch_lmb_reserve(&images.lmb);
Kumar Galada6d11e2008-08-15 08:24:40 -0500205 board_lmb_reserve(&images.lmb);
Mike Frysingera0dadf82009-11-03 11:35:59 -0500206#else
207# define lmb_reserve(lmb, base, size)
208#endif
209}
210
211static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
212{
213 void *os_hdr;
214 int ret;
215
216 memset ((void *)&images, 0, sizeof (images));
217 images.verify = getenv_yesno ("verify");
218
219 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000220
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100221 /* get kernel image header, start address and length */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100222 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500223 &images, &images.os.image_start, &images.os.image_len);
224 if (images.os.image_len == 0) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100225 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000226 return 1;
227 }
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200228
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100229 /* get image parameters */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100230 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100231 case IMAGE_FORMAT_LEGACY:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500232 images.os.type = image_get_type (os_hdr);
233 images.os.comp = image_get_comp (os_hdr);
234 images.os.os = image_get_os (os_hdr);
Wolfgang Denk63e44ff2005-10-06 01:50:50 +0200235
Kumar Galabd70bbe2008-08-15 08:24:41 -0500236 images.os.end = image_get_image_end (os_hdr);
237 images.os.load = image_get_load (os_hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100238 break;
239#if defined(CONFIG_FIT)
240 case IMAGE_FORMAT_FIT:
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100241 if (fit_image_get_type (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500242 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100243 puts ("Can't get image type!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100244 show_boot_progress (-109);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100245 return 1;
246 }
wdenk47d1a6e2002-11-03 00:01:44 +0000247
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100248 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500249 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100250 puts ("Can't get image compression!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100251 show_boot_progress (-110);
wdenk47d1a6e2002-11-03 00:01:44 +0000252 return 1;
253 }
wdenk47d1a6e2002-11-03 00:01:44 +0000254
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100255 if (fit_image_get_os (images.fit_hdr_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500256 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100257 puts ("Can't get image OS!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100258 show_boot_progress (-111);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100259 return 1;
260 }
wdenk47d1a6e2002-11-03 00:01:44 +0000261
Kumar Galabd70bbe2008-08-15 08:24:41 -0500262 images.os.end = fit_get_end (images.fit_hdr_os);
wdenk47d1a6e2002-11-03 00:01:44 +0000263
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100264 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Galabd70bbe2008-08-15 08:24:41 -0500265 &images.os.load)) {
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100266 puts ("Can't get image load address!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100267 show_boot_progress (-112);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100268 return 1;
wdenk655a0f92003-10-30 21:49:38 +0000269 }
270 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100271#endif
272 default:
273 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000274 return 1;
275 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100276
Kumar Gala93467bc2008-08-15 08:24:36 -0500277 /* find kernel entry point */
278 if (images.legacy_hdr_valid) {
279 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
280#if defined(CONFIG_FIT)
281 } else if (images.fit_uname_os) {
282 ret = fit_image_get_entry (images.fit_hdr_os,
283 images.fit_noffset_os, &images.ep);
284 if (ret) {
285 puts ("Can't get entry point property!\n");
286 return 1;
287 }
288#endif
289 } else {
290 puts ("Could not find kernel entry point!\n");
291 return 1;
292 }
293
Detlev Zundel4e46ab32009-12-22 12:43:01 +0100294 if ((images.os.type == IH_TYPE_KERNEL) &&
295 (images.os.os == IH_OS_LINUX)) {
Kumar Galafffb1432008-08-15 08:24:37 -0500296 /* find ramdisk */
297 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
298 &images.rd_start, &images.rd_end);
299 if (ret) {
Kumar Galab8ca7342008-08-29 19:08:29 -0500300 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galafffb1432008-08-15 08:24:37 -0500301 return 1;
302 }
Kumar Galaa5130ad2008-08-15 08:24:38 -0500303
304#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200305#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Galaa5130ad2008-08-15 08:24:38 -0500306 /* find flattened device tree */
307 ret = boot_get_fdt (flag, argc, argv, &images,
308 &images.ft_addr, &images.ft_len);
309 if (ret) {
310 puts ("Could not find a valid device tree\n");
311 return 1;
312 }
Kumar Gala9f4e7e42008-08-15 08:24:39 -0500313
314 set_working_fdt_addr(images.ft_addr);
Kumar Galaa5130ad2008-08-15 08:24:38 -0500315#endif
Jean-Christophe PLAGNIOL-VILLARDa936b892008-09-09 22:18:23 +0200316#endif
Kumar Galafffb1432008-08-15 08:24:37 -0500317 }
318
Kumar Galabd70bbe2008-08-15 08:24:41 -0500319 images.os.start = (ulong)os_hdr;
Kumar Gala18178bc2008-10-21 17:25:45 -0500320 images.state = BOOTM_STATE_START;
wdenk47d1a6e2002-11-03 00:01:44 +0000321
Kumar Galabd70bbe2008-08-15 08:24:41 -0500322 return 0;
323}
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200324
Kumar Galabd70bbe2008-08-15 08:24:41 -0500325#define BOOTM_ERR_RESET -1
326#define BOOTM_ERR_OVERLAP -2
327#define BOOTM_ERR_UNIMPLEMENTED -3
328static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
329{
330 uint8_t comp = os.comp;
331 ulong load = os.load;
332 ulong blob_start = os.start;
333 ulong blob_end = os.end;
334 ulong image_start = os.image_start;
335 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200336 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Markus Klotzbücher09197cb2008-07-10 14:47:09 +0200337
Kumar Galabd70bbe2008-08-15 08:24:41 -0500338 const char *type_name = genimg_get_type_name (os.type);
wdenk452cfd62002-11-19 11:04:11 +0000339
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100340 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000341 case IH_COMP_NONE:
Kumar Galabd70bbe2008-08-15 08:24:41 -0500342 if (load == blob_start) {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100343 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000344 } else {
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100345 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000346
Minkyu Kangce56fea2009-02-18 09:05:52 +0900347 if (load != image_start) {
348 memmove_wd ((void *)load,
349 (void *)image_start, image_len, CHUNKSZ);
350 }
wdenk47d1a6e2002-11-03 00:01:44 +0000351 }
Kumar Galabd70bbe2008-08-15 08:24:41 -0500352 *load_end = load + image_len;
Guennadi Liakhovetski3110cf82008-07-31 12:35:04 +0200353 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000354 break;
355 case IH_COMP_GZIP:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100356 printf (" Uncompressing %s ... ", type_name);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500357 if (gunzip ((void *)load, unc_len,
358 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs1f2b05a2009-01-02 15:11:41 +0100359 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100360 "- must RESET board to recover\n");
Kumar Galabd70bbe2008-08-15 08:24:41 -0500361 if (boot_progress)
362 show_boot_progress (-6);
363 return BOOTM_ERR_RESET;
wdenk47d1a6e2002-11-03 00:01:44 +0000364 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100365
Kumar Galabd70bbe2008-08-15 08:24:41 -0500366 *load_end = load + image_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000367 break;
wdenk710e3502003-08-29 20:57:53 +0000368#ifdef CONFIG_BZIP2
369 case IH_COMP_BZIP2:
Marian Balakowicz05c1d3f2008-01-31 13:20:07 +0100370 printf (" Uncompressing %s ... ", type_name);
wdenk2cefd152004-02-08 22:55:38 +0000371 /*
372 * If we've got less than 4 MB of malloc() space,
373 * use slower decompression algorithm which requires
374 * at most 2300 KB of memory.
375 */
Kumar Galabd70bbe2008-08-15 08:24:41 -0500376 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
377 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200378 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
wdenk710e3502003-08-29 20:57:53 +0000379 if (i != BZ_OK) {
Marian Balakowiczb5324a82008-03-12 10:33:01 +0100380 printf ("BUNZIP2: uncompress or overwrite error %d "
381 "- must RESET board to recover\n", i);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500382 if (boot_progress)
383 show_boot_progress (-6);
384 return BOOTM_ERR_RESET;
wdenk710e3502003-08-29 20:57:53 +0000385 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100386
Kumar Galabd70bbe2008-08-15 08:24:41 -0500387 *load_end = load + unc_len;
wdenk710e3502003-08-29 20:57:53 +0000388 break;
389#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200390#ifdef CONFIG_LZMA
391 case IH_COMP_LZMA:
392 printf (" Uncompressing %s ... ", type_name);
393
394 int ret = lzmaBuffToBuffDecompress(
395 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellini22834672008-09-13 10:04:32 +0200396 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinid02bd742009-07-21 10:45:49 +0200397 if (ret != SZ_OK) {
Luigi 'Comio' Mantellini35afc062008-09-08 02:46:13 +0200398 printf ("LZMA: uncompress or overwrite error %d "
399 "- must RESET board to recover\n", ret);
400 show_boot_progress (-6);
401 return BOOTM_ERR_RESET;
402 }
403 *load_end = load + unc_len;
404 break;
405#endif /* CONFIG_LZMA */
Peter Korsgaardf7440cd2009-11-19 11:37:51 +0100406#ifdef CONFIG_LZO
407 case IH_COMP_LZO:
408 printf (" Uncompressing %s ... ", type_name);
409
410 int ret = lzop_decompress((const unsigned char *)image_start,
411 image_len, (unsigned char *)load,
412 &unc_len);
413 if (ret != LZO_E_OK) {
414 printf ("LZO: uncompress or overwrite error %d "
415 "- must RESET board to recover\n", ret);
416 if (boot_progress)
417 show_boot_progress (-6);
418 return BOOTM_ERR_RESET;
419 }
420
421 *load_end = load + unc_len;
422 break;
423#endif /* CONFIG_LZO */
wdenk47d1a6e2002-11-03 00:01:44 +0000424 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100425 printf ("Unimplemented compression type %d\n", comp);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500426 return BOOTM_ERR_UNIMPLEMENTED;
wdenk47d1a6e2002-11-03 00:01:44 +0000427 }
wdenk42c05472004-03-23 22:14:11 +0000428 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARDfcd96442008-09-09 22:18:24 +0200429 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500430 if (boot_progress)
431 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000432
Kumar Galabd70bbe2008-08-15 08:24:41 -0500433 if ((load < blob_end) && (*load_end > blob_start)) {
434 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 +0200435 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000436
Kumar Galabd70bbe2008-08-15 08:24:41 -0500437 return BOOTM_ERR_OVERLAP;
438 }
439
440 return 0;
441}
442
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200443static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
444{
445 char *s;
446 int (*appl)(int, char *[]);
447
448 /* Don't start if "autostart" is set to "no" */
449 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
450 char buf[32];
451 sprintf(buf, "%lX", images.os.image_len);
452 setenv("filesize", buf);
453 return 0;
454 }
455 appl = (int (*)(int, char *[]))ntohl(images.ep);
456 (*appl)(argc-1, &argv[1]);
457
458 return 0;
459}
460
Kumar Gala18178bc2008-10-21 17:25:45 -0500461/* we overload the cmd field with our state machine info instead of a
462 * function pointer */
463cmd_tbl_t cmd_bootm_sub[] = {
464 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
465 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
466#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
467 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
468#endif
469#ifdef CONFIG_OF_LIBFDT
470 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
471#endif
Kumar Gala18178bc2008-10-21 17:25:45 -0500472 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser694a3932009-11-18 19:08:59 -0600473 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala18178bc2008-10-21 17:25:45 -0500474 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
475 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
476};
477
478int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
479{
480 int ret = 0;
481 int state;
482 cmd_tbl_t *c;
483 boot_os_fn *boot_fn;
484
485 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
486
487 if (c) {
488 state = (int)c->cmd;
489
490 /* treat start special since it resets the state machine */
491 if (state == BOOTM_STATE_START) {
492 argc--;
493 argv++;
494 return bootm_start(cmdtp, flag, argc, argv);
495 }
496 }
497 /* Unrecognized command */
498 else {
Peter Tyserddb3af92009-01-27 18:03:10 -0600499 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500500 return 1;
501 }
502
503 if (images.state >= state) {
504 printf ("Trying to execute a command out of order\n");
Peter Tyserddb3af92009-01-27 18:03:10 -0600505 cmd_usage(cmdtp);
Kumar Gala18178bc2008-10-21 17:25:45 -0500506 return 1;
507 }
508
509 images.state |= state;
510 boot_fn = boot_os[images.os.os];
511
512 switch (state) {
513 ulong load_end;
514 case BOOTM_STATE_START:
515 /* should never occur */
516 break;
517 case BOOTM_STATE_LOADOS:
518 ret = bootm_load_os(images.os, &load_end, 0);
519 if (ret)
520 return ret;
521
522 lmb_reserve(&images.lmb, images.os.load,
523 (load_end - images.os.load));
524 break;
525#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
526 case BOOTM_STATE_RAMDISK:
527 {
528 ulong rd_len = images.rd_end - images.rd_start;
529 char str[17];
530
531 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
532 rd_len, &images.initrd_start, &images.initrd_end);
533 if (ret)
534 return ret;
535
536 sprintf(str, "%lx", images.initrd_start);
537 setenv("initrd_start", str);
538 sprintf(str, "%lx", images.initrd_end);
539 setenv("initrd_end", str);
540 }
541 break;
542#endif
Remy Bohmer00d86562009-10-29 14:24:22 +0100543#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala18178bc2008-10-21 17:25:45 -0500544 case BOOTM_STATE_FDT:
545 {
546 ulong bootmap_base = getenv_bootm_low();
547 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
548 &images.ft_addr, &images.ft_len);
549 break;
550 }
551#endif
552 case BOOTM_STATE_OS_CMDLINE:
553 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
554 if (ret)
555 printf ("cmdline subcommand not supported\n");
556 break;
557 case BOOTM_STATE_OS_BD_T:
558 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
559 if (ret)
560 printf ("bdt subcommand not supported\n");
561 break;
562 case BOOTM_STATE_OS_PREP:
563 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
564 if (ret)
565 printf ("prep subcommand not supported\n");
566 break;
567 case BOOTM_STATE_OS_GO:
568 disable_interrupts();
Kumar Gala5e726692009-08-27 08:23:55 -0500569 arch_preboot_os();
Kumar Gala18178bc2008-10-21 17:25:45 -0500570 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
571 break;
572 }
573
574 return ret;
575}
576
Kumar Galabd70bbe2008-08-15 08:24:41 -0500577/*******************************************************************/
578/* bootm - boot application image from image in memory */
579/*******************************************************************/
Kumar Galabf3954f2008-10-21 17:25:44 -0500580
Kumar Galabd70bbe2008-08-15 08:24:41 -0500581int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
582{
Kumar Galabd70bbe2008-08-15 08:24:41 -0500583 ulong iflag;
584 ulong load_end = 0;
585 int ret;
Kumar Galabf3954f2008-10-21 17:25:44 -0500586 boot_os_fn *boot_fn;
Peter Tyser9057cbf2009-09-21 11:20:36 -0500587#ifndef CONFIG_RELOC_FIXUP_WORKS
588 static int relocated = 0;
Kumar Galabf3954f2008-10-21 17:25:44 -0500589
590 /* relocate boot function table */
591 if (!relocated) {
592 int i;
593 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundel77094472009-07-13 16:01:18 +0200594 if (boot_os[i] != NULL)
595 boot_os[i] += gd->reloc_off;
Kumar Galabf3954f2008-10-21 17:25:44 -0500596 relocated = 1;
597 }
Peter Tyser9057cbf2009-09-21 11:20:36 -0500598#endif
Kumar Galabd70bbe2008-08-15 08:24:41 -0500599
Kumar Gala18178bc2008-10-21 17:25:45 -0500600 /* determine if we have a sub command */
601 if (argc > 1) {
602 char *endp;
603
604 simple_strtoul(argv[1], &endp, 16);
605 /* endp pointing to NULL means that argv[1] was just a
606 * valid number, pass it along to the normal bootm processing
607 *
608 * If endp is ':' or '#' assume a FIT identifier so pass
609 * along for normal processing.
610 *
611 * Right now we assume the first arg should never be '-'
612 */
613 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
614 return do_bootm_subcommand(cmdtp, flag, argc, argv);
615 }
616
Anatolij Gustschin128de002008-08-29 21:04:45 +0200617 if (bootm_start(cmdtp, flag, argc, argv))
618 return 1;
Kumar Galabd70bbe2008-08-15 08:24:41 -0500619
620 /*
621 * We have reached the point of no return: we are going to
622 * overwrite all exception vector code, so we cannot easily
623 * recover from any failures any more...
624 */
625 iflag = disable_interrupts();
626
627#if defined(CONFIG_CMD_USB)
628 /*
629 * turn off USB to prevent the host controller from writing to the
630 * SDRAM while Linux is booting. This could happen (at least for OHCI
631 * controller), because the HCCA (Host Controller Communication Area)
632 * lies within the SDRAM and the host controller writes continously to
633 * this area (as busmaster!). The HccaFrameNumber is for example
634 * updated every 1 ms within the HCCA structure in SDRAM! For more
635 * details see the OpenHCI specification.
636 */
637 usb_stop();
638#endif
639
640#ifdef CONFIG_AMIGAONEG3SE
641 /*
642 * We've possible left the caches enabled during
643 * bios emulation, so turn them off again
644 */
645 icache_disable();
646 dcache_disable();
647#endif
648
649 ret = bootm_load_os(images.os, &load_end, 1);
650
651 if (ret < 0) {
652 if (ret == BOOTM_ERR_RESET)
Marian Balakowiczab00e022008-04-11 11:07:49 +0200653 do_reset (cmdtp, flag, argc, argv);
Kumar Galabd70bbe2008-08-15 08:24:41 -0500654 if (ret == BOOTM_ERR_OVERLAP) {
655 if (images.legacy_hdr_valid) {
656 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
657 puts ("WARNING: legacy format multi component "
658 "image overwritten\n");
659 } else {
660 puts ("ERROR: new format image overwritten - "
661 "must RESET the board to recover\n");
662 show_boot_progress (-113);
663 do_reset (cmdtp, flag, argc, argv);
664 }
665 }
666 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
667 if (iflag)
668 enable_interrupts();
669 show_boot_progress (-7);
670 return 1;
Marian Balakowiczab00e022008-04-11 11:07:49 +0200671 }
wdenk47d1a6e2002-11-03 00:01:44 +0000672 }
Marian Balakowiczf92332b2008-01-31 13:20:06 +0100673
Kumar Galabd70bbe2008-08-15 08:24:41 -0500674 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
wdenk47d1a6e2002-11-03 00:01:44 +0000675
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200676 if (images.os.type == IH_TYPE_STANDALONE) {
677 if (iflag)
678 enable_interrupts();
679 /* This may return when 'autostart' is 'no' */
680 bootm_start_standalone(iflag, argc, argv);
681 return 0;
682 }
683
Kumar Galabd70bbe2008-08-15 08:24:41 -0500684 show_boot_progress (8);
Kumar Gala6d7bfa82008-02-27 21:51:47 -0600685
wdenk808532a2003-10-10 10:05:42 +0000686#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabf3954f2008-10-21 17:25:44 -0500687 if (images.os.os == IH_OS_LINUX)
688 fixup_silent_linux();
wdenk808532a2003-10-10 10:05:42 +0000689#endif
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100690
Kumar Galabf3954f2008-10-21 17:25:44 -0500691 boot_fn = boot_os[images.os.os];
Detlev Zundel77094472009-07-13 16:01:18 +0200692
693 if (boot_fn == NULL) {
694 if (iflag)
695 enable_interrupts();
696 printf ("ERROR: booting os '%s' (%d) is not supported\n",
697 genimg_get_os_name(images.os.os), images.os.os);
698 show_boot_progress (-8);
699 return 1;
700 }
701
Kumar Gala5e726692009-08-27 08:23:55 -0500702 arch_preboot_os();
703
Kumar Galabf3954f2008-10-21 17:25:44 -0500704 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000705
Heiko Schocher8a8ec532007-07-13 09:54:17 +0200706 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000707#ifdef DEBUG
wdenk42c05472004-03-23 22:14:11 +0000708 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000709#endif
Kumar Gala48626aa2008-08-15 08:24:45 -0500710 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicz9c220262008-03-12 10:14:57 +0100711
wdenk47d1a6e2002-11-03 00:01:44 +0000712 return 1;
713}
714
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100715/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100716 * image_get_kernel - verify legacy format kernel image
717 * @img_addr: in RAM address of the legacy format image to be verified
718 * @verify: data CRC verification flag
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100719 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100720 * image_get_kernel() verifies legacy image integrity and returns pointer to
721 * legacy image header if image verification was completed successfully.
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100722 *
723 * returns:
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100724 * pointer to a legacy image header if valid image was found
725 * otherwise return NULL
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100726 */
Marian Balakowicz59504f62008-02-27 11:02:07 +0100727static image_header_t *image_get_kernel (ulong img_addr, int verify)
wdenk808532a2003-10-10 10:05:42 +0000728{
Marian Balakowicz59504f62008-02-27 11:02:07 +0100729 image_header_t *hdr = (image_header_t *)img_addr;
wdenk808532a2003-10-10 10:05:42 +0000730
Marian Balakowicz59504f62008-02-27 11:02:07 +0100731 if (!image_check_magic(hdr)) {
732 puts ("Bad Magic Number\n");
733 show_boot_progress (-1);
734 return NULL;
735 }
736 show_boot_progress (2);
wdenk808532a2003-10-10 10:05:42 +0000737
Marian Balakowicz59504f62008-02-27 11:02:07 +0100738 if (!image_check_hcrc (hdr)) {
739 puts ("Bad Header Checksum\n");
740 show_boot_progress (-2);
741 return NULL;
742 }
743
744 show_boot_progress (3);
745 image_print_contents (hdr);
746
747 if (verify) {
748 puts (" Verifying Checksum ... ");
749 if (!image_check_dcrc (hdr)) {
750 printf ("Bad Data CRC\n");
751 show_boot_progress (-3);
752 return NULL;
wdenk808532a2003-10-10 10:05:42 +0000753 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100754 puts ("OK\n");
wdenk808532a2003-10-10 10:05:42 +0000755 }
Marian Balakowicz59504f62008-02-27 11:02:07 +0100756 show_boot_progress (4);
wdenk808532a2003-10-10 10:05:42 +0000757
Marian Balakowicz59504f62008-02-27 11:02:07 +0100758 if (!image_check_target_arch (hdr)) {
759 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
760 show_boot_progress (-4);
761 return NULL;
762 }
763 return hdr;
wdenk808532a2003-10-10 10:05:42 +0000764}
wdenk808532a2003-10-10 10:05:42 +0000765
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100766/**
767 * fit_check_kernel - verify FIT format kernel subimage
768 * @fit_hdr: pointer to the FIT image header
769 * os_noffset: kernel subimage node offset within FIT image
770 * @verify: data CRC verification flag
771 *
772 * fit_check_kernel() verifies integrity of the kernel subimage and from
773 * specified FIT image.
774 *
775 * returns:
776 * 1, on success
777 * 0, on failure
778 */
779#if defined (CONFIG_FIT)
780static int fit_check_kernel (const void *fit, int os_noffset, int verify)
wdenk47d1a6e2002-11-03 00:01:44 +0000781{
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100782 fit_image_print (fit, os_noffset, " ");
wdenk47d1a6e2002-11-03 00:01:44 +0000783
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100784 if (verify) {
785 puts (" Verifying Hash Integrity ... ");
786 if (!fit_image_check_hashes (fit, os_noffset)) {
787 puts ("Bad Data Hash\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100788 show_boot_progress (-104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100789 return 0;
790 }
791 puts ("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000792 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100793 show_boot_progress (105);
wdenk47d1a6e2002-11-03 00:01:44 +0000794
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100795 if (!fit_image_check_target_arch (fit, os_noffset)) {
796 puts ("Unsupported Architecture\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100797 show_boot_progress (-105);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100798 return 0;
799 }
wdenk47d1a6e2002-11-03 00:01:44 +0000800
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100801 show_boot_progress (106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100802 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
803 puts ("Not a kernel image\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100804 show_boot_progress (-106);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100805 return 0;
806 }
wdenk47d1a6e2002-11-03 00:01:44 +0000807
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100808 show_boot_progress (107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100809 return 1;
810}
811#endif /* CONFIG_FIT */
wdenk56f94be2002-11-05 16:35:14 +0000812
Marian Balakowicz59504f62008-02-27 11:02:07 +0100813/**
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100814 * boot_get_kernel - find kernel image
Marian Balakowicz59504f62008-02-27 11:02:07 +0100815 * @os_data: pointer to a ulong variable, will hold os data start address
816 * @os_len: pointer to a ulong variable, will hold os data length
817 *
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100818 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz59504f62008-02-27 11:02:07 +0100819 * and locates kernel data.
820 *
821 * returns:
822 * pointer to image header if valid image was found, plus kernel start
823 * address and length, otherwise NULL
824 */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100825static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +0100826 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100827{
828 image_header_t *hdr;
829 ulong img_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100830#if defined(CONFIG_FIT)
831 void *fit_hdr;
832 const char *fit_uname_config = NULL;
833 const char *fit_uname_kernel = NULL;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100834 const void *data;
835 size_t len;
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100836 int cfg_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100837 int os_noffset;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100838#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000839
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100840 /* find out kernel image address */
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100841 if (argc < 2) {
842 img_addr = load_addr;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100843 debug ("* kernel: default image load address = 0x%08lx\n",
844 load_addr);
845#if defined(CONFIG_FIT)
846 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
847 &fit_uname_config)) {
848 debug ("* kernel: config '%s' from image at 0x%08lx\n",
849 fit_uname_config, img_addr);
850 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
851 &fit_uname_kernel)) {
852 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
853 fit_uname_kernel, img_addr);
854#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100855 } else {
856 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100857 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100858 }
wdenk56f94be2002-11-05 16:35:14 +0000859
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100860 show_boot_progress (1);
wdenk47d1a6e2002-11-03 00:01:44 +0000861
Marian Balakowiczc536d6f2008-02-21 17:20:19 +0100862 /* copy from dataflash if needed */
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100863 img_addr = genimg_get_image (img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000864
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100865 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100866 *os_data = *os_len = 0;
Marian Balakowiczd7c88a42008-02-29 14:58:34 +0100867 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100868 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100869 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
870 img_addr);
Marian Balakowicz59504f62008-02-27 11:02:07 +0100871 hdr = image_get_kernel (img_addr, images->verify);
872 if (!hdr)
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100873 return NULL;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100874 show_boot_progress (5);
wdenk47d1a6e2002-11-03 00:01:44 +0000875
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100876 /* get os_data and os_len */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100877 switch (image_get_type (hdr)) {
878 case IH_TYPE_KERNEL:
879 *os_data = image_get_data (hdr);
880 *os_len = image_get_data_size (hdr);
881 break;
882 case IH_TYPE_MULTI:
883 image_multi_getimg (hdr, 0, os_data, os_len);
884 break;
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200885 case IH_TYPE_STANDALONE:
Detlev Zundelea32b5e2009-07-13 16:01:19 +0200886 *os_data = image_get_data (hdr);
887 *os_len = image_get_data_size (hdr);
888 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100889 default:
890 printf ("Wrong Image Type for %s command\n", cmdtp->name);
891 show_boot_progress (-5);
892 return NULL;
893 }
Marian Balakowiczab00e022008-04-11 11:07:49 +0200894
895 /*
896 * copy image header to allow for image overwrites during kernel
897 * decompression.
898 */
899 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
900
901 /* save pointer to image header */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100902 images->legacy_hdr_os = hdr;
wdenk47d1a6e2002-11-03 00:01:44 +0000903
Marian Balakowiczab00e022008-04-11 11:07:49 +0200904 images->legacy_hdr_valid = 1;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100905 show_boot_progress (6);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100906 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100907#if defined(CONFIG_FIT)
908 case IMAGE_FORMAT_FIT:
909 fit_hdr = (void *)img_addr;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100910 printf ("## Booting kernel from FIT Image at %08lx ...\n",
911 img_addr);
wdenk47d1a6e2002-11-03 00:01:44 +0000912
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100913 if (!fit_check_format (fit_hdr)) {
914 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100915 show_boot_progress (-100);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100916 return NULL;
917 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100918 show_boot_progress (100);
wdenk47d1a6e2002-11-03 00:01:44 +0000919
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100920 if (!fit_uname_kernel) {
921 /*
922 * no kernel image node unit name, try to get config
923 * node first. If config unit node name is NULL
924 * fit_conf_get_node() will try to find default config node
925 */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100926 show_boot_progress (101);
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100927 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
928 if (cfg_noffset < 0) {
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100929 show_boot_progress (-101);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100930 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100931 }
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100932 /* save configuration uname provided in the first
933 * bootm argument
934 */
935 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
936 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
937 show_boot_progress (103);
wdenk47d1a6e2002-11-03 00:01:44 +0000938
Marian Balakowicz0cd4f3d2008-03-12 10:35:46 +0100939 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100940 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
941 } else {
942 /* get kernel component image node offset */
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100943 show_boot_progress (102);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100944 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
945 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100946 if (os_noffset < 0) {
947 show_boot_progress (-103);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100948 return NULL;
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100949 }
wdenk47d1a6e2002-11-03 00:01:44 +0000950
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100951 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
wdenk47d1a6e2002-11-03 00:01:44 +0000952
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100953 show_boot_progress (104);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100954 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
955 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500956
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100957 /* get kernel image data address and length */
958 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
959 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100960 show_boot_progress (-107);
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100961 return NULL;
Matthew McClintock6fb7c812006-06-28 10:41:37 -0500962 }
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100963 show_boot_progress (108);
wdenk47d1a6e2002-11-03 00:01:44 +0000964
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100965 *os_len = len;
966 *os_data = (ulong)data;
967 images->fit_hdr_os = fit_hdr;
968 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz61c1ad52008-03-12 10:32:59 +0100969 images->fit_noffset_os = os_noffset;
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100970 break;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100971#endif
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100972 default:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100973 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz74eb4ae2008-03-12 10:33:01 +0100974 show_boot_progress (-108);
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100975 return NULL;
976 }
wdenk47d1a6e2002-11-03 00:01:44 +0000977
Wolfgang Denk8d541882008-07-10 13:16:09 +0200978 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100979 *os_data, *os_len, *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +0000980
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +0100981 return (void *)img_addr;
Marian Balakowiczc40032c2008-01-31 13:59:09 +0100982}
wdenk47d1a6e2002-11-03 00:01:44 +0000983
wdenk47d1a6e2002-11-03 00:01:44 +0000984U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +0200985 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyserdfb72b82009-01-27 18:03:12 -0600986 "boot application image from memory",
Marian Balakowicz2df645e2008-01-08 18:17:10 +0100987 "[addr [arg ...]]\n - boot application image stored in memory\n"
988 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
989 "\t'arg' can be the address of an initrd image\n"
Marian Balakowiczd2160852008-01-31 13:20:07 +0100990#if defined(CONFIG_OF_LIBFDT)
wdenk47d1a6e2002-11-03 00:01:44 +0000991 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
992 "\ta third argument is required which is the address of the\n"
993 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
994 "\tuse a '-' for the second argument. If you do not pass a third\n"
995 "\ta bd_info struct will be passed instead\n"
996#endif
Marian Balakowicz9f8e4aa2008-03-12 10:01:05 +0100997#if defined(CONFIG_FIT)
998 "\t\nFor the new multi component uImage format (FIT) addresses\n"
999 "\tmust be extened to include component or configuration unit name:\n"
1000 "\taddr:<subimg_uname> - direct component image specification\n"
1001 "\taddr#<conf_uname> - configuration specification\n"
1002 "\tUse iminfo command to get the list of existing component\n"
1003 "\timages and configurations.\n"
1004#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001005 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1006 "must be\n"
1007 "issued in the order below (it's ok to not issue all sub-commands):\n"
1008 "\tstart [addr [arg ...]]\n"
1009 "\tloados - load OS image\n"
1010#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1011 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1012#endif
1013#if defined(CONFIG_OF_LIBFDT)
1014 "\tfdt - relocate flat device tree\n"
1015#endif
Kumar Gala18178bc2008-10-21 17:25:45 -05001016 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser694a3932009-11-18 19:08:59 -06001017 "\tbdt - OS specific bd_t processing\n"
Kumar Gala18178bc2008-10-21 17:25:45 -05001018 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001019 "\tgo - start OS"
wdenk47d1a6e2002-11-03 00:01:44 +00001020);
wdenk47d1a6e2002-11-03 00:01:44 +00001021
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001022/*******************************************************************/
1023/* bootd - boot default image */
1024/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001025#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001026int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1027{
1028 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001029
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001030#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001031 if (run_command (getenv ("bootcmd"), flag) < 0)
1032 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001033#else
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001034 if (parse_string_outer (getenv ("bootcmd"),
1035 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1036 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001037#endif
1038 return rcode;
1039}
wdenk47d1a6e2002-11-03 00:01:44 +00001040
wdenkf287a242003-07-01 21:06:45 +00001041U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001042 boot, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001043 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001044 ""
wdenk3086a972003-06-28 23:11:04 +00001045);
wdenk47d1a6e2002-11-03 00:01:44 +00001046
wdenk3086a972003-06-28 23:11:04 +00001047/* keep old command name "bootd" for backward compatibility */
wdenkf287a242003-07-01 21:06:45 +00001048U_BOOT_CMD(
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001049 bootd, 1, 1, do_bootd,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001050 "boot default, i.e., run 'bootcmd'",
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001051 ""
wdenk57b2d802003-06-27 21:31:46 +00001052);
wdenk47d1a6e2002-11-03 00:01:44 +00001053
wdenk47d1a6e2002-11-03 00:01:44 +00001054#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001055
wdenk47d1a6e2002-11-03 00:01:44 +00001056
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001057/*******************************************************************/
1058/* iminfo - print header info for a requested image */
1059/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001060#if defined(CONFIG_CMD_IMI)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001061int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001062{
1063 int arg;
1064 ulong addr;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001065 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001066
wdenk47d1a6e2002-11-03 00:01:44 +00001067 if (argc < 2) {
1068 return image_info (load_addr);
1069 }
wdenk47d1a6e2002-11-03 00:01:44 +00001070
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001071 for (arg = 1; arg < argc; ++arg) {
1072 addr = simple_strtoul (argv[arg], NULL, 16);
1073 if (image_info (addr) != 0)
1074 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001075 }
1076 return rcode;
1077}
wdenk47d1a6e2002-11-03 00:01:44 +00001078
wdenk47d1a6e2002-11-03 00:01:44 +00001079static int image_info (ulong addr)
1080{
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001081 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001082
wdenk47d1a6e2002-11-03 00:01:44 +00001083 printf ("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001084
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001085 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001086 case IMAGE_FORMAT_LEGACY:
1087 puts (" Legacy image found\n");
1088 if (!image_check_magic (hdr)) {
1089 puts (" Bad Magic Number\n");
1090 return 1;
1091 }
wdenk47d1a6e2002-11-03 00:01:44 +00001092
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001093 if (!image_check_hcrc (hdr)) {
1094 puts (" Bad Header Checksum\n");
1095 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001096 }
1097
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001098 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001099
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001100 puts (" Verifying Checksum ... ");
1101 if (!image_check_dcrc (hdr)) {
1102 puts (" Bad Data CRC\n");
1103 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001104 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001105 puts ("OK\n");
1106 return 0;
1107#if defined(CONFIG_FIT)
1108 case IMAGE_FORMAT_FIT:
1109 puts (" FIT image found\n");
wdenk47d1a6e2002-11-03 00:01:44 +00001110
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001111 if (!fit_check_format (hdr)) {
1112 puts ("Bad FIT image format!\n");
1113 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001114 }
1115
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001116 fit_print_contents (hdr);
Bartlomiej Sieka03797f52008-09-09 12:58:16 +02001117
1118 if (!fit_all_image_check_hashes (hdr)) {
1119 puts ("Bad hash in FIT image!\n");
1120 return 1;
1121 }
1122
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001123 return 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001124#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001125 default:
1126 puts ("Unknown image format!\n");
1127 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001128 }
wdenk47d1a6e2002-11-03 00:01:44 +00001129
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001130 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001131}
wdenk47d1a6e2002-11-03 00:01:44 +00001132
wdenkf287a242003-07-01 21:06:45 +00001133U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001134 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001135 "print header information for application image",
wdenk57b2d802003-06-27 21:31:46 +00001136 "addr [addr ...]\n"
1137 " - print header information for application image starting at\n"
1138 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001139 " image contents (magic number, header and payload checksums)"
wdenk57b2d802003-06-27 21:31:46 +00001140);
wdenk47d1a6e2002-11-03 00:01:44 +00001141#endif
1142
1143
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001144/*******************************************************************/
1145/* imls - list all images found in flash */
1146/*******************************************************************/
Jon Loeliger54324d02007-07-08 17:51:39 -05001147#if defined(CONFIG_CMD_IMLS)
wdenk874ac262003-07-24 23:38:38 +00001148int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1149{
1150 flash_info_t *info;
1151 int i, j;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001152 void *hdr;
wdenk47d1a6e2002-11-03 00:01:44 +00001153
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001154 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD03836942008-10-16 15:01:15 +02001155 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
wdenk47d1a6e2002-11-03 00:01:44 +00001156
wdenk874ac262003-07-24 23:38:38 +00001157 if (info->flash_id == FLASH_UNKNOWN)
1158 goto next_bank;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001159 for (j = 0; j < info->sector_count; ++j) {
wdenk47d1a6e2002-11-03 00:01:44 +00001160
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001161 hdr = (void *)info->start[j];
1162 if (!hdr)
Marian Balakowicz41d71ed2008-01-08 18:14:09 +01001163 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001164
Marian Balakowiczd7c88a42008-02-29 14:58:34 +01001165 switch (genimg_get_format (hdr)) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001166 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001167 if (!image_check_hcrc (hdr))
1168 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001169
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001170 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1171 image_print_contents (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +00001172
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001173 puts (" Verifying Checksum ... ");
1174 if (!image_check_dcrc (hdr)) {
1175 puts ("Bad Data CRC\n");
1176 } else {
1177 puts ("OK\n");
1178 }
1179 break;
1180#if defined(CONFIG_FIT)
1181 case IMAGE_FORMAT_FIT:
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001182 if (!fit_check_format (hdr))
1183 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001184
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001185 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowiczcc1fd912008-03-11 12:35:20 +01001186 fit_print_contents (hdr);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001187 break;
1188#endif
1189 default:
1190 goto next_sector;
wdenk47d1a6e2002-11-03 00:01:44 +00001191 }
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001192
wdenk0a658552003-08-05 17:43:17 +00001193next_sector: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001194 }
wdenk0a658552003-08-05 17:43:17 +00001195next_bank: ;
wdenk47d1a6e2002-11-03 00:01:44 +00001196 }
1197
wdenk874ac262003-07-24 23:38:38 +00001198 return (0);
1199}
wdenk47d1a6e2002-11-03 00:01:44 +00001200
wdenk874ac262003-07-24 23:38:38 +00001201U_BOOT_CMD(
1202 imls, 1, 1, do_imls,
Peter Tyserdfb72b82009-01-27 18:03:12 -06001203 "list all images found in flash",
wdenk874ac262003-07-24 23:38:38 +00001204 "\n"
1205 " - Prints information about all images found at sector\n"
Wolfgang Denkc54781c2009-05-24 17:06:54 +02001206 " boundaries in flash."
wdenk874ac262003-07-24 23:38:38 +00001207);
wdenk47d1a6e2002-11-03 00:01:44 +00001208#endif
1209
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001210/*******************************************************************/
Marian Balakowiczc40032c2008-01-31 13:59:09 +01001211/* helper routines */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001212/*******************************************************************/
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001213#ifdef CONFIG_SILENT_CONSOLE
1214static void fixup_silent_linux ()
1215{
1216 char buf[256], *start, *end;
1217 char *cmdline = getenv ("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001218
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001219 /* Only fix cmdline when requested */
1220 if (!(gd->flags & GD_FLG_SILENT))
1221 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001222
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001223 debug ("before silent fix-up: %s\n", cmdline);
1224 if (cmdline) {
1225 if ((start = strstr (cmdline, "console=")) != NULL) {
1226 end = strchr (start, ' ');
1227 strncpy (buf, cmdline, (start - cmdline + 8));
1228 if (end)
1229 strcpy (buf + (start - cmdline + 8), end);
1230 else
1231 buf[start - cmdline + 8] = '\0';
1232 } else {
1233 strcpy (buf, cmdline);
1234 strcat (buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001235 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001236 } else {
1237 strcpy (buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001238 }
wdenk47d1a6e2002-11-03 00:01:44 +00001239
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001240 setenv ("bootargs", buf);
1241 debug ("after silent fix-up: %s\n", buf);
1242}
1243#endif /* CONFIG_SILENT_CONSOLE */
wdenk47d1a6e2002-11-03 00:01:44 +00001244
wdenk47d1a6e2002-11-03 00:01:44 +00001245
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001246/*******************************************************************/
1247/* OS booting routines */
1248/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001249
Kumar Gala697675e2008-10-21 17:25:47 -05001250#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala48626aa2008-08-15 08:24:45 -05001251static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001252 bootm_headers_t *images)
wdenk92bbe3f2003-04-20 14:04:18 +00001253{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001254 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001255 image_header_t *os_hdr, *hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001256 ulong kernel_data, kernel_len;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001257 char *consdev;
1258 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001259
Kumar Gala18178bc2008-10-21 17:25:45 -05001260 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1261 return 1;
1262
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001263#if defined(CONFIG_FIT)
1264 if (!images->legacy_hdr_valid) {
1265 fit_unsupported_reset ("NetBSD");
Kumar Gala48626aa2008-08-15 08:24:45 -05001266 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001267 }
1268#endif
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001269 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001270
1271 /*
1272 * Booting a (NetBSD) kernel image
1273 *
1274 * This process is pretty similar to a standalone application:
1275 * The (first part of an multi-) image must be a stage-2 loader,
1276 * which in turn is responsible for loading & invoking the actual
1277 * kernel. The only differences are the parameters being passed:
1278 * besides the board info strucure, the loader expects a command
1279 * line, the name of the console device, and (optionally) the
1280 * address of the original image header.
1281 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001282 os_hdr = NULL;
Marian Balakowiczab00e022008-04-11 11:07:49 +02001283 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001284 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1285 if (kernel_len)
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001286 os_hdr = hdr;
Marian Balakowiczb4a12a92008-01-08 18:12:17 +01001287 }
wdenk47d1a6e2002-11-03 00:01:44 +00001288
1289 consdev = "";
1290#if defined (CONFIG_8xx_CONS_SMC1)
1291 consdev = "smc1";
1292#elif defined (CONFIG_8xx_CONS_SMC2)
1293 consdev = "smc2";
1294#elif defined (CONFIG_8xx_CONS_SCC2)
1295 consdev = "scc2";
1296#elif defined (CONFIG_8xx_CONS_SCC3)
1297 consdev = "scc3";
1298#endif
1299
1300 if (argc > 2) {
1301 ulong len;
1302 int i;
1303
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001304 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001305 len += strlen (argv[i]) + 1;
1306 cmdline = malloc (len);
1307
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001308 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001309 if (i > 2)
1310 cmdline[len++] = ' ';
1311 strcpy (&cmdline[len], argv[i]);
1312 len += strlen (argv[i]);
1313 }
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001314 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001315 cmdline = "";
1316 }
1317
Kumar Gala93467bc2008-08-15 08:24:36 -05001318 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001319
1320 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1321 (ulong)loader);
1322
1323 show_boot_progress (15);
1324
1325 /*
1326 * NetBSD Stage-2 Loader Parameters:
1327 * r3: ptr to board info data
1328 * r4: image address
1329 * r5: console device
1330 * r6: boot args string
1331 */
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001332 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala48626aa2008-08-15 08:24:45 -05001333
1334 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001335}
Kumar Gala697675e2008-10-21 17:25:47 -05001336#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001337
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001338#ifdef CONFIG_LYNXKDI
Kumar Gala48626aa2008-08-15 08:24:45 -05001339static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001340 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001341{
Marian Balakowiczab00e022008-04-11 11:07:49 +02001342 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001343
Kumar Gala18178bc2008-10-21 17:25:45 -05001344 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1345 return 1;
1346
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001347#if defined(CONFIG_FIT)
1348 if (!images->legacy_hdr_valid) {
1349 fit_unsupported_reset ("Lynx");
Kumar Gala48626aa2008-08-15 08:24:45 -05001350 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001351 }
1352#endif
1353
1354 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala48626aa2008-08-15 08:24:45 -05001355
1356 return 1;
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001357}
1358#endif /* CONFIG_LYNXKDI */
1359
Kumar Gala697675e2008-10-21 17:25:47 -05001360#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala48626aa2008-08-15 08:24:45 -05001361static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001362 bootm_headers_t *images)
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001363{
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001364 void (*entry_point)(bd_t *);
wdenk92bbe3f2003-04-20 14:04:18 +00001365
Kumar Gala18178bc2008-10-21 17:25:45 -05001366 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1367 return 1;
1368
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001369#if defined(CONFIG_FIT)
1370 if (!images->legacy_hdr_valid) {
1371 fit_unsupported_reset ("RTEMS");
Kumar Gala48626aa2008-08-15 08:24:45 -05001372 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001373 }
1374#endif
1375
Kumar Gala93467bc2008-08-15 08:24:36 -05001376 entry_point = (void (*)(bd_t *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001377
wdenk92bbe3f2003-04-20 14:04:18 +00001378 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1379 (ulong)entry_point);
wdenk47d1a6e2002-11-03 00:01:44 +00001380
Heiko Schocher8a8ec532007-07-13 09:54:17 +02001381 show_boot_progress (15);
wdenk92bbe3f2003-04-20 14:04:18 +00001382
1383 /*
1384 * RTEMS Parameters:
1385 * r3: ptr to board info data
1386 */
Marian Balakowicz2df645e2008-01-08 18:17:10 +01001387 (*entry_point)(gd->bd);
Kumar Gala48626aa2008-08-15 08:24:45 -05001388
1389 return 1;
wdenk92bbe3f2003-04-20 14:04:18 +00001390}
Kumar Gala697675e2008-10-21 17:25:47 -05001391#endif /* CONFIG_BOOTM_RTEMS */
wdenk92bbe3f2003-04-20 14:04:18 +00001392
Jon Loeliger54324d02007-07-08 17:51:39 -05001393#if defined(CONFIG_CMD_ELF)
Kumar Gala48626aa2008-08-15 08:24:45 -05001394static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001395 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001396{
wdenk47d1a6e2002-11-03 00:01:44 +00001397 char str[80];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001398
Kumar Gala18178bc2008-10-21 17:25:45 -05001399 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1400 return 1;
1401
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001402#if defined(CONFIG_FIT)
Marian Balakowiczab00e022008-04-11 11:07:49 +02001403 if (!images->legacy_hdr_valid) {
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001404 fit_unsupported_reset ("VxWorks");
Kumar Gala48626aa2008-08-15 08:24:45 -05001405 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001406 }
1407#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001408
Kumar Gala93467bc2008-08-15 08:24:36 -05001409 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001410 setenv("loadaddr", str);
Kumar Gala48626aa2008-08-15 08:24:45 -05001411 do_bootvx(NULL, 0, 0, NULL);
1412
1413 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001414}
1415
Kumar Gala48626aa2008-08-15 08:24:45 -05001416static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz61fde552008-02-27 11:01:04 +01001417 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001418{
wdenk47d1a6e2002-11-03 00:01:44 +00001419 char *local_args[2];
1420 char str[16];
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001421
Kumar Gala18178bc2008-10-21 17:25:45 -05001422 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1423 return 1;
1424
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001425#if defined(CONFIG_FIT)
1426 if (!images->legacy_hdr_valid) {
1427 fit_unsupported_reset ("QNX");
Kumar Gala48626aa2008-08-15 08:24:45 -05001428 return 1;
Marian Balakowiczdbdd16a2008-02-04 08:28:09 +01001429 }
1430#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001431
Kumar Gala93467bc2008-08-15 08:24:36 -05001432 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001433 local_args[0] = argv[0];
1434 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala48626aa2008-08-15 08:24:45 -05001435 do_bootelf(NULL, 0, 2, local_args);
1436
1437 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001438}
Jon Loeligerd704d912007-07-10 11:02:44 -05001439#endif
Peter Tyser56b8dd12008-09-08 14:56:49 -05001440
1441#ifdef CONFIG_INTEGRITY
1442static int do_bootm_integrity (int flag, int argc, char *argv[],
1443 bootm_headers_t *images)
1444{
1445 void (*entry_point)(void);
1446
Kumar Gala18178bc2008-10-21 17:25:45 -05001447 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1448 return 1;
1449
Peter Tyser56b8dd12008-09-08 14:56:49 -05001450#if defined(CONFIG_FIT)
1451 if (!images->legacy_hdr_valid) {
1452 fit_unsupported_reset ("INTEGRITY");
1453 return 1;
1454 }
1455#endif
1456
1457 entry_point = (void (*)(void))images->ep;
1458
1459 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1460 (ulong)entry_point);
1461
1462 show_boot_progress (15);
1463
1464 /*
1465 * INTEGRITY Parameters:
1466 * None
1467 */
1468 (*entry_point)();
1469
1470 return 1;
1471}
1472#endif