blob: dc993d540872c4043ac04540d4b5590e88e10043 [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 Galae822d7f2008-02-27 21:51:49 -0600156void __board_lmb_reserve(struct lmb *lmb)
157{
158 /* please define platform specific board_lmb_reserve() */
159}
160void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000161
Kumar Gala76da19d2008-10-16 21:52:08 -0500162void __arch_lmb_reserve(struct lmb *lmb)
163{
164 /* please define platform specific arch_lmb_reserve() */
165}
166void arch_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__arch_lmb_reserve")));
167
Kumar Gala3dfad402009-08-27 08:23:55 -0500168/* Allow for arch specific config before we boot */
169void __arch_preboot_os(void)
170{
171 /* please define platform specific arch_preboot_os() */
172}
173void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
174
Kumar Galac4f94192008-08-15 08:24:37 -0500175#if defined(__ARM__)
176 #define IH_INITRD_ARCH IH_ARCH_ARM
177#elif defined(__avr32__)
178 #define IH_INITRD_ARCH IH_ARCH_AVR32
179#elif defined(__bfin__)
180 #define IH_INITRD_ARCH IH_ARCH_BLACKFIN
181#elif defined(__I386__)
182 #define IH_INITRD_ARCH IH_ARCH_I386
183#elif defined(__M68K__)
184 #define IH_INITRD_ARCH IH_ARCH_M68K
185#elif defined(__microblaze__)
186 #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE
187#elif defined(__mips__)
188 #define IH_INITRD_ARCH IH_ARCH_MIPS
189#elif defined(__nios__)
190 #define IH_INITRD_ARCH IH_ARCH_NIOS
191#elif defined(__nios2__)
192 #define IH_INITRD_ARCH IH_ARCH_NIOS2
193#elif defined(__PPC__)
194 #define IH_INITRD_ARCH IH_ARCH_PPC
195#elif defined(__sh__)
196 #define IH_INITRD_ARCH IH_ARCH_SH
197#elif defined(__sparc__)
198 #define IH_INITRD_ARCH IH_ARCH_SPARC
199#else
200# error Unknown CPU type
201#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000202
Kumar Gala396f6352008-08-15 08:24:41 -0500203static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000204{
Becky Bruce391fd932008-06-09 20:37:18 -0500205 ulong mem_start;
206 phys_size_t mem_size;
Kumar Gala396f6352008-08-15 08:24:41 -0500207 void *os_hdr;
Kumar Galac4f94192008-08-15 08:24:37 -0500208 int ret;
wdenk47d1a6e2002-11-03 00:01:44 +0000209
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100210 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200211 images.verify = getenv_yesno ("verify");
wdenk47d1a6e2002-11-03 00:01:44 +0000212
Kumar Galae906cfa2008-08-15 08:24:40 -0500213 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000214
Kumar Galad3f2fa02008-02-27 21:51:50 -0600215 mem_start = getenv_bootm_low();
216 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000217
Kumar Galae906cfa2008-08-15 08:24:40 -0500218 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000219
Kumar Gala76da19d2008-10-16 21:52:08 -0500220 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500221 board_lmb_reserve(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000222
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100223 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100224 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500225 &images, &images.os.image_start, &images.os.image_len);
226 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100227 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000228 return 1;
229 }
wdenk47d1a6e2002-11-03 00:01:44 +0000230
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100231 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100232 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100233 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500234 images.os.type = image_get_type (os_hdr);
235 images.os.comp = image_get_comp (os_hdr);
236 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200237
Kumar Gala396f6352008-08-15 08:24:41 -0500238 images.os.end = image_get_image_end (os_hdr);
239 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100240 break;
241#if defined(CONFIG_FIT)
242 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100243 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500244 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100245 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100246 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000247 return 1;
248 }
wdenk47d1a6e2002-11-03 00:01:44 +0000249
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100250 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500251 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100252 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100253 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100254 return 1;
255 }
wdenk47d1a6e2002-11-03 00:01:44 +0000256
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100257 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500258 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100259 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100260 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100261 return 1;
262 }
wdenk47d1a6e2002-11-03 00:01:44 +0000263
Kumar Gala396f6352008-08-15 08:24:41 -0500264 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100265
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100266 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500267 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100268 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100269 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100270 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000271 }
272 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100273#endif
274 default:
275 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000276 return 1;
277 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100278
Kumar Galac160a952008-08-15 08:24:36 -0500279 /* find kernel entry point */
280 if (images.legacy_hdr_valid) {
281 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
282#if defined(CONFIG_FIT)
283 } else if (images.fit_uname_os) {
284 ret = fit_image_get_entry (images.fit_hdr_os,
285 images.fit_noffset_os, &images.ep);
286 if (ret) {
287 puts ("Can't get entry point property!\n");
288 return 1;
289 }
290#endif
291 } else {
292 puts ("Could not find kernel entry point!\n");
293 return 1;
294 }
295
Detlev Zundel8b828a82009-12-22 12:43:01 +0100296 if ((images.os.type == IH_TYPE_KERNEL) &&
297 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500298 /* find ramdisk */
299 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
300 &images.rd_start, &images.rd_end);
301 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500302 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500303 return 1;
304 }
Kumar Gala06a09912008-08-15 08:24:38 -0500305
306#if defined(CONFIG_OF_LIBFDT)
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200307#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
Kumar Gala06a09912008-08-15 08:24:38 -0500308 /* find flattened device tree */
309 ret = boot_get_fdt (flag, argc, argv, &images,
310 &images.ft_addr, &images.ft_len);
311 if (ret) {
312 puts ("Could not find a valid device tree\n");
313 return 1;
314 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500315
316 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500317#endif
Jean-Christophe PLAGNIOL-VILLARD1d9af0b2008-09-09 22:18:23 +0200318#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500319 }
320
Kumar Gala396f6352008-08-15 08:24:41 -0500321 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500322 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500323
324 return 0;
325}
326
327#define BOOTM_ERR_RESET -1
328#define BOOTM_ERR_OVERLAP -2
329#define BOOTM_ERR_UNIMPLEMENTED -3
330static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
331{
332 uint8_t comp = os.comp;
333 ulong load = os.load;
334 ulong blob_start = os.start;
335 ulong blob_end = os.end;
336 ulong image_start = os.image_start;
337 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200338 uint unc_len = CONFIG_SYS_BOOTM_LEN;
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);
348
Minkyu Kangfca0cec2009-02-18 09:05:52 +0900349 if (load != image_start) {
350 memmove_wd ((void *)load,
351 (void *)image_start, image_len, CHUNKSZ);
352 }
Kumar Gala396f6352008-08-15 08:24:41 -0500353 }
354 *load_end = load + image_len;
355 puts("OK\n");
356 break;
357 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;
370#ifdef CONFIG_BZIP2
371 case IH_COMP_BZIP2:
372 printf (" Uncompressing %s ... ", type_name);
373 /*
374 * If we've got less than 4 MB of malloc() space,
375 * use slower decompression algorithm which requires
376 * at most 2300 KB of memory.
377 */
378 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
379 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200380 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500381 if (i != BZ_OK) {
382 printf ("BUNZIP2: uncompress or overwrite error %d "
383 "- must RESET board to recover\n", i);
384 if (boot_progress)
385 show_boot_progress (-6);
386 return BOOTM_ERR_RESET;
387 }
388
389 *load_end = load + unc_len;
390 break;
391#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200392#ifdef CONFIG_LZMA
393 case IH_COMP_LZMA:
394 printf (" Uncompressing %s ... ", type_name);
395
396 int ret = lzmaBuffToBuffDecompress(
397 (unsigned char *)load, &unc_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200398 (unsigned char *)image_start, image_len);
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200399 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200400 printf ("LZMA: uncompress or overwrite error %d "
401 "- must RESET board to recover\n", ret);
402 show_boot_progress (-6);
403 return BOOTM_ERR_RESET;
404 }
405 *load_end = load + unc_len;
406 break;
407#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100408#ifdef CONFIG_LZO
409 case IH_COMP_LZO:
410 printf (" Uncompressing %s ... ", type_name);
411
412 int ret = lzop_decompress((const unsigned char *)image_start,
413 image_len, (unsigned char *)load,
414 &unc_len);
415 if (ret != LZO_E_OK) {
416 printf ("LZO: uncompress or overwrite error %d "
417 "- must RESET board to recover\n", ret);
418 if (boot_progress)
419 show_boot_progress (-6);
420 return BOOTM_ERR_RESET;
421 }
422
423 *load_end = load + unc_len;
424 break;
425#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500426 default:
427 printf ("Unimplemented compression type %d\n", comp);
428 return BOOTM_ERR_UNIMPLEMENTED;
429 }
430 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200431 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500432 if (boot_progress)
433 show_boot_progress (7);
434
435 if ((load < blob_end) && (*load_end > blob_start)) {
436 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 +0200437 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500438
439 return BOOTM_ERR_OVERLAP;
440 }
441
442 return 0;
443}
444
Detlev Zundelf97ec302009-07-13 16:01:19 +0200445static int bootm_start_standalone(ulong iflag, int argc, char *argv[])
446{
447 char *s;
448 int (*appl)(int, char *[]);
449
450 /* Don't start if "autostart" is set to "no" */
451 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
452 char buf[32];
453 sprintf(buf, "%lX", images.os.image_len);
454 setenv("filesize", buf);
455 return 0;
456 }
457 appl = (int (*)(int, char *[]))ntohl(images.ep);
458 (*appl)(argc-1, &argv[1]);
459
460 return 0;
461}
462
Kumar Gala49c3a862008-10-21 17:25:45 -0500463/* we overload the cmd field with our state machine info instead of a
464 * function pointer */
465cmd_tbl_t cmd_bootm_sub[] = {
466 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
467 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
468#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
469 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
470#endif
471#ifdef CONFIG_OF_LIBFDT
472 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
473#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500474 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600475 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500476 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
477 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
478};
479
480int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
481{
482 int ret = 0;
483 int state;
484 cmd_tbl_t *c;
485 boot_os_fn *boot_fn;
486
487 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
488
489 if (c) {
490 state = (int)c->cmd;
491
492 /* treat start special since it resets the state machine */
493 if (state == BOOTM_STATE_START) {
494 argc--;
495 argv++;
496 return bootm_start(cmdtp, flag, argc, argv);
497 }
498 }
499 /* Unrecognized command */
500 else {
Peter Tyser62c3ae72009-01-27 18:03:10 -0600501 cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500502 return 1;
503 }
504
505 if (images.state >= state) {
506 printf ("Trying to execute a command out of order\n");
Peter Tyser62c3ae72009-01-27 18:03:10 -0600507 cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500508 return 1;
509 }
510
511 images.state |= state;
512 boot_fn = boot_os[images.os.os];
513
514 switch (state) {
515 ulong load_end;
516 case BOOTM_STATE_START:
517 /* should never occur */
518 break;
519 case BOOTM_STATE_LOADOS:
520 ret = bootm_load_os(images.os, &load_end, 0);
521 if (ret)
522 return ret;
523
524 lmb_reserve(&images.lmb, images.os.load,
525 (load_end - images.os.load));
526 break;
527#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
528 case BOOTM_STATE_RAMDISK:
529 {
530 ulong rd_len = images.rd_end - images.rd_start;
531 char str[17];
532
533 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
534 rd_len, &images.initrd_start, &images.initrd_end);
535 if (ret)
536 return ret;
537
538 sprintf(str, "%lx", images.initrd_start);
539 setenv("initrd_start", str);
540 sprintf(str, "%lx", images.initrd_end);
541 setenv("initrd_end", str);
542 }
543 break;
544#endif
Remy Bohmerb25e38f2009-10-29 14:24:22 +0100545#if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ)
Kumar Gala49c3a862008-10-21 17:25:45 -0500546 case BOOTM_STATE_FDT:
547 {
548 ulong bootmap_base = getenv_bootm_low();
549 ret = boot_relocate_fdt(&images.lmb, bootmap_base,
550 &images.ft_addr, &images.ft_len);
551 break;
552 }
553#endif
554 case BOOTM_STATE_OS_CMDLINE:
555 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
556 if (ret)
557 printf ("cmdline subcommand not supported\n");
558 break;
559 case BOOTM_STATE_OS_BD_T:
560 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
561 if (ret)
562 printf ("bdt subcommand not supported\n");
563 break;
564 case BOOTM_STATE_OS_PREP:
565 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
566 if (ret)
567 printf ("prep subcommand not supported\n");
568 break;
569 case BOOTM_STATE_OS_GO:
570 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500571 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500572 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
573 break;
574 }
575
576 return ret;
577}
578
Kumar Gala396f6352008-08-15 08:24:41 -0500579/*******************************************************************/
580/* bootm - boot application image from image in memory */
581/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500582
Kumar Gala396f6352008-08-15 08:24:41 -0500583int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
584{
Kumar Gala396f6352008-08-15 08:24:41 -0500585 ulong iflag;
586 ulong load_end = 0;
587 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500588 boot_os_fn *boot_fn;
Peter Tyser521af042009-09-21 11:20:36 -0500589#ifndef CONFIG_RELOC_FIXUP_WORKS
590 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500591
592 /* relocate boot function table */
593 if (!relocated) {
594 int i;
595 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200596 if (boot_os[i] != NULL)
597 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500598 relocated = 1;
599 }
Peter Tyser521af042009-09-21 11:20:36 -0500600#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500601
Kumar Gala49c3a862008-10-21 17:25:45 -0500602 /* determine if we have a sub command */
603 if (argc > 1) {
604 char *endp;
605
606 simple_strtoul(argv[1], &endp, 16);
607 /* endp pointing to NULL means that argv[1] was just a
608 * valid number, pass it along to the normal bootm processing
609 *
610 * If endp is ':' or '#' assume a FIT identifier so pass
611 * along for normal processing.
612 *
613 * Right now we assume the first arg should never be '-'
614 */
615 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
616 return do_bootm_subcommand(cmdtp, flag, argc, argv);
617 }
618
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200619 if (bootm_start(cmdtp, flag, argc, argv))
620 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000621
622 /*
623 * We have reached the point of no return: we are going to
624 * overwrite all exception vector code, so we cannot easily
625 * recover from any failures any more...
626 */
wdenk47d1a6e2002-11-03 00:01:44 +0000627 iflag = disable_interrupts();
628
Stefan Roeseebb86c42008-07-30 09:59:51 +0200629#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200630 /*
631 * turn off USB to prevent the host controller from writing to the
632 * SDRAM while Linux is booting. This could happen (at least for OHCI
633 * controller), because the HCCA (Host Controller Communication Area)
634 * lies within the SDRAM and the host controller writes continously to
635 * this area (as busmaster!). The HccaFrameNumber is for example
636 * updated every 1 ms within the HCCA structure in SDRAM! For more
637 * details see the OpenHCI specification.
638 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200639 usb_stop();
640#endif
641
wdenkc7de8292002-11-19 11:04:11 +0000642#ifdef CONFIG_AMIGAONEG3SE
643 /*
wdenk8bde7f72003-06-27 21:31:46 +0000644 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000645 * bios emulation, so turn them off again
646 */
647 icache_disable();
wdenkc7de8292002-11-19 11:04:11 +0000648 dcache_disable();
649#endif
650
Kumar Gala396f6352008-08-15 08:24:41 -0500651 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000652
Kumar Gala396f6352008-08-15 08:24:41 -0500653 if (ret < 0) {
654 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000655 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500656 if (ret == BOOTM_ERR_OVERLAP) {
657 if (images.legacy_hdr_valid) {
658 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
659 puts ("WARNING: legacy format multi component "
660 "image overwritten\n");
661 } else {
662 puts ("ERROR: new format image overwritten - "
663 "must RESET the board to recover\n");
664 show_boot_progress (-113);
665 do_reset (cmdtp, flag, argc, argv);
666 }
wdenk47d1a6e2002-11-03 00:01:44 +0000667 }
Kumar Gala396f6352008-08-15 08:24:41 -0500668 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
669 if (iflag)
670 enable_interrupts();
671 show_boot_progress (-7);
672 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200673 }
wdenk47d1a6e2002-11-03 00:01:44 +0000674 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100675
Kumar Gala396f6352008-08-15 08:24:41 -0500676 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
677
Detlev Zundelf97ec302009-07-13 16:01:19 +0200678 if (images.os.type == IH_TYPE_STANDALONE) {
679 if (iflag)
680 enable_interrupts();
681 /* This may return when 'autostart' is 'no' */
682 bootm_start_standalone(iflag, argc, argv);
683 return 0;
684 }
685
Heiko Schocherfad63402007-07-13 09:54:17 +0200686 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000687
wdenkf72da342003-10-10 10:05:42 +0000688#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500689 if (images.os.os == IH_OS_LINUX)
690 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000691#endif
692
Kumar Galabe083152008-10-21 17:25:44 -0500693 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200694
695 if (boot_fn == NULL) {
696 if (iflag)
697 enable_interrupts();
698 printf ("ERROR: booting os '%s' (%d) is not supported\n",
699 genimg_get_os_name(images.os.os), images.os.os);
700 show_boot_progress (-8);
701 return 1;
702 }
703
Kumar Gala3dfad402009-08-27 08:23:55 -0500704 arch_preboot_os();
705
Kumar Galabe083152008-10-21 17:25:44 -0500706 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000707
Heiko Schocherfad63402007-07-13 09:54:17 +0200708 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000709#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000710 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000711#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500712 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100713
wdenk47d1a6e2002-11-03 00:01:44 +0000714 return 1;
715}
716
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100717/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100718 * image_get_kernel - verify legacy format kernel image
719 * @img_addr: in RAM address of the legacy format image to be verified
720 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100721 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100722 * image_get_kernel() verifies legacy image integrity and returns pointer to
723 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100724 *
725 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100726 * pointer to a legacy image header if valid image was found
727 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100728 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100729static image_header_t *image_get_kernel (ulong img_addr, int verify)
730{
731 image_header_t *hdr = (image_header_t *)img_addr;
732
733 if (!image_check_magic(hdr)) {
734 puts ("Bad Magic Number\n");
735 show_boot_progress (-1);
736 return NULL;
737 }
738 show_boot_progress (2);
739
740 if (!image_check_hcrc (hdr)) {
741 puts ("Bad Header Checksum\n");
742 show_boot_progress (-2);
743 return NULL;
744 }
745
746 show_boot_progress (3);
747 image_print_contents (hdr);
748
749 if (verify) {
750 puts (" Verifying Checksum ... ");
751 if (!image_check_dcrc (hdr)) {
752 printf ("Bad Data CRC\n");
753 show_boot_progress (-3);
754 return NULL;
755 }
756 puts ("OK\n");
757 }
758 show_boot_progress (4);
759
760 if (!image_check_target_arch (hdr)) {
761 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
762 show_boot_progress (-4);
763 return NULL;
764 }
765 return hdr;
766}
767
768/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100769 * fit_check_kernel - verify FIT format kernel subimage
770 * @fit_hdr: pointer to the FIT image header
771 * os_noffset: kernel subimage node offset within FIT image
772 * @verify: data CRC verification flag
773 *
774 * fit_check_kernel() verifies integrity of the kernel subimage and from
775 * specified FIT image.
776 *
777 * returns:
778 * 1, on success
779 * 0, on failure
780 */
781#if defined (CONFIG_FIT)
782static int fit_check_kernel (const void *fit, int os_noffset, int verify)
783{
784 fit_image_print (fit, os_noffset, " ");
785
786 if (verify) {
787 puts (" Verifying Hash Integrity ... ");
788 if (!fit_image_check_hashes (fit, os_noffset)) {
789 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100790 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100791 return 0;
792 }
793 puts ("OK\n");
794 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100795 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100796
797 if (!fit_image_check_target_arch (fit, os_noffset)) {
798 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100799 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100800 return 0;
801 }
802
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100803 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100804 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
805 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100806 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100807 return 0;
808 }
809
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100810 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100811 return 1;
812}
813#endif /* CONFIG_FIT */
814
815/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100816 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100817 * @os_data: pointer to a ulong variable, will hold os data start address
818 * @os_len: pointer to a ulong variable, will hold os data length
819 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100820 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100821 * and locates kernel data.
822 *
823 * returns:
824 * pointer to image header if valid image was found, plus kernel start
825 * address and length, otherwise NULL
826 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100827static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100828 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100829{
830 image_header_t *hdr;
831 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100832#if defined(CONFIG_FIT)
833 void *fit_hdr;
834 const char *fit_uname_config = NULL;
835 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100836 const void *data;
837 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100838 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100839 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100840#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100841
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100842 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100843 if (argc < 2) {
844 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100845 debug ("* kernel: default image load address = 0x%08lx\n",
846 load_addr);
847#if defined(CONFIG_FIT)
848 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
849 &fit_uname_config)) {
850 debug ("* kernel: config '%s' from image at 0x%08lx\n",
851 fit_uname_config, img_addr);
852 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
853 &fit_uname_kernel)) {
854 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
855 fit_uname_kernel, img_addr);
856#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100857 } else {
858 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100859 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100860 }
861
862 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100863
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100864 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100865 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100866
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100867 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100868 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100869 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100870 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100871 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
872 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100873 hdr = image_get_kernel (img_addr, images->verify);
874 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100875 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100876 show_boot_progress (5);
877
Marian Balakowicz6986a382008-03-12 10:01:05 +0100878 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100879 switch (image_get_type (hdr)) {
880 case IH_TYPE_KERNEL:
881 *os_data = image_get_data (hdr);
882 *os_len = image_get_data_size (hdr);
883 break;
884 case IH_TYPE_MULTI:
885 image_multi_getimg (hdr, 0, os_data, os_len);
886 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200887 case IH_TYPE_STANDALONE:
888 if (argc >2) {
889 hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16));
890 }
891 *os_data = image_get_data (hdr);
892 *os_len = image_get_data_size (hdr);
893 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100894 default:
895 printf ("Wrong Image Type for %s command\n", cmdtp->name);
896 show_boot_progress (-5);
897 return NULL;
898 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100899
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200900 /*
901 * copy image header to allow for image overwrites during kernel
902 * decompression.
903 */
904 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
905
906 /* save pointer to image header */
907 images->legacy_hdr_os = hdr;
908
909 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100910 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100911 break;
912#if defined(CONFIG_FIT)
913 case IMAGE_FORMAT_FIT:
914 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100915 printf ("## Booting kernel from FIT Image at %08lx ...\n",
916 img_addr);
917
918 if (!fit_check_format (fit_hdr)) {
919 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100920 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100921 return NULL;
922 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100923 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100924
925 if (!fit_uname_kernel) {
926 /*
927 * no kernel image node unit name, try to get config
928 * node first. If config unit node name is NULL
929 * fit_conf_get_node() will try to find default config node
930 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100931 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100932 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
933 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100934 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100935 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100936 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100937 /* save configuration uname provided in the first
938 * bootm argument
939 */
940 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
941 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
942 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100943
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100944 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100945 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
946 } else {
947 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100948 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100949 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
950 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100951 if (os_noffset < 0) {
952 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100953 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100954 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100955
956 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
957
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100958 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100959 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
960 return NULL;
961
962 /* get kernel image data address and length */
963 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
964 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100965 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100966 return NULL;
967 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100968 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100969
970 *os_len = len;
971 *os_data = (ulong)data;
972 images->fit_hdr_os = fit_hdr;
973 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100974 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100975 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100976#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100977 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100978 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100979 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100980 return NULL;
981 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100982
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200983 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100984 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100985
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100986 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100987}
988
wdenk0d498392003-07-01 21:06:45 +0000989U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200990 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600991 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100992 "[addr [arg ...]]\n - boot application image stored in memory\n"
993 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
994 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100995#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500996 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200997 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500998 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
999 "\tuse a '-' for the second argument. If you do not pass a third\n"
1000 "\ta bd_info struct will be passed instead\n"
1001#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +01001002#if defined(CONFIG_FIT)
1003 "\t\nFor the new multi component uImage format (FIT) addresses\n"
1004 "\tmust be extened to include component or configuration unit name:\n"
1005 "\taddr:<subimg_uname> - direct component image specification\n"
1006 "\taddr#<conf_uname> - configuration specification\n"
1007 "\tUse iminfo command to get the list of existing component\n"
1008 "\timages and configurations.\n"
1009#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001010 "\nSub-commands to do part of the bootm sequence. The sub-commands "
1011 "must be\n"
1012 "issued in the order below (it's ok to not issue all sub-commands):\n"
1013 "\tstart [addr [arg ...]]\n"
1014 "\tloados - load OS image\n"
1015#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1016 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1017#endif
1018#if defined(CONFIG_OF_LIBFDT)
1019 "\tfdt - relocate flat device tree\n"
1020#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001021 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001022 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001023 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001024 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001025);
1026
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001027/*******************************************************************/
1028/* bootd - boot default image */
1029/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001030#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +00001031int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1032{
1033 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001034
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001035#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001036 if (run_command (getenv ("bootcmd"), flag) < 0)
1037 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001038#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001039 if (parse_string_outer (getenv ("bootcmd"),
1040 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1041 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001042#endif
1043 return rcode;
1044}
wdenk8bde7f72003-06-27 21:31:46 +00001045
wdenk0d498392003-07-01 21:06:45 +00001046U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001047 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001048 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001049 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001050);
1051
1052/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001053U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001054 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001055 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001056 ""
wdenk8bde7f72003-06-27 21:31:46 +00001057);
1058
wdenk47d1a6e2002-11-03 00:01:44 +00001059#endif
1060
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001061
1062/*******************************************************************/
1063/* iminfo - print header info for a requested image */
1064/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001065#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001066int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001067{
1068 int arg;
1069 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001070 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001071
1072 if (argc < 2) {
1073 return image_info (load_addr);
1074 }
1075
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001076 for (arg = 1; arg < argc; ++arg) {
1077 addr = simple_strtoul (argv[arg], NULL, 16);
1078 if (image_info (addr) != 0)
1079 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001080 }
1081 return rcode;
1082}
1083
1084static int image_info (ulong addr)
1085{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001086 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001087
1088 printf ("\n## Checking Image at %08lx ...\n", addr);
1089
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001090 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001091 case IMAGE_FORMAT_LEGACY:
1092 puts (" Legacy image found\n");
1093 if (!image_check_magic (hdr)) {
1094 puts (" Bad Magic Number\n");
1095 return 1;
1096 }
1097
1098 if (!image_check_hcrc (hdr)) {
1099 puts (" Bad Header Checksum\n");
1100 return 1;
1101 }
1102
1103 image_print_contents (hdr);
1104
1105 puts (" Verifying Checksum ... ");
1106 if (!image_check_dcrc (hdr)) {
1107 puts (" Bad Data CRC\n");
1108 return 1;
1109 }
1110 puts ("OK\n");
1111 return 0;
1112#if defined(CONFIG_FIT)
1113 case IMAGE_FORMAT_FIT:
1114 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001115
1116 if (!fit_check_format (hdr)) {
1117 puts ("Bad FIT image format!\n");
1118 return 1;
1119 }
1120
1121 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001122
1123 if (!fit_all_image_check_hashes (hdr)) {
1124 puts ("Bad hash in FIT image!\n");
1125 return 1;
1126 }
1127
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001128 return 0;
1129#endif
1130 default:
1131 puts ("Unknown image format!\n");
1132 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001133 }
1134
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001135 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001136}
wdenk0d498392003-07-01 21:06:45 +00001137
1138U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001139 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001140 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001141 "addr [addr ...]\n"
1142 " - print header information for application image starting at\n"
1143 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001144 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001145);
Jon Loeliger90253172007-07-10 11:02:44 -05001146#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001147
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001148
1149/*******************************************************************/
1150/* imls - list all images found in flash */
1151/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001152#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +00001153int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
1154{
1155 flash_info_t *info;
1156 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001157 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001158
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001159 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001160 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001161
wdenk27b207f2003-07-24 23:38:38 +00001162 if (info->flash_id == FLASH_UNKNOWN)
1163 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001164 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001165
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001166 hdr = (void *)info->start[j];
1167 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001168 goto next_sector;
1169
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001170 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001171 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001172 if (!image_check_hcrc (hdr))
1173 goto next_sector;
1174
1175 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1176 image_print_contents (hdr);
1177
1178 puts (" Verifying Checksum ... ");
1179 if (!image_check_dcrc (hdr)) {
1180 puts ("Bad Data CRC\n");
1181 } else {
1182 puts ("OK\n");
1183 }
1184 break;
1185#if defined(CONFIG_FIT)
1186 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001187 if (!fit_check_format (hdr))
1188 goto next_sector;
1189
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001190 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001191 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001192 break;
1193#endif
1194 default:
wdenk27b207f2003-07-24 23:38:38 +00001195 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001196 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001197
wdenkbdccc4f2003-08-05 17:43:17 +00001198next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001199 }
wdenkbdccc4f2003-08-05 17:43:17 +00001200next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001201 }
1202
1203 return (0);
1204}
1205
1206U_BOOT_CMD(
1207 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001208 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001209 "\n"
1210 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001211 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001212);
Jon Loeliger90253172007-07-10 11:02:44 -05001213#endif
wdenk27b207f2003-07-24 23:38:38 +00001214
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001215/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001216/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001217/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001218#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001219static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +00001220{
1221 char buf[256], *start, *end;
1222 char *cmdline = getenv ("bootargs");
1223
1224 /* Only fix cmdline when requested */
1225 if (!(gd->flags & GD_FLG_SILENT))
1226 return;
1227
1228 debug ("before silent fix-up: %s\n", cmdline);
1229 if (cmdline) {
1230 if ((start = strstr (cmdline, "console=")) != NULL) {
1231 end = strchr (start, ' ');
1232 strncpy (buf, cmdline, (start - cmdline + 8));
1233 if (end)
1234 strcpy (buf + (start - cmdline + 8), end);
1235 else
1236 buf[start - cmdline + 8] = '\0';
1237 } else {
1238 strcpy (buf, cmdline);
1239 strcat (buf, " console=");
1240 }
1241 } else {
1242 strcpy (buf, "console=");
1243 }
1244
1245 setenv ("bootargs", buf);
1246 debug ("after silent fix-up: %s\n", buf);
1247}
1248#endif /* CONFIG_SILENT_CONSOLE */
1249
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001250
1251/*******************************************************************/
1252/* OS booting routines */
1253/*******************************************************************/
1254
Kumar Galab1d0db12008-10-21 17:25:47 -05001255#ifdef CONFIG_BOOTM_NETBSD
Kumar Gala40d7e992008-08-15 08:24:45 -05001256static int do_bootm_netbsd (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001257 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001258{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001259 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001260 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001261 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001262 char *consdev;
1263 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001264
Kumar Gala49c3a862008-10-21 17:25:45 -05001265 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1266 return 1;
1267
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001268#if defined(CONFIG_FIT)
1269 if (!images->legacy_hdr_valid) {
1270 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001271 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001272 }
1273#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001274 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001275
1276 /*
1277 * Booting a (NetBSD) kernel image
1278 *
1279 * This process is pretty similar to a standalone application:
1280 * The (first part of an multi-) image must be a stage-2 loader,
1281 * which in turn is responsible for loading & invoking the actual
1282 * kernel. The only differences are the parameters being passed:
1283 * besides the board info strucure, the loader expects a command
1284 * line, the name of the console device, and (optionally) the
1285 * address of the original image header.
1286 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001287 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001288 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001289 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1290 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001291 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001292 }
wdenk47d1a6e2002-11-03 00:01:44 +00001293
1294 consdev = "";
1295#if defined (CONFIG_8xx_CONS_SMC1)
1296 consdev = "smc1";
1297#elif defined (CONFIG_8xx_CONS_SMC2)
1298 consdev = "smc2";
1299#elif defined (CONFIG_8xx_CONS_SCC2)
1300 consdev = "scc2";
1301#elif defined (CONFIG_8xx_CONS_SCC3)
1302 consdev = "scc3";
1303#endif
1304
1305 if (argc > 2) {
1306 ulong len;
1307 int i;
1308
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001309 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001310 len += strlen (argv[i]) + 1;
1311 cmdline = malloc (len);
1312
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001313 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001314 if (i > 2)
1315 cmdline[len++] = ' ';
1316 strcpy (&cmdline[len], argv[i]);
1317 len += strlen (argv[i]);
1318 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001319 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001320 cmdline = "";
1321 }
1322
Kumar Galac160a952008-08-15 08:24:36 -05001323 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001324
1325 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1326 (ulong)loader);
1327
1328 show_boot_progress (15);
1329
1330 /*
1331 * NetBSD Stage-2 Loader Parameters:
1332 * r3: ptr to board info data
1333 * r4: image address
1334 * r5: console device
1335 * r6: boot args string
1336 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001337 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001338
1339 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001340}
Kumar Galab1d0db12008-10-21 17:25:47 -05001341#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001342
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001343#ifdef CONFIG_LYNXKDI
Kumar Gala40d7e992008-08-15 08:24:45 -05001344static int do_bootm_lynxkdi (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001345 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001346{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001347 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001348
Kumar Gala49c3a862008-10-21 17:25:45 -05001349 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1350 return 1;
1351
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001352#if defined(CONFIG_FIT)
1353 if (!images->legacy_hdr_valid) {
1354 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001355 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001356 }
1357#endif
1358
1359 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001360
1361 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001362}
1363#endif /* CONFIG_LYNXKDI */
1364
Kumar Galab1d0db12008-10-21 17:25:47 -05001365#ifdef CONFIG_BOOTM_RTEMS
Kumar Gala40d7e992008-08-15 08:24:45 -05001366static int do_bootm_rtems (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001367 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001368{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001369 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001370
Kumar Gala49c3a862008-10-21 17:25:45 -05001371 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1372 return 1;
1373
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001374#if defined(CONFIG_FIT)
1375 if (!images->legacy_hdr_valid) {
1376 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001377 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001378 }
1379#endif
1380
Kumar Galac160a952008-08-15 08:24:36 -05001381 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001382
1383 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1384 (ulong)entry_point);
1385
Heiko Schocherfad63402007-07-13 09:54:17 +02001386 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001387
1388 /*
1389 * RTEMS Parameters:
1390 * r3: ptr to board info data
1391 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001392 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001393
1394 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001395}
Kumar Galab1d0db12008-10-21 17:25:47 -05001396#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001397
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001398#if defined(CONFIG_CMD_ELF)
Kumar Gala40d7e992008-08-15 08:24:45 -05001399static int do_bootm_vxworks (int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001400 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001401{
wdenk47d1a6e2002-11-03 00:01:44 +00001402 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001403
Kumar Gala49c3a862008-10-21 17:25:45 -05001404 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1405 return 1;
1406
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001407#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001408 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001409 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001410 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001411 }
1412#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001413
Kumar Galac160a952008-08-15 08:24:36 -05001414 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001415 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001416 do_bootvx(NULL, 0, 0, NULL);
1417
1418 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001419}
1420
Kumar Gala40d7e992008-08-15 08:24:45 -05001421static int do_bootm_qnxelf(int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001422 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001423{
wdenk47d1a6e2002-11-03 00:01:44 +00001424 char *local_args[2];
1425 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001426
Kumar Gala49c3a862008-10-21 17:25:45 -05001427 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1428 return 1;
1429
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001430#if defined(CONFIG_FIT)
1431 if (!images->legacy_hdr_valid) {
1432 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001433 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001434 }
1435#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001436
Kumar Galac160a952008-08-15 08:24:36 -05001437 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001438 local_args[0] = argv[0];
1439 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001440 do_bootelf(NULL, 0, 2, local_args);
1441
1442 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001443}
Jon Loeliger90253172007-07-10 11:02:44 -05001444#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001445
1446#ifdef CONFIG_INTEGRITY
1447static int do_bootm_integrity (int flag, int argc, char *argv[],
1448 bootm_headers_t *images)
1449{
1450 void (*entry_point)(void);
1451
Kumar Gala49c3a862008-10-21 17:25:45 -05001452 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1453 return 1;
1454
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001455#if defined(CONFIG_FIT)
1456 if (!images->legacy_hdr_valid) {
1457 fit_unsupported_reset ("INTEGRITY");
1458 return 1;
1459 }
1460#endif
1461
1462 entry_point = (void (*)(void))images->ep;
1463
1464 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1465 (ulong)entry_point);
1466
1467 show_boot_progress (15);
1468
1469 /*
1470 * INTEGRITY Parameters:
1471 * None
1472 */
1473 (*entry_point)();
1474
1475 return 1;
1476}
1477#endif