blob: 8909ee703d32db806ba677196788af623cde2bf4 [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);
wdenk47d1a6e2002-11-03 00:01:44 +000096
wdenk47d1a6e2002-11-03 00:01:44 +000097/*
98 * Continue booting an OS image; caller already has:
99 * - copied image header to global variable `header'
100 * - checked header magic number, checksums (both header & image),
101 * - verified image architecture (PPC) and type (KERNEL or MULTI),
102 * - loaded (first part of) image to header load address,
103 * - disabled interrupts.
104 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200105typedef int boot_os_fn (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100106 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000107
Kumar Galab1d0db12008-10-21 17:25:47 -0500108#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100109extern boot_os_fn do_bootm_linux;
Kumar Galab1d0db12008-10-21 17:25:47 -0500110#endif
111#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100112static boot_os_fn do_bootm_netbsd;
Kumar Galab1d0db12008-10-21 17:25:47 -0500113#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100114#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100115static boot_os_fn do_bootm_lynxkdi;
116extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000117#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500118#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100119static boot_os_fn do_bootm_rtems;
Kumar Galab1d0db12008-10-21 17:25:47 -0500120#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200121#if defined(CONFIG_BOOTM_OSE)
122static boot_os_fn do_bootm_ose;
123#endif
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500124#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100125static boot_os_fn do_bootm_vxworks;
126static boot_os_fn do_bootm_qnxelf;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200127int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
128int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500129#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500130#if defined(CONFIG_INTEGRITY)
131static boot_os_fn do_bootm_integrity;
132#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000133
Mike Frysinger00085552009-11-03 11:36:26 -0500134static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500135#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500136 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500137#endif
138#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500139 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500140#endif
Kumar Galabe083152008-10-21 17:25:44 -0500141#ifdef CONFIG_LYNXKDI
142 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
143#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500144#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500145 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500146#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200147#if defined(CONFIG_BOOTM_OSE)
148 [IH_OS_OSE] = do_bootm_ose,
149#endif
Kumar Galabe083152008-10-21 17:25:44 -0500150#if defined(CONFIG_CMD_ELF)
151 [IH_OS_VXWORKS] = do_bootm_vxworks,
152 [IH_OS_QNX] = do_bootm_qnxelf,
153#endif
154#ifdef CONFIG_INTEGRITY
155 [IH_OS_INTEGRITY] = do_bootm_integrity,
156#endif
157};
158
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100159static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100160
Kumar Gala3dfad402009-08-27 08:23:55 -0500161/* Allow for arch specific config before we boot */
162void __arch_preboot_os(void)
163{
164 /* please define platform specific arch_preboot_os() */
165}
166void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
167
Kumar Galac4f94192008-08-15 08:24:37 -0500168#if defined(__ARM__)
169 #define IH_INITRD_ARCH IH_ARCH_ARM
170#elif defined(__avr32__)
171 #define IH_INITRD_ARCH IH_ARCH_AVR32
172#elif defined(__bfin__)
173 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
174#elif defined(__I386__)
175 #define IH_INITRD_ARCH IH_ARCH_I386
176#elif defined(__M68K__)
177 #define IH_INITRD_ARCH IH_ARCH_M68K
178#elif defined(__microblaze__)
179 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
180#elif defined(__mips__)
181 #define IH_INITRD_ARCH IH_ARCH_MIPS
Kumar Galac4f94192008-08-15 08:24:37 -0500182#elif defined(__nios2__)
183 #define IH_INITRD_ARCH IH_ARCH_NIOS2
184#elif defined(__PPC__)
185 #define IH_INITRD_ARCH IH_ARCH_PPC
186#elif defined(__sh__)
187 #define IH_INITRD_ARCH IH_ARCH_SH
188#elif defined(__sparc__)
189 #define IH_INITRD_ARCH IH_ARCH_SPARC
190#else
191# error Unknown CPU type
192#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000193
Mike Frysingera16028d2009-11-03 11:35:59 -0500194static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000195{
Mike Frysingera16028d2009-11-03 11:35:59 -0500196#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500197 ulong mem_start;
198 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000199
Kumar Galae906cfa2008-08-15 08:24:40 -0500200 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Galad3f2fa02008-02-27 21:51:50 -0600202 mem_start = getenv_bootm_low();
203 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000204
Kumar Galae906cfa2008-08-15 08:24:40 -0500205 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000206
Kumar Gala76da19d2008-10-16 21:52:08 -0500207 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500208 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500209#else
210# define lmb_reserve(lmb, base, size)
211#endif
212}
213
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200214static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500215{
216 void *os_hdr;
217 int ret;
218
219 memset ((void *)&images, 0, sizeof (images));
220 images.verify = getenv_yesno ("verify");
221
222 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000223
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100224 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100225 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500226 &images, &images.os.image_start, &images.os.image_len);
227 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100228 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000229 return 1;
230 }
wdenk47d1a6e2002-11-03 00:01:44 +0000231
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100232 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100233 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100234 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500235 images.os.type = image_get_type (os_hdr);
236 images.os.comp = image_get_comp (os_hdr);
237 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200238
Kumar Gala396f6352008-08-15 08:24:41 -0500239 images.os.end = image_get_image_end (os_hdr);
240 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100241 break;
242#if defined(CONFIG_FIT)
243 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100244 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500245 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100246 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100247 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000248 return 1;
249 }
wdenk47d1a6e2002-11-03 00:01:44 +0000250
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100251 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500252 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100253 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100254 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100255 return 1;
256 }
wdenk47d1a6e2002-11-03 00:01:44 +0000257
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100258 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500259 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100260 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100261 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100262 return 1;
263 }
wdenk47d1a6e2002-11-03 00:01:44 +0000264
Kumar Gala396f6352008-08-15 08:24:41 -0500265 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100266
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100267 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500268 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100269 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100270 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100271 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000272 }
273 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100274#endif
275 default:
276 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000277 return 1;
278 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100279
Kumar Galac160a952008-08-15 08:24:36 -0500280 /* find kernel entry point */
281 if (images.legacy_hdr_valid) {
282 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
283#if defined(CONFIG_FIT)
284 } else if (images.fit_uname_os) {
285 ret = fit_image_get_entry (images.fit_hdr_os,
286 images.fit_noffset_os, &images.ep);
287 if (ret) {
288 puts ("Can't get entry point property!\n");
289 return 1;
290 }
291#endif
292 } else {
293 puts ("Could not find kernel entry point!\n");
294 return 1;
295 }
296
Heiko Schocher24de2f42010-03-29 13:15:48 +0200297 if (((images.os.type == IH_TYPE_KERNEL) ||
298 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100299 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500300 /* find ramdisk */
301 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
302 &images.rd_start, &images.rd_end);
303 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500304 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500305 return 1;
306 }
Kumar Gala06a09912008-08-15 08:24:38 -0500307
308#if defined(CONFIG_OF_LIBFDT)
309 /* find flattened device tree */
310 ret = boot_get_fdt (flag, argc, argv, &images,
311 &images.ft_addr, &images.ft_len);
312 if (ret) {
313 puts ("Could not find a valid device tree\n");
314 return 1;
315 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500316
317 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500318#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500319 }
320
Kumar Gala396f6352008-08-15 08:24:41 -0500321 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500322 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500323
324 return 0;
325}
326
327#define BOOTM_ERR_RESET -1
328#define BOOTM_ERR_OVERLAP -2
329#define BOOTM_ERR_UNIMPLEMENTED -3
330static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
331{
332 uint8_t comp = os.comp;
333 ulong load = os.load;
334 ulong blob_start = os.start;
335 ulong blob_end = os.end;
336 ulong image_start = os.image_start;
337 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200338 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200339#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
340 int ret;
341#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500342
343 const char *type_name = genimg_get_type_name (os.type);
344
345 switch (comp) {
346 case IH_COMP_NONE:
Lei Wen02cf3452011-01-10 18:21:15 +0800347 if (load == blob_start || load == image_start) {
Kumar Gala396f6352008-08-15 08:24:41 -0500348 printf (" XIP %s ... ", type_name);
349 } else {
350 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400351 memmove_wd ((void *)load, (void *)image_start,
352 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500353 }
354 *load_end = load + image_len;
355 puts("OK\n");
356 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500357#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500358 case IH_COMP_GZIP:
359 printf (" Uncompressing %s ... ", type_name);
360 if (gunzip ((void *)load, unc_len,
361 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100362 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500363 "- must RESET board to recover\n");
364 if (boot_progress)
365 show_boot_progress (-6);
366 return BOOTM_ERR_RESET;
367 }
368
369 *load_end = load + image_len;
370 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500371#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500372#ifdef CONFIG_BZIP2
373 case IH_COMP_BZIP2:
374 printf (" Uncompressing %s ... ", type_name);
375 /*
376 * If we've got less than 4 MB of malloc() space,
377 * use slower decompression algorithm which requires
378 * at most 2300 KB of memory.
379 */
380 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
381 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200382 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500383 if (i != BZ_OK) {
384 printf ("BUNZIP2: uncompress or overwrite error %d "
385 "- must RESET board to recover\n", i);
386 if (boot_progress)
387 show_boot_progress (-6);
388 return BOOTM_ERR_RESET;
389 }
390
391 *load_end = load + unc_len;
392 break;
393#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200394#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400395 case IH_COMP_LZMA: {
396 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200397 printf (" Uncompressing %s ... ", type_name);
398
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200399 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400400 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200401 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400402 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200403 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200404 printf ("LZMA: uncompress or overwrite error %d "
405 "- must RESET board to recover\n", ret);
406 show_boot_progress (-6);
407 return BOOTM_ERR_RESET;
408 }
409 *load_end = load + unc_len;
410 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400411 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200412#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100413#ifdef CONFIG_LZO
414 case IH_COMP_LZO:
415 printf (" Uncompressing %s ... ", type_name);
416
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200417 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100418 image_len, (unsigned char *)load,
419 &unc_len);
420 if (ret != LZO_E_OK) {
421 printf ("LZO: uncompress or overwrite error %d "
422 "- must RESET board to recover\n", ret);
423 if (boot_progress)
424 show_boot_progress (-6);
425 return BOOTM_ERR_RESET;
426 }
427
428 *load_end = load + unc_len;
429 break;
430#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500431 default:
432 printf ("Unimplemented compression type %d\n", comp);
433 return BOOTM_ERR_UNIMPLEMENTED;
434 }
Diana CRACIUN99ffccb2011-08-31 02:45:23 +0000435
436 flush_cache(load, (*load_end - load) * sizeof(ulong));
437
Kumar Gala396f6352008-08-15 08:24:41 -0500438 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200439 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500440 if (boot_progress)
441 show_boot_progress (7);
442
443 if ((load < blob_end) && (*load_end > blob_start)) {
444 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 +0200445 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500446
447 return BOOTM_ERR_OVERLAP;
448 }
449
450 return 0;
451}
452
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200453static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200454{
455 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200456 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200457
458 /* Don't start if "autostart" is set to "no" */
459 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
460 char buf[32];
461 sprintf(buf, "%lX", images.os.image_len);
462 setenv("filesize", buf);
463 return 0;
464 }
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200465 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200466 (*appl)(argc-1, &argv[1]);
467
468 return 0;
469}
470
Kumar Gala49c3a862008-10-21 17:25:45 -0500471/* we overload the cmd field with our state machine info instead of a
472 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100473static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500474 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
475 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600476#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500477 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
478#endif
479#ifdef CONFIG_OF_LIBFDT
480 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
481#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500482 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600483 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500484 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
485 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
486};
487
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200488int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500489{
490 int ret = 0;
491 int state;
492 cmd_tbl_t *c;
493 boot_os_fn *boot_fn;
494
495 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
496
497 if (c) {
498 state = (int)c->cmd;
499
500 /* treat start special since it resets the state machine */
501 if (state == BOOTM_STATE_START) {
502 argc--;
503 argv++;
504 return bootm_start(cmdtp, flag, argc, argv);
505 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200506 } else {
507 /* Unrecognized command */
508 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500509 }
510
511 if (images.state >= state) {
512 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200513 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500514 }
515
516 images.state |= state;
517 boot_fn = boot_os[images.os.os];
518
519 switch (state) {
520 ulong load_end;
521 case BOOTM_STATE_START:
522 /* should never occur */
523 break;
524 case BOOTM_STATE_LOADOS:
525 ret = bootm_load_os(images.os, &load_end, 0);
526 if (ret)
527 return ret;
528
529 lmb_reserve(&images.lmb, images.os.load,
530 (load_end - images.os.load));
531 break;
John Rigbyfca43cc2010-10-13 13:57:35 -0600532#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500533 case BOOTM_STATE_RAMDISK:
534 {
535 ulong rd_len = images.rd_end - images.rd_start;
536 char str[17];
537
538 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
539 rd_len, &images.initrd_start, &images.initrd_end);
540 if (ret)
541 return ret;
542
543 sprintf(str, "%lx", images.initrd_start);
544 setenv("initrd_start", str);
545 sprintf(str, "%lx", images.initrd_end);
546 setenv("initrd_end", str);
547 }
548 break;
549#endif
Grant Likelyed59e582011-03-28 09:58:49 +0000550#if defined(CONFIG_OF_LIBFDT)
Kumar Gala49c3a862008-10-21 17:25:45 -0500551 case BOOTM_STATE_FDT:
552 {
Grant Likely55b0a392011-03-28 09:59:01 +0000553 boot_fdt_add_mem_rsv_regions(&images.lmb,
554 images.ft_addr);
Grant Likely590d3ca2011-03-28 09:58:34 +0000555 ret = boot_relocate_fdt(&images.lmb,
Kumar Gala49c3a862008-10-21 17:25:45 -0500556 &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;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200595#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500596 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
Mike Frysinger67d668b2011-06-05 13:43:02 +0000714int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
715{
716 const char *ep = getenv("autostart");
717
718 if (ep && !strcmp(ep, "yes")) {
719 char *local_args[2];
720 local_args[0] = (char *)cmd;
721 local_args[1] = NULL;
722 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
723 return do_bootm(cmdtp, 0, 1, local_args);
724 }
725
726 return 0;
727}
728
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100729/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100730 * image_get_kernel - verify legacy format kernel image
731 * @img_addr: in RAM address of the legacy format image to be verified
732 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100733 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100734 * image_get_kernel() verifies legacy image integrity and returns pointer to
735 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100736 *
737 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100738 * pointer to a legacy image header if valid image was found
739 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100740 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100741static image_header_t *image_get_kernel (ulong img_addr, int verify)
742{
743 image_header_t *hdr = (image_header_t *)img_addr;
744
745 if (!image_check_magic(hdr)) {
746 puts ("Bad Magic Number\n");
747 show_boot_progress (-1);
748 return NULL;
749 }
750 show_boot_progress (2);
751
752 if (!image_check_hcrc (hdr)) {
753 puts ("Bad Header Checksum\n");
754 show_boot_progress (-2);
755 return NULL;
756 }
757
758 show_boot_progress (3);
759 image_print_contents (hdr);
760
761 if (verify) {
762 puts (" Verifying Checksum ... ");
763 if (!image_check_dcrc (hdr)) {
764 printf ("Bad Data CRC\n");
765 show_boot_progress (-3);
766 return NULL;
767 }
768 puts ("OK\n");
769 }
770 show_boot_progress (4);
771
772 if (!image_check_target_arch (hdr)) {
773 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
774 show_boot_progress (-4);
775 return NULL;
776 }
777 return hdr;
778}
779
780/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100781 * fit_check_kernel - verify FIT format kernel subimage
782 * @fit_hdr: pointer to the FIT image header
783 * os_noffset: kernel subimage node offset within FIT image
784 * @verify: data CRC verification flag
785 *
786 * fit_check_kernel() verifies integrity of the kernel subimage and from
787 * specified FIT image.
788 *
789 * returns:
790 * 1, on success
791 * 0, on failure
792 */
793#if defined (CONFIG_FIT)
794static int fit_check_kernel (const void *fit, int os_noffset, int verify)
795{
796 fit_image_print (fit, os_noffset, " ");
797
798 if (verify) {
799 puts (" Verifying Hash Integrity ... ");
800 if (!fit_image_check_hashes (fit, os_noffset)) {
801 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100802 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100803 return 0;
804 }
805 puts ("OK\n");
806 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100807 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100808
809 if (!fit_image_check_target_arch (fit, os_noffset)) {
810 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100811 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100812 return 0;
813 }
814
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100815 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100816 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
817 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100818 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100819 return 0;
820 }
821
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100822 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100823 return 1;
824}
825#endif /* CONFIG_FIT */
826
827/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100828 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100829 * @os_data: pointer to a ulong variable, will hold os data start address
830 * @os_len: pointer to a ulong variable, will hold os data length
831 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100832 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100833 * and locates kernel data.
834 *
835 * returns:
836 * pointer to image header if valid image was found, plus kernel start
837 * address and length, otherwise NULL
838 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200839static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100840 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100841{
842 image_header_t *hdr;
843 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100844#if defined(CONFIG_FIT)
845 void *fit_hdr;
846 const char *fit_uname_config = NULL;
847 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100848 const void *data;
849 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100850 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100851 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100852#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100853
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100854 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100855 if (argc < 2) {
856 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100857 debug ("* kernel: default image load address = 0x%08lx\n",
858 load_addr);
859#if defined(CONFIG_FIT)
860 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
861 &fit_uname_config)) {
862 debug ("* kernel: config '%s' from image at 0x%08lx\n",
863 fit_uname_config, img_addr);
864 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
865 &fit_uname_kernel)) {
866 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
867 fit_uname_kernel, img_addr);
868#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100869 } else {
870 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100871 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100872 }
873
874 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100875
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100876 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100877 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100878
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100879 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100880 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100881 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100882 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100883 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
884 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100885 hdr = image_get_kernel (img_addr, images->verify);
886 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100887 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100888 show_boot_progress (5);
889
Marian Balakowicz6986a382008-03-12 10:01:05 +0100890 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100891 switch (image_get_type (hdr)) {
892 case IH_TYPE_KERNEL:
893 *os_data = image_get_data (hdr);
894 *os_len = image_get_data_size (hdr);
895 break;
896 case IH_TYPE_MULTI:
897 image_multi_getimg (hdr, 0, os_data, os_len);
898 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200899 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200900 *os_data = image_get_data (hdr);
901 *os_len = image_get_data_size (hdr);
902 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100903 default:
904 printf ("Wrong Image Type for %s command\n", cmdtp->name);
905 show_boot_progress (-5);
906 return NULL;
907 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100908
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200909 /*
910 * copy image header to allow for image overwrites during kernel
911 * decompression.
912 */
913 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
914
915 /* save pointer to image header */
916 images->legacy_hdr_os = hdr;
917
918 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100919 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100920 break;
921#if defined(CONFIG_FIT)
922 case IMAGE_FORMAT_FIT:
923 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100924 printf ("## Booting kernel from FIT Image at %08lx ...\n",
925 img_addr);
926
927 if (!fit_check_format (fit_hdr)) {
928 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100929 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100930 return NULL;
931 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100932 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100933
934 if (!fit_uname_kernel) {
935 /*
936 * no kernel image node unit name, try to get config
937 * node first. If config unit node name is NULL
938 * fit_conf_get_node() will try to find default config node
939 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100940 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100941 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
942 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100943 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100944 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100945 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100946 /* save configuration uname provided in the first
947 * bootm argument
948 */
949 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
950 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
951 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100952
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100953 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100954 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
955 } else {
956 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100957 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100958 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
959 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100960 if (os_noffset < 0) {
961 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100962 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100963 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100964
965 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
966
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100967 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100968 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
969 return NULL;
970
971 /* get kernel image data address and length */
972 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
973 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100974 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100975 return NULL;
976 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100977 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100978
979 *os_len = len;
980 *os_data = (ulong)data;
981 images->fit_hdr_os = fit_hdr;
982 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100983 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100984 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100985#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100986 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100987 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100988 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100989 return NULL;
990 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100991
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200992 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100993 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100994
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100995 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100996}
997
wdenk0d498392003-07-01 21:06:45 +0000998U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200999 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -06001000 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001001 "[addr [arg ...]]\n - boot application image stored in memory\n"
1002 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
1003 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +01001004#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001005 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +02001006 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -05001007 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
1008 "\tuse a '-' for the second argument. If you do not pass a third\n"
1009 "\ta bd_info struct will be passed instead\n"
1010#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +01001011#if defined(CONFIG_FIT)
1012 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1013 "\tmust be extened to include component or configuration unit name:\n"
1014 "\taddr:<subimg_uname> - direct component image specification\n"
1015 "\taddr#<conf_uname> - configuration specification\n"
1016 "\tUse iminfo command to get the list of existing component\n"
1017 "\timages and configurations.\n"
1018#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001019 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1020 "must be\n"
1021 "issued in the order below (it's ok to not issue all sub-commands):\n"
1022 "\tstart [addr [arg ...]]\n"
1023 "\tloados - load OS image\n"
1024#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1025 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1026#endif
1027#if defined(CONFIG_OF_LIBFDT)
1028 "\tfdt - relocate flat device tree\n"
1029#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001030 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001031 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001032 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001033 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001034);
1035
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001036/*******************************************************************/
1037/* bootd - boot default image */
1038/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001039#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001040int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001041{
1042 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001043
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001044#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001045 if (run_command (getenv ("bootcmd"), flag) < 0)
1046 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001047#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001048 if (parse_string_outer (getenv ("bootcmd"),
1049 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1050 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001051#endif
1052 return rcode;
1053}
wdenk8bde7f72003-06-27 21:31:46 +00001054
wdenk0d498392003-07-01 21:06:45 +00001055U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001056 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001057 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001058 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001059);
1060
1061/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001062U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001063 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001064 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001065 ""
wdenk8bde7f72003-06-27 21:31:46 +00001066);
1067
wdenk47d1a6e2002-11-03 00:01:44 +00001068#endif
1069
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001070
1071/*******************************************************************/
1072/* iminfo - print header info for a requested image */
1073/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001074#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001075int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001076{
1077 int arg;
1078 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001079 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001080
1081 if (argc < 2) {
1082 return image_info (load_addr);
1083 }
1084
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001085 for (arg = 1; arg < argc; ++arg) {
1086 addr = simple_strtoul (argv[arg], NULL, 16);
1087 if (image_info (addr) != 0)
1088 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001089 }
1090 return rcode;
1091}
1092
1093static int image_info (ulong addr)
1094{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001095 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001096
1097 printf ("\n## Checking Image at %08lx ...\n", addr);
1098
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001099 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001100 case IMAGE_FORMAT_LEGACY:
1101 puts (" Legacy image found\n");
1102 if (!image_check_magic (hdr)) {
1103 puts (" Bad Magic Number\n");
1104 return 1;
1105 }
1106
1107 if (!image_check_hcrc (hdr)) {
1108 puts (" Bad Header Checksum\n");
1109 return 1;
1110 }
1111
1112 image_print_contents (hdr);
1113
1114 puts (" Verifying Checksum ... ");
1115 if (!image_check_dcrc (hdr)) {
1116 puts (" Bad Data CRC\n");
1117 return 1;
1118 }
1119 puts ("OK\n");
1120 return 0;
1121#if defined(CONFIG_FIT)
1122 case IMAGE_FORMAT_FIT:
1123 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001124
1125 if (!fit_check_format (hdr)) {
1126 puts ("Bad FIT image format!\n");
1127 return 1;
1128 }
1129
1130 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001131
1132 if (!fit_all_image_check_hashes (hdr)) {
1133 puts ("Bad hash in FIT image!\n");
1134 return 1;
1135 }
1136
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001137 return 0;
1138#endif
1139 default:
1140 puts ("Unknown image format!\n");
1141 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001142 }
1143
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001144 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001145}
wdenk0d498392003-07-01 21:06:45 +00001146
1147U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001148 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001149 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001150 "addr [addr ...]\n"
1151 " - print header information for application image starting at\n"
1152 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001153 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001154);
Jon Loeliger90253172007-07-10 11:02:44 -05001155#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001156
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001157
1158/*******************************************************************/
1159/* imls - list all images found in flash */
1160/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001161#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001162int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001163{
1164 flash_info_t *info;
1165 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001166 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001167
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001168 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001169 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001170
wdenk27b207f2003-07-24 23:38:38 +00001171 if (info->flash_id == FLASH_UNKNOWN)
1172 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001173 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001174
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001175 hdr = (void *)info->start[j];
1176 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001177 goto next_sector;
1178
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001179 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001180 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001181 if (!image_check_hcrc (hdr))
1182 goto next_sector;
1183
1184 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1185 image_print_contents (hdr);
1186
1187 puts (" Verifying Checksum ... ");
1188 if (!image_check_dcrc (hdr)) {
1189 puts ("Bad Data CRC\n");
1190 } else {
1191 puts ("OK\n");
1192 }
1193 break;
1194#if defined(CONFIG_FIT)
1195 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001196 if (!fit_check_format (hdr))
1197 goto next_sector;
1198
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001199 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001200 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001201 break;
1202#endif
1203 default:
wdenk27b207f2003-07-24 23:38:38 +00001204 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001205 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001206
wdenkbdccc4f2003-08-05 17:43:17 +00001207next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001208 }
wdenkbdccc4f2003-08-05 17:43:17 +00001209next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001210 }
1211
1212 return (0);
1213}
1214
1215U_BOOT_CMD(
1216 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001217 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001218 "\n"
1219 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001220 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001221);
Jon Loeliger90253172007-07-10 11:02:44 -05001222#endif
wdenk27b207f2003-07-24 23:38:38 +00001223
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001224/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001225/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001226/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001227#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001228static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001229{
1230 char buf[256], *start, *end;
1231 char *cmdline = getenv ("bootargs");
1232
1233 /* Only fix cmdline when requested */
1234 if (!(gd->flags & GD_FLG_SILENT))
1235 return;
1236
1237 debug ("before silent fix-up: %s\n", cmdline);
1238 if (cmdline) {
1239 if ((start = strstr (cmdline, "console=")) != NULL) {
1240 end = strchr (start, ' ');
1241 strncpy (buf, cmdline, (start - cmdline + 8));
1242 if (end)
1243 strcpy (buf + (start - cmdline + 8), end);
1244 else
1245 buf[start - cmdline + 8] = '\0';
1246 } else {
1247 strcpy (buf, cmdline);
1248 strcat (buf, " console=");
1249 }
1250 } else {
1251 strcpy (buf, "console=");
1252 }
1253
1254 setenv ("bootargs", buf);
1255 debug ("after silent fix-up: %s\n", buf);
1256}
1257#endif /* CONFIG_SILENT_CONSOLE */
1258
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001259
1260/*******************************************************************/
1261/* OS booting routines */
1262/*******************************************************************/
1263
Kumar Galab1d0db12008-10-21 17:25:47 -05001264#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001265static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001266 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001267{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001268 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001269 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001270 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001271 char *consdev;
1272 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001273
Kumar Gala49c3a862008-10-21 17:25:45 -05001274 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1275 return 1;
1276
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001277#if defined(CONFIG_FIT)
1278 if (!images->legacy_hdr_valid) {
1279 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001280 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001281 }
1282#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001283 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001284
1285 /*
1286 * Booting a (NetBSD) kernel image
1287 *
1288 * This process is pretty similar to a standalone application:
1289 * The (first part of an multi-) image must be a stage-2 loader,
1290 * which in turn is responsible for loading & invoking the actual
1291 * kernel. The only differences are the parameters being passed:
1292 * besides the board info strucure, the loader expects a command
1293 * line, the name of the console device, and (optionally) the
1294 * address of the original image header.
1295 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001296 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001297 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001298 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1299 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001300 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001301 }
wdenk47d1a6e2002-11-03 00:01:44 +00001302
1303 consdev = "";
1304#if defined (CONFIG_8xx_CONS_SMC1)
1305 consdev = "smc1";
1306#elif defined (CONFIG_8xx_CONS_SMC2)
1307 consdev = "smc2";
1308#elif defined (CONFIG_8xx_CONS_SCC2)
1309 consdev = "scc2";
1310#elif defined (CONFIG_8xx_CONS_SCC3)
1311 consdev = "scc3";
1312#endif
1313
1314 if (argc > 2) {
1315 ulong len;
1316 int i;
1317
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001318 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001319 len += strlen (argv[i]) + 1;
1320 cmdline = malloc (len);
1321
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001322 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001323 if (i > 2)
1324 cmdline[len++] = ' ';
1325 strcpy (&cmdline[len], argv[i]);
1326 len += strlen (argv[i]);
1327 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001328 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001329 cmdline = "";
1330 }
1331
Kumar Galac160a952008-08-15 08:24:36 -05001332 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001333
1334 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1335 (ulong)loader);
1336
1337 show_boot_progress (15);
1338
1339 /*
1340 * NetBSD Stage-2 Loader Parameters:
1341 * r3: ptr to board info data
1342 * r4: image address
1343 * r5: console device
1344 * r6: boot args string
1345 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001346 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001347
1348 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001349}
Kumar Galab1d0db12008-10-21 17:25:47 -05001350#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001351
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001352#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001353static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001354 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001355{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001356 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001357
Kumar Gala49c3a862008-10-21 17:25:45 -05001358 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1359 return 1;
1360
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001361#if defined(CONFIG_FIT)
1362 if (!images->legacy_hdr_valid) {
1363 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001364 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001365 }
1366#endif
1367
1368 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001369
1370 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001371}
1372#endif /* CONFIG_LYNXKDI */
1373
Kumar Galab1d0db12008-10-21 17:25:47 -05001374#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001375static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001376 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001377{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001378 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001379
Kumar Gala49c3a862008-10-21 17:25:45 -05001380 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1381 return 1;
1382
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001383#if defined(CONFIG_FIT)
1384 if (!images->legacy_hdr_valid) {
1385 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001386 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001387 }
1388#endif
1389
Kumar Galac160a952008-08-15 08:24:36 -05001390 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001391
1392 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1393 (ulong)entry_point);
1394
Heiko Schocherfad63402007-07-13 09:54:17 +02001395 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001396
1397 /*
1398 * RTEMS Parameters:
1399 * r3: ptr to board info data
1400 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001401 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001402
1403 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001404}
Kumar Galab1d0db12008-10-21 17:25:47 -05001405#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001406
Torkel Lundgren3df61952010-09-28 11:05:36 +02001407#if defined(CONFIG_BOOTM_OSE)
1408static int do_bootm_ose (int flag, int argc, char * const argv[],
1409 bootm_headers_t *images)
1410{
1411 void (*entry_point)(void);
1412
1413 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1414 return 1;
1415
1416#if defined(CONFIG_FIT)
1417 if (!images->legacy_hdr_valid) {
1418 fit_unsupported_reset ("OSE");
1419 return 1;
1420 }
1421#endif
1422
1423 entry_point = (void (*)(void))images->ep;
1424
1425 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1426 (ulong)entry_point);
1427
1428 show_boot_progress (15);
1429
1430 /*
1431 * OSE Parameters:
1432 * None
1433 */
1434 (*entry_point)();
1435
1436 return 1;
1437}
1438#endif /* CONFIG_BOOTM_OSE */
1439
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001440#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001441static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001442 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001443{
wdenk47d1a6e2002-11-03 00:01:44 +00001444 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001445
Kumar Gala49c3a862008-10-21 17:25:45 -05001446 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1447 return 1;
1448
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001449#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001450 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001451 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001452 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001453 }
1454#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001455
Kumar Galac160a952008-08-15 08:24:36 -05001456 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001457 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001458 do_bootvx(NULL, 0, 0, NULL);
1459
1460 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001461}
1462
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001463static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001464 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001465{
wdenk47d1a6e2002-11-03 00:01:44 +00001466 char *local_args[2];
1467 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001468
Kumar Gala49c3a862008-10-21 17:25:45 -05001469 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1470 return 1;
1471
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001472#if defined(CONFIG_FIT)
1473 if (!images->legacy_hdr_valid) {
1474 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001475 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001476 }
1477#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001478
Kumar Galac160a952008-08-15 08:24:36 -05001479 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001480 local_args[0] = argv[0];
1481 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001482 do_bootelf(NULL, 0, 2, local_args);
1483
1484 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001485}
Jon Loeliger90253172007-07-10 11:02:44 -05001486#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001487
1488#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001489static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001490 bootm_headers_t *images)
1491{
1492 void (*entry_point)(void);
1493
Kumar Gala49c3a862008-10-21 17:25:45 -05001494 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1495 return 1;
1496
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001497#if defined(CONFIG_FIT)
1498 if (!images->legacy_hdr_valid) {
1499 fit_unsupported_reset ("INTEGRITY");
1500 return 1;
1501 }
1502#endif
1503
1504 entry_point = (void (*)(void))images->ep;
1505
1506 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1507 (ulong)entry_point);
1508
1509 show_boot_progress (15);
1510
1511 /*
1512 * INTEGRITY Parameters:
1513 * None
1514 */
1515 (*entry_point)();
1516
1517 return 1;
1518}
1519#endif