blob: 17dfadbf9f5c45f51c896a3afa80b4e9e81b72bc [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>
Stefan Roeseca5def32010-08-31 10:00:10 +020080#include <mtd/cfi_flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020081extern flash_info_t flash_info[]; /* info for FLASH chips */
Wolfgang Denk54841ab2010-06-28 22:00:46 +020082static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
wdenk27b207f2003-07-24 23:38:38 +000083#endif
84
Marian Balakowicz1ee11802008-01-08 18:17:10 +010085#ifdef CONFIG_SILENT_CONSOLE
86static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000087#endif
88
Marian Balakowicz6986a382008-03-12 10:01:05 +010089static image_header_t *image_get_kernel (ulong img_addr, int verify);
90#if defined(CONFIG_FIT)
91static int fit_check_kernel (const void *fit, int os_noffset, int verify);
92#endif
93
Wolfgang Denk54841ab2010-06-28 22:00:46 +020094static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010095 bootm_headers_t *images, ulong *os_data, ulong *os_len);
wdenk47d1a6e2002-11-03 00:01:44 +000096
wdenk47d1a6e2002-11-03 00:01:44 +000097/*
98 * Continue booting an OS image; caller already has:
99 * - copied image header to global variable `header'
100 * - checked header magic number, checksums (both header & image),
101 * - verified image architecture (PPC) and type (KERNEL or MULTI),
102 * - loaded (first part of) image to header load address,
103 * - disabled interrupts.
104 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200105typedef int boot_os_fn (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100106 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +0000107
Kumar Galab1d0db12008-10-21 17:25:47 -0500108#ifdef CONFIG_BOOTM_LINUX
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100109extern boot_os_fn do_bootm_linux;
Kumar Galab1d0db12008-10-21 17:25:47 -0500110#endif
111#ifdef CONFIG_BOOTM_NETBSD
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100112static boot_os_fn do_bootm_netbsd;
Kumar Galab1d0db12008-10-21 17:25:47 -0500113#endif
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100114#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100115static boot_os_fn do_bootm_lynxkdi;
116extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +0000117#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500118#ifdef CONFIG_BOOTM_RTEMS
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100119static boot_os_fn do_bootm_rtems;
Kumar Galab1d0db12008-10-21 17:25:47 -0500120#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200121#if defined(CONFIG_BOOTM_OSE)
122static boot_os_fn do_bootm_ose;
123#endif
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500124#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100125static boot_os_fn do_bootm_vxworks;
126static boot_os_fn do_bootm_qnxelf;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200127int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
128int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500129#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -0500130#if defined(CONFIG_INTEGRITY)
131static boot_os_fn do_bootm_integrity;
132#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000133
Mike Frysinger00085552009-11-03 11:36:26 -0500134static boot_os_fn *boot_os[] = {
Kumar Galab1d0db12008-10-21 17:25:47 -0500135#ifdef CONFIG_BOOTM_LINUX
Kumar Galabe083152008-10-21 17:25:44 -0500136 [IH_OS_LINUX] = do_bootm_linux,
Kumar Galab1d0db12008-10-21 17:25:47 -0500137#endif
138#ifdef CONFIG_BOOTM_NETBSD
Kumar Galabe083152008-10-21 17:25:44 -0500139 [IH_OS_NETBSD] = do_bootm_netbsd,
Kumar Galab1d0db12008-10-21 17:25:47 -0500140#endif
Kumar Galabe083152008-10-21 17:25:44 -0500141#ifdef CONFIG_LYNXKDI
142 [IH_OS_LYNXOS] = do_bootm_lynxkdi,
143#endif
Kumar Galab1d0db12008-10-21 17:25:47 -0500144#ifdef CONFIG_BOOTM_RTEMS
Kumar Galabe083152008-10-21 17:25:44 -0500145 [IH_OS_RTEMS] = do_bootm_rtems,
Kumar Galab1d0db12008-10-21 17:25:47 -0500146#endif
Torkel Lundgren3df61952010-09-28 11:05:36 +0200147#if defined(CONFIG_BOOTM_OSE)
148 [IH_OS_OSE] = do_bootm_ose,
149#endif
Kumar Galabe083152008-10-21 17:25:44 -0500150#if defined(CONFIG_CMD_ELF)
151 [IH_OS_VXWORKS] = do_bootm_vxworks,
152 [IH_OS_QNX] = do_bootm_qnxelf,
153#endif
154#ifdef CONFIG_INTEGRITY
155 [IH_OS_INTEGRITY] = do_bootm_integrity,
156#endif
157};
158
Simon Schwarzdee17762011-09-02 00:50:31 +0000159bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100160
Kumar Gala3dfad402009-08-27 08:23:55 -0500161/* Allow for arch specific config before we boot */
162void __arch_preboot_os(void)
163{
164 /* please define platform specific arch_preboot_os() */
165}
166void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os")));
167
Mike Frysinger476af292011-10-03 14:50:33 +0000168#define IH_INITRD_ARCH IH_ARCH_DEFAULT
wdenk47d1a6e2002-11-03 00:01:44 +0000169
Mike Frysingera16028d2009-11-03 11:35:59 -0500170static void bootm_start_lmb(void)
wdenk47d1a6e2002-11-03 00:01:44 +0000171{
Mike Frysingera16028d2009-11-03 11:35:59 -0500172#ifdef CONFIG_LMB
Becky Bruce391fd932008-06-09 20:37:18 -0500173 ulong mem_start;
174 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000175
Kumar Galae906cfa2008-08-15 08:24:40 -0500176 lmb_init(&images.lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000177
Kumar Galad3f2fa02008-02-27 21:51:50 -0600178 mem_start = getenv_bootm_low();
179 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000180
Kumar Galae906cfa2008-08-15 08:24:40 -0500181 lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000182
Kumar Gala76da19d2008-10-16 21:52:08 -0500183 arch_lmb_reserve(&images.lmb);
Kumar Galae906cfa2008-08-15 08:24:40 -0500184 board_lmb_reserve(&images.lmb);
Mike Frysingera16028d2009-11-03 11:35:59 -0500185#else
186# define lmb_reserve(lmb, base, size)
187#endif
188}
189
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200190static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Mike Frysingera16028d2009-11-03 11:35:59 -0500191{
192 void *os_hdr;
193 int ret;
194
195 memset ((void *)&images, 0, sizeof (images));
196 images.verify = getenv_yesno ("verify");
197
198 bootm_start_lmb();
wdenk47d1a6e2002-11-03 00:01:44 +0000199
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100200 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100201 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Kumar Gala396f6352008-08-15 08:24:41 -0500202 &images, &images.os.image_start, &images.os.image_len);
203 if (images.os.image_len == 0) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100204 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000205 return 1;
206 }
wdenk47d1a6e2002-11-03 00:01:44 +0000207
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100208 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100209 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100210 case IMAGE_FORMAT_LEGACY:
Kumar Gala396f6352008-08-15 08:24:41 -0500211 images.os.type = image_get_type (os_hdr);
212 images.os.comp = image_get_comp (os_hdr);
213 images.os.os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200214
Kumar Gala396f6352008-08-15 08:24:41 -0500215 images.os.end = image_get_image_end (os_hdr);
216 images.os.load = image_get_load (os_hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100217 break;
218#if defined(CONFIG_FIT)
219 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100220 if (fit_image_get_type (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500221 images.fit_noffset_os, &images.os.type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100222 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100223 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000224 return 1;
225 }
wdenk47d1a6e2002-11-03 00:01:44 +0000226
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100227 if (fit_image_get_comp (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500228 images.fit_noffset_os, &images.os.comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100229 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100230 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100231 return 1;
232 }
wdenk47d1a6e2002-11-03 00:01:44 +0000233
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100234 if (fit_image_get_os (images.fit_hdr_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500235 images.fit_noffset_os, &images.os.os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100236 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100237 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100238 return 1;
239 }
wdenk47d1a6e2002-11-03 00:01:44 +0000240
Kumar Gala396f6352008-08-15 08:24:41 -0500241 images.os.end = fit_get_end (images.fit_hdr_os);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100242
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100243 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Kumar Gala396f6352008-08-15 08:24:41 -0500244 &images.os.load)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100245 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100246 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100247 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000248 }
249 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100250#endif
251 default:
252 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000253 return 1;
254 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100255
Kumar Galac160a952008-08-15 08:24:36 -0500256 /* find kernel entry point */
257 if (images.legacy_hdr_valid) {
258 images.ep = image_get_ep (&images.legacy_hdr_os_copy);
259#if defined(CONFIG_FIT)
260 } else if (images.fit_uname_os) {
261 ret = fit_image_get_entry (images.fit_hdr_os,
262 images.fit_noffset_os, &images.ep);
263 if (ret) {
264 puts ("Can't get entry point property!\n");
265 return 1;
266 }
267#endif
268 } else {
269 puts ("Could not find kernel entry point!\n");
270 return 1;
271 }
272
Heiko Schocher24de2f42010-03-29 13:15:48 +0200273 if (((images.os.type == IH_TYPE_KERNEL) ||
274 (images.os.type == IH_TYPE_MULTI)) &&
Detlev Zundel8b828a82009-12-22 12:43:01 +0100275 (images.os.os == IH_OS_LINUX)) {
Kumar Galac4f94192008-08-15 08:24:37 -0500276 /* find ramdisk */
277 ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH,
278 &images.rd_start, &images.rd_end);
279 if (ret) {
Kumar Galaea86b9e2008-08-29 19:08:29 -0500280 puts ("Ramdisk image is corrupt or invalid\n");
Kumar Galac4f94192008-08-15 08:24:37 -0500281 return 1;
282 }
Kumar Gala06a09912008-08-15 08:24:38 -0500283
284#if defined(CONFIG_OF_LIBFDT)
285 /* find flattened device tree */
286 ret = boot_get_fdt (flag, argc, argv, &images,
287 &images.ft_addr, &images.ft_len);
288 if (ret) {
289 puts ("Could not find a valid device tree\n");
290 return 1;
291 }
Kumar Gala54f9c862008-08-15 08:24:39 -0500292
293 set_working_fdt_addr(images.ft_addr);
Kumar Gala06a09912008-08-15 08:24:38 -0500294#endif
Kumar Galac4f94192008-08-15 08:24:37 -0500295 }
296
Kumar Gala396f6352008-08-15 08:24:41 -0500297 images.os.start = (ulong)os_hdr;
Kumar Gala49c3a862008-10-21 17:25:45 -0500298 images.state = BOOTM_STATE_START;
Kumar Gala396f6352008-08-15 08:24:41 -0500299
300 return 0;
301}
302
303#define BOOTM_ERR_RESET -1
304#define BOOTM_ERR_OVERLAP -2
305#define BOOTM_ERR_UNIMPLEMENTED -3
306static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress)
307{
308 uint8_t comp = os.comp;
309 ulong load = os.load;
310 ulong blob_start = os.start;
311 ulong blob_end = os.end;
312 ulong image_start = os.image_start;
313 ulong image_len = os.image_len;
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200314 uint unc_len = CONFIG_SYS_BOOTM_LEN;
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200315#if defined(CONFIG_LZMA) || defined(CONFIG_LZO)
316 int ret;
317#endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */
Kumar Gala396f6352008-08-15 08:24:41 -0500318
319 const char *type_name = genimg_get_type_name (os.type);
320
321 switch (comp) {
322 case IH_COMP_NONE:
Lei Wen02cf3452011-01-10 18:21:15 +0800323 if (load == blob_start || load == image_start) {
Kumar Gala396f6352008-08-15 08:24:41 -0500324 printf (" XIP %s ... ", type_name);
325 } else {
326 printf (" Loading %s ... ", type_name);
Larry Johnson54fa2c52010-04-20 08:09:43 -0400327 memmove_wd ((void *)load, (void *)image_start,
328 image_len, CHUNKSZ);
Kumar Gala396f6352008-08-15 08:24:41 -0500329 }
330 *load_end = load + image_len;
331 puts("OK\n");
332 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500333#ifdef CONFIG_GZIP
Kumar Gala396f6352008-08-15 08:24:41 -0500334 case IH_COMP_GZIP:
335 printf (" Uncompressing %s ... ", type_name);
336 if (gunzip ((void *)load, unc_len,
337 (uchar *)image_start, &image_len) != 0) {
Matthias Fuchs107b8012009-01-02 15:11:41 +0100338 puts ("GUNZIP: uncompress, out-of-mem or overwrite error "
Kumar Gala396f6352008-08-15 08:24:41 -0500339 "- must RESET board to recover\n");
340 if (boot_progress)
341 show_boot_progress (-6);
342 return BOOTM_ERR_RESET;
343 }
344
345 *load_end = load + image_len;
346 break;
Mike Frysinger44431ca2010-01-21 19:30:36 -0500347#endif /* CONFIG_GZIP */
Kumar Gala396f6352008-08-15 08:24:41 -0500348#ifdef CONFIG_BZIP2
349 case IH_COMP_BZIP2:
350 printf (" Uncompressing %s ... ", type_name);
351 /*
352 * If we've got less than 4 MB of malloc() space,
353 * use slower decompression algorithm which requires
354 * at most 2300 KB of memory.
355 */
356 int i = BZ2_bzBuffToBuffDecompress ((char*)load,
357 &unc_len, (char *)image_start, image_len,
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200358 CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0);
Kumar Gala396f6352008-08-15 08:24:41 -0500359 if (i != BZ_OK) {
360 printf ("BUNZIP2: uncompress or overwrite error %d "
361 "- must RESET board to recover\n", i);
362 if (boot_progress)
363 show_boot_progress (-6);
364 return BOOTM_ERR_RESET;
365 }
366
367 *load_end = load + unc_len;
368 break;
369#endif /* CONFIG_BZIP2 */
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200370#ifdef CONFIG_LZMA
Mike Frysinger78e1e842010-07-25 15:54:17 -0400371 case IH_COMP_LZMA: {
372 SizeT lzma_len = unc_len;
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200373 printf (" Uncompressing %s ... ", type_name);
374
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200375 ret = lzmaBuffToBuffDecompress(
Mike Frysinger78e1e842010-07-25 15:54:17 -0400376 (unsigned char *)load, &lzma_len,
Luigi 'Comio' Mantellinid977a572008-09-13 10:04:32 +0200377 (unsigned char *)image_start, image_len);
Mike Frysinger78e1e842010-07-25 15:54:17 -0400378 unc_len = lzma_len;
Luigi 'Comio' Mantellinicaf72ff2009-07-21 10:45:49 +0200379 if (ret != SZ_OK) {
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200380 printf ("LZMA: uncompress or overwrite error %d "
381 "- must RESET board to recover\n", ret);
382 show_boot_progress (-6);
383 return BOOTM_ERR_RESET;
384 }
385 *load_end = load + unc_len;
386 break;
Mike Frysinger78e1e842010-07-25 15:54:17 -0400387 }
Luigi 'Comio' Mantellinifc9c1722008-09-08 02:46:13 +0200388#endif /* CONFIG_LZMA */
Peter Korsgaard20dde482009-11-19 11:37:51 +0100389#ifdef CONFIG_LZO
390 case IH_COMP_LZO:
391 printf (" Uncompressing %s ... ", type_name);
392
Matthias Weisser60fdc5f2010-08-05 13:17:30 +0200393 ret = lzop_decompress((const unsigned char *)image_start,
Peter Korsgaard20dde482009-11-19 11:37:51 +0100394 image_len, (unsigned char *)load,
395 &unc_len);
396 if (ret != LZO_E_OK) {
397 printf ("LZO: uncompress or overwrite error %d "
398 "- must RESET board to recover\n", ret);
399 if (boot_progress)
400 show_boot_progress (-6);
401 return BOOTM_ERR_RESET;
402 }
403
404 *load_end = load + unc_len;
405 break;
406#endif /* CONFIG_LZO */
Kumar Gala396f6352008-08-15 08:24:41 -0500407 default:
408 printf ("Unimplemented compression type %d\n", comp);
409 return BOOTM_ERR_UNIMPLEMENTED;
410 }
Diana CRACIUN99ffccb2011-08-31 02:45:23 +0000411
412 flush_cache(load, (*load_end - load) * sizeof(ulong));
413
Kumar Gala396f6352008-08-15 08:24:41 -0500414 puts ("OK\n");
Jean-Christophe PLAGNIOL-VILLARD54b4ab32008-09-09 22:18:24 +0200415 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500416 if (boot_progress)
417 show_boot_progress (7);
418
419 if ((load < blob_end) && (*load_end > blob_start)) {
420 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 +0200421 debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end);
Kumar Gala396f6352008-08-15 08:24:41 -0500422
423 return BOOTM_ERR_OVERLAP;
424 }
425
426 return 0;
427}
428
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200429static int bootm_start_standalone(ulong iflag, int argc, char * const argv[])
Detlev Zundelf97ec302009-07-13 16:01:19 +0200430{
431 char *s;
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200432 int (*appl)(int, char * const []);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200433
434 /* Don't start if "autostart" is set to "no" */
435 if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) {
436 char buf[32];
437 sprintf(buf, "%lX", images.os.image_len);
438 setenv("filesize", buf);
439 return 0;
440 }
Simon Glass6d6f1232011-10-07 13:53:40 +0000441 appl = (int (*)(int, char * const []))(ulong)ntohl(images.ep);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200442 (*appl)(argc-1, &argv[1]);
Detlev Zundelf97ec302009-07-13 16:01:19 +0200443 return 0;
444}
445
Kumar Gala49c3a862008-10-21 17:25:45 -0500446/* we overload the cmd field with our state machine info instead of a
447 * function pointer */
Frans Meulenbroeksf74d9bd2010-02-25 10:12:13 +0100448static cmd_tbl_t cmd_bootm_sub[] = {
Kumar Gala49c3a862008-10-21 17:25:45 -0500449 U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""),
450 U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""),
John Rigbyfca43cc2010-10-13 13:57:35 -0600451#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500452 U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""),
453#endif
454#ifdef CONFIG_OF_LIBFDT
455 U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""),
456#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500457 U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""),
Peter Tyser224c90d2009-11-18 19:08:59 -0600458 U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""),
Kumar Gala49c3a862008-10-21 17:25:45 -0500459 U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""),
460 U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""),
461};
462
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200463int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala49c3a862008-10-21 17:25:45 -0500464{
465 int ret = 0;
Simon Glass6d6f1232011-10-07 13:53:40 +0000466 long state;
Kumar Gala49c3a862008-10-21 17:25:45 -0500467 cmd_tbl_t *c;
468 boot_os_fn *boot_fn;
469
470 c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub));
471
472 if (c) {
Simon Glass6d6f1232011-10-07 13:53:40 +0000473 state = (long)c->cmd;
Kumar Gala49c3a862008-10-21 17:25:45 -0500474
475 /* treat start special since it resets the state machine */
476 if (state == BOOTM_STATE_START) {
477 argc--;
478 argv++;
479 return bootm_start(cmdtp, flag, argc, argv);
480 }
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200481 } else {
482 /* Unrecognized command */
483 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500484 }
485
486 if (images.state >= state) {
487 printf ("Trying to execute a command out of order\n");
Wolfgang Denk47e26b12010-07-17 01:06:04 +0200488 return cmd_usage(cmdtp);
Kumar Gala49c3a862008-10-21 17:25:45 -0500489 }
490
491 images.state |= state;
492 boot_fn = boot_os[images.os.os];
493
494 switch (state) {
495 ulong load_end;
496 case BOOTM_STATE_START:
497 /* should never occur */
498 break;
499 case BOOTM_STATE_LOADOS:
500 ret = bootm_load_os(images.os, &load_end, 0);
501 if (ret)
502 return ret;
503
504 lmb_reserve(&images.lmb, images.os.load,
505 (load_end - images.os.load));
506 break;
John Rigbyfca43cc2010-10-13 13:57:35 -0600507#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
Kumar Gala49c3a862008-10-21 17:25:45 -0500508 case BOOTM_STATE_RAMDISK:
509 {
510 ulong rd_len = images.rd_end - images.rd_start;
511 char str[17];
512
513 ret = boot_ramdisk_high(&images.lmb, images.rd_start,
514 rd_len, &images.initrd_start, &images.initrd_end);
515 if (ret)
516 return ret;
517
518 sprintf(str, "%lx", images.initrd_start);
519 setenv("initrd_start", str);
520 sprintf(str, "%lx", images.initrd_end);
521 setenv("initrd_end", str);
522 }
523 break;
524#endif
Grant Likelyed59e582011-03-28 09:58:49 +0000525#if defined(CONFIG_OF_LIBFDT)
Kumar Gala49c3a862008-10-21 17:25:45 -0500526 case BOOTM_STATE_FDT:
527 {
Grant Likely55b0a392011-03-28 09:59:01 +0000528 boot_fdt_add_mem_rsv_regions(&images.lmb,
529 images.ft_addr);
Grant Likely590d3ca2011-03-28 09:58:34 +0000530 ret = boot_relocate_fdt(&images.lmb,
Kumar Gala49c3a862008-10-21 17:25:45 -0500531 &images.ft_addr, &images.ft_len);
532 break;
533 }
534#endif
535 case BOOTM_STATE_OS_CMDLINE:
536 ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images);
537 if (ret)
538 printf ("cmdline subcommand not supported\n");
539 break;
540 case BOOTM_STATE_OS_BD_T:
541 ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images);
542 if (ret)
543 printf ("bdt subcommand not supported\n");
544 break;
545 case BOOTM_STATE_OS_PREP:
546 ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images);
547 if (ret)
548 printf ("prep subcommand not supported\n");
549 break;
550 case BOOTM_STATE_OS_GO:
551 disable_interrupts();
Kumar Gala3dfad402009-08-27 08:23:55 -0500552 arch_preboot_os();
Kumar Gala49c3a862008-10-21 17:25:45 -0500553 boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images);
554 break;
555 }
556
557 return ret;
558}
559
Kumar Gala396f6352008-08-15 08:24:41 -0500560/*******************************************************************/
561/* bootm - boot application image from image in memory */
562/*******************************************************************/
Kumar Galabe083152008-10-21 17:25:44 -0500563
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200564int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
Kumar Gala396f6352008-08-15 08:24:41 -0500565{
Kumar Gala396f6352008-08-15 08:24:41 -0500566 ulong iflag;
567 ulong load_end = 0;
568 int ret;
Kumar Galabe083152008-10-21 17:25:44 -0500569 boot_os_fn *boot_fn;
Wolfgang Denk2e5167c2010-10-28 20:00:11 +0200570#ifdef CONFIG_NEEDS_MANUAL_RELOC
Peter Tyser521af042009-09-21 11:20:36 -0500571 static int relocated = 0;
Kumar Galabe083152008-10-21 17:25:44 -0500572
573 /* relocate boot function table */
574 if (!relocated) {
575 int i;
576 for (i = 0; i < ARRAY_SIZE(boot_os); i++)
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200577 if (boot_os[i] != NULL)
578 boot_os[i] += gd->reloc_off;
Kumar Galabe083152008-10-21 17:25:44 -0500579 relocated = 1;
580 }
Peter Tyser521af042009-09-21 11:20:36 -0500581#endif
Kumar Gala396f6352008-08-15 08:24:41 -0500582
Kumar Gala49c3a862008-10-21 17:25:45 -0500583 /* determine if we have a sub command */
584 if (argc > 1) {
585 char *endp;
586
587 simple_strtoul(argv[1], &endp, 16);
588 /* endp pointing to NULL means that argv[1] was just a
589 * valid number, pass it along to the normal bootm processing
590 *
591 * If endp is ':' or '#' assume a FIT identifier so pass
592 * along for normal processing.
593 *
594 * Right now we assume the first arg should never be '-'
595 */
596 if ((*endp != 0) && (*endp != ':') && (*endp != '#'))
597 return do_bootm_subcommand(cmdtp, flag, argc, argv);
598 }
599
Anatolij Gustschin8e024942008-08-29 21:04:45 +0200600 if (bootm_start(cmdtp, flag, argc, argv))
601 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000602
603 /*
604 * We have reached the point of no return: we are going to
605 * overwrite all exception vector code, so we cannot easily
606 * recover from any failures any more...
607 */
wdenk47d1a6e2002-11-03 00:01:44 +0000608 iflag = disable_interrupts();
609
Stefan Roeseebb86c42008-07-30 09:59:51 +0200610#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200611 /*
612 * turn off USB to prevent the host controller from writing to the
613 * SDRAM while Linux is booting. This could happen (at least for OHCI
614 * controller), because the HCCA (Host Controller Communication Area)
615 * lies within the SDRAM and the host controller writes continously to
616 * this area (as busmaster!). The HccaFrameNumber is for example
617 * updated every 1 ms within the HCCA structure in SDRAM! For more
618 * details see the OpenHCI specification.
619 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200620 usb_stop();
621#endif
622
Kumar Gala396f6352008-08-15 08:24:41 -0500623 ret = bootm_load_os(images.os, &load_end, 1);
wdenk47d1a6e2002-11-03 00:01:44 +0000624
Kumar Gala396f6352008-08-15 08:24:41 -0500625 if (ret < 0) {
626 if (ret == BOOTM_ERR_RESET)
wdenk47d1a6e2002-11-03 00:01:44 +0000627 do_reset (cmdtp, flag, argc, argv);
Kumar Gala396f6352008-08-15 08:24:41 -0500628 if (ret == BOOTM_ERR_OVERLAP) {
629 if (images.legacy_hdr_valid) {
630 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
631 puts ("WARNING: legacy format multi component "
632 "image overwritten\n");
633 } else {
634 puts ("ERROR: new format image overwritten - "
635 "must RESET the board to recover\n");
636 show_boot_progress (-113);
637 do_reset (cmdtp, flag, argc, argv);
638 }
wdenk47d1a6e2002-11-03 00:01:44 +0000639 }
Kumar Gala396f6352008-08-15 08:24:41 -0500640 if (ret == BOOTM_ERR_UNIMPLEMENTED) {
641 if (iflag)
642 enable_interrupts();
643 show_boot_progress (-7);
644 return 1;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200645 }
wdenk47d1a6e2002-11-03 00:01:44 +0000646 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100647
Kumar Gala396f6352008-08-15 08:24:41 -0500648 lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load));
649
Detlev Zundelf97ec302009-07-13 16:01:19 +0200650 if (images.os.type == IH_TYPE_STANDALONE) {
651 if (iflag)
652 enable_interrupts();
653 /* This may return when 'autostart' is 'no' */
654 bootm_start_standalone(iflag, argc, argv);
655 return 0;
656 }
657
Heiko Schocherfad63402007-07-13 09:54:17 +0200658 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000659
wdenkf72da342003-10-10 10:05:42 +0000660#ifdef CONFIG_SILENT_CONSOLE
Kumar Galabe083152008-10-21 17:25:44 -0500661 if (images.os.os == IH_OS_LINUX)
662 fixup_silent_linux();
wdenk1f4bb372003-07-27 00:21:01 +0000663#endif
664
Kumar Galabe083152008-10-21 17:25:44 -0500665 boot_fn = boot_os[images.os.os];
Detlev Zundelca95c9d2009-07-13 16:01:18 +0200666
667 if (boot_fn == NULL) {
668 if (iflag)
669 enable_interrupts();
670 printf ("ERROR: booting os '%s' (%d) is not supported\n",
671 genimg_get_os_name(images.os.os), images.os.os);
672 show_boot_progress (-8);
673 return 1;
674 }
675
Kumar Gala3dfad402009-08-27 08:23:55 -0500676 arch_preboot_os();
677
Kumar Galabe083152008-10-21 17:25:44 -0500678 boot_fn(0, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000679
Heiko Schocherfad63402007-07-13 09:54:17 +0200680 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000681#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000682 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000683#endif
Kumar Gala40d7e992008-08-15 08:24:45 -0500684 do_reset (cmdtp, flag, argc, argv);
Marian Balakowicza44a2692008-03-12 10:14:57 +0100685
wdenk47d1a6e2002-11-03 00:01:44 +0000686 return 1;
687}
688
Mike Frysinger67d668b2011-06-05 13:43:02 +0000689int bootm_maybe_autostart(cmd_tbl_t *cmdtp, const char *cmd)
690{
691 const char *ep = getenv("autostart");
692
693 if (ep && !strcmp(ep, "yes")) {
694 char *local_args[2];
695 local_args[0] = (char *)cmd;
696 local_args[1] = NULL;
697 printf("Automatic boot of image at addr 0x%08lX ...\n", load_addr);
698 return do_bootm(cmdtp, 0, 1, local_args);
699 }
700
701 return 0;
702}
703
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100704/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100705 * image_get_kernel - verify legacy format kernel image
706 * @img_addr: in RAM address of the legacy format image to be verified
707 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100708 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100709 * image_get_kernel() verifies legacy image integrity and returns pointer to
710 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100711 *
712 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100713 * pointer to a legacy image header if valid image was found
714 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100715 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100716static image_header_t *image_get_kernel (ulong img_addr, int verify)
717{
718 image_header_t *hdr = (image_header_t *)img_addr;
719
720 if (!image_check_magic(hdr)) {
721 puts ("Bad Magic Number\n");
722 show_boot_progress (-1);
723 return NULL;
724 }
725 show_boot_progress (2);
726
727 if (!image_check_hcrc (hdr)) {
728 puts ("Bad Header Checksum\n");
729 show_boot_progress (-2);
730 return NULL;
731 }
732
733 show_boot_progress (3);
734 image_print_contents (hdr);
735
736 if (verify) {
737 puts (" Verifying Checksum ... ");
738 if (!image_check_dcrc (hdr)) {
739 printf ("Bad Data CRC\n");
740 show_boot_progress (-3);
741 return NULL;
742 }
743 puts ("OK\n");
744 }
745 show_boot_progress (4);
746
747 if (!image_check_target_arch (hdr)) {
748 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
749 show_boot_progress (-4);
750 return NULL;
751 }
752 return hdr;
753}
754
755/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100756 * fit_check_kernel - verify FIT format kernel subimage
757 * @fit_hdr: pointer to the FIT image header
758 * os_noffset: kernel subimage node offset within FIT image
759 * @verify: data CRC verification flag
760 *
761 * fit_check_kernel() verifies integrity of the kernel subimage and from
762 * specified FIT image.
763 *
764 * returns:
765 * 1, on success
766 * 0, on failure
767 */
768#if defined (CONFIG_FIT)
769static int fit_check_kernel (const void *fit, int os_noffset, int verify)
770{
771 fit_image_print (fit, os_noffset, " ");
772
773 if (verify) {
774 puts (" Verifying Hash Integrity ... ");
775 if (!fit_image_check_hashes (fit, os_noffset)) {
776 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100777 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100778 return 0;
779 }
780 puts ("OK\n");
781 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100782 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100783
784 if (!fit_image_check_target_arch (fit, os_noffset)) {
785 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100786 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100787 return 0;
788 }
789
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100790 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100791 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
792 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100793 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100794 return 0;
795 }
796
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100797 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100798 return 1;
799}
800#endif /* CONFIG_FIT */
801
802/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100803 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100804 * @os_data: pointer to a ulong variable, will hold os data start address
805 * @os_len: pointer to a ulong variable, will hold os data length
806 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100807 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100808 * and locates kernel data.
809 *
810 * returns:
811 * pointer to image header if valid image was found, plus kernel start
812 * address and length, otherwise NULL
813 */
Wolfgang Denk54841ab2010-06-28 22:00:46 +0200814static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100815 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100816{
817 image_header_t *hdr;
818 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100819#if defined(CONFIG_FIT)
820 void *fit_hdr;
821 const char *fit_uname_config = NULL;
822 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100823 const void *data;
824 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100825 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100826 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100827#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100828
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100829 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100830 if (argc < 2) {
831 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100832 debug ("* kernel: default image load address = 0x%08lx\n",
833 load_addr);
834#if defined(CONFIG_FIT)
835 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
836 &fit_uname_config)) {
837 debug ("* kernel: config '%s' from image at 0x%08lx\n",
838 fit_uname_config, img_addr);
839 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
840 &fit_uname_kernel)) {
841 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
842 fit_uname_kernel, img_addr);
843#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100844 } else {
845 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100846 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100847 }
848
849 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100850
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100851 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100852 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100853
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100854 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100855 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100856 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100857 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100858 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
859 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100860 hdr = image_get_kernel (img_addr, images->verify);
861 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100862 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100863 show_boot_progress (5);
864
Marian Balakowicz6986a382008-03-12 10:01:05 +0100865 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100866 switch (image_get_type (hdr)) {
867 case IH_TYPE_KERNEL:
868 *os_data = image_get_data (hdr);
869 *os_len = image_get_data_size (hdr);
870 break;
871 case IH_TYPE_MULTI:
872 image_multi_getimg (hdr, 0, os_data, os_len);
873 break;
Detlev Zundelf97ec302009-07-13 16:01:19 +0200874 case IH_TYPE_STANDALONE:
Detlev Zundelf97ec302009-07-13 16:01:19 +0200875 *os_data = image_get_data (hdr);
876 *os_len = image_get_data_size (hdr);
877 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100878 default:
879 printf ("Wrong Image Type for %s command\n", cmdtp->name);
880 show_boot_progress (-5);
881 return NULL;
882 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100883
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200884 /*
885 * copy image header to allow for image overwrites during kernel
886 * decompression.
887 */
888 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
889
890 /* save pointer to image header */
891 images->legacy_hdr_os = hdr;
892
893 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100894 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100895 break;
896#if defined(CONFIG_FIT)
897 case IMAGE_FORMAT_FIT:
898 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100899 printf ("## Booting kernel from FIT Image at %08lx ...\n",
900 img_addr);
901
902 if (!fit_check_format (fit_hdr)) {
903 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100904 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100905 return NULL;
906 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100907 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100908
909 if (!fit_uname_kernel) {
910 /*
911 * no kernel image node unit name, try to get config
912 * node first. If config unit node name is NULL
913 * fit_conf_get_node() will try to find default config node
914 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100915 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100916 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
917 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100918 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100919 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100920 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100921 /* save configuration uname provided in the first
922 * bootm argument
923 */
924 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
925 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
926 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100927
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100928 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100929 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
930 } else {
931 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100932 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100933 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
934 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100935 if (os_noffset < 0) {
936 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100937 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100938 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100939
940 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
941
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100942 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100943 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
944 return NULL;
945
946 /* get kernel image data address and length */
947 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
948 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100949 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100950 return NULL;
951 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100952 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100953
954 *os_len = len;
955 *os_data = (ulong)data;
956 images->fit_hdr_os = fit_hdr;
957 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100958 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100959 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100960#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100961 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100962 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100963 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100964 return NULL;
965 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100966
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200967 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100968 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100969
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100970 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100971}
972
wdenk0d498392003-07-01 21:06:45 +0000973U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200974 bootm, CONFIG_SYS_MAXARGS, 1, do_bootm,
Peter Tyser2fb26042009-01-27 18:03:12 -0600975 "boot application image from memory",
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100976 "[addr [arg ...]]\n - boot application image stored in memory\n"
977 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
978 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100979#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500980 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200981 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500982 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
983 "\tuse a '-' for the second argument. If you do not pass a third\n"
984 "\ta bd_info struct will be passed instead\n"
985#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100986#if defined(CONFIG_FIT)
987 "\t\nFor the new multi component uImage format (FIT) addresses\n"
988 "\tmust be extened to include component or configuration unit name:\n"
989 "\taddr:<subimg_uname> - direct component image specification\n"
990 "\taddr#<conf_uname> - configuration specification\n"
991 "\tUse iminfo command to get the list of existing component\n"
992 "\timages and configurations.\n"
993#endif
Kumar Gala49c3a862008-10-21 17:25:45 -0500994 "\nSub-commands to do part of the bootm sequence. The sub-commands "
995 "must be\n"
996 "issued in the order below (it's ok to not issue all sub-commands):\n"
997 "\tstart [addr [arg ...]]\n"
998 "\tloados - load OS image\n"
999#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC)
1000 "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n"
1001#endif
1002#if defined(CONFIG_OF_LIBFDT)
1003 "\tfdt - relocate flat device tree\n"
1004#endif
Kumar Gala49c3a862008-10-21 17:25:45 -05001005 "\tcmdline - OS specific command line processing/setup\n"
Peter Tyser224c90d2009-11-18 19:08:59 -06001006 "\tbdt - OS specific bd_t processing\n"
Kumar Gala49c3a862008-10-21 17:25:45 -05001007 "\tprep - OS specific prep before relocation or go\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001008 "\tgo - start OS"
wdenk8bde7f72003-06-27 21:31:46 +00001009);
1010
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001011/*******************************************************************/
1012/* bootd - boot default image */
1013/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001014#if defined(CONFIG_CMD_BOOTD)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001015int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001016{
1017 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001018
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001019#ifndef CONFIG_SYS_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001020 if (run_command (getenv ("bootcmd"), flag) < 0)
1021 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001022#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001023 if (parse_string_outer (getenv ("bootcmd"),
1024 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
1025 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001026#endif
1027 return rcode;
1028}
wdenk8bde7f72003-06-27 21:31:46 +00001029
wdenk0d498392003-07-01 21:06:45 +00001030U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001031 boot, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001032 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001033 ""
wdenk9d2b18a2003-06-28 23:11:04 +00001034);
1035
1036/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +00001037U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001038 bootd, 1, 1, do_bootd,
Peter Tyser2fb26042009-01-27 18:03:12 -06001039 "boot default, i.e., run 'bootcmd'",
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001040 ""
wdenk8bde7f72003-06-27 21:31:46 +00001041);
1042
wdenk47d1a6e2002-11-03 00:01:44 +00001043#endif
1044
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001045
1046/*******************************************************************/
1047/* iminfo - print header info for a requested image */
1048/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001049#if defined(CONFIG_CMD_IMI)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001050int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk47d1a6e2002-11-03 00:01:44 +00001051{
1052 int arg;
1053 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001054 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +00001055
1056 if (argc < 2) {
1057 return image_info (load_addr);
1058 }
1059
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001060 for (arg = 1; arg < argc; ++arg) {
1061 addr = simple_strtoul (argv[arg], NULL, 16);
1062 if (image_info (addr) != 0)
1063 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001064 }
1065 return rcode;
1066}
1067
1068static int image_info (ulong addr)
1069{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001070 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +00001071
1072 printf ("\n## Checking Image at %08lx ...\n", addr);
1073
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001074 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001075 case IMAGE_FORMAT_LEGACY:
1076 puts (" Legacy image found\n");
1077 if (!image_check_magic (hdr)) {
1078 puts (" Bad Magic Number\n");
1079 return 1;
1080 }
1081
1082 if (!image_check_hcrc (hdr)) {
1083 puts (" Bad Header Checksum\n");
1084 return 1;
1085 }
1086
1087 image_print_contents (hdr);
1088
1089 puts (" Verifying Checksum ... ");
1090 if (!image_check_dcrc (hdr)) {
1091 puts (" Bad Data CRC\n");
1092 return 1;
1093 }
1094 puts ("OK\n");
1095 return 0;
1096#if defined(CONFIG_FIT)
1097 case IMAGE_FORMAT_FIT:
1098 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +01001099
1100 if (!fit_check_format (hdr)) {
1101 puts ("Bad FIT image format!\n");
1102 return 1;
1103 }
1104
1105 fit_print_contents (hdr);
Bartlomiej Siekaa4f24342008-09-09 12:58:16 +02001106
1107 if (!fit_all_image_check_hashes (hdr)) {
1108 puts ("Bad hash in FIT image!\n");
1109 return 1;
1110 }
1111
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001112 return 0;
1113#endif
1114 default:
1115 puts ("Unknown image format!\n");
1116 break;
wdenk47d1a6e2002-11-03 00:01:44 +00001117 }
1118
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001119 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001120}
wdenk0d498392003-07-01 21:06:45 +00001121
1122U_BOOT_CMD(
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001123 iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo,
Peter Tyser2fb26042009-01-27 18:03:12 -06001124 "print header information for application image",
wdenk8bde7f72003-06-27 21:31:46 +00001125 "addr [addr ...]\n"
1126 " - print header information for application image starting at\n"
1127 " address 'addr' in memory; this includes verification of the\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001128 " image contents (magic number, header and payload checksums)"
wdenk8bde7f72003-06-27 21:31:46 +00001129);
Jon Loeliger90253172007-07-10 11:02:44 -05001130#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001131
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001132
1133/*******************************************************************/
1134/* imls - list all images found in flash */
1135/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001136#if defined(CONFIG_CMD_IMLS)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001137int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
wdenk27b207f2003-07-24 23:38:38 +00001138{
1139 flash_info_t *info;
1140 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001141 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +00001142
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001143 for (i = 0, info = &flash_info[0];
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +02001144 i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) {
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001145
wdenk27b207f2003-07-24 23:38:38 +00001146 if (info->flash_id == FLASH_UNKNOWN)
1147 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001148 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +00001149
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001150 hdr = (void *)info->start[j];
1151 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +00001152 goto next_sector;
1153
Marian Balakowicz9a4daad2008-02-29 14:58:34 +01001154 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001155 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001156 if (!image_check_hcrc (hdr))
1157 goto next_sector;
1158
1159 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
1160 image_print_contents (hdr);
1161
1162 puts (" Verifying Checksum ... ");
1163 if (!image_check_dcrc (hdr)) {
1164 puts ("Bad Data CRC\n");
1165 } else {
1166 puts ("OK\n");
1167 }
1168 break;
1169#if defined(CONFIG_FIT)
1170 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +01001171 if (!fit_check_format (hdr))
1172 goto next_sector;
1173
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001174 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +01001175 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001176 break;
1177#endif
1178 default:
wdenk27b207f2003-07-24 23:38:38 +00001179 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +00001180 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001181
wdenkbdccc4f2003-08-05 17:43:17 +00001182next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +00001183 }
wdenkbdccc4f2003-08-05 17:43:17 +00001184next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +00001185 }
1186
1187 return (0);
1188}
1189
1190U_BOOT_CMD(
1191 imls, 1, 1, do_imls,
Peter Tyser2fb26042009-01-27 18:03:12 -06001192 "list all images found in flash",
wdenk27b207f2003-07-24 23:38:38 +00001193 "\n"
1194 " - Prints information about all images found at sector\n"
Wolfgang Denka89c33d2009-05-24 17:06:54 +02001195 " boundaries in flash."
wdenk27b207f2003-07-24 23:38:38 +00001196);
Jon Loeliger90253172007-07-10 11:02:44 -05001197#endif
wdenk27b207f2003-07-24 23:38:38 +00001198
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001199/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +01001200/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001201/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +00001202#ifdef CONFIG_SILENT_CONSOLE
Doug Anderson3a8653b2011-10-19 12:30:57 +00001203static void fixup_silent_linux(void)
wdenk47d1a6e2002-11-03 00:01:44 +00001204{
1205 char buf[256], *start, *end;
Doug Anderson3a8653b2011-10-19 12:30:57 +00001206 char *cmdline = getenv("bootargs");
wdenk47d1a6e2002-11-03 00:01:44 +00001207
1208 /* Only fix cmdline when requested */
1209 if (!(gd->flags & GD_FLG_SILENT))
1210 return;
1211
Doug Anderson3a8653b2011-10-19 12:30:57 +00001212 debug("before silent fix-up: %s\n", cmdline);
wdenk47d1a6e2002-11-03 00:01:44 +00001213 if (cmdline) {
Doug Anderson3a8653b2011-10-19 12:30:57 +00001214 start = strstr(cmdline, "console=");
1215 if (start) {
1216 end = strchr(start, ' ');
1217 strncpy(buf, cmdline, (start - cmdline + 8));
wdenk47d1a6e2002-11-03 00:01:44 +00001218 if (end)
Doug Anderson3a8653b2011-10-19 12:30:57 +00001219 strcpy(buf + (start - cmdline + 8), end);
wdenk47d1a6e2002-11-03 00:01:44 +00001220 else
1221 buf[start - cmdline + 8] = '\0';
1222 } else {
Doug Anderson3a8653b2011-10-19 12:30:57 +00001223 strcpy(buf, cmdline);
1224 strcat(buf, " console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001225 }
1226 } else {
Doug Anderson3a8653b2011-10-19 12:30:57 +00001227 strcpy(buf, "console=");
wdenk47d1a6e2002-11-03 00:01:44 +00001228 }
1229
Doug Anderson3a8653b2011-10-19 12:30:57 +00001230 setenv("bootargs", buf);
1231 debug("after silent fix-up: %s\n", buf);
wdenk47d1a6e2002-11-03 00:01:44 +00001232}
1233#endif /* CONFIG_SILENT_CONSOLE */
1234
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001235
1236/*******************************************************************/
1237/* OS booting routines */
1238/*******************************************************************/
1239
Kumar Galab1d0db12008-10-21 17:25:47 -05001240#ifdef CONFIG_BOOTM_NETBSD
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001241static int do_bootm_netbsd (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001242 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001243{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001244 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001245 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001246 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001247 char *consdev;
1248 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +00001249
Kumar Gala49c3a862008-10-21 17:25:45 -05001250 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1251 return 1;
1252
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001253#if defined(CONFIG_FIT)
1254 if (!images->legacy_hdr_valid) {
1255 fit_unsupported_reset ("NetBSD");
Kumar Gala40d7e992008-08-15 08:24:45 -05001256 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001257 }
1258#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001259 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +00001260
1261 /*
1262 * Booting a (NetBSD) kernel image
1263 *
1264 * This process is pretty similar to a standalone application:
1265 * The (first part of an multi-) image must be a stage-2 loader,
1266 * which in turn is responsible for loading & invoking the actual
1267 * kernel. The only differences are the parameters being passed:
1268 * besides the board info strucure, the loader expects a command
1269 * line, the name of the console device, and (optionally) the
1270 * address of the original image header.
1271 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001272 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001273 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001274 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
1275 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001276 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001277 }
wdenk47d1a6e2002-11-03 00:01:44 +00001278
1279 consdev = "";
1280#if defined (CONFIG_8xx_CONS_SMC1)
1281 consdev = "smc1";
1282#elif defined (CONFIG_8xx_CONS_SMC2)
1283 consdev = "smc2";
1284#elif defined (CONFIG_8xx_CONS_SCC2)
1285 consdev = "scc2";
1286#elif defined (CONFIG_8xx_CONS_SCC3)
1287 consdev = "scc3";
1288#endif
1289
1290 if (argc > 2) {
1291 ulong len;
1292 int i;
1293
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001294 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +00001295 len += strlen (argv[i]) + 1;
1296 cmdline = malloc (len);
1297
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001298 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +00001299 if (i > 2)
1300 cmdline[len++] = ' ';
1301 strcpy (&cmdline[len], argv[i]);
1302 len += strlen (argv[i]);
1303 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001304 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +00001305 cmdline = "";
1306 }
1307
Kumar Galac160a952008-08-15 08:24:36 -05001308 loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep;
wdenk47d1a6e2002-11-03 00:01:44 +00001309
1310 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
1311 (ulong)loader);
1312
1313 show_boot_progress (15);
1314
1315 /*
1316 * NetBSD Stage-2 Loader Parameters:
1317 * r3: ptr to board info data
1318 * r4: image address
1319 * r5: console device
1320 * r6: boot args string
1321 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001322 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Kumar Gala40d7e992008-08-15 08:24:45 -05001323
1324 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001325}
Kumar Galab1d0db12008-10-21 17:25:47 -05001326#endif /* CONFIG_BOOTM_NETBSD*/
wdenk47d1a6e2002-11-03 00:01:44 +00001327
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001328#ifdef CONFIG_LYNXKDI
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001329static int do_bootm_lynxkdi (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001330 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001331{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001332 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001333
Kumar Gala49c3a862008-10-21 17:25:45 -05001334 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1335 return 1;
1336
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001337#if defined(CONFIG_FIT)
1338 if (!images->legacy_hdr_valid) {
1339 fit_unsupported_reset ("Lynx");
Kumar Gala40d7e992008-08-15 08:24:45 -05001340 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001341 }
1342#endif
1343
1344 lynxkdi_boot ((image_header_t *)hdr);
Kumar Gala40d7e992008-08-15 08:24:45 -05001345
1346 return 1;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001347}
1348#endif /* CONFIG_LYNXKDI */
1349
Kumar Galab1d0db12008-10-21 17:25:47 -05001350#ifdef CONFIG_BOOTM_RTEMS
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001351static int do_bootm_rtems (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001352 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001353{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001354 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +00001355
Kumar Gala49c3a862008-10-21 17:25:45 -05001356 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1357 return 1;
1358
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001359#if defined(CONFIG_FIT)
1360 if (!images->legacy_hdr_valid) {
1361 fit_unsupported_reset ("RTEMS");
Kumar Gala40d7e992008-08-15 08:24:45 -05001362 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001363 }
1364#endif
1365
Kumar Galac160a952008-08-15 08:24:36 -05001366 entry_point = (void (*)(bd_t *))images->ep;
wdenkd791b1d2003-04-20 14:04:18 +00001367
1368 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1369 (ulong)entry_point);
1370
Heiko Schocherfad63402007-07-13 09:54:17 +02001371 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001372
1373 /*
1374 * RTEMS Parameters:
1375 * r3: ptr to board info data
1376 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001377 (*entry_point)(gd->bd);
Kumar Gala40d7e992008-08-15 08:24:45 -05001378
1379 return 1;
wdenkd791b1d2003-04-20 14:04:18 +00001380}
Kumar Galab1d0db12008-10-21 17:25:47 -05001381#endif /* CONFIG_BOOTM_RTEMS */
wdenkd791b1d2003-04-20 14:04:18 +00001382
Torkel Lundgren3df61952010-09-28 11:05:36 +02001383#if defined(CONFIG_BOOTM_OSE)
1384static int do_bootm_ose (int flag, int argc, char * const argv[],
1385 bootm_headers_t *images)
1386{
1387 void (*entry_point)(void);
1388
1389 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1390 return 1;
1391
1392#if defined(CONFIG_FIT)
1393 if (!images->legacy_hdr_valid) {
1394 fit_unsupported_reset ("OSE");
1395 return 1;
1396 }
1397#endif
1398
1399 entry_point = (void (*)(void))images->ep;
1400
1401 printf ("## Transferring control to OSE (at address %08lx) ...\n",
1402 (ulong)entry_point);
1403
1404 show_boot_progress (15);
1405
1406 /*
1407 * OSE Parameters:
1408 * None
1409 */
1410 (*entry_point)();
1411
1412 return 1;
1413}
1414#endif /* CONFIG_BOOTM_OSE */
1415
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001416#if defined(CONFIG_CMD_ELF)
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001417static int do_bootm_vxworks (int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001418 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001419{
wdenk47d1a6e2002-11-03 00:01:44 +00001420 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001421
Kumar Gala49c3a862008-10-21 17:25:45 -05001422 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1423 return 1;
1424
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001425#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001426 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001427 fit_unsupported_reset ("VxWorks");
Kumar Gala40d7e992008-08-15 08:24:45 -05001428 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001429 }
1430#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001431
Kumar Galac160a952008-08-15 08:24:36 -05001432 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001433 setenv("loadaddr", str);
Kumar Gala40d7e992008-08-15 08:24:45 -05001434 do_bootvx(NULL, 0, 0, NULL);
1435
1436 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001437}
1438
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001439static int do_bootm_qnxelf(int flag, int argc, char * const argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001440 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001441{
wdenk47d1a6e2002-11-03 00:01:44 +00001442 char *local_args[2];
1443 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001444
Kumar Gala49c3a862008-10-21 17:25:45 -05001445 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1446 return 1;
1447
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001448#if defined(CONFIG_FIT)
1449 if (!images->legacy_hdr_valid) {
1450 fit_unsupported_reset ("QNX");
Kumar Gala40d7e992008-08-15 08:24:45 -05001451 return 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001452 }
1453#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001454
Kumar Galac160a952008-08-15 08:24:36 -05001455 sprintf(str, "%lx", images->ep); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001456 local_args[0] = argv[0];
1457 local_args[1] = str; /* and provide it via the arguments */
Kumar Gala40d7e992008-08-15 08:24:45 -05001458 do_bootelf(NULL, 0, 2, local_args);
1459
1460 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +00001461}
Jon Loeliger90253172007-07-10 11:02:44 -05001462#endif
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001463
1464#ifdef CONFIG_INTEGRITY
Wolfgang Denk54841ab2010-06-28 22:00:46 +02001465static int do_bootm_integrity (int flag, int argc, char * const argv[],
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001466 bootm_headers_t *images)
1467{
1468 void (*entry_point)(void);
1469
Kumar Gala49c3a862008-10-21 17:25:45 -05001470 if ((flag != 0) && (flag != BOOTM_STATE_OS_GO))
1471 return 1;
1472
Peter Tyserf5ed9e32008-09-08 14:56:49 -05001473#if defined(CONFIG_FIT)
1474 if (!images->legacy_hdr_valid) {
1475 fit_unsupported_reset ("INTEGRITY");
1476 return 1;
1477 }
1478#endif
1479
1480 entry_point = (void (*)(void))images->ep;
1481
1482 printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n",
1483 (ulong)entry_point);
1484
1485 show_boot_progress (15);
1486
1487 /*
1488 * INTEGRITY Parameters:
1489 * None
1490 */
1491 (*entry_point)();
1492
1493 return 1;
1494}
1495#endif