blob: 46efd7741f7fded7de4dda437bfaac97f3a82867 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Detlev Zundelca95c9d2009-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 Balakowiczb97a2a02008-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-VILLARDa31e0912009-04-04 12:49:11 +020033#include <u-boot/zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000034#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000035#include <environment.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060036#include <lmb.h>
Kumar Gala49c3a862008-10-21 17:25:45 -050037#include <linux/ctype.h>
wdenk47d1a6e2002-11-03 00:01:44 +000038#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000039
Stefan Roeseebb86c42008-07-30 09:59:51 +020040#if defined(CONFIG_CMD_USB)
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020041#include <usb.h>
42#endif
43
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-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 Gala54f9c862008-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' Mantellinifc9c1722008-09-08 02:46:13 +020054#ifdef CONFIG_LZMA
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020055#include <lzma/LzmaTypes.h>
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +020056#include <lzma/LzmaDec.h>
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020057#include <lzma/LzmaTools.h>
58#endif /* CONFIG_LZMA */
59
Peter Korsgaard20dde482009-11-19 11:37:51 +010060#ifdef CONFIG_LZO
61#include <linux/lzo.h>
62#endif /* CONFIG_LZO */
63
Marian Balakowicz1ee11802008-01-08 18:17:10 +010064DECLARE_GLOBAL_DATA_PTR;
65
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-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 */
wdenk47d1a6e2002-11-03 00:01:44 +000068#endif
69
Marian Balakowicz321359f2008-01-08 18:11:43 +010070#ifdef CONFIG_BZIP2
71extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000072#endif
73
Jon Loeligerbaa26db2007-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
wdenk27b207f2003-07-24 23:38:38 +000077
Jon Loeligerbaa26db2007-07-08 17:51:39 -050078#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000079#include <flash.h>
Stefan Roeseca5def32010-08-31 10:00:10 +020080#include <mtd/cfi_flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020081extern flash_info_t flash_info[]; /* info for FLASH chips */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020082static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000083#endif
84
Marian Balakowicz1ee11802008-01-08 18:17:10 +010085#ifdef CONFIG_SILENT_CONSOLE
86static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000087#endif
88
Marian Balakowicz6986a382008-03-12 10:01:05 +010089static image_header_t *image_get_kernel (ulong img_addr, int verify);
90#if defined(CONFIG_FIT)
91static int fit_check_kernel (const void *fit, int os_noffset, int verify);
92#endif
93
Wolfgang Denk54841ab2010-06-28 22:00:46 +020094static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010095 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Wolfgang Denk54841ab2010-06-28 22:00:46 +020096extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000097
wdenk47d1a6e2002-11-03 00:01:44 +000098/*
99 * Continue booting an OS image; caller already has:
100 * - copied image header to global variable `header'
101 * - checked header magic number, checksums (both header & image),
102 * - verified image architecture (PPC) and type (KERNEL or MULTI),
103 * - loaded (first part of) image to header load address,
104 * - disabled interrupts.
105 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200106typedef int boot_os_fn (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100107 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000108
Kumar Galab1d0db12008-10-21 17:25:47 -0500109#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100110extern boot_os_fn do_bootm_linux;
Kumar Galab1d0db12008-10-21 17:25:47 -0500111#endif
112#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100113static boot_os_fn do_bootm_netbsd;
Kumar Galab1d0db12008-10-21 17:25:47 -0500114#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100115#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100116static boot_os_fn do_bootm_lynxkdi;
117extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000118#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500119#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100120static boot_os_fn do_bootm_rtems;
Kumar Galab1d0db12008-10-21 17:25:47 -0500121#endif
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500122#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100123static boot_os_fn do_bootm_vxworks;
124static boot_os_fn do_bootm_qnxelf;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200125int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
126int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500127#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500128#if defined(CONFIG_INTEGRITY)
129static boot_os_fn do_bootm_integrity;
130#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000131
Mike Frysinger00085552009-11-03 11:36:26 -0500132static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500133#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500134 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500135#endif
136#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500137 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500138#endif
Kumar Galabe083152008-10-21 17:25:44 -0500139#ifdef CONFIG_LYNXKDI
140 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
141#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500142#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500143 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500144#endif
Kumar Galabe083152008-10-21 17:25:44 -0500145#if defined(CONFIG_CMD_ELF)
146 [IH_OS_VXWORKS] = do_bootm_vxworks,
147 [IH_OS_QNX] = do_bootm_qnxelf,
148#endif
149#ifdef CONFIG_INTEGRITY
150 [IH_OS_INTEGRITY] = do_bootm_integrity,
151#endif
152};
153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100155static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100156
Kumar Gala3dfad402009-08-27 08:23:55 -0500157/* Allow for arch specific config before we boot */
158void __arch_preboot_os(void)
159{
160 /* please define platform specific arch_preboot_os() */
161}
162void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
163
Kumar Galac4f94192008-08-15 08:24:37 -0500164#if defined(__ARM__)
165 #define IH_INITRD_ARCH IH_ARCH_ARM
166#elif defined(__avr32__)
167 #define IH_INITRD_ARCH IH_ARCH_AVR32
168#elif defined(__bfin__)
169 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
170#elif defined(__I386__)
171 #define IH_INITRD_ARCH IH_ARCH_I386
172#elif defined(__M68K__)
173 #define IH_INITRD_ARCH IH_ARCH_M68K
174#elif defined(__microblaze__)
175 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
176#elif defined(__mips__)
177 #define IH_INITRD_ARCH IH_ARCH_MIPS
Kumar Galac4f94192008-08-15 08:24:37 -0500178#elif defined(__nios2__)
179 #define IH_INITRD_ARCH IH_ARCH_NIOS2
180#elif defined(__PPC__)
181 #define IH_INITRD_ARCH IH_ARCH_PPC
182#elif defined(__sh__)
183 #define IH_INITRD_ARCH IH_ARCH_SH
184#elif defined(__sparc__)
185 #define IH_INITRD_ARCH IH_ARCH_SPARC
186#else
187# error Unknown CPU type
188#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000189
Mike Frysingera16028d2009-11-03 11:35:59 -0500190static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000191{
Mike Frysingera16028d2009-11-03 11:35:59 -0500192#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500193 ulong mem_start;
194 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000195
Kumar Galae906cfa2008-08-15 08:24:40 -0500196 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000197
Kumar Galad3f2fa02008-02-27 21:51:50 -0600198 mem_start = getenv_bootm_low();
199 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000200
Kumar Galae906cfa2008-08-15 08:24:40 -0500201 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000202
Kumar Gala76da19d2008-10-16 21:52:08 -0500203 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500204 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500205#else
206# define lmb_reserve(lmb, base, size)
207#endif
208}
209
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200210static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500211{
212 void *os_hdr;
213 int ret;
214
215 memset ((void *)&images, 0, sizeof (images));
216 images.verify = getenv_yesno ("verify");
217
218 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000219
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100220 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100221 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500222 &images, &images.os.image_start, &images.os.image_len);
223 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100224 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000225 return 1;
226 }
wdenk47d1a6e2002-11-03 00:01:44 +0000227
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100228 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100229 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100230 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500231 images.os.type = image_get_type (os_hdr);
232 images.os.comp = image_get_comp (os_hdr);
233 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200234
Kumar Gala396f6352008-08-15 08:24:41 -0500235 images.os.end = image_get_image_end (os_hdr);
236 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100237 break;
238#if defined(CONFIG_FIT)
239 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100240 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500241 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100242 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100243 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000244 return 1;
245 }
wdenk47d1a6e2002-11-03 00:01:44 +0000246
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100247 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500248 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100249 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100250 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100251 return 1;
252 }
wdenk47d1a6e2002-11-03 00:01:44 +0000253
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100254 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500255 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100256 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100257 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100258 return 1;
259 }
wdenk47d1a6e2002-11-03 00:01:44 +0000260
Kumar Gala396f6352008-08-15 08:24:41 -0500261 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100262
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100263 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500264 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100265 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100266 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100267 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000268 }
269 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100270#endif
271 default:
272 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000273 return 1;
274 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100275
Kumar Galac160a952008-08-15 08:24:36 -0500276 /* find kernel entry point */
277 if (images.legacy_hdr_valid) {
278 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
279#if defined(CONFIG_FIT)
280 } else if (images.fit_uname_os) {
281 ret = fit_image_get_entry (images.fit_hdr_os,
282 images.fit_noffset_os, &images.ep);
283 if (ret) {
284 puts ("Can't get entry point property!\n");
285 return 1;
286 }
287#endif
288 } else {
289 puts ("Could not find kernel entry point!\n");
290 return 1;
291 }
292
Heiko Schocher24de2f42010-03-29 13:15:48 +0200293 if (((images.os.type == IH_TYPE_KERNEL) ||
294 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100295 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-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 Galaea86b9e2008-08-29 19:08:29 -0500300 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500301 return 1;
302 }
Kumar Gala06a09912008-08-15 08:24:38 -0500303
304#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200305#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-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 Gala54f9c862008-08-15 08:24:39 -0500313
314 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500315#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200316#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500317 }
318
Kumar Gala396f6352008-08-15 08:24:41 -0500319 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500320 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500321
322 return 0;
323}
324
325#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-VILLARD6d0f6bc2008-10-16 15:01:15 +0200336 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200337#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
338 int ret;
339#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500340
341 const char *type_name = genimg_get_type_name (os.type);
342
343 switch (comp) {
344 case IH_COMP_NONE:
345 if (load == blob_start) {
346 printf (" XIP %s ... ", type_name);
347 } else {
348 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400349 memmove_wd ((void *)load, (void *)image_start,
350 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500351 }
352 *load_end = load + image_len;
353 puts("OK\n");
354 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500355#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500356 case IH_COMP_GZIP:
357 printf (" Uncompressing %s ... ", type_name);
358 if (gunzip ((void *)load, unc_len,
359 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100360 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500361 "- must RESET board to recover\n");
362 if (boot_progress)
363 show_boot_progress (-6);
364 return BOOTM_ERR_RESET;
365 }
366
367 *load_end = load + image_len;
368 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500369#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500370#ifdef CONFIG_BZIP2
371 case IH_COMP_BZIP2:
372 printf (" Uncompressing %s ... ", type_name);
373 /*
374 * If we've got less than 4 MB of malloc() space,
375 * use slower decompression algorithm which requires
376 * at most 2300 KB of memory.
377 */
378 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
379 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200380 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500381 if (i != BZ_OK) {
382 printf ("BUNZIP2: uncompress or overwrite error %d "
383 "- must RESET board to recover\n", i);
384 if (boot_progress)
385 show_boot_progress (-6);
386 return BOOTM_ERR_RESET;
387 }
388
389 *load_end = load + unc_len;
390 break;
391#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200392#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400393 case IH_COMP_LZMA: {
394 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200395 printf (" Uncompressing %s ... ", type_name);
396
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200397 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400398 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200399 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400400 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200401 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200402 printf ("LZMA: uncompress or overwrite error %d "
403 "- must RESET board to recover\n", ret);
404 show_boot_progress (-6);
405 return BOOTM_ERR_RESET;
406 }
407 *load_end = load + unc_len;
408 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400409 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200410#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100411#ifdef CONFIG_LZO
412 case IH_COMP_LZO:
413 printf (" Uncompressing %s ... ", type_name);
414
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200415 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100416 image_len, (unsigned char *)load,
417 &unc_len);
418 if (ret != LZO_E_OK) {
419 printf ("LZO: uncompress or overwrite error %d "
420 "- must RESET board to recover\n", ret);
421 if (boot_progress)
422 show_boot_progress (-6);
423 return BOOTM_ERR_RESET;
424 }
425
426 *load_end = load + unc_len;
427 break;
428#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500429 default:
430 printf ("Unimplemented compression type %d\n", comp);
431 return BOOTM_ERR_UNIMPLEMENTED;
432 }
433 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200434 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500435 if (boot_progress)
436 show_boot_progress (7);
437
438 if ((load < blob_end) && (*load_end > blob_start)) {
439 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200440 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500441
442 return BOOTM_ERR_OVERLAP;
443 }
444
445 return 0;
446}
447
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200448static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200449{
450 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200451 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200452
453 /* Don't start if "autostart" is set to "no" */
454 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
455 char buf[32];
456 sprintf(buf, "%lX", images.os.image_len);
457 setenv("filesize", buf);
458 return 0;
459 }
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200460 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200461 (*appl)(argc-1, &argv[1]);
462
463 return 0;
464}
465
Kumar Gala49c3a862008-10-21 17:25:45 -0500466/* we overload the cmd field with our state machine info instead of a
467 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100468static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500469 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
470 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
471#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
472 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
473#endif
474#ifdef CONFIG_OF_LIBFDT
475 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
476#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500477 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600478 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500479 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
480 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
481};
482
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200483int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500484{
485 int ret = 0;
486 int state;
487 cmd_tbl_t *c;
488 boot_os_fn *boot_fn;
489
490 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
491
492 if (c) {
493 state = (int)c->cmd;
494
495 /* treat start special since it resets the state machine */
496 if (state == BOOTM_STATE_START) {
497 argc--;
498 argv++;
499 return bootm_start(cmdtp, flag, argc, argv);
500 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200501 } else {
502 /* Unrecognized command */
503 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500504 }
505
506 if (images.state >= state) {
507 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200508 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500509 }
510
511 images.state |= state;
512 boot_fn = boot_os[images.os.os];
513
514 switch (state) {
515 ulong load_end;
516 case BOOTM_STATE_START:
517 /* should never occur */
518 break;
519 case BOOTM_STATE_LOADOS:
520 ret = bootm_load_os(images.os, &load_end, 0);
521 if (ret)
522 return ret;
523
524 lmb_reserve(&images.lmb, images.os.load,
525 (load_end - images.os.load));
526 break;
527#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
528 case BOOTM_STATE_RAMDISK:
529 {
530 ulong rd_len = images.rd_end - images.rd_start;
531 char str[17];
532
533 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
534 rd_len, &images.initrd_start, &images.initrd_end);
535 if (ret)
536 return ret;
537
538 sprintf(str, "%lx", images.initrd_start);
539 setenv("initrd_start", str);
540 sprintf(str, "%lx", images.initrd_end);
541 setenv("initrd_end", str);
542 }
543 break;
544#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100545#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500546 case BOOTM_STATE_FDT:
547 {
548 ulong bootmap_base = getenv_bootm_low();
549 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
550 &images.ft_addr, &images.ft_len);
551 break;
552 }
553#endif
554 case BOOTM_STATE_OS_CMDLINE:
555 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
556 if (ret)
557 printf ("cmdline subcommand not supported\n");
558 break;
559 case BOOTM_STATE_OS_BD_T:
560 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
561 if (ret)
562 printf ("bdt subcommand not supported\n");
563 break;
564 case BOOTM_STATE_OS_PREP:
565 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
566 if (ret)
567 printf ("prep subcommand not supported\n");
568 break;
569 case BOOTM_STATE_OS_GO:
570 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500571 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500572 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
573 break;
574 }
575
576 return ret;
577}
578
Kumar Gala396f6352008-08-15 08:24:41 -0500579/*******************************************************************/
580/* bootm - boot application image from image in memory */
581/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500582
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200583int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500584{
Kumar Gala396f6352008-08-15 08:24:41 -0500585 ulong iflag;
586 ulong load_end = 0;
587 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500588 boot_os_fn *boot_fn;
Peter Tyser521af042009-09-21 11:20:36 -0500589#ifndef CONFIG_RELOC_FIXUP_WORKS
590 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500591
592 /* relocate boot function table */
593 if (!relocated) {
594 int i;
595 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200596 if (boot_os[i] != NULL)
597 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500598 relocated = 1;
599 }
Peter Tyser521af042009-09-21 11:20:36 -0500600#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500601
Kumar Gala49c3a862008-10-21 17:25:45 -0500602 /* determine if we have a sub command */
603 if (argc > 1) {
604 char *endp;
605
606 simple_strtoul(argv[1], &endp, 16);
607 /* endp pointing to NULL means that argv[1] was just a
608 * valid number, pass it along to the normal bootm processing
609 *
610 * If endp is ':' or '#' assume a FIT identifier so pass
611 * along for normal processing.
612 *
613 * Right now we assume the first arg should never be '-'
614 */
615 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
616 return do_bootm_subcommand(cmdtp, flag, argc, argv);
617 }
618
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200619 if (bootm_start(cmdtp, flag, argc, argv))
620 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000621
622 /*
623 * We have reached the point of no return: we are going to
624 * overwrite all exception vector code, so we cannot easily
625 * recover from any failures any more...
626 */
wdenk47d1a6e2002-11-03 00:01:44 +0000627 iflag = disable_interrupts();
628
Stefan Roeseebb86c42008-07-30 09:59:51 +0200629#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200630 /*
631 * turn off USB to prevent the host controller from writing to the
632 * SDRAM while Linux is booting. This could happen (at least for OHCI
633 * controller), because the HCCA (Host Controller Communication Area)
634 * lies within the SDRAM and the host controller writes continously to
635 * this area (as busmaster!). The HccaFrameNumber is for example
636 * updated every 1 ms within the HCCA structure in SDRAM! For more
637 * details see the OpenHCI specification.
638 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200639 usb_stop();
640#endif
641
Kumar Gala396f6352008-08-15 08:24:41 -0500642 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000643
Kumar Gala396f6352008-08-15 08:24:41 -0500644 if (ret < 0) {
645 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000646 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500647 if (ret == BOOTM_ERR_OVERLAP) {
648 if (images.legacy_hdr_valid) {
649 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
650 puts ("WARNING: legacy format multi component "
651 "image overwritten\n");
652 } else {
653 puts ("ERROR: new format image overwritten - "
654 "must RESET the board to recover\n");
655 show_boot_progress (-113);
656 do_reset (cmdtp, flag, argc, argv);
657 }
wdenk47d1a6e2002-11-03 00:01:44 +0000658 }
Kumar Gala396f6352008-08-15 08:24:41 -0500659 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
660 if (iflag)
661 enable_interrupts();
662 show_boot_progress (-7);
663 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200664 }
wdenk47d1a6e2002-11-03 00:01:44 +0000665 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100666
Kumar Gala396f6352008-08-15 08:24:41 -0500667 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
668
Detlev Zundelf97ec302009-07-13 16:01:19 +0200669 if (images.os.type == IH_TYPE_STANDALONE) {
670 if (iflag)
671 enable_interrupts();
672 /* This may return when 'autostart' is 'no' */
673 bootm_start_standalone(iflag, argc, argv);
674 return 0;
675 }
676
Heiko Schocherfad63402007-07-13 09:54:17 +0200677 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000678
wdenkf72da342003-10-10 10:05:42 +0000679#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500680 if (images.os.os == IH_OS_LINUX)
681 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000682#endif
683
Kumar Galabe083152008-10-21 17:25:44 -0500684 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200685
686 if (boot_fn == NULL) {
687 if (iflag)
688 enable_interrupts();
689 printf ("ERROR: booting os '%s' (%d) is not supported\n",
690 genimg_get_os_name(images.os.os), images.os.os);
691 show_boot_progress (-8);
692 return 1;
693 }
694
Kumar Gala3dfad402009-08-27 08:23:55 -0500695 arch_preboot_os();
696
Kumar Galabe083152008-10-21 17:25:44 -0500697 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000698
Heiko Schocherfad63402007-07-13 09:54:17 +0200699 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000700#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000701 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000702#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500703 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100704
wdenk47d1a6e2002-11-03 00:01:44 +0000705 return 1;
706}
707
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100708/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100709 * image_get_kernel - verify legacy format kernel image
710 * @img_addr: in RAM address of the legacy format image to be verified
711 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100712 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100713 * image_get_kernel() verifies legacy image integrity and returns pointer to
714 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100715 *
716 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100717 * pointer to a legacy image header if valid image was found
718 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100719 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100720static image_header_t *image_get_kernel (ulong img_addr, int verify)
721{
722 image_header_t *hdr = (image_header_t *)img_addr;
723
724 if (!image_check_magic(hdr)) {
725 puts ("Bad Magic Number\n");
726 show_boot_progress (-1);
727 return NULL;
728 }
729 show_boot_progress (2);
730
731 if (!image_check_hcrc (hdr)) {
732 puts ("Bad Header Checksum\n");
733 show_boot_progress (-2);
734 return NULL;
735 }
736
737 show_boot_progress (3);
738 image_print_contents (hdr);
739
740 if (verify) {
741 puts (" Verifying Checksum ... ");
742 if (!image_check_dcrc (hdr)) {
743 printf ("Bad Data CRC\n");
744 show_boot_progress (-3);
745 return NULL;
746 }
747 puts ("OK\n");
748 }
749 show_boot_progress (4);
750
751 if (!image_check_target_arch (hdr)) {
752 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
753 show_boot_progress (-4);
754 return NULL;
755 }
756 return hdr;
757}
758
759/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100760 * fit_check_kernel - verify FIT format kernel subimage
761 * @fit_hdr: pointer to the FIT image header
762 * os_noffset: kernel subimage node offset within FIT image
763 * @verify: data CRC verification flag
764 *
765 * fit_check_kernel() verifies integrity of the kernel subimage and from
766 * specified FIT image.
767 *
768 * returns:
769 * 1, on success
770 * 0, on failure
771 */
772#if defined (CONFIG_FIT)
773static int fit_check_kernel (const void *fit, int os_noffset, int verify)
774{
775 fit_image_print (fit, os_noffset, " ");
776
777 if (verify) {
778 puts (" Verifying Hash Integrity ... ");
779 if (!fit_image_check_hashes (fit, os_noffset)) {
780 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100781 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100782 return 0;
783 }
784 puts ("OK\n");
785 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100786 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100787
788 if (!fit_image_check_target_arch (fit, os_noffset)) {
789 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100790 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100791 return 0;
792 }
793
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100794 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100795 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
796 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100797 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100798 return 0;
799 }
800
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100801 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100802 return 1;
803}
804#endif /* CONFIG_FIT */
805
806/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100807 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100808 * @os_data: pointer to a ulong variable, will hold os data start address
809 * @os_len: pointer to a ulong variable, will hold os data length
810 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100811 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100812 * and locates kernel data.
813 *
814 * returns:
815 * pointer to image header if valid image was found, plus kernel start
816 * address and length, otherwise NULL
817 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200818static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100819 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100820{
821 image_header_t *hdr;
822 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100823#if defined(CONFIG_FIT)
824 void *fit_hdr;
825 const char *fit_uname_config = NULL;
826 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100827 const void *data;
828 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100829 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100830 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100831#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100832
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100833 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100834 if (argc < 2) {
835 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100836 debug ("* kernel: default image load address = 0x%08lx\n",
837 load_addr);
838#if defined(CONFIG_FIT)
839 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
840 &fit_uname_config)) {
841 debug ("* kernel: config '%s' from image at 0x%08lx\n",
842 fit_uname_config, img_addr);
843 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
844 &fit_uname_kernel)) {
845 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
846 fit_uname_kernel, img_addr);
847#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100848 } else {
849 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100850 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100851 }
852
853 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100854
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100855 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100856 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100857
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100858 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100859 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100860 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100861 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100862 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
863 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100864 hdr = image_get_kernel (img_addr, images->verify);
865 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100866 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100867 show_boot_progress (5);
868
Marian Balakowicz6986a382008-03-12 10:01:05 +0100869 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100870 switch (image_get_type (hdr)) {
871 case IH_TYPE_KERNEL:
872 *os_data = image_get_data (hdr);
873 *os_len = image_get_data_size (hdr);
874 break;
875 case IH_TYPE_MULTI:
876 image_multi_getimg (hdr, 0, os_data, os_len);
877 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200878 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200879 *os_data = image_get_data (hdr);
880 *os_len = image_get_data_size (hdr);
881 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100882 default:
883 printf ("Wrong Image Type for %s command\n", cmdtp->name);
884 show_boot_progress (-5);
885 return NULL;
886 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100887
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200888 /*
889 * copy image header to allow for image overwrites during kernel
890 * decompression.
891 */
892 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
893
894 /* save pointer to image header */
895 images->legacy_hdr_os = hdr;
896
897 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100898 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100899 break;
900#if defined(CONFIG_FIT)
901 case IMAGE_FORMAT_FIT:
902 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100903 printf ("## Booting kernel from FIT Image at %08lx ...\n",
904 img_addr);
905
906 if (!fit_check_format (fit_hdr)) {
907 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100908 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100909 return NULL;
910 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100911 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100912
913 if (!fit_uname_kernel) {
914 /*
915 * no kernel image node unit name, try to get config
916 * node first. If config unit node name is NULL
917 * fit_conf_get_node() will try to find default config node
918 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100919 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100920 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
921 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100922 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100923 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100924 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100925 /* save configuration uname provided in the first
926 * bootm argument
927 */
928 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
929 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
930 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100931
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100932 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100933 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
934 } else {
935 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100936 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100937 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
938 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100939 if (os_noffset < 0) {
940 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100941 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100942 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100943
944 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
945
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100946 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100947 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
948 return NULL;
949
950 /* get kernel image data address and length */
951 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
952 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100953 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100954 return NULL;
955 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100956 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100957
958 *os_len = len;
959 *os_data = (ulong)data;
960 images->fit_hdr_os = fit_hdr;
961 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100962 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100963 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100964#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100965 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100966 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100967 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100968 return NULL;
969 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100970
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200971 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100972 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100973
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100974 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100975}
976
wdenk0d498392003-07-01 21:06:45 +0000977U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200978 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600979 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100980 "[addr [arg ...]]\n - boot application image stored in memory\n"
981 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
982 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100983#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500984 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200985 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500986 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
987 "\tuse a '-' for the second argument. If you do not pass a third\n"
988 "\ta bd_info struct will be passed instead\n"
989#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100990#if defined(CONFIG_FIT)
991 "\t\nFor the new multi component uImage format (FIT) addresses\n"
992 "\tmust be extened to include component or configuration unit name:\n"
993 "\taddr:<subimg_uname> - direct component image specification\n"
994 "\taddr#<conf_uname> - configuration specification\n"
995 "\tUse iminfo command to get the list of existing component\n"
996 "\timages and configurations.\n"
997#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500998 "\nSub-commands to do part of the bootm sequence. The sub-commands "
999 "must be\n"
1000 "issued in the order below (it's ok to not issue all sub-commands):\n"
1001 "\tstart [addr [arg ...]]\n"
1002 "\tloados - load OS image\n"
1003#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1004 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1005#endif
1006#if defined(CONFIG_OF_LIBFDT)
1007 "\tfdt - relocate flat device tree\n"
1008#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001009 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001010 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001011 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001012 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001013);
1014
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001015/*******************************************************************/
1016/* bootd - boot default image */
1017/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001018#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001019int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001020{
1021 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001022
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001023#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001024 if (run_command (getenv ("bootcmd"), flag) < 0)
1025 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001026#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001027 if (parse_string_outer (getenv ("bootcmd"),
1028 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1029 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001030#endif
1031 return rcode;
1032}
wdenk8bde7f72003-06-27 21:31:46 +00001033
wdenk0d498392003-07-01 21:06:45 +00001034U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001035 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001036 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001037 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001038);
1039
1040/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001041U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001042 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001043 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001044 ""
wdenk8bde7f72003-06-27 21:31:46 +00001045);
1046
wdenk47d1a6e2002-11-03 00:01:44 +00001047#endif
1048
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001049
1050/*******************************************************************/
1051/* iminfo - print header info for a requested image */
1052/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001053#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001054int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001055{
1056 int arg;
1057 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001058 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001059
1060 if (argc < 2) {
1061 return image_info (load_addr);
1062 }
1063
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001064 for (arg = 1; arg < argc; ++arg) {
1065 addr = simple_strtoul (argv[arg], NULL, 16);
1066 if (image_info (addr) != 0)
1067 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001068 }
1069 return rcode;
1070}
1071
1072static int image_info (ulong addr)
1073{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001074 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001075
1076 printf ("\n## Checking Image at %08lx ...\n", addr);
1077
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001078 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001079 case IMAGE_FORMAT_LEGACY:
1080 puts (" Legacy image found\n");
1081 if (!image_check_magic (hdr)) {
1082 puts (" Bad Magic Number\n");
1083 return 1;
1084 }
1085
1086 if (!image_check_hcrc (hdr)) {
1087 puts (" Bad Header Checksum\n");
1088 return 1;
1089 }
1090
1091 image_print_contents (hdr);
1092
1093 puts (" Verifying Checksum ... ");
1094 if (!image_check_dcrc (hdr)) {
1095 puts (" Bad Data CRC\n");
1096 return 1;
1097 }
1098 puts ("OK\n");
1099 return 0;
1100#if defined(CONFIG_FIT)
1101 case IMAGE_FORMAT_FIT:
1102 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001103
1104 if (!fit_check_format (hdr)) {
1105 puts ("Bad FIT image format!\n");
1106 return 1;
1107 }
1108
1109 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001110
1111 if (!fit_all_image_check_hashes (hdr)) {
1112 puts ("Bad hash in FIT image!\n");
1113 return 1;
1114 }
1115
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001116 return 0;
1117#endif
1118 default:
1119 puts ("Unknown image format!\n");
1120 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001121 }
1122
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001123 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001124}
wdenk0d498392003-07-01 21:06:45 +00001125
1126U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001127 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001128 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001129 "addr [addr ...]\n"
1130 " - print header information for application image starting at\n"
1131 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001132 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001133);
Jon Loeliger90253172007-07-10 11:02:44 -05001134#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001135
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001136
1137/*******************************************************************/
1138/* imls - list all images found in flash */
1139/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001140#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001141int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001142{
1143 flash_info_t *info;
1144 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001145 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001146
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001147 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001148 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001149
wdenk27b207f2003-07-24 23:38:38 +00001150 if (info->flash_id == FLASH_UNKNOWN)
1151 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001152 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001153
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001154 hdr = (void *)info->start[j];
1155 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001156 goto next_sector;
1157
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001158 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001159 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001160 if (!image_check_hcrc (hdr))
1161 goto next_sector;
1162
1163 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1164 image_print_contents (hdr);
1165
1166 puts (" Verifying Checksum ... ");
1167 if (!image_check_dcrc (hdr)) {
1168 puts ("Bad Data CRC\n");
1169 } else {
1170 puts ("OK\n");
1171 }
1172 break;
1173#if defined(CONFIG_FIT)
1174 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001175 if (!fit_check_format (hdr))
1176 goto next_sector;
1177
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001178 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001179 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001180 break;
1181#endif
1182 default:
wdenk27b207f2003-07-24 23:38:38 +00001183 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001184 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001185
wdenkbdccc4f2003-08-05 17:43:17 +00001186next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001187 }
wdenkbdccc4f2003-08-05 17:43:17 +00001188next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001189 }
1190
1191 return (0);
1192}
1193
1194U_BOOT_CMD(
1195 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001196 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001197 "\n"
1198 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001199 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001200);
Jon Loeliger90253172007-07-10 11:02:44 -05001201#endif
wdenk27b207f2003-07-24 23:38:38 +00001202
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001203/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001204/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001205/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001206#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001207static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001208{
1209 char buf[256], *start, *end;
1210 char *cmdline = getenv ("bootargs");
1211
1212 /* Only fix cmdline when requested */
1213 if (!(gd->flags & GD_FLG_SILENT))
1214 return;
1215
1216 debug ("before silent fix-up: %s\n", cmdline);
1217 if (cmdline) {
1218 if ((start = strstr (cmdline, "console=")) != NULL) {
1219 end = strchr (start, ' ');
1220 strncpy (buf, cmdline, (start - cmdline + 8));
1221 if (end)
1222 strcpy (buf + (start - cmdline + 8), end);
1223 else
1224 buf[start - cmdline + 8] = '\0';
1225 } else {
1226 strcpy (buf, cmdline);
1227 strcat (buf, " console=");
1228 }
1229 } else {
1230 strcpy (buf, "console=");
1231 }
1232
1233 setenv ("bootargs", buf);
1234 debug ("after silent fix-up: %s\n", buf);
1235}
1236#endif /* CONFIG_SILENT_CONSOLE */
1237
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001238
1239/*******************************************************************/
1240/* OS booting routines */
1241/*******************************************************************/
1242
Kumar Galab1d0db12008-10-21 17:25:47 -05001243#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001244static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001245 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001246{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001247 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001248 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001249 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001250 char *consdev;
1251 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001252
Kumar Gala49c3a862008-10-21 17:25:45 -05001253 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1254 return 1;
1255
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001256#if defined(CONFIG_FIT)
1257 if (!images->legacy_hdr_valid) {
1258 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001259 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001260 }
1261#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001262 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001263
1264 /*
1265 * Booting a (NetBSD) kernel image
1266 *
1267 * This process is pretty similar to a standalone application:
1268 * The (first part of an multi-) image must be a stage-2 loader,
1269 * which in turn is responsible for loading & invoking the actual
1270 * kernel. The only differences are the parameters being passed:
1271 * besides the board info strucure, the loader expects a command
1272 * line, the name of the console device, and (optionally) the
1273 * address of the original image header.
1274 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001275 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001276 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001277 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1278 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001279 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001280 }
wdenk47d1a6e2002-11-03 00:01:44 +00001281
1282 consdev = "";
1283#if defined (CONFIG_8xx_CONS_SMC1)
1284 consdev = "smc1";
1285#elif defined (CONFIG_8xx_CONS_SMC2)
1286 consdev = "smc2";
1287#elif defined (CONFIG_8xx_CONS_SCC2)
1288 consdev = "scc2";
1289#elif defined (CONFIG_8xx_CONS_SCC3)
1290 consdev = "scc3";
1291#endif
1292
1293 if (argc > 2) {
1294 ulong len;
1295 int i;
1296
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001297 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001298 len += strlen (argv[i]) + 1;
1299 cmdline = malloc (len);
1300
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001301 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001302 if (i > 2)
1303 cmdline[len++] = ' ';
1304 strcpy (&cmdline[len], argv[i]);
1305 len += strlen (argv[i]);
1306 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001307 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001308 cmdline = "";
1309 }
1310
Kumar Galac160a952008-08-15 08:24:36 -05001311 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001312
1313 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1314 (ulong)loader);
1315
1316 show_boot_progress (15);
1317
1318 /*
1319 * NetBSD Stage-2 Loader Parameters:
1320 * r3: ptr to board info data
1321 * r4: image address
1322 * r5: console device
1323 * r6: boot args string
1324 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001325 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001326
1327 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001328}
Kumar Galab1d0db12008-10-21 17:25:47 -05001329#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001330
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001331#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001332static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001333 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001334{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001335 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001336
Kumar Gala49c3a862008-10-21 17:25:45 -05001337 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1338 return 1;
1339
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001340#if defined(CONFIG_FIT)
1341 if (!images->legacy_hdr_valid) {
1342 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001343 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001344 }
1345#endif
1346
1347 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001348
1349 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001350}
1351#endif /* CONFIG_LYNXKDI */
1352
Kumar Galab1d0db12008-10-21 17:25:47 -05001353#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001354static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001355 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001356{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001357 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001358
Kumar Gala49c3a862008-10-21 17:25:45 -05001359 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1360 return 1;
1361
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001362#if defined(CONFIG_FIT)
1363 if (!images->legacy_hdr_valid) {
1364 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001365 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001366 }
1367#endif
1368
Kumar Galac160a952008-08-15 08:24:36 -05001369 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001370
1371 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1372 (ulong)entry_point);
1373
Heiko Schocherfad63402007-07-13 09:54:17 +02001374 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001375
1376 /*
1377 * RTEMS Parameters:
1378 * r3: ptr to board info data
1379 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001380 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001381
1382 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001383}
Kumar Galab1d0db12008-10-21 17:25:47 -05001384#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001385
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001386#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001387static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001388 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001389{
wdenk47d1a6e2002-11-03 00:01:44 +00001390 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001391
Kumar Gala49c3a862008-10-21 17:25:45 -05001392 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1393 return 1;
1394
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001395#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001396 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001397 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001398 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001399 }
1400#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001401
Kumar Galac160a952008-08-15 08:24:36 -05001402 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001403 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001404 do_bootvx(NULL, 0, 0, NULL);
1405
1406 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001407}
1408
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001409static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001410 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001411{
wdenk47d1a6e2002-11-03 00:01:44 +00001412 char *local_args[2];
1413 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001414
Kumar Gala49c3a862008-10-21 17:25:45 -05001415 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1416 return 1;
1417
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001418#if defined(CONFIG_FIT)
1419 if (!images->legacy_hdr_valid) {
1420 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001421 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001422 }
1423#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001424
Kumar Galac160a952008-08-15 08:24:36 -05001425 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001426 local_args[0] = argv[0];
1427 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001428 do_bootelf(NULL, 0, 2, local_args);
1429
1430 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001431}
Jon Loeliger90253172007-07-10 11:02:44 -05001432#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001433
1434#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001435static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001436 bootm_headers_t *images)
1437{
1438 void (*entry_point)(void);
1439
Kumar Gala49c3a862008-10-21 17:25:45 -05001440 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1441 return 1;
1442
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001443#if defined(CONFIG_FIT)
1444 if (!images->legacy_hdr_valid) {
1445 fit_unsupported_reset ("INTEGRITY");
1446 return 1;
1447 }
1448#endif
1449
1450 entry_point = (void (*)(void))images->ep;
1451
1452 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1453 (ulong)entry_point);
1454
1455 show_boot_progress (15);
1456
1457 /*
1458 * INTEGRITY Parameters:
1459 * None
1460 */
1461 (*entry_point)();
1462
1463 return 1;
1464}
1465#endif