blob: 86c81220d2cd88030c8d6c0e2050b3ddf06d6d49 [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
Marian Balakowicz1ee11802008-01-08 18:17:10 +010060DECLARE_GLOBAL_DATA_PTR;
61
62extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020063#ifndef CONFIG_SYS_BOOTM_LEN
64#define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000065#endif
66
Marian Balakowicz321359f2008-01-08 18:11:43 +010067#ifdef CONFIG_BZIP2
68extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000069#endif
70
Jon Loeligerbaa26db2007-07-08 17:51:39 -050071#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000072static int image_info (unsigned long addr);
73#endif
wdenk27b207f2003-07-24 23:38:38 +000074
Jon Loeligerbaa26db2007-07-08 17:51:39 -050075#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000076#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020077extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000078static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
79#endif
80
Marian Balakowicz1ee11802008-01-08 18:17:10 +010081#ifdef CONFIG_SILENT_CONSOLE
82static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000083#endif
84
Marian Balakowicz6986a382008-03-12 10:01:05 +010085static image_header_t *image_get_kernel (ulong img_addr, int verify);
86#if defined(CONFIG_FIT)
87static int fit_check_kernel (const void *fit, int os_noffset, int verify);
88#endif
89
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010090static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010091 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010092extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000093
wdenk47d1a6e2002-11-03 00:01:44 +000094/*
95 * Continue booting an OS image; caller already has:
96 * - copied image header to global variable `header'
97 * - checked header magic number, checksums (both header & image),
98 * - verified image architecture (PPC) and type (KERNEL or MULTI),
99 * - loaded (first part of) image to header load address,
100 * - disabled interrupts.
101 */
Kumar Gala40d7e992008-08-15 08:24:45 -0500102typedef int boot_os_fn (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100103 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000104
Kumar Galab1d0db12008-10-21 17:25:47 -0500105#define CONFIG_BOOTM_LINUX 1
106#define CONFIG_BOOTM_NETBSD 1
107#define CONFIG_BOOTM_RTEMS 1
108
109#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
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500122#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100123static boot_os_fn do_bootm_vxworks;
124static boot_os_fn do_bootm_qnxelf;
125int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
126int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500127#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500128#if defined(CONFIG_INTEGRITY)
129static boot_os_fn do_bootm_integrity;
130#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000131
Kumar Galabe083152008-10-21 17:25:44 -0500132boot_os_fn * boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500133#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500134 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500135#endif
136#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500137 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500138#endif
Kumar Galabe083152008-10-21 17:25:44 -0500139#ifdef CONFIG_LYNXKDI
140 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
141#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500142#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500143 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500144#endif
Kumar Galabe083152008-10-21 17:25:44 -0500145#if defined(CONFIG_CMD_ELF)
146 [IH_OS_VXWORKS] = do_bootm_vxworks,
147 [IH_OS_QNX] = do_bootm_qnxelf,
148#endif
149#ifdef CONFIG_INTEGRITY
150 [IH_OS_INTEGRITY] = do_bootm_integrity,
151#endif
152};
153
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200154ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100155static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100156
Kumar Galae822d7f2008-02-27 21:51:49 -0600157void __board_lmb_reserve(struct lmb *lmb)
158{
159 /* please define platform specific board_lmb_reserve() */
160}
161void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000162
Kumar Gala76da19d2008-10-16 21:52:08 -0500163void __arch_lmb_reserve(struct lmb *lmb)
164{
165 /* please define platform specific arch_lmb_reserve() */
166}
167void arch_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__arch_lmb_reserve")));
168
Kumar Galac4f94192008-08-15 08:24:37 -0500169#if defined(__ARM__)
170 #define IH_INITRD_ARCH IH_ARCH_ARM
171#elif defined(__avr32__)
172 #define IH_INITRD_ARCH IH_ARCH_AVR32
173#elif defined(__bfin__)
174 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
175#elif defined(__I386__)
176 #define IH_INITRD_ARCH IH_ARCH_I386
177#elif defined(__M68K__)
178 #define IH_INITRD_ARCH IH_ARCH_M68K
179#elif defined(__microblaze__)
180 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
181#elif defined(__mips__)
182 #define IH_INITRD_ARCH IH_ARCH_MIPS
183#elif defined(__nios__)
184 #define IH_INITRD_ARCH IH_ARCH_NIOS
185#elif defined(__nios2__)
186 #define IH_INITRD_ARCH IH_ARCH_NIOS2
187#elif defined(__PPC__)
188 #define IH_INITRD_ARCH IH_ARCH_PPC
189#elif defined(__sh__)
190 #define IH_INITRD_ARCH IH_ARCH_SH
191#elif defined(__sparc__)
192 #define IH_INITRD_ARCH IH_ARCH_SPARC
193#else
194# error Unknown CPU type
195#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000196
Kumar Gala396f6352008-08-15 08:24:41 -0500197static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000198{
Becky Bruce391fd932008-06-09 20:37:18 -0500199 ulong mem_start;
200 phys_size_t mem_size;
Kumar Gala396f6352008-08-15 08:24:41 -0500201 void *os_hdr;
Kumar Galac4f94192008-08-15 08:24:37 -0500202 int ret;
wdenk47d1a6e2002-11-03 00:01:44 +0000203
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100204 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200205 images.verify = getenv_yesno ("verify");
wdenk47d1a6e2002-11-03 00:01:44 +0000206
Kumar Galae906cfa2008-08-15 08:24:40 -0500207 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000208
Kumar Galad3f2fa02008-02-27 21:51:50 -0600209 mem_start = getenv_bootm_low();
210 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000211
Kumar Galae906cfa2008-08-15 08:24:40 -0500212 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000213
Kumar Gala76da19d2008-10-16 21:52:08 -0500214 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500215 board_lmb_reserve(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000216
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100217 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100218 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500219 &images, &images.os.image_start, &images.os.image_len);
220 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100221 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000222 return 1;
223 }
wdenk47d1a6e2002-11-03 00:01:44 +0000224
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100225 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100226 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100227 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500228 images.os.type = image_get_type (os_hdr);
229 images.os.comp = image_get_comp (os_hdr);
230 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200231
Kumar Gala396f6352008-08-15 08:24:41 -0500232 images.os.end = image_get_image_end (os_hdr);
233 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100234 break;
235#if defined(CONFIG_FIT)
236 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100237 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500238 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100239 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100240 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000241 return 1;
242 }
wdenk47d1a6e2002-11-03 00:01:44 +0000243
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100244 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500245 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100246 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100247 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100248 return 1;
249 }
wdenk47d1a6e2002-11-03 00:01:44 +0000250
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100251 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500252 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100253 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100254 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100255 return 1;
256 }
wdenk47d1a6e2002-11-03 00:01:44 +0000257
Kumar Gala396f6352008-08-15 08:24:41 -0500258 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100259
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100260 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500261 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100262 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100263 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100264 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000265 }
266 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100267#endif
268 default:
269 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000270 return 1;
271 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100272
Kumar Galac160a952008-08-15 08:24:36 -0500273 /* find kernel entry point */
274 if (images.legacy_hdr_valid) {
275 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
276#if defined(CONFIG_FIT)
277 } else if (images.fit_uname_os) {
278 ret = fit_image_get_entry (images.fit_hdr_os,
279 images.fit_noffset_os, &images.ep);
280 if (ret) {
281 puts ("Can't get entry point property!\n");
282 return 1;
283 }
284#endif
285 } else {
286 puts ("Could not find kernel entry point!\n");
287 return 1;
288 }
289
Kumar Gala396f6352008-08-15 08:24:41 -0500290 if (images.os.os == IH_OS_LINUX) {
Kumar Galac4f94192008-08-15 08:24:37 -0500291 /* find ramdisk */
292 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
293 &images.rd_start, &images.rd_end);
294 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500295 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500296 return 1;
297 }
Kumar Gala06a09912008-08-15 08:24:38 -0500298
299#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200300#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500301 /* find flattened device tree */
302 ret = boot_get_fdt (flag, argc, argv, &images,
303 &images.ft_addr, &images.ft_len);
304 if (ret) {
305 puts ("Could not find a valid device tree\n");
306 return 1;
307 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500308
309 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500310#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200311#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500312 }
313
Kumar Gala396f6352008-08-15 08:24:41 -0500314 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500315 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500316
317 return 0;
318}
319
320#define BOOTM_ERR_RESET -1
321#define BOOTM_ERR_OVERLAP -2
322#define BOOTM_ERR_UNIMPLEMENTED -3
323static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
324{
325 uint8_t comp = os.comp;
326 ulong load = os.load;
327 ulong blob_start = os.start;
328 ulong blob_end = os.end;
329 ulong image_start = os.image_start;
330 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200331 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Kumar Gala396f6352008-08-15 08:24:41 -0500332
333 const char *type_name = genimg_get_type_name (os.type);
334
335 switch (comp) {
336 case IH_COMP_NONE:
337 if (load == blob_start) {
338 printf (" XIP %s ... ", type_name);
339 } else {
340 printf (" Loading %s ... ", type_name);
341
Minkyu Kangfca0cec2009-02-18 09:05:52 +0900342 if (load != image_start) {
343 memmove_wd ((void *)load,
344 (void *)image_start, image_len, CHUNKSZ);
345 }
Kumar Gala396f6352008-08-15 08:24:41 -0500346 }
347 *load_end = load + image_len;
348 puts("OK\n");
349 break;
350 case IH_COMP_GZIP:
351 printf (" Uncompressing %s ... ", type_name);
352 if (gunzip ((void *)load, unc_len,
353 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100354 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500355 "- must RESET board to recover\n");
356 if (boot_progress)
357 show_boot_progress (-6);
358 return BOOTM_ERR_RESET;
359 }
360
361 *load_end = load + image_len;
362 break;
363#ifdef CONFIG_BZIP2
364 case IH_COMP_BZIP2:
365 printf (" Uncompressing %s ... ", type_name);
366 /*
367 * If we've got less than 4 MB of malloc() space,
368 * use slower decompression algorithm which requires
369 * at most 2300 KB of memory.
370 */
371 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
372 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200373 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500374 if (i != BZ_OK) {
375 printf ("BUNZIP2: uncompress or overwrite error %d "
376 "- must RESET board to recover\n", i);
377 if (boot_progress)
378 show_boot_progress (-6);
379 return BOOTM_ERR_RESET;
380 }
381
382 *load_end = load + unc_len;
383 break;
384#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200385#ifdef CONFIG_LZMA
386 case IH_COMP_LZMA:
387 printf (" Uncompressing %s ... ", type_name);
388
389 int ret = lzmaBuffToBuffDecompress(
390 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200391 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200392 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200393 printf ("LZMA: uncompress or overwrite error %d "
394 "- must RESET board to recover\n", ret);
395 show_boot_progress (-6);
396 return BOOTM_ERR_RESET;
397 }
398 *load_end = load + unc_len;
399 break;
400#endif /* CONFIG_LZMA */
Kumar Gala396f6352008-08-15 08:24:41 -0500401 default:
402 printf ("Unimplemented compression type %d\n", comp);
403 return BOOTM_ERR_UNIMPLEMENTED;
404 }
405 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200406 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500407 if (boot_progress)
408 show_boot_progress (7);
409
410 if ((load < blob_end) && (*load_end > blob_start)) {
411 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 +0200412 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500413
414 return BOOTM_ERR_OVERLAP;
415 }
416
417 return 0;
418}
419
Detlev Zundelf97ec302009-07-13 16:01:19 +0200420static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
421{
422 char *s;
423 int (*appl)(int, char *[]);
424
425 /* Don't start if "autostart" is set to "no" */
426 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
427 char buf[32];
428 sprintf(buf, "%lX", images.os.image_len);
429 setenv("filesize", buf);
430 return 0;
431 }
432 appl = (int (*)(int, char *[]))ntohl(images.ep);
433 (*appl)(argc-1, &argv[1]);
434
435 return 0;
436}
437
Kumar Gala49c3a862008-10-21 17:25:45 -0500438/* we overload the cmd field with our state machine info instead of a
439 * function pointer */
440cmd_tbl_t cmd_bootm_sub[] = {
441 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
442 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
443#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
444 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
445#endif
446#ifdef CONFIG_OF_LIBFDT
447 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
448#endif
449 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
450 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
451 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
452 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
453};
454
455int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
456{
457 int ret = 0;
458 int state;
459 cmd_tbl_t *c;
460 boot_os_fn *boot_fn;
461
462 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
463
464 if (c) {
465 state = (int)c->cmd;
466
467 /* treat start special since it resets the state machine */
468 if (state == BOOTM_STATE_START) {
469 argc--;
470 argv++;
471 return bootm_start(cmdtp, flag, argc, argv);
472 }
473 }
474 /* Unrecognized command */
475 else {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600476 cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500477 return 1;
478 }
479
480 if (images.state >= state) {
481 printf ("Trying to execute a command out of order\n");
Peter Tyser62c3ae72009-01-27 18:03:10 -0600482 cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500483 return 1;
484 }
485
486 images.state |= state;
487 boot_fn = boot_os[images.os.os];
488
489 switch (state) {
490 ulong load_end;
491 case BOOTM_STATE_START:
492 /* should never occur */
493 break;
494 case BOOTM_STATE_LOADOS:
495 ret = bootm_load_os(images.os, &load_end, 0);
496 if (ret)
497 return ret;
498
499 lmb_reserve(&images.lmb, images.os.load,
500 (load_end - images.os.load));
501 break;
502#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
503 case BOOTM_STATE_RAMDISK:
504 {
505 ulong rd_len = images.rd_end - images.rd_start;
506 char str[17];
507
508 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
509 rd_len, &images.initrd_start, &images.initrd_end);
510 if (ret)
511 return ret;
512
513 sprintf(str, "%lx", images.initrd_start);
514 setenv("initrd_start", str);
515 sprintf(str, "%lx", images.initrd_end);
516 setenv("initrd_end", str);
517 }
518 break;
519#endif
520#ifdef CONFIG_OF_LIBFDT
521 case BOOTM_STATE_FDT:
522 {
523 ulong bootmap_base = getenv_bootm_low();
524 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
525 &images.ft_addr, &images.ft_len);
526 break;
527 }
528#endif
529 case BOOTM_STATE_OS_CMDLINE:
530 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
531 if (ret)
532 printf ("cmdline subcommand not supported\n");
533 break;
534 case BOOTM_STATE_OS_BD_T:
535 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
536 if (ret)
537 printf ("bdt subcommand not supported\n");
538 break;
539 case BOOTM_STATE_OS_PREP:
540 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
541 if (ret)
542 printf ("prep subcommand not supported\n");
543 break;
544 case BOOTM_STATE_OS_GO:
545 disable_interrupts();
546 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
547 break;
548 }
549
550 return ret;
551}
552
Kumar Gala396f6352008-08-15 08:24:41 -0500553/*******************************************************************/
554/* bootm - boot application image from image in memory */
555/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500556static int relocated = 0;
557
Kumar Gala396f6352008-08-15 08:24:41 -0500558int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
559{
Kumar Gala396f6352008-08-15 08:24:41 -0500560 ulong iflag;
561 ulong load_end = 0;
562 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500563 boot_os_fn *boot_fn;
564
565 /* relocate boot function table */
566 if (!relocated) {
567 int i;
568 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200569 if (boot_os[i] != NULL)
570 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500571 relocated = 1;
572 }
Kumar Gala396f6352008-08-15 08:24:41 -0500573
Kumar Gala49c3a862008-10-21 17:25:45 -0500574 /* determine if we have a sub command */
575 if (argc > 1) {
576 char *endp;
577
578 simple_strtoul(argv[1], &endp, 16);
579 /* endp pointing to NULL means that argv[1] was just a
580 * valid number, pass it along to the normal bootm processing
581 *
582 * If endp is ':' or '#' assume a FIT identifier so pass
583 * along for normal processing.
584 *
585 * Right now we assume the first arg should never be '-'
586 */
587 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
588 return do_bootm_subcommand(cmdtp, flag, argc, argv);
589 }
590
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200591 if (bootm_start(cmdtp, flag, argc, argv))
592 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000593
594 /*
595 * We have reached the point of no return: we are going to
596 * overwrite all exception vector code, so we cannot easily
597 * recover from any failures any more...
598 */
wdenk47d1a6e2002-11-03 00:01:44 +0000599 iflag = disable_interrupts();
600
Stefan Roeseebb86c42008-07-30 09:59:51 +0200601#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200602 /*
603 * turn off USB to prevent the host controller from writing to the
604 * SDRAM while Linux is booting. This could happen (at least for OHCI
605 * controller), because the HCCA (Host Controller Communication Area)
606 * lies within the SDRAM and the host controller writes continously to
607 * this area (as busmaster!). The HccaFrameNumber is for example
608 * updated every 1 ms within the HCCA structure in SDRAM! For more
609 * details see the OpenHCI specification.
610 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200611 usb_stop();
612#endif
613
wdenkc7de8292002-11-19 11:04:11 +0000614#ifdef CONFIG_AMIGAONEG3SE
615 /*
wdenk8bde7f72003-06-27 21:31:46 +0000616 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000617 * bios emulation, so turn them off again
618 */
619 icache_disable();
wdenkc7de8292002-11-19 11:04:11 +0000620 dcache_disable();
621#endif
622
Kumar Gala396f6352008-08-15 08:24:41 -0500623 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000624
Kumar Gala396f6352008-08-15 08:24:41 -0500625 if (ret < 0) {
626 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000627 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500628 if (ret == BOOTM_ERR_OVERLAP) {
629 if (images.legacy_hdr_valid) {
630 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
631 puts ("WARNING: legacy format multi component "
632 "image overwritten\n");
633 } else {
634 puts ("ERROR: new format image overwritten - "
635 "must RESET the board to recover\n");
636 show_boot_progress (-113);
637 do_reset (cmdtp, flag, argc, argv);
638 }
wdenk47d1a6e2002-11-03 00:01:44 +0000639 }
Kumar Gala396f6352008-08-15 08:24:41 -0500640 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
641 if (iflag)
642 enable_interrupts();
643 show_boot_progress (-7);
644 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200645 }
wdenk47d1a6e2002-11-03 00:01:44 +0000646 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100647
Kumar Gala396f6352008-08-15 08:24:41 -0500648 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
649
Detlev Zundelf97ec302009-07-13 16:01:19 +0200650 if (images.os.type == IH_TYPE_STANDALONE) {
651 if (iflag)
652 enable_interrupts();
653 /* This may return when 'autostart' is 'no' */
654 bootm_start_standalone(iflag, argc, argv);
655 return 0;
656 }
657
Heiko Schocherfad63402007-07-13 09:54:17 +0200658 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000659
wdenkf72da342003-10-10 10:05:42 +0000660#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500661 if (images.os.os == IH_OS_LINUX)
662 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000663#endif
664
Kumar Galabe083152008-10-21 17:25:44 -0500665 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200666
667 if (boot_fn == NULL) {
668 if (iflag)
669 enable_interrupts();
670 printf ("ERROR: booting os '%s' (%d) is not supported\n",
671 genimg_get_os_name(images.os.os), images.os.os);
672 show_boot_progress (-8);
673 return 1;
674 }
675
Kumar Galabe083152008-10-21 17:25:44 -0500676 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000677
Heiko Schocherfad63402007-07-13 09:54:17 +0200678 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000679#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000680 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000681#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500682 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100683
wdenk47d1a6e2002-11-03 00:01:44 +0000684 return 1;
685}
686
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100687/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100688 * image_get_kernel - verify legacy format kernel image
689 * @img_addr: in RAM address of the legacy format image to be verified
690 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100691 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100692 * image_get_kernel() verifies legacy image integrity and returns pointer to
693 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100694 *
695 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100696 * pointer to a legacy image header if valid image was found
697 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100698 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100699static image_header_t *image_get_kernel (ulong img_addr, int verify)
700{
701 image_header_t *hdr = (image_header_t *)img_addr;
702
703 if (!image_check_magic(hdr)) {
704 puts ("Bad Magic Number\n");
705 show_boot_progress (-1);
706 return NULL;
707 }
708 show_boot_progress (2);
709
710 if (!image_check_hcrc (hdr)) {
711 puts ("Bad Header Checksum\n");
712 show_boot_progress (-2);
713 return NULL;
714 }
715
716 show_boot_progress (3);
717 image_print_contents (hdr);
718
719 if (verify) {
720 puts (" Verifying Checksum ... ");
721 if (!image_check_dcrc (hdr)) {
722 printf ("Bad Data CRC\n");
723 show_boot_progress (-3);
724 return NULL;
725 }
726 puts ("OK\n");
727 }
728 show_boot_progress (4);
729
730 if (!image_check_target_arch (hdr)) {
731 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
732 show_boot_progress (-4);
733 return NULL;
734 }
735 return hdr;
736}
737
738/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100739 * fit_check_kernel - verify FIT format kernel subimage
740 * @fit_hdr: pointer to the FIT image header
741 * os_noffset: kernel subimage node offset within FIT image
742 * @verify: data CRC verification flag
743 *
744 * fit_check_kernel() verifies integrity of the kernel subimage and from
745 * specified FIT image.
746 *
747 * returns:
748 * 1, on success
749 * 0, on failure
750 */
751#if defined (CONFIG_FIT)
752static int fit_check_kernel (const void *fit, int os_noffset, int verify)
753{
754 fit_image_print (fit, os_noffset, " ");
755
756 if (verify) {
757 puts (" Verifying Hash Integrity ... ");
758 if (!fit_image_check_hashes (fit, os_noffset)) {
759 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100760 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100761 return 0;
762 }
763 puts ("OK\n");
764 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100765 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100766
767 if (!fit_image_check_target_arch (fit, os_noffset)) {
768 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100769 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100770 return 0;
771 }
772
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100773 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100774 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
775 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100776 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100777 return 0;
778 }
779
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100780 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100781 return 1;
782}
783#endif /* CONFIG_FIT */
784
785/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100786 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100787 * @os_data: pointer to a ulong variable, will hold os data start address
788 * @os_len: pointer to a ulong variable, will hold os data length
789 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100790 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100791 * and locates kernel data.
792 *
793 * returns:
794 * pointer to image header if valid image was found, plus kernel start
795 * address and length, otherwise NULL
796 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100797static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100798 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100799{
800 image_header_t *hdr;
801 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100802#if defined(CONFIG_FIT)
803 void *fit_hdr;
804 const char *fit_uname_config = NULL;
805 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100806 const void *data;
807 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100808 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100809 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100810#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100811
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100812 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100813 if (argc < 2) {
814 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100815 debug ("* kernel: default image load address = 0x%08lx\n",
816 load_addr);
817#if defined(CONFIG_FIT)
818 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
819 &fit_uname_config)) {
820 debug ("* kernel: config '%s' from image at 0x%08lx\n",
821 fit_uname_config, img_addr);
822 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
823 &fit_uname_kernel)) {
824 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
825 fit_uname_kernel, img_addr);
826#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100827 } else {
828 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100829 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100830 }
831
832 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100833
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100834 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100835 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100836
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100837 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100838 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100839 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100840 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100841 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
842 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100843 hdr = image_get_kernel (img_addr, images->verify);
844 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100845 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100846 show_boot_progress (5);
847
Marian Balakowicz6986a382008-03-12 10:01:05 +0100848 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100849 switch (image_get_type (hdr)) {
850 case IH_TYPE_KERNEL:
851 *os_data = image_get_data (hdr);
852 *os_len = image_get_data_size (hdr);
853 break;
854 case IH_TYPE_MULTI:
855 image_multi_getimg (hdr, 0, os_data, os_len);
856 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200857 case IH_TYPE_STANDALONE:
858 if (argc >2) {
859 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
860 }
861 *os_data = image_get_data (hdr);
862 *os_len = image_get_data_size (hdr);
863 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100864 default:
865 printf ("Wrong Image Type for %s command\n", cmdtp->name);
866 show_boot_progress (-5);
867 return NULL;
868 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100869
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200870 /*
871 * copy image header to allow for image overwrites during kernel
872 * decompression.
873 */
874 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
875
876 /* save pointer to image header */
877 images->legacy_hdr_os = hdr;
878
879 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100880 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100881 break;
882#if defined(CONFIG_FIT)
883 case IMAGE_FORMAT_FIT:
884 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100885 printf ("## Booting kernel from FIT Image at %08lx ...\n",
886 img_addr);
887
888 if (!fit_check_format (fit_hdr)) {
889 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100890 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100891 return NULL;
892 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100893 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100894
895 if (!fit_uname_kernel) {
896 /*
897 * no kernel image node unit name, try to get config
898 * node first. If config unit node name is NULL
899 * fit_conf_get_node() will try to find default config node
900 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100901 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100902 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
903 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100904 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100905 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100906 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100907 /* save configuration uname provided in the first
908 * bootm argument
909 */
910 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
911 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
912 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100913
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100914 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100915 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
916 } else {
917 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100918 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100919 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
920 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100921 if (os_noffset < 0) {
922 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100923 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100924 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100925
926 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
927
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100928 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100929 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
930 return NULL;
931
932 /* get kernel image data address and length */
933 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
934 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100935 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100936 return NULL;
937 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100938 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100939
940 *os_len = len;
941 *os_data = (ulong)data;
942 images->fit_hdr_os = fit_hdr;
943 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100944 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100945 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100946#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100947 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100948 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100949 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100950 return NULL;
951 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100952
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200953 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100954 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100955
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100956 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100957}
958
wdenk0d498392003-07-01 21:06:45 +0000959U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200960 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600961 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100962 "[addr [arg ...]]\n - boot application image stored in memory\n"
963 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
964 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100965#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500966 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200967 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500968 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
969 "\tuse a '-' for the second argument. If you do not pass a third\n"
970 "\ta bd_info struct will be passed instead\n"
971#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100972#if defined(CONFIG_FIT)
973 "\t\nFor the new multi component uImage format (FIT) addresses\n"
974 "\tmust be extened to include component or configuration unit name:\n"
975 "\taddr:<subimg_uname> - direct component image specification\n"
976 "\taddr#<conf_uname> - configuration specification\n"
977 "\tUse iminfo command to get the list of existing component\n"
978 "\timages and configurations.\n"
979#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500980 "\nSub-commands to do part of the bootm sequence. The sub-commands "
981 "must be\n"
982 "issued in the order below (it's ok to not issue all sub-commands):\n"
983 "\tstart [addr [arg ...]]\n"
984 "\tloados - load OS image\n"
985#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
986 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
987#endif
988#if defined(CONFIG_OF_LIBFDT)
989 "\tfdt - relocate flat device tree\n"
990#endif
991 "\tbdt - OS specific bd_t processing\n"
992 "\tcmdline - OS specific command line processing/setup\n"
993 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +0200994 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +0000995);
996
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100997/*******************************************************************/
998/* bootd - boot default image */
999/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001000#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001001int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1002{
1003 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001004
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001005#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001006 if (run_command (getenv ("bootcmd"), flag) < 0)
1007 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001008#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001009 if (parse_string_outer (getenv ("bootcmd"),
1010 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1011 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001012#endif
1013 return rcode;
1014}
wdenk8bde7f72003-06-27 21:31:46 +00001015
wdenk0d498392003-07-01 21:06:45 +00001016U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001017 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001018 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001019 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001020);
1021
1022/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001023U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001024 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001025 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001026 ""
wdenk8bde7f72003-06-27 21:31:46 +00001027);
1028
wdenk47d1a6e2002-11-03 00:01:44 +00001029#endif
1030
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001031
1032/*******************************************************************/
1033/* iminfo - print header info for a requested image */
1034/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001035#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001036int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001037{
1038 int arg;
1039 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001040 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001041
1042 if (argc < 2) {
1043 return image_info (load_addr);
1044 }
1045
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001046 for (arg = 1; arg < argc; ++arg) {
1047 addr = simple_strtoul (argv[arg], NULL, 16);
1048 if (image_info (addr) != 0)
1049 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001050 }
1051 return rcode;
1052}
1053
1054static int image_info (ulong addr)
1055{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001056 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001057
1058 printf ("\n## Checking Image at %08lx ...\n", addr);
1059
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001060 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001061 case IMAGE_FORMAT_LEGACY:
1062 puts (" Legacy image found\n");
1063 if (!image_check_magic (hdr)) {
1064 puts (" Bad Magic Number\n");
1065 return 1;
1066 }
1067
1068 if (!image_check_hcrc (hdr)) {
1069 puts (" Bad Header Checksum\n");
1070 return 1;
1071 }
1072
1073 image_print_contents (hdr);
1074
1075 puts (" Verifying Checksum ... ");
1076 if (!image_check_dcrc (hdr)) {
1077 puts (" Bad Data CRC\n");
1078 return 1;
1079 }
1080 puts ("OK\n");
1081 return 0;
1082#if defined(CONFIG_FIT)
1083 case IMAGE_FORMAT_FIT:
1084 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001085
1086 if (!fit_check_format (hdr)) {
1087 puts ("Bad FIT image format!\n");
1088 return 1;
1089 }
1090
1091 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001092
1093 if (!fit_all_image_check_hashes (hdr)) {
1094 puts ("Bad hash in FIT image!\n");
1095 return 1;
1096 }
1097
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001098 return 0;
1099#endif
1100 default:
1101 puts ("Unknown image format!\n");
1102 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001103 }
1104
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001105 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001106}
wdenk0d498392003-07-01 21:06:45 +00001107
1108U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001109 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001110 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001111 "addr [addr ...]\n"
1112 " - print header information for application image starting at\n"
1113 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001114 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001115);
Jon Loeliger90253172007-07-10 11:02:44 -05001116#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001117
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001118
1119/*******************************************************************/
1120/* imls - list all images found in flash */
1121/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001122#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +00001123int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1124{
1125 flash_info_t *info;
1126 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001127 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001128
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001129 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001130 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001131
wdenk27b207f2003-07-24 23:38:38 +00001132 if (info->flash_id == FLASH_UNKNOWN)
1133 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001134 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001135
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001136 hdr = (void *)info->start[j];
1137 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001138 goto next_sector;
1139
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001140 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001141 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001142 if (!image_check_hcrc (hdr))
1143 goto next_sector;
1144
1145 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1146 image_print_contents (hdr);
1147
1148 puts (" Verifying Checksum ... ");
1149 if (!image_check_dcrc (hdr)) {
1150 puts ("Bad Data CRC\n");
1151 } else {
1152 puts ("OK\n");
1153 }
1154 break;
1155#if defined(CONFIG_FIT)
1156 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001157 if (!fit_check_format (hdr))
1158 goto next_sector;
1159
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001160 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001161 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001162 break;
1163#endif
1164 default:
wdenk27b207f2003-07-24 23:38:38 +00001165 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001166 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001167
wdenkbdccc4f2003-08-05 17:43:17 +00001168next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001169 }
wdenkbdccc4f2003-08-05 17:43:17 +00001170next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001171 }
1172
1173 return (0);
1174}
1175
1176U_BOOT_CMD(
1177 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001178 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001179 "\n"
1180 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001181 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001182);
Jon Loeliger90253172007-07-10 11:02:44 -05001183#endif
wdenk27b207f2003-07-24 23:38:38 +00001184
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001185/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001186/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001187/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001188#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001189static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001190{
1191 char buf[256], *start, *end;
1192 char *cmdline = getenv ("bootargs");
1193
1194 /* Only fix cmdline when requested */
1195 if (!(gd->flags & GD_FLG_SILENT))
1196 return;
1197
1198 debug ("before silent fix-up: %s\n", cmdline);
1199 if (cmdline) {
1200 if ((start = strstr (cmdline, "console=")) != NULL) {
1201 end = strchr (start, ' ');
1202 strncpy (buf, cmdline, (start - cmdline + 8));
1203 if (end)
1204 strcpy (buf + (start - cmdline + 8), end);
1205 else
1206 buf[start - cmdline + 8] = '\0';
1207 } else {
1208 strcpy (buf, cmdline);
1209 strcat (buf, " console=");
1210 }
1211 } else {
1212 strcpy (buf, "console=");
1213 }
1214
1215 setenv ("bootargs", buf);
1216 debug ("after silent fix-up: %s\n", buf);
1217}
1218#endif /* CONFIG_SILENT_CONSOLE */
1219
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001220
1221/*******************************************************************/
1222/* OS booting routines */
1223/*******************************************************************/
1224
Kumar Galab1d0db12008-10-21 17:25:47 -05001225#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala40d7e992008-08-15 08:24:45 -05001226static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001227 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001228{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001229 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001230 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001231 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001232 char *consdev;
1233 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001234
Kumar Gala49c3a862008-10-21 17:25:45 -05001235 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1236 return 1;
1237
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001238#if defined(CONFIG_FIT)
1239 if (!images->legacy_hdr_valid) {
1240 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001241 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001242 }
1243#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001244 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001245
1246 /*
1247 * Booting a (NetBSD) kernel image
1248 *
1249 * This process is pretty similar to a standalone application:
1250 * The (first part of an multi-) image must be a stage-2 loader,
1251 * which in turn is responsible for loading & invoking the actual
1252 * kernel. The only differences are the parameters being passed:
1253 * besides the board info strucure, the loader expects a command
1254 * line, the name of the console device, and (optionally) the
1255 * address of the original image header.
1256 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001257 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001258 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001259 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1260 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001261 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001262 }
wdenk47d1a6e2002-11-03 00:01:44 +00001263
1264 consdev = "";
1265#if defined (CONFIG_8xx_CONS_SMC1)
1266 consdev = "smc1";
1267#elif defined (CONFIG_8xx_CONS_SMC2)
1268 consdev = "smc2";
1269#elif defined (CONFIG_8xx_CONS_SCC2)
1270 consdev = "scc2";
1271#elif defined (CONFIG_8xx_CONS_SCC3)
1272 consdev = "scc3";
1273#endif
1274
1275 if (argc > 2) {
1276 ulong len;
1277 int i;
1278
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001279 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001280 len += strlen (argv[i]) + 1;
1281 cmdline = malloc (len);
1282
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001283 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001284 if (i > 2)
1285 cmdline[len++] = ' ';
1286 strcpy (&cmdline[len], argv[i]);
1287 len += strlen (argv[i]);
1288 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001289 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001290 cmdline = "";
1291 }
1292
Kumar Galac160a952008-08-15 08:24:36 -05001293 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001294
1295 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1296 (ulong)loader);
1297
1298 show_boot_progress (15);
1299
1300 /*
1301 * NetBSD Stage-2 Loader Parameters:
1302 * r3: ptr to board info data
1303 * r4: image address
1304 * r5: console device
1305 * r6: boot args string
1306 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001307 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001308
1309 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001310}
Kumar Galab1d0db12008-10-21 17:25:47 -05001311#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001312
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001313#ifdef CONFIG_LYNXKDI
Kumar Gala40d7e992008-08-15 08:24:45 -05001314static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001315 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001316{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001317 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001318
Kumar Gala49c3a862008-10-21 17:25:45 -05001319 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1320 return 1;
1321
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001322#if defined(CONFIG_FIT)
1323 if (!images->legacy_hdr_valid) {
1324 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001325 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001326 }
1327#endif
1328
1329 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001330
1331 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001332}
1333#endif /* CONFIG_LYNXKDI */
1334
Kumar Galab1d0db12008-10-21 17:25:47 -05001335#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala40d7e992008-08-15 08:24:45 -05001336static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001337 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001338{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001339 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001340
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 ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001347 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001348 }
1349#endif
1350
Kumar Galac160a952008-08-15 08:24:36 -05001351 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001352
1353 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1354 (ulong)entry_point);
1355
Heiko Schocherfad63402007-07-13 09:54:17 +02001356 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001357
1358 /*
1359 * RTEMS Parameters:
1360 * r3: ptr to board info data
1361 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001362 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001363
1364 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001365}
Kumar Galab1d0db12008-10-21 17:25:47 -05001366#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001367
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001368#if defined(CONFIG_CMD_ELF)
Kumar Gala40d7e992008-08-15 08:24:45 -05001369static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001370 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001371{
wdenk47d1a6e2002-11-03 00:01:44 +00001372 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001373
Kumar Gala49c3a862008-10-21 17:25:45 -05001374 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1375 return 1;
1376
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001377#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001378 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001379 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001380 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001381 }
1382#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001383
Kumar Galac160a952008-08-15 08:24:36 -05001384 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001385 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001386 do_bootvx(NULL, 0, 0, NULL);
1387
1388 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001389}
1390
Kumar Gala40d7e992008-08-15 08:24:45 -05001391static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001392 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001393{
wdenk47d1a6e2002-11-03 00:01:44 +00001394 char *local_args[2];
1395 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001396
Kumar Gala49c3a862008-10-21 17:25:45 -05001397 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1398 return 1;
1399
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001400#if defined(CONFIG_FIT)
1401 if (!images->legacy_hdr_valid) {
1402 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001403 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001404 }
1405#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001406
Kumar Galac160a952008-08-15 08:24:36 -05001407 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001408 local_args[0] = argv[0];
1409 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001410 do_bootelf(NULL, 0, 2, local_args);
1411
1412 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001413}
Jon Loeliger90253172007-07-10 11:02:44 -05001414#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001415
1416#ifdef CONFIG_INTEGRITY
1417static int do_bootm_integrity (int flag, int argc, char *argv[],
1418 bootm_headers_t *images)
1419{
1420 void (*entry_point)(void);
1421
Kumar Gala49c3a862008-10-21 17:25:45 -05001422 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1423 return 1;
1424
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001425#if defined(CONFIG_FIT)
1426 if (!images->legacy_hdr_valid) {
1427 fit_unsupported_reset ("INTEGRITY");
1428 return 1;
1429 }
1430#endif
1431
1432 entry_point = (void (*)(void))images->ep;
1433
1434 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1435 (ulong)entry_point);
1436
1437 show_boot_progress (15);
1438
1439 /*
1440 * INTEGRITY Parameters:
1441 * None
1442 */
1443 (*entry_point)();
1444
1445 return 1;
1446}
1447#endif