blob: 995e378359d9438a0fc36a367b4387bcb1abd23b [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 */
wdenk27b207f2003-07-24 23:38:38 +000081static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
82#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
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010093static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010094 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010095extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *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 */
Kumar Gala40d7e992008-08-15 08:24:45 -0500105typedef int boot_os_fn (int flag, int argc, char *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;
124int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
125int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *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
177#elif defined(__nios__)
178 #define IH_INITRD_ARCH IH_ARCH_NIOS
179#elif defined(__nios2__)
180 #define IH_INITRD_ARCH IH_ARCH_NIOS2
181#elif defined(__PPC__)
182 #define IH_INITRD_ARCH IH_ARCH_PPC
183#elif defined(__sh__)
184 #define IH_INITRD_ARCH IH_ARCH_SH
185#elif defined(__sparc__)
186 #define IH_INITRD_ARCH IH_ARCH_SPARC
187#else
188# error Unknown CPU type
189#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000190
Mike Frysingera16028d2009-11-03 11:35:59 -0500191static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000192{
Mike Frysingera16028d2009-11-03 11:35:59 -0500193#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500194 ulong mem_start;
195 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000196
Kumar Galae906cfa2008-08-15 08:24:40 -0500197 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000198
Kumar Galad3f2fa02008-02-27 21:51:50 -0600199 mem_start = getenv_bootm_low();
200 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Kumar Galae906cfa2008-08-15 08:24:40 -0500202 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000203
Kumar Gala76da19d2008-10-16 21:52:08 -0500204 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500205 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500206#else
207# define lmb_reserve(lmb, base, size)
208#endif
209}
210
211static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
212{
213 void *os_hdr;
214 int ret;
215
216 memset ((void *)&images, 0, sizeof (images));
217 images.verify = getenv_yesno ("verify");
218
219 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000220
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100221 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100222 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500223 &images, &images.os.image_start, &images.os.image_len);
224 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100225 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000226 return 1;
227 }
wdenk47d1a6e2002-11-03 00:01:44 +0000228
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100229 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100230 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100231 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500232 images.os.type = image_get_type (os_hdr);
233 images.os.comp = image_get_comp (os_hdr);
234 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200235
Kumar Gala396f6352008-08-15 08:24:41 -0500236 images.os.end = image_get_image_end (os_hdr);
237 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100238 break;
239#if defined(CONFIG_FIT)
240 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100241 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500242 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100243 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100244 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000245 return 1;
246 }
wdenk47d1a6e2002-11-03 00:01:44 +0000247
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100248 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500249 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100250 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100251 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100252 return 1;
253 }
wdenk47d1a6e2002-11-03 00:01:44 +0000254
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100255 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500256 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100257 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100258 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100259 return 1;
260 }
wdenk47d1a6e2002-11-03 00:01:44 +0000261
Kumar Gala396f6352008-08-15 08:24:41 -0500262 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100263
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100264 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500265 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100266 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100267 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100268 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000269 }
270 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100271#endif
272 default:
273 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000274 return 1;
275 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100276
Kumar Galac160a952008-08-15 08:24:36 -0500277 /* find kernel entry point */
278 if (images.legacy_hdr_valid) {
279 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
280#if defined(CONFIG_FIT)
281 } else if (images.fit_uname_os) {
282 ret = fit_image_get_entry (images.fit_hdr_os,
283 images.fit_noffset_os, &images.ep);
284 if (ret) {
285 puts ("Can't get entry point property!\n");
286 return 1;
287 }
288#endif
289 } else {
290 puts ("Could not find kernel entry point!\n");
291 return 1;
292 }
293
Heiko Schocher24de2f42010-03-29 13:15:48 +0200294 if (((images.os.type == IH_TYPE_KERNEL) ||
295 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100296 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500297 /* find ramdisk */
298 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
299 &images.rd_start, &images.rd_end);
300 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500301 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500302 return 1;
303 }
Kumar Gala06a09912008-08-15 08:24:38 -0500304
305#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200306#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500307 /* find flattened device tree */
308 ret = boot_get_fdt (flag, argc, argv, &images,
309 &images.ft_addr, &images.ft_len);
310 if (ret) {
311 puts ("Could not find a valid device tree\n");
312 return 1;
313 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500314
315 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500316#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200317#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500318 }
319
Kumar Gala396f6352008-08-15 08:24:41 -0500320 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500321 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500322
323 return 0;
324}
325
326#define BOOTM_ERR_RESET -1
327#define BOOTM_ERR_OVERLAP -2
328#define BOOTM_ERR_UNIMPLEMENTED -3
329static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
330{
331 uint8_t comp = os.comp;
332 ulong load = os.load;
333 ulong blob_start = os.start;
334 ulong blob_end = os.end;
335 ulong image_start = os.image_start;
336 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200337 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Kumar Gala396f6352008-08-15 08:24:41 -0500338
339 const char *type_name = genimg_get_type_name (os.type);
340
341 switch (comp) {
342 case IH_COMP_NONE:
343 if (load == blob_start) {
344 printf (" XIP %s ... ", type_name);
345 } else {
346 printf (" Loading %s ... ", type_name);
347
Minkyu Kangfca0cec2009-02-18 09:05:52 +0900348 if (load != image_start) {
349 memmove_wd ((void *)load,
350 (void *)image_start, image_len, CHUNKSZ);
351 }
Kumar Gala396f6352008-08-15 08:24:41 -0500352 }
353 *load_end = load + image_len;
354 puts("OK\n");
355 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500356#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500357 case IH_COMP_GZIP:
358 printf (" Uncompressing %s ... ", type_name);
359 if (gunzip ((void *)load, unc_len,
360 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100361 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500362 "- must RESET board to recover\n");
363 if (boot_progress)
364 show_boot_progress (-6);
365 return BOOTM_ERR_RESET;
366 }
367
368 *load_end = load + image_len;
369 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500370#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500371#ifdef CONFIG_BZIP2
372 case IH_COMP_BZIP2:
373 printf (" Uncompressing %s ... ", type_name);
374 /*
375 * If we've got less than 4 MB of malloc() space,
376 * use slower decompression algorithm which requires
377 * at most 2300 KB of memory.
378 */
379 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
380 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200381 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500382 if (i != BZ_OK) {
383 printf ("BUNZIP2: uncompress or overwrite error %d "
384 "- must RESET board to recover\n", i);
385 if (boot_progress)
386 show_boot_progress (-6);
387 return BOOTM_ERR_RESET;
388 }
389
390 *load_end = load + unc_len;
391 break;
392#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200393#ifdef CONFIG_LZMA
394 case IH_COMP_LZMA:
395 printf (" Uncompressing %s ... ", type_name);
396
397 int ret = lzmaBuffToBuffDecompress(
398 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200399 (unsigned char *)image_start, image_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;
408#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100409#ifdef CONFIG_LZO
410 case IH_COMP_LZO:
411 printf (" Uncompressing %s ... ", type_name);
412
413 int ret = lzop_decompress((const unsigned char *)image_start,
414 image_len, (unsigned char *)load,
415 &unc_len);
416 if (ret != LZO_E_OK) {
417 printf ("LZO: uncompress or overwrite error %d "
418 "- must RESET board to recover\n", ret);
419 if (boot_progress)
420 show_boot_progress (-6);
421 return BOOTM_ERR_RESET;
422 }
423
424 *load_end = load + unc_len;
425 break;
426#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500427 default:
428 printf ("Unimplemented compression type %d\n", comp);
429 return BOOTM_ERR_UNIMPLEMENTED;
430 }
431 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200432 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500433 if (boot_progress)
434 show_boot_progress (7);
435
436 if ((load < blob_end) && (*load_end > blob_start)) {
437 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 +0200438 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500439
440 return BOOTM_ERR_OVERLAP;
441 }
442
443 return 0;
444}
445
Detlev Zundelf97ec302009-07-13 16:01:19 +0200446static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
447{
448 char *s;
449 int (*appl)(int, char *[]);
450
451 /* Don't start if "autostart" is set to "no" */
452 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
453 char buf[32];
454 sprintf(buf, "%lX", images.os.image_len);
455 setenv("filesize", buf);
456 return 0;
457 }
458 appl = (int (*)(int, char *[]))ntohl(images.ep);
459 (*appl)(argc-1, &argv[1]);
460
461 return 0;
462}
463
Kumar Gala49c3a862008-10-21 17:25:45 -0500464/* we overload the cmd field with our state machine info instead of a
465 * function pointer */
466cmd_tbl_t cmd_bootm_sub[] = {
467 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
468 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
469#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
470 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
471#endif
472#ifdef CONFIG_OF_LIBFDT
473 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
474#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500475 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600476 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500477 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
478 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
479};
480
481int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
482{
483 int ret = 0;
484 int state;
485 cmd_tbl_t *c;
486 boot_os_fn *boot_fn;
487
488 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
489
490 if (c) {
491 state = (int)c->cmd;
492
493 /* treat start special since it resets the state machine */
494 if (state == BOOTM_STATE_START) {
495 argc--;
496 argv++;
497 return bootm_start(cmdtp, flag, argc, argv);
498 }
499 }
500 /* Unrecognized command */
501 else {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600502 cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500503 return 1;
504 }
505
506 if (images.state >= state) {
507 printf ("Trying to execute a command out of order\n");
Peter Tyser62c3ae72009-01-27 18:03:10 -0600508 cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500509 return 1;
510 }
511
512 images.state |= state;
513 boot_fn = boot_os[images.os.os];
514
515 switch (state) {
516 ulong load_end;
517 case BOOTM_STATE_START:
518 /* should never occur */
519 break;
520 case BOOTM_STATE_LOADOS:
521 ret = bootm_load_os(images.os, &load_end, 0);
522 if (ret)
523 return ret;
524
525 lmb_reserve(&images.lmb, images.os.load,
526 (load_end - images.os.load));
527 break;
528#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
529 case BOOTM_STATE_RAMDISK:
530 {
531 ulong rd_len = images.rd_end - images.rd_start;
532 char str[17];
533
534 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
535 rd_len, &images.initrd_start, &images.initrd_end);
536 if (ret)
537 return ret;
538
539 sprintf(str, "%lx", images.initrd_start);
540 setenv("initrd_start", str);
541 sprintf(str, "%lx", images.initrd_end);
542 setenv("initrd_end", str);
543 }
544 break;
545#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100546#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500547 case BOOTM_STATE_FDT:
548 {
549 ulong bootmap_base = getenv_bootm_low();
550 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
551 &images.ft_addr, &images.ft_len);
552 break;
553 }
554#endif
555 case BOOTM_STATE_OS_CMDLINE:
556 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
557 if (ret)
558 printf ("cmdline subcommand not supported\n");
559 break;
560 case BOOTM_STATE_OS_BD_T:
561 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
562 if (ret)
563 printf ("bdt subcommand not supported\n");
564 break;
565 case BOOTM_STATE_OS_PREP:
566 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
567 if (ret)
568 printf ("prep subcommand not supported\n");
569 break;
570 case BOOTM_STATE_OS_GO:
571 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500572 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500573 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
574 break;
575 }
576
577 return ret;
578}
579
Kumar Gala396f6352008-08-15 08:24:41 -0500580/*******************************************************************/
581/* bootm - boot application image from image in memory */
582/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500583
Kumar Gala396f6352008-08-15 08:24:41 -0500584int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
585{
Kumar Gala396f6352008-08-15 08:24:41 -0500586 ulong iflag;
587 ulong load_end = 0;
588 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500589 boot_os_fn *boot_fn;
Peter Tyser521af042009-09-21 11:20:36 -0500590#ifndef CONFIG_RELOC_FIXUP_WORKS
591 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500592
593 /* relocate boot function table */
594 if (!relocated) {
595 int i;
596 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200597 if (boot_os[i] != NULL)
598 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500599 relocated = 1;
600 }
Peter Tyser521af042009-09-21 11:20:36 -0500601#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500602
Kumar Gala49c3a862008-10-21 17:25:45 -0500603 /* determine if we have a sub command */
604 if (argc > 1) {
605 char *endp;
606
607 simple_strtoul(argv[1], &endp, 16);
608 /* endp pointing to NULL means that argv[1] was just a
609 * valid number, pass it along to the normal bootm processing
610 *
611 * If endp is ':' or '#' assume a FIT identifier so pass
612 * along for normal processing.
613 *
614 * Right now we assume the first arg should never be '-'
615 */
616 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
617 return do_bootm_subcommand(cmdtp, flag, argc, argv);
618 }
619
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200620 if (bootm_start(cmdtp, flag, argc, argv))
621 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000622
623 /*
624 * We have reached the point of no return: we are going to
625 * overwrite all exception vector code, so we cannot easily
626 * recover from any failures any more...
627 */
wdenk47d1a6e2002-11-03 00:01:44 +0000628 iflag = disable_interrupts();
629
Stefan Roeseebb86c42008-07-30 09:59:51 +0200630#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200631 /*
632 * turn off USB to prevent the host controller from writing to the
633 * SDRAM while Linux is booting. This could happen (at least for OHCI
634 * controller), because the HCCA (Host Controller Communication Area)
635 * lies within the SDRAM and the host controller writes continously to
636 * this area (as busmaster!). The HccaFrameNumber is for example
637 * updated every 1 ms within the HCCA structure in SDRAM! For more
638 * details see the OpenHCI specification.
639 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200640 usb_stop();
641#endif
642
wdenkc7de8292002-11-19 11:04:11 +0000643#ifdef CONFIG_AMIGAONEG3SE
644 /*
wdenk8bde7f72003-06-27 21:31:46 +0000645 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000646 * bios emulation, so turn them off again
647 */
648 icache_disable();
wdenkc7de8292002-11-19 11:04:11 +0000649 dcache_disable();
650#endif
651
Kumar Gala396f6352008-08-15 08:24:41 -0500652 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000653
Kumar Gala396f6352008-08-15 08:24:41 -0500654 if (ret < 0) {
655 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000656 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500657 if (ret == BOOTM_ERR_OVERLAP) {
658 if (images.legacy_hdr_valid) {
659 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
660 puts ("WARNING: legacy format multi component "
661 "image overwritten\n");
662 } else {
663 puts ("ERROR: new format image overwritten - "
664 "must RESET the board to recover\n");
665 show_boot_progress (-113);
666 do_reset (cmdtp, flag, argc, argv);
667 }
wdenk47d1a6e2002-11-03 00:01:44 +0000668 }
Kumar Gala396f6352008-08-15 08:24:41 -0500669 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
670 if (iflag)
671 enable_interrupts();
672 show_boot_progress (-7);
673 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200674 }
wdenk47d1a6e2002-11-03 00:01:44 +0000675 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100676
Kumar Gala396f6352008-08-15 08:24:41 -0500677 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
678
Detlev Zundelf97ec302009-07-13 16:01:19 +0200679 if (images.os.type == IH_TYPE_STANDALONE) {
680 if (iflag)
681 enable_interrupts();
682 /* This may return when 'autostart' is 'no' */
683 bootm_start_standalone(iflag, argc, argv);
684 return 0;
685 }
686
Heiko Schocherfad63402007-07-13 09:54:17 +0200687 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000688
wdenkf72da342003-10-10 10:05:42 +0000689#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500690 if (images.os.os == IH_OS_LINUX)
691 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000692#endif
693
Kumar Galabe083152008-10-21 17:25:44 -0500694 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200695
696 if (boot_fn == NULL) {
697 if (iflag)
698 enable_interrupts();
699 printf ("ERROR: booting os '%s' (%d) is not supported\n",
700 genimg_get_os_name(images.os.os), images.os.os);
701 show_boot_progress (-8);
702 return 1;
703 }
704
Kumar Gala3dfad402009-08-27 08:23:55 -0500705 arch_preboot_os();
706
Kumar Galabe083152008-10-21 17:25:44 -0500707 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000708
Heiko Schocherfad63402007-07-13 09:54:17 +0200709 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000710#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000711 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000712#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500713 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100714
wdenk47d1a6e2002-11-03 00:01:44 +0000715 return 1;
716}
717
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100718/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100719 * image_get_kernel - verify legacy format kernel image
720 * @img_addr: in RAM address of the legacy format image to be verified
721 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100722 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100723 * image_get_kernel() verifies legacy image integrity and returns pointer to
724 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100725 *
726 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100727 * pointer to a legacy image header if valid image was found
728 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100729 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100730static image_header_t *image_get_kernel (ulong img_addr, int verify)
731{
732 image_header_t *hdr = (image_header_t *)img_addr;
733
734 if (!image_check_magic(hdr)) {
735 puts ("Bad Magic Number\n");
736 show_boot_progress (-1);
737 return NULL;
738 }
739 show_boot_progress (2);
740
741 if (!image_check_hcrc (hdr)) {
742 puts ("Bad Header Checksum\n");
743 show_boot_progress (-2);
744 return NULL;
745 }
746
747 show_boot_progress (3);
748 image_print_contents (hdr);
749
750 if (verify) {
751 puts (" Verifying Checksum ... ");
752 if (!image_check_dcrc (hdr)) {
753 printf ("Bad Data CRC\n");
754 show_boot_progress (-3);
755 return NULL;
756 }
757 puts ("OK\n");
758 }
759 show_boot_progress (4);
760
761 if (!image_check_target_arch (hdr)) {
762 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
763 show_boot_progress (-4);
764 return NULL;
765 }
766 return hdr;
767}
768
769/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100770 * fit_check_kernel - verify FIT format kernel subimage
771 * @fit_hdr: pointer to the FIT image header
772 * os_noffset: kernel subimage node offset within FIT image
773 * @verify: data CRC verification flag
774 *
775 * fit_check_kernel() verifies integrity of the kernel subimage and from
776 * specified FIT image.
777 *
778 * returns:
779 * 1, on success
780 * 0, on failure
781 */
782#if defined (CONFIG_FIT)
783static int fit_check_kernel (const void *fit, int os_noffset, int verify)
784{
785 fit_image_print (fit, os_noffset, " ");
786
787 if (verify) {
788 puts (" Verifying Hash Integrity ... ");
789 if (!fit_image_check_hashes (fit, os_noffset)) {
790 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100791 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100792 return 0;
793 }
794 puts ("OK\n");
795 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100796 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100797
798 if (!fit_image_check_target_arch (fit, os_noffset)) {
799 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100800 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100801 return 0;
802 }
803
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100804 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100805 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
806 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100807 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100808 return 0;
809 }
810
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100811 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100812 return 1;
813}
814#endif /* CONFIG_FIT */
815
816/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100817 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100818 * @os_data: pointer to a ulong variable, will hold os data start address
819 * @os_len: pointer to a ulong variable, will hold os data length
820 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100821 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100822 * and locates kernel data.
823 *
824 * returns:
825 * pointer to image header if valid image was found, plus kernel start
826 * address and length, otherwise NULL
827 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100828static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100829 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100830{
831 image_header_t *hdr;
832 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100833#if defined(CONFIG_FIT)
834 void *fit_hdr;
835 const char *fit_uname_config = NULL;
836 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100837 const void *data;
838 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100839 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100840 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100841#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100842
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100843 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100844 if (argc < 2) {
845 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100846 debug ("* kernel: default image load address = 0x%08lx\n",
847 load_addr);
848#if defined(CONFIG_FIT)
849 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
850 &fit_uname_config)) {
851 debug ("* kernel: config '%s' from image at 0x%08lx\n",
852 fit_uname_config, img_addr);
853 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
854 &fit_uname_kernel)) {
855 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
856 fit_uname_kernel, img_addr);
857#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100858 } else {
859 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100860 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100861 }
862
863 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100864
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100865 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100866 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100867
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100868 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100869 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100870 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100871 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100872 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
873 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100874 hdr = image_get_kernel (img_addr, images->verify);
875 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100876 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100877 show_boot_progress (5);
878
Marian Balakowicz6986a382008-03-12 10:01:05 +0100879 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100880 switch (image_get_type (hdr)) {
881 case IH_TYPE_KERNEL:
882 *os_data = image_get_data (hdr);
883 *os_len = image_get_data_size (hdr);
884 break;
885 case IH_TYPE_MULTI:
886 image_multi_getimg (hdr, 0, os_data, os_len);
887 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200888 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200889 *os_data = image_get_data (hdr);
890 *os_len = image_get_data_size (hdr);
891 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100892 default:
893 printf ("Wrong Image Type for %s command\n", cmdtp->name);
894 show_boot_progress (-5);
895 return NULL;
896 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100897
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200898 /*
899 * copy image header to allow for image overwrites during kernel
900 * decompression.
901 */
902 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
903
904 /* save pointer to image header */
905 images->legacy_hdr_os = hdr;
906
907 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100908 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100909 break;
910#if defined(CONFIG_FIT)
911 case IMAGE_FORMAT_FIT:
912 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100913 printf ("## Booting kernel from FIT Image at %08lx ...\n",
914 img_addr);
915
916 if (!fit_check_format (fit_hdr)) {
917 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100918 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100919 return NULL;
920 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100921 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100922
923 if (!fit_uname_kernel) {
924 /*
925 * no kernel image node unit name, try to get config
926 * node first. If config unit node name is NULL
927 * fit_conf_get_node() will try to find default config node
928 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100929 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100930 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
931 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100932 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100933 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100934 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100935 /* save configuration uname provided in the first
936 * bootm argument
937 */
938 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
939 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
940 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100941
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100942 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100943 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
944 } else {
945 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100946 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100947 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
948 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100949 if (os_noffset < 0) {
950 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100951 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100952 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100953
954 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
955
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100956 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100957 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
958 return NULL;
959
960 /* get kernel image data address and length */
961 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
962 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100963 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100964 return NULL;
965 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100966 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100967
968 *os_len = len;
969 *os_data = (ulong)data;
970 images->fit_hdr_os = fit_hdr;
971 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100972 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100973 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100974#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100975 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100976 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100977 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100978 return NULL;
979 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100980
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200981 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100982 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100983
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100984 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100985}
986
wdenk0d498392003-07-01 21:06:45 +0000987U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200988 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600989 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100990 "[addr [arg ...]]\n - boot application image stored in memory\n"
991 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
992 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100993#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500994 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200995 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500996 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
997 "\tuse a '-' for the second argument. If you do not pass a third\n"
998 "\ta bd_info struct will be passed instead\n"
999#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +01001000#if defined(CONFIG_FIT)
1001 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1002 "\tmust be extened to include component or configuration unit name:\n"
1003 "\taddr:<subimg_uname> - direct component image specification\n"
1004 "\taddr#<conf_uname> - configuration specification\n"
1005 "\tUse iminfo command to get the list of existing component\n"
1006 "\timages and configurations.\n"
1007#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001008 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1009 "must be\n"
1010 "issued in the order below (it's ok to not issue all sub-commands):\n"
1011 "\tstart [addr [arg ...]]\n"
1012 "\tloados - load OS image\n"
1013#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1014 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1015#endif
1016#if defined(CONFIG_OF_LIBFDT)
1017 "\tfdt - relocate flat device tree\n"
1018#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001019 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001020 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001021 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001022 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001023);
1024
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001025/*******************************************************************/
1026/* bootd - boot default image */
1027/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001028#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001029int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1030{
1031 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001032
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001033#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001034 if (run_command (getenv ("bootcmd"), flag) < 0)
1035 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001036#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001037 if (parse_string_outer (getenv ("bootcmd"),
1038 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1039 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001040#endif
1041 return rcode;
1042}
wdenk8bde7f72003-06-27 21:31:46 +00001043
wdenk0d498392003-07-01 21:06:45 +00001044U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001045 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001046 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001047 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001048);
1049
1050/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001051U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001052 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001053 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001054 ""
wdenk8bde7f72003-06-27 21:31:46 +00001055);
1056
wdenk47d1a6e2002-11-03 00:01:44 +00001057#endif
1058
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001059
1060/*******************************************************************/
1061/* iminfo - print header info for a requested image */
1062/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001063#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001064int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001065{
1066 int arg;
1067 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001068 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001069
1070 if (argc < 2) {
1071 return image_info (load_addr);
1072 }
1073
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001074 for (arg = 1; arg < argc; ++arg) {
1075 addr = simple_strtoul (argv[arg], NULL, 16);
1076 if (image_info (addr) != 0)
1077 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001078 }
1079 return rcode;
1080}
1081
1082static int image_info (ulong addr)
1083{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001084 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001085
1086 printf ("\n## Checking Image at %08lx ...\n", addr);
1087
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001088 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001089 case IMAGE_FORMAT_LEGACY:
1090 puts (" Legacy image found\n");
1091 if (!image_check_magic (hdr)) {
1092 puts (" Bad Magic Number\n");
1093 return 1;
1094 }
1095
1096 if (!image_check_hcrc (hdr)) {
1097 puts (" Bad Header Checksum\n");
1098 return 1;
1099 }
1100
1101 image_print_contents (hdr);
1102
1103 puts (" Verifying Checksum ... ");
1104 if (!image_check_dcrc (hdr)) {
1105 puts (" Bad Data CRC\n");
1106 return 1;
1107 }
1108 puts ("OK\n");
1109 return 0;
1110#if defined(CONFIG_FIT)
1111 case IMAGE_FORMAT_FIT:
1112 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001113
1114 if (!fit_check_format (hdr)) {
1115 puts ("Bad FIT image format!\n");
1116 return 1;
1117 }
1118
1119 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001120
1121 if (!fit_all_image_check_hashes (hdr)) {
1122 puts ("Bad hash in FIT image!\n");
1123 return 1;
1124 }
1125
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001126 return 0;
1127#endif
1128 default:
1129 puts ("Unknown image format!\n");
1130 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001131 }
1132
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001133 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001134}
wdenk0d498392003-07-01 21:06:45 +00001135
1136U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001137 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001138 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001139 "addr [addr ...]\n"
1140 " - print header information for application image starting at\n"
1141 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001142 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001143);
Jon Loeliger90253172007-07-10 11:02:44 -05001144#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001145
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001146
1147/*******************************************************************/
1148/* imls - list all images found in flash */
1149/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001150#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +00001151int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1152{
1153 flash_info_t *info;
1154 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001155 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001156
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001157 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001158 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001159
wdenk27b207f2003-07-24 23:38:38 +00001160 if (info->flash_id == FLASH_UNKNOWN)
1161 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001162 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001163
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001164 hdr = (void *)info->start[j];
1165 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001166 goto next_sector;
1167
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001168 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001169 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001170 if (!image_check_hcrc (hdr))
1171 goto next_sector;
1172
1173 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1174 image_print_contents (hdr);
1175
1176 puts (" Verifying Checksum ... ");
1177 if (!image_check_dcrc (hdr)) {
1178 puts ("Bad Data CRC\n");
1179 } else {
1180 puts ("OK\n");
1181 }
1182 break;
1183#if defined(CONFIG_FIT)
1184 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001185 if (!fit_check_format (hdr))
1186 goto next_sector;
1187
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001188 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001189 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001190 break;
1191#endif
1192 default:
wdenk27b207f2003-07-24 23:38:38 +00001193 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001194 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001195
wdenkbdccc4f2003-08-05 17:43:17 +00001196next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001197 }
wdenkbdccc4f2003-08-05 17:43:17 +00001198next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001199 }
1200
1201 return (0);
1202}
1203
1204U_BOOT_CMD(
1205 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001206 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001207 "\n"
1208 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001209 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001210);
Jon Loeliger90253172007-07-10 11:02:44 -05001211#endif
wdenk27b207f2003-07-24 23:38:38 +00001212
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001213/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001214/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001215/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001216#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001217static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001218{
1219 char buf[256], *start, *end;
1220 char *cmdline = getenv ("bootargs");
1221
1222 /* Only fix cmdline when requested */
1223 if (!(gd->flags & GD_FLG_SILENT))
1224 return;
1225
1226 debug ("before silent fix-up: %s\n", cmdline);
1227 if (cmdline) {
1228 if ((start = strstr (cmdline, "console=")) != NULL) {
1229 end = strchr (start, ' ');
1230 strncpy (buf, cmdline, (start - cmdline + 8));
1231 if (end)
1232 strcpy (buf + (start - cmdline + 8), end);
1233 else
1234 buf[start - cmdline + 8] = '\0';
1235 } else {
1236 strcpy (buf, cmdline);
1237 strcat (buf, " console=");
1238 }
1239 } else {
1240 strcpy (buf, "console=");
1241 }
1242
1243 setenv ("bootargs", buf);
1244 debug ("after silent fix-up: %s\n", buf);
1245}
1246#endif /* CONFIG_SILENT_CONSOLE */
1247
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001248
1249/*******************************************************************/
1250/* OS booting routines */
1251/*******************************************************************/
1252
Kumar Galab1d0db12008-10-21 17:25:47 -05001253#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala40d7e992008-08-15 08:24:45 -05001254static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001255 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001256{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001257 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001258 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001259 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001260 char *consdev;
1261 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001262
Kumar Gala49c3a862008-10-21 17:25:45 -05001263 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1264 return 1;
1265
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001266#if defined(CONFIG_FIT)
1267 if (!images->legacy_hdr_valid) {
1268 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001269 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001270 }
1271#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001272 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001273
1274 /*
1275 * Booting a (NetBSD) kernel image
1276 *
1277 * This process is pretty similar to a standalone application:
1278 * The (first part of an multi-) image must be a stage-2 loader,
1279 * which in turn is responsible for loading & invoking the actual
1280 * kernel. The only differences are the parameters being passed:
1281 * besides the board info strucure, the loader expects a command
1282 * line, the name of the console device, and (optionally) the
1283 * address of the original image header.
1284 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001285 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001286 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001287 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1288 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001289 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001290 }
wdenk47d1a6e2002-11-03 00:01:44 +00001291
1292 consdev = "";
1293#if defined (CONFIG_8xx_CONS_SMC1)
1294 consdev = "smc1";
1295#elif defined (CONFIG_8xx_CONS_SMC2)
1296 consdev = "smc2";
1297#elif defined (CONFIG_8xx_CONS_SCC2)
1298 consdev = "scc2";
1299#elif defined (CONFIG_8xx_CONS_SCC3)
1300 consdev = "scc3";
1301#endif
1302
1303 if (argc > 2) {
1304 ulong len;
1305 int i;
1306
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001307 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001308 len += strlen (argv[i]) + 1;
1309 cmdline = malloc (len);
1310
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001311 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001312 if (i > 2)
1313 cmdline[len++] = ' ';
1314 strcpy (&cmdline[len], argv[i]);
1315 len += strlen (argv[i]);
1316 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001317 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001318 cmdline = "";
1319 }
1320
Kumar Galac160a952008-08-15 08:24:36 -05001321 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001322
1323 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1324 (ulong)loader);
1325
1326 show_boot_progress (15);
1327
1328 /*
1329 * NetBSD Stage-2 Loader Parameters:
1330 * r3: ptr to board info data
1331 * r4: image address
1332 * r5: console device
1333 * r6: boot args string
1334 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001335 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001336
1337 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001338}
Kumar Galab1d0db12008-10-21 17:25:47 -05001339#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001340
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001341#ifdef CONFIG_LYNXKDI
Kumar Gala40d7e992008-08-15 08:24:45 -05001342static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001343 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001344{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001345 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001346
Kumar Gala49c3a862008-10-21 17:25:45 -05001347 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1348 return 1;
1349
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001350#if defined(CONFIG_FIT)
1351 if (!images->legacy_hdr_valid) {
1352 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001353 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001354 }
1355#endif
1356
1357 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001358
1359 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001360}
1361#endif /* CONFIG_LYNXKDI */
1362
Kumar Galab1d0db12008-10-21 17:25:47 -05001363#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala40d7e992008-08-15 08:24:45 -05001364static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001365 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001366{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001367 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001368
Kumar Gala49c3a862008-10-21 17:25:45 -05001369 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1370 return 1;
1371
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001372#if defined(CONFIG_FIT)
1373 if (!images->legacy_hdr_valid) {
1374 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001375 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001376 }
1377#endif
1378
Kumar Galac160a952008-08-15 08:24:36 -05001379 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001380
1381 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1382 (ulong)entry_point);
1383
Heiko Schocherfad63402007-07-13 09:54:17 +02001384 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001385
1386 /*
1387 * RTEMS Parameters:
1388 * r3: ptr to board info data
1389 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001390 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001391
1392 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001393}
Kumar Galab1d0db12008-10-21 17:25:47 -05001394#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001395
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001396#if defined(CONFIG_CMD_ELF)
Kumar Gala40d7e992008-08-15 08:24:45 -05001397static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001398 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001399{
wdenk47d1a6e2002-11-03 00:01:44 +00001400 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001401
Kumar Gala49c3a862008-10-21 17:25:45 -05001402 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1403 return 1;
1404
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001405#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001406 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001407 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001408 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001409 }
1410#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001411
Kumar Galac160a952008-08-15 08:24:36 -05001412 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001413 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001414 do_bootvx(NULL, 0, 0, NULL);
1415
1416 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001417}
1418
Kumar Gala40d7e992008-08-15 08:24:45 -05001419static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001420 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001421{
wdenk47d1a6e2002-11-03 00:01:44 +00001422 char *local_args[2];
1423 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001424
Kumar Gala49c3a862008-10-21 17:25:45 -05001425 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1426 return 1;
1427
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001428#if defined(CONFIG_FIT)
1429 if (!images->legacy_hdr_valid) {
1430 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001431 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001432 }
1433#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001434
Kumar Galac160a952008-08-15 08:24:36 -05001435 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001436 local_args[0] = argv[0];
1437 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001438 do_bootelf(NULL, 0, 2, local_args);
1439
1440 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001441}
Jon Loeliger90253172007-07-10 11:02:44 -05001442#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001443
1444#ifdef CONFIG_INTEGRITY
1445static int do_bootm_integrity (int flag, int argc, char *argv[],
1446 bootm_headers_t *images)
1447{
1448 void (*entry_point)(void);
1449
Kumar Gala49c3a862008-10-21 17:25:45 -05001450 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1451 return 1;
1452
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001453#if defined(CONFIG_FIT)
1454 if (!images->legacy_hdr_valid) {
1455 fit_unsupported_reset ("INTEGRITY");
1456 return 1;
1457 }
1458#endif
1459
1460 entry_point = (void (*)(void))images->ep;
1461
1462 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1463 (ulong)entry_point);
1464
1465 show_boot_progress (15);
1466
1467 /*
1468 * INTEGRITY Parameters:
1469 * None
1470 */
1471 (*entry_point)();
1472
1473 return 1;
1474}
1475#endif