blob: adfa6cd18aea82bca910165c79295d73f6a3d0d8 [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>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020080extern flash_info_t flash_info[]; /* info for FLASH chips */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020081static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000082#endif
83
Marian Balakowicz1ee11802008-01-08 18:17:10 +010084#ifdef CONFIG_SILENT_CONSOLE
85static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000086#endif
87
Marian Balakowicz6986a382008-03-12 10:01:05 +010088static image_header_t *image_get_kernel (ulong img_addr, int verify);
89#if defined(CONFIG_FIT)
90static int fit_check_kernel (const void *fit, int os_noffset, int verify);
91#endif
92
Wolfgang Denk54841ab2010-06-28 22:00:46 +020093static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010094 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Wolfgang Denk54841ab2010-06-28 22:00:46 +020095extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
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
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500121#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100122static boot_os_fn do_bootm_vxworks;
123static boot_os_fn do_bootm_qnxelf;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200124int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
125int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500126#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500127#if defined(CONFIG_INTEGRITY)
128static boot_os_fn do_bootm_integrity;
129#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000130
Mike Frysinger00085552009-11-03 11:36:26 -0500131static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500132#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500133 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500134#endif
135#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500136 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500137#endif
Kumar Galabe083152008-10-21 17:25:44 -0500138#ifdef CONFIG_LYNXKDI
139 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
140#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500141#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500142 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500143#endif
Kumar Galabe083152008-10-21 17:25:44 -0500144#if defined(CONFIG_CMD_ELF)
145 [IH_OS_VXWORKS] = do_bootm_vxworks,
146 [IH_OS_QNX] = do_bootm_qnxelf,
147#endif
148#ifdef CONFIG_INTEGRITY
149 [IH_OS_INTEGRITY] = do_bootm_integrity,
150#endif
151};
152
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200153ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100154static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100155
Kumar Gala3dfad402009-08-27 08:23:55 -0500156/* Allow for arch specific config before we boot */
157void __arch_preboot_os(void)
158{
159 /* please define platform specific arch_preboot_os() */
160}
161void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
162
Kumar Galac4f94192008-08-15 08:24:37 -0500163#if defined(__ARM__)
164 #define IH_INITRD_ARCH IH_ARCH_ARM
165#elif defined(__avr32__)
166 #define IH_INITRD_ARCH IH_ARCH_AVR32
167#elif defined(__bfin__)
168 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
169#elif defined(__I386__)
170 #define IH_INITRD_ARCH IH_ARCH_I386
171#elif defined(__M68K__)
172 #define IH_INITRD_ARCH IH_ARCH_M68K
173#elif defined(__microblaze__)
174 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
175#elif defined(__mips__)
176 #define IH_INITRD_ARCH IH_ARCH_MIPS
Kumar Galac4f94192008-08-15 08:24:37 -0500177#elif defined(__nios2__)
178 #define IH_INITRD_ARCH IH_ARCH_NIOS2
179#elif defined(__PPC__)
180 #define IH_INITRD_ARCH IH_ARCH_PPC
181#elif defined(__sh__)
182 #define IH_INITRD_ARCH IH_ARCH_SH
183#elif defined(__sparc__)
184 #define IH_INITRD_ARCH IH_ARCH_SPARC
185#else
186# error Unknown CPU type
187#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000188
Mike Frysingera16028d2009-11-03 11:35:59 -0500189static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000190{
Mike Frysingera16028d2009-11-03 11:35:59 -0500191#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500192 ulong mem_start;
193 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000194
Kumar Galae906cfa2008-08-15 08:24:40 -0500195 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000196
Kumar Galad3f2fa02008-02-27 21:51:50 -0600197 mem_start = getenv_bootm_low();
198 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000199
Kumar Galae906cfa2008-08-15 08:24:40 -0500200 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Gala76da19d2008-10-16 21:52:08 -0500202 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500203 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500204#else
205# define lmb_reserve(lmb, base, size)
206#endif
207}
208
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200209static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500210{
211 void *os_hdr;
212 int ret;
213
214 memset ((void *)&images, 0, sizeof (images));
215 images.verify = getenv_yesno ("verify");
216
217 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000218
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100219 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100220 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500221 &images, &images.os.image_start, &images.os.image_len);
222 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100223 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000224 return 1;
225 }
wdenk47d1a6e2002-11-03 00:01:44 +0000226
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100227 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100228 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100229 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500230 images.os.type = image_get_type (os_hdr);
231 images.os.comp = image_get_comp (os_hdr);
232 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200233
Kumar Gala396f6352008-08-15 08:24:41 -0500234 images.os.end = image_get_image_end (os_hdr);
235 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100236 break;
237#if defined(CONFIG_FIT)
238 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100239 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500240 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100241 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100242 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000243 return 1;
244 }
wdenk47d1a6e2002-11-03 00:01:44 +0000245
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100246 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500247 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100248 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100249 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100250 return 1;
251 }
wdenk47d1a6e2002-11-03 00:01:44 +0000252
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100253 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500254 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100255 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100256 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100257 return 1;
258 }
wdenk47d1a6e2002-11-03 00:01:44 +0000259
Kumar Gala396f6352008-08-15 08:24:41 -0500260 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100261
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100262 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500263 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100264 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100265 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100266 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000267 }
268 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100269#endif
270 default:
271 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000272 return 1;
273 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100274
Kumar Galac160a952008-08-15 08:24:36 -0500275 /* find kernel entry point */
276 if (images.legacy_hdr_valid) {
277 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
278#if defined(CONFIG_FIT)
279 } else if (images.fit_uname_os) {
280 ret = fit_image_get_entry (images.fit_hdr_os,
281 images.fit_noffset_os, &images.ep);
282 if (ret) {
283 puts ("Can't get entry point property!\n");
284 return 1;
285 }
286#endif
287 } else {
288 puts ("Could not find kernel entry point!\n");
289 return 1;
290 }
291
Heiko Schocher24de2f42010-03-29 13:15:48 +0200292 if (((images.os.type == IH_TYPE_KERNEL) ||
293 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100294 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500295 /* find ramdisk */
296 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
297 &images.rd_start, &images.rd_end);
298 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500299 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500300 return 1;
301 }
Kumar Gala06a09912008-08-15 08:24:38 -0500302
303#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200304#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500305 /* find flattened device tree */
306 ret = boot_get_fdt (flag, argc, argv, &images,
307 &images.ft_addr, &images.ft_len);
308 if (ret) {
309 puts ("Could not find a valid device tree\n");
310 return 1;
311 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500312
313 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500314#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200315#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500316 }
317
Kumar Gala396f6352008-08-15 08:24:41 -0500318 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500319 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500320
321 return 0;
322}
323
324#define BOOTM_ERR_RESET -1
325#define BOOTM_ERR_OVERLAP -2
326#define BOOTM_ERR_UNIMPLEMENTED -3
327static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
328{
329 uint8_t comp = os.comp;
330 ulong load = os.load;
331 ulong blob_start = os.start;
332 ulong blob_end = os.end;
333 ulong image_start = os.image_start;
334 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200335 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Kumar Gala396f6352008-08-15 08:24:41 -0500336
337 const char *type_name = genimg_get_type_name (os.type);
338
339 switch (comp) {
340 case IH_COMP_NONE:
341 if (load == blob_start) {
342 printf (" XIP %s ... ", type_name);
343 } else {
344 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400345 memmove_wd ((void *)load, (void *)image_start,
346 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500347 }
348 *load_end = load + image_len;
349 puts("OK\n");
350 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500351#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500352 case IH_COMP_GZIP:
353 printf (" Uncompressing %s ... ", type_name);
354 if (gunzip ((void *)load, unc_len,
355 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100356 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500357 "- must RESET board to recover\n");
358 if (boot_progress)
359 show_boot_progress (-6);
360 return BOOTM_ERR_RESET;
361 }
362
363 *load_end = load + image_len;
364 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500365#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500366#ifdef CONFIG_BZIP2
367 case IH_COMP_BZIP2:
368 printf (" Uncompressing %s ... ", type_name);
369 /*
370 * If we've got less than 4 MB of malloc() space,
371 * use slower decompression algorithm which requires
372 * at most 2300 KB of memory.
373 */
374 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
375 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200376 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500377 if (i != BZ_OK) {
378 printf ("BUNZIP2: uncompress or overwrite error %d "
379 "- must RESET board to recover\n", i);
380 if (boot_progress)
381 show_boot_progress (-6);
382 return BOOTM_ERR_RESET;
383 }
384
385 *load_end = load + unc_len;
386 break;
387#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200388#ifdef CONFIG_LZMA
389 case IH_COMP_LZMA:
390 printf (" Uncompressing %s ... ", type_name);
391
392 int ret = lzmaBuffToBuffDecompress(
393 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200394 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200395 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200396 printf ("LZMA: uncompress or overwrite error %d "
397 "- must RESET board to recover\n", ret);
398 show_boot_progress (-6);
399 return BOOTM_ERR_RESET;
400 }
401 *load_end = load + unc_len;
402 break;
403#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100404#ifdef CONFIG_LZO
405 case IH_COMP_LZO:
406 printf (" Uncompressing %s ... ", type_name);
407
408 int ret = lzop_decompress((const unsigned char *)image_start,
409 image_len, (unsigned char *)load,
410 &unc_len);
411 if (ret != LZO_E_OK) {
412 printf ("LZO: uncompress or overwrite error %d "
413 "- must RESET board to recover\n", ret);
414 if (boot_progress)
415 show_boot_progress (-6);
416 return BOOTM_ERR_RESET;
417 }
418
419 *load_end = load + unc_len;
420 break;
421#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500422 default:
423 printf ("Unimplemented compression type %d\n", comp);
424 return BOOTM_ERR_UNIMPLEMENTED;
425 }
426 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200427 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500428 if (boot_progress)
429 show_boot_progress (7);
430
431 if ((load < blob_end) && (*load_end > blob_start)) {
432 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 +0200433 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500434
435 return BOOTM_ERR_OVERLAP;
436 }
437
438 return 0;
439}
440
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200441static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200442{
443 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200444 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200445
446 /* Don't start if "autostart" is set to "no" */
447 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
448 char buf[32];
449 sprintf(buf, "%lX", images.os.image_len);
450 setenv("filesize", buf);
451 return 0;
452 }
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200453 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200454 (*appl)(argc-1, &argv[1]);
455
456 return 0;
457}
458
Kumar Gala49c3a862008-10-21 17:25:45 -0500459/* we overload the cmd field with our state machine info instead of a
460 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100461static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500462 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
463 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
464#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
465 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
466#endif
467#ifdef CONFIG_OF_LIBFDT
468 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
469#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500470 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600471 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500472 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
473 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
474};
475
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200476int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500477{
478 int ret = 0;
479 int state;
480 cmd_tbl_t *c;
481 boot_os_fn *boot_fn;
482
483 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
484
485 if (c) {
486 state = (int)c->cmd;
487
488 /* treat start special since it resets the state machine */
489 if (state == BOOTM_STATE_START) {
490 argc--;
491 argv++;
492 return bootm_start(cmdtp, flag, argc, argv);
493 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200494 } else {
495 /* Unrecognized command */
496 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500497 }
498
499 if (images.state >= state) {
500 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200501 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500502 }
503
504 images.state |= state;
505 boot_fn = boot_os[images.os.os];
506
507 switch (state) {
508 ulong load_end;
509 case BOOTM_STATE_START:
510 /* should never occur */
511 break;
512 case BOOTM_STATE_LOADOS:
513 ret = bootm_load_os(images.os, &load_end, 0);
514 if (ret)
515 return ret;
516
517 lmb_reserve(&images.lmb, images.os.load,
518 (load_end - images.os.load));
519 break;
520#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
521 case BOOTM_STATE_RAMDISK:
522 {
523 ulong rd_len = images.rd_end - images.rd_start;
524 char str[17];
525
526 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
527 rd_len, &images.initrd_start, &images.initrd_end);
528 if (ret)
529 return ret;
530
531 sprintf(str, "%lx", images.initrd_start);
532 setenv("initrd_start", str);
533 sprintf(str, "%lx", images.initrd_end);
534 setenv("initrd_end", str);
535 }
536 break;
537#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100538#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500539 case BOOTM_STATE_FDT:
540 {
541 ulong bootmap_base = getenv_bootm_low();
542 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
543 &images.ft_addr, &images.ft_len);
544 break;
545 }
546#endif
547 case BOOTM_STATE_OS_CMDLINE:
548 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
549 if (ret)
550 printf ("cmdline subcommand not supported\n");
551 break;
552 case BOOTM_STATE_OS_BD_T:
553 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
554 if (ret)
555 printf ("bdt subcommand not supported\n");
556 break;
557 case BOOTM_STATE_OS_PREP:
558 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
559 if (ret)
560 printf ("prep subcommand not supported\n");
561 break;
562 case BOOTM_STATE_OS_GO:
563 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500564 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500565 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
566 break;
567 }
568
569 return ret;
570}
571
Kumar Gala396f6352008-08-15 08:24:41 -0500572/*******************************************************************/
573/* bootm - boot application image from image in memory */
574/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500575
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200576int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500577{
Kumar Gala396f6352008-08-15 08:24:41 -0500578 ulong iflag;
579 ulong load_end = 0;
580 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500581 boot_os_fn *boot_fn;
Peter Tyser521af042009-09-21 11:20:36 -0500582#ifndef CONFIG_RELOC_FIXUP_WORKS
583 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500584
585 /* relocate boot function table */
586 if (!relocated) {
587 int i;
588 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200589 if (boot_os[i] != NULL)
590 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500591 relocated = 1;
592 }
Peter Tyser521af042009-09-21 11:20:36 -0500593#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500594
Kumar Gala49c3a862008-10-21 17:25:45 -0500595 /* determine if we have a sub command */
596 if (argc > 1) {
597 char *endp;
598
599 simple_strtoul(argv[1], &endp, 16);
600 /* endp pointing to NULL means that argv[1] was just a
601 * valid number, pass it along to the normal bootm processing
602 *
603 * If endp is ':' or '#' assume a FIT identifier so pass
604 * along for normal processing.
605 *
606 * Right now we assume the first arg should never be '-'
607 */
608 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
609 return do_bootm_subcommand(cmdtp, flag, argc, argv);
610 }
611
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200612 if (bootm_start(cmdtp, flag, argc, argv))
613 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000614
615 /*
616 * We have reached the point of no return: we are going to
617 * overwrite all exception vector code, so we cannot easily
618 * recover from any failures any more...
619 */
wdenk47d1a6e2002-11-03 00:01:44 +0000620 iflag = disable_interrupts();
621
Stefan Roeseebb86c42008-07-30 09:59:51 +0200622#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200623 /*
624 * turn off USB to prevent the host controller from writing to the
625 * SDRAM while Linux is booting. This could happen (at least for OHCI
626 * controller), because the HCCA (Host Controller Communication Area)
627 * lies within the SDRAM and the host controller writes continously to
628 * this area (as busmaster!). The HccaFrameNumber is for example
629 * updated every 1 ms within the HCCA structure in SDRAM! For more
630 * details see the OpenHCI specification.
631 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200632 usb_stop();
633#endif
634
Kumar Gala396f6352008-08-15 08:24:41 -0500635 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000636
Kumar Gala396f6352008-08-15 08:24:41 -0500637 if (ret < 0) {
638 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000639 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500640 if (ret == BOOTM_ERR_OVERLAP) {
641 if (images.legacy_hdr_valid) {
642 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
643 puts ("WARNING: legacy format multi component "
644 "image overwritten\n");
645 } else {
646 puts ("ERROR: new format image overwritten - "
647 "must RESET the board to recover\n");
648 show_boot_progress (-113);
649 do_reset (cmdtp, flag, argc, argv);
650 }
wdenk47d1a6e2002-11-03 00:01:44 +0000651 }
Kumar Gala396f6352008-08-15 08:24:41 -0500652 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
653 if (iflag)
654 enable_interrupts();
655 show_boot_progress (-7);
656 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200657 }
wdenk47d1a6e2002-11-03 00:01:44 +0000658 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100659
Kumar Gala396f6352008-08-15 08:24:41 -0500660 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
661
Detlev Zundelf97ec302009-07-13 16:01:19 +0200662 if (images.os.type == IH_TYPE_STANDALONE) {
663 if (iflag)
664 enable_interrupts();
665 /* This may return when 'autostart' is 'no' */
666 bootm_start_standalone(iflag, argc, argv);
667 return 0;
668 }
669
Heiko Schocherfad63402007-07-13 09:54:17 +0200670 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000671
wdenkf72da342003-10-10 10:05:42 +0000672#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500673 if (images.os.os == IH_OS_LINUX)
674 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000675#endif
676
Kumar Galabe083152008-10-21 17:25:44 -0500677 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200678
679 if (boot_fn == NULL) {
680 if (iflag)
681 enable_interrupts();
682 printf ("ERROR: booting os '%s' (%d) is not supported\n",
683 genimg_get_os_name(images.os.os), images.os.os);
684 show_boot_progress (-8);
685 return 1;
686 }
687
Kumar Gala3dfad402009-08-27 08:23:55 -0500688 arch_preboot_os();
689
Kumar Galabe083152008-10-21 17:25:44 -0500690 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000691
Heiko Schocherfad63402007-07-13 09:54:17 +0200692 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000693#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000694 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000695#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500696 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100697
wdenk47d1a6e2002-11-03 00:01:44 +0000698 return 1;
699}
700
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100701/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100702 * image_get_kernel - verify legacy format kernel image
703 * @img_addr: in RAM address of the legacy format image to be verified
704 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100705 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100706 * image_get_kernel() verifies legacy image integrity and returns pointer to
707 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100708 *
709 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100710 * pointer to a legacy image header if valid image was found
711 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100712 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100713static image_header_t *image_get_kernel (ulong img_addr, int verify)
714{
715 image_header_t *hdr = (image_header_t *)img_addr;
716
717 if (!image_check_magic(hdr)) {
718 puts ("Bad Magic Number\n");
719 show_boot_progress (-1);
720 return NULL;
721 }
722 show_boot_progress (2);
723
724 if (!image_check_hcrc (hdr)) {
725 puts ("Bad Header Checksum\n");
726 show_boot_progress (-2);
727 return NULL;
728 }
729
730 show_boot_progress (3);
731 image_print_contents (hdr);
732
733 if (verify) {
734 puts (" Verifying Checksum ... ");
735 if (!image_check_dcrc (hdr)) {
736 printf ("Bad Data CRC\n");
737 show_boot_progress (-3);
738 return NULL;
739 }
740 puts ("OK\n");
741 }
742 show_boot_progress (4);
743
744 if (!image_check_target_arch (hdr)) {
745 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
746 show_boot_progress (-4);
747 return NULL;
748 }
749 return hdr;
750}
751
752/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100753 * fit_check_kernel - verify FIT format kernel subimage
754 * @fit_hdr: pointer to the FIT image header
755 * os_noffset: kernel subimage node offset within FIT image
756 * @verify: data CRC verification flag
757 *
758 * fit_check_kernel() verifies integrity of the kernel subimage and from
759 * specified FIT image.
760 *
761 * returns:
762 * 1, on success
763 * 0, on failure
764 */
765#if defined (CONFIG_FIT)
766static int fit_check_kernel (const void *fit, int os_noffset, int verify)
767{
768 fit_image_print (fit, os_noffset, " ");
769
770 if (verify) {
771 puts (" Verifying Hash Integrity ... ");
772 if (!fit_image_check_hashes (fit, os_noffset)) {
773 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100774 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100775 return 0;
776 }
777 puts ("OK\n");
778 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100779 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100780
781 if (!fit_image_check_target_arch (fit, os_noffset)) {
782 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100783 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100784 return 0;
785 }
786
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100787 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100788 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
789 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100790 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100791 return 0;
792 }
793
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100794 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100795 return 1;
796}
797#endif /* CONFIG_FIT */
798
799/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100800 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100801 * @os_data: pointer to a ulong variable, will hold os data start address
802 * @os_len: pointer to a ulong variable, will hold os data length
803 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100804 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100805 * and locates kernel data.
806 *
807 * returns:
808 * pointer to image header if valid image was found, plus kernel start
809 * address and length, otherwise NULL
810 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200811static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100812 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100813{
814 image_header_t *hdr;
815 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100816#if defined(CONFIG_FIT)
817 void *fit_hdr;
818 const char *fit_uname_config = NULL;
819 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100820 const void *data;
821 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100822 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100823 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100824#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100825
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100826 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100827 if (argc < 2) {
828 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100829 debug ("* kernel: default image load address = 0x%08lx\n",
830 load_addr);
831#if defined(CONFIG_FIT)
832 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
833 &fit_uname_config)) {
834 debug ("* kernel: config '%s' from image at 0x%08lx\n",
835 fit_uname_config, img_addr);
836 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
837 &fit_uname_kernel)) {
838 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
839 fit_uname_kernel, img_addr);
840#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100841 } else {
842 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100843 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100844 }
845
846 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100847
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100848 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100849 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100850
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100851 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100852 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100853 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100854 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100855 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
856 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100857 hdr = image_get_kernel (img_addr, images->verify);
858 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100859 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100860 show_boot_progress (5);
861
Marian Balakowicz6986a382008-03-12 10:01:05 +0100862 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100863 switch (image_get_type (hdr)) {
864 case IH_TYPE_KERNEL:
865 *os_data = image_get_data (hdr);
866 *os_len = image_get_data_size (hdr);
867 break;
868 case IH_TYPE_MULTI:
869 image_multi_getimg (hdr, 0, os_data, os_len);
870 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200871 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200872 *os_data = image_get_data (hdr);
873 *os_len = image_get_data_size (hdr);
874 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100875 default:
876 printf ("Wrong Image Type for %s command\n", cmdtp->name);
877 show_boot_progress (-5);
878 return NULL;
879 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100880
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200881 /*
882 * copy image header to allow for image overwrites during kernel
883 * decompression.
884 */
885 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
886
887 /* save pointer to image header */
888 images->legacy_hdr_os = hdr;
889
890 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100891 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100892 break;
893#if defined(CONFIG_FIT)
894 case IMAGE_FORMAT_FIT:
895 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100896 printf ("## Booting kernel from FIT Image at %08lx ...\n",
897 img_addr);
898
899 if (!fit_check_format (fit_hdr)) {
900 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100901 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100902 return NULL;
903 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100904 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100905
906 if (!fit_uname_kernel) {
907 /*
908 * no kernel image node unit name, try to get config
909 * node first. If config unit node name is NULL
910 * fit_conf_get_node() will try to find default config node
911 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100912 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100913 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
914 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100915 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100916 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100917 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100918 /* save configuration uname provided in the first
919 * bootm argument
920 */
921 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
922 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
923 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100924
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100925 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100926 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
927 } else {
928 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100929 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100930 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
931 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100932 if (os_noffset < 0) {
933 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100934 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100935 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100936
937 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
938
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100939 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100940 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
941 return NULL;
942
943 /* get kernel image data address and length */
944 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
945 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100946 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100947 return NULL;
948 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100949 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100950
951 *os_len = len;
952 *os_data = (ulong)data;
953 images->fit_hdr_os = fit_hdr;
954 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100955 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100956 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100957#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100958 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100959 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100960 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100961 return NULL;
962 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100963
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200964 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100965 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100966
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100967 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100968}
969
wdenk0d498392003-07-01 21:06:45 +0000970U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200971 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600972 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100973 "[addr [arg ...]]\n - boot application image stored in memory\n"
974 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
975 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100976#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500977 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200978 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500979 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
980 "\tuse a '-' for the second argument. If you do not pass a third\n"
981 "\ta bd_info struct will be passed instead\n"
982#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100983#if defined(CONFIG_FIT)
984 "\t\nFor the new multi component uImage format (FIT) addresses\n"
985 "\tmust be extened to include component or configuration unit name:\n"
986 "\taddr:<subimg_uname> - direct component image specification\n"
987 "\taddr#<conf_uname> - configuration specification\n"
988 "\tUse iminfo command to get the list of existing component\n"
989 "\timages and configurations.\n"
990#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500991 "\nSub-commands to do part of the bootm sequence. The sub-commands "
992 "must be\n"
993 "issued in the order below (it's ok to not issue all sub-commands):\n"
994 "\tstart [addr [arg ...]]\n"
995 "\tloados - load OS image\n"
996#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
997 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
998#endif
999#if defined(CONFIG_OF_LIBFDT)
1000 "\tfdt - relocate flat device tree\n"
1001#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001002 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001003 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001004 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001005 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001006);
1007
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001008/*******************************************************************/
1009/* bootd - boot default image */
1010/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001011#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001012int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001013{
1014 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001015
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001016#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001017 if (run_command (getenv ("bootcmd"), flag) < 0)
1018 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001019#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001020 if (parse_string_outer (getenv ("bootcmd"),
1021 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1022 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001023#endif
1024 return rcode;
1025}
wdenk8bde7f72003-06-27 21:31:46 +00001026
wdenk0d498392003-07-01 21:06:45 +00001027U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001028 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001029 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001030 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001031);
1032
1033/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001034U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001035 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001036 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001037 ""
wdenk8bde7f72003-06-27 21:31:46 +00001038);
1039
wdenk47d1a6e2002-11-03 00:01:44 +00001040#endif
1041
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001042
1043/*******************************************************************/
1044/* iminfo - print header info for a requested image */
1045/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001046#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001047int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001048{
1049 int arg;
1050 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001051 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001052
1053 if (argc < 2) {
1054 return image_info (load_addr);
1055 }
1056
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001057 for (arg = 1; arg < argc; ++arg) {
1058 addr = simple_strtoul (argv[arg], NULL, 16);
1059 if (image_info (addr) != 0)
1060 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001061 }
1062 return rcode;
1063}
1064
1065static int image_info (ulong addr)
1066{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001067 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001068
1069 printf ("\n## Checking Image at %08lx ...\n", addr);
1070
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001071 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001072 case IMAGE_FORMAT_LEGACY:
1073 puts (" Legacy image found\n");
1074 if (!image_check_magic (hdr)) {
1075 puts (" Bad Magic Number\n");
1076 return 1;
1077 }
1078
1079 if (!image_check_hcrc (hdr)) {
1080 puts (" Bad Header Checksum\n");
1081 return 1;
1082 }
1083
1084 image_print_contents (hdr);
1085
1086 puts (" Verifying Checksum ... ");
1087 if (!image_check_dcrc (hdr)) {
1088 puts (" Bad Data CRC\n");
1089 return 1;
1090 }
1091 puts ("OK\n");
1092 return 0;
1093#if defined(CONFIG_FIT)
1094 case IMAGE_FORMAT_FIT:
1095 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001096
1097 if (!fit_check_format (hdr)) {
1098 puts ("Bad FIT image format!\n");
1099 return 1;
1100 }
1101
1102 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001103
1104 if (!fit_all_image_check_hashes (hdr)) {
1105 puts ("Bad hash in FIT image!\n");
1106 return 1;
1107 }
1108
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001109 return 0;
1110#endif
1111 default:
1112 puts ("Unknown image format!\n");
1113 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001114 }
1115
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001116 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001117}
wdenk0d498392003-07-01 21:06:45 +00001118
1119U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001120 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001121 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001122 "addr [addr ...]\n"
1123 " - print header information for application image starting at\n"
1124 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001125 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001126);
Jon Loeliger90253172007-07-10 11:02:44 -05001127#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001128
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001129
1130/*******************************************************************/
1131/* imls - list all images found in flash */
1132/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001133#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001134int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001135{
1136 flash_info_t *info;
1137 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001138 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001139
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001140 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001141 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001142
wdenk27b207f2003-07-24 23:38:38 +00001143 if (info->flash_id == FLASH_UNKNOWN)
1144 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001145 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001146
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001147 hdr = (void *)info->start[j];
1148 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001149 goto next_sector;
1150
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001151 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001152 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001153 if (!image_check_hcrc (hdr))
1154 goto next_sector;
1155
1156 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1157 image_print_contents (hdr);
1158
1159 puts (" Verifying Checksum ... ");
1160 if (!image_check_dcrc (hdr)) {
1161 puts ("Bad Data CRC\n");
1162 } else {
1163 puts ("OK\n");
1164 }
1165 break;
1166#if defined(CONFIG_FIT)
1167 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001168 if (!fit_check_format (hdr))
1169 goto next_sector;
1170
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001171 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001172 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001173 break;
1174#endif
1175 default:
wdenk27b207f2003-07-24 23:38:38 +00001176 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001177 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001178
wdenkbdccc4f2003-08-05 17:43:17 +00001179next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001180 }
wdenkbdccc4f2003-08-05 17:43:17 +00001181next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001182 }
1183
1184 return (0);
1185}
1186
1187U_BOOT_CMD(
1188 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001189 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001190 "\n"
1191 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001192 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001193);
Jon Loeliger90253172007-07-10 11:02:44 -05001194#endif
wdenk27b207f2003-07-24 23:38:38 +00001195
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001196/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001197/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001198/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001199#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001200static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001201{
1202 char buf[256], *start, *end;
1203 char *cmdline = getenv ("bootargs");
1204
1205 /* Only fix cmdline when requested */
1206 if (!(gd->flags & GD_FLG_SILENT))
1207 return;
1208
1209 debug ("before silent fix-up: %s\n", cmdline);
1210 if (cmdline) {
1211 if ((start = strstr (cmdline, "console=")) != NULL) {
1212 end = strchr (start, ' ');
1213 strncpy (buf, cmdline, (start - cmdline + 8));
1214 if (end)
1215 strcpy (buf + (start - cmdline + 8), end);
1216 else
1217 buf[start - cmdline + 8] = '\0';
1218 } else {
1219 strcpy (buf, cmdline);
1220 strcat (buf, " console=");
1221 }
1222 } else {
1223 strcpy (buf, "console=");
1224 }
1225
1226 setenv ("bootargs", buf);
1227 debug ("after silent fix-up: %s\n", buf);
1228}
1229#endif /* CONFIG_SILENT_CONSOLE */
1230
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001231
1232/*******************************************************************/
1233/* OS booting routines */
1234/*******************************************************************/
1235
Kumar Galab1d0db12008-10-21 17:25:47 -05001236#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001237static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001238 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001239{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001240 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001241 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001242 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001243 char *consdev;
1244 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001245
Kumar Gala49c3a862008-10-21 17:25:45 -05001246 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1247 return 1;
1248
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001249#if defined(CONFIG_FIT)
1250 if (!images->legacy_hdr_valid) {
1251 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001252 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001253 }
1254#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001255 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001256
1257 /*
1258 * Booting a (NetBSD) kernel image
1259 *
1260 * This process is pretty similar to a standalone application:
1261 * The (first part of an multi-) image must be a stage-2 loader,
1262 * which in turn is responsible for loading & invoking the actual
1263 * kernel. The only differences are the parameters being passed:
1264 * besides the board info strucure, the loader expects a command
1265 * line, the name of the console device, and (optionally) the
1266 * address of the original image header.
1267 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001268 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001269 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001270 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1271 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001272 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001273 }
wdenk47d1a6e2002-11-03 00:01:44 +00001274
1275 consdev = "";
1276#if defined (CONFIG_8xx_CONS_SMC1)
1277 consdev = "smc1";
1278#elif defined (CONFIG_8xx_CONS_SMC2)
1279 consdev = "smc2";
1280#elif defined (CONFIG_8xx_CONS_SCC2)
1281 consdev = "scc2";
1282#elif defined (CONFIG_8xx_CONS_SCC3)
1283 consdev = "scc3";
1284#endif
1285
1286 if (argc > 2) {
1287 ulong len;
1288 int i;
1289
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001290 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001291 len += strlen (argv[i]) + 1;
1292 cmdline = malloc (len);
1293
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001294 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001295 if (i > 2)
1296 cmdline[len++] = ' ';
1297 strcpy (&cmdline[len], argv[i]);
1298 len += strlen (argv[i]);
1299 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001300 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001301 cmdline = "";
1302 }
1303
Kumar Galac160a952008-08-15 08:24:36 -05001304 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001305
1306 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1307 (ulong)loader);
1308
1309 show_boot_progress (15);
1310
1311 /*
1312 * NetBSD Stage-2 Loader Parameters:
1313 * r3: ptr to board info data
1314 * r4: image address
1315 * r5: console device
1316 * r6: boot args string
1317 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001318 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001319
1320 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001321}
Kumar Galab1d0db12008-10-21 17:25:47 -05001322#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001323
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001324#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001325static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001326 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001327{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001328 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001329
Kumar Gala49c3a862008-10-21 17:25:45 -05001330 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1331 return 1;
1332
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001333#if defined(CONFIG_FIT)
1334 if (!images->legacy_hdr_valid) {
1335 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001336 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001337 }
1338#endif
1339
1340 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001341
1342 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001343}
1344#endif /* CONFIG_LYNXKDI */
1345
Kumar Galab1d0db12008-10-21 17:25:47 -05001346#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001347static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001348 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001349{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001350 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001351
Kumar Gala49c3a862008-10-21 17:25:45 -05001352 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1353 return 1;
1354
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001355#if defined(CONFIG_FIT)
1356 if (!images->legacy_hdr_valid) {
1357 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001358 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001359 }
1360#endif
1361
Kumar Galac160a952008-08-15 08:24:36 -05001362 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001363
1364 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1365 (ulong)entry_point);
1366
Heiko Schocherfad63402007-07-13 09:54:17 +02001367 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001368
1369 /*
1370 * RTEMS Parameters:
1371 * r3: ptr to board info data
1372 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001373 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001374
1375 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001376}
Kumar Galab1d0db12008-10-21 17:25:47 -05001377#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001378
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001379#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001380static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001381 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001382{
wdenk47d1a6e2002-11-03 00:01:44 +00001383 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001384
Kumar Gala49c3a862008-10-21 17:25:45 -05001385 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1386 return 1;
1387
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001388#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001389 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001390 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001391 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001392 }
1393#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001394
Kumar Galac160a952008-08-15 08:24:36 -05001395 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001396 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001397 do_bootvx(NULL, 0, 0, NULL);
1398
1399 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001400}
1401
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001402static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001403 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001404{
wdenk47d1a6e2002-11-03 00:01:44 +00001405 char *local_args[2];
1406 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001407
Kumar Gala49c3a862008-10-21 17:25:45 -05001408 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1409 return 1;
1410
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001411#if defined(CONFIG_FIT)
1412 if (!images->legacy_hdr_valid) {
1413 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001414 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001415 }
1416#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001417
Kumar Galac160a952008-08-15 08:24:36 -05001418 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001419 local_args[0] = argv[0];
1420 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001421 do_bootelf(NULL, 0, 2, local_args);
1422
1423 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001424}
Jon Loeliger90253172007-07-10 11:02:44 -05001425#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001426
1427#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001428static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001429 bootm_headers_t *images)
1430{
1431 void (*entry_point)(void);
1432
Kumar Gala49c3a862008-10-21 17:25:45 -05001433 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1434 return 1;
1435
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001436#if defined(CONFIG_FIT)
1437 if (!images->legacy_hdr_valid) {
1438 fit_unsupported_reset ("INTEGRITY");
1439 return 1;
1440 }
1441#endif
1442
1443 entry_point = (void (*)(void))images->ep;
1444
1445 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1446 (ulong)entry_point);
1447
1448 show_boot_progress (15);
1449
1450 /*
1451 * INTEGRITY Parameters:
1452 * None
1453 */
1454 (*entry_point)();
1455
1456 return 1;
1457}
1458#endif