blob: 2f232e79538a74dcabc1be51bd8d8bd47ac4d29b [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Stefan Roese15940c92006-03-13 11:16:36 +01002 * (C) Copyright 2000-2006
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#define DEBUG
25
wdenk47d1a6e2002-11-03 00:01:44 +000026/*
27 * Boot support
28 */
29#include <common.h>
30#include <watchdog.h>
31#include <command.h>
wdenk47d1a6e2002-11-03 00:01:44 +000032#include <image.h>
33#include <malloc.h>
34#include <zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000035#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000036#include <environment.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060037#include <lmb.h>
wdenk47d1a6e2002-11-03 00:01:44 +000038#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000039
wdenk47d1a6e2002-11-03 00:01:44 +000040#ifdef CFG_HUSH_PARSER
41#include <hush.h>
42#endif
43
Marian Balakowicz1ee11802008-01-08 18:17:10 +010044DECLARE_GLOBAL_DATA_PTR;
45
46extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
47#ifndef CFG_BOOTM_LEN
48#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
49#endif
wdenk47d1a6e2002-11-03 00:01:44 +000050
Marian Balakowicz321359f2008-01-08 18:11:43 +010051#ifdef CONFIG_BZIP2
52extern void bz_internal_error(int);
53#endif
wdenk47d1a6e2002-11-03 00:01:44 +000054
Jon Loeligerbaa26db2007-07-08 17:51:39 -050055#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000056static int image_info (unsigned long addr);
57#endif
wdenk27b207f2003-07-24 23:38:38 +000058
Jon Loeligerbaa26db2007-07-08 17:51:39 -050059#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000060#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020061extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000062static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
63#endif
64
Marian Balakowicz1ee11802008-01-08 18:17:10 +010065#ifdef CONFIG_SILENT_CONSOLE
66static void fixup_silent_linux (void);
67#endif
68
Marian Balakowicz6986a382008-03-12 10:01:05 +010069static image_header_t *image_get_kernel (ulong img_addr, int verify);
70#if defined(CONFIG_FIT)
71static int fit_check_kernel (const void *fit, int os_noffset, int verify);
72#endif
73
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010074static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010075 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010076extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000077
78/*
79 * Continue booting an OS image; caller already has:
80 * - copied image header to global variable `header'
81 * - checked header magic number, checksums (both header & image),
82 * - verified image architecture (PPC) and type (KERNEL or MULTI),
83 * - loaded (first part of) image to header load address,
84 * - disabled interrupts.
85 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +010086typedef void boot_os_fn (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010087 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010088 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +000089
Marian Balakowicz1ee11802008-01-08 18:17:10 +010090extern boot_os_fn do_bootm_linux;
91static boot_os_fn do_bootm_netbsd;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010092#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010093static boot_os_fn do_bootm_lynxkdi;
94extern void lynxkdi_boot (image_header_t *);
wdenkf72da342003-10-10 10:05:42 +000095#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +010096static boot_os_fn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -050097#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010098static boot_os_fn do_bootm_vxworks;
99static boot_os_fn do_bootm_qnxelf;
100int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
101int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500102#endif
wdenk7f70e852003-05-20 14:25:27 +0000103#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100104extern uchar (*env_get_char)(int); /* Returns a character from the environment */
105static boot_os_fn do_bootm_artos;
Stefan Roese15940c92006-03-13 11:16:36 +0100106#endif
107
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100108ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100109static bootm_headers_t images; /* pointers to os/initrd/fdt images */
wdenk47d1a6e2002-11-03 00:01:44 +0000110
Kumar Galae822d7f2008-02-27 21:51:49 -0600111void __board_lmb_reserve(struct lmb *lmb)
112{
113 /* please define platform specific board_lmb_reserve() */
114}
115void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
116
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100117
118/*******************************************************************/
119/* bootm - boot application image from image in memory */
120/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000121int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
122{
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100123 ulong iflag;
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100124 const char *type_name;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100125 uint unc_len = CFG_BOOTM_LEN;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100126 uint8_t comp, type, os;
wdenk47d1a6e2002-11-03 00:01:44 +0000127
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100128 void *os_hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100129 ulong os_data, os_len;
Marian Balakowicz75824382008-01-31 13:20:06 +0100130 ulong image_start, image_end;
131 ulong load_start, load_end;
Kumar Galad3f2fa02008-02-27 21:51:50 -0600132 ulong mem_start, mem_size;
Marian Balakowicz75824382008-01-31 13:20:06 +0100133
Kumar Gala4ed65522008-02-27 21:51:47 -0600134 struct lmb lmb;
135
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100136 memset ((void *)&images, 0, sizeof (images));
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100137 images.verify = getenv_verify();
Kumar Galaf5614e72008-02-27 21:51:48 -0600138 images.autostart = getenv_autostart();
Kumar Gala4ed65522008-02-27 21:51:47 -0600139 images.lmb = &lmb;
140
141 lmb_init(&lmb);
142
Kumar Galad3f2fa02008-02-27 21:51:50 -0600143 mem_start = getenv_bootm_low();
144 mem_size = getenv_bootm_size();
145
146 lmb_add(&lmb, mem_start, mem_size);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100147
Kumar Galae822d7f2008-02-27 21:51:49 -0600148 board_lmb_reserve(&lmb);
149
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100150 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100151 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100152 &images, &os_data, &os_len);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100153 if (os_len == 0) {
154 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000155 return 1;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100156 }
wdenk47d1a6e2002-11-03 00:01:44 +0000157
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100158 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100159 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100160 case IMAGE_FORMAT_LEGACY:
161 type = image_get_type (os_hdr);
162 comp = image_get_comp (os_hdr);
163 os = image_get_os (os_hdr);
164
165 image_end = image_get_image_end (os_hdr);
166 load_start = image_get_load (os_hdr);
167 break;
168#if defined(CONFIG_FIT)
169 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100170 if (fit_image_get_type (images.fit_hdr_os,
171 images.fit_noffset_os, &type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100172 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100173 show_boot_progress (-109);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100174 return 1;
175 }
176
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100177 if (fit_image_get_comp (images.fit_hdr_os,
178 images.fit_noffset_os, &comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100179 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100180 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100181 return 1;
182 }
183
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100184 if (fit_image_get_os (images.fit_hdr_os,
185 images.fit_noffset_os, &os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100186 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100187 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100188 return 1;
189 }
190
191 image_end = fit_get_end (images.fit_hdr_os);
192
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100193 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Marian Balakowicz6986a382008-03-12 10:01:05 +0100194 &load_start)) {
195 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100196 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100197 return 1;
198 }
199 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100200#endif
201 default:
202 puts ("ERROR: unknown image format type!\n");
203 return 1;
204 }
205
206 image_start = (ulong)os_hdr;
207 load_end = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100208 type_name = genimg_get_type_name (type);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100209
wdenk47d1a6e2002-11-03 00:01:44 +0000210 /*
211 * We have reached the point of no return: we are going to
212 * overwrite all exception vector code, so we cannot easily
213 * recover from any failures any more...
214 */
wdenk47d1a6e2002-11-03 00:01:44 +0000215 iflag = disable_interrupts();
216
wdenkc7de8292002-11-19 11:04:11 +0000217#ifdef CONFIG_AMIGAONEG3SE
218 /*
wdenk8bde7f72003-06-27 21:31:46 +0000219 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000220 * bios emulation, so turn them off again
221 */
222 icache_disable();
223 invalidate_l1_instruction_cache();
224 flush_data_cache();
225 dcache_disable();
226#endif
227
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100228 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000229 case IH_COMP_NONE:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100230 if (load_start == (ulong)os_hdr) {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100231 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000232 } else {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100233 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000234
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100235 memmove_wd ((void *)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100236 (void *)os_data, os_len, CHUNKSZ);
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100237
Marian Balakowicz75824382008-01-31 13:20:06 +0100238 load_end = load_start + os_len;
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100239 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000240 }
241 break;
242 case IH_COMP_GZIP:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100243 printf (" Uncompressing %s ... ", type_name);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100244 if (gunzip ((void *)load_start, unc_len,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100245 (uchar *)os_data, &os_len) != 0) {
Marian Balakowicz2682ce82008-03-12 10:33:01 +0100246 puts ("GUNZIP: uncompress or overwrite error "
247 "- must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200248 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000249 do_reset (cmdtp, flag, argc, argv);
250 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100251
252 load_end = load_start + os_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000253 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000254#ifdef CONFIG_BZIP2
255 case IH_COMP_BZIP2:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100256 printf (" Uncompressing %s ... ", type_name);
wdenk5653fc32004-02-08 22:55:38 +0000257 /*
258 * If we've got less than 4 MB of malloc() space,
259 * use slower decompression algorithm which requires
260 * at most 2300 KB of memory.
261 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100262 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100263 &unc_len, (char *)os_data, os_len,
264 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000265 if (i != BZ_OK) {
Marian Balakowicz2682ce82008-03-12 10:33:01 +0100266 printf ("BUNZIP2: uncompress or overwrite error %d "
267 "- must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200268 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000269 do_reset (cmdtp, flag, argc, argv);
270 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100271
272 load_end = load_start + unc_len;
wdenkc29fdfc2003-08-29 20:57:53 +0000273 break;
274#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000275 default:
276 if (iflag)
277 enable_interrupts();
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100278 printf ("Unimplemented compression type %d\n", comp);
Heiko Schocherfad63402007-07-13 09:54:17 +0200279 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000280 return 1;
281 }
wdenk4b9206e2004-03-23 22:14:11 +0000282 puts ("OK\n");
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100283 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
Heiko Schocherfad63402007-07-13 09:54:17 +0200284 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000285
Marian Balakowicz75824382008-01-31 13:20:06 +0100286 if ((load_start < image_end) && (load_end > image_start)) {
287 debug ("image_start = 0x%lX, image_end = 0x%lx\n", image_start, image_end);
288 debug ("load_start = 0x%lx, load_end = 0x%lx\n", load_start, load_end);
289
290 puts ("ERROR: image overwritten - must RESET the board to recover.\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100291 show_boot_progress (-113);
Marian Balakowicz75824382008-01-31 13:20:06 +0100292 do_reset (cmdtp, flag, argc, argv);
293 }
294
Heiko Schocherfad63402007-07-13 09:54:17 +0200295 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000296
Kumar Gala4ed65522008-02-27 21:51:47 -0600297 lmb_reserve(&lmb, load_start, (load_end - load_start));
298
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100299 switch (os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000300 default: /* handled by (original) Linux case */
301 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000302#ifdef CONFIG_SILENT_CONSOLE
303 fixup_silent_linux();
304#endif
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100305 do_bootm_linux (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000306 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100307
wdenk47d1a6e2002-11-03 00:01:44 +0000308 case IH_OS_NETBSD:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100309 do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000310 break;
wdenk8bde7f72003-06-27 21:31:46 +0000311
wdenk1f4bb372003-07-27 00:21:01 +0000312#ifdef CONFIG_LYNXKDI
313 case IH_OS_LYNXOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100314 do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000315 break;
316#endif
317
wdenkd791b1d2003-04-20 14:04:18 +0000318 case IH_OS_RTEMS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100319 do_bootm_rtems (cmdtp, flag, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000320 break;
wdenk8bde7f72003-06-27 21:31:46 +0000321
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500322#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000323 case IH_OS_VXWORKS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100324 do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000325 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100326
wdenk47d1a6e2002-11-03 00:01:44 +0000327 case IH_OS_QNX:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100328 do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000329 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500330#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100331
wdenk7f70e852003-05-20 14:25:27 +0000332#ifdef CONFIG_ARTOS
333 case IH_OS_ARTOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100334 do_bootm_artos (cmdtp, flag, argc, argv, &images);
wdenk7f70e852003-05-20 14:25:27 +0000335 break;
336#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000337 }
338
Heiko Schocherfad63402007-07-13 09:54:17 +0200339 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000340#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000341 puts ("\n## Control returned to monitor - resetting...\n");
Marian Balakowicza44a2692008-03-12 10:14:57 +0100342 if (images.autostart)
343 do_reset (cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000344#endif
Marian Balakowicza44a2692008-03-12 10:14:57 +0100345 if (!images.autostart && iflag)
346 enable_interrupts();
347
wdenk47d1a6e2002-11-03 00:01:44 +0000348 return 1;
349}
350
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100351/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100352 * image_get_kernel - verify legacy format kernel image
353 * @img_addr: in RAM address of the legacy format image to be verified
354 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100355 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100356 * image_get_kernel() verifies legacy image integrity and returns pointer to
357 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100358 *
359 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100360 * pointer to a legacy image header if valid image was found
361 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100362 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100363static image_header_t *image_get_kernel (ulong img_addr, int verify)
364{
365 image_header_t *hdr = (image_header_t *)img_addr;
366
367 if (!image_check_magic(hdr)) {
368 puts ("Bad Magic Number\n");
369 show_boot_progress (-1);
370 return NULL;
371 }
372 show_boot_progress (2);
373
374 if (!image_check_hcrc (hdr)) {
375 puts ("Bad Header Checksum\n");
376 show_boot_progress (-2);
377 return NULL;
378 }
379
380 show_boot_progress (3);
381 image_print_contents (hdr);
382
383 if (verify) {
384 puts (" Verifying Checksum ... ");
385 if (!image_check_dcrc (hdr)) {
386 printf ("Bad Data CRC\n");
387 show_boot_progress (-3);
388 return NULL;
389 }
390 puts ("OK\n");
391 }
392 show_boot_progress (4);
393
394 if (!image_check_target_arch (hdr)) {
395 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
396 show_boot_progress (-4);
397 return NULL;
398 }
399 return hdr;
400}
401
402/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100403 * fit_check_kernel - verify FIT format kernel subimage
404 * @fit_hdr: pointer to the FIT image header
405 * os_noffset: kernel subimage node offset within FIT image
406 * @verify: data CRC verification flag
407 *
408 * fit_check_kernel() verifies integrity of the kernel subimage and from
409 * specified FIT image.
410 *
411 * returns:
412 * 1, on success
413 * 0, on failure
414 */
415#if defined (CONFIG_FIT)
416static int fit_check_kernel (const void *fit, int os_noffset, int verify)
417{
418 fit_image_print (fit, os_noffset, " ");
419
420 if (verify) {
421 puts (" Verifying Hash Integrity ... ");
422 if (!fit_image_check_hashes (fit, os_noffset)) {
423 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100424 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100425 return 0;
426 }
427 puts ("OK\n");
428 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100429 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100430
431 if (!fit_image_check_target_arch (fit, os_noffset)) {
432 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100433 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100434 return 0;
435 }
436
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100437 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100438 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
439 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100440 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100441 return 0;
442 }
443
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100444 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100445 return 1;
446}
447#endif /* CONFIG_FIT */
448
449/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100450 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100451 * @os_data: pointer to a ulong variable, will hold os data start address
452 * @os_len: pointer to a ulong variable, will hold os data length
453 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100454 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100455 * and locates kernel data.
456 *
457 * returns:
458 * pointer to image header if valid image was found, plus kernel start
459 * address and length, otherwise NULL
460 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100461static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100462 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100463{
464 image_header_t *hdr;
465 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100466#if defined(CONFIG_FIT)
467 void *fit_hdr;
468 const char *fit_uname_config = NULL;
469 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100470 const void *data;
471 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100472 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100473 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100474#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100475
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100476 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100477 if (argc < 2) {
478 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100479 debug ("* kernel: default image load address = 0x%08lx\n",
480 load_addr);
481#if defined(CONFIG_FIT)
482 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
483 &fit_uname_config)) {
484 debug ("* kernel: config '%s' from image at 0x%08lx\n",
485 fit_uname_config, img_addr);
486 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
487 &fit_uname_kernel)) {
488 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
489 fit_uname_kernel, img_addr);
490#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100491 } else {
492 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100493 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100494 }
495
496 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100497
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100498 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100499 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100500
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100501 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100502 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100503 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100504 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100505 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
506 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100507 hdr = image_get_kernel (img_addr, images->verify);
508 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100509 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100510 show_boot_progress (5);
511
Marian Balakowicz6986a382008-03-12 10:01:05 +0100512 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100513 switch (image_get_type (hdr)) {
514 case IH_TYPE_KERNEL:
515 *os_data = image_get_data (hdr);
516 *os_len = image_get_data_size (hdr);
517 break;
518 case IH_TYPE_MULTI:
519 image_multi_getimg (hdr, 0, os_data, os_len);
520 break;
521 default:
522 printf ("Wrong Image Type for %s command\n", cmdtp->name);
523 show_boot_progress (-5);
524 return NULL;
525 }
526 images->legacy_hdr_os = hdr;
527 images->legacy_hdr_valid = 1;
528
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100529 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100530 break;
531#if defined(CONFIG_FIT)
532 case IMAGE_FORMAT_FIT:
533 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100534 printf ("## Booting kernel from FIT Image at %08lx ...\n",
535 img_addr);
536
537 if (!fit_check_format (fit_hdr)) {
538 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100539 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100540 return NULL;
541 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100542 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100543
544 if (!fit_uname_kernel) {
545 /*
546 * no kernel image node unit name, try to get config
547 * node first. If config unit node name is NULL
548 * fit_conf_get_node() will try to find default config node
549 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100550 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100551 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
552 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100553 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100554 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100555 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100556 /* save configuration uname provided in the first
557 * bootm argument
558 */
559 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
560 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
561 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100562
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100563 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100564 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
565 } else {
566 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100567 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100568 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
569 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100570 if (os_noffset < 0) {
571 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100572 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100573 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100574
575 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
576
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100577 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100578 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
579 return NULL;
580
581 /* get kernel image data address and length */
582 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
583 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100584 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100585 return NULL;
586 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100587 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100588
589 *os_len = len;
590 *os_data = (ulong)data;
591 images->fit_hdr_os = fit_hdr;
592 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100593 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100594 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100595#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100596 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100597 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100598 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100599 return NULL;
600 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100601
Marian Balakowicz6986a382008-03-12 10:01:05 +0100602 debug (" kernel data at 0x%08lx, len = 0x%08lx (%d)\n",
603 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100604
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100605 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100606}
607
wdenk0d498392003-07-01 21:06:45 +0000608U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100609 bootm, CFG_MAXARGS, 1, do_bootm,
610 "bootm - boot application image from memory\n",
611 "[addr [arg ...]]\n - boot application image stored in memory\n"
612 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
613 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100614#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500615 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200616 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500617 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
618 "\tuse a '-' for the second argument. If you do not pass a third\n"
619 "\ta bd_info struct will be passed instead\n"
620#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100621#if defined(CONFIG_FIT)
622 "\t\nFor the new multi component uImage format (FIT) addresses\n"
623 "\tmust be extened to include component or configuration unit name:\n"
624 "\taddr:<subimg_uname> - direct component image specification\n"
625 "\taddr#<conf_uname> - configuration specification\n"
626 "\tUse iminfo command to get the list of existing component\n"
627 "\timages and configurations.\n"
628#endif
wdenk8bde7f72003-06-27 21:31:46 +0000629);
630
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100631/*******************************************************************/
632/* bootd - boot default image */
633/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500634#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000635int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
636{
637 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100638
wdenk47d1a6e2002-11-03 00:01:44 +0000639#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100640 if (run_command (getenv ("bootcmd"), flag) < 0)
641 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000642#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100643 if (parse_string_outer (getenv ("bootcmd"),
644 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
645 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000646#endif
647 return rcode;
648}
wdenk8bde7f72003-06-27 21:31:46 +0000649
wdenk0d498392003-07-01 21:06:45 +0000650U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100651 boot, 1, 1, do_bootd,
652 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000653 NULL
654);
655
656/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000657U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100658 bootd, 1, 1, do_bootd,
659 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000660 NULL
661);
662
wdenk47d1a6e2002-11-03 00:01:44 +0000663#endif
664
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100665
666/*******************************************************************/
667/* iminfo - print header info for a requested image */
668/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500669#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100670int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000671{
672 int arg;
673 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100674 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000675
676 if (argc < 2) {
677 return image_info (load_addr);
678 }
679
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100680 for (arg = 1; arg < argc; ++arg) {
681 addr = simple_strtoul (argv[arg], NULL, 16);
682 if (image_info (addr) != 0)
683 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000684 }
685 return rcode;
686}
687
688static int image_info (ulong addr)
689{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100690 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000691
692 printf ("\n## Checking Image at %08lx ...\n", addr);
693
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100694 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100695 case IMAGE_FORMAT_LEGACY:
696 puts (" Legacy image found\n");
697 if (!image_check_magic (hdr)) {
698 puts (" Bad Magic Number\n");
699 return 1;
700 }
701
702 if (!image_check_hcrc (hdr)) {
703 puts (" Bad Header Checksum\n");
704 return 1;
705 }
706
707 image_print_contents (hdr);
708
709 puts (" Verifying Checksum ... ");
710 if (!image_check_dcrc (hdr)) {
711 puts (" Bad Data CRC\n");
712 return 1;
713 }
714 puts ("OK\n");
715 return 0;
716#if defined(CONFIG_FIT)
717 case IMAGE_FORMAT_FIT:
718 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100719
720 if (!fit_check_format (hdr)) {
721 puts ("Bad FIT image format!\n");
722 return 1;
723 }
724
725 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100726 return 0;
727#endif
728 default:
729 puts ("Unknown image format!\n");
730 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000731 }
732
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100733 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000734}
wdenk0d498392003-07-01 21:06:45 +0000735
736U_BOOT_CMD(
737 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000738 "iminfo - print header information for application image\n",
739 "addr [addr ...]\n"
740 " - print header information for application image starting at\n"
741 " address 'addr' in memory; this includes verification of the\n"
742 " image contents (magic number, header and payload checksums)\n"
743);
Jon Loeliger90253172007-07-10 11:02:44 -0500744#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000745
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100746
747/*******************************************************************/
748/* imls - list all images found in flash */
749/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500750#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000751int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
752{
753 flash_info_t *info;
754 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100755 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000756
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100757 for (i = 0, info = &flash_info[0];
758 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
759
wdenk27b207f2003-07-24 23:38:38 +0000760 if (info->flash_id == FLASH_UNKNOWN)
761 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100762 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000763
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100764 hdr = (void *)info->start[j];
765 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000766 goto next_sector;
767
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100768 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100769 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100770 if (!image_check_hcrc (hdr))
771 goto next_sector;
772
773 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
774 image_print_contents (hdr);
775
776 puts (" Verifying Checksum ... ");
777 if (!image_check_dcrc (hdr)) {
778 puts ("Bad Data CRC\n");
779 } else {
780 puts ("OK\n");
781 }
782 break;
783#if defined(CONFIG_FIT)
784 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100785 if (!fit_check_format (hdr))
786 goto next_sector;
787
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100788 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100789 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100790 break;
791#endif
792 default:
wdenk27b207f2003-07-24 23:38:38 +0000793 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000794 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100795
wdenkbdccc4f2003-08-05 17:43:17 +0000796next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000797 }
wdenkbdccc4f2003-08-05 17:43:17 +0000798next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000799 }
800
801 return (0);
802}
803
804U_BOOT_CMD(
805 imls, 1, 1, do_imls,
806 "imls - list all images found in flash\n",
807 "\n"
808 " - Prints information about all images found at sector\n"
809 " boundaries in flash.\n"
810);
Jon Loeliger90253172007-07-10 11:02:44 -0500811#endif
wdenk27b207f2003-07-24 23:38:38 +0000812
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100813/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100814/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100815/*******************************************************************/
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100816#ifdef CONFIG_SILENT_CONSOLE
817static void fixup_silent_linux ()
818{
819 char buf[256], *start, *end;
820 char *cmdline = getenv ("bootargs");
821
822 /* Only fix cmdline when requested */
823 if (!(gd->flags & GD_FLG_SILENT))
824 return;
825
826 debug ("before silent fix-up: %s\n", cmdline);
827 if (cmdline) {
828 if ((start = strstr (cmdline, "console=")) != NULL) {
829 end = strchr (start, ' ');
830 strncpy (buf, cmdline, (start - cmdline + 8));
831 if (end)
832 strcpy (buf + (start - cmdline + 8), end);
833 else
834 buf[start - cmdline + 8] = '\0';
835 } else {
836 strcpy (buf, cmdline);
837 strcat (buf, " console=");
838 }
839 } else {
840 strcpy (buf, "console=");
841 }
842
843 setenv ("bootargs", buf);
844 debug ("after silent fix-up: %s\n", buf);
845}
846#endif /* CONFIG_SILENT_CONSOLE */
847
848
849/*******************************************************************/
850/* OS booting routines */
851/*******************************************************************/
852
853static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100854 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100855 bootm_headers_t *images)
wdenkd791b1d2003-04-20 14:04:18 +0000856{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100857 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100858 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100859 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100860 char *consdev;
861 char *cmdline;
862
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100863#if defined(CONFIG_FIT)
864 if (!images->legacy_hdr_valid) {
865 fit_unsupported_reset ("NetBSD");
866 do_reset (cmdtp, flag, argc, argv);
867 }
868#endif
869 hdr = images->legacy_hdr_os;
870
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100871 /*
872 * Booting a (NetBSD) kernel image
873 *
874 * This process is pretty similar to a standalone application:
875 * The (first part of an multi-) image must be a stage-2 loader,
876 * which in turn is responsible for loading & invoking the actual
877 * kernel. The only differences are the parameters being passed:
878 * besides the board info strucure, the loader expects a command
879 * line, the name of the console device, and (optionally) the
880 * address of the original image header.
881 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100882 os_hdr = NULL;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100883 if (image_check_type (hdr, IH_TYPE_MULTI)) {
884 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
885 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100886 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100887 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100888
889 consdev = "";
890#if defined (CONFIG_8xx_CONS_SMC1)
891 consdev = "smc1";
892#elif defined (CONFIG_8xx_CONS_SMC2)
893 consdev = "smc2";
894#elif defined (CONFIG_8xx_CONS_SCC2)
895 consdev = "scc2";
896#elif defined (CONFIG_8xx_CONS_SCC3)
897 consdev = "scc3";
898#endif
899
900 if (argc > 2) {
901 ulong len;
902 int i;
903
904 for (i = 2, len = 0; i < argc; i += 1)
905 len += strlen (argv[i]) + 1;
906 cmdline = malloc (len);
907
908 for (i = 2, len = 0; i < argc; i += 1) {
909 if (i > 2)
910 cmdline[len++] = ' ';
911 strcpy (&cmdline[len], argv[i]);
912 len += strlen (argv[i]);
913 }
914 } else if ((cmdline = getenv ("bootargs")) == NULL) {
915 cmdline = "";
916 }
917
918 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
919
920 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
921 (ulong)loader);
922
923 show_boot_progress (15);
924
925 /*
926 * NetBSD Stage-2 Loader Parameters:
927 * r3: ptr to board info data
928 * r4: image address
929 * r5: console device
930 * r6: boot args string
931 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100932 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100933}
934
935#ifdef CONFIG_LYNXKDI
936static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
937 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100938 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100939{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100940 image_header_t *hdr = images->legacy_hdr_os;
941
942#if defined(CONFIG_FIT)
943 if (!images->legacy_hdr_valid) {
944 fit_unsupported_reset ("Lynx");
945 do_reset (cmdtp, flag, argc, argv);
946 }
947#endif
948
949 lynxkdi_boot ((image_header_t *)hdr);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100950}
951#endif /* CONFIG_LYNXKDI */
952
953static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
954 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100955 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100956{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100957 image_header_t *hdr = images->legacy_hdr_os;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100958 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +0000959
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100960#if defined(CONFIG_FIT)
961 if (!images->legacy_hdr_valid) {
962 fit_unsupported_reset ("RTEMS");
963 do_reset (cmdtp, flag, argc, argv);
964 }
965#endif
966
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100967 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
wdenkd791b1d2003-04-20 14:04:18 +0000968
969 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
970 (ulong)entry_point);
971
Heiko Schocherfad63402007-07-13 09:54:17 +0200972 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +0000973
974 /*
975 * RTEMS Parameters:
976 * r3: ptr to board info data
977 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100978 (*entry_point)(gd->bd);
wdenkd791b1d2003-04-20 14:04:18 +0000979}
980
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500981#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100982static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
983 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100984 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000985{
wdenk47d1a6e2002-11-03 00:01:44 +0000986 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100987 image_header_t *hdr = images->legacy_hdr_os;
988
989#if defined(CONFIG_FIT)
990 if (hdr == NULL) {
991 fit_unsupported_reset ("VxWorks");
992 do_reset (cmdtp, flag, argc, argv);
993 }
994#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000995
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100996 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +0000997 setenv("loadaddr", str);
998 do_bootvx(cmdtp, 0, 0, NULL);
999}
1000
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001001static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
1002 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001003 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001004{
wdenk47d1a6e2002-11-03 00:01:44 +00001005 char *local_args[2];
1006 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001007 image_header_t *hdr = images->legacy_hdr_os;
1008
1009#if defined(CONFIG_FIT)
1010 if (!images->legacy_hdr_valid) {
1011 fit_unsupported_reset ("QNX");
1012 do_reset (cmdtp, flag, argc, argv);
1013 }
1014#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001015
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001016 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001017 local_args[0] = argv[0];
1018 local_args[1] = str; /* and provide it via the arguments */
1019 do_bootelf(cmdtp, 0, 2, local_args);
1020}
Jon Loeliger90253172007-07-10 11:02:44 -05001021#endif
wdenk1f4bb372003-07-27 00:21:01 +00001022
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001023#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1024static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1025 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001026 bootm_headers_t *images)
wdenk1f4bb372003-07-27 00:21:01 +00001027{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001028 ulong top;
1029 char *s, *cmdline;
1030 char **fwenv, **ss;
1031 int i, j, nxt, len, envno, envsz;
1032 bd_t *kbd;
1033 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001034 image_header_t *hdr = images->legacy_hdr_os;
1035
1036#if defined(CONFIG_FIT)
1037 if (!images->legacy_hdr_valid) {
1038 fit_unsupported_reset ("ARTOS");
1039 do_reset (cmdtp, flag, argc, argv);
1040 }
1041#endif
wdenk1f4bb372003-07-27 00:21:01 +00001042
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001043 /*
1044 * Booting an ARTOS kernel image + application
1045 */
1046
1047 /* this used to be the top of memory, but was wrong... */
1048#ifdef CONFIG_PPC
1049 /* get stack pointer */
1050 asm volatile ("mr %0,1" : "=r"(top) );
1051#endif
1052 debug ("## Current stack ends at 0x%08lX ", top);
1053
1054 top -= 2048; /* just to be sure */
1055 if (top > CFG_BOOTMAPSZ)
1056 top = CFG_BOOTMAPSZ;
1057 top &= ~0xF;
1058
1059 debug ("=> set upper limit to 0x%08lX\n", top);
1060
1061 /* first check the artos specific boot args, then the linux args*/
1062 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
1063 s = "";
1064
1065 /* get length of cmdline, and place it */
1066 len = strlen (s);
1067 top = (top - (len + 1)) & ~0xF;
1068 cmdline = (char *)top;
1069 debug ("## cmdline at 0x%08lX ", top);
1070 strcpy (cmdline, s);
1071
1072 /* copy bdinfo */
1073 top = (top - sizeof (bd_t)) & ~0xF;
1074 debug ("## bd at 0x%08lX ", top);
1075 kbd = (bd_t *)top;
1076 memcpy (kbd, gd->bd, sizeof (bd_t));
1077
1078 /* first find number of env entries, and their size */
1079 envno = 0;
1080 envsz = 0;
1081 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1082 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
1083 ;
1084 envno++;
1085 envsz += (nxt - i) + 1; /* plus trailing zero */
1086 }
1087 envno++; /* plus the terminating zero */
1088 debug ("## %u envvars total size %u ", envno, envsz);
1089
1090 top = (top - sizeof (char **) * envno) & ~0xF;
1091 fwenv = (char **)top;
1092 debug ("## fwenv at 0x%08lX ", top);
1093
1094 top = (top - envsz) & ~0xF;
1095 s = (char *)top;
1096 ss = fwenv;
1097
1098 /* now copy them */
1099 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1100 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
1101 ;
1102 *ss++ = s;
1103 for (j = i; j < nxt; ++j)
1104 *s++ = env_get_char (j);
1105 *s++ = '\0';
1106 }
1107 *ss++ = NULL; /* terminate */
1108
1109 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
1110 (*entry) (kbd, cmdline, fwenv, top);
1111}
1112#endif