blob: 6a6241d32798d7d97f740f39e99a80ecf8698a3b [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>
Simon Glass35e7b0f2013-05-07 06:12:03 +000039#include <asm/io.h>
Anatolij Gustschin5bf27662011-11-19 13:12:18 +000040#include <linux/compiler.h>
wdenk8bde7f72003-06-27 21:31:46 +000041
Stefan Roeseebb86c42008-07-30 09:59:51 +020042#if defined(CONFIG_CMD_USB)
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020043#include <usb.h>
44#endif
45
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046#ifdef CONFIG_SYS_HUSH_PARSER
wdenk47d1a6e2002-11-03 00:01:44 +000047#include <hush.h>
48#endif
49
Kumar Gala54f9c862008-08-15 08:24:39 -050050#if defined(CONFIG_OF_LIBFDT)
Kumar Gala54f9c862008-08-15 08:24:39 -050051#include <libfdt.h>
52#include <fdt_support.h>
53#endif
54
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020055#ifdef CONFIG_LZMA
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020056#include <lzma/LzmaTypes.h>
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +020057#include <lzma/LzmaDec.h>
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020058#include <lzma/LzmaTools.h>
59#endif /* CONFIG_LZMA */
60
Peter Korsgaard20dde482009-11-19 11:37:51 +010061#ifdef CONFIG_LZO
62#include <linux/lzo.h>
63#endif /* CONFIG_LZO */
64
Marian Balakowicz1ee11802008-01-08 18:17:10 +010065DECLARE_GLOBAL_DATA_PTR;
66
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020067#ifndef CONFIG_SYS_BOOTM_LEN
68#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000069#endif
70
Marian Balakowicz321359f2008-01-08 18:11:43 +010071#ifdef CONFIG_BZIP2
72extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000073#endif
74
Jon Loeligerbaa26db2007-07-08 17:51:39 -050075#if defined(CONFIG_CMD_IMI)
Stephen Warren712fbcf2011-10-18 11:11:49 +000076static int image_info(unsigned long addr);
wdenk47d1a6e2002-11-03 00:01:44 +000077#endif
wdenk27b207f2003-07-24 23:38:38 +000078
Jon Loeligerbaa26db2007-07-08 17:51:39 -050079#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000080#include <flash.h>
Stefan Roeseca5def32010-08-31 10:00:10 +020081#include <mtd/cfi_flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020082extern flash_info_t flash_info[]; /* info for FLASH chips */
Vipin Kumar8fdf1e02012-12-16 22:32:48 +000083#endif
84
85#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
Stephen Warren712fbcf2011-10-18 11:11:49 +000086static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000087#endif
88
Vipin Kumar8fdf1e02012-12-16 22:32:48 +000089#include <linux/err.h>
90#include <nand.h>
91
Joe Hershbergerbe2e5a02013-02-27 10:20:59 +000092#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
Stephen Warren712fbcf2011-10-18 11:11:49 +000093static void fixup_silent_linux(void);
wdenk2262cfe2002-11-18 00:14:45 +000094#endif
95
Simon Glass35e7b0f2013-05-07 06:12:03 +000096static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +000097 char * const argv[], bootm_headers_t *images,
98 ulong *os_data, ulong *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +000099
wdenk47d1a6e2002-11-03 00:01:44 +0000100/*
101 * Continue booting an OS image; caller already has:
102 * - copied image header to global variable `header'
103 * - checked header magic number, checksums (both header & image),
104 * - verified image architecture (PPC) and type (KERNEL or MULTI),
105 * - loaded (first part of) image to header load address,
106 * - disabled interrupts.
Simon Glass983c72f2013-06-11 11:14:46 -0700107 *
108 * @flag: Command flags (CMD_FLAG_...)
109 * @argc: Number of arguments. Note that the arguments are shifted down
110 * so that 0 is the first argument not processed by U-Boot, and
111 * argc is adjusted accordingly. This avoids confusion as to how
112 * many arguments are available for the OS.
113 * @images: Pointers to os/initrd/fdt
114 * @return 1 on error. On success the OS boots so this function does
115 * not return.
wdenk47d1a6e2002-11-03 00:01:44 +0000116 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000117typedef int boot_os_fn(int flag, int argc, char * const argv[],
Simon Glass983c72f2013-06-11 11:14:46 -0700118 bootm_headers_t *images);
wdenk47d1a6e2002-11-03 00:01:44 +0000119
Kumar Galab1d0db12008-10-21 17:25:47 -0500120#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100121extern boot_os_fn do_bootm_linux;
Kumar Galab1d0db12008-10-21 17:25:47 -0500122#endif
123#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100124static boot_os_fn do_bootm_netbsd;
Kumar Galab1d0db12008-10-21 17:25:47 -0500125#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100126#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100127static boot_os_fn do_bootm_lynxkdi;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000128extern void lynxkdi_boot(image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000129#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500130#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100131static boot_os_fn do_bootm_rtems;
Kumar Galab1d0db12008-10-21 17:25:47 -0500132#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200133#if defined(CONFIG_BOOTM_OSE)
134static boot_os_fn do_bootm_ose;
135#endif
Steven Stallion04d41402013-03-20 06:31:35 +0000136#if defined(CONFIG_BOOTM_PLAN9)
137static boot_os_fn do_bootm_plan9;
138#endif
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500139#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100140static boot_os_fn do_bootm_vxworks;
141static boot_os_fn do_bootm_qnxelf;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000142int do_bootvx(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
143int do_bootelf(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500144#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500145#if defined(CONFIG_INTEGRITY)
146static boot_os_fn do_bootm_integrity;
147#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000148
Mike Frysinger00085552009-11-03 11:36:26 -0500149static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500150#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500151 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500152#endif
153#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500154 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500155#endif
Kumar Galabe083152008-10-21 17:25:44 -0500156#ifdef CONFIG_LYNXKDI
157 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
158#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500159#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500160 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500161#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200162#if defined(CONFIG_BOOTM_OSE)
163 [IH_OS_OSE] = do_bootm_ose,
164#endif
Steven Stallion04d41402013-03-20 06:31:35 +0000165#if defined(CONFIG_BOOTM_PLAN9)
166 [IH_OS_PLAN9] = do_bootm_plan9,
167#endif
Kumar Galabe083152008-10-21 17:25:44 -0500168#if defined(CONFIG_CMD_ELF)
169 [IH_OS_VXWORKS] = do_bootm_vxworks,
170 [IH_OS_QNX] = do_bootm_qnxelf,
171#endif
172#ifdef CONFIG_INTEGRITY
173 [IH_OS_INTEGRITY] = do_bootm_integrity,
174#endif
175};
176
Simon Schwarzdee17762011-09-02 00:50:31 +0000177bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100178
Kumar Gala3dfad402009-08-27 08:23:55 -0500179/* Allow for arch specific config before we boot */
Kim Phillips088f1b12012-10-29 13:34:31 +0000180static void __arch_preboot_os(void)
Kumar Gala3dfad402009-08-27 08:23:55 -0500181{
182 /* please define platform specific arch_preboot_os() */
183}
184void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
185
Mike Frysinger476af292011-10-03 14:50:33 +0000186#define IH_INITRD_ARCH IH_ARCH_DEFAULT
wdenk47d1a6e2002-11-03 00:01:44 +0000187
Mike Frysingera16028d2009-11-03 11:35:59 -0500188#ifdef CONFIG_LMB
Marek Vasut44f074c2012-03-14 21:52:45 +0000189static void boot_start_lmb(bootm_headers_t *images)
190{
Becky Bruce391fd932008-06-09 20:37:18 -0500191 ulong mem_start;
192 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000193
Marek Vasut44f074c2012-03-14 21:52:45 +0000194 lmb_init(&images->lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000195
Kumar Galad3f2fa02008-02-27 21:51:50 -0600196 mem_start = getenv_bootm_low();
197 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000198
Marek Vasut44f074c2012-03-14 21:52:45 +0000199 lmb_add(&images->lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000200
Marek Vasut44f074c2012-03-14 21:52:45 +0000201 arch_lmb_reserve(&images->lmb);
202 board_lmb_reserve(&images->lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500203}
Marek Vasut44f074c2012-03-14 21:52:45 +0000204#else
Marek Vasut35cf5fe2012-04-01 03:59:46 +0000205#define lmb_reserve(lmb, base, size)
Marek Vasut44f074c2012-03-14 21:52:45 +0000206static inline void boot_start_lmb(bootm_headers_t *images) { }
207#endif
Mike Frysingera16028d2009-11-03 11:35:59 -0500208
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200209static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500210{
Simon Glass35e7b0f2013-05-07 06:12:03 +0000211 const void *os_hdr;
212 int ret;
Mike Frysingera16028d2009-11-03 11:35:59 -0500213
Stephen Warren712fbcf2011-10-18 11:11:49 +0000214 memset((void *)&images, 0, sizeof(images));
215 images.verify = getenv_yesno("verify");
Mike Frysingera16028d2009-11-03 11:35:59 -0500216
Marek Vasut44f074c2012-03-14 21:52:45 +0000217 boot_start_lmb(&images);
wdenk47d1a6e2002-11-03 00:01:44 +0000218
Simon Glass573f14f2011-12-10 11:08:06 +0000219 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
220
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100221 /* get kernel image header, start address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000222 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500223 &images, &images.os.image_start, &images.os.image_len);
224 if (images.os.image_len == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000225 puts("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000226 return 1;
227 }
wdenk47d1a6e2002-11-03 00:01:44 +0000228
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100229 /* get image parameters */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000230 switch (genimg_get_format(os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100231 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000232 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 Denkbccae902005-10-06 01:50:50 +0200235
Stephen Warren712fbcf2011-10-18 11:11:49 +0000236 images.os.end = image_get_image_end(os_hdr);
237 images.os.load = image_get_load(os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100238 break;
239#if defined(CONFIG_FIT)
240 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000241 if (fit_image_get_type(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500242 images.fit_noffset_os, &images.os.type)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000243 puts("Can't get image type!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000244 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
wdenk47d1a6e2002-11-03 00:01:44 +0000245 return 1;
246 }
wdenk47d1a6e2002-11-03 00:01:44 +0000247
Stephen Warren712fbcf2011-10-18 11:11:49 +0000248 if (fit_image_get_comp(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500249 images.fit_noffset_os, &images.os.comp)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000250 puts("Can't get image compression!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000251 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100252 return 1;
253 }
wdenk47d1a6e2002-11-03 00:01:44 +0000254
Stephen Warren712fbcf2011-10-18 11:11:49 +0000255 if (fit_image_get_os(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500256 images.fit_noffset_os, &images.os.os)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000257 puts("Can't get image OS!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000258 bootstage_error(BOOTSTAGE_ID_FIT_OS);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100259 return 1;
260 }
wdenk47d1a6e2002-11-03 00:01:44 +0000261
Stephen Warren712fbcf2011-10-18 11:11:49 +0000262 images.os.end = fit_get_end(images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100263
Stephen Warren712fbcf2011-10-18 11:11:49 +0000264 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500265 &images.os.load)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000266 puts("Can't get image load address!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000267 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100268 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000269 }
270 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100271#endif
272 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000273 puts("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000274 return 1;
275 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100276
Kumar Galac160a952008-08-15 08:24:36 -0500277 /* find kernel entry point */
278 if (images.legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000279 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
Kumar Galac160a952008-08-15 08:24:36 -0500280#if defined(CONFIG_FIT)
281 } else if (images.fit_uname_os) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000282 ret = fit_image_get_entry(images.fit_hdr_os,
Simon Glassc19d13b2013-05-08 08:06:02 +0000283 images.fit_noffset_os, &images.ep);
Kumar Galac160a952008-08-15 08:24:36 -0500284 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 puts("Can't get entry point property!\n");
Kumar Galac160a952008-08-15 08:24:36 -0500286 return 1;
287 }
288#endif
289 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 puts("Could not find kernel entry point!\n");
Kumar Galac160a952008-08-15 08:24:36 -0500291 return 1;
292 }
293
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700294 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
295 images.os.load = images.os.image_start;
296 images.ep += images.os.load;
297 }
298
Heiko Schocher24de2f42010-03-29 13:15:48 +0200299 if (((images.os.type == IH_TYPE_KERNEL) ||
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700300 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
Heiko Schocher24de2f42010-03-29 13:15:48 +0200301 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100302 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500303 /* find ramdisk */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000304 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
Kumar Galac4f94192008-08-15 08:24:37 -0500305 &images.rd_start, &images.rd_end);
306 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000307 puts("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500308 return 1;
309 }
Kumar Gala06a09912008-08-15 08:24:38 -0500310
311#if defined(CONFIG_OF_LIBFDT)
312 /* find flattened device tree */
Simon Glass53f375f2013-05-16 13:53:23 +0000313 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000314 &images.ft_addr, &images.ft_len);
Kumar Gala06a09912008-08-15 08:24:38 -0500315 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000316 puts("Could not find a valid device tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -0500317 return 1;
318 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500319
320 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500321#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500322 }
323
Kumar Gala396f6352008-08-15 08:24:41 -0500324 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500325 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500326
327 return 0;
328}
329
330#define BOOTM_ERR_RESET -1
331#define BOOTM_ERR_OVERLAP -2
332#define BOOTM_ERR_UNIMPLEMENTED -3
333static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
334{
335 uint8_t comp = os.comp;
336 ulong load = os.load;
337 ulong blob_start = os.start;
338 ulong blob_end = os.end;
339 ulong image_start = os.image_start;
340 ulong image_len = os.image_len;
Anatolij Gustschin5bf27662011-11-19 13:12:18 +0000341 __maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
Stephen Warrend5108592011-11-10 13:17:54 -0700342 int no_overlap = 0;
Simon Glassaed161e2013-05-16 13:53:24 +0000343 void *load_buf, *image_buf;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200344#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
345 int ret;
346#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500347
Stephen Warren712fbcf2011-10-18 11:11:49 +0000348 const char *type_name = genimg_get_type_name(os.type);
Kumar Gala396f6352008-08-15 08:24:41 -0500349
Simon Glassaed161e2013-05-16 13:53:24 +0000350 load_buf = map_sysmem(load, image_len);
351 image_buf = map_sysmem(image_start, image_len);
Kumar Gala396f6352008-08-15 08:24:41 -0500352 switch (comp) {
353 case IH_COMP_NONE:
Lei Wen02cf3452011-01-10 18:21:15 +0800354 if (load == blob_start || load == image_start) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000355 printf(" XIP %s ... ", type_name);
Stephen Warrend5108592011-11-10 13:17:54 -0700356 no_overlap = 1;
Kumar Gala396f6352008-08-15 08:24:41 -0500357 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000358 printf(" Loading %s ... ", type_name);
Simon Glassaed161e2013-05-16 13:53:24 +0000359 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500360 }
361 *load_end = load + image_len;
362 puts("OK\n");
363 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500364#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500365 case IH_COMP_GZIP:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000366 printf(" Uncompressing %s ... ", type_name);
Simon Glassaed161e2013-05-16 13:53:24 +0000367 if (gunzip(load_buf, unc_len, image_buf, &image_len) != 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000368 puts("GUNZIP: uncompress, out-of-mem or overwrite "
369 "error - must RESET board to recover\n");
Kumar Gala396f6352008-08-15 08:24:41 -0500370 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000371 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Kumar Gala396f6352008-08-15 08:24:41 -0500372 return BOOTM_ERR_RESET;
373 }
374
375 *load_end = load + image_len;
376 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500377#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500378#ifdef CONFIG_BZIP2
379 case IH_COMP_BZIP2:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000380 printf(" Uncompressing %s ... ", type_name);
Kumar Gala396f6352008-08-15 08:24:41 -0500381 /*
382 * If we've got less than 4 MB of malloc() space,
383 * use slower decompression algorithm which requires
384 * at most 2300 KB of memory.
385 */
Simon Glassaed161e2013-05-16 13:53:24 +0000386 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
387 image_buf, image_len,
388 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500389 if (i != BZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000390 printf("BUNZIP2: uncompress or overwrite error %d "
Kumar Gala396f6352008-08-15 08:24:41 -0500391 "- must RESET board to recover\n", i);
392 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000393 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Kumar Gala396f6352008-08-15 08:24:41 -0500394 return BOOTM_ERR_RESET;
395 }
396
397 *load_end = load + unc_len;
398 break;
399#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200400#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400401 case IH_COMP_LZMA: {
402 SizeT lzma_len = unc_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000403 printf(" Uncompressing %s ... ", type_name);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200404
Simon Glassaed161e2013-05-16 13:53:24 +0000405 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
406 image_buf, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400407 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200408 if (ret != SZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000409 printf("LZMA: uncompress or overwrite error %d "
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200410 "- must RESET board to recover\n", ret);
Simon Glass770605e2012-02-13 13:51:18 +0000411 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200412 return BOOTM_ERR_RESET;
413 }
414 *load_end = load + unc_len;
415 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400416 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200417#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100418#ifdef CONFIG_LZO
419 case IH_COMP_LZO:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000420 printf(" Uncompressing %s ... ", type_name);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100421
Simon Glassaed161e2013-05-16 13:53:24 +0000422 ret = lzop_decompress(image_buf, image_len, load_buf,
423 &unc_len);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100424 if (ret != LZO_E_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000425 printf("LZO: uncompress or overwrite error %d "
Peter Korsgaard20dde482009-11-19 11:37:51 +0100426 "- must RESET board to recover\n", ret);
427 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000428 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100429 return BOOTM_ERR_RESET;
430 }
431
432 *load_end = load + unc_len;
433 break;
434#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500435 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000436 printf("Unimplemented compression type %d\n", comp);
Kumar Gala396f6352008-08-15 08:24:41 -0500437 return BOOTM_ERR_UNIMPLEMENTED;
438 }
Diana CRACIUN99ffccb2011-08-31 02:45:23 +0000439
440 flush_cache(load, (*load_end - load) * sizeof(ulong));
441
Stephen Warren712fbcf2011-10-18 11:11:49 +0000442 puts("OK\n");
443 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Simon Glass770605e2012-02-13 13:51:18 +0000444 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
Kumar Gala396f6352008-08-15 08:24:41 -0500445
Stephen Warrend5108592011-11-10 13:17:54 -0700446 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000447 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
448 blob_start, blob_end);
449 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
450 *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500451
452 return BOOTM_ERR_OVERLAP;
453 }
454
455 return 0;
456}
457
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200458static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200459{
460 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200461 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200462
463 /* Don't start if "autostart" is set to "no" */
464 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
Simon Glass41ef3722013-02-24 17:33:22 +0000465 setenv_hex("filesize", images.os.image_len);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200466 return 0;
467 }
Simon Glass6d6f1232011-10-07 13:53:40 +0000468 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
Simon Glass983c72f2013-06-11 11:14:46 -0700469 (*appl)(argc, argv);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200470 return 0;
471}
472
Kumar Gala49c3a862008-10-21 17:25:45 -0500473/* we overload the cmd field with our state machine info instead of a
474 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100475static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500476 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
477 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600478#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500479 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
480#endif
481#ifdef CONFIG_OF_LIBFDT
482 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
483#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500484 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600485 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500486 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
487 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
488};
489
Kim Phillips088f1b12012-10-29 13:34:31 +0000490static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000491 char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500492{
493 int ret = 0;
Simon Glass6d6f1232011-10-07 13:53:40 +0000494 long state;
Kumar Gala49c3a862008-10-21 17:25:45 -0500495 cmd_tbl_t *c;
496 boot_os_fn *boot_fn;
497
Simon Glass983c72f2013-06-11 11:14:46 -0700498 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
499 argc--; argv++;
Kumar Gala49c3a862008-10-21 17:25:45 -0500500
501 if (c) {
Simon Glass6d6f1232011-10-07 13:53:40 +0000502 state = (long)c->cmd;
Kumar Gala49c3a862008-10-21 17:25:45 -0500503
504 /* treat start special since it resets the state machine */
Simon Glass983c72f2013-06-11 11:14:46 -0700505 if (state == BOOTM_STATE_START)
Kumar Gala49c3a862008-10-21 17:25:45 -0500506 return bootm_start(cmdtp, flag, argc, argv);
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200507 } else {
508 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000509 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -0500510 }
511
Gabor Juhos0f307342013-01-06 23:04:25 +0000512 if (images.state < BOOTM_STATE_START ||
513 images.state >= state) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000514 printf("Trying to execute a command out of order\n");
Simon Glass4c12eeb2011-12-10 08:44:01 +0000515 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -0500516 }
517
518 images.state |= state;
519 boot_fn = boot_os[images.os.os];
520
521 switch (state) {
522 ulong load_end;
523 case BOOTM_STATE_START:
524 /* should never occur */
525 break;
526 case BOOTM_STATE_LOADOS:
527 ret = bootm_load_os(images.os, &load_end, 0);
528 if (ret)
529 return ret;
530
531 lmb_reserve(&images.lmb, images.os.load,
532 (load_end - images.os.load));
533 break;
John Rigbyfca43cc2010-10-13 13:57:35 -0600534#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500535 case BOOTM_STATE_RAMDISK:
536 {
537 ulong rd_len = images.rd_end - images.rd_start;
Kumar Gala49c3a862008-10-21 17:25:45 -0500538
539 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
540 rd_len, &images.initrd_start, &images.initrd_end);
541 if (ret)
542 return ret;
543
Simon Glass41ef3722013-02-24 17:33:22 +0000544 setenv_hex("initrd_start", images.initrd_start);
545 setenv_hex("initrd_end", images.initrd_end);
Kumar Gala49c3a862008-10-21 17:25:45 -0500546 }
547 break;
548#endif
Simon Glass75b3afc2012-12-05 14:46:31 +0000549#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
Kumar Gala49c3a862008-10-21 17:25:45 -0500550 case BOOTM_STATE_FDT:
551 {
Grant Likely55b0a392011-03-28 09:59:01 +0000552 boot_fdt_add_mem_rsv_regions(&images.lmb,
553 images.ft_addr);
Grant Likely590d3ca2011-03-28 09:58:34 +0000554 ret = boot_relocate_fdt(&images.lmb,
Kumar Gala49c3a862008-10-21 17:25:45 -0500555 &images.ft_addr, &images.ft_len);
556 break;
557 }
558#endif
559 case BOOTM_STATE_OS_CMDLINE:
560 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
561 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000562 printf("cmdline subcommand not supported\n");
Kumar Gala49c3a862008-10-21 17:25:45 -0500563 break;
564 case BOOTM_STATE_OS_BD_T:
565 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
566 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000567 printf("bdt subcommand not supported\n");
Kumar Gala49c3a862008-10-21 17:25:45 -0500568 break;
569 case BOOTM_STATE_OS_PREP:
570 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
571 if (ret)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000572 printf("prep subcommand not supported\n");
Kumar Gala49c3a862008-10-21 17:25:45 -0500573 break;
574 case BOOTM_STATE_OS_GO:
575 disable_interrupts();
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000576#ifdef CONFIG_NETCONSOLE
577 /*
578 * Stop the ethernet stack if NetConsole could have
579 * left it up
580 */
581 eth_halt();
582#endif
Kumar Gala3dfad402009-08-27 08:23:55 -0500583 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500584 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
585 break;
586 }
587
588 return ret;
589}
590
Kumar Gala396f6352008-08-15 08:24:41 -0500591/*******************************************************************/
592/* bootm - boot application image from image in memory */
593/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500594
Stephen Warren712fbcf2011-10-18 11:11:49 +0000595int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500596{
Kumar Gala396f6352008-08-15 08:24:41 -0500597 ulong iflag;
598 ulong load_end = 0;
599 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500600 boot_os_fn *boot_fn;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200601#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500602 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500603
Kumar Galabe083152008-10-21 17:25:44 -0500604 if (!relocated) {
605 int i;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000606
607 /* relocate boot function table */
Kumar Galabe083152008-10-21 17:25:44 -0500608 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200609 if (boot_os[i] != NULL)
610 boot_os[i] += gd->reloc_off;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000611
612 /* relocate names of sub-command table */
613 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
614 cmd_bootm_sub[i].name += gd->reloc_off;
615
Kumar Galabe083152008-10-21 17:25:44 -0500616 relocated = 1;
617 }
Peter Tyser521af042009-09-21 11:20:36 -0500618#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500619
Kumar Gala49c3a862008-10-21 17:25:45 -0500620 /* determine if we have a sub command */
Simon Glass983c72f2013-06-11 11:14:46 -0700621 argc--; argv++;
622 if (argc > 0) {
Kumar Gala49c3a862008-10-21 17:25:45 -0500623 char *endp;
624
Simon Glass983c72f2013-06-11 11:14:46 -0700625 simple_strtoul(argv[0], &endp, 16);
626 /* endp pointing to NULL means that argv[0] was just a
Kumar Gala49c3a862008-10-21 17:25:45 -0500627 * valid number, pass it along to the normal bootm processing
628 *
629 * If endp is ':' or '#' assume a FIT identifier so pass
630 * along for normal processing.
631 *
632 * Right now we assume the first arg should never be '-'
633 */
634 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
635 return do_bootm_subcommand(cmdtp, flag, argc, argv);
636 }
637
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200638 if (bootm_start(cmdtp, flag, argc, argv))
639 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000640
641 /*
642 * We have reached the point of no return: we are going to
643 * overwrite all exception vector code, so we cannot easily
644 * recover from any failures any more...
645 */
wdenk47d1a6e2002-11-03 00:01:44 +0000646 iflag = disable_interrupts();
647
Joe Hershbergerf8be7d62012-08-03 10:59:08 +0000648#ifdef CONFIG_NETCONSOLE
649 /* Stop the ethernet stack if NetConsole could have left it up */
650 eth_halt();
651#endif
652
Stefan Roeseebb86c42008-07-30 09:59:51 +0200653#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200654 /*
655 * turn off USB to prevent the host controller from writing to the
656 * SDRAM while Linux is booting. This could happen (at least for OHCI
657 * controller), because the HCCA (Host Controller Communication Area)
658 * lies within the SDRAM and the host controller writes continously to
659 * this area (as busmaster!). The HccaFrameNumber is for example
660 * updated every 1 ms within the HCCA structure in SDRAM! For more
661 * details see the OpenHCI specification.
662 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200663 usb_stop();
664#endif
665
Kumar Gala396f6352008-08-15 08:24:41 -0500666 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000667
Kumar Gala396f6352008-08-15 08:24:41 -0500668 if (ret < 0) {
669 if (ret == BOOTM_ERR_RESET)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000670 do_reset(cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500671 if (ret == BOOTM_ERR_OVERLAP) {
672 if (images.legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000673 image_header_t *hdr;
674 hdr = &images.legacy_hdr_os_copy;
675 if (image_get_type(hdr) == IH_TYPE_MULTI)
676 puts("WARNING: legacy format multi "
677 "component image "
678 "overwritten\n");
Kumar Gala396f6352008-08-15 08:24:41 -0500679 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000680 puts("ERROR: new format image overwritten - "
Kumar Gala396f6352008-08-15 08:24:41 -0500681 "must RESET the board to recover\n");
Simon Glass770605e2012-02-13 13:51:18 +0000682 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000683 do_reset(cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500684 }
wdenk47d1a6e2002-11-03 00:01:44 +0000685 }
Kumar Gala396f6352008-08-15 08:24:41 -0500686 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
687 if (iflag)
688 enable_interrupts();
Simon Glass770605e2012-02-13 13:51:18 +0000689 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
Kumar Gala396f6352008-08-15 08:24:41 -0500690 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200691 }
wdenk47d1a6e2002-11-03 00:01:44 +0000692 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100693
Kumar Gala396f6352008-08-15 08:24:41 -0500694 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
695
Detlev Zundelf97ec302009-07-13 16:01:19 +0200696 if (images.os.type == IH_TYPE_STANDALONE) {
697 if (iflag)
698 enable_interrupts();
699 /* This may return when 'autostart' is 'no' */
700 bootm_start_standalone(iflag, argc, argv);
701 return 0;
702 }
703
Simon Glass770605e2012-02-13 13:51:18 +0000704 bootstage_mark(BOOTSTAGE_ID_CHECK_BOOT_OS);
wdenk47d1a6e2002-11-03 00:01:44 +0000705
Joe Hershbergerbe2e5a02013-02-27 10:20:59 +0000706#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
Kumar Galabe083152008-10-21 17:25:44 -0500707 if (images.os.os == IH_OS_LINUX)
708 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000709#endif
710
Kumar Galabe083152008-10-21 17:25:44 -0500711 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200712
713 if (boot_fn == NULL) {
714 if (iflag)
715 enable_interrupts();
Stephen Warren712fbcf2011-10-18 11:11:49 +0000716 printf("ERROR: booting os '%s' (%d) is not supported\n",
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200717 genimg_get_os_name(images.os.os), images.os.os);
Simon Glass770605e2012-02-13 13:51:18 +0000718 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200719 return 1;
720 }
721
Kumar Gala3dfad402009-08-27 08:23:55 -0500722 arch_preboot_os();
723
Kumar Galabe083152008-10-21 17:25:44 -0500724 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000725
Simon Glass770605e2012-02-13 13:51:18 +0000726 bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
wdenk47d1a6e2002-11-03 00:01:44 +0000727#ifdef DEBUG
Stephen Warren712fbcf2011-10-18 11:11:49 +0000728 puts("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000729#endif
Stephen Warren712fbcf2011-10-18 11:11:49 +0000730 do_reset(cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100731
wdenk47d1a6e2002-11-03 00:01:44 +0000732 return 1;
733}
734
Mike Frysinger67d668b2011-06-05 13:43:02 +0000735int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
736{
737 const char *ep = getenv("autostart");
738
739 if (ep && !strcmp(ep, "yes")) {
740 char *local_args[2];
741 local_args[0] = (char *)cmd;
742 local_args[1] = NULL;
743 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
744 return do_bootm(cmdtp, 0, 1, local_args);
745 }
746
747 return 0;
748}
749
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100750/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100751 * image_get_kernel - verify legacy format kernel image
752 * @img_addr: in RAM address of the legacy format image to be verified
753 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100754 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100755 * image_get_kernel() verifies legacy image integrity and returns pointer to
756 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100757 *
758 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100759 * pointer to a legacy image header if valid image was found
760 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100761 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000762static image_header_t *image_get_kernel(ulong img_addr, int verify)
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100763{
764 image_header_t *hdr = (image_header_t *)img_addr;
765
766 if (!image_check_magic(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000767 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000768 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100769 return NULL;
770 }
Simon Glass770605e2012-02-13 13:51:18 +0000771 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100772
Stephen Warren712fbcf2011-10-18 11:11:49 +0000773 if (!image_check_hcrc(hdr)) {
774 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000775 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100776 return NULL;
777 }
778
Simon Glass770605e2012-02-13 13:51:18 +0000779 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000780 image_print_contents(hdr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100781
782 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000783 puts(" Verifying Checksum ... ");
784 if (!image_check_dcrc(hdr)) {
785 printf("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000786 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100787 return NULL;
788 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000789 puts("OK\n");
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100790 }
Simon Glass770605e2012-02-13 13:51:18 +0000791 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100792
Stephen Warren712fbcf2011-10-18 11:11:49 +0000793 if (!image_check_target_arch(hdr)) {
794 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
Simon Glass770605e2012-02-13 13:51:18 +0000795 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100796 return NULL;
797 }
798 return hdr;
799}
800
801/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100802 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100803 * @os_data: pointer to a ulong variable, will hold os data start address
804 * @os_len: pointer to a ulong variable, will hold os data length
805 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100806 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100807 * and locates kernel data.
808 *
809 * returns:
810 * pointer to image header if valid image was found, plus kernel start
811 * address and length, otherwise NULL
812 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000813static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000814 char * const argv[], bootm_headers_t *images, ulong *os_data,
815 ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100816{
817 image_header_t *hdr;
818 ulong img_addr;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000819 const void *buf;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100820#if defined(CONFIG_FIT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100821 const char *fit_uname_config = NULL;
822 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100823 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100824#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100825
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100826 /* find out kernel image address */
Simon Glass983c72f2013-06-11 11:14:46 -0700827 if (argc < 1) {
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100828 img_addr = load_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000829 debug("* kernel: default image load address = 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100830 load_addr);
831#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700832 } else if (fit_parse_conf(argv[0], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100833 &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000834 debug("* kernel: config '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100835 fit_uname_config, img_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700836 } else if (fit_parse_subimage(argv[0], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100837 &fit_uname_kernel)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000838 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100839 fit_uname_kernel, img_addr);
840#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100841 } else {
Simon Glass983c72f2013-06-11 11:14:46 -0700842 img_addr = simple_strtoul(argv[0], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000843 debug("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100844 }
845
Simon Glass770605e2012-02-13 13:51:18 +0000846 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100847
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100848 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000849 img_addr = genimg_get_image(img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100850
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100851 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100852 *os_data = *os_len = 0;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000853 buf = map_sysmem(img_addr, 0);
854 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100855 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000856 printf("## Booting kernel from Legacy Image at %08lx ...\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100857 img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000858 hdr = image_get_kernel(img_addr, images->verify);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100859 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100860 return NULL;
Simon Glass770605e2012-02-13 13:51:18 +0000861 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100862
Marian Balakowicz6986a382008-03-12 10:01:05 +0100863 /* get os_data and os_len */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000864 switch (image_get_type(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100865 case IH_TYPE_KERNEL:
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700866 case IH_TYPE_KERNEL_NOLOAD:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000867 *os_data = image_get_data(hdr);
868 *os_len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100869 break;
870 case IH_TYPE_MULTI:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000871 image_multi_getimg(hdr, 0, os_data, os_len);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100872 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200873 case IH_TYPE_STANDALONE:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000874 *os_data = image_get_data(hdr);
875 *os_len = image_get_data_size(hdr);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200876 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100877 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000878 printf("Wrong Image Type for %s command\n",
879 cmdtp->name);
Simon Glass770605e2012-02-13 13:51:18 +0000880 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100881 return NULL;
882 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100883
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200884 /*
Stephen Warren712fbcf2011-10-18 11:11:49 +0000885 * copy image header to allow for image overwrites during
886 * kernel decompression.
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200887 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000888 memmove(&images->legacy_hdr_os_copy, hdr,
889 sizeof(image_header_t));
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200890
891 /* save pointer to image header */
892 images->legacy_hdr_os = hdr;
893
894 images->legacy_hdr_valid = 1;
Simon Glass770605e2012-02-13 13:51:18 +0000895 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100896 break;
897#if defined(CONFIG_FIT)
898 case IMAGE_FORMAT_FIT:
Simon Glass46518002013-05-16 13:53:25 +0000899 os_noffset = fit_image_load(images, FIT_KERNEL_PROP,
900 img_addr,
901 &fit_uname_kernel, fit_uname_config,
902 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
903 BOOTSTAGE_ID_FIT_KERNEL_START,
904 FIT_LOAD_IGNORED, os_data, os_len);
905 if (os_noffset < 0)
Marian Balakowicz6986a382008-03-12 10:01:05 +0100906 return NULL;
907
Simon Glass46518002013-05-16 13:53:25 +0000908 images->fit_hdr_os = map_sysmem(img_addr, 0);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100909 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100910 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100911 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100912#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100913 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000914 printf("Wrong Image Format for %s command\n", cmdtp->name);
Simon Glass770605e2012-02-13 13:51:18 +0000915 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100916 return NULL;
917 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100918
Stephen Warren712fbcf2011-10-18 11:11:49 +0000919 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100920 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100921
Simon Glass35e7b0f2013-05-07 06:12:03 +0000922 return buf;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100923}
924
Kim Phillips088f1b12012-10-29 13:34:31 +0000925#ifdef CONFIG_SYS_LONGHELP
926static char bootm_help_text[] =
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100927 "[addr [arg ...]]\n - boot application image stored in memory\n"
928 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
929 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100930#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500931 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200932 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500933 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
934 "\tuse a '-' for the second argument. If you do not pass a third\n"
935 "\ta bd_info struct will be passed instead\n"
936#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100937#if defined(CONFIG_FIT)
938 "\t\nFor the new multi component uImage format (FIT) addresses\n"
939 "\tmust be extened to include component or configuration unit name:\n"
940 "\taddr:<subimg_uname> - direct component image specification\n"
941 "\taddr#<conf_uname> - configuration specification\n"
942 "\tUse iminfo command to get the list of existing component\n"
943 "\timages and configurations.\n"
944#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500945 "\nSub-commands to do part of the bootm sequence. The sub-commands "
946 "must be\n"
947 "issued in the order below (it's ok to not issue all sub-commands):\n"
948 "\tstart [addr [arg ...]]\n"
949 "\tloados - load OS image\n"
Daniel Schwierzeck59af76d2013-02-26 04:54:19 +0000950#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
Kumar Gala49c3a862008-10-21 17:25:45 -0500951 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
952#endif
953#if defined(CONFIG_OF_LIBFDT)
954 "\tfdt - relocate flat device tree\n"
955#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500956 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -0600957 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -0500958 "\tprep - OS specific prep before relocation or go\n"
Kim Phillips088f1b12012-10-29 13:34:31 +0000959 "\tgo - start OS";
960#endif
961
962U_BOOT_CMD(
963 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
964 "boot application image from memory", bootm_help_text
wdenk8bde7f72003-06-27 21:31:46 +0000965);
966
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100967/*******************************************************************/
968/* bootd - boot default image */
969/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500970#if defined(CONFIG_CMD_BOOTD)
Stephen Warren712fbcf2011-10-18 11:11:49 +0000971int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000972{
973 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100974
Simon Glass53071532012-02-14 19:59:21 +0000975 if (run_command(getenv("bootcmd"), flag) < 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100976 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000977 return rcode;
978}
wdenk8bde7f72003-06-27 21:31:46 +0000979
wdenk0d498392003-07-01 21:06:45 +0000980U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100981 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -0600982 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200983 ""
wdenk9d2b18a2003-06-28 23:11:04 +0000984);
985
986/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000987U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100988 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -0600989 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200990 ""
wdenk8bde7f72003-06-27 21:31:46 +0000991);
992
wdenk47d1a6e2002-11-03 00:01:44 +0000993#endif
994
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100995
996/*******************************************************************/
997/* iminfo - print header info for a requested image */
998/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500999#if defined(CONFIG_CMD_IMI)
Kim Phillips088f1b12012-10-29 13:34:31 +00001000static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001001{
1002 int arg;
1003 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001004 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001005
1006 if (argc < 2) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001007 return image_info(load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001008 }
1009
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001010 for (arg = 1; arg < argc; ++arg) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001011 addr = simple_strtoul(argv[arg], NULL, 16);
1012 if (image_info(addr) != 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001013 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001014 }
1015 return rcode;
1016}
1017
Stephen Warren712fbcf2011-10-18 11:11:49 +00001018static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +00001019{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001020 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001021
Stephen Warren712fbcf2011-10-18 11:11:49 +00001022 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001023
Stephen Warren712fbcf2011-10-18 11:11:49 +00001024 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001025 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001026 puts(" Legacy image found\n");
1027 if (!image_check_magic(hdr)) {
1028 puts(" Bad Magic Number\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001029 return 1;
1030 }
1031
Stephen Warren712fbcf2011-10-18 11:11:49 +00001032 if (!image_check_hcrc(hdr)) {
1033 puts(" Bad Header Checksum\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001034 return 1;
1035 }
1036
Stephen Warren712fbcf2011-10-18 11:11:49 +00001037 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001038
Stephen Warren712fbcf2011-10-18 11:11:49 +00001039 puts(" Verifying Checksum ... ");
1040 if (!image_check_dcrc(hdr)) {
1041 puts(" Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001042 return 1;
1043 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001044 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001045 return 0;
1046#if defined(CONFIG_FIT)
1047 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001048 puts(" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001049
Stephen Warren712fbcf2011-10-18 11:11:49 +00001050 if (!fit_check_format(hdr)) {
1051 puts("Bad FIT image format!\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001052 return 1;
1053 }
1054
Stephen Warren712fbcf2011-10-18 11:11:49 +00001055 fit_print_contents(hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001056
Simon Glassb8da8362013-05-07 06:11:57 +00001057 if (!fit_all_image_verify(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001058 puts("Bad hash in FIT image!\n");
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001059 return 1;
1060 }
1061
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001062 return 0;
1063#endif
1064 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001065 puts("Unknown image format!\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001066 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001067 }
1068
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001069 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001070}
wdenk0d498392003-07-01 21:06:45 +00001071
1072U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001073 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001074 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001075 "addr [addr ...]\n"
1076 " - print header information for application image starting at\n"
1077 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001078 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001079);
Jon Loeliger90253172007-07-10 11:02:44 -05001080#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001081
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001082
1083/*******************************************************************/
1084/* imls - list all images found in flash */
1085/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001086#if defined(CONFIG_CMD_IMLS)
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001087static int do_imls_nor(void)
wdenk27b207f2003-07-24 23:38:38 +00001088{
1089 flash_info_t *info;
1090 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001091 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001092
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001093 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001094 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001095
wdenk27b207f2003-07-24 23:38:38 +00001096 if (info->flash_id == FLASH_UNKNOWN)
1097 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001098 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001099
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001100 hdr = (void *)info->start[j];
1101 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001102 goto next_sector;
1103
Stephen Warren712fbcf2011-10-18 11:11:49 +00001104 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001105 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001106 if (!image_check_hcrc(hdr))
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001107 goto next_sector;
1108
Stephen Warren712fbcf2011-10-18 11:11:49 +00001109 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1110 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001111
Stephen Warren712fbcf2011-10-18 11:11:49 +00001112 puts(" Verifying Checksum ... ");
1113 if (!image_check_dcrc(hdr)) {
1114 puts("Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001115 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001116 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001117 }
1118 break;
1119#if defined(CONFIG_FIT)
1120 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001121 if (!fit_check_format(hdr))
Marian Balakowicze32fea62008-03-11 12:35:20 +01001122 goto next_sector;
1123
Stephen Warren712fbcf2011-10-18 11:11:49 +00001124 printf("FIT Image at %08lX:\n", (ulong)hdr);
1125 fit_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001126 break;
1127#endif
1128 default:
wdenk27b207f2003-07-24 23:38:38 +00001129 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001130 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001131
wdenkbdccc4f2003-08-05 17:43:17 +00001132next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001133 }
wdenkbdccc4f2003-08-05 17:43:17 +00001134next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001135 }
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001136 return 0;
1137}
1138#endif
1139
1140#if defined(CONFIG_CMD_IMLS_NAND)
1141static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
1142 size_t len)
1143{
1144 void *imgdata;
1145 int ret;
1146
1147 imgdata = malloc(len);
1148 if (!imgdata) {
1149 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
1150 nand_dev, off);
1151 printf(" Low memory(cannot allocate memory for image)\n");
1152 return -ENOMEM;
1153 }
1154
1155 ret = nand_read_skip_bad(nand, off, &len,
1156 imgdata);
1157 if (ret < 0 && ret != -EUCLEAN) {
1158 free(imgdata);
1159 return ret;
1160 }
1161
1162 if (!image_check_hcrc(imgdata)) {
1163 free(imgdata);
1164 return 0;
1165 }
1166
1167 printf("Legacy Image at NAND device %d offset %08llX:\n",
1168 nand_dev, off);
1169 image_print_contents(imgdata);
1170
1171 puts(" Verifying Checksum ... ");
1172 if (!image_check_dcrc(imgdata))
1173 puts("Bad Data CRC\n");
1174 else
1175 puts("OK\n");
1176
1177 free(imgdata);
1178
1179 return 0;
1180}
1181
1182static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
1183 size_t len)
1184{
1185 void *imgdata;
1186 int ret;
1187
1188 imgdata = malloc(len);
1189 if (!imgdata) {
1190 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
1191 nand_dev, off);
1192 printf(" Low memory(cannot allocate memory for image)\n");
1193 return -ENOMEM;
1194 }
1195
1196 ret = nand_read_skip_bad(nand, off, &len,
1197 imgdata);
1198 if (ret < 0 && ret != -EUCLEAN) {
1199 free(imgdata);
1200 return ret;
1201 }
1202
1203 if (!fit_check_format(imgdata)) {
1204 free(imgdata);
1205 return 0;
1206 }
1207
1208 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
1209
1210 fit_print_contents(imgdata);
1211 free(imgdata);
1212
1213 return 0;
1214}
1215
1216static int do_imls_nand(void)
1217{
1218 nand_info_t *nand;
1219 int nand_dev = nand_curr_device;
1220 size_t len;
1221 loff_t off;
1222 u32 buffer[16];
1223
1224 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
1225 puts("\nNo NAND devices available\n");
1226 return -ENODEV;
1227 }
1228
1229 printf("\n");
1230
1231 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
1232 nand = &nand_info[nand_dev];
1233 if (!nand->name || !nand->size)
1234 continue;
1235
1236 for (off = 0; off < nand->size; off += nand->erasesize) {
1237 const image_header_t *header;
1238 int ret;
1239
1240 if (nand_block_isbad(nand, off))
1241 continue;
1242
1243 len = sizeof(buffer);
1244
1245 ret = nand_read(nand, off, &len, (u8 *)buffer);
1246 if (ret < 0 && ret != -EUCLEAN) {
1247 printf("NAND read error %d at offset %08llX\n",
1248 ret, off);
1249 continue;
1250 }
1251
1252 switch (genimg_get_format(buffer)) {
1253 case IMAGE_FORMAT_LEGACY:
1254 header = (const image_header_t *)buffer;
1255
1256 len = image_get_image_size(header);
1257 nand_imls_legacyimage(nand, nand_dev, off, len);
1258 break;
1259#if defined(CONFIG_FIT)
1260 case IMAGE_FORMAT_FIT:
1261 len = fit_get_size(buffer);
1262 nand_imls_fitimage(nand, nand_dev, off, len);
1263 break;
1264#endif
1265 }
1266 }
1267 }
1268
1269 return 0;
1270}
1271#endif
1272
1273#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
1274static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1275{
1276 int ret_nor = 0, ret_nand = 0;
1277
1278#if defined(CONFIG_CMD_IMLS)
1279 ret_nor = do_imls_nor();
1280#endif
1281
1282#if defined(CONFIG_CMD_IMLS_NAND)
1283 ret_nand = do_imls_nand();
1284#endif
1285
1286 if (ret_nor)
1287 return ret_nor;
1288
1289 if (ret_nand)
1290 return ret_nand;
wdenk27b207f2003-07-24 23:38:38 +00001291
1292 return (0);
1293}
1294
1295U_BOOT_CMD(
1296 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001297 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001298 "\n"
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001299 " - Prints information about all images found at sector/block\n"
1300 " boundaries in nor/nand flash."
wdenk27b207f2003-07-24 23:38:38 +00001301);
Jon Loeliger90253172007-07-10 11:02:44 -05001302#endif
wdenk27b207f2003-07-24 23:38:38 +00001303
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001304/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001305/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001306/*******************************************************************/
Joe Hershbergerbe2e5a02013-02-27 10:20:59 +00001307#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
Doug Andersona558ad72012-01-17 09:37:41 +00001308
1309#define CONSOLE_ARG "console="
1310#define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
1311
Doug Anderson3a8653b2011-10-19 12:30:57 +00001312static void fixup_silent_linux(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001313{
Doug Andersona558ad72012-01-17 09:37:41 +00001314 char *buf;
1315 const char *env_val;
Doug Anderson3a8653b2011-10-19 12:30:57 +00001316 char *cmdline = getenv("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001317
1318 /* Only fix cmdline when requested */
1319 if (!(gd->flags & GD_FLG_SILENT))
1320 return;
1321
Doug Anderson3a8653b2011-10-19 12:30:57 +00001322 debug("before silent fix-up: %s\n", cmdline);
Doug Andersona558ad72012-01-17 09:37:41 +00001323 if (cmdline && (cmdline[0] != '\0')) {
1324 char *start = strstr(cmdline, CONSOLE_ARG);
1325
1326 /* Allocate space for maximum possible new command line */
1327 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
1328 if (!buf) {
1329 debug("%s: out of memory\n", __func__);
1330 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001331 }
Doug Andersona558ad72012-01-17 09:37:41 +00001332
1333 if (start) {
1334 char *end = strchr(start, ' ');
1335 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
1336
1337 strncpy(buf, cmdline, num_start_bytes);
1338 if (end)
1339 strcpy(buf + num_start_bytes, end);
1340 else
1341 buf[num_start_bytes] = '\0';
1342 } else {
1343 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
1344 }
1345 env_val = buf;
wdenk47d1a6e2002-11-03 00:01:44 +00001346 } else {
Doug Andersona558ad72012-01-17 09:37:41 +00001347 buf = NULL;
1348 env_val = CONSOLE_ARG;
wdenk47d1a6e2002-11-03 00:01:44 +00001349 }
1350
Doug Andersona558ad72012-01-17 09:37:41 +00001351 setenv("bootargs", env_val);
1352 debug("after silent fix-up: %s\n", env_val);
1353 free(buf);
wdenk47d1a6e2002-11-03 00:01:44 +00001354}
1355#endif /* CONFIG_SILENT_CONSOLE */
1356
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001357
1358/*******************************************************************/
1359/* OS booting routines */
1360/*******************************************************************/
1361
Kumar Galab1d0db12008-10-21 17:25:47 -05001362#ifdef CONFIG_BOOTM_NETBSD
Stephen Warren712fbcf2011-10-18 11:11:49 +00001363static int do_bootm_netbsd(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001364 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001365{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001366 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001367 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001368 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001369 char *consdev;
1370 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001371
Kumar Gala49c3a862008-10-21 17:25:45 -05001372 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1373 return 1;
1374
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001375#if defined(CONFIG_FIT)
1376 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001377 fit_unsupported_reset("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001378 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001379 }
1380#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001381 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001382
1383 /*
1384 * Booting a (NetBSD) kernel image
1385 *
1386 * This process is pretty similar to a standalone application:
1387 * The (first part of an multi-) image must be a stage-2 loader,
1388 * which in turn is responsible for loading & invoking the actual
1389 * kernel. The only differences are the parameters being passed:
1390 * besides the board info strucure, the loader expects a command
1391 * line, the name of the console device, and (optionally) the
1392 * address of the original image header.
1393 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001394 os_hdr = NULL;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001395 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1396 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001397 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001398 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001399 }
wdenk47d1a6e2002-11-03 00:01:44 +00001400
1401 consdev = "";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001402#if defined(CONFIG_8xx_CONS_SMC1)
wdenk47d1a6e2002-11-03 00:01:44 +00001403 consdev = "smc1";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001404#elif defined(CONFIG_8xx_CONS_SMC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001405 consdev = "smc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001406#elif defined(CONFIG_8xx_CONS_SCC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001407 consdev = "scc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001408#elif defined(CONFIG_8xx_CONS_SCC3)
wdenk47d1a6e2002-11-03 00:01:44 +00001409 consdev = "scc3";
1410#endif
1411
Simon Glass983c72f2013-06-11 11:14:46 -07001412 if (argc > 0) {
wdenk47d1a6e2002-11-03 00:01:44 +00001413 ulong len;
1414 int i;
1415
Simon Glass983c72f2013-06-11 11:14:46 -07001416 for (i = 0, len = 0; i < argc; i += 1)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001417 len += strlen(argv[i]) + 1;
1418 cmdline = malloc(len);
wdenk47d1a6e2002-11-03 00:01:44 +00001419
Simon Glass983c72f2013-06-11 11:14:46 -07001420 for (i = 0, len = 0; i < argc; i += 1) {
1421 if (i > 0)
wdenk47d1a6e2002-11-03 00:01:44 +00001422 cmdline[len++] = ' ';
Stephen Warren712fbcf2011-10-18 11:11:49 +00001423 strcpy(&cmdline[len], argv[i]);
1424 len += strlen(argv[i]);
wdenk47d1a6e2002-11-03 00:01:44 +00001425 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001426 } else if ((cmdline = getenv("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001427 cmdline = "";
1428 }
1429
Kumar Galac160a952008-08-15 08:24:36 -05001430 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001431
Stephen Warren712fbcf2011-10-18 11:11:49 +00001432 printf("## Transferring control to NetBSD stage-2 loader "
1433 "(at address %08lx) ...\n",
wdenk47d1a6e2002-11-03 00:01:44 +00001434 (ulong)loader);
1435
Simon Glass770605e2012-02-13 13:51:18 +00001436 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenk47d1a6e2002-11-03 00:01:44 +00001437
1438 /*
1439 * NetBSD Stage-2 Loader Parameters:
1440 * r3: ptr to board info data
1441 * r4: image address
1442 * r5: console device
1443 * r6: boot args string
1444 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001445 (*loader)(gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001446
1447 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001448}
Kumar Galab1d0db12008-10-21 17:25:47 -05001449#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001450
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001451#ifdef CONFIG_LYNXKDI
Stephen Warren712fbcf2011-10-18 11:11:49 +00001452static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001453 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001454{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001455 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001456
Kumar Gala49c3a862008-10-21 17:25:45 -05001457 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1458 return 1;
1459
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001460#if defined(CONFIG_FIT)
1461 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001462 fit_unsupported_reset("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001463 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001464 }
1465#endif
1466
Stephen Warren712fbcf2011-10-18 11:11:49 +00001467 lynxkdi_boot((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001468
1469 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001470}
1471#endif /* CONFIG_LYNXKDI */
1472
Kumar Galab1d0db12008-10-21 17:25:47 -05001473#ifdef CONFIG_BOOTM_RTEMS
Stephen Warren712fbcf2011-10-18 11:11:49 +00001474static int do_bootm_rtems(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001475 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001476{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001477 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001478
Kumar Gala49c3a862008-10-21 17:25:45 -05001479 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1480 return 1;
1481
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001482#if defined(CONFIG_FIT)
1483 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001484 fit_unsupported_reset("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001485 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001486 }
1487#endif
1488
Kumar Galac160a952008-08-15 08:24:36 -05001489 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001490
Stephen Warren712fbcf2011-10-18 11:11:49 +00001491 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
wdenkd791b1d2003-04-20 14:04:18 +00001492 (ulong)entry_point);
1493
Simon Glass770605e2012-02-13 13:51:18 +00001494 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenkd791b1d2003-04-20 14:04:18 +00001495
1496 /*
1497 * RTEMS Parameters:
1498 * r3: ptr to board info data
1499 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001500 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001501
1502 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001503}
Kumar Galab1d0db12008-10-21 17:25:47 -05001504#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001505
Torkel Lundgren3df61952010-09-28 11:05:36 +02001506#if defined(CONFIG_BOOTM_OSE)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001507static int do_bootm_ose(int flag, int argc, char * const argv[],
Torkel Lundgren3df61952010-09-28 11:05:36 +02001508 bootm_headers_t *images)
1509{
1510 void (*entry_point)(void);
1511
1512 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1513 return 1;
1514
1515#if defined(CONFIG_FIT)
1516 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001517 fit_unsupported_reset("OSE");
Torkel Lundgren3df61952010-09-28 11:05:36 +02001518 return 1;
1519 }
1520#endif
1521
1522 entry_point = (void (*)(void))images->ep;
1523
Stephen Warren712fbcf2011-10-18 11:11:49 +00001524 printf("## Transferring control to OSE (at address %08lx) ...\n",
Torkel Lundgren3df61952010-09-28 11:05:36 +02001525 (ulong)entry_point);
1526
Simon Glass770605e2012-02-13 13:51:18 +00001527 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Torkel Lundgren3df61952010-09-28 11:05:36 +02001528
1529 /*
1530 * OSE Parameters:
1531 * None
1532 */
1533 (*entry_point)();
1534
1535 return 1;
1536}
1537#endif /* CONFIG_BOOTM_OSE */
1538
Steven Stallion04d41402013-03-20 06:31:35 +00001539#if defined(CONFIG_BOOTM_PLAN9)
1540static int do_bootm_plan9(int flag, int argc, char * const argv[],
1541 bootm_headers_t *images)
1542{
1543 void (*entry_point)(void);
1544
1545 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1546 return 1;
1547
1548#if defined(CONFIG_FIT)
1549 if (!images->legacy_hdr_valid) {
1550 fit_unsupported_reset("Plan 9");
1551 return 1;
1552 }
1553#endif
1554
1555 entry_point = (void (*)(void))images->ep;
1556
1557 printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
1558 (ulong)entry_point);
1559
1560 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1561
1562 /*
1563 * Plan 9 Parameters:
1564 * None
1565 */
1566 (*entry_point)();
1567
1568 return 1;
1569}
1570#endif /* CONFIG_BOOTM_PLAN9 */
1571
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001572#if defined(CONFIG_CMD_ELF)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001573static int do_bootm_vxworks(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001574 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001575{
wdenk47d1a6e2002-11-03 00:01:44 +00001576 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001577
Kumar Gala49c3a862008-10-21 17:25:45 -05001578 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1579 return 1;
1580
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001581#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001582 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001583 fit_unsupported_reset("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001584 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001585 }
1586#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001587
Kumar Galac160a952008-08-15 08:24:36 -05001588 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001589 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001590 do_bootvx(NULL, 0, 0, NULL);
1591
1592 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001593}
1594
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001595static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001596 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001597{
wdenk47d1a6e2002-11-03 00:01:44 +00001598 char *local_args[2];
1599 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001600
Kumar Gala49c3a862008-10-21 17:25:45 -05001601 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1602 return 1;
1603
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001604#if defined(CONFIG_FIT)
1605 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001606 fit_unsupported_reset("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001607 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001608 }
1609#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001610
Kumar Galac160a952008-08-15 08:24:36 -05001611 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001612 local_args[0] = argv[0];
1613 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001614 do_bootelf(NULL, 0, 2, local_args);
1615
1616 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001617}
Jon Loeliger90253172007-07-10 11:02:44 -05001618#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001619
1620#ifdef CONFIG_INTEGRITY
Stephen Warren712fbcf2011-10-18 11:11:49 +00001621static int do_bootm_integrity(int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001622 bootm_headers_t *images)
1623{
1624 void (*entry_point)(void);
1625
Kumar Gala49c3a862008-10-21 17:25:45 -05001626 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1627 return 1;
1628
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001629#if defined(CONFIG_FIT)
1630 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001631 fit_unsupported_reset("INTEGRITY");
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001632 return 1;
1633 }
1634#endif
1635
1636 entry_point = (void (*)(void))images->ep;
1637
Stephen Warren712fbcf2011-10-18 11:11:49 +00001638 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001639 (ulong)entry_point);
1640
Simon Glass770605e2012-02-13 13:51:18 +00001641 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001642
1643 /*
1644 * INTEGRITY Parameters:
1645 * None
1646 */
1647 (*entry_point)();
1648
1649 return 1;
1650}
1651#endif
Marek Vasut44f074c2012-03-14 21:52:45 +00001652
1653#ifdef CONFIG_CMD_BOOTZ
1654
1655static int __bootz_setup(void *image, void **start, void **end)
1656{
1657 /* Please define bootz_setup() for your platform */
1658
1659 puts("Your platform's zImage format isn't supported yet!\n");
1660 return -1;
1661}
1662int bootz_setup(void *image, void **start, void **end)
1663 __attribute__((weak, alias("__bootz_setup")));
1664
1665/*
1666 * zImage booting support
1667 */
1668static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
1669 char * const argv[], bootm_headers_t *images)
1670{
1671 int ret;
1672 void *zi_start, *zi_end;
1673
1674 memset(images, 0, sizeof(bootm_headers_t));
1675
1676 boot_start_lmb(images);
1677
1678 /* Setup Linux kernel zImage entry point */
1679 if (argc < 2) {
1680 images->ep = load_addr;
1681 debug("* kernel: default image load address = 0x%08lx\n",
1682 load_addr);
1683 } else {
1684 images->ep = simple_strtoul(argv[1], NULL, 16);
1685 debug("* kernel: cmdline image address = 0x%08lx\n",
1686 images->ep);
1687 }
1688
1689 ret = bootz_setup((void *)images->ep, &zi_start, &zi_end);
1690 if (ret != 0)
1691 return 1;
1692
1693 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
1694
1695 /* Find ramdisk */
1696 ret = boot_get_ramdisk(argc, argv, images, IH_INITRD_ARCH,
1697 &images->rd_start, &images->rd_end);
1698 if (ret) {
1699 puts("Ramdisk image is corrupt or invalid\n");
1700 return 1;
1701 }
1702
1703#if defined(CONFIG_OF_LIBFDT)
1704 /* find flattened device tree */
Simon Glass53f375f2013-05-16 13:53:23 +00001705 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, images,
Marek Vasut44f074c2012-03-14 21:52:45 +00001706 &images->ft_addr, &images->ft_len);
1707 if (ret) {
1708 puts("Could not find a valid device tree\n");
1709 return 1;
1710 }
1711
1712 set_working_fdt_addr(images->ft_addr);
1713#endif
1714
1715 return 0;
1716}
1717
Rob Herringda620222012-12-02 21:00:23 -06001718int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Marek Vasut44f074c2012-03-14 21:52:45 +00001719{
Marek Vasut44f074c2012-03-14 21:52:45 +00001720 bootm_headers_t images;
1721
1722 if (bootz_start(cmdtp, flag, argc, argv, &images))
1723 return 1;
1724
1725 /*
1726 * We have reached the point of no return: we are going to
1727 * overwrite all exception vector code, so we cannot easily
1728 * recover from any failures any more...
1729 */
Anatolij Gustschina075a792012-05-19 05:38:19 +00001730 disable_interrupts();
Marek Vasut44f074c2012-03-14 21:52:45 +00001731
Joe Hershbergerf8be7d62012-08-03 10:59:08 +00001732#ifdef CONFIG_NETCONSOLE
1733 /* Stop the ethernet stack if NetConsole could have left it up */
1734 eth_halt();
1735#endif
1736
Marek Vasut44f074c2012-03-14 21:52:45 +00001737#if defined(CONFIG_CMD_USB)
1738 /*
1739 * turn off USB to prevent the host controller from writing to the
1740 * SDRAM while Linux is booting. This could happen (at least for OHCI
1741 * controller), because the HCCA (Host Controller Communication Area)
1742 * lies within the SDRAM and the host controller writes continously to
1743 * this area (as busmaster!). The HccaFrameNumber is for example
1744 * updated every 1 ms within the HCCA structure in SDRAM! For more
1745 * details see the OpenHCI specification.
1746 */
1747 usb_stop();
1748#endif
1749
Joe Hershbergerbe2e5a02013-02-27 10:20:59 +00001750#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
Marek Vasut44f074c2012-03-14 21:52:45 +00001751 fixup_silent_linux();
1752#endif
1753 arch_preboot_os();
1754
1755 do_bootm_linux(0, argc, argv, &images);
1756#ifdef DEBUG
1757 puts("\n## Control returned to monitor - resetting...\n");
1758#endif
1759 do_reset(cmdtp, flag, argc, argv);
1760
1761 return 1;
1762}
1763
Kim Phillips088f1b12012-10-29 13:34:31 +00001764#ifdef CONFIG_SYS_LONGHELP
1765static char bootz_help_text[] =
Marek Vasut017e1f32012-03-18 11:47:58 +00001766 "[addr [initrd[:size]] [fdt]]\n"
1767 " - boot Linux zImage stored in memory\n"
Marek Vasut44f074c2012-03-14 21:52:45 +00001768 "\tThe argument 'initrd' is optional and specifies the address\n"
Marek Vasut017e1f32012-03-18 11:47:58 +00001769 "\tof the initrd in memory. The optional argument ':size' allows\n"
1770 "\tspecifying the size of RAW initrd.\n"
Marek Vasut44f074c2012-03-14 21:52:45 +00001771#if defined(CONFIG_OF_LIBFDT)
1772 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1773 "\ta third argument is required which is the address of the\n"
1774 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1775 "\tuse a '-' for the second argument. If you do not pass a third\n"
1776 "\ta bd_info struct will be passed instead\n"
1777#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001778 "";
1779#endif
1780
1781U_BOOT_CMD(
1782 bootz, CONFIG_SYS_MAXARGS, 1, do_bootz,
1783 "boot Linux zImage image from memory", bootz_help_text
Marek Vasut44f074c2012-03-14 21:52:45 +00001784);
1785#endif /* CONFIG_CMD_BOOTZ */