blob: c0eabd259e876b05fa00f17930e0323b542fe1ba [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 Warrenb9b50e892011-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
Tom Rini225fd8c2013-07-09 15:33:25 -0400312static int bootm_find_ramdisk(int flag, int argc, char * const argv[])
Simon Glass35fc84f2013-06-11 11:14:47 -0700313{
314 int ret;
315
Tom Rini225fd8c2013-07-09 15:33:25 -0400316 /* find ramdisk */
317 ret = boot_get_ramdisk(argc, argv, &images, IH_INITRD_ARCH,
318 &images.rd_start, &images.rd_end);
319 if (ret) {
320 puts("Ramdisk image is corrupt or invalid\n");
321 return 1;
322 }
323
324 return 0;
325}
326
327#if defined(CONFIG_OF_LIBFDT)
328static int bootm_find_fdt(int flag, int argc, char * const argv[])
329{
330 int ret;
331
332 /* find flattened device tree */
333 ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,
334 &images.ft_addr, &images.ft_len);
335 if (ret) {
336 puts("Could not find a valid device tree\n");
337 return 1;
338 }
339
340 set_working_fdt_addr(images.ft_addr);
341
342 return 0;
343}
344#endif
345
346static int bootm_find_other(cmd_tbl_t *cmdtp, int flag, int argc,
347 char * const argv[])
348{
Heiko Schocher24de2f42010-03-29 13:15:48 +0200349 if (((images.os.type == IH_TYPE_KERNEL) ||
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700350 (images.os.type == IH_TYPE_KERNEL_NOLOAD) ||
Heiko Schocher24de2f42010-03-29 13:15:48 +0200351 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100352 (images.os.os == IH_OS_LINUX)) {
Tom Rini225fd8c2013-07-09 15:33:25 -0400353 if (bootm_find_ramdisk(flag, argc, argv))
Kumar Galac4f94192008-08-15 08:24:37 -0500354 return 1;
Kumar Gala06a09912008-08-15 08:24:38 -0500355
356#if defined(CONFIG_OF_LIBFDT)
Tom Rini225fd8c2013-07-09 15:33:25 -0400357 if (bootm_find_fdt(flag, argc, argv))
Kumar Gala06a09912008-08-15 08:24:38 -0500358 return 1;
Kumar Gala06a09912008-08-15 08:24:38 -0500359#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500360 }
361
Kumar Gala396f6352008-08-15 08:24:41 -0500362 return 0;
363}
364
365#define BOOTM_ERR_RESET -1
366#define BOOTM_ERR_OVERLAP -2
367#define BOOTM_ERR_UNIMPLEMENTED -3
Tom Rinid3664382013-06-28 11:38:02 -0400368static int bootm_load_os(bootm_headers_t *images, unsigned long *load_end,
369 int boot_progress)
Kumar Gala396f6352008-08-15 08:24:41 -0500370{
Tom Rinid3664382013-06-28 11:38:02 -0400371 image_info_t os = images->os;
Kumar Gala396f6352008-08-15 08:24:41 -0500372 uint8_t comp = os.comp;
373 ulong load = os.load;
374 ulong blob_start = os.start;
375 ulong blob_end = os.end;
376 ulong image_start = os.image_start;
377 ulong image_len = os.image_len;
Anatolij Gustschin5bf27662011-11-19 13:12:18 +0000378 __maybe_unused uint unc_len = CONFIG_SYS_BOOTM_LEN;
Stephen Warrend5108592011-11-10 13:17:54 -0700379 int no_overlap = 0;
Simon Glassaed161e2013-05-16 13:53:24 +0000380 void *load_buf, *image_buf;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200381#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
382 int ret;
383#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500384
Stephen Warren712fbcf2011-10-18 11:11:49 +0000385 const char *type_name = genimg_get_type_name(os.type);
Kumar Gala396f6352008-08-15 08:24:41 -0500386
Simon Glassaed161e2013-05-16 13:53:24 +0000387 load_buf = map_sysmem(load, image_len);
388 image_buf = map_sysmem(image_start, image_len);
Kumar Gala396f6352008-08-15 08:24:41 -0500389 switch (comp) {
390 case IH_COMP_NONE:
Lei Wen02cf3452011-01-10 18:21:15 +0800391 if (load == blob_start || load == image_start) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000392 printf(" XIP %s ... ", type_name);
Stephen Warrend5108592011-11-10 13:17:54 -0700393 no_overlap = 1;
Kumar Gala396f6352008-08-15 08:24:41 -0500394 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000395 printf(" Loading %s ... ", type_name);
Simon Glassaed161e2013-05-16 13:53:24 +0000396 memmove_wd(load_buf, image_buf, image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500397 }
398 *load_end = load + image_len;
Kumar Gala396f6352008-08-15 08:24:41 -0500399 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500400#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500401 case IH_COMP_GZIP:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000402 printf(" Uncompressing %s ... ", type_name);
Simon Glassaed161e2013-05-16 13:53:24 +0000403 if (gunzip(load_buf, unc_len, image_buf, &image_len) != 0) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000404 puts("GUNZIP: uncompress, out-of-mem or overwrite "
405 "error - must RESET board to recover\n");
Kumar Gala396f6352008-08-15 08:24:41 -0500406 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000407 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Kumar Gala396f6352008-08-15 08:24:41 -0500408 return BOOTM_ERR_RESET;
409 }
410
411 *load_end = load + image_len;
412 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500413#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500414#ifdef CONFIG_BZIP2
415 case IH_COMP_BZIP2:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000416 printf(" Uncompressing %s ... ", type_name);
Kumar Gala396f6352008-08-15 08:24:41 -0500417 /*
418 * If we've got less than 4 MB of malloc() space,
419 * use slower decompression algorithm which requires
420 * at most 2300 KB of memory.
421 */
Simon Glassaed161e2013-05-16 13:53:24 +0000422 int i = BZ2_bzBuffToBuffDecompress(load_buf, &unc_len,
423 image_buf, image_len,
424 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500425 if (i != BZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000426 printf("BUNZIP2: uncompress or overwrite error %d "
Kumar Gala396f6352008-08-15 08:24:41 -0500427 "- must RESET board to recover\n", i);
428 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000429 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Kumar Gala396f6352008-08-15 08:24:41 -0500430 return BOOTM_ERR_RESET;
431 }
432
433 *load_end = load + unc_len;
434 break;
435#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200436#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400437 case IH_COMP_LZMA: {
438 SizeT lzma_len = unc_len;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000439 printf(" Uncompressing %s ... ", type_name);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200440
Simon Glassaed161e2013-05-16 13:53:24 +0000441 ret = lzmaBuffToBuffDecompress(load_buf, &lzma_len,
442 image_buf, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400443 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200444 if (ret != SZ_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000445 printf("LZMA: uncompress or overwrite error %d "
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200446 "- must RESET board to recover\n", ret);
Simon Glass770605e2012-02-13 13:51:18 +0000447 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200448 return BOOTM_ERR_RESET;
449 }
450 *load_end = load + unc_len;
451 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400452 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200453#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100454#ifdef CONFIG_LZO
455 case IH_COMP_LZO:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000456 printf(" Uncompressing %s ... ", type_name);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100457
Simon Glassaed161e2013-05-16 13:53:24 +0000458 ret = lzop_decompress(image_buf, image_len, load_buf,
459 &unc_len);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100460 if (ret != LZO_E_OK) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000461 printf("LZO: uncompress or overwrite error %d "
Peter Korsgaard20dde482009-11-19 11:37:51 +0100462 "- must RESET board to recover\n", ret);
463 if (boot_progress)
Simon Glass770605e2012-02-13 13:51:18 +0000464 bootstage_error(BOOTSTAGE_ID_DECOMP_IMAGE);
Peter Korsgaard20dde482009-11-19 11:37:51 +0100465 return BOOTM_ERR_RESET;
466 }
467
468 *load_end = load + unc_len;
469 break;
470#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500471 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000472 printf("Unimplemented compression type %d\n", comp);
Kumar Gala396f6352008-08-15 08:24:41 -0500473 return BOOTM_ERR_UNIMPLEMENTED;
474 }
Diana CRACIUN99ffccb2011-08-31 02:45:23 +0000475
476 flush_cache(load, (*load_end - load) * sizeof(ulong));
477
Stephen Warren712fbcf2011-10-18 11:11:49 +0000478 puts("OK\n");
479 debug(" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Simon Glass770605e2012-02-13 13:51:18 +0000480 bootstage_mark(BOOTSTAGE_ID_KERNEL_LOADED);
Kumar Gala396f6352008-08-15 08:24:41 -0500481
Stephen Warrend5108592011-11-10 13:17:54 -0700482 if (!no_overlap && (load < blob_end) && (*load_end > blob_start)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000483 debug("images.os.start = 0x%lX, images.os.end = 0x%lx\n",
484 blob_start, blob_end);
485 debug("images.os.load = 0x%lx, load_end = 0x%lx\n", load,
486 *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500487
Tom Rinid3664382013-06-28 11:38:02 -0400488 /* Check what type of image this is. */
489 if (images->legacy_hdr_valid) {
490 if (image_get_type(&images->legacy_hdr_os_copy)
491 == IH_TYPE_MULTI)
492 puts("WARNING: legacy format multi component image overwritten\n");
493 return BOOTM_ERR_OVERLAP;
494 } else {
495 puts("ERROR: new format image overwritten - must RESET the board to recover\n");
496 bootstage_error(BOOTSTAGE_ID_OVERWRITTEN);
497 return BOOTM_ERR_RESET;
498 }
Kumar Gala396f6352008-08-15 08:24:41 -0500499 }
500
501 return 0;
502}
503
Simon Glass35fc84f2013-06-11 11:14:47 -0700504static int bootm_start_standalone(int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200505{
506 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200507 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200508
509 /* Don't start if "autostart" is set to "no" */
510 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
Simon Glass41ef3722013-02-24 17:33:22 +0000511 setenv_hex("filesize", images.os.image_len);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200512 return 0;
513 }
Simon Glass6d6f1232011-10-07 13:53:40 +0000514 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
Simon Glass983c72f2013-06-11 11:14:46 -0700515 (*appl)(argc, argv);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200516 return 0;
517}
518
Kumar Gala49c3a862008-10-21 17:25:45 -0500519/* we overload the cmd field with our state machine info instead of a
520 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100521static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500522 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
523 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600524#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500525 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
526#endif
527#ifdef CONFIG_OF_LIBFDT
528 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
529#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500530 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600531 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500532 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
Simon Glassd0ae31e2013-06-11 11:14:48 -0700533 U_BOOT_CMD_MKENT(fake, 0, 1, (void *)BOOTM_STATE_OS_FAKE_GO, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500534 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
535};
536
Simon Glass35fc84f2013-06-11 11:14:47 -0700537static int boot_selected_os(int argc, char * const argv[], int state,
Simon Glass5ff0d082013-06-28 00:46:12 -0700538 bootm_headers_t *images, boot_os_fn *boot_fn)
Simon Glass35fc84f2013-06-11 11:14:47 -0700539{
540 if (images->os.type == IH_TYPE_STANDALONE) {
541 /* This may return when 'autostart' is 'no' */
542 bootm_start_standalone(argc, argv);
543 return 0;
544 }
Simon Glass35fc84f2013-06-11 11:14:47 -0700545 arch_preboot_os();
546 boot_fn(state, argc, argv, images);
Simon Glassd0ae31e2013-06-11 11:14:48 -0700547 if (state == BOOTM_STATE_OS_FAKE_GO) /* We expect to return */
548 return 0;
Simon Glass35fc84f2013-06-11 11:14:47 -0700549 bootstage_error(BOOTSTAGE_ID_BOOT_OS_RETURNED);
550#ifdef DEBUG
551 puts("\n## Control returned to monitor - resetting...\n");
552#endif
553 return BOOTM_ERR_RESET;
554}
555
556/**
Simon Glass385501d2013-07-04 13:26:08 -0700557 * bootm_disable_interrupts() - Disable interrupts in preparation for load/boot
558 *
559 * @return interrupt flag (0 if interrupts were disabled, non-zero if they were
560 * enabled)
561 */
562static ulong bootm_disable_interrupts(void)
563{
564 ulong iflag;
565
566 /*
567 * We have reached the point of no return: we are going to
568 * overwrite all exception vector code, so we cannot easily
569 * recover from any failures any more...
570 */
571 iflag = disable_interrupts();
572#ifdef CONFIG_NETCONSOLE
573 /* Stop the ethernet stack if NetConsole could have left it up */
574 eth_halt();
575#endif
576
577#if defined(CONFIG_CMD_USB)
578 /*
579 * turn off USB to prevent the host controller from writing to the
580 * SDRAM while Linux is booting. This could happen (at least for OHCI
581 * controller), because the HCCA (Host Controller Communication Area)
582 * lies within the SDRAM and the host controller writes continously to
583 * this area (as busmaster!). The HccaFrameNumber is for example
584 * updated every 1 ms within the HCCA structure in SDRAM! For more
585 * details see the OpenHCI specification.
586 */
587 usb_stop();
588#endif
589 return iflag;
590}
591
592/**
Simon Glass35fc84f2013-06-11 11:14:47 -0700593 * Execute selected states of the bootm command.
594 *
595 * Note the arguments to this state must be the first argument, Any 'bootm'
596 * or sub-command arguments must have already been taken.
597 *
598 * Note that if states contains more than one flag it MUST contain
599 * BOOTM_STATE_START, since this handles and consumes the command line args.
600 *
Tom Rinid3664382013-06-28 11:38:02 -0400601 * Also note that aside from boot_os_fn functions and bootm_load_os no other
602 * functions we store the return value of in 'ret' may use a negative return
603 * value, without special handling.
604 *
Simon Glass35fc84f2013-06-11 11:14:47 -0700605 * @param cmdtp Pointer to bootm command table entry
606 * @param flag Command flags (CMD_FLAG_...)
607 * @param argc Number of subcommand arguments (0 = no arguments)
608 * @param argv Arguments
609 * @param states Mask containing states to run (BOOTM_STATE_...)
610 * @param images Image header information
611 * @param boot_progress 1 to show boot progress, 0 to not do this
612 * @return 0 if ok, something else on error. Some errors will cause this
613 * function to perform a reboot! If states contains BOOTM_STATE_OS_GO
614 * then the intent is to boot an OS, so this function will not return
615 * unless the image type is standalone.
616 */
617static int do_bootm_states(cmd_tbl_t *cmdtp, int flag, int argc,
618 char * const argv[], int states, bootm_headers_t *images,
619 int boot_progress)
620{
621 boot_os_fn *boot_fn;
622 ulong iflag = 0;
Simon Glassa26913f2013-07-04 13:26:09 -0700623 int ret = 0, need_boot_fn;
Simon Glass35fc84f2013-06-11 11:14:47 -0700624
625 images->state |= states;
626
627 /*
628 * Work through the states and see how far we get. We stop on
629 * any error.
630 */
631 if (states & BOOTM_STATE_START)
632 ret = bootm_start(cmdtp, flag, argc, argv);
633
634 if (!ret && (states & BOOTM_STATE_FINDOS))
635 ret = bootm_find_os(cmdtp, flag, argc, argv);
636
637 if (!ret && (states & BOOTM_STATE_FINDOTHER)) {
638 ret = bootm_find_other(cmdtp, flag, argc, argv);
639 argc = 0; /* consume the args */
640 }
641
642 /* Load the OS */
643 if (!ret && (states & BOOTM_STATE_LOADOS)) {
644 ulong load_end;
645
Simon Glass385501d2013-07-04 13:26:08 -0700646 iflag = bootm_disable_interrupts();
Tom Rinid3664382013-06-28 11:38:02 -0400647 ret = bootm_load_os(images, &load_end, 0);
Tom Rinid3664382013-06-28 11:38:02 -0400648 if (ret == 0)
Simon Glass35fc84f2013-06-11 11:14:47 -0700649 lmb_reserve(&images->lmb, images->os.load,
650 (load_end - images->os.load));
Tom Rini970150a2013-07-11 09:35:23 -0400651 else if (ret && ret != BOOTM_ERR_OVERLAP)
652 goto err;
Tom Rinid3664382013-06-28 11:38:02 -0400653 else if (ret == BOOTM_ERR_OVERLAP)
654 ret = 0;
Simon Glass576aacd2013-07-16 20:09:59 -0700655#ifdef CONFIG_SILENT_CONSOLE
656 if (images->os.os == IH_OS_LINUX)
657 fixup_silent_linux();
658#endif
Simon Glass35fc84f2013-06-11 11:14:47 -0700659 }
660
661 /* Relocate the ramdisk */
662#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
663 if (!ret && (states & BOOTM_STATE_RAMDISK)) {
664 ulong rd_len = images->rd_end - images->rd_start;
665
666 ret = boot_ramdisk_high(&images->lmb, images->rd_start,
667 rd_len, &images->initrd_start, &images->initrd_end);
668 if (!ret) {
669 setenv_hex("initrd_start", images->initrd_start);
670 setenv_hex("initrd_end", images->initrd_end);
671 }
672 }
673#endif
674#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_LMB)
675 if (!ret && (states & BOOTM_STATE_FDT)) {
676 boot_fdt_add_mem_rsv_regions(&images->lmb, images->ft_addr);
677 ret = boot_relocate_fdt(&images->lmb, &images->ft_addr,
678 &images->ft_len);
679 }
680#endif
681
682 /* From now on, we need the OS boot function */
683 if (ret)
684 return ret;
685 boot_fn = boot_os[images->os.os];
Simon Glassa26913f2013-07-04 13:26:09 -0700686 need_boot_fn = states & (BOOTM_STATE_OS_CMDLINE |
687 BOOTM_STATE_OS_BD_T | BOOTM_STATE_OS_PREP |
688 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO);
689 if (boot_fn == NULL && need_boot_fn) {
Simon Glass35fc84f2013-06-11 11:14:47 -0700690 if (iflag)
691 enable_interrupts();
692 printf("ERROR: booting os '%s' (%d) is not supported\n",
693 genimg_get_os_name(images->os.os), images->os.os);
694 bootstage_error(BOOTSTAGE_ID_CHECK_BOOT_OS);
695 return 1;
696 }
697
698 /* Call various other states that are not generally used */
699 if (!ret && (states & BOOTM_STATE_OS_CMDLINE))
700 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, images);
701 if (!ret && (states & BOOTM_STATE_OS_BD_T))
702 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, images);
703 if (!ret && (states & BOOTM_STATE_OS_PREP))
704 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, images);
705
Simon Glassd0ae31e2013-06-11 11:14:48 -0700706#ifdef CONFIG_TRACE
707 /* Pretend to run the OS, then run a user command */
708 if (!ret && (states & BOOTM_STATE_OS_FAKE_GO)) {
709 char *cmd_list = getenv("fakegocmd");
710
711 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_FAKE_GO,
Simon Glass5ff0d082013-06-28 00:46:12 -0700712 images, boot_fn);
Simon Glassd0ae31e2013-06-11 11:14:48 -0700713 if (!ret && cmd_list)
714 ret = run_command_list(cmd_list, -1, flag);
715 }
716#endif
Simon Glassb7a1d132013-07-10 09:25:33 -0400717
718 /* Check for unsupported subcommand. */
719 if (ret) {
720 puts("subcommand not supported\n");
721 return ret;
Tom Rinid3664382013-06-28 11:38:02 -0400722 }
723
Simon Glassb7a1d132013-07-10 09:25:33 -0400724 /* Now run the OS! We hope this doesn't return */
725 if (!ret && (states & BOOTM_STATE_OS_GO))
726 ret = boot_selected_os(argc, argv, BOOTM_STATE_OS_GO,
727 images, boot_fn);
Simon Glass35fc84f2013-06-11 11:14:47 -0700728
729 /* Deal with any fallout */
Tom Rinid3664382013-06-28 11:38:02 -0400730err:
Simon Glass35fc84f2013-06-11 11:14:47 -0700731 if (iflag)
732 enable_interrupts();
Tom Rinid3664382013-06-28 11:38:02 -0400733
734 if (ret == BOOTM_ERR_UNIMPLEMENTED)
735 bootstage_error(BOOTSTAGE_ID_DECOMP_UNIMPL);
736 else if (ret == BOOTM_ERR_RESET)
737 do_reset(cmdtp, flag, argc, argv);
Simon Glass35fc84f2013-06-11 11:14:47 -0700738
739 return ret;
740}
741
Kim Phillips088f1b12012-10-29 13:34:31 +0000742static int do_bootm_subcommand(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000743 char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500744{
745 int ret = 0;
Simon Glass6d6f1232011-10-07 13:53:40 +0000746 long state;
Kumar Gala49c3a862008-10-21 17:25:45 -0500747 cmd_tbl_t *c;
Kumar Gala49c3a862008-10-21 17:25:45 -0500748
Simon Glass983c72f2013-06-11 11:14:46 -0700749 c = find_cmd_tbl(argv[0], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
750 argc--; argv++;
Kumar Gala49c3a862008-10-21 17:25:45 -0500751
752 if (c) {
Simon Glass6d6f1232011-10-07 13:53:40 +0000753 state = (long)c->cmd;
Simon Glass983c72f2013-06-11 11:14:46 -0700754 if (state == BOOTM_STATE_START)
Simon Glass35fc84f2013-06-11 11:14:47 -0700755 state |= BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER;
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200756 } else {
757 /* Unrecognized command */
Simon Glass4c12eeb2011-12-10 08:44:01 +0000758 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -0500759 }
760
Simon Glass35fc84f2013-06-11 11:14:47 -0700761 if (state != BOOTM_STATE_START && images.state >= state) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000762 printf("Trying to execute a command out of order\n");
Simon Glass4c12eeb2011-12-10 08:44:01 +0000763 return CMD_RET_USAGE;
Kumar Gala49c3a862008-10-21 17:25:45 -0500764 }
765
Simon Glass35fc84f2013-06-11 11:14:47 -0700766 ret = do_bootm_states(cmdtp, flag, argc, argv, state, &images, 0);
Kumar Gala49c3a862008-10-21 17:25:45 -0500767
768 return ret;
769}
770
Kumar Gala396f6352008-08-15 08:24:41 -0500771/*******************************************************************/
772/* bootm - boot application image from image in memory */
773/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500774
Stephen Warren712fbcf2011-10-18 11:11:49 +0000775int do_bootm(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500776{
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200777#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500778 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500779
Kumar Galabe083152008-10-21 17:25:44 -0500780 if (!relocated) {
781 int i;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000782
783 /* relocate boot function table */
Kumar Galabe083152008-10-21 17:25:44 -0500784 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200785 if (boot_os[i] != NULL)
786 boot_os[i] += gd->reloc_off;
Daniel Schwierzeck58bd77d2013-01-07 06:54:52 +0000787
788 /* relocate names of sub-command table */
789 for (i = 0; i < ARRAY_SIZE(cmd_bootm_sub); i++)
790 cmd_bootm_sub[i].name += gd->reloc_off;
791
Kumar Galabe083152008-10-21 17:25:44 -0500792 relocated = 1;
793 }
Peter Tyser521af042009-09-21 11:20:36 -0500794#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500795
Kumar Gala49c3a862008-10-21 17:25:45 -0500796 /* determine if we have a sub command */
Simon Glass983c72f2013-06-11 11:14:46 -0700797 argc--; argv++;
798 if (argc > 0) {
Kumar Gala49c3a862008-10-21 17:25:45 -0500799 char *endp;
800
Simon Glass983c72f2013-06-11 11:14:46 -0700801 simple_strtoul(argv[0], &endp, 16);
802 /* endp pointing to NULL means that argv[0] was just a
Kumar Gala49c3a862008-10-21 17:25:45 -0500803 * valid number, pass it along to the normal bootm processing
804 *
805 * If endp is ':' or '#' assume a FIT identifier so pass
806 * along for normal processing.
807 *
808 * Right now we assume the first arg should never be '-'
809 */
810 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
811 return do_bootm_subcommand(cmdtp, flag, argc, argv);
812 }
813
Simon Glass35fc84f2013-06-11 11:14:47 -0700814 return do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START |
815 BOOTM_STATE_FINDOS | BOOTM_STATE_FINDOTHER |
816 BOOTM_STATE_LOADOS | BOOTM_STATE_OS_PREP |
Simon Glassd0ae31e2013-06-11 11:14:48 -0700817 BOOTM_STATE_OS_FAKE_GO | BOOTM_STATE_OS_GO, &images, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000818}
819
Mike Frysinger67d668b2011-06-05 13:43:02 +0000820int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
821{
822 const char *ep = getenv("autostart");
823
824 if (ep && !strcmp(ep, "yes")) {
825 char *local_args[2];
826 local_args[0] = (char *)cmd;
827 local_args[1] = NULL;
828 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
829 return do_bootm(cmdtp, 0, 1, local_args);
830 }
831
832 return 0;
833}
834
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100835/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100836 * image_get_kernel - verify legacy format kernel image
837 * @img_addr: in RAM address of the legacy format image to be verified
838 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100839 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100840 * image_get_kernel() verifies legacy image integrity and returns pointer to
841 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100842 *
843 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100844 * pointer to a legacy image header if valid image was found
845 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100846 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000847static image_header_t *image_get_kernel(ulong img_addr, int verify)
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100848{
849 image_header_t *hdr = (image_header_t *)img_addr;
850
851 if (!image_check_magic(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000852 puts("Bad Magic Number\n");
Simon Glass770605e2012-02-13 13:51:18 +0000853 bootstage_error(BOOTSTAGE_ID_CHECK_MAGIC);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100854 return NULL;
855 }
Simon Glass770605e2012-02-13 13:51:18 +0000856 bootstage_mark(BOOTSTAGE_ID_CHECK_HEADER);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100857
Stephen Warren712fbcf2011-10-18 11:11:49 +0000858 if (!image_check_hcrc(hdr)) {
859 puts("Bad Header Checksum\n");
Simon Glass770605e2012-02-13 13:51:18 +0000860 bootstage_error(BOOTSTAGE_ID_CHECK_HEADER);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100861 return NULL;
862 }
863
Simon Glass770605e2012-02-13 13:51:18 +0000864 bootstage_mark(BOOTSTAGE_ID_CHECK_CHECKSUM);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000865 image_print_contents(hdr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100866
867 if (verify) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000868 puts(" Verifying Checksum ... ");
869 if (!image_check_dcrc(hdr)) {
870 printf("Bad Data CRC\n");
Simon Glass770605e2012-02-13 13:51:18 +0000871 bootstage_error(BOOTSTAGE_ID_CHECK_CHECKSUM);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100872 return NULL;
873 }
Stephen Warren712fbcf2011-10-18 11:11:49 +0000874 puts("OK\n");
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100875 }
Simon Glass770605e2012-02-13 13:51:18 +0000876 bootstage_mark(BOOTSTAGE_ID_CHECK_ARCH);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100877
Stephen Warren712fbcf2011-10-18 11:11:49 +0000878 if (!image_check_target_arch(hdr)) {
879 printf("Unsupported Architecture 0x%x\n", image_get_arch(hdr));
Simon Glass770605e2012-02-13 13:51:18 +0000880 bootstage_error(BOOTSTAGE_ID_CHECK_ARCH);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100881 return NULL;
882 }
883 return hdr;
884}
885
886/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100887 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100888 * @os_data: pointer to a ulong variable, will hold os data start address
889 * @os_len: pointer to a ulong variable, will hold os data length
890 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100891 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100892 * and locates kernel data.
893 *
894 * returns:
895 * pointer to image header if valid image was found, plus kernel start
896 * address and length, otherwise NULL
897 */
Simon Glass35e7b0f2013-05-07 06:12:03 +0000898static const void *boot_get_kernel(cmd_tbl_t *cmdtp, int flag, int argc,
Stephen Warren712fbcf2011-10-18 11:11:49 +0000899 char * const argv[], bootm_headers_t *images, ulong *os_data,
900 ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100901{
902 image_header_t *hdr;
903 ulong img_addr;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000904 const void *buf;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100905#if defined(CONFIG_FIT)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100906 const char *fit_uname_config = NULL;
907 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100908 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100909#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100910
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100911 /* find out kernel image address */
Simon Glass983c72f2013-06-11 11:14:46 -0700912 if (argc < 1) {
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100913 img_addr = load_addr;
Stephen Warren712fbcf2011-10-18 11:11:49 +0000914 debug("* kernel: default image load address = 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100915 load_addr);
916#if defined(CONFIG_FIT)
Simon Glass983c72f2013-06-11 11:14:46 -0700917 } else if (fit_parse_conf(argv[0], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100918 &fit_uname_config)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000919 debug("* kernel: config '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100920 fit_uname_config, img_addr);
Simon Glass983c72f2013-06-11 11:14:46 -0700921 } else if (fit_parse_subimage(argv[0], load_addr, &img_addr,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100922 &fit_uname_kernel)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +0000923 debug("* kernel: subimage '%s' from image at 0x%08lx\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100924 fit_uname_kernel, img_addr);
925#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100926 } else {
Simon Glass983c72f2013-06-11 11:14:46 -0700927 img_addr = simple_strtoul(argv[0], NULL, 16);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000928 debug("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100929 }
930
Simon Glass770605e2012-02-13 13:51:18 +0000931 bootstage_mark(BOOTSTAGE_ID_CHECK_MAGIC);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100932
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100933 /* copy from dataflash if needed */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000934 img_addr = genimg_get_image(img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100935
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100936 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100937 *os_data = *os_len = 0;
Simon Glass35e7b0f2013-05-07 06:12:03 +0000938 buf = map_sysmem(img_addr, 0);
939 switch (genimg_get_format(buf)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100940 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000941 printf("## Booting kernel from Legacy Image at %08lx ...\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100942 img_addr);
Stephen Warren712fbcf2011-10-18 11:11:49 +0000943 hdr = image_get_kernel(img_addr, images->verify);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100944 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100945 return NULL;
Simon Glass770605e2012-02-13 13:51:18 +0000946 bootstage_mark(BOOTSTAGE_ID_CHECK_IMAGETYPE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100947
Marian Balakowicz6986a382008-03-12 10:01:05 +0100948 /* get os_data and os_len */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000949 switch (image_get_type(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100950 case IH_TYPE_KERNEL:
Stephen Warrenb9b50e892011-11-10 13:17:53 -0700951 case IH_TYPE_KERNEL_NOLOAD:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000952 *os_data = image_get_data(hdr);
953 *os_len = image_get_data_size(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100954 break;
955 case IH_TYPE_MULTI:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000956 image_multi_getimg(hdr, 0, os_data, os_len);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100957 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200958 case IH_TYPE_STANDALONE:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000959 *os_data = image_get_data(hdr);
960 *os_len = image_get_data_size(hdr);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200961 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100962 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +0000963 printf("Wrong Image Type for %s command\n",
964 cmdtp->name);
Simon Glass770605e2012-02-13 13:51:18 +0000965 bootstage_error(BOOTSTAGE_ID_CHECK_IMAGETYPE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100966 return NULL;
967 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100968
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200969 /*
Stephen Warren712fbcf2011-10-18 11:11:49 +0000970 * copy image header to allow for image overwrites during
971 * kernel decompression.
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200972 */
Stephen Warren712fbcf2011-10-18 11:11:49 +0000973 memmove(&images->legacy_hdr_os_copy, hdr,
974 sizeof(image_header_t));
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200975
976 /* save pointer to image header */
977 images->legacy_hdr_os = hdr;
978
979 images->legacy_hdr_valid = 1;
Simon Glass770605e2012-02-13 13:51:18 +0000980 bootstage_mark(BOOTSTAGE_ID_DECOMP_IMAGE);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100981 break;
982#if defined(CONFIG_FIT)
983 case IMAGE_FORMAT_FIT:
Simon Glass46518002013-05-16 13:53:25 +0000984 os_noffset = fit_image_load(images, FIT_KERNEL_PROP,
985 img_addr,
Simon Glassf320a4d2013-07-10 23:08:10 -0700986 &fit_uname_kernel, &fit_uname_config,
Simon Glass46518002013-05-16 13:53:25 +0000987 IH_ARCH_DEFAULT, IH_TYPE_KERNEL,
988 BOOTSTAGE_ID_FIT_KERNEL_START,
989 FIT_LOAD_IGNORED, os_data, os_len);
990 if (os_noffset < 0)
Marian Balakowicz6986a382008-03-12 10:01:05 +0100991 return NULL;
992
Simon Glass46518002013-05-16 13:53:25 +0000993 images->fit_hdr_os = map_sysmem(img_addr, 0);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100994 images->fit_uname_os = fit_uname_kernel;
Simon Glassf320a4d2013-07-10 23:08:10 -0700995 images->fit_uname_cfg = fit_uname_config;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100996 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100997 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100998#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100999 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001000 printf("Wrong Image Format for %s command\n", cmdtp->name);
Simon Glass770605e2012-02-13 13:51:18 +00001001 bootstage_error(BOOTSTAGE_ID_FIT_KERNEL_INFO);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001002 return NULL;
1003 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001004
Stephen Warren712fbcf2011-10-18 11:11:49 +00001005 debug(" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +01001006 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001007
Simon Glass35e7b0f2013-05-07 06:12:03 +00001008 return buf;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001009}
1010
Kim Phillips088f1b12012-10-29 13:34:31 +00001011#ifdef CONFIG_SYS_LONGHELP
1012static char bootm_help_text[] =
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001013 "[addr [arg ...]]\n - boot application image stored in memory\n"
1014 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1015 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +01001016#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001017 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +02001018 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001019 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1020 "\tuse a '-' for the second argument. If you do not pass a third\n"
1021 "\ta bd_info struct will be passed instead\n"
1022#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +01001023#if defined(CONFIG_FIT)
1024 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1025 "\tmust be extened to include component or configuration unit name:\n"
1026 "\taddr:<subimg_uname> - direct component image specification\n"
1027 "\taddr#<conf_uname> - configuration specification\n"
1028 "\tUse iminfo command to get the list of existing component\n"
1029 "\timages and configurations.\n"
1030#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001031 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1032 "must be\n"
1033 "issued in the order below (it's ok to not issue all sub-commands):\n"
1034 "\tstart [addr [arg ...]]\n"
1035 "\tloados - load OS image\n"
Daniel Schwierzeck59af76d2013-02-26 04:54:19 +00001036#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH)
Kumar Gala49c3a862008-10-21 17:25:45 -05001037 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1038#endif
1039#if defined(CONFIG_OF_LIBFDT)
1040 "\tfdt - relocate flat device tree\n"
1041#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001042 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001043 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001044 "\tprep - OS specific prep before relocation or go\n"
Kim Phillips088f1b12012-10-29 13:34:31 +00001045 "\tgo - start OS";
1046#endif
1047
1048U_BOOT_CMD(
1049 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
1050 "boot application image from memory", bootm_help_text
wdenk8bde7f72003-06-27 21:31:46 +00001051);
1052
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001053/*******************************************************************/
1054/* bootd - boot default image */
1055/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001056#if defined(CONFIG_CMD_BOOTD)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001057int do_bootd(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001058{
1059 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001060
Simon Glass53071532012-02-14 19:59:21 +00001061 if (run_command(getenv("bootcmd"), flag) < 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001062 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001063 return rcode;
1064}
wdenk8bde7f72003-06-27 21:31:46 +00001065
wdenk0d498392003-07-01 21:06:45 +00001066U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001067 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001068 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001069 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001070);
1071
1072/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001073U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001074 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001075 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001076 ""
wdenk8bde7f72003-06-27 21:31:46 +00001077);
1078
wdenk47d1a6e2002-11-03 00:01:44 +00001079#endif
1080
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001081
1082/*******************************************************************/
1083/* iminfo - print header info for a requested image */
1084/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001085#if defined(CONFIG_CMD_IMI)
Kim Phillips088f1b12012-10-29 13:34:31 +00001086static int do_iminfo(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001087{
1088 int arg;
1089 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001090 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001091
1092 if (argc < 2) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001093 return image_info(load_addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001094 }
1095
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001096 for (arg = 1; arg < argc; ++arg) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001097 addr = simple_strtoul(argv[arg], NULL, 16);
1098 if (image_info(addr) != 0)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001099 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001100 }
1101 return rcode;
1102}
1103
Stephen Warren712fbcf2011-10-18 11:11:49 +00001104static int image_info(ulong addr)
wdenk47d1a6e2002-11-03 00:01:44 +00001105{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001106 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001107
Stephen Warren712fbcf2011-10-18 11:11:49 +00001108 printf("\n## Checking Image at %08lx ...\n", addr);
wdenk47d1a6e2002-11-03 00:01:44 +00001109
Stephen Warren712fbcf2011-10-18 11:11:49 +00001110 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001111 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001112 puts(" Legacy image found\n");
1113 if (!image_check_magic(hdr)) {
1114 puts(" Bad Magic Number\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001115 return 1;
1116 }
1117
Stephen Warren712fbcf2011-10-18 11:11:49 +00001118 if (!image_check_hcrc(hdr)) {
1119 puts(" Bad Header Checksum\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001120 return 1;
1121 }
1122
Stephen Warren712fbcf2011-10-18 11:11:49 +00001123 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001124
Stephen Warren712fbcf2011-10-18 11:11:49 +00001125 puts(" Verifying Checksum ... ");
1126 if (!image_check_dcrc(hdr)) {
1127 puts(" Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001128 return 1;
1129 }
Stephen Warren712fbcf2011-10-18 11:11:49 +00001130 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001131 return 0;
1132#if defined(CONFIG_FIT)
1133 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001134 puts(" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001135
Stephen Warren712fbcf2011-10-18 11:11:49 +00001136 if (!fit_check_format(hdr)) {
1137 puts("Bad FIT image format!\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001138 return 1;
1139 }
1140
Stephen Warren712fbcf2011-10-18 11:11:49 +00001141 fit_print_contents(hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001142
Simon Glassb8da8362013-05-07 06:11:57 +00001143 if (!fit_all_image_verify(hdr)) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001144 puts("Bad hash in FIT image!\n");
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001145 return 1;
1146 }
1147
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001148 return 0;
1149#endif
1150 default:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001151 puts("Unknown image format!\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001152 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001153 }
1154
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001155 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001156}
wdenk0d498392003-07-01 21:06:45 +00001157
1158U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001159 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001160 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001161 "addr [addr ...]\n"
1162 " - print header information for application image starting at\n"
1163 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001164 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001165);
Jon Loeliger90253172007-07-10 11:02:44 -05001166#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001167
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001168
1169/*******************************************************************/
1170/* imls - list all images found in flash */
1171/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001172#if defined(CONFIG_CMD_IMLS)
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001173static int do_imls_nor(void)
wdenk27b207f2003-07-24 23:38:38 +00001174{
1175 flash_info_t *info;
1176 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001177 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001178
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001179 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001180 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001181
wdenk27b207f2003-07-24 23:38:38 +00001182 if (info->flash_id == FLASH_UNKNOWN)
1183 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001184 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001185
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001186 hdr = (void *)info->start[j];
1187 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001188 goto next_sector;
1189
Stephen Warren712fbcf2011-10-18 11:11:49 +00001190 switch (genimg_get_format(hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001191 case IMAGE_FORMAT_LEGACY:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001192 if (!image_check_hcrc(hdr))
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001193 goto next_sector;
1194
Stephen Warren712fbcf2011-10-18 11:11:49 +00001195 printf("Legacy Image at %08lX:\n", (ulong)hdr);
1196 image_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001197
Stephen Warren712fbcf2011-10-18 11:11:49 +00001198 puts(" Verifying Checksum ... ");
1199 if (!image_check_dcrc(hdr)) {
1200 puts("Bad Data CRC\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001201 } else {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001202 puts("OK\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001203 }
1204 break;
1205#if defined(CONFIG_FIT)
1206 case IMAGE_FORMAT_FIT:
Stephen Warren712fbcf2011-10-18 11:11:49 +00001207 if (!fit_check_format(hdr))
Marian Balakowicze32fea62008-03-11 12:35:20 +01001208 goto next_sector;
1209
Stephen Warren712fbcf2011-10-18 11:11:49 +00001210 printf("FIT Image at %08lX:\n", (ulong)hdr);
1211 fit_print_contents(hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001212 break;
1213#endif
1214 default:
wdenk27b207f2003-07-24 23:38:38 +00001215 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001216 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001217
wdenkbdccc4f2003-08-05 17:43:17 +00001218next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001219 }
wdenkbdccc4f2003-08-05 17:43:17 +00001220next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001221 }
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001222 return 0;
1223}
1224#endif
1225
1226#if defined(CONFIG_CMD_IMLS_NAND)
1227static int nand_imls_legacyimage(nand_info_t *nand, int nand_dev, loff_t off,
1228 size_t len)
1229{
1230 void *imgdata;
1231 int ret;
1232
1233 imgdata = malloc(len);
1234 if (!imgdata) {
1235 printf("May be a Legacy Image at NAND device %d offset %08llX:\n",
1236 nand_dev, off);
1237 printf(" Low memory(cannot allocate memory for image)\n");
1238 return -ENOMEM;
1239 }
1240
1241 ret = nand_read_skip_bad(nand, off, &len,
1242 imgdata);
1243 if (ret < 0 && ret != -EUCLEAN) {
1244 free(imgdata);
1245 return ret;
1246 }
1247
1248 if (!image_check_hcrc(imgdata)) {
1249 free(imgdata);
1250 return 0;
1251 }
1252
1253 printf("Legacy Image at NAND device %d offset %08llX:\n",
1254 nand_dev, off);
1255 image_print_contents(imgdata);
1256
1257 puts(" Verifying Checksum ... ");
1258 if (!image_check_dcrc(imgdata))
1259 puts("Bad Data CRC\n");
1260 else
1261 puts("OK\n");
1262
1263 free(imgdata);
1264
1265 return 0;
1266}
1267
1268static int nand_imls_fitimage(nand_info_t *nand, int nand_dev, loff_t off,
1269 size_t len)
1270{
1271 void *imgdata;
1272 int ret;
1273
1274 imgdata = malloc(len);
1275 if (!imgdata) {
1276 printf("May be a FIT Image at NAND device %d offset %08llX:\n",
1277 nand_dev, off);
1278 printf(" Low memory(cannot allocate memory for image)\n");
1279 return -ENOMEM;
1280 }
1281
1282 ret = nand_read_skip_bad(nand, off, &len,
1283 imgdata);
1284 if (ret < 0 && ret != -EUCLEAN) {
1285 free(imgdata);
1286 return ret;
1287 }
1288
1289 if (!fit_check_format(imgdata)) {
1290 free(imgdata);
1291 return 0;
1292 }
1293
1294 printf("FIT Image at NAND device %d offset %08llX:\n", nand_dev, off);
1295
1296 fit_print_contents(imgdata);
1297 free(imgdata);
1298
1299 return 0;
1300}
1301
1302static int do_imls_nand(void)
1303{
1304 nand_info_t *nand;
1305 int nand_dev = nand_curr_device;
1306 size_t len;
1307 loff_t off;
1308 u32 buffer[16];
1309
1310 if (nand_dev < 0 || nand_dev >= CONFIG_SYS_MAX_NAND_DEVICE) {
1311 puts("\nNo NAND devices available\n");
1312 return -ENODEV;
1313 }
1314
1315 printf("\n");
1316
1317 for (nand_dev = 0; nand_dev < CONFIG_SYS_MAX_NAND_DEVICE; nand_dev++) {
1318 nand = &nand_info[nand_dev];
1319 if (!nand->name || !nand->size)
1320 continue;
1321
1322 for (off = 0; off < nand->size; off += nand->erasesize) {
1323 const image_header_t *header;
1324 int ret;
1325
1326 if (nand_block_isbad(nand, off))
1327 continue;
1328
1329 len = sizeof(buffer);
1330
1331 ret = nand_read(nand, off, &len, (u8 *)buffer);
1332 if (ret < 0 && ret != -EUCLEAN) {
1333 printf("NAND read error %d at offset %08llX\n",
1334 ret, off);
1335 continue;
1336 }
1337
1338 switch (genimg_get_format(buffer)) {
1339 case IMAGE_FORMAT_LEGACY:
1340 header = (const image_header_t *)buffer;
1341
1342 len = image_get_image_size(header);
1343 nand_imls_legacyimage(nand, nand_dev, off, len);
1344 break;
1345#if defined(CONFIG_FIT)
1346 case IMAGE_FORMAT_FIT:
1347 len = fit_get_size(buffer);
1348 nand_imls_fitimage(nand, nand_dev, off, len);
1349 break;
1350#endif
1351 }
1352 }
1353 }
1354
1355 return 0;
1356}
1357#endif
1358
1359#if defined(CONFIG_CMD_IMLS) || defined(CONFIG_CMD_IMLS_NAND)
1360static int do_imls(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
1361{
1362 int ret_nor = 0, ret_nand = 0;
1363
1364#if defined(CONFIG_CMD_IMLS)
1365 ret_nor = do_imls_nor();
1366#endif
1367
1368#if defined(CONFIG_CMD_IMLS_NAND)
1369 ret_nand = do_imls_nand();
1370#endif
1371
1372 if (ret_nor)
1373 return ret_nor;
1374
1375 if (ret_nand)
1376 return ret_nand;
wdenk27b207f2003-07-24 23:38:38 +00001377
1378 return (0);
1379}
1380
1381U_BOOT_CMD(
1382 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001383 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001384 "\n"
Vipin Kumar8fdf1e02012-12-16 22:32:48 +00001385 " - Prints information about all images found at sector/block\n"
1386 " boundaries in nor/nand flash."
wdenk27b207f2003-07-24 23:38:38 +00001387);
Jon Loeliger90253172007-07-10 11:02:44 -05001388#endif
wdenk27b207f2003-07-24 23:38:38 +00001389
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001390/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001391/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001392/*******************************************************************/
Joe Hershbergerbe2e5a02013-02-27 10:20:59 +00001393#if defined(CONFIG_SILENT_CONSOLE) && !defined(CONFIG_SILENT_U_BOOT_ONLY)
Doug Andersona558ad72012-01-17 09:37:41 +00001394
1395#define CONSOLE_ARG "console="
1396#define CONSOLE_ARG_LEN (sizeof(CONSOLE_ARG) - 1)
1397
Doug Anderson3a8653b2011-10-19 12:30:57 +00001398static void fixup_silent_linux(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001399{
Doug Andersona558ad72012-01-17 09:37:41 +00001400 char *buf;
1401 const char *env_val;
Doug Anderson3a8653b2011-10-19 12:30:57 +00001402 char *cmdline = getenv("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001403
1404 /* Only fix cmdline when requested */
1405 if (!(gd->flags & GD_FLG_SILENT))
1406 return;
1407
Doug Anderson3a8653b2011-10-19 12:30:57 +00001408 debug("before silent fix-up: %s\n", cmdline);
Doug Andersona558ad72012-01-17 09:37:41 +00001409 if (cmdline && (cmdline[0] != '\0')) {
1410 char *start = strstr(cmdline, CONSOLE_ARG);
1411
1412 /* Allocate space for maximum possible new command line */
1413 buf = malloc(strlen(cmdline) + 1 + CONSOLE_ARG_LEN + 1);
1414 if (!buf) {
1415 debug("%s: out of memory\n", __func__);
1416 return;
wdenk47d1a6e2002-11-03 00:01:44 +00001417 }
Doug Andersona558ad72012-01-17 09:37:41 +00001418
1419 if (start) {
1420 char *end = strchr(start, ' ');
1421 int num_start_bytes = start - cmdline + CONSOLE_ARG_LEN;
1422
1423 strncpy(buf, cmdline, num_start_bytes);
1424 if (end)
1425 strcpy(buf + num_start_bytes, end);
1426 else
1427 buf[num_start_bytes] = '\0';
1428 } else {
1429 sprintf(buf, "%s %s", cmdline, CONSOLE_ARG);
1430 }
1431 env_val = buf;
wdenk47d1a6e2002-11-03 00:01:44 +00001432 } else {
Doug Andersona558ad72012-01-17 09:37:41 +00001433 buf = NULL;
1434 env_val = CONSOLE_ARG;
wdenk47d1a6e2002-11-03 00:01:44 +00001435 }
1436
Doug Andersona558ad72012-01-17 09:37:41 +00001437 setenv("bootargs", env_val);
1438 debug("after silent fix-up: %s\n", env_val);
1439 free(buf);
wdenk47d1a6e2002-11-03 00:01:44 +00001440}
1441#endif /* CONFIG_SILENT_CONSOLE */
1442
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001443#if defined(CONFIG_BOOTM_NETBSD) || defined(CONFIG_BOOTM_PLAN9)
1444static void copy_args(char *dest, int argc, char * const argv[], char delim)
1445{
1446 int i;
1447
1448 for (i = 0; i < argc; i++) {
1449 if (i > 0)
1450 *dest++ = delim;
1451 strcpy(dest, argv[i]);
1452 dest += strlen(argv[i]);
1453 }
1454}
1455#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001456
1457/*******************************************************************/
1458/* OS booting routines */
1459/*******************************************************************/
1460
Kumar Galab1d0db12008-10-21 17:25:47 -05001461#ifdef CONFIG_BOOTM_NETBSD
Stephen Warren712fbcf2011-10-18 11:11:49 +00001462static int do_bootm_netbsd(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001463 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001464{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001465 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001466 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001467 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001468 char *consdev;
1469 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001470
Simon Glass7af26b12013-07-10 23:08:09 -07001471 if (flag & BOOTM_STATE_OS_PREP)
1472 return 0;
Kumar Gala49c3a862008-10-21 17:25:45 -05001473 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1474 return 1;
1475
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001476#if defined(CONFIG_FIT)
1477 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001478 fit_unsupported_reset("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001479 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001480 }
1481#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001482 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001483
1484 /*
1485 * Booting a (NetBSD) kernel image
1486 *
1487 * This process is pretty similar to a standalone application:
1488 * The (first part of an multi-) image must be a stage-2 loader,
1489 * which in turn is responsible for loading & invoking the actual
1490 * kernel. The only differences are the parameters being passed:
1491 * besides the board info strucure, the loader expects a command
1492 * line, the name of the console device, and (optionally) the
1493 * address of the original image header.
1494 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001495 os_hdr = NULL;
Stephen Warren712fbcf2011-10-18 11:11:49 +00001496 if (image_check_type(&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
1497 image_multi_getimg(hdr, 1, &kernel_data, &kernel_len);
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001498 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001499 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001500 }
wdenk47d1a6e2002-11-03 00:01:44 +00001501
1502 consdev = "";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001503#if defined(CONFIG_8xx_CONS_SMC1)
wdenk47d1a6e2002-11-03 00:01:44 +00001504 consdev = "smc1";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001505#elif defined(CONFIG_8xx_CONS_SMC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001506 consdev = "smc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001507#elif defined(CONFIG_8xx_CONS_SCC2)
wdenk47d1a6e2002-11-03 00:01:44 +00001508 consdev = "scc2";
Stephen Warren712fbcf2011-10-18 11:11:49 +00001509#elif defined(CONFIG_8xx_CONS_SCC3)
wdenk47d1a6e2002-11-03 00:01:44 +00001510 consdev = "scc3";
1511#endif
1512
Simon Glass983c72f2013-06-11 11:14:46 -07001513 if (argc > 0) {
wdenk47d1a6e2002-11-03 00:01:44 +00001514 ulong len;
1515 int i;
1516
Simon Glass983c72f2013-06-11 11:14:46 -07001517 for (i = 0, len = 0; i < argc; i += 1)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001518 len += strlen(argv[i]) + 1;
1519 cmdline = malloc(len);
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001520 copy_args(cmdline, argc, argv, ' ');
Stephen Warren712fbcf2011-10-18 11:11:49 +00001521 } else if ((cmdline = getenv("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001522 cmdline = "";
1523 }
1524
Kumar Galac160a952008-08-15 08:24:36 -05001525 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001526
Stephen Warren712fbcf2011-10-18 11:11:49 +00001527 printf("## Transferring control to NetBSD stage-2 loader "
1528 "(at address %08lx) ...\n",
wdenk47d1a6e2002-11-03 00:01:44 +00001529 (ulong)loader);
1530
Simon Glass770605e2012-02-13 13:51:18 +00001531 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenk47d1a6e2002-11-03 00:01:44 +00001532
1533 /*
1534 * NetBSD Stage-2 Loader Parameters:
1535 * r3: ptr to board info data
1536 * r4: image address
1537 * r5: console device
1538 * r6: boot args string
1539 */
Stephen Warren712fbcf2011-10-18 11:11:49 +00001540 (*loader)(gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001541
1542 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001543}
Kumar Galab1d0db12008-10-21 17:25:47 -05001544#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001545
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001546#ifdef CONFIG_LYNXKDI
Stephen Warren712fbcf2011-10-18 11:11:49 +00001547static int do_bootm_lynxkdi(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001548 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001549{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001550 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001551
Simon Glass7af26b12013-07-10 23:08:09 -07001552 if (flag & BOOTM_STATE_OS_PREP)
1553 return 0;
Kumar Gala49c3a862008-10-21 17:25:45 -05001554 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1555 return 1;
1556
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001557#if defined(CONFIG_FIT)
1558 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001559 fit_unsupported_reset("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001560 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001561 }
1562#endif
1563
Stephen Warren712fbcf2011-10-18 11:11:49 +00001564 lynxkdi_boot((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001565
1566 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001567}
1568#endif /* CONFIG_LYNXKDI */
1569
Kumar Galab1d0db12008-10-21 17:25:47 -05001570#ifdef CONFIG_BOOTM_RTEMS
Stephen Warren712fbcf2011-10-18 11:11:49 +00001571static int do_bootm_rtems(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001572 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001573{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001574 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001575
Simon Glass7af26b12013-07-10 23:08:09 -07001576 if (flag & BOOTM_STATE_OS_PREP)
1577 return 0;
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)
1582 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001583 fit_unsupported_reset("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001584 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001585 }
1586#endif
1587
Kumar Galac160a952008-08-15 08:24:36 -05001588 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001589
Stephen Warren712fbcf2011-10-18 11:11:49 +00001590 printf("## Transferring control to RTEMS (at address %08lx) ...\n",
wdenkd791b1d2003-04-20 14:04:18 +00001591 (ulong)entry_point);
1592
Simon Glass770605e2012-02-13 13:51:18 +00001593 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
wdenkd791b1d2003-04-20 14:04:18 +00001594
1595 /*
1596 * RTEMS Parameters:
1597 * r3: ptr to board info data
1598 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001599 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001600
1601 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001602}
Kumar Galab1d0db12008-10-21 17:25:47 -05001603#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001604
Torkel Lundgren3df61952010-09-28 11:05:36 +02001605#if defined(CONFIG_BOOTM_OSE)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001606static int do_bootm_ose(int flag, int argc, char * const argv[],
Torkel Lundgren3df61952010-09-28 11:05:36 +02001607 bootm_headers_t *images)
1608{
1609 void (*entry_point)(void);
1610
Simon Glass7af26b12013-07-10 23:08:09 -07001611 if (flag & BOOTM_STATE_OS_PREP)
1612 return 0;
Torkel Lundgren3df61952010-09-28 11:05:36 +02001613 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1614 return 1;
1615
1616#if defined(CONFIG_FIT)
1617 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001618 fit_unsupported_reset("OSE");
Torkel Lundgren3df61952010-09-28 11:05:36 +02001619 return 1;
1620 }
1621#endif
1622
1623 entry_point = (void (*)(void))images->ep;
1624
Stephen Warren712fbcf2011-10-18 11:11:49 +00001625 printf("## Transferring control to OSE (at address %08lx) ...\n",
Torkel Lundgren3df61952010-09-28 11:05:36 +02001626 (ulong)entry_point);
1627
Simon Glass770605e2012-02-13 13:51:18 +00001628 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Torkel Lundgren3df61952010-09-28 11:05:36 +02001629
1630 /*
1631 * OSE Parameters:
1632 * None
1633 */
1634 (*entry_point)();
1635
1636 return 1;
1637}
1638#endif /* CONFIG_BOOTM_OSE */
1639
Steven Stallion04d41402013-03-20 06:31:35 +00001640#if defined(CONFIG_BOOTM_PLAN9)
1641static int do_bootm_plan9(int flag, int argc, char * const argv[],
1642 bootm_headers_t *images)
1643{
1644 void (*entry_point)(void);
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001645 char *s;
Steven Stallion04d41402013-03-20 06:31:35 +00001646
Simon Glass7af26b12013-07-10 23:08:09 -07001647 if (flag & BOOTM_STATE_OS_PREP)
1648 return 0;
Steven Stallion04d41402013-03-20 06:31:35 +00001649 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1650 return 1;
1651
1652#if defined(CONFIG_FIT)
1653 if (!images->legacy_hdr_valid) {
1654 fit_unsupported_reset("Plan 9");
1655 return 1;
1656 }
1657#endif
1658
Steven Stallioneeaef5e2013-06-10 01:00:09 -07001659 /* See README.plan9 */
1660 s = getenv("confaddr");
1661 if (s != NULL) {
1662 char *confaddr = (char *)simple_strtoul(s, NULL, 16);
1663
1664 if (argc > 0) {
1665 copy_args(confaddr, argc, argv, '\n');
1666 } else {
1667 s = getenv("bootargs");
1668 if (s != NULL)
1669 strcpy(confaddr, s);
1670 }
1671 }
1672
Steven Stallion04d41402013-03-20 06:31:35 +00001673 entry_point = (void (*)(void))images->ep;
1674
1675 printf("## Transferring control to Plan 9 (at address %08lx) ...\n",
1676 (ulong)entry_point);
1677
1678 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
1679
1680 /*
1681 * Plan 9 Parameters:
1682 * None
1683 */
1684 (*entry_point)();
1685
1686 return 1;
1687}
1688#endif /* CONFIG_BOOTM_PLAN9 */
1689
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001690#if defined(CONFIG_CMD_ELF)
Stephen Warren712fbcf2011-10-18 11:11:49 +00001691static int do_bootm_vxworks(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001692 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001693{
wdenk47d1a6e2002-11-03 00:01:44 +00001694 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001695
Simon Glass7af26b12013-07-10 23:08:09 -07001696 if (flag & BOOTM_STATE_OS_PREP)
1697 return 0;
Kumar Gala49c3a862008-10-21 17:25:45 -05001698 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1699 return 1;
1700
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001701#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001702 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001703 fit_unsupported_reset("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001704 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001705 }
1706#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001707
Kumar Galac160a952008-08-15 08:24:36 -05001708 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001709 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001710 do_bootvx(NULL, 0, 0, NULL);
1711
1712 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001713}
1714
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001715static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001716 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001717{
wdenk47d1a6e2002-11-03 00:01:44 +00001718 char *local_args[2];
1719 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001720
Simon Glass7af26b12013-07-10 23:08:09 -07001721 if (flag & BOOTM_STATE_OS_PREP)
1722 return 0;
Kumar Gala49c3a862008-10-21 17:25:45 -05001723 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1724 return 1;
1725
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001726#if defined(CONFIG_FIT)
1727 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001728 fit_unsupported_reset("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001729 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001730 }
1731#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001732
Kumar Galac160a952008-08-15 08:24:36 -05001733 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001734 local_args[0] = argv[0];
1735 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001736 do_bootelf(NULL, 0, 2, local_args);
1737
1738 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001739}
Jon Loeliger90253172007-07-10 11:02:44 -05001740#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001741
1742#ifdef CONFIG_INTEGRITY
Stephen Warren712fbcf2011-10-18 11:11:49 +00001743static int do_bootm_integrity(int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001744 bootm_headers_t *images)
1745{
1746 void (*entry_point)(void);
1747
Simon Glass7af26b12013-07-10 23:08:09 -07001748 if (flag & BOOTM_STATE_OS_PREP)
1749 return 0;
Kumar Gala49c3a862008-10-21 17:25:45 -05001750 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1751 return 1;
1752
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001753#if defined(CONFIG_FIT)
1754 if (!images->legacy_hdr_valid) {
Stephen Warren712fbcf2011-10-18 11:11:49 +00001755 fit_unsupported_reset("INTEGRITY");
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001756 return 1;
1757 }
1758#endif
1759
1760 entry_point = (void (*)(void))images->ep;
1761
Stephen Warren712fbcf2011-10-18 11:11:49 +00001762 printf("## Transferring control to INTEGRITY (at address %08lx) ...\n",
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001763 (ulong)entry_point);
1764
Simon Glass770605e2012-02-13 13:51:18 +00001765 bootstage_mark(BOOTSTAGE_ID_RUN_OS);
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001766
1767 /*
1768 * INTEGRITY Parameters:
1769 * None
1770 */
1771 (*entry_point)();
1772
1773 return 1;
1774}
1775#endif
Marek Vasut44f074c2012-03-14 21:52:45 +00001776
1777#ifdef CONFIG_CMD_BOOTZ
1778
Simon Glassa5266d62013-07-04 13:26:10 -07001779int __weak bootz_setup(ulong image, ulong *start, ulong *end)
Marek Vasut44f074c2012-03-14 21:52:45 +00001780{
1781 /* Please define bootz_setup() for your platform */
1782
1783 puts("Your platform's zImage format isn't supported yet!\n");
1784 return -1;
1785}
Marek Vasut44f074c2012-03-14 21:52:45 +00001786
1787/*
1788 * zImage booting support
1789 */
1790static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,
1791 char * const argv[], bootm_headers_t *images)
1792{
1793 int ret;
Simon Glassa5266d62013-07-04 13:26:10 -07001794 ulong zi_start, zi_end;
Marek Vasut44f074c2012-03-14 21:52:45 +00001795
Simon Glass35fc84f2013-06-11 11:14:47 -07001796 ret = do_bootm_states(cmdtp, flag, argc, argv, BOOTM_STATE_START,
1797 images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +00001798
1799 /* Setup Linux kernel zImage entry point */
Tom Rini2b9599e2013-07-09 15:32:34 -04001800 if (!argc) {
Marek Vasut44f074c2012-03-14 21:52:45 +00001801 images->ep = load_addr;
1802 debug("* kernel: default image load address = 0x%08lx\n",
1803 load_addr);
1804 } else {
Tom Rini2b9599e2013-07-09 15:32:34 -04001805 images->ep = simple_strtoul(argv[0], NULL, 16);
Marek Vasut44f074c2012-03-14 21:52:45 +00001806 debug("* kernel: cmdline image address = 0x%08lx\n",
1807 images->ep);
1808 }
1809
Simon Glassa5266d62013-07-04 13:26:10 -07001810 ret = bootz_setup(images->ep, &zi_start, &zi_end);
Marek Vasut44f074c2012-03-14 21:52:45 +00001811 if (ret != 0)
1812 return 1;
1813
1814 lmb_reserve(&images->lmb, images->ep, zi_end - zi_start);
1815
Tom Rini225fd8c2013-07-09 15:33:25 -04001816 /*
1817 * Handle the BOOTM_STATE_FINDOTHER state ourselves as we do not
1818 * have a header that provide this informaiton.
1819 */
Tom Rini2b9599e2013-07-09 15:32:34 -04001820 if (bootm_find_ramdisk(flag, argc, argv))
1821 return 1;
Marek Vasut44f074c2012-03-14 21:52:45 +00001822
Tom Rini2b9599e2013-07-09 15:32:34 -04001823#if defined(CONFIG_OF_LIBFDT)
1824 if (bootm_find_fdt(flag, argc, argv))
1825 return 1;
1826#endif
1827
1828 return 0;
Marek Vasut44f074c2012-03-14 21:52:45 +00001829}
1830
Rob Herringda620222012-12-02 21:00:23 -06001831int do_bootz(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Marek Vasut44f074c2012-03-14 21:52:45 +00001832{
Simon Glass35fc84f2013-06-11 11:14:47 -07001833 int ret;
Marek Vasut44f074c2012-03-14 21:52:45 +00001834
Tom Rini2b9599e2013-07-09 15:32:34 -04001835 /* Consume 'bootz' */
1836 argc--; argv++;
1837
Marek Vasut44f074c2012-03-14 21:52:45 +00001838 if (bootz_start(cmdtp, flag, argc, argv, &images))
1839 return 1;
1840
Simon Glass385501d2013-07-04 13:26:08 -07001841 /*
1842 * We are doing the BOOTM_STATE_LOADOS state ourselves, so must
1843 * disable interrupts ourselves
1844 */
1845 bootm_disable_interrupts();
1846
Simon Glassfb1b1392013-07-04 13:26:11 -07001847 images.os.os = IH_OS_LINUX;
Simon Glass35fc84f2013-06-11 11:14:47 -07001848 ret = do_bootm_states(cmdtp, flag, argc, argv,
Simon Glassfb1b1392013-07-04 13:26:11 -07001849 BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
1850 BOOTM_STATE_OS_GO,
Simon Glassd0ae31e2013-06-11 11:14:48 -07001851 &images, 1);
Marek Vasut44f074c2012-03-14 21:52:45 +00001852
Simon Glass35fc84f2013-06-11 11:14:47 -07001853 return ret;
Marek Vasut44f074c2012-03-14 21:52:45 +00001854}
1855
Kim Phillips088f1b12012-10-29 13:34:31 +00001856#ifdef CONFIG_SYS_LONGHELP
1857static char bootz_help_text[] =
Marek Vasut017e1f32012-03-18 11:47:58 +00001858 "[addr [initrd[:size]] [fdt]]\n"
1859 " - boot Linux zImage stored in memory\n"
Marek Vasut44f074c2012-03-14 21:52:45 +00001860 "\tThe argument 'initrd' is optional and specifies the address\n"
Marek Vasut017e1f32012-03-18 11:47:58 +00001861 "\tof the initrd in memory. The optional argument ':size' allows\n"
1862 "\tspecifying the size of RAW initrd.\n"
Marek Vasut44f074c2012-03-14 21:52:45 +00001863#if defined(CONFIG_OF_LIBFDT)
1864 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
1865 "\ta third argument is required which is the address of the\n"
1866 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1867 "\tuse a '-' for the second argument. If you do not pass a third\n"
1868 "\ta bd_info struct will be passed instead\n"
1869#endif
Kim Phillips088f1b12012-10-29 13:34:31 +00001870 "";
1871#endif
1872
1873U_BOOT_CMD(
1874 bootz, CONFIG_SYS_MAXARGS, 1, do_bootz,
1875 "boot Linux zImage image from memory", bootz_help_text
Marek Vasut44f074c2012-03-14 21:52:45 +00001876);
1877#endif /* CONFIG_CMD_BOOTZ */