blob: 1a024f168f7d1bea73fd7b0c26f81480ec602f4a [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)
311 /* find flattened device tree */
312 ret = boot_get_fdt (flag, argc, argv, &images,
313 &images.ft_addr, &images.ft_len);
314 if (ret) {
315 puts ("Could not find a valid device tree\n");
316 return 1;
317 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500318
319 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500320#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500321 }
322
Kumar Gala396f6352008-08-15 08:24:41 -0500323 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500324 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500325
326 return 0;
327}
328
329#define BOOTM_ERR_RESET -1
330#define BOOTM_ERR_OVERLAP -2
331#define BOOTM_ERR_UNIMPLEMENTED -3
332static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
333{
334 uint8_t comp = os.comp;
335 ulong load = os.load;
336 ulong blob_start = os.start;
337 ulong blob_end = os.end;
338 ulong image_start = os.image_start;
339 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200340 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200341#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
342 int ret;
343#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500344
345 const char *type_name = genimg_get_type_name (os.type);
346
347 switch (comp) {
348 case IH_COMP_NONE:
349 if (load == blob_start) {
350 printf (" XIP %s ... ", type_name);
351 } else {
352 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400353 memmove_wd ((void *)load, (void *)image_start,
354 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500355 }
356 *load_end = load + image_len;
357 puts("OK\n");
358 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500359#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500360 case IH_COMP_GZIP:
361 printf (" Uncompressing %s ... ", type_name);
362 if (gunzip ((void *)load, unc_len,
363 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100364 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500365 "- must RESET board to recover\n");
366 if (boot_progress)
367 show_boot_progress (-6);
368 return BOOTM_ERR_RESET;
369 }
370
371 *load_end = load + image_len;
372 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500373#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500374#ifdef CONFIG_BZIP2
375 case IH_COMP_BZIP2:
376 printf (" Uncompressing %s ... ", type_name);
377 /*
378 * If we've got less than 4 MB of malloc() space,
379 * use slower decompression algorithm which requires
380 * at most 2300 KB of memory.
381 */
382 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
383 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200384 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500385 if (i != BZ_OK) {
386 printf ("BUNZIP2: uncompress or overwrite error %d "
387 "- must RESET board to recover\n", i);
388 if (boot_progress)
389 show_boot_progress (-6);
390 return BOOTM_ERR_RESET;
391 }
392
393 *load_end = load + unc_len;
394 break;
395#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200396#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400397 case IH_COMP_LZMA: {
398 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200399 printf (" Uncompressing %s ... ", type_name);
400
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200401 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400402 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200403 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400404 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200405 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200406 printf ("LZMA: uncompress or overwrite error %d "
407 "- must RESET board to recover\n", ret);
408 show_boot_progress (-6);
409 return BOOTM_ERR_RESET;
410 }
411 *load_end = load + unc_len;
412 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400413 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200414#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100415#ifdef CONFIG_LZO
416 case IH_COMP_LZO:
417 printf (" Uncompressing %s ... ", type_name);
418
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200419 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100420 image_len, (unsigned char *)load,
421 &unc_len);
422 if (ret != LZO_E_OK) {
423 printf ("LZO: uncompress or overwrite error %d "
424 "- must RESET board to recover\n", ret);
425 if (boot_progress)
426 show_boot_progress (-6);
427 return BOOTM_ERR_RESET;
428 }
429
430 *load_end = load + unc_len;
431 break;
432#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500433 default:
434 printf ("Unimplemented compression type %d\n", comp);
435 return BOOTM_ERR_UNIMPLEMENTED;
436 }
437 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200438 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500439 if (boot_progress)
440 show_boot_progress (7);
441
442 if ((load < blob_end) && (*load_end > blob_start)) {
443 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 +0200444 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500445
446 return BOOTM_ERR_OVERLAP;
447 }
448
449 return 0;
450}
451
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200452static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200453{
454 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200455 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200456
457 /* Don't start if "autostart" is set to "no" */
458 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
459 char buf[32];
460 sprintf(buf, "%lX", images.os.image_len);
461 setenv("filesize", buf);
462 return 0;
463 }
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200464 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200465 (*appl)(argc-1, &argv[1]);
466
467 return 0;
468}
469
Kumar Gala49c3a862008-10-21 17:25:45 -0500470/* we overload the cmd field with our state machine info instead of a
471 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100472static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500473 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
474 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600475#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500476 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
477#endif
478#ifdef CONFIG_OF_LIBFDT
479 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
480#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500481 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600482 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500483 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
484 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
485};
486
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200487int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500488{
489 int ret = 0;
490 int state;
491 cmd_tbl_t *c;
492 boot_os_fn *boot_fn;
493
494 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
495
496 if (c) {
497 state = (int)c->cmd;
498
499 /* treat start special since it resets the state machine */
500 if (state == BOOTM_STATE_START) {
501 argc--;
502 argv++;
503 return bootm_start(cmdtp, flag, argc, argv);
504 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200505 } else {
506 /* Unrecognized command */
507 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500508 }
509
510 if (images.state >= state) {
511 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200512 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500513 }
514
515 images.state |= state;
516 boot_fn = boot_os[images.os.os];
517
518 switch (state) {
519 ulong load_end;
520 case BOOTM_STATE_START:
521 /* should never occur */
522 break;
523 case BOOTM_STATE_LOADOS:
524 ret = bootm_load_os(images.os, &load_end, 0);
525 if (ret)
526 return ret;
527
528 lmb_reserve(&images.lmb, images.os.load,
529 (load_end - images.os.load));
530 break;
John Rigbyfca43cc2010-10-13 13:57:35 -0600531#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500532 case BOOTM_STATE_RAMDISK:
533 {
534 ulong rd_len = images.rd_end - images.rd_start;
535 char str[17];
536
537 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
538 rd_len, &images.initrd_start, &images.initrd_end);
539 if (ret)
540 return ret;
541
542 sprintf(str, "%lx", images.initrd_start);
543 setenv("initrd_start", str);
544 sprintf(str, "%lx", images.initrd_end);
545 setenv("initrd_end", str);
546 }
547 break;
548#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100549#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500550 case BOOTM_STATE_FDT:
551 {
552 ulong bootmap_base = getenv_bootm_low();
553 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
554 &images.ft_addr, &images.ft_len);
555 break;
556 }
557#endif
558 case BOOTM_STATE_OS_CMDLINE:
559 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
560 if (ret)
561 printf ("cmdline subcommand not supported\n");
562 break;
563 case BOOTM_STATE_OS_BD_T:
564 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
565 if (ret)
566 printf ("bdt subcommand not supported\n");
567 break;
568 case BOOTM_STATE_OS_PREP:
569 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
570 if (ret)
571 printf ("prep subcommand not supported\n");
572 break;
573 case BOOTM_STATE_OS_GO:
574 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500575 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500576 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
577 break;
578 }
579
580 return ret;
581}
582
Kumar Gala396f6352008-08-15 08:24:41 -0500583/*******************************************************************/
584/* bootm - boot application image from image in memory */
585/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500586
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200587int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500588{
Kumar Gala396f6352008-08-15 08:24:41 -0500589 ulong iflag;
590 ulong load_end = 0;
591 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500592 boot_os_fn *boot_fn;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200593#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500594 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500595
596 /* relocate boot function table */
597 if (!relocated) {
598 int i;
599 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200600 if (boot_os[i] != NULL)
601 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500602 relocated = 1;
603 }
Peter Tyser521af042009-09-21 11:20:36 -0500604#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500605
Kumar Gala49c3a862008-10-21 17:25:45 -0500606 /* determine if we have a sub command */
607 if (argc > 1) {
608 char *endp;
609
610 simple_strtoul(argv[1], &endp, 16);
611 /* endp pointing to NULL means that argv[1] was just a
612 * valid number, pass it along to the normal bootm processing
613 *
614 * If endp is ':' or '#' assume a FIT identifier so pass
615 * along for normal processing.
616 *
617 * Right now we assume the first arg should never be '-'
618 */
619 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
620 return do_bootm_subcommand(cmdtp, flag, argc, argv);
621 }
622
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200623 if (bootm_start(cmdtp, flag, argc, argv))
624 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000625
626 /*
627 * We have reached the point of no return: we are going to
628 * overwrite all exception vector code, so we cannot easily
629 * recover from any failures any more...
630 */
wdenk47d1a6e2002-11-03 00:01:44 +0000631 iflag = disable_interrupts();
632
Stefan Roeseebb86c42008-07-30 09:59:51 +0200633#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200634 /*
635 * turn off USB to prevent the host controller from writing to the
636 * SDRAM while Linux is booting. This could happen (at least for OHCI
637 * controller), because the HCCA (Host Controller Communication Area)
638 * lies within the SDRAM and the host controller writes continously to
639 * this area (as busmaster!). The HccaFrameNumber is for example
640 * updated every 1 ms within the HCCA structure in SDRAM! For more
641 * details see the OpenHCI specification.
642 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200643 usb_stop();
644#endif
645
Kumar Gala396f6352008-08-15 08:24:41 -0500646 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000647
Kumar Gala396f6352008-08-15 08:24:41 -0500648 if (ret < 0) {
649 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000650 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500651 if (ret == BOOTM_ERR_OVERLAP) {
652 if (images.legacy_hdr_valid) {
653 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
654 puts ("WARNING: legacy format multi component "
655 "image overwritten\n");
656 } else {
657 puts ("ERROR: new format image overwritten - "
658 "must RESET the board to recover\n");
659 show_boot_progress (-113);
660 do_reset (cmdtp, flag, argc, argv);
661 }
wdenk47d1a6e2002-11-03 00:01:44 +0000662 }
Kumar Gala396f6352008-08-15 08:24:41 -0500663 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
664 if (iflag)
665 enable_interrupts();
666 show_boot_progress (-7);
667 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200668 }
wdenk47d1a6e2002-11-03 00:01:44 +0000669 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100670
Kumar Gala396f6352008-08-15 08:24:41 -0500671 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
672
Detlev Zundelf97ec302009-07-13 16:01:19 +0200673 if (images.os.type == IH_TYPE_STANDALONE) {
674 if (iflag)
675 enable_interrupts();
676 /* This may return when 'autostart' is 'no' */
677 bootm_start_standalone(iflag, argc, argv);
678 return 0;
679 }
680
Heiko Schocherfad63402007-07-13 09:54:17 +0200681 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000682
wdenkf72da342003-10-10 10:05:42 +0000683#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500684 if (images.os.os == IH_OS_LINUX)
685 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000686#endif
687
Kumar Galabe083152008-10-21 17:25:44 -0500688 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200689
690 if (boot_fn == NULL) {
691 if (iflag)
692 enable_interrupts();
693 printf ("ERROR: booting os '%s' (%d) is not supported\n",
694 genimg_get_os_name(images.os.os), images.os.os);
695 show_boot_progress (-8);
696 return 1;
697 }
698
Kumar Gala3dfad402009-08-27 08:23:55 -0500699 arch_preboot_os();
700
Kumar Galabe083152008-10-21 17:25:44 -0500701 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000702
Heiko Schocherfad63402007-07-13 09:54:17 +0200703 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000704#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000705 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000706#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500707 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100708
wdenk47d1a6e2002-11-03 00:01:44 +0000709 return 1;
710}
711
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100712/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100713 * image_get_kernel - verify legacy format kernel image
714 * @img_addr: in RAM address of the legacy format image to be verified
715 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100716 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100717 * image_get_kernel() verifies legacy image integrity and returns pointer to
718 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100719 *
720 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100721 * pointer to a legacy image header if valid image was found
722 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100723 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100724static image_header_t *image_get_kernel (ulong img_addr, int verify)
725{
726 image_header_t *hdr = (image_header_t *)img_addr;
727
728 if (!image_check_magic(hdr)) {
729 puts ("Bad Magic Number\n");
730 show_boot_progress (-1);
731 return NULL;
732 }
733 show_boot_progress (2);
734
735 if (!image_check_hcrc (hdr)) {
736 puts ("Bad Header Checksum\n");
737 show_boot_progress (-2);
738 return NULL;
739 }
740
741 show_boot_progress (3);
742 image_print_contents (hdr);
743
744 if (verify) {
745 puts (" Verifying Checksum ... ");
746 if (!image_check_dcrc (hdr)) {
747 printf ("Bad Data CRC\n");
748 show_boot_progress (-3);
749 return NULL;
750 }
751 puts ("OK\n");
752 }
753 show_boot_progress (4);
754
755 if (!image_check_target_arch (hdr)) {
756 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
757 show_boot_progress (-4);
758 return NULL;
759 }
760 return hdr;
761}
762
763/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100764 * fit_check_kernel - verify FIT format kernel subimage
765 * @fit_hdr: pointer to the FIT image header
766 * os_noffset: kernel subimage node offset within FIT image
767 * @verify: data CRC verification flag
768 *
769 * fit_check_kernel() verifies integrity of the kernel subimage and from
770 * specified FIT image.
771 *
772 * returns:
773 * 1, on success
774 * 0, on failure
775 */
776#if defined (CONFIG_FIT)
777static int fit_check_kernel (const void *fit, int os_noffset, int verify)
778{
779 fit_image_print (fit, os_noffset, " ");
780
781 if (verify) {
782 puts (" Verifying Hash Integrity ... ");
783 if (!fit_image_check_hashes (fit, os_noffset)) {
784 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100785 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100786 return 0;
787 }
788 puts ("OK\n");
789 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100790 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100791
792 if (!fit_image_check_target_arch (fit, os_noffset)) {
793 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100794 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100795 return 0;
796 }
797
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100798 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100799 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
800 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100801 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100802 return 0;
803 }
804
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100805 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100806 return 1;
807}
808#endif /* CONFIG_FIT */
809
810/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100811 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100812 * @os_data: pointer to a ulong variable, will hold os data start address
813 * @os_len: pointer to a ulong variable, will hold os data length
814 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100815 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100816 * and locates kernel data.
817 *
818 * returns:
819 * pointer to image header if valid image was found, plus kernel start
820 * address and length, otherwise NULL
821 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200822static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100823 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100824{
825 image_header_t *hdr;
826 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100827#if defined(CONFIG_FIT)
828 void *fit_hdr;
829 const char *fit_uname_config = NULL;
830 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100831 const void *data;
832 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100833 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100834 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100835#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100836
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100837 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100838 if (argc < 2) {
839 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100840 debug ("* kernel: default image load address = 0x%08lx\n",
841 load_addr);
842#if defined(CONFIG_FIT)
843 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
844 &fit_uname_config)) {
845 debug ("* kernel: config '%s' from image at 0x%08lx\n",
846 fit_uname_config, img_addr);
847 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
848 &fit_uname_kernel)) {
849 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
850 fit_uname_kernel, img_addr);
851#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100852 } else {
853 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100854 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100855 }
856
857 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100858
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100859 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100860 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100861
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100862 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100863 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100864 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100865 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100866 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
867 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100868 hdr = image_get_kernel (img_addr, images->verify);
869 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100870 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100871 show_boot_progress (5);
872
Marian Balakowicz6986a382008-03-12 10:01:05 +0100873 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100874 switch (image_get_type (hdr)) {
875 case IH_TYPE_KERNEL:
876 *os_data = image_get_data (hdr);
877 *os_len = image_get_data_size (hdr);
878 break;
879 case IH_TYPE_MULTI:
880 image_multi_getimg (hdr, 0, os_data, os_len);
881 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200882 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200883 *os_data = image_get_data (hdr);
884 *os_len = image_get_data_size (hdr);
885 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100886 default:
887 printf ("Wrong Image Type for %s command\n", cmdtp->name);
888 show_boot_progress (-5);
889 return NULL;
890 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100891
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200892 /*
893 * copy image header to allow for image overwrites during kernel
894 * decompression.
895 */
896 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
897
898 /* save pointer to image header */
899 images->legacy_hdr_os = hdr;
900
901 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100902 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100903 break;
904#if defined(CONFIG_FIT)
905 case IMAGE_FORMAT_FIT:
906 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100907 printf ("## Booting kernel from FIT Image at %08lx ...\n",
908 img_addr);
909
910 if (!fit_check_format (fit_hdr)) {
911 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100912 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100913 return NULL;
914 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100915 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100916
917 if (!fit_uname_kernel) {
918 /*
919 * no kernel image node unit name, try to get config
920 * node first. If config unit node name is NULL
921 * fit_conf_get_node() will try to find default config node
922 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100923 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100924 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
925 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100926 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100927 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100928 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100929 /* save configuration uname provided in the first
930 * bootm argument
931 */
932 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
933 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
934 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100935
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100936 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100937 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
938 } else {
939 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100940 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100941 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
942 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100943 if (os_noffset < 0) {
944 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100945 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100946 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100947
948 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
949
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100950 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100951 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
952 return NULL;
953
954 /* get kernel image data address and length */
955 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
956 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100957 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100958 return NULL;
959 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100960 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100961
962 *os_len = len;
963 *os_data = (ulong)data;
964 images->fit_hdr_os = fit_hdr;
965 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100966 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100967 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100968#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100969 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100970 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100971 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100972 return NULL;
973 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100974
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200975 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100976 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100977
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100978 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100979}
980
wdenk0d498392003-07-01 21:06:45 +0000981U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200982 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600983 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100984 "[addr [arg ...]]\n - boot application image stored in memory\n"
985 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
986 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100987#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500988 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200989 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500990 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
991 "\tuse a '-' for the second argument. If you do not pass a third\n"
992 "\ta bd_info struct will be passed instead\n"
993#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100994#if defined(CONFIG_FIT)
995 "\t\nFor the new multi component uImage format (FIT) addresses\n"
996 "\tmust be extened to include component or configuration unit name:\n"
997 "\taddr:<subimg_uname> - direct component image specification\n"
998 "\taddr#<conf_uname> - configuration specification\n"
999 "\tUse iminfo command to get the list of existing component\n"
1000 "\timages and configurations.\n"
1001#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001002 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1003 "must be\n"
1004 "issued in the order below (it's ok to not issue all sub-commands):\n"
1005 "\tstart [addr [arg ...]]\n"
1006 "\tloados - load OS image\n"
1007#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1008 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1009#endif
1010#if defined(CONFIG_OF_LIBFDT)
1011 "\tfdt - relocate flat device tree\n"
1012#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001013 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001014 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001015 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001016 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001017);
1018
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001019/*******************************************************************/
1020/* bootd - boot default image */
1021/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001022#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001023int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001024{
1025 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001026
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001027#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001028 if (run_command (getenv ("bootcmd"), flag) < 0)
1029 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001030#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001031 if (parse_string_outer (getenv ("bootcmd"),
1032 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1033 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001034#endif
1035 return rcode;
1036}
wdenk8bde7f72003-06-27 21:31:46 +00001037
wdenk0d498392003-07-01 21:06:45 +00001038U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001039 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001040 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001041 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001042);
1043
1044/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001045U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001046 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001047 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001048 ""
wdenk8bde7f72003-06-27 21:31:46 +00001049);
1050
wdenk47d1a6e2002-11-03 00:01:44 +00001051#endif
1052
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001053
1054/*******************************************************************/
1055/* iminfo - print header info for a requested image */
1056/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001057#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001058int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001059{
1060 int arg;
1061 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001062 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001063
1064 if (argc < 2) {
1065 return image_info (load_addr);
1066 }
1067
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001068 for (arg = 1; arg < argc; ++arg) {
1069 addr = simple_strtoul (argv[arg], NULL, 16);
1070 if (image_info (addr) != 0)
1071 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001072 }
1073 return rcode;
1074}
1075
1076static int image_info (ulong addr)
1077{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001078 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001079
1080 printf ("\n## Checking Image at %08lx ...\n", addr);
1081
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001082 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001083 case IMAGE_FORMAT_LEGACY:
1084 puts (" Legacy image found\n");
1085 if (!image_check_magic (hdr)) {
1086 puts (" Bad Magic Number\n");
1087 return 1;
1088 }
1089
1090 if (!image_check_hcrc (hdr)) {
1091 puts (" Bad Header Checksum\n");
1092 return 1;
1093 }
1094
1095 image_print_contents (hdr);
1096
1097 puts (" Verifying Checksum ... ");
1098 if (!image_check_dcrc (hdr)) {
1099 puts (" Bad Data CRC\n");
1100 return 1;
1101 }
1102 puts ("OK\n");
1103 return 0;
1104#if defined(CONFIG_FIT)
1105 case IMAGE_FORMAT_FIT:
1106 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001107
1108 if (!fit_check_format (hdr)) {
1109 puts ("Bad FIT image format!\n");
1110 return 1;
1111 }
1112
1113 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001114
1115 if (!fit_all_image_check_hashes (hdr)) {
1116 puts ("Bad hash in FIT image!\n");
1117 return 1;
1118 }
1119
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001120 return 0;
1121#endif
1122 default:
1123 puts ("Unknown image format!\n");
1124 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001125 }
1126
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001127 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001128}
wdenk0d498392003-07-01 21:06:45 +00001129
1130U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001131 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001132 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001133 "addr [addr ...]\n"
1134 " - print header information for application image starting at\n"
1135 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001136 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001137);
Jon Loeliger90253172007-07-10 11:02:44 -05001138#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001139
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001140
1141/*******************************************************************/
1142/* imls - list all images found in flash */
1143/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001144#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001145int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001146{
1147 flash_info_t *info;
1148 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001149 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001150
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001151 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001152 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001153
wdenk27b207f2003-07-24 23:38:38 +00001154 if (info->flash_id == FLASH_UNKNOWN)
1155 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001156 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001157
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001158 hdr = (void *)info->start[j];
1159 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001160 goto next_sector;
1161
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001162 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001163 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001164 if (!image_check_hcrc (hdr))
1165 goto next_sector;
1166
1167 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1168 image_print_contents (hdr);
1169
1170 puts (" Verifying Checksum ... ");
1171 if (!image_check_dcrc (hdr)) {
1172 puts ("Bad Data CRC\n");
1173 } else {
1174 puts ("OK\n");
1175 }
1176 break;
1177#if defined(CONFIG_FIT)
1178 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001179 if (!fit_check_format (hdr))
1180 goto next_sector;
1181
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001182 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001183 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001184 break;
1185#endif
1186 default:
wdenk27b207f2003-07-24 23:38:38 +00001187 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001188 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001189
wdenkbdccc4f2003-08-05 17:43:17 +00001190next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001191 }
wdenkbdccc4f2003-08-05 17:43:17 +00001192next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001193 }
1194
1195 return (0);
1196}
1197
1198U_BOOT_CMD(
1199 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001200 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001201 "\n"
1202 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001203 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001204);
Jon Loeliger90253172007-07-10 11:02:44 -05001205#endif
wdenk27b207f2003-07-24 23:38:38 +00001206
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001207/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001208/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001209/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001210#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001211static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001212{
1213 char buf[256], *start, *end;
1214 char *cmdline = getenv ("bootargs");
1215
1216 /* Only fix cmdline when requested */
1217 if (!(gd->flags & GD_FLG_SILENT))
1218 return;
1219
1220 debug ("before silent fix-up: %s\n", cmdline);
1221 if (cmdline) {
1222 if ((start = strstr (cmdline, "console=")) != NULL) {
1223 end = strchr (start, ' ');
1224 strncpy (buf, cmdline, (start - cmdline + 8));
1225 if (end)
1226 strcpy (buf + (start - cmdline + 8), end);
1227 else
1228 buf[start - cmdline + 8] = '\0';
1229 } else {
1230 strcpy (buf, cmdline);
1231 strcat (buf, " console=");
1232 }
1233 } else {
1234 strcpy (buf, "console=");
1235 }
1236
1237 setenv ("bootargs", buf);
1238 debug ("after silent fix-up: %s\n", buf);
1239}
1240#endif /* CONFIG_SILENT_CONSOLE */
1241
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001242
1243/*******************************************************************/
1244/* OS booting routines */
1245/*******************************************************************/
1246
Kumar Galab1d0db12008-10-21 17:25:47 -05001247#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001248static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001249 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001250{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001251 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001252 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001253 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001254 char *consdev;
1255 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001256
Kumar Gala49c3a862008-10-21 17:25:45 -05001257 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1258 return 1;
1259
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001260#if defined(CONFIG_FIT)
1261 if (!images->legacy_hdr_valid) {
1262 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001263 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001264 }
1265#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001266 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001267
1268 /*
1269 * Booting a (NetBSD) kernel image
1270 *
1271 * This process is pretty similar to a standalone application:
1272 * The (first part of an multi-) image must be a stage-2 loader,
1273 * which in turn is responsible for loading & invoking the actual
1274 * kernel. The only differences are the parameters being passed:
1275 * besides the board info strucure, the loader expects a command
1276 * line, the name of the console device, and (optionally) the
1277 * address of the original image header.
1278 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001279 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001280 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001281 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1282 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001283 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001284 }
wdenk47d1a6e2002-11-03 00:01:44 +00001285
1286 consdev = "";
1287#if defined (CONFIG_8xx_CONS_SMC1)
1288 consdev = "smc1";
1289#elif defined (CONFIG_8xx_CONS_SMC2)
1290 consdev = "smc2";
1291#elif defined (CONFIG_8xx_CONS_SCC2)
1292 consdev = "scc2";
1293#elif defined (CONFIG_8xx_CONS_SCC3)
1294 consdev = "scc3";
1295#endif
1296
1297 if (argc > 2) {
1298 ulong len;
1299 int i;
1300
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001301 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001302 len += strlen (argv[i]) + 1;
1303 cmdline = malloc (len);
1304
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001305 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001306 if (i > 2)
1307 cmdline[len++] = ' ';
1308 strcpy (&cmdline[len], argv[i]);
1309 len += strlen (argv[i]);
1310 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001311 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001312 cmdline = "";
1313 }
1314
Kumar Galac160a952008-08-15 08:24:36 -05001315 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001316
1317 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1318 (ulong)loader);
1319
1320 show_boot_progress (15);
1321
1322 /*
1323 * NetBSD Stage-2 Loader Parameters:
1324 * r3: ptr to board info data
1325 * r4: image address
1326 * r5: console device
1327 * r6: boot args string
1328 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001329 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001330
1331 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001332}
Kumar Galab1d0db12008-10-21 17:25:47 -05001333#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001334
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001335#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001336static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001337 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001338{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001339 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001340
Kumar Gala49c3a862008-10-21 17:25:45 -05001341 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1342 return 1;
1343
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001344#if defined(CONFIG_FIT)
1345 if (!images->legacy_hdr_valid) {
1346 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001347 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001348 }
1349#endif
1350
1351 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001352
1353 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001354}
1355#endif /* CONFIG_LYNXKDI */
1356
Kumar Galab1d0db12008-10-21 17:25:47 -05001357#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001358static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001359 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001360{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001361 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001362
Kumar Gala49c3a862008-10-21 17:25:45 -05001363 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1364 return 1;
1365
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001366#if defined(CONFIG_FIT)
1367 if (!images->legacy_hdr_valid) {
1368 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001369 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001370 }
1371#endif
1372
Kumar Galac160a952008-08-15 08:24:36 -05001373 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001374
1375 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1376 (ulong)entry_point);
1377
Heiko Schocherfad63402007-07-13 09:54:17 +02001378 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001379
1380 /*
1381 * RTEMS Parameters:
1382 * r3: ptr to board info data
1383 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001384 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001385
1386 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001387}
Kumar Galab1d0db12008-10-21 17:25:47 -05001388#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001389
Torkel Lundgren3df61952010-09-28 11:05:36 +02001390#if defined(CONFIG_BOOTM_OSE)
1391static int do_bootm_ose (int flag, int argc, char * const argv[],
1392 bootm_headers_t *images)
1393{
1394 void (*entry_point)(void);
1395
1396 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1397 return 1;
1398
1399#if defined(CONFIG_FIT)
1400 if (!images->legacy_hdr_valid) {
1401 fit_unsupported_reset ("OSE");
1402 return 1;
1403 }
1404#endif
1405
1406 entry_point = (void (*)(void))images->ep;
1407
1408 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1409 (ulong)entry_point);
1410
1411 show_boot_progress (15);
1412
1413 /*
1414 * OSE Parameters:
1415 * None
1416 */
1417 (*entry_point)();
1418
1419 return 1;
1420}
1421#endif /* CONFIG_BOOTM_OSE */
1422
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001423#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001424static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001425 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001426{
wdenk47d1a6e2002-11-03 00:01:44 +00001427 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001428
Kumar Gala49c3a862008-10-21 17:25:45 -05001429 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1430 return 1;
1431
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001432#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001433 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001434 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001435 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001436 }
1437#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001438
Kumar Galac160a952008-08-15 08:24:36 -05001439 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001440 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001441 do_bootvx(NULL, 0, 0, NULL);
1442
1443 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001444}
1445
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001446static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001447 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001448{
wdenk47d1a6e2002-11-03 00:01:44 +00001449 char *local_args[2];
1450 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001451
Kumar Gala49c3a862008-10-21 17:25:45 -05001452 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1453 return 1;
1454
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001455#if defined(CONFIG_FIT)
1456 if (!images->legacy_hdr_valid) {
1457 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001458 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001459 }
1460#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001461
Kumar Galac160a952008-08-15 08:24:36 -05001462 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001463 local_args[0] = argv[0];
1464 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001465 do_bootelf(NULL, 0, 2, local_args);
1466
1467 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001468}
Jon Loeliger90253172007-07-10 11:02:44 -05001469#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001470
1471#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001472static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001473 bootm_headers_t *images)
1474{
1475 void (*entry_point)(void);
1476
Kumar Gala49c3a862008-10-21 17:25:45 -05001477 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1478 return 1;
1479
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001480#if defined(CONFIG_FIT)
1481 if (!images->legacy_hdr_valid) {
1482 fit_unsupported_reset ("INTEGRITY");
1483 return 1;
1484 }
1485#endif
1486
1487 entry_point = (void (*)(void))images->ep;
1488
1489 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1490 (ulong)entry_point);
1491
1492 show_boot_progress (15);
1493
1494 /*
1495 * INTEGRITY Parameters:
1496 * None
1497 */
1498 (*entry_point)();
1499
1500 return 1;
1501}
1502#endif