blob: db59e6f295d6ff97861a576cdcf7d1ce80c115f9 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Detlev Zundelca95c9d2009-07-13 16:01:18 +02002 * (C) Copyright 2000-2009
wdenk47d1a6e2002-11-03 00:01:44 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010024
wdenk47d1a6e2002-11-03 00:01:44 +000025/*
26 * Boot support
27 */
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
wdenk47d1a6e2002-11-03 00:01:44 +000031#include <image.h>
32#include <malloc.h>
Jean-Christophe PLAGNIOL-VILLARDa31e0912009-04-04 12:49:11 +020033#include <u-boot/zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000034#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000035#include <environment.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060036#include <lmb.h>
Kumar Gala49c3a862008-10-21 17:25:45 -050037#include <linux/ctype.h>
wdenk47d1a6e2002-11-03 00:01:44 +000038#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000039
Stefan Roeseebb86c42008-07-30 09:59:51 +020040#if defined(CONFIG_CMD_USB)
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020041#include <usb.h>
42#endif
43
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020044#ifdef CONFIG_SYS_HUSH_PARSER
wdenk47d1a6e2002-11-03 00:01:44 +000045#include <hush.h>
46#endif
47
Kumar Gala54f9c862008-08-15 08:24:39 -050048#if defined(CONFIG_OF_LIBFDT)
49#include <fdt.h>
50#include <libfdt.h>
51#include <fdt_support.h>
52#endif
53
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020054#ifdef CONFIG_LZMA
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020055#include <lzma/LzmaTypes.h>
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +020056#include <lzma/LzmaDec.h>
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +020057#include <lzma/LzmaTools.h>
58#endif /* CONFIG_LZMA */
59
Peter Korsgaard20dde482009-11-19 11:37:51 +010060#ifdef CONFIG_LZO
61#include <linux/lzo.h>
62#endif /* CONFIG_LZO */
63
Marian Balakowicz1ee11802008-01-08 18:17:10 +010064DECLARE_GLOBAL_DATA_PTR;
65
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#ifndef CONFIG_SYS_BOOTM_LEN
67#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000068#endif
69
Marian Balakowicz321359f2008-01-08 18:11:43 +010070#ifdef CONFIG_BZIP2
71extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000072#endif
73
Jon Loeligerbaa26db2007-07-08 17:51:39 -050074#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000075static int image_info (unsigned long addr);
76#endif
wdenk27b207f2003-07-24 23:38:38 +000077
Jon Loeligerbaa26db2007-07-08 17:51:39 -050078#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000079#include <flash.h>
Stefan Roeseca5def32010-08-31 10:00:10 +020080#include <mtd/cfi_flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020081extern flash_info_t flash_info[]; /* info for FLASH chips */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020082static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000083#endif
84
Marian Balakowicz1ee11802008-01-08 18:17:10 +010085#ifdef CONFIG_SILENT_CONSOLE
86static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000087#endif
88
Marian Balakowicz6986a382008-03-12 10:01:05 +010089static image_header_t *image_get_kernel (ulong img_addr, int verify);
90#if defined(CONFIG_FIT)
91static int fit_check_kernel (const void *fit, int os_noffset, int verify);
92#endif
93
Wolfgang Denk54841ab2010-06-28 22:00:46 +020094static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010095 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Wolfgang Denk54841ab2010-06-28 22:00:46 +020096extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000097
wdenk47d1a6e2002-11-03 00:01:44 +000098/*
99 * Continue booting an OS image; caller already has:
100 * - copied image header to global variable `header'
101 * - checked header magic number, checksums (both header & image),
102 * - verified image architecture (PPC) and type (KERNEL or MULTI),
103 * - loaded (first part of) image to header load address,
104 * - disabled interrupts.
105 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200106typedef int boot_os_fn (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100107 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000108
Kumar Galab1d0db12008-10-21 17:25:47 -0500109#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100110extern boot_os_fn do_bootm_linux;
Kumar Galab1d0db12008-10-21 17:25:47 -0500111#endif
112#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100113static boot_os_fn do_bootm_netbsd;
Kumar Galab1d0db12008-10-21 17:25:47 -0500114#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100115#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100116static boot_os_fn do_bootm_lynxkdi;
117extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000118#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500119#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100120static boot_os_fn do_bootm_rtems;
Kumar Galab1d0db12008-10-21 17:25:47 -0500121#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200122#if defined(CONFIG_BOOTM_OSE)
123static boot_os_fn do_bootm_ose;
124#endif
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500125#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100126static boot_os_fn do_bootm_vxworks;
127static boot_os_fn do_bootm_qnxelf;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200128int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
129int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500130#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500131#if defined(CONFIG_INTEGRITY)
132static boot_os_fn do_bootm_integrity;
133#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000134
Mike Frysinger00085552009-11-03 11:36:26 -0500135static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500136#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500137 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500138#endif
139#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500140 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500141#endif
Kumar Galabe083152008-10-21 17:25:44 -0500142#ifdef CONFIG_LYNXKDI
143 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
144#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500145#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500146 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500147#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200148#if defined(CONFIG_BOOTM_OSE)
149 [IH_OS_OSE] = do_bootm_ose,
150#endif
Kumar Galabe083152008-10-21 17:25:44 -0500151#if defined(CONFIG_CMD_ELF)
152 [IH_OS_VXWORKS] = do_bootm_vxworks,
153 [IH_OS_QNX] = do_bootm_qnxelf,
154#endif
155#ifdef CONFIG_INTEGRITY
156 [IH_OS_INTEGRITY] = do_bootm_integrity,
157#endif
158};
159
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200160ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100161static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100162
Kumar Gala3dfad402009-08-27 08:23:55 -0500163/* Allow for arch specific config before we boot */
164void __arch_preboot_os(void)
165{
166 /* please define platform specific arch_preboot_os() */
167}
168void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
169
Kumar Galac4f94192008-08-15 08:24:37 -0500170#if defined(__ARM__)
171 #define IH_INITRD_ARCH IH_ARCH_ARM
172#elif defined(__avr32__)
173 #define IH_INITRD_ARCH IH_ARCH_AVR32
174#elif defined(__bfin__)
175 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
176#elif defined(__I386__)
177 #define IH_INITRD_ARCH IH_ARCH_I386
178#elif defined(__M68K__)
179 #define IH_INITRD_ARCH IH_ARCH_M68K
180#elif defined(__microblaze__)
181 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
182#elif defined(__mips__)
183 #define IH_INITRD_ARCH IH_ARCH_MIPS
Kumar Galac4f94192008-08-15 08:24:37 -0500184#elif defined(__nios2__)
185 #define IH_INITRD_ARCH IH_ARCH_NIOS2
186#elif defined(__PPC__)
187 #define IH_INITRD_ARCH IH_ARCH_PPC
188#elif defined(__sh__)
189 #define IH_INITRD_ARCH IH_ARCH_SH
190#elif defined(__sparc__)
191 #define IH_INITRD_ARCH IH_ARCH_SPARC
192#else
193# error Unknown CPU type
194#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000195
Mike Frysingera16028d2009-11-03 11:35:59 -0500196static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000197{
Mike Frysingera16028d2009-11-03 11:35:59 -0500198#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500199 ulong mem_start;
200 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Galae906cfa2008-08-15 08:24:40 -0500202 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000203
Kumar Galad3f2fa02008-02-27 21:51:50 -0600204 mem_start = getenv_bootm_low();
205 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000206
Kumar Galae906cfa2008-08-15 08:24:40 -0500207 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000208
Kumar Gala76da19d2008-10-16 21:52:08 -0500209 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500210 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500211#else
212# define lmb_reserve(lmb, base, size)
213#endif
214}
215
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200216static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500217{
218 void *os_hdr;
219 int ret;
220
221 memset ((void *)&images, 0, sizeof (images));
222 images.verify = getenv_yesno ("verify");
223
224 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000225
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100226 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100227 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500228 &images, &images.os.image_start, &images.os.image_len);
229 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100230 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000231 return 1;
232 }
wdenk47d1a6e2002-11-03 00:01:44 +0000233
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100234 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100235 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100236 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500237 images.os.type = image_get_type (os_hdr);
238 images.os.comp = image_get_comp (os_hdr);
239 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200240
Kumar Gala396f6352008-08-15 08:24:41 -0500241 images.os.end = image_get_image_end (os_hdr);
242 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100243 break;
244#if defined(CONFIG_FIT)
245 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100246 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500247 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100248 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100249 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000250 return 1;
251 }
wdenk47d1a6e2002-11-03 00:01:44 +0000252
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100253 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500254 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100255 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100256 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100257 return 1;
258 }
wdenk47d1a6e2002-11-03 00:01:44 +0000259
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100260 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500261 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100262 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100263 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100264 return 1;
265 }
wdenk47d1a6e2002-11-03 00:01:44 +0000266
Kumar Gala396f6352008-08-15 08:24:41 -0500267 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100268
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100269 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500270 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100271 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100272 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100273 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000274 }
275 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100276#endif
277 default:
278 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000279 return 1;
280 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100281
Kumar Galac160a952008-08-15 08:24:36 -0500282 /* find kernel entry point */
283 if (images.legacy_hdr_valid) {
284 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
285#if defined(CONFIG_FIT)
286 } else if (images.fit_uname_os) {
287 ret = fit_image_get_entry (images.fit_hdr_os,
288 images.fit_noffset_os, &images.ep);
289 if (ret) {
290 puts ("Can't get entry point property!\n");
291 return 1;
292 }
293#endif
294 } else {
295 puts ("Could not find kernel entry point!\n");
296 return 1;
297 }
298
Heiko Schocher24de2f42010-03-29 13:15:48 +0200299 if (((images.os.type == IH_TYPE_KERNEL) ||
300 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100301 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500302 /* find ramdisk */
303 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
304 &images.rd_start, &images.rd_end);
305 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500306 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500307 return 1;
308 }
Kumar Gala06a09912008-08-15 08:24:38 -0500309
310#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200311#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500312 /* find flattened device tree */
313 ret = boot_get_fdt (flag, argc, argv, &images,
314 &images.ft_addr, &images.ft_len);
315 if (ret) {
316 puts ("Could not find a valid device tree\n");
317 return 1;
318 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500319
320 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500321#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200322#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500323 }
324
Kumar Gala396f6352008-08-15 08:24:41 -0500325 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500326 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500327
328 return 0;
329}
330
331#define BOOTM_ERR_RESET -1
332#define BOOTM_ERR_OVERLAP -2
333#define BOOTM_ERR_UNIMPLEMENTED -3
334static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
335{
336 uint8_t comp = os.comp;
337 ulong load = os.load;
338 ulong blob_start = os.start;
339 ulong blob_end = os.end;
340 ulong image_start = os.image_start;
341 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200342 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200343#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
344 int ret;
345#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500346
347 const char *type_name = genimg_get_type_name (os.type);
348
349 switch (comp) {
350 case IH_COMP_NONE:
351 if (load == blob_start) {
352 printf (" XIP %s ... ", type_name);
353 } else {
354 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400355 memmove_wd ((void *)load, (void *)image_start,
356 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500357 }
358 *load_end = load + image_len;
359 puts("OK\n");
360 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500361#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500362 case IH_COMP_GZIP:
363 printf (" Uncompressing %s ... ", type_name);
364 if (gunzip ((void *)load, unc_len,
365 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100366 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500367 "- must RESET board to recover\n");
368 if (boot_progress)
369 show_boot_progress (-6);
370 return BOOTM_ERR_RESET;
371 }
372
373 *load_end = load + image_len;
374 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500375#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500376#ifdef CONFIG_BZIP2
377 case IH_COMP_BZIP2:
378 printf (" Uncompressing %s ... ", type_name);
379 /*
380 * If we've got less than 4 MB of malloc() space,
381 * use slower decompression algorithm which requires
382 * at most 2300 KB of memory.
383 */
384 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
385 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200386 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500387 if (i != BZ_OK) {
388 printf ("BUNZIP2: uncompress or overwrite error %d "
389 "- must RESET board to recover\n", i);
390 if (boot_progress)
391 show_boot_progress (-6);
392 return BOOTM_ERR_RESET;
393 }
394
395 *load_end = load + unc_len;
396 break;
397#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200398#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400399 case IH_COMP_LZMA: {
400 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200401 printf (" Uncompressing %s ... ", type_name);
402
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200403 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400404 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200405 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400406 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200407 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200408 printf ("LZMA: uncompress or overwrite error %d "
409 "- must RESET board to recover\n", ret);
410 show_boot_progress (-6);
411 return BOOTM_ERR_RESET;
412 }
413 *load_end = load + unc_len;
414 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400415 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200416#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100417#ifdef CONFIG_LZO
418 case IH_COMP_LZO:
419 printf (" Uncompressing %s ... ", type_name);
420
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200421 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100422 image_len, (unsigned char *)load,
423 &unc_len);
424 if (ret != LZO_E_OK) {
425 printf ("LZO: uncompress or overwrite error %d "
426 "- must RESET board to recover\n", ret);
427 if (boot_progress)
428 show_boot_progress (-6);
429 return BOOTM_ERR_RESET;
430 }
431
432 *load_end = load + unc_len;
433 break;
434#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500435 default:
436 printf ("Unimplemented compression type %d\n", comp);
437 return BOOTM_ERR_UNIMPLEMENTED;
438 }
439 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200440 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500441 if (boot_progress)
442 show_boot_progress (7);
443
444 if ((load < blob_end) && (*load_end > blob_start)) {
445 debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end);
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200446 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500447
448 return BOOTM_ERR_OVERLAP;
449 }
450
451 return 0;
452}
453
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200454static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200455{
456 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200457 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200458
459 /* Don't start if "autostart" is set to "no" */
460 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
461 char buf[32];
462 sprintf(buf, "%lX", images.os.image_len);
463 setenv("filesize", buf);
464 return 0;
465 }
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200466 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200467 (*appl)(argc-1, &argv[1]);
468
469 return 0;
470}
471
Kumar Gala49c3a862008-10-21 17:25:45 -0500472/* we overload the cmd field with our state machine info instead of a
473 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100474static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500475 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
476 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
477#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
478 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
479#endif
480#ifdef CONFIG_OF_LIBFDT
481 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
482#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500483 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600484 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500485 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
486 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
487};
488
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200489int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500490{
491 int ret = 0;
492 int state;
493 cmd_tbl_t *c;
494 boot_os_fn *boot_fn;
495
496 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
497
498 if (c) {
499 state = (int)c->cmd;
500
501 /* treat start special since it resets the state machine */
502 if (state == BOOTM_STATE_START) {
503 argc--;
504 argv++;
505 return bootm_start(cmdtp, flag, argc, argv);
506 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200507 } else {
508 /* Unrecognized command */
509 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500510 }
511
512 if (images.state >= state) {
513 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200514 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500515 }
516
517 images.state |= state;
518 boot_fn = boot_os[images.os.os];
519
520 switch (state) {
521 ulong load_end;
522 case BOOTM_STATE_START:
523 /* should never occur */
524 break;
525 case BOOTM_STATE_LOADOS:
526 ret = bootm_load_os(images.os, &load_end, 0);
527 if (ret)
528 return ret;
529
530 lmb_reserve(&images.lmb, images.os.load,
531 (load_end - images.os.load));
532 break;
533#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
534 case BOOTM_STATE_RAMDISK:
535 {
536 ulong rd_len = images.rd_end - images.rd_start;
537 char str[17];
538
539 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
540 rd_len, &images.initrd_start, &images.initrd_end);
541 if (ret)
542 return ret;
543
544 sprintf(str, "%lx", images.initrd_start);
545 setenv("initrd_start", str);
546 sprintf(str, "%lx", images.initrd_end);
547 setenv("initrd_end", str);
548 }
549 break;
550#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100551#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500552 case BOOTM_STATE_FDT:
553 {
554 ulong bootmap_base = getenv_bootm_low();
555 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
556 &images.ft_addr, &images.ft_len);
557 break;
558 }
559#endif
560 case BOOTM_STATE_OS_CMDLINE:
561 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
562 if (ret)
563 printf ("cmdline subcommand not supported\n");
564 break;
565 case BOOTM_STATE_OS_BD_T:
566 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
567 if (ret)
568 printf ("bdt subcommand not supported\n");
569 break;
570 case BOOTM_STATE_OS_PREP:
571 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
572 if (ret)
573 printf ("prep subcommand not supported\n");
574 break;
575 case BOOTM_STATE_OS_GO:
576 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500577 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500578 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
579 break;
580 }
581
582 return ret;
583}
584
Kumar Gala396f6352008-08-15 08:24:41 -0500585/*******************************************************************/
586/* bootm - boot application image from image in memory */
587/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500588
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200589int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500590{
Kumar Gala396f6352008-08-15 08:24:41 -0500591 ulong iflag;
592 ulong load_end = 0;
593 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500594 boot_os_fn *boot_fn;
Peter Tyser521af042009-09-21 11:20:36 -0500595#ifndef CONFIG_RELOC_FIXUP_WORKS
596 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500597
598 /* relocate boot function table */
599 if (!relocated) {
600 int i;
601 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200602 if (boot_os[i] != NULL)
603 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500604 relocated = 1;
605 }
Peter Tyser521af042009-09-21 11:20:36 -0500606#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500607
Kumar Gala49c3a862008-10-21 17:25:45 -0500608 /* determine if we have a sub command */
609 if (argc > 1) {
610 char *endp;
611
612 simple_strtoul(argv[1], &endp, 16);
613 /* endp pointing to NULL means that argv[1] was just a
614 * valid number, pass it along to the normal bootm processing
615 *
616 * If endp is ':' or '#' assume a FIT identifier so pass
617 * along for normal processing.
618 *
619 * Right now we assume the first arg should never be '-'
620 */
621 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
622 return do_bootm_subcommand(cmdtp, flag, argc, argv);
623 }
624
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200625 if (bootm_start(cmdtp, flag, argc, argv))
626 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000627
628 /*
629 * We have reached the point of no return: we are going to
630 * overwrite all exception vector code, so we cannot easily
631 * recover from any failures any more...
632 */
wdenk47d1a6e2002-11-03 00:01:44 +0000633 iflag = disable_interrupts();
634
Stefan Roeseebb86c42008-07-30 09:59:51 +0200635#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200636 /*
637 * turn off USB to prevent the host controller from writing to the
638 * SDRAM while Linux is booting. This could happen (at least for OHCI
639 * controller), because the HCCA (Host Controller Communication Area)
640 * lies within the SDRAM and the host controller writes continously to
641 * this area (as busmaster!). The HccaFrameNumber is for example
642 * updated every 1 ms within the HCCA structure in SDRAM! For more
643 * details see the OpenHCI specification.
644 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200645 usb_stop();
646#endif
647
Kumar Gala396f6352008-08-15 08:24:41 -0500648 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000649
Kumar Gala396f6352008-08-15 08:24:41 -0500650 if (ret < 0) {
651 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000652 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500653 if (ret == BOOTM_ERR_OVERLAP) {
654 if (images.legacy_hdr_valid) {
655 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
656 puts ("WARNING: legacy format multi component "
657 "image overwritten\n");
658 } else {
659 puts ("ERROR: new format image overwritten - "
660 "must RESET the board to recover\n");
661 show_boot_progress (-113);
662 do_reset (cmdtp, flag, argc, argv);
663 }
wdenk47d1a6e2002-11-03 00:01:44 +0000664 }
Kumar Gala396f6352008-08-15 08:24:41 -0500665 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
666 if (iflag)
667 enable_interrupts();
668 show_boot_progress (-7);
669 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200670 }
wdenk47d1a6e2002-11-03 00:01:44 +0000671 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100672
Kumar Gala396f6352008-08-15 08:24:41 -0500673 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
674
Detlev Zundelf97ec302009-07-13 16:01:19 +0200675 if (images.os.type == IH_TYPE_STANDALONE) {
676 if (iflag)
677 enable_interrupts();
678 /* This may return when 'autostart' is 'no' */
679 bootm_start_standalone(iflag, argc, argv);
680 return 0;
681 }
682
Heiko Schocherfad63402007-07-13 09:54:17 +0200683 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000684
wdenkf72da342003-10-10 10:05:42 +0000685#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500686 if (images.os.os == IH_OS_LINUX)
687 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000688#endif
689
Kumar Galabe083152008-10-21 17:25:44 -0500690 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200691
692 if (boot_fn == NULL) {
693 if (iflag)
694 enable_interrupts();
695 printf ("ERROR: booting os '%s' (%d) is not supported\n",
696 genimg_get_os_name(images.os.os), images.os.os);
697 show_boot_progress (-8);
698 return 1;
699 }
700
Kumar Gala3dfad402009-08-27 08:23:55 -0500701 arch_preboot_os();
702
Kumar Galabe083152008-10-21 17:25:44 -0500703 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000704
Heiko Schocherfad63402007-07-13 09:54:17 +0200705 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000706#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000707 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000708#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500709 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100710
wdenk47d1a6e2002-11-03 00:01:44 +0000711 return 1;
712}
713
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100714/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100715 * image_get_kernel - verify legacy format kernel image
716 * @img_addr: in RAM address of the legacy format image to be verified
717 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100718 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100719 * image_get_kernel() verifies legacy image integrity and returns pointer to
720 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100721 *
722 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100723 * pointer to a legacy image header if valid image was found
724 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100725 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100726static image_header_t *image_get_kernel (ulong img_addr, int verify)
727{
728 image_header_t *hdr = (image_header_t *)img_addr;
729
730 if (!image_check_magic(hdr)) {
731 puts ("Bad Magic Number\n");
732 show_boot_progress (-1);
733 return NULL;
734 }
735 show_boot_progress (2);
736
737 if (!image_check_hcrc (hdr)) {
738 puts ("Bad Header Checksum\n");
739 show_boot_progress (-2);
740 return NULL;
741 }
742
743 show_boot_progress (3);
744 image_print_contents (hdr);
745
746 if (verify) {
747 puts (" Verifying Checksum ... ");
748 if (!image_check_dcrc (hdr)) {
749 printf ("Bad Data CRC\n");
750 show_boot_progress (-3);
751 return NULL;
752 }
753 puts ("OK\n");
754 }
755 show_boot_progress (4);
756
757 if (!image_check_target_arch (hdr)) {
758 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
759 show_boot_progress (-4);
760 return NULL;
761 }
762 return hdr;
763}
764
765/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100766 * fit_check_kernel - verify FIT format kernel subimage
767 * @fit_hdr: pointer to the FIT image header
768 * os_noffset: kernel subimage node offset within FIT image
769 * @verify: data CRC verification flag
770 *
771 * fit_check_kernel() verifies integrity of the kernel subimage and from
772 * specified FIT image.
773 *
774 * returns:
775 * 1, on success
776 * 0, on failure
777 */
778#if defined (CONFIG_FIT)
779static int fit_check_kernel (const void *fit, int os_noffset, int verify)
780{
781 fit_image_print (fit, os_noffset, " ");
782
783 if (verify) {
784 puts (" Verifying Hash Integrity ... ");
785 if (!fit_image_check_hashes (fit, os_noffset)) {
786 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100787 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100788 return 0;
789 }
790 puts ("OK\n");
791 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100792 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100793
794 if (!fit_image_check_target_arch (fit, os_noffset)) {
795 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100796 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100797 return 0;
798 }
799
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100800 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100801 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
802 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100803 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100804 return 0;
805 }
806
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100807 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100808 return 1;
809}
810#endif /* CONFIG_FIT */
811
812/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100813 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100814 * @os_data: pointer to a ulong variable, will hold os data start address
815 * @os_len: pointer to a ulong variable, will hold os data length
816 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100817 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100818 * and locates kernel data.
819 *
820 * returns:
821 * pointer to image header if valid image was found, plus kernel start
822 * address and length, otherwise NULL
823 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200824static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100825 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100826{
827 image_header_t *hdr;
828 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100829#if defined(CONFIG_FIT)
830 void *fit_hdr;
831 const char *fit_uname_config = NULL;
832 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100833 const void *data;
834 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100835 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100836 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100837#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100838
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100839 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100840 if (argc < 2) {
841 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100842 debug ("* kernel: default image load address = 0x%08lx\n",
843 load_addr);
844#if defined(CONFIG_FIT)
845 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
846 &fit_uname_config)) {
847 debug ("* kernel: config '%s' from image at 0x%08lx\n",
848 fit_uname_config, img_addr);
849 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
850 &fit_uname_kernel)) {
851 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
852 fit_uname_kernel, img_addr);
853#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100854 } else {
855 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100856 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100857 }
858
859 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100860
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100861 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100862 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100863
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100864 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100865 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100866 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100867 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100868 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
869 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100870 hdr = image_get_kernel (img_addr, images->verify);
871 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100872 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100873 show_boot_progress (5);
874
Marian Balakowicz6986a382008-03-12 10:01:05 +0100875 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100876 switch (image_get_type (hdr)) {
877 case IH_TYPE_KERNEL:
878 *os_data = image_get_data (hdr);
879 *os_len = image_get_data_size (hdr);
880 break;
881 case IH_TYPE_MULTI:
882 image_multi_getimg (hdr, 0, os_data, os_len);
883 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200884 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200885 *os_data = image_get_data (hdr);
886 *os_len = image_get_data_size (hdr);
887 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100888 default:
889 printf ("Wrong Image Type for %s command\n", cmdtp->name);
890 show_boot_progress (-5);
891 return NULL;
892 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100893
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200894 /*
895 * copy image header to allow for image overwrites during kernel
896 * decompression.
897 */
898 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
899
900 /* save pointer to image header */
901 images->legacy_hdr_os = hdr;
902
903 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100904 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100905 break;
906#if defined(CONFIG_FIT)
907 case IMAGE_FORMAT_FIT:
908 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100909 printf ("## Booting kernel from FIT Image at %08lx ...\n",
910 img_addr);
911
912 if (!fit_check_format (fit_hdr)) {
913 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100914 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100915 return NULL;
916 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100917 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100918
919 if (!fit_uname_kernel) {
920 /*
921 * no kernel image node unit name, try to get config
922 * node first. If config unit node name is NULL
923 * fit_conf_get_node() will try to find default config node
924 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100925 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100926 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
927 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100928 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100929 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100930 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100931 /* save configuration uname provided in the first
932 * bootm argument
933 */
934 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
935 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
936 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100937
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100938 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100939 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
940 } else {
941 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100942 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100943 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
944 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100945 if (os_noffset < 0) {
946 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100947 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100948 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100949
950 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
951
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100952 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100953 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
954 return NULL;
955
956 /* get kernel image data address and length */
957 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
958 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100959 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100960 return NULL;
961 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100962 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100963
964 *os_len = len;
965 *os_data = (ulong)data;
966 images->fit_hdr_os = fit_hdr;
967 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100968 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100969 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100970#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100971 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100972 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100973 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100974 return NULL;
975 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100976
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200977 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100978 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100979
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100980 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100981}
982
wdenk0d498392003-07-01 21:06:45 +0000983U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200984 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600985 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100986 "[addr [arg ...]]\n - boot application image stored in memory\n"
987 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
988 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100989#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500990 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200991 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500992 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
993 "\tuse a '-' for the second argument. If you do not pass a third\n"
994 "\ta bd_info struct will be passed instead\n"
995#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100996#if defined(CONFIG_FIT)
997 "\t\nFor the new multi component uImage format (FIT) addresses\n"
998 "\tmust be extened to include component or configuration unit name:\n"
999 "\taddr:<subimg_uname> - direct component image specification\n"
1000 "\taddr#<conf_uname> - configuration specification\n"
1001 "\tUse iminfo command to get the list of existing component\n"
1002 "\timages and configurations.\n"
1003#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001004 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1005 "must be\n"
1006 "issued in the order below (it's ok to not issue all sub-commands):\n"
1007 "\tstart [addr [arg ...]]\n"
1008 "\tloados - load OS image\n"
1009#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1010 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1011#endif
1012#if defined(CONFIG_OF_LIBFDT)
1013 "\tfdt - relocate flat device tree\n"
1014#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001015 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001016 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001017 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001018 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001019);
1020
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001021/*******************************************************************/
1022/* bootd - boot default image */
1023/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001024#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001025int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001026{
1027 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001028
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001029#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001030 if (run_command (getenv ("bootcmd"), flag) < 0)
1031 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001032#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001033 if (parse_string_outer (getenv ("bootcmd"),
1034 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1035 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001036#endif
1037 return rcode;
1038}
wdenk8bde7f72003-06-27 21:31:46 +00001039
wdenk0d498392003-07-01 21:06:45 +00001040U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001041 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001042 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001043 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001044);
1045
1046/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001047U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001048 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001049 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001050 ""
wdenk8bde7f72003-06-27 21:31:46 +00001051);
1052
wdenk47d1a6e2002-11-03 00:01:44 +00001053#endif
1054
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001055
1056/*******************************************************************/
1057/* iminfo - print header info for a requested image */
1058/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001059#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001060int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001061{
1062 int arg;
1063 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001064 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001065
1066 if (argc < 2) {
1067 return image_info (load_addr);
1068 }
1069
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001070 for (arg = 1; arg < argc; ++arg) {
1071 addr = simple_strtoul (argv[arg], NULL, 16);
1072 if (image_info (addr) != 0)
1073 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001074 }
1075 return rcode;
1076}
1077
1078static int image_info (ulong addr)
1079{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001080 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001081
1082 printf ("\n## Checking Image at %08lx ...\n", addr);
1083
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001084 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001085 case IMAGE_FORMAT_LEGACY:
1086 puts (" Legacy image found\n");
1087 if (!image_check_magic (hdr)) {
1088 puts (" Bad Magic Number\n");
1089 return 1;
1090 }
1091
1092 if (!image_check_hcrc (hdr)) {
1093 puts (" Bad Header Checksum\n");
1094 return 1;
1095 }
1096
1097 image_print_contents (hdr);
1098
1099 puts (" Verifying Checksum ... ");
1100 if (!image_check_dcrc (hdr)) {
1101 puts (" Bad Data CRC\n");
1102 return 1;
1103 }
1104 puts ("OK\n");
1105 return 0;
1106#if defined(CONFIG_FIT)
1107 case IMAGE_FORMAT_FIT:
1108 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001109
1110 if (!fit_check_format (hdr)) {
1111 puts ("Bad FIT image format!\n");
1112 return 1;
1113 }
1114
1115 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001116
1117 if (!fit_all_image_check_hashes (hdr)) {
1118 puts ("Bad hash in FIT image!\n");
1119 return 1;
1120 }
1121
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001122 return 0;
1123#endif
1124 default:
1125 puts ("Unknown image format!\n");
1126 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001127 }
1128
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001129 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001130}
wdenk0d498392003-07-01 21:06:45 +00001131
1132U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001133 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001134 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001135 "addr [addr ...]\n"
1136 " - print header information for application image starting at\n"
1137 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001138 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001139);
Jon Loeliger90253172007-07-10 11:02:44 -05001140#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001141
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001142
1143/*******************************************************************/
1144/* imls - list all images found in flash */
1145/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001146#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001147int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001148{
1149 flash_info_t *info;
1150 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001151 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001152
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001153 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001154 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001155
wdenk27b207f2003-07-24 23:38:38 +00001156 if (info->flash_id == FLASH_UNKNOWN)
1157 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001158 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001159
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001160 hdr = (void *)info->start[j];
1161 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001162 goto next_sector;
1163
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001164 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001165 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001166 if (!image_check_hcrc (hdr))
1167 goto next_sector;
1168
1169 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1170 image_print_contents (hdr);
1171
1172 puts (" Verifying Checksum ... ");
1173 if (!image_check_dcrc (hdr)) {
1174 puts ("Bad Data CRC\n");
1175 } else {
1176 puts ("OK\n");
1177 }
1178 break;
1179#if defined(CONFIG_FIT)
1180 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001181 if (!fit_check_format (hdr))
1182 goto next_sector;
1183
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001184 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001185 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001186 break;
1187#endif
1188 default:
wdenk27b207f2003-07-24 23:38:38 +00001189 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001190 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001191
wdenkbdccc4f2003-08-05 17:43:17 +00001192next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001193 }
wdenkbdccc4f2003-08-05 17:43:17 +00001194next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001195 }
1196
1197 return (0);
1198}
1199
1200U_BOOT_CMD(
1201 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001202 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001203 "\n"
1204 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001205 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001206);
Jon Loeliger90253172007-07-10 11:02:44 -05001207#endif
wdenk27b207f2003-07-24 23:38:38 +00001208
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001209/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001210/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001211/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001212#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001213static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001214{
1215 char buf[256], *start, *end;
1216 char *cmdline = getenv ("bootargs");
1217
1218 /* Only fix cmdline when requested */
1219 if (!(gd->flags & GD_FLG_SILENT))
1220 return;
1221
1222 debug ("before silent fix-up: %s\n", cmdline);
1223 if (cmdline) {
1224 if ((start = strstr (cmdline, "console=")) != NULL) {
1225 end = strchr (start, ' ');
1226 strncpy (buf, cmdline, (start - cmdline + 8));
1227 if (end)
1228 strcpy (buf + (start - cmdline + 8), end);
1229 else
1230 buf[start - cmdline + 8] = '\0';
1231 } else {
1232 strcpy (buf, cmdline);
1233 strcat (buf, " console=");
1234 }
1235 } else {
1236 strcpy (buf, "console=");
1237 }
1238
1239 setenv ("bootargs", buf);
1240 debug ("after silent fix-up: %s\n", buf);
1241}
1242#endif /* CONFIG_SILENT_CONSOLE */
1243
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001244
1245/*******************************************************************/
1246/* OS booting routines */
1247/*******************************************************************/
1248
Kumar Galab1d0db12008-10-21 17:25:47 -05001249#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001250static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001251 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001252{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001253 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001254 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001255 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001256 char *consdev;
1257 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001258
Kumar Gala49c3a862008-10-21 17:25:45 -05001259 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1260 return 1;
1261
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001262#if defined(CONFIG_FIT)
1263 if (!images->legacy_hdr_valid) {
1264 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001265 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001266 }
1267#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001268 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001269
1270 /*
1271 * Booting a (NetBSD) kernel image
1272 *
1273 * This process is pretty similar to a standalone application:
1274 * The (first part of an multi-) image must be a stage-2 loader,
1275 * which in turn is responsible for loading & invoking the actual
1276 * kernel. The only differences are the parameters being passed:
1277 * besides the board info strucure, the loader expects a command
1278 * line, the name of the console device, and (optionally) the
1279 * address of the original image header.
1280 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001281 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001282 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001283 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1284 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001285 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001286 }
wdenk47d1a6e2002-11-03 00:01:44 +00001287
1288 consdev = "";
1289#if defined (CONFIG_8xx_CONS_SMC1)
1290 consdev = "smc1";
1291#elif defined (CONFIG_8xx_CONS_SMC2)
1292 consdev = "smc2";
1293#elif defined (CONFIG_8xx_CONS_SCC2)
1294 consdev = "scc2";
1295#elif defined (CONFIG_8xx_CONS_SCC3)
1296 consdev = "scc3";
1297#endif
1298
1299 if (argc > 2) {
1300 ulong len;
1301 int i;
1302
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001303 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001304 len += strlen (argv[i]) + 1;
1305 cmdline = malloc (len);
1306
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001307 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001308 if (i > 2)
1309 cmdline[len++] = ' ';
1310 strcpy (&cmdline[len], argv[i]);
1311 len += strlen (argv[i]);
1312 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001313 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001314 cmdline = "";
1315 }
1316
Kumar Galac160a952008-08-15 08:24:36 -05001317 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001318
1319 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1320 (ulong)loader);
1321
1322 show_boot_progress (15);
1323
1324 /*
1325 * NetBSD Stage-2 Loader Parameters:
1326 * r3: ptr to board info data
1327 * r4: image address
1328 * r5: console device
1329 * r6: boot args string
1330 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001331 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001332
1333 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001334}
Kumar Galab1d0db12008-10-21 17:25:47 -05001335#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001336
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001337#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001338static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001339 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001340{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001341 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001342
Kumar Gala49c3a862008-10-21 17:25:45 -05001343 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1344 return 1;
1345
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001346#if defined(CONFIG_FIT)
1347 if (!images->legacy_hdr_valid) {
1348 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001349 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001350 }
1351#endif
1352
1353 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001354
1355 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001356}
1357#endif /* CONFIG_LYNXKDI */
1358
Kumar Galab1d0db12008-10-21 17:25:47 -05001359#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001360static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001361 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001362{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001363 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001364
Kumar Gala49c3a862008-10-21 17:25:45 -05001365 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1366 return 1;
1367
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001368#if defined(CONFIG_FIT)
1369 if (!images->legacy_hdr_valid) {
1370 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001371 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001372 }
1373#endif
1374
Kumar Galac160a952008-08-15 08:24:36 -05001375 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001376
1377 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1378 (ulong)entry_point);
1379
Heiko Schocherfad63402007-07-13 09:54:17 +02001380 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001381
1382 /*
1383 * RTEMS Parameters:
1384 * r3: ptr to board info data
1385 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001386 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001387
1388 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001389}
Kumar Galab1d0db12008-10-21 17:25:47 -05001390#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001391
Torkel Lundgren3df61952010-09-28 11:05:36 +02001392#if defined(CONFIG_BOOTM_OSE)
1393static int do_bootm_ose (int flag, int argc, char * const argv[],
1394 bootm_headers_t *images)
1395{
1396 void (*entry_point)(void);
1397
1398 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1399 return 1;
1400
1401#if defined(CONFIG_FIT)
1402 if (!images->legacy_hdr_valid) {
1403 fit_unsupported_reset ("OSE");
1404 return 1;
1405 }
1406#endif
1407
1408 entry_point = (void (*)(void))images->ep;
1409
1410 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1411 (ulong)entry_point);
1412
1413 show_boot_progress (15);
1414
1415 /*
1416 * OSE Parameters:
1417 * None
1418 */
1419 (*entry_point)();
1420
1421 return 1;
1422}
1423#endif /* CONFIG_BOOTM_OSE */
1424
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001425#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001426static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001427 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001428{
wdenk47d1a6e2002-11-03 00:01:44 +00001429 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001430
Kumar Gala49c3a862008-10-21 17:25:45 -05001431 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1432 return 1;
1433
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001434#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001435 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001436 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001437 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001438 }
1439#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001440
Kumar Galac160a952008-08-15 08:24:36 -05001441 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001442 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001443 do_bootvx(NULL, 0, 0, NULL);
1444
1445 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001446}
1447
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001448static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001449 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001450{
wdenk47d1a6e2002-11-03 00:01:44 +00001451 char *local_args[2];
1452 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001453
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) {
1459 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001460 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001461 }
1462#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001463
Kumar Galac160a952008-08-15 08:24:36 -05001464 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001465 local_args[0] = argv[0];
1466 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001467 do_bootelf(NULL, 0, 2, local_args);
1468
1469 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001470}
Jon Loeliger90253172007-07-10 11:02:44 -05001471#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001472
1473#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001474static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001475 bootm_headers_t *images)
1476{
1477 void (*entry_point)(void);
1478
Kumar Gala49c3a862008-10-21 17:25:45 -05001479 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1480 return 1;
1481
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001482#if defined(CONFIG_FIT)
1483 if (!images->legacy_hdr_valid) {
1484 fit_unsupported_reset ("INTEGRITY");
1485 return 1;
1486 }
1487#endif
1488
1489 entry_point = (void (*)(void))images->ep;
1490
1491 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1492 (ulong)entry_point);
1493
1494 show_boot_progress (15);
1495
1496 /*
1497 * INTEGRITY Parameters:
1498 * None
1499 */
1500 (*entry_point)();
1501
1502 return 1;
1503}
1504#endif