blob: e712602b8d2a2955303bf996223c7b4ef77e86f3 [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 *
Simon Glass35fc84f2013-06-11 11:14:47 -0700108 * @flag: Flags indicating what to do (BOOTM_STATE_...)
Simon Glass983c72f2013-06-11 11:14:46 -0700109 * @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{
Stephen Warren712fbcf2011-10-18 11:11:49 +0000211 memset((void *)&images, 0, sizeof(images));
212 images.verify = getenv_yesno("verify");
Mike Frysingera16028d2009-11-03 11:35:59 -0500213
Marek Vasut44f074c2012-03-14 21:52:45 +0000214 boot_start_lmb(&images);
wdenk47d1a6e2002-11-03 00:01:44 +0000215
Simon Glass573f14f2011-12-10 11:08:06 +0000216 bootstage_mark_name(BOOTSTAGE_ID_BOOTM_START, "bootm_start");
Simon Glass35fc84f2013-06-11 11:14:47 -0700217 images.state = BOOTM_STATE_START;
218
219 return 0;
220}
221
222static int bootm_find_os(cmd_tbl_t *cmdtp, int flag, int argc,
223 char * const argv[])
224{
225 const void *os_hdr;
Simon Glass573f14f2011-12-10 11:08:06 +0000226
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100227 /* get kernel image header, start address and length */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000228 os_hdr = boot_get_kernel(cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500229 &images, &images.os.image_start, &images.os.image_len);
230 if (images.os.image_len == 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000231 puts("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000232 return 1;
233 }
wdenk47d1a6e2002-11-03 00:01:44 +0000234
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100235 /* get image parameters */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000236 switch (genimg_get_format(os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100237 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000238 images.os.type = image_get_type(os_hdr);
239 images.os.comp = image_get_comp(os_hdr);
240 images.os.os = image_get_os(os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200241
Stephen Warren712fbcf2011-10-18 11:11:49 +0000242 images.os.end = image_get_image_end(os_hdr);
243 images.os.load = image_get_load(os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100244 break;
245#if defined(CONFIG_FIT)
246 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000247 if (fit_image_get_type(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500248 images.fit_noffset_os, &images.os.type)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000249 puts("Can't get image type!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000250 bootstage_error(BOOTSTAGE_ID_FIT_TYPE);
wdenk47d1a6e2002-11-03 00:01:44 +0000251 return 1;
252 }
wdenk47d1a6e2002-11-03 00:01:44 +0000253
Stephen Warren712fbcf2011-10-18 11:11:49 +0000254 if (fit_image_get_comp(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500255 images.fit_noffset_os, &images.os.comp)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000256 puts("Can't get image compression!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000257 bootstage_error(BOOTSTAGE_ID_FIT_COMPRESSION);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100258 return 1;
259 }
wdenk47d1a6e2002-11-03 00:01:44 +0000260
Stephen Warren712fbcf2011-10-18 11:11:49 +0000261 if (fit_image_get_os(images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500262 images.fit_noffset_os, &images.os.os)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000263 puts("Can't get image OS!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000264 bootstage_error(BOOTSTAGE_ID_FIT_OS);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100265 return 1;
266 }
wdenk47d1a6e2002-11-03 00:01:44 +0000267
Stephen Warren712fbcf2011-10-18 11:11:49 +0000268 images.os.end = fit_get_end(images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100269
Stephen Warren712fbcf2011-10-18 11:11:49 +0000270 if (fit_image_get_load(images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500271 &images.os.load)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000272 puts("Can't get image load address!\n");
Simon Glass770605e2012-02-13 13:51:18 +0000273 bootstage_error(BOOTSTAGE_ID_FIT_LOADADDR);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100274 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000275 }
276 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100277#endif
278 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000279 puts("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000280 return 1;
281 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100282
Kumar Galac160a952008-08-15 08:24:36 -0500283 /* find kernel entry point */
284 if (images.legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000285 images.ep = image_get_ep(&images.legacy_hdr_os_copy);
Kumar Galac160a952008-08-15 08:24:36 -0500286#if defined(CONFIG_FIT)
287 } else if (images.fit_uname_os) {
Simon Glass35fc84f2013-06-11 11:14:47 -0700288 int ret;
289
Stephen Warren712fbcf2011-10-18 11:11:49 +0000290 ret = fit_image_get_entry(images.fit_hdr_os,
Simon Glassc19d13b2013-05-08 08:06:02 +0000291 images.fit_noffset_os, &images.ep);
Kumar Galac160a952008-08-15 08:24:36 -0500292 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000293 puts("Can't get entry point property!\n");
Kumar Galac160a952008-08-15 08:24:36 -0500294 return 1;
295 }
296#endif
297 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000298 puts("Could not find kernel entry point!\n");
Kumar Galac160a952008-08-15 08:24:36 -0500299 return 1;
300 }
301
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700302 if (images.os.type == IH_TYPE_KERNEL_NOLOAD) {
303 images.os.load = images.os.image_start;
304 images.ep += images.os.load;
305 }
306
Simon Glass35fc84f2013-06-11 11:14:47 -0700307 images.os.start = (ulong)os_hdr;
308
309 return 0;
310}
311
312static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc,
313 char * const argv[])
314{
315 int ret;
316
Heiko Schocher24de2f42010-03-29 13:15:48 +0200317 if (((images.os.type == IH_TYPE_KERNEL) ||
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700318 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
Heiko Schocher24de2f42010-03-29 13:15:48 +0200319 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100320 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500321 /* find ramdisk */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000322 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
Kumar Galac4f94192008-08-15 08:24:37 -0500323 &images.rd_start, &images.rd_end);
324 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000325 puts("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500326 return 1;
327 }
Kumar Gala06a09912008-08-15 08:24:38 -0500328
329#if defined(CONFIG_OF_LIBFDT)
330 /* find flattened device tree */
Simon Glass53f375f2013-05-16 13:53:23 +0000331 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000332 &images.ft_addr, &images.ft_len);
Kumar Gala06a09912008-08-15 08:24:38 -0500333 if (ret) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000334 puts("Could not find a valid device tree\n");
Kumar Gala06a09912008-08-15 08:24:38 -0500335 return 1;
336 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500337
338 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500339#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500340 }
341
Kumar Gala396f6352008-08-15 08:24:41 -0500342 return 0;
343}
344
345#define BOOTM_ERR_RESET -1
346#define BOOTM_ERR_OVERLAP -2
347#define BOOTM_ERR_UNIMPLEMENTED -3
Tom Rinid3664382013-06-28 11:38:02 -0400348static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
349 int boot_progress)
Kumar Gala396f6352008-08-15 08:24:41 -0500350{
Tom Rinid3664382013-06-28 11:38:02 -0400351 image_info_t os = images->os;
Kumar Gala396f6352008-08-15 08:24:41 -0500352 uint8_t comp = os.comp;
353 ulong load = os.load;
354 ulong blob_start = os.start;
355 ulong blob_end = os.end;
356 ulong image_start = os.image_start;
357 ulong image_len = os.image_len;
Anatolij Gustschin5bf27662011-11-19 13:12:18 +0000358 __maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
Stephen Warrend5108592011-11-10 13:17:54 -0700359 int no_overlap = 0;
Simon Glassaed161e2013-05-16 13:53:24 +0000360 void *load_buf, *image_buf;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200361#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
362 int ret;
363#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500364
Stephen Warren712fbcf2011-10-18 11:11:49 +0000365 const char *type_name = genimg_get_type_name(os.type);
Kumar Gala396f6352008-08-15 08:24:41 -0500366
Simon Glassaed161e2013-05-16 13:53:24 +0000367 load_buf = map_sysmem(load, image_len);
368 image_buf = map_sysmem(image_start, image_len);
Kumar Gala396f6352008-08-15 08:24:41 -0500369 switch (comp) {
370 case IH_COMP_NONE:
Lei Wen02cf3452011-01-10 18:21:15 +0800371 if (load == blob_start || load == image_start) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000372 printf(" XIP %s ... ", type_name);
Stephen Warrend5108592011-11-10 13:17:54 -0700373 no_overlap = 1;
Kumar Gala396f6352008-08-15 08:24:41 -0500374 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000375 printf(" Loading %s ... ", type_name);
Simon Glassaed161e2013-05-16 13:53:24 +0000376 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500377 }
378 *load_end = load + image_len;
379 puts("OK\n");
380 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500381#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500382 case IH_COMP_GZIP:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000383 printf(" Uncompressing %s ... ", type_name);
Simon Glassaed161e2013-05-16 13:53:24 +0000384 if (gunzip(load_buf, unc_len, image_buf, &image_len) != 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000385 puts("GUNZIP: uncompress, out-of-mem or overwrite "
386 "error - must RESET board to recover\n");
Kumar Gala396f6352008-08-15 08:24:41 -0500387 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000388 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Kumar Gala396f6352008-08-15 08:24:41 -0500389 return BOOTM_ERR_RESET;
390 }
391
392 *load_end = load + image_len;
393 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500394#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500395#ifdef CONFIG_BZIP2
396 case IH_COMP_BZIP2:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000397 printf(" Uncompressing %s ... ", type_name);
Kumar Gala396f6352008-08-15 08:24:41 -0500398 /*
399 * If we've got less than 4 MB of malloc() space,
400 * use slower decompression algorithm which requires
401 * at most 2300 KB of memory.
402 */
Simon Glassaed161e2013-05-16 13:53:24 +0000403 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
404 image_buf, image_len,
405 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500406 if (i != BZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000407 printf("BUNZIP2: uncompress or overwrite error %d "
Kumar Gala396f6352008-08-15 08:24:41 -0500408 "- must RESET board to recover\n", i);
409 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000410 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Kumar Gala396f6352008-08-15 08:24:41 -0500411 return BOOTM_ERR_RESET;
412 }
413
414 *load_end = load + unc_len;
415 break;
416#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200417#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400418 case IH_COMP_LZMA: {
419 SizeT lzma_len = unc_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000420 printf(" Uncompressing %s ... ", type_name);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200421
Simon Glassaed161e2013-05-16 13:53:24 +0000422 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
423 image_buf, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400424 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200425 if (ret != SZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000426 printf("LZMA: uncompress or overwrite error %d "
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200427 "- must RESET board to recover\n", ret);
Simon Glass770605e2012-02-13 13:51:18 +0000428 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200429 return BOOTM_ERR_RESET;
430 }
431 *load_end = load + unc_len;
432 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400433 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200434#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100435#ifdef CONFIG_LZO
436 case IH_COMP_LZO:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000437 printf(" Uncompressing %s ... ", type_name);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100438
Simon Glassaed161e2013-05-16 13:53:24 +0000439 ret = lzop_decompress(image_buf, image_len, load_buf,
440 &unc_len);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100441 if (ret != LZO_E_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000442 printf("LZO: uncompress or overwrite error %d "
Peter Korsgaard20dde482009-11-19 11:37:51 +0100443 "- must RESET board to recover\n", ret);
444 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000445 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100446 return BOOTM_ERR_RESET;
447 }
448
449 *load_end = load + unc_len;
450 break;
451#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500452 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000453 printf("Unimplemented compression type %d\n", comp);
Kumar Gala396f6352008-08-15 08:24:41 -0500454 return BOOTM_ERR_UNIMPLEMENTED;
455 }
Diana CRACIUN99ffccb2011-08-31 02:45:23 +0000456
457 flush_cache(load, (*load_end - load) * sizeof(ulong));
458
Stephen Warren712fbcf2011-10-18 11:11:49 +0000459 puts("OK\n");
460 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Simon Glass770605e2012-02-13 13:51:18 +0000461 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
Kumar Gala396f6352008-08-15 08:24:41 -0500462
Stephen Warrend5108592011-11-10 13:17:54 -0700463 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000464 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
465 blob_start, blob_end);
466 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
467 *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500468
Tom Rinid3664382013-06-28 11:38:02 -0400469 /* Check what type of image this is. */
470 if (images->legacy_hdr_valid) {
471 if (image_get_type(&images->legacy_hdr_os_copy)
472 == IH_TYPE_MULTI)
473 puts("WARNING: legacy format multi component image overwritten\n");
474 return BOOTM_ERR_OVERLAP;
475 } else {
476 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
477 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
478 return BOOTM_ERR_RESET;
479 }
Kumar Gala396f6352008-08-15 08:24:41 -0500480 }
481
482 return 0;
483}
484
Simon Glass35fc84f2013-06-11 11:14:47 -0700485static int bootm_start_standalone(int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200486{
487 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200488 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200489
490 /* Don't start if "autostart" is set to "no" */
491 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
Simon Glass41ef3722013-02-24 17:33:22 +0000492 setenv_hex("filesize", images.os.image_len);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200493 return 0;
494 }
Simon Glass6d6f1232011-10-07 13:53:40 +0000495 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
Simon Glass983c72f2013-06-11 11:14:46 -0700496 (*appl)(argc, argv);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200497 return 0;
498}
499
Kumar Gala49c3a862008-10-21 17:25:45 -0500500/* we overload the cmd field with our state machine info instead of a
501 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100502static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500503 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
504 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600505#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500506 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
507#endif
508#ifdef CONFIG_OF_LIBFDT
509 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
510#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500511 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600512 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500513 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
Simon Glassd0ae31e2013-06-11 11:14:48 -0700514 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500515 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
516};
517
Simon Glass35fc84f2013-06-11 11:14:47 -0700518static int boot_selected_os(int argc, char * const argv[], int state,
Simon Glass5ff0d082013-06-28 00:46:12 -0700519 bootm_headers_t *images, boot_os_fn *boot_fn)
Simon Glass35fc84f2013-06-11 11:14:47 -0700520{
521 if (images->os.type == IH_TYPE_STANDALONE) {
522 /* This may return when 'autostart' is 'no' */
523 bootm_start_standalone(argc, argv);
524 return 0;
525 }
Simon Glass35fc84f2013-06-11 11:14:47 -0700526#ifdef CONFIG_SILENT_CONSOLE
527 if (images->os.os == IH_OS_LINUX)
528 fixup_silent_linux();
529#endif
530 arch_preboot_os();
531 boot_fn(state, argc, argv, images);
Simon Glassd0ae31e2013-06-11 11:14:48 -0700532 if (state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
533 return 0;
Simon Glass35fc84f2013-06-11 11:14:47 -0700534 bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
535#ifdef DEBUG
536 puts("\n## Control returned to monitor - resetting...\n");
537#endif
538 return BOOTM_ERR_RESET;
539}
540
541/**
Simon Glass385501d2013-07-04 13:26:08 -0700542 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
543 *
544 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
545 * enabled)
546 */
547static ulong bootm_disable_interrupts(void)
548{
549 ulong iflag;
550
551 /*
552 * We have reached the point of no return: we are going to
553 * overwrite all exception vector code, so we cannot easily
554 * recover from any failures any more...
555 */
556 iflag = disable_interrupts();
557#ifdef CONFIG_NETCONSOLE
558 /* Stop the ethernet stack if NetConsole could have left it up */
559 eth_halt();
560#endif
561
562#if defined(CONFIG_CMD_USB)
563 /*
564 * turn off USB to prevent the host controller from writing to the
565 * SDRAM while Linux is booting. This could happen (at least for OHCI
566 * controller), because the HCCA (Host Controller Communication Area)
567 * lies within the SDRAM and the host controller writes continously to
568 * this area (as busmaster!). The HccaFrameNumber is for example
569 * updated every 1 ms within the HCCA structure in SDRAM! For more
570 * details see the OpenHCI specification.
571 */
572 usb_stop();
573#endif
574 return iflag;
575}
576
577/**
Simon Glass35fc84f2013-06-11 11:14:47 -0700578 * Execute selected states of the bootm command.
579 *
580 * Note the arguments to this state must be the first argument, Any 'bootm'
581 * or sub-command arguments must have already been taken.
582 *
583 * Note that if states contains more than one flag it MUST contain
584 * BOOTM_STATE_START, since this handles and consumes the command line args.
585 *
Tom Rinid3664382013-06-28 11:38:02 -0400586 * Also note that aside from boot_os_fn functions and bootm_load_os no other
587 * functions we store the return value of in 'ret' may use a negative return
588 * value, without special handling.
589 *
Simon Glass35fc84f2013-06-11 11:14:47 -0700590 * @param cmdtp Pointer to bootm command table entry
591 * @param flag Command flags (CMD_FLAG_...)
592 * @param argc Number of subcommand arguments (0 = no arguments)
593 * @param argv Arguments
594 * @param states Mask containing states to run (BOOTM_STATE_...)
595 * @param images Image header information
596 * @param boot_progress 1 to show boot progress, 0 to not do this
597 * @return 0 if ok, something else on error. Some errors will cause this
598 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
599 * then the intent is to boot an OS, so this function will not return
600 * unless the image type is standalone.
601 */
602static int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc,
603 char * const argv[], int states, bootm_headers_t *images,
604 int boot_progress)
605{
606 boot_os_fn *boot_fn;
607 ulong iflag = 0;
608 int ret = 0;
609
610 images->state |= states;
611
612 /*
613 * Work through the states and see how far we get. We stop on
614 * any error.
615 */
616 if (states & BOOTM_STATE_START)
617 ret = bootm_start(cmdtp, flag, argc, argv);
618
619 if (!ret && (states & BOOTM_STATE_FINDOS))
620 ret = bootm_find_os(cmdtp, flag, argc, argv);
621
622 if (!ret && (states & BOOTM_STATE_FINDOTHER)) {
623 ret = bootm_find_other(cmdtp, flag, argc, argv);
624 argc = 0; /* consume the args */
625 }
626
627 /* Load the OS */
628 if (!ret && (states & BOOTM_STATE_LOADOS)) {
629 ulong load_end;
630
Simon Glass385501d2013-07-04 13:26:08 -0700631 iflag = bootm_disable_interrupts();
Tom Rinid3664382013-06-28 11:38:02 -0400632 ret = bootm_load_os(images, &load_end, 0);
633 if (ret && ret != BOOTM_ERR_OVERLAP)
634 goto err;
635
636 if (ret == 0)
Simon Glass35fc84f2013-06-11 11:14:47 -0700637 lmb_reserve(&images->lmb, images->os.load,
638 (load_end - images->os.load));
Tom Rinid3664382013-06-28 11:38:02 -0400639 else if (ret == BOOTM_ERR_OVERLAP)
640 ret = 0;
Simon Glass35fc84f2013-06-11 11:14:47 -0700641 }
642
643 /* Relocate the ramdisk */
644#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
645 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
646 ulong rd_len = images->rd_end - images->rd_start;
647
648 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
649 rd_len, &images->initrd_start, &images->initrd_end);
650 if (!ret) {
651 setenv_hex("initrd_start", images->initrd_start);
652 setenv_hex("initrd_end", images->initrd_end);
653 }
654 }
655#endif
656#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
657 if (!ret && (states & BOOTM_STATE_FDT)) {
658 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
659 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
660 &images->ft_len);
661 }
662#endif
663
664 /* From now on, we need the OS boot function */
665 if (ret)
666 return ret;
667 boot_fn = boot_os[images->os.os];
668 if (boot_fn == NULL) {
669 if (iflag)
670 enable_interrupts();
671 printf("ERROR: booting os '%s' (%d) is not supported\n",
672 genimg_get_os_name(images->os.os), images->os.os);
673 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
674 return 1;
675 }
676
677 /* Call various other states that are not generally used */
678 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
679 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
680 if (!ret && (states & BOOTM_STATE_OS_BD_T))
681 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
682 if (!ret && (states & BOOTM_STATE_OS_PREP))
683 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
684
Tom Rinic479c132013-07-01 09:09:23 -0400685 /* Check for unsupported subcommand. */
686 if (ret) {
687 puts("subcommand not supported\n");
688 return ret;
689 }
690
691
Simon Glassd0ae31e2013-06-11 11:14:48 -0700692#ifdef CONFIG_TRACE
693 /* Pretend to run the OS, then run a user command */
694 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
695 char *cmd_list = getenv("fakegocmd");
696
697 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
Simon Glass5ff0d082013-06-28 00:46:12 -0700698 images, boot_fn);
Simon Glassd0ae31e2013-06-11 11:14:48 -0700699 if (!ret && cmd_list)
700 ret = run_command_list(cmd_list, -1, flag);
701 }
702#endif
Simon Glass35fc84f2013-06-11 11:14:47 -0700703 /* Now run the OS! We hope this doesn't return */
Tom Rinid3664382013-06-28 11:38:02 -0400704 if (!ret && (states & BOOTM_STATE_OS_GO)) {
Simon Glass35fc84f2013-06-11 11:14:47 -0700705 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
Simon Glass5ff0d082013-06-28 00:46:12 -0700706 images, boot_fn);
Tom Rinid3664382013-06-28 11:38:02 -0400707 if (ret)
708 goto err;
709 }
710
711 return ret;
Simon Glass35fc84f2013-06-11 11:14:47 -0700712
713 /* Deal with any fallout */
Tom Rinid3664382013-06-28 11:38:02 -0400714err:
Simon Glass35fc84f2013-06-11 11:14:47 -0700715 if (iflag)
716 enable_interrupts();
Tom Rinid3664382013-06-28 11:38:02 -0400717
718 if (ret == BOOTM_ERR_UNIMPLEMENTED)
719 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
720 else if (ret == BOOTM_ERR_RESET)
721 do_reset(cmdtp, flag, argc, argv);
Simon Glass35fc84f2013-06-11 11:14:47 -0700722
723 return ret;
724}
725
Kim Phillips088f1b12012-10-29 13:34:31 +0000726static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000727 char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500728{
729 int ret = 0;
Simon Glass6d6f1232011-10-07 13:53:40 +0000730 long state;
Kumar Gala49c3a862008-10-21 17:25:45 -0500731 cmd_tbl_t *c;
Kumar Gala49c3a862008-10-21 17:25:45 -0500732
Simon Glass983c72f2013-06-11 11:14:46 -0700733 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
734 argc--; argv++;
Kumar Gala49c3a862008-10-21 17:25:45 -0500735
736 if (c) {
Simon Glass6d6f1232011-10-07 13:53:40 +0000737 state = (long)c->cmd;
Simon Glass983c72f2013-06-11 11:14:46 -0700738 if (state == BOOTM_STATE_START)
Simon Glass35fc84f2013-06-11 11:14:47 -0700739 state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200740 } else {
741 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000742 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -0500743 }
744
Simon Glass35fc84f2013-06-11 11:14:47 -0700745 if (state != BOOTM_STATE_START && images.state >= state) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000746 printf("Trying to execute a command out of order\n");
Simon Glass4c12eeb2011-12-10 08:44:01 +0000747 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -0500748 }
749
Simon Glass35fc84f2013-06-11 11:14:47 -0700750 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
Kumar Gala49c3a862008-10-21 17:25:45 -0500751
752 return ret;
753}
754
Kumar Gala396f6352008-08-15 08:24:41 -0500755/*******************************************************************/
756/* bootm - boot application image from image in memory */
757/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500758
Stephen Warren712fbcf2011-10-18 11:11:49 +0000759int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500760{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200761#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500762 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500763
Kumar Galabe083152008-10-21 17:25:44 -0500764 if (!relocated) {
765 int i;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000766
767 /* relocate boot function table */
Kumar Galabe083152008-10-21 17:25:44 -0500768 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200769 if (boot_os[i] != NULL)
770 boot_os[i] += gd->reloc_off;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000771
772 /* relocate names of sub-command table */
773 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
774 cmd_bootm_sub[i].name += gd->reloc_off;
775
Kumar Galabe083152008-10-21 17:25:44 -0500776 relocated = 1;
777 }
Peter Tyser521af042009-09-21 11:20:36 -0500778#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500779
Kumar Gala49c3a862008-10-21 17:25:45 -0500780 /* determine if we have a sub command */
Simon Glass983c72f2013-06-11 11:14:46 -0700781 argc--; argv++;
782 if (argc > 0) {
Kumar Gala49c3a862008-10-21 17:25:45 -0500783 char *endp;
784
Simon Glass983c72f2013-06-11 11:14:46 -0700785 simple_strtoul(argv[0], &endp, 16);
786 /* endp pointing to NULL means that argv[0] was just a
Kumar Gala49c3a862008-10-21 17:25:45 -0500787 * valid number, pass it along to the normal bootm processing
788 *
789 * If endp is ':' or '#' assume a FIT identifier so pass
790 * along for normal processing.
791 *
792 * Right now we assume the first arg should never be '-'
793 */
794 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
795 return do_bootm_subcommand(cmdtp, flag, argc, argv);
796 }
797
Simon Glass35fc84f2013-06-11 11:14:47 -0700798 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
799 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
800 BOOTM_STATE_LOADOS | BOOTM_STATE_OS_PREP |
Simon Glassd0ae31e2013-06-11 11:14:48 -0700801 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO, &images, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000802}
803
Mike Frysinger67d668b2011-06-05 13:43:02 +0000804int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
805{
806 const char *ep = getenv("autostart");
807
808 if (ep && !strcmp(ep, "yes")) {
809 char *local_args[2];
810 local_args[0] = (char *)cmd;
811 local_args[1] = NULL;
812 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
813 return do_bootm(cmdtp, 0, 1, local_args);
814 }
815
816 return 0;
817}
818
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100819/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100820 * image_get_kernel - verify legacy format kernel image
821 * @img_addr: in RAM address of the legacy format image to be verified
822 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100823 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100824 * image_get_kernel() verifies legacy image integrity and returns pointer to
825 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100826 *
827 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100828 * pointer to a legacy image header if valid image was found
829 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100830 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000831static image_header_t *image_get_kernel(ulong img_addr, int verify)
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100832{
833 image_header_t *hdr = (image_header_t *)img_addr;
834
835 if (!image_check_magic(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000836 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000837 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100838 return NULL;
839 }
Simon Glass770605e2012-02-13 13:51:18 +0000840 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100841
Stephen Warren712fbcf2011-10-18 11:11:49 +0000842 if (!image_check_hcrc(hdr)) {
843 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000844 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100845 return NULL;
846 }
847
Simon Glass770605e2012-02-13 13:51:18 +0000848 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000849 image_print_contents(hdr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100850
851 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000852 puts(" Verifying Checksum ... ");
853 if (!image_check_dcrc(hdr)) {
854 printf("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000855 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100856 return NULL;
857 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000858 puts("OK\n");
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100859 }
Simon Glass770605e2012-02-13 13:51:18 +0000860 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100861
Stephen Warren712fbcf2011-10-18 11:11:49 +0000862 if (!image_check_target_arch(hdr)) {
863 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
Simon Glass770605e2012-02-13 13:51:18 +0000864 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100865 return NULL;
866 }
867 return hdr;
868}
869
870/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100871 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100872 * @os_data: pointer to a ulong variable, will hold os data start address
873 * @os_len: pointer to a ulong variable, will hold os data length
874 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100875 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100876 * and locates kernel data.
877 *
878 * returns:
879 * pointer to image header if valid image was found, plus kernel start
880 * address and length, otherwise NULL
881 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000882static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000883 char * const argv[], bootm_headers_t *images, ulong *os_data,
884 ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100885{
886 image_header_t *hdr;
887 ulong img_addr;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000888 const void *buf;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100889#if defined(CONFIG_FIT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100890 const char *fit_uname_config = NULL;
891 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100892 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100893#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100894
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100895 /* find out kernel image address */
Simon Glass983c72f2013-06-11 11:14:46 -0700896 if (argc < 1) {
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100897 img_addr = load_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000898 debug("* kernel: default image load address = 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100899 load_addr);
900#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700901 } else if (fit_parse_conf(argv[0], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100902 &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000903 debug("* kernel: config '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100904 fit_uname_config, img_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700905 } else if (fit_parse_subimage(argv[0], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100906 &fit_uname_kernel)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000907 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100908 fit_uname_kernel, img_addr);
909#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100910 } else {
Simon Glass983c72f2013-06-11 11:14:46 -0700911 img_addr = simple_strtoul(argv[0], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000912 debug("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100913 }
914
Simon Glass770605e2012-02-13 13:51:18 +0000915 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100916
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100917 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000918 img_addr = genimg_get_image(img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100919
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100920 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100921 *os_data = *os_len = 0;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000922 buf = map_sysmem(img_addr, 0);
923 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100924 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000925 printf("## Booting kernel from Legacy Image at %08lx ...\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100926 img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000927 hdr = image_get_kernel(img_addr, images->verify);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100928 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100929 return NULL;
Simon Glass770605e2012-02-13 13:51:18 +0000930 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100931
Marian Balakowicz6986a382008-03-12 10:01:05 +0100932 /* get os_data and os_len */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000933 switch (image_get_type(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100934 case IH_TYPE_KERNEL:
Stephen Warrenb9b50e82011-11-10 13:17:53 -0700935 case IH_TYPE_KERNEL_NOLOAD:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000936 *os_data = image_get_data(hdr);
937 *os_len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100938 break;
939 case IH_TYPE_MULTI:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000940 image_multi_getimg(hdr, 0, os_data, os_len);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100941 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200942 case IH_TYPE_STANDALONE:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000943 *os_data = image_get_data(hdr);
944 *os_len = image_get_data_size(hdr);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200945 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100946 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000947 printf("Wrong Image Type for %s command\n",
948 cmdtp->name);
Simon Glass770605e2012-02-13 13:51:18 +0000949 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100950 return NULL;
951 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100952
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200953 /*
Stephen Warren712fbcf2011-10-18 11:11:49 +0000954 * copy image header to allow for image overwrites during
955 * kernel decompression.
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200956 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000957 memmove(&images->legacy_hdr_os_copy, hdr,
958 sizeof(image_header_t));
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200959
960 /* save pointer to image header */
961 images->legacy_hdr_os = hdr;
962
963 images->legacy_hdr_valid = 1;
Simon Glass770605e2012-02-13 13:51:18 +0000964 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100965 break;
966#if defined(CONFIG_FIT)
967 case IMAGE_FORMAT_FIT:
Simon Glass46518002013-05-16 13:53:25 +0000968 os_noffset = fit_image_load(images, FIT_KERNEL_PROP,
969 img_addr,
970 &fit_uname_kernel, fit_uname_config,
971 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
972 BOOTSTAGE_ID_FIT_KERNEL_START,
973 FIT_LOAD_IGNORED, os_data, os_len);
974 if (os_noffset < 0)
Marian Balakowicz6986a382008-03-12 10:01:05 +0100975 return NULL;
976
Simon Glass46518002013-05-16 13:53:25 +0000977 images->fit_hdr_os = map_sysmem(img_addr, 0);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100978 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100979 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100980 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100981#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100982 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000983 printf("Wrong Image Format for %s command\n", cmdtp->name);
Simon Glass770605e2012-02-13 13:51:18 +0000984 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100985 return NULL;
986 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100987
Stephen Warren712fbcf2011-10-18 11:11:49 +0000988 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100989 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100990
Simon Glass35e7b0f2013-05-07 06:12:03 +0000991 return buf;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100992}
993
Kim Phillips088f1b12012-10-29 13:34:31 +0000994#ifdef CONFIG_SYS_LONGHELP
995static char bootm_help_text[] =
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100996 "[addr [arg ...]]\n - boot application image stored in memory\n"
997 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
998 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100999#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001000 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +02001001 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001002 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1003 "\tuse a '-' for the second argument. If you do not pass a third\n"
1004 "\ta bd_info struct will be passed instead\n"
1005#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +01001006#if defined(CONFIG_FIT)
1007 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1008 "\tmust be extened to include component or configuration unit name:\n"
1009 "\taddr:<subimg_uname> - direct component image specification\n"
1010 "\taddr#<conf_uname> - configuration specification\n"
1011 "\tUse iminfo command to get the list of existing component\n"
1012 "\timages and configurations.\n"
1013#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001014 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1015 "must be\n"
1016 "issued in the order below (it's ok to not issue all sub-commands):\n"
1017 "\tstart [addr [arg ...]]\n"
1018 "\tloados - load OS image\n"
Daniel Schwierzeck59af76d2013-02-26 04:54:19 +00001019#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
Kumar Gala49c3a862008-10-21 17:25:45 -05001020 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1021#endif
1022#if defined(CONFIG_OF_LIBFDT)
1023 "\tfdt - relocate flat device tree\n"
1024#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001025 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001026 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001027 "\tprep - OS specific prep before relocation or go\n"
Kim Phillips088f1b12012-10-29 13:34:31 +00001028 "\tgo - start OS";
1029#endif
1030
1031U_BOOT_CMD(
1032 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
1033 "boot application image from memory", bootm_help_text
wdenk8bde7f72003-06-27 21:31:46 +00001034);
1035
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001036/*******************************************************************/
1037/* bootd - boot default image */
1038/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001039#if defined(CONFIG_CMD_BOOTD)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001040int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001041{
1042 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001043
Simon Glass53071532012-02-14 19:59:21 +00001044 if (run_command(getenv("bootcmd"), flag) < 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001045 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001046 return rcode;
1047}
wdenk8bde7f72003-06-27 21:31:46 +00001048
wdenk0d498392003-07-01 21:06:45 +00001049U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001050 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001051 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001052 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001053);
1054
1055/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001056U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001057 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001058 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001059 ""
wdenk8bde7f72003-06-27 21:31:46 +00001060);
1061
wdenk47d1a6e2002-11-03 00:01:44 +00001062#endif
1063
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001064
1065/*******************************************************************/
1066/* iminfo - print header info for a requested image */
1067/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001068#if defined(CONFIG_CMD_IMI)
Kim Phillips088f1b12012-10-29 13:34:31 +00001069static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001070{
1071 int arg;
1072 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001073 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001074
1075 if (argc < 2) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001076 return image_info(load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001077 }
1078
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001079 for (arg = 1; arg < argc; ++arg) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001080 addr = simple_strtoul(argv[arg], NULL, 16);
1081 if (image_info(addr) != 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001082 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001083 }
1084 return rcode;
1085}
1086
Stephen Warren712fbcf2011-10-18 11:11:49 +00001087static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +00001088{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001089 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001090
Stephen Warren712fbcf2011-10-18 11:11:49 +00001091 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001092
Stephen Warren712fbcf2011-10-18 11:11:49 +00001093 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001094 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001095 puts(" Legacy image found\n");
1096 if (!image_check_magic(hdr)) {
1097 puts(" Bad Magic Number\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001098 return 1;
1099 }
1100
Stephen Warren712fbcf2011-10-18 11:11:49 +00001101 if (!image_check_hcrc(hdr)) {
1102 puts(" Bad Header Checksum\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001103 return 1;
1104 }
1105
Stephen Warren712fbcf2011-10-18 11:11:49 +00001106 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001107
Stephen Warren712fbcf2011-10-18 11:11:49 +00001108 puts(" Verifying Checksum ... ");
1109 if (!image_check_dcrc(hdr)) {
1110 puts(" Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001111 return 1;
1112 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001113 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001114 return 0;
1115#if defined(CONFIG_FIT)
1116 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001117 puts(" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001118
Stephen Warren712fbcf2011-10-18 11:11:49 +00001119 if (!fit_check_format(hdr)) {
1120 puts("Bad FIT image format!\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001121 return 1;
1122 }
1123
Stephen Warren712fbcf2011-10-18 11:11:49 +00001124 fit_print_contents(hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001125
Simon Glassb8da8362013-05-07 06:11:57 +00001126 if (!fit_all_image_verify(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001127 puts("Bad hash in FIT image!\n");
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001128 return 1;
1129 }
1130
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001131 return 0;
1132#endif
1133 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001134 puts("Unknown image format!\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001135 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001136 }
1137
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001138 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001139}
wdenk0d498392003-07-01 21:06:45 +00001140
1141U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001142 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001143 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001144 "addr [addr ...]\n"
1145 " - print header information for application image starting at\n"
1146 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001147 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001148);
Jon Loeliger90253172007-07-10 11:02:44 -05001149#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001150
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001151
1152/*******************************************************************/
1153/* imls - list all images found in flash */
1154/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001155#if defined(CONFIG_CMD_IMLS)
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001156static int do_imls_nor(void)
wdenk27b207f2003-07-24 23:38:38 +00001157{
1158 flash_info_t *info;
1159 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001160 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001161
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001162 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001163 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001164
wdenk27b207f2003-07-24 23:38:38 +00001165 if (info->flash_id == FLASH_UNKNOWN)
1166 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001167 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001168
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001169 hdr = (void *)info->start[j];
1170 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001171 goto next_sector;
1172
Stephen Warren712fbcf2011-10-18 11:11:49 +00001173 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001174 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001175 if (!image_check_hcrc(hdr))
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001176 goto next_sector;
1177
Stephen Warren712fbcf2011-10-18 11:11:49 +00001178 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1179 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001180
Stephen Warren712fbcf2011-10-18 11:11:49 +00001181 puts(" Verifying Checksum ... ");
1182 if (!image_check_dcrc(hdr)) {
1183 puts("Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001184 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001185 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001186 }
1187 break;
1188#if defined(CONFIG_FIT)
1189 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001190 if (!fit_check_format(hdr))
Marian Balakowicze32fea62008-03-11 12:35:20 +01001191 goto next_sector;
1192
Stephen Warren712fbcf2011-10-18 11:11:49 +00001193 printf("FIT Image at %08lX:\n", (ulong)hdr);
1194 fit_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001195 break;
1196#endif
1197 default:
wdenk27b207f2003-07-24 23:38:38 +00001198 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001199 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001200
wdenkbdccc4f2003-08-05 17:43:17 +00001201next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001202 }
wdenkbdccc4f2003-08-05 17:43:17 +00001203next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001204 }
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001205 return 0;
1206}
1207#endif
1208
1209#if defined(CONFIG_CMD_IMLS_NAND)
1210static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
1211 size_t len)
1212{
1213 void *imgdata;
1214 int ret;
1215
1216 imgdata = malloc(len);
1217 if (!imgdata) {
1218 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
1219 nand_dev, off);
1220 printf(" Low memory(cannot allocate memory for image)\n");
1221 return -ENOMEM;
1222 }
1223
1224 ret = nand_read_skip_bad(nand, off, &len,
1225 imgdata);
1226 if (ret < 0 && ret != -EUCLEAN) {
1227 free(imgdata);
1228 return ret;
1229 }
1230
1231 if (!image_check_hcrc(imgdata)) {
1232 free(imgdata);
1233 return 0;
1234 }
1235
1236 printf("Legacy Image at NAND device %d offset %08llX:\n",
1237 nand_dev, off);
1238 image_print_contents(imgdata);
1239
1240 puts(" Verifying Checksum ... ");
1241 if (!image_check_dcrc(imgdata))
1242 puts("Bad Data CRC\n");
1243 else
1244 puts("OK\n");
1245
1246 free(imgdata);
1247
1248 return 0;
1249}
1250
1251static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
1252 size_t len)
1253{
1254 void *imgdata;
1255 int ret;
1256
1257 imgdata = malloc(len);
1258 if (!imgdata) {
1259 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
1260 nand_dev, off);
1261 printf(" Low memory(cannot allocate memory for image)\n");
1262 return -ENOMEM;
1263 }
1264
1265 ret = nand_read_skip_bad(nand, off, &len,
1266 imgdata);
1267 if (ret < 0 && ret != -EUCLEAN) {
1268 free(imgdata);
1269 return ret;
1270 }
1271
1272 if (!fit_check_format(imgdata)) {
1273 free(imgdata);
1274 return 0;
1275 }
1276
1277 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
1278
1279 fit_print_contents(imgdata);
1280 free(imgdata);
1281
1282 return 0;
1283}
1284
1285static int do_imls_nand(void)
1286{
1287 nand_info_t *nand;
1288 int nand_dev = nand_curr_device;
1289 size_t len;
1290 loff_t off;
1291 u32 buffer[16];
1292
1293 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
1294 puts("\nNo NAND devices available\n");
1295 return -ENODEV;
1296 }
1297
1298 printf("\n");
1299
1300 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
1301 nand = &nand_info[nand_dev];
1302 if (!nand->name || !nand->size)
1303 continue;
1304
1305 for (off = 0; off < nand->size; off += nand->erasesize) {
1306 const image_header_t *header;
1307 int ret;
1308
1309 if (nand_block_isbad(nand, off))
1310 continue;
1311
1312 len = sizeof(buffer);
1313
1314 ret = nand_read(nand, off, &len, (u8 *)buffer);
1315 if (ret < 0 && ret != -EUCLEAN) {
1316 printf("NAND read error %d at offset %08llX\n",
1317 ret, off);
1318 continue;
1319 }
1320
1321 switch (genimg_get_format(buffer)) {
1322 case IMAGE_FORMAT_LEGACY:
1323 header = (const image_header_t *)buffer;
1324
1325 len = image_get_image_size(header);
1326 nand_imls_legacyimage(nand, nand_dev, off, len);
1327 break;
1328#if defined(CONFIG_FIT)
1329 case IMAGE_FORMAT_FIT:
1330 len = fit_get_size(buffer);
1331 nand_imls_fitimage(nand, nand_dev, off, len);
1332 break;
1333#endif
1334 }
1335 }
1336 }
1337
1338 return 0;
1339}
1340#endif
1341
1342#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
1343static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1344{
1345 int ret_nor = 0, ret_nand = 0;
1346
1347#if defined(CONFIG_CMD_IMLS)
1348 ret_nor = do_imls_nor();
1349#endif
1350
1351#if defined(CONFIG_CMD_IMLS_NAND)
1352 ret_nand = do_imls_nand();
1353#endif
1354
1355 if (ret_nor)
1356 return ret_nor;
1357
1358 if (ret_nand)
1359 return ret_nand;
wdenk27b207f2003-07-24 23:38:38 +00001360
1361 return (0);
1362}
1363
1364U_BOOT_CMD(
1365 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001366 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001367 "\n"
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001368 " - Prints information about all images found at sector/block\n"
1369 " boundaries in nor/nand flash."
wdenk27b207f2003-07-24 23:38:38 +00001370);
Jon Loeliger90253172007-07-10 11:02:44 -05001371#endif
wdenk27b207f2003-07-24 23:38:38 +00001372
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001373/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001374/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001375/*******************************************************************/
Joe Hershbergerbe2e5a02013-02-27 10:20:59 +00001376#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
Doug Andersona558ad72012-01-17 09:37:41 +00001377
1378#define CONSOLE_ARG "console="
1379#define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
1380
Doug Anderson3a8653b2011-10-19 12:30:57 +00001381static void fixup_silent_linux(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001382{
Doug Andersona558ad72012-01-17 09:37:41 +00001383 char *buf;
1384 const char *env_val;
Doug Anderson3a8653b2011-10-19 12:30:57 +00001385 char *cmdline = getenv("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001386
1387 /* Only fix cmdline when requested */
1388 if (!(gd->flags & GD_FLG_SILENT))
1389 return;
1390
Doug Anderson3a8653b2011-10-19 12:30:57 +00001391 debug("before silent fix-up: %s\n", cmdline);
Doug Andersona558ad72012-01-17 09:37:41 +00001392 if (cmdline && (cmdline[0] != '\0')) {
1393 char *start = strstr(cmdline, CONSOLE_ARG);
1394
1395 /* Allocate space for maximum possible new command line */
1396 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
1397 if (!buf) {
1398 debug("%s: out of memory\n", __func__);
1399 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001400 }
Doug Andersona558ad72012-01-17 09:37:41 +00001401
1402 if (start) {
1403 char *end = strchr(start, ' ');
1404 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
1405
1406 strncpy(buf, cmdline, num_start_bytes);
1407 if (end)
1408 strcpy(buf + num_start_bytes, end);
1409 else
1410 buf[num_start_bytes] = '\0';
1411 } else {
1412 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
1413 }
1414 env_val = buf;
wdenk47d1a6e2002-11-03 00:01:44 +00001415 } else {
Doug Andersona558ad72012-01-17 09:37:41 +00001416 buf = NULL;
1417 env_val = CONSOLE_ARG;
wdenk47d1a6e2002-11-03 00:01:44 +00001418 }
1419
Doug Andersona558ad72012-01-17 09:37:41 +00001420 setenv("bootargs", env_val);
1421 debug("after silent fix-up: %s\n", env_val);
1422 free(buf);
wdenk47d1a6e2002-11-03 00:01:44 +00001423}
1424#endif /* CONFIG_SILENT_CONSOLE */
1425
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001426#if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
1427static void copy_args(char *dest, int argc, char * const argv[], char delim)
1428{
1429 int i;
1430
1431 for (i = 0; i < argc; i++) {
1432 if (i > 0)
1433 *dest++ = delim;
1434 strcpy(dest, argv[i]);
1435 dest += strlen(argv[i]);
1436 }
1437}
1438#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001439
1440/*******************************************************************/
1441/* OS booting routines */
1442/*******************************************************************/
1443
Kumar Galab1d0db12008-10-21 17:25:47 -05001444#ifdef CONFIG_BOOTM_NETBSD
Stephen Warren712fbcf2011-10-18 11:11:49 +00001445static int do_bootm_netbsd(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001446 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001447{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001448 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001449 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001450 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001451 char *consdev;
1452 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001453
Kumar Gala49c3a862008-10-21 17:25:45 -05001454 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1455 return 1;
1456
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001457#if defined(CONFIG_FIT)
1458 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001459 fit_unsupported_reset("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001460 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001461 }
1462#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001463 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001464
1465 /*
1466 * Booting a (NetBSD) kernel image
1467 *
1468 * This process is pretty similar to a standalone application:
1469 * The (first part of an multi-) image must be a stage-2 loader,
1470 * which in turn is responsible for loading & invoking the actual
1471 * kernel. The only differences are the parameters being passed:
1472 * besides the board info strucure, the loader expects a command
1473 * line, the name of the console device, and (optionally) the
1474 * address of the original image header.
1475 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001476 os_hdr = NULL;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001477 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1478 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001479 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001480 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001481 }
wdenk47d1a6e2002-11-03 00:01:44 +00001482
1483 consdev = "";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001484#if defined(CONFIG_8xx_CONS_SMC1)
wdenk47d1a6e2002-11-03 00:01:44 +00001485 consdev = "smc1";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001486#elif defined(CONFIG_8xx_CONS_SMC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001487 consdev = "smc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001488#elif defined(CONFIG_8xx_CONS_SCC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001489 consdev = "scc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001490#elif defined(CONFIG_8xx_CONS_SCC3)
wdenk47d1a6e2002-11-03 00:01:44 +00001491 consdev = "scc3";
1492#endif
1493
Simon Glass983c72f2013-06-11 11:14:46 -07001494 if (argc > 0) {
wdenk47d1a6e2002-11-03 00:01:44 +00001495 ulong len;
1496 int i;
1497
Simon Glass983c72f2013-06-11 11:14:46 -07001498 for (i = 0, len = 0; i < argc; i += 1)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001499 len += strlen(argv[i]) + 1;
1500 cmdline = malloc(len);
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001501 copy_args(cmdline, argc, argv, ' ');
Stephen Warren712fbcf2011-10-18 11:11:49 +00001502 } else if ((cmdline = getenv("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001503 cmdline = "";
1504 }
1505
Kumar Galac160a952008-08-15 08:24:36 -05001506 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001507
Stephen Warren712fbcf2011-10-18 11:11:49 +00001508 printf("## Transferring control to NetBSD stage-2 loader "
1509 "(at address %08lx) ...\n",
wdenk47d1a6e2002-11-03 00:01:44 +00001510 (ulong)loader);
1511
Simon Glass770605e2012-02-13 13:51:18 +00001512 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenk47d1a6e2002-11-03 00:01:44 +00001513
1514 /*
1515 * NetBSD Stage-2 Loader Parameters:
1516 * r3: ptr to board info data
1517 * r4: image address
1518 * r5: console device
1519 * r6: boot args string
1520 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001521 (*loader)(gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001522
1523 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001524}
Kumar Galab1d0db12008-10-21 17:25:47 -05001525#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001526
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001527#ifdef CONFIG_LYNXKDI
Stephen Warren712fbcf2011-10-18 11:11:49 +00001528static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001529 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001530{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001531 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001532
Kumar Gala49c3a862008-10-21 17:25:45 -05001533 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1534 return 1;
1535
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001536#if defined(CONFIG_FIT)
1537 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001538 fit_unsupported_reset("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001539 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001540 }
1541#endif
1542
Stephen Warren712fbcf2011-10-18 11:11:49 +00001543 lynxkdi_boot((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001544
1545 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001546}
1547#endif /* CONFIG_LYNXKDI */
1548
Kumar Galab1d0db12008-10-21 17:25:47 -05001549#ifdef CONFIG_BOOTM_RTEMS
Stephen Warren712fbcf2011-10-18 11:11:49 +00001550static int do_bootm_rtems(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001551 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001552{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001553 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001554
Kumar Gala49c3a862008-10-21 17:25:45 -05001555 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1556 return 1;
1557
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001558#if defined(CONFIG_FIT)
1559 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001560 fit_unsupported_reset("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001561 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001562 }
1563#endif
1564
Kumar Galac160a952008-08-15 08:24:36 -05001565 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001566
Stephen Warren712fbcf2011-10-18 11:11:49 +00001567 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
wdenkd791b1d2003-04-20 14:04:18 +00001568 (ulong)entry_point);
1569
Simon Glass770605e2012-02-13 13:51:18 +00001570 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenkd791b1d2003-04-20 14:04:18 +00001571
1572 /*
1573 * RTEMS Parameters:
1574 * r3: ptr to board info data
1575 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001576 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001577
1578 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001579}
Kumar Galab1d0db12008-10-21 17:25:47 -05001580#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001581
Torkel Lundgren3df61952010-09-28 11:05:36 +02001582#if defined(CONFIG_BOOTM_OSE)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001583static int do_bootm_ose(int flag, int argc, char * const argv[],
Torkel Lundgren3df61952010-09-28 11:05:36 +02001584 bootm_headers_t *images)
1585{
1586 void (*entry_point)(void);
1587
1588 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1589 return 1;
1590
1591#if defined(CONFIG_FIT)
1592 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001593 fit_unsupported_reset("OSE");
Torkel Lundgren3df61952010-09-28 11:05:36 +02001594 return 1;
1595 }
1596#endif
1597
1598 entry_point = (void (*)(void))images->ep;
1599
Stephen Warren712fbcf2011-10-18 11:11:49 +00001600 printf("## Transferring control to OSE (at address %08lx) ...\n",
Torkel Lundgren3df61952010-09-28 11:05:36 +02001601 (ulong)entry_point);
1602
Simon Glass770605e2012-02-13 13:51:18 +00001603 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Torkel Lundgren3df61952010-09-28 11:05:36 +02001604
1605 /*
1606 * OSE Parameters:
1607 * None
1608 */
1609 (*entry_point)();
1610
1611 return 1;
1612}
1613#endif /* CONFIG_BOOTM_OSE */
1614
Steven Stallion04d41402013-03-20 06:31:35 +00001615#if defined(CONFIG_BOOTM_PLAN9)
1616static int do_bootm_plan9(int flag, int argc, char * const argv[],
1617 bootm_headers_t *images)
1618{
1619 void (*entry_point)(void);
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001620 char *s;
Steven Stallion04d41402013-03-20 06:31:35 +00001621
1622 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1623 return 1;
1624
1625#if defined(CONFIG_FIT)
1626 if (!images->legacy_hdr_valid) {
1627 fit_unsupported_reset("Plan 9");
1628 return 1;
1629 }
1630#endif
1631
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001632 /* See README.plan9 */
1633 s = getenv("confaddr");
1634 if (s != NULL) {
1635 char *confaddr = (char *)simple_strtoul(s, NULL, 16);
1636
1637 if (argc > 0) {
1638 copy_args(confaddr, argc, argv, '\n');
1639 } else {
1640 s = getenv("bootargs");
1641 if (s != NULL)
1642 strcpy(confaddr, s);
1643 }
1644 }
1645
Steven Stallion04d41402013-03-20 06:31:35 +00001646 entry_point = (void (*)(void))images->ep;
1647
1648 printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
1649 (ulong)entry_point);
1650
1651 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1652
1653 /*
1654 * Plan 9 Parameters:
1655 * None
1656 */
1657 (*entry_point)();
1658
1659 return 1;
1660}
1661#endif /* CONFIG_BOOTM_PLAN9 */
1662
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001663#if defined(CONFIG_CMD_ELF)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001664static int do_bootm_vxworks(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001665 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001666{
wdenk47d1a6e2002-11-03 00:01:44 +00001667 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001668
Kumar Gala49c3a862008-10-21 17:25:45 -05001669 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1670 return 1;
1671
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001672#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001673 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001674 fit_unsupported_reset("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001675 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001676 }
1677#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001678
Kumar Galac160a952008-08-15 08:24:36 -05001679 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001680 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001681 do_bootvx(NULL, 0, 0, NULL);
1682
1683 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001684}
1685
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001686static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001687 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001688{
wdenk47d1a6e2002-11-03 00:01:44 +00001689 char *local_args[2];
1690 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001691
Kumar Gala49c3a862008-10-21 17:25:45 -05001692 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1693 return 1;
1694
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001695#if defined(CONFIG_FIT)
1696 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001697 fit_unsupported_reset("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001698 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001699 }
1700#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001701
Kumar Galac160a952008-08-15 08:24:36 -05001702 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001703 local_args[0] = argv[0];
1704 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001705 do_bootelf(NULL, 0, 2, local_args);
1706
1707 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001708}
Jon Loeliger90253172007-07-10 11:02:44 -05001709#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001710
1711#ifdef CONFIG_INTEGRITY
Stephen Warren712fbcf2011-10-18 11:11:49 +00001712static int do_bootm_integrity(int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001713 bootm_headers_t *images)
1714{
1715 void (*entry_point)(void);
1716
Kumar Gala49c3a862008-10-21 17:25:45 -05001717 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1718 return 1;
1719
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001720#if defined(CONFIG_FIT)
1721 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001722 fit_unsupported_reset("INTEGRITY");
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001723 return 1;
1724 }
1725#endif
1726
1727 entry_point = (void (*)(void))images->ep;
1728
Stephen Warren712fbcf2011-10-18 11:11:49 +00001729 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001730 (ulong)entry_point);
1731
Simon Glass770605e2012-02-13 13:51:18 +00001732 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001733
1734 /*
1735 * INTEGRITY Parameters:
1736 * None
1737 */
1738 (*entry_point)();
1739
1740 return 1;
1741}
1742#endif
Marek Vasut44f074c2012-03-14 21:52:45 +00001743
1744#ifdef CONFIG_CMD_BOOTZ
1745
1746static int __bootz_setup(void *image, void **start, void **end)
1747{
1748 /* Please define bootz_setup() for your platform */
1749
1750 puts("Your platform's zImage format isn't supported yet!\n");
1751 return -1;
1752}
1753int bootz_setup(void *image, void **start, void **end)
1754 __attribute__((weak, alias("__bootz_setup")));
1755
1756/*
1757 * zImage booting support
1758 */
1759static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
1760 char * const argv[], bootm_headers_t *images)
1761{
1762 int ret;
1763 void *zi_start, *zi_end;
1764
Simon Glass35fc84f2013-06-11 11:14:47 -07001765 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
1766 images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +00001767
1768 /* Setup Linux kernel zImage entry point */
1769 if (argc < 2) {
1770 images->ep = load_addr;
1771 debug("* kernel: default image load address = 0x%08lx\n",
1772 load_addr);
1773 } else {
1774 images->ep = simple_strtoul(argv[1], NULL, 16);
1775 debug("* kernel: cmdline image address = 0x%08lx\n",
1776 images->ep);
1777 }
1778
1779 ret = bootz_setup((void *)images->ep, &zi_start, &zi_end);
1780 if (ret != 0)
1781 return 1;
1782
1783 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
1784
Simon Glass35fc84f2013-06-11 11:14:47 -07001785 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_FINDOTHER,
1786 images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +00001787
Simon Glass35fc84f2013-06-11 11:14:47 -07001788 return ret;
Marek Vasut44f074c2012-03-14 21:52:45 +00001789}
1790
Rob Herringda620222012-12-02 21:00:23 -06001791int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Marek Vasut44f074c2012-03-14 21:52:45 +00001792{
Marek Vasut44f074c2012-03-14 21:52:45 +00001793 bootm_headers_t images;
Simon Glass35fc84f2013-06-11 11:14:47 -07001794 int ret;
Marek Vasut44f074c2012-03-14 21:52:45 +00001795
1796 if (bootz_start(cmdtp, flag, argc, argv, &images))
1797 return 1;
1798
Simon Glass385501d2013-07-04 13:26:08 -07001799 /*
1800 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
1801 * disable interrupts ourselves
1802 */
1803 bootm_disable_interrupts();
1804
Simon Glass35fc84f2013-06-11 11:14:47 -07001805 ret = do_bootm_states(cmdtp, flag, argc, argv,
Simon Glassd0ae31e2013-06-11 11:14:48 -07001806 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO,
1807 &images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +00001808
Simon Glass35fc84f2013-06-11 11:14:47 -07001809 return ret;
Marek Vasut44f074c2012-03-14 21:52:45 +00001810}
1811
Kim Phillips088f1b12012-10-29 13:34:31 +00001812#ifdef CONFIG_SYS_LONGHELP
1813static char bootz_help_text[] =
Marek Vasut017e1f32012-03-18 11:47:58 +00001814 "[addr [initrd[:size]] [fdt]]\n"
1815 " - boot Linux zImage stored in memory\n"
Marek Vasut44f074c2012-03-14 21:52:45 +00001816 "\tThe argument 'initrd' is optional and specifies the address\n"
Marek Vasut017e1f32012-03-18 11:47:58 +00001817 "\tof the initrd in memory. The optional argument ':size' allows\n"
1818 "\tspecifying the size of RAW initrd.\n"
Marek Vasut44f074c2012-03-14 21:52:45 +00001819#if defined(CONFIG_OF_LIBFDT)
1820 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1821 "\ta third argument is required which is the address of the\n"
1822 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1823 "\tuse a '-' for the second argument. If you do not pass a third\n"
1824 "\ta bd_info struct will be passed instead\n"
1825#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001826 "";
1827#endif
1828
1829U_BOOT_CMD(
1830 bootz, CONFIG_SYS_MAXARGS, 1, do_bootz,
1831 "boot Linux zImage image from memory", bootz_help_text
Marek Vasut44f074c2012-03-14 21:52:45 +00001832);
1833#endif /* CONFIG_CMD_BOOTZ */