blob: 4c6ed4870374deb822f6a36c1144b42a92e83975 [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;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200336#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
337 int ret;
338#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500339
340 const char *type_name = genimg_get_type_name (os.type);
341
342 switch (comp) {
343 case IH_COMP_NONE:
344 if (load == blob_start) {
345 printf (" XIP %s ... ", type_name);
346 } else {
347 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400348 memmove_wd ((void *)load, (void *)image_start,
349 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500350 }
351 *load_end = load + image_len;
352 puts("OK\n");
353 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500354#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500355 case IH_COMP_GZIP:
356 printf (" Uncompressing %s ... ", type_name);
357 if (gunzip ((void *)load, unc_len,
358 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100359 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500360 "- must RESET board to recover\n");
361 if (boot_progress)
362 show_boot_progress (-6);
363 return BOOTM_ERR_RESET;
364 }
365
366 *load_end = load + image_len;
367 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500368#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500369#ifdef CONFIG_BZIP2
370 case IH_COMP_BZIP2:
371 printf (" Uncompressing %s ... ", type_name);
372 /*
373 * If we've got less than 4 MB of malloc() space,
374 * use slower decompression algorithm which requires
375 * at most 2300 KB of memory.
376 */
377 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
378 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200379 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500380 if (i != BZ_OK) {
381 printf ("BUNZIP2: uncompress or overwrite error %d "
382 "- must RESET board to recover\n", i);
383 if (boot_progress)
384 show_boot_progress (-6);
385 return BOOTM_ERR_RESET;
386 }
387
388 *load_end = load + unc_len;
389 break;
390#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200391#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400392 case IH_COMP_LZMA: {
393 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200394 printf (" Uncompressing %s ... ", type_name);
395
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200396 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400397 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200398 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400399 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200400 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200401 printf ("LZMA: uncompress or overwrite error %d "
402 "- must RESET board to recover\n", ret);
403 show_boot_progress (-6);
404 return BOOTM_ERR_RESET;
405 }
406 *load_end = load + unc_len;
407 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400408 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200409#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100410#ifdef CONFIG_LZO
411 case IH_COMP_LZO:
412 printf (" Uncompressing %s ... ", type_name);
413
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200414 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100415 image_len, (unsigned char *)load,
416 &unc_len);
417 if (ret != LZO_E_OK) {
418 printf ("LZO: uncompress or overwrite error %d "
419 "- must RESET board to recover\n", ret);
420 if (boot_progress)
421 show_boot_progress (-6);
422 return BOOTM_ERR_RESET;
423 }
424
425 *load_end = load + unc_len;
426 break;
427#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500428 default:
429 printf ("Unimplemented compression type %d\n", comp);
430 return BOOTM_ERR_UNIMPLEMENTED;
431 }
432 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200433 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500434 if (boot_progress)
435 show_boot_progress (7);
436
437 if ((load < blob_end) && (*load_end > blob_start)) {
438 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 +0200439 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500440
441 return BOOTM_ERR_OVERLAP;
442 }
443
444 return 0;
445}
446
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200447static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200448{
449 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200450 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200451
452 /* Don't start if "autostart" is set to "no" */
453 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
454 char buf[32];
455 sprintf(buf, "%lX", images.os.image_len);
456 setenv("filesize", buf);
457 return 0;
458 }
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200459 appl = (int (*)(int, char * const []))ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200460 (*appl)(argc-1, &argv[1]);
461
462 return 0;
463}
464
Kumar Gala49c3a862008-10-21 17:25:45 -0500465/* we overload the cmd field with our state machine info instead of a
466 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100467static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500468 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
469 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
470#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
471 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
472#endif
473#ifdef CONFIG_OF_LIBFDT
474 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
475#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500476 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600477 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500478 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
479 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
480};
481
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200482int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500483{
484 int ret = 0;
485 int state;
486 cmd_tbl_t *c;
487 boot_os_fn *boot_fn;
488
489 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
490
491 if (c) {
492 state = (int)c->cmd;
493
494 /* treat start special since it resets the state machine */
495 if (state == BOOTM_STATE_START) {
496 argc--;
497 argv++;
498 return bootm_start(cmdtp, flag, argc, argv);
499 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200500 } else {
501 /* Unrecognized command */
502 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500503 }
504
505 if (images.state >= state) {
506 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200507 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500508 }
509
510 images.state |= state;
511 boot_fn = boot_os[images.os.os];
512
513 switch (state) {
514 ulong load_end;
515 case BOOTM_STATE_START:
516 /* should never occur */
517 break;
518 case BOOTM_STATE_LOADOS:
519 ret = bootm_load_os(images.os, &load_end, 0);
520 if (ret)
521 return ret;
522
523 lmb_reserve(&images.lmb, images.os.load,
524 (load_end - images.os.load));
525 break;
526#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
527 case BOOTM_STATE_RAMDISK:
528 {
529 ulong rd_len = images.rd_end - images.rd_start;
530 char str[17];
531
532 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
533 rd_len, &images.initrd_start, &images.initrd_end);
534 if (ret)
535 return ret;
536
537 sprintf(str, "%lx", images.initrd_start);
538 setenv("initrd_start", str);
539 sprintf(str, "%lx", images.initrd_end);
540 setenv("initrd_end", str);
541 }
542 break;
543#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100544#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500545 case BOOTM_STATE_FDT:
546 {
547 ulong bootmap_base = getenv_bootm_low();
548 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
549 &images.ft_addr, &images.ft_len);
550 break;
551 }
552#endif
553 case BOOTM_STATE_OS_CMDLINE:
554 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
555 if (ret)
556 printf ("cmdline subcommand not supported\n");
557 break;
558 case BOOTM_STATE_OS_BD_T:
559 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
560 if (ret)
561 printf ("bdt subcommand not supported\n");
562 break;
563 case BOOTM_STATE_OS_PREP:
564 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
565 if (ret)
566 printf ("prep subcommand not supported\n");
567 break;
568 case BOOTM_STATE_OS_GO:
569 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500570 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500571 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
572 break;
573 }
574
575 return ret;
576}
577
Kumar Gala396f6352008-08-15 08:24:41 -0500578/*******************************************************************/
579/* bootm - boot application image from image in memory */
580/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500581
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200582int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500583{
Kumar Gala396f6352008-08-15 08:24:41 -0500584 ulong iflag;
585 ulong load_end = 0;
586 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500587 boot_os_fn *boot_fn;
Peter Tyser521af042009-09-21 11:20:36 -0500588#ifndef CONFIG_RELOC_FIXUP_WORKS
589 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500590
591 /* relocate boot function table */
592 if (!relocated) {
593 int i;
594 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200595 if (boot_os[i] != NULL)
596 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500597 relocated = 1;
598 }
Peter Tyser521af042009-09-21 11:20:36 -0500599#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500600
Kumar Gala49c3a862008-10-21 17:25:45 -0500601 /* determine if we have a sub command */
602 if (argc > 1) {
603 char *endp;
604
605 simple_strtoul(argv[1], &endp, 16);
606 /* endp pointing to NULL means that argv[1] was just a
607 * valid number, pass it along to the normal bootm processing
608 *
609 * If endp is ':' or '#' assume a FIT identifier so pass
610 * along for normal processing.
611 *
612 * Right now we assume the first arg should never be '-'
613 */
614 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
615 return do_bootm_subcommand(cmdtp, flag, argc, argv);
616 }
617
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200618 if (bootm_start(cmdtp, flag, argc, argv))
619 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000620
621 /*
622 * We have reached the point of no return: we are going to
623 * overwrite all exception vector code, so we cannot easily
624 * recover from any failures any more...
625 */
wdenk47d1a6e2002-11-03 00:01:44 +0000626 iflag = disable_interrupts();
627
Stefan Roeseebb86c42008-07-30 09:59:51 +0200628#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200629 /*
630 * turn off USB to prevent the host controller from writing to the
631 * SDRAM while Linux is booting. This could happen (at least for OHCI
632 * controller), because the HCCA (Host Controller Communication Area)
633 * lies within the SDRAM and the host controller writes continously to
634 * this area (as busmaster!). The HccaFrameNumber is for example
635 * updated every 1 ms within the HCCA structure in SDRAM! For more
636 * details see the OpenHCI specification.
637 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200638 usb_stop();
639#endif
640
Kumar Gala396f6352008-08-15 08:24:41 -0500641 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000642
Kumar Gala396f6352008-08-15 08:24:41 -0500643 if (ret < 0) {
644 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000645 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500646 if (ret == BOOTM_ERR_OVERLAP) {
647 if (images.legacy_hdr_valid) {
648 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
649 puts ("WARNING: legacy format multi component "
650 "image overwritten\n");
651 } else {
652 puts ("ERROR: new format image overwritten - "
653 "must RESET the board to recover\n");
654 show_boot_progress (-113);
655 do_reset (cmdtp, flag, argc, argv);
656 }
wdenk47d1a6e2002-11-03 00:01:44 +0000657 }
Kumar Gala396f6352008-08-15 08:24:41 -0500658 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
659 if (iflag)
660 enable_interrupts();
661 show_boot_progress (-7);
662 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200663 }
wdenk47d1a6e2002-11-03 00:01:44 +0000664 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100665
Kumar Gala396f6352008-08-15 08:24:41 -0500666 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
667
Detlev Zundelf97ec302009-07-13 16:01:19 +0200668 if (images.os.type == IH_TYPE_STANDALONE) {
669 if (iflag)
670 enable_interrupts();
671 /* This may return when 'autostart' is 'no' */
672 bootm_start_standalone(iflag, argc, argv);
673 return 0;
674 }
675
Heiko Schocherfad63402007-07-13 09:54:17 +0200676 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000677
wdenkf72da342003-10-10 10:05:42 +0000678#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500679 if (images.os.os == IH_OS_LINUX)
680 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000681#endif
682
Kumar Galabe083152008-10-21 17:25:44 -0500683 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200684
685 if (boot_fn == NULL) {
686 if (iflag)
687 enable_interrupts();
688 printf ("ERROR: booting os '%s' (%d) is not supported\n",
689 genimg_get_os_name(images.os.os), images.os.os);
690 show_boot_progress (-8);
691 return 1;
692 }
693
Kumar Gala3dfad402009-08-27 08:23:55 -0500694 arch_preboot_os();
695
Kumar Galabe083152008-10-21 17:25:44 -0500696 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000697
Heiko Schocherfad63402007-07-13 09:54:17 +0200698 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000699#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000700 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000701#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500702 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100703
wdenk47d1a6e2002-11-03 00:01:44 +0000704 return 1;
705}
706
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100707/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100708 * image_get_kernel - verify legacy format kernel image
709 * @img_addr: in RAM address of the legacy format image to be verified
710 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100711 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100712 * image_get_kernel() verifies legacy image integrity and returns pointer to
713 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100714 *
715 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100716 * pointer to a legacy image header if valid image was found
717 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100718 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100719static image_header_t *image_get_kernel (ulong img_addr, int verify)
720{
721 image_header_t *hdr = (image_header_t *)img_addr;
722
723 if (!image_check_magic(hdr)) {
724 puts ("Bad Magic Number\n");
725 show_boot_progress (-1);
726 return NULL;
727 }
728 show_boot_progress (2);
729
730 if (!image_check_hcrc (hdr)) {
731 puts ("Bad Header Checksum\n");
732 show_boot_progress (-2);
733 return NULL;
734 }
735
736 show_boot_progress (3);
737 image_print_contents (hdr);
738
739 if (verify) {
740 puts (" Verifying Checksum ... ");
741 if (!image_check_dcrc (hdr)) {
742 printf ("Bad Data CRC\n");
743 show_boot_progress (-3);
744 return NULL;
745 }
746 puts ("OK\n");
747 }
748 show_boot_progress (4);
749
750 if (!image_check_target_arch (hdr)) {
751 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
752 show_boot_progress (-4);
753 return NULL;
754 }
755 return hdr;
756}
757
758/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100759 * fit_check_kernel - verify FIT format kernel subimage
760 * @fit_hdr: pointer to the FIT image header
761 * os_noffset: kernel subimage node offset within FIT image
762 * @verify: data CRC verification flag
763 *
764 * fit_check_kernel() verifies integrity of the kernel subimage and from
765 * specified FIT image.
766 *
767 * returns:
768 * 1, on success
769 * 0, on failure
770 */
771#if defined (CONFIG_FIT)
772static int fit_check_kernel (const void *fit, int os_noffset, int verify)
773{
774 fit_image_print (fit, os_noffset, " ");
775
776 if (verify) {
777 puts (" Verifying Hash Integrity ... ");
778 if (!fit_image_check_hashes (fit, os_noffset)) {
779 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100780 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100781 return 0;
782 }
783 puts ("OK\n");
784 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100785 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100786
787 if (!fit_image_check_target_arch (fit, os_noffset)) {
788 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100789 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100790 return 0;
791 }
792
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100793 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100794 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
795 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100796 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100797 return 0;
798 }
799
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100800 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100801 return 1;
802}
803#endif /* CONFIG_FIT */
804
805/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100806 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100807 * @os_data: pointer to a ulong variable, will hold os data start address
808 * @os_len: pointer to a ulong variable, will hold os data length
809 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100810 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100811 * and locates kernel data.
812 *
813 * returns:
814 * pointer to image header if valid image was found, plus kernel start
815 * address and length, otherwise NULL
816 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200817static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100818 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100819{
820 image_header_t *hdr;
821 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100822#if defined(CONFIG_FIT)
823 void *fit_hdr;
824 const char *fit_uname_config = NULL;
825 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100826 const void *data;
827 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100828 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100829 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100830#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100831
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100832 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100833 if (argc < 2) {
834 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100835 debug ("* kernel: default image load address = 0x%08lx\n",
836 load_addr);
837#if defined(CONFIG_FIT)
838 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
839 &fit_uname_config)) {
840 debug ("* kernel: config '%s' from image at 0x%08lx\n",
841 fit_uname_config, img_addr);
842 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
843 &fit_uname_kernel)) {
844 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
845 fit_uname_kernel, img_addr);
846#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100847 } else {
848 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100849 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100850 }
851
852 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100853
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100854 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100855 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100856
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100857 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100858 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100859 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100860 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100861 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
862 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100863 hdr = image_get_kernel (img_addr, images->verify);
864 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100865 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100866 show_boot_progress (5);
867
Marian Balakowicz6986a382008-03-12 10:01:05 +0100868 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100869 switch (image_get_type (hdr)) {
870 case IH_TYPE_KERNEL:
871 *os_data = image_get_data (hdr);
872 *os_len = image_get_data_size (hdr);
873 break;
874 case IH_TYPE_MULTI:
875 image_multi_getimg (hdr, 0, os_data, os_len);
876 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200877 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200878 *os_data = image_get_data (hdr);
879 *os_len = image_get_data_size (hdr);
880 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100881 default:
882 printf ("Wrong Image Type for %s command\n", cmdtp->name);
883 show_boot_progress (-5);
884 return NULL;
885 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100886
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200887 /*
888 * copy image header to allow for image overwrites during kernel
889 * decompression.
890 */
891 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
892
893 /* save pointer to image header */
894 images->legacy_hdr_os = hdr;
895
896 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100897 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100898 break;
899#if defined(CONFIG_FIT)
900 case IMAGE_FORMAT_FIT:
901 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100902 printf ("## Booting kernel from FIT Image at %08lx ...\n",
903 img_addr);
904
905 if (!fit_check_format (fit_hdr)) {
906 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100907 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100908 return NULL;
909 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100910 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100911
912 if (!fit_uname_kernel) {
913 /*
914 * no kernel image node unit name, try to get config
915 * node first. If config unit node name is NULL
916 * fit_conf_get_node() will try to find default config node
917 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100918 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100919 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
920 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100921 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100922 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100923 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100924 /* save configuration uname provided in the first
925 * bootm argument
926 */
927 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
928 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
929 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100930
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100931 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100932 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
933 } else {
934 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100935 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100936 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
937 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100938 if (os_noffset < 0) {
939 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100940 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100941 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100942
943 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
944
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100945 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100946 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
947 return NULL;
948
949 /* get kernel image data address and length */
950 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
951 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100952 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100953 return NULL;
954 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100955 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100956
957 *os_len = len;
958 *os_data = (ulong)data;
959 images->fit_hdr_os = fit_hdr;
960 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100961 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100962 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100963#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100964 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100965 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100966 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100967 return NULL;
968 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100969
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200970 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100971 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100972
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100973 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100974}
975
wdenk0d498392003-07-01 21:06:45 +0000976U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200977 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600978 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100979 "[addr [arg ...]]\n - boot application image stored in memory\n"
980 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
981 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100982#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500983 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200984 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500985 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
986 "\tuse a '-' for the second argument. If you do not pass a third\n"
987 "\ta bd_info struct will be passed instead\n"
988#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100989#if defined(CONFIG_FIT)
990 "\t\nFor the new multi component uImage format (FIT) addresses\n"
991 "\tmust be extened to include component or configuration unit name:\n"
992 "\taddr:<subimg_uname> - direct component image specification\n"
993 "\taddr#<conf_uname> - configuration specification\n"
994 "\tUse iminfo command to get the list of existing component\n"
995 "\timages and configurations.\n"
996#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500997 "\nSub-commands to do part of the bootm sequence. The sub-commands "
998 "must be\n"
999 "issued in the order below (it's ok to not issue all sub-commands):\n"
1000 "\tstart [addr [arg ...]]\n"
1001 "\tloados - load OS image\n"
1002#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1003 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1004#endif
1005#if defined(CONFIG_OF_LIBFDT)
1006 "\tfdt - relocate flat device tree\n"
1007#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001008 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001009 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001010 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001011 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001012);
1013
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001014/*******************************************************************/
1015/* bootd - boot default image */
1016/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001017#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001018int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001019{
1020 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001021
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001022#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001023 if (run_command (getenv ("bootcmd"), flag) < 0)
1024 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001025#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001026 if (parse_string_outer (getenv ("bootcmd"),
1027 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1028 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001029#endif
1030 return rcode;
1031}
wdenk8bde7f72003-06-27 21:31:46 +00001032
wdenk0d498392003-07-01 21:06:45 +00001033U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001034 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001035 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001036 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001037);
1038
1039/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001040U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001041 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001042 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001043 ""
wdenk8bde7f72003-06-27 21:31:46 +00001044);
1045
wdenk47d1a6e2002-11-03 00:01:44 +00001046#endif
1047
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001048
1049/*******************************************************************/
1050/* iminfo - print header info for a requested image */
1051/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001052#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001053int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001054{
1055 int arg;
1056 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001057 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001058
1059 if (argc < 2) {
1060 return image_info (load_addr);
1061 }
1062
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001063 for (arg = 1; arg < argc; ++arg) {
1064 addr = simple_strtoul (argv[arg], NULL, 16);
1065 if (image_info (addr) != 0)
1066 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001067 }
1068 return rcode;
1069}
1070
1071static int image_info (ulong addr)
1072{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001073 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001074
1075 printf ("\n## Checking Image at %08lx ...\n", addr);
1076
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001077 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001078 case IMAGE_FORMAT_LEGACY:
1079 puts (" Legacy image found\n");
1080 if (!image_check_magic (hdr)) {
1081 puts (" Bad Magic Number\n");
1082 return 1;
1083 }
1084
1085 if (!image_check_hcrc (hdr)) {
1086 puts (" Bad Header Checksum\n");
1087 return 1;
1088 }
1089
1090 image_print_contents (hdr);
1091
1092 puts (" Verifying Checksum ... ");
1093 if (!image_check_dcrc (hdr)) {
1094 puts (" Bad Data CRC\n");
1095 return 1;
1096 }
1097 puts ("OK\n");
1098 return 0;
1099#if defined(CONFIG_FIT)
1100 case IMAGE_FORMAT_FIT:
1101 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001102
1103 if (!fit_check_format (hdr)) {
1104 puts ("Bad FIT image format!\n");
1105 return 1;
1106 }
1107
1108 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001109
1110 if (!fit_all_image_check_hashes (hdr)) {
1111 puts ("Bad hash in FIT image!\n");
1112 return 1;
1113 }
1114
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001115 return 0;
1116#endif
1117 default:
1118 puts ("Unknown image format!\n");
1119 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001120 }
1121
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001122 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001123}
wdenk0d498392003-07-01 21:06:45 +00001124
1125U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001126 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001127 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001128 "addr [addr ...]\n"
1129 " - print header information for application image starting at\n"
1130 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001131 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001132);
Jon Loeliger90253172007-07-10 11:02:44 -05001133#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001134
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001135
1136/*******************************************************************/
1137/* imls - list all images found in flash */
1138/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001139#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001140int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001141{
1142 flash_info_t *info;
1143 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001144 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001145
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001146 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001147 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001148
wdenk27b207f2003-07-24 23:38:38 +00001149 if (info->flash_id == FLASH_UNKNOWN)
1150 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001151 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001152
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001153 hdr = (void *)info->start[j];
1154 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001155 goto next_sector;
1156
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001157 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001158 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001159 if (!image_check_hcrc (hdr))
1160 goto next_sector;
1161
1162 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1163 image_print_contents (hdr);
1164
1165 puts (" Verifying Checksum ... ");
1166 if (!image_check_dcrc (hdr)) {
1167 puts ("Bad Data CRC\n");
1168 } else {
1169 puts ("OK\n");
1170 }
1171 break;
1172#if defined(CONFIG_FIT)
1173 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001174 if (!fit_check_format (hdr))
1175 goto next_sector;
1176
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001177 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001178 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001179 break;
1180#endif
1181 default:
wdenk27b207f2003-07-24 23:38:38 +00001182 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001183 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001184
wdenkbdccc4f2003-08-05 17:43:17 +00001185next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001186 }
wdenkbdccc4f2003-08-05 17:43:17 +00001187next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001188 }
1189
1190 return (0);
1191}
1192
1193U_BOOT_CMD(
1194 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001195 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001196 "\n"
1197 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001198 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001199);
Jon Loeliger90253172007-07-10 11:02:44 -05001200#endif
wdenk27b207f2003-07-24 23:38:38 +00001201
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001202/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001203/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001204/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001205#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001206static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001207{
1208 char buf[256], *start, *end;
1209 char *cmdline = getenv ("bootargs");
1210
1211 /* Only fix cmdline when requested */
1212 if (!(gd->flags & GD_FLG_SILENT))
1213 return;
1214
1215 debug ("before silent fix-up: %s\n", cmdline);
1216 if (cmdline) {
1217 if ((start = strstr (cmdline, "console=")) != NULL) {
1218 end = strchr (start, ' ');
1219 strncpy (buf, cmdline, (start - cmdline + 8));
1220 if (end)
1221 strcpy (buf + (start - cmdline + 8), end);
1222 else
1223 buf[start - cmdline + 8] = '\0';
1224 } else {
1225 strcpy (buf, cmdline);
1226 strcat (buf, " console=");
1227 }
1228 } else {
1229 strcpy (buf, "console=");
1230 }
1231
1232 setenv ("bootargs", buf);
1233 debug ("after silent fix-up: %s\n", buf);
1234}
1235#endif /* CONFIG_SILENT_CONSOLE */
1236
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001237
1238/*******************************************************************/
1239/* OS booting routines */
1240/*******************************************************************/
1241
Kumar Galab1d0db12008-10-21 17:25:47 -05001242#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001243static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001244 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001245{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001246 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001247 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001248 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001249 char *consdev;
1250 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001251
Kumar Gala49c3a862008-10-21 17:25:45 -05001252 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1253 return 1;
1254
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001255#if defined(CONFIG_FIT)
1256 if (!images->legacy_hdr_valid) {
1257 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001258 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001259 }
1260#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001261 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001262
1263 /*
1264 * Booting a (NetBSD) kernel image
1265 *
1266 * This process is pretty similar to a standalone application:
1267 * The (first part of an multi-) image must be a stage-2 loader,
1268 * which in turn is responsible for loading & invoking the actual
1269 * kernel. The only differences are the parameters being passed:
1270 * besides the board info strucure, the loader expects a command
1271 * line, the name of the console device, and (optionally) the
1272 * address of the original image header.
1273 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001274 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001275 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001276 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1277 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001278 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001279 }
wdenk47d1a6e2002-11-03 00:01:44 +00001280
1281 consdev = "";
1282#if defined (CONFIG_8xx_CONS_SMC1)
1283 consdev = "smc1";
1284#elif defined (CONFIG_8xx_CONS_SMC2)
1285 consdev = "smc2";
1286#elif defined (CONFIG_8xx_CONS_SCC2)
1287 consdev = "scc2";
1288#elif defined (CONFIG_8xx_CONS_SCC3)
1289 consdev = "scc3";
1290#endif
1291
1292 if (argc > 2) {
1293 ulong len;
1294 int i;
1295
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001296 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001297 len += strlen (argv[i]) + 1;
1298 cmdline = malloc (len);
1299
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001300 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001301 if (i > 2)
1302 cmdline[len++] = ' ';
1303 strcpy (&cmdline[len], argv[i]);
1304 len += strlen (argv[i]);
1305 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001306 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001307 cmdline = "";
1308 }
1309
Kumar Galac160a952008-08-15 08:24:36 -05001310 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001311
1312 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1313 (ulong)loader);
1314
1315 show_boot_progress (15);
1316
1317 /*
1318 * NetBSD Stage-2 Loader Parameters:
1319 * r3: ptr to board info data
1320 * r4: image address
1321 * r5: console device
1322 * r6: boot args string
1323 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001324 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001325
1326 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001327}
Kumar Galab1d0db12008-10-21 17:25:47 -05001328#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001329
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001330#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001331static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001332 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001333{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001334 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001335
Kumar Gala49c3a862008-10-21 17:25:45 -05001336 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1337 return 1;
1338
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001339#if defined(CONFIG_FIT)
1340 if (!images->legacy_hdr_valid) {
1341 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001342 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001343 }
1344#endif
1345
1346 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001347
1348 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001349}
1350#endif /* CONFIG_LYNXKDI */
1351
Kumar Galab1d0db12008-10-21 17:25:47 -05001352#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001353static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001354 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001355{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001356 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001357
Kumar Gala49c3a862008-10-21 17:25:45 -05001358 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1359 return 1;
1360
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001361#if defined(CONFIG_FIT)
1362 if (!images->legacy_hdr_valid) {
1363 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001364 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001365 }
1366#endif
1367
Kumar Galac160a952008-08-15 08:24:36 -05001368 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001369
1370 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1371 (ulong)entry_point);
1372
Heiko Schocherfad63402007-07-13 09:54:17 +02001373 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001374
1375 /*
1376 * RTEMS Parameters:
1377 * r3: ptr to board info data
1378 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001379 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001380
1381 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001382}
Kumar Galab1d0db12008-10-21 17:25:47 -05001383#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001384
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001385#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001386static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001387 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001388{
wdenk47d1a6e2002-11-03 00:01:44 +00001389 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001390
Kumar Gala49c3a862008-10-21 17:25:45 -05001391 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1392 return 1;
1393
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001394#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001395 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001396 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001397 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001398 }
1399#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001400
Kumar Galac160a952008-08-15 08:24:36 -05001401 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001402 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001403 do_bootvx(NULL, 0, 0, NULL);
1404
1405 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001406}
1407
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001408static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001409 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001410{
wdenk47d1a6e2002-11-03 00:01:44 +00001411 char *local_args[2];
1412 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001413
Kumar Gala49c3a862008-10-21 17:25:45 -05001414 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1415 return 1;
1416
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001417#if defined(CONFIG_FIT)
1418 if (!images->legacy_hdr_valid) {
1419 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001420 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001421 }
1422#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001423
Kumar Galac160a952008-08-15 08:24:36 -05001424 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001425 local_args[0] = argv[0];
1426 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001427 do_bootelf(NULL, 0, 2, local_args);
1428
1429 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001430}
Jon Loeliger90253172007-07-10 11:02:44 -05001431#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001432
1433#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001434static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001435 bootm_headers_t *images)
1436{
1437 void (*entry_point)(void);
1438
Kumar Gala49c3a862008-10-21 17:25:45 -05001439 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1440 return 1;
1441
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001442#if defined(CONFIG_FIT)
1443 if (!images->legacy_hdr_valid) {
1444 fit_unsupported_reset ("INTEGRITY");
1445 return 1;
1446 }
1447#endif
1448
1449 entry_point = (void (*)(void))images->ep;
1450
1451 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1452 (ulong)entry_point);
1453
1454 show_boot_progress (15);
1455
1456 /*
1457 * INTEGRITY Parameters:
1458 * None
1459 */
1460 (*entry_point)();
1461
1462 return 1;
1463}
1464#endif