blob: 6591e616aa7fa6e1f804a066465e9cd10ce4b045 [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) {
wdenk4b9206e2004-03-23 22:14:11 +0000246 puts ("GUNZIP ERROR - must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200247 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000248 do_reset (cmdtp, flag, argc, argv);
249 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100250
251 load_end = load_start + os_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000252 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000253#ifdef CONFIG_BZIP2
254 case IH_COMP_BZIP2:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100255 printf (" Uncompressing %s ... ", type_name);
wdenk5653fc32004-02-08 22:55:38 +0000256 /*
257 * If we've got less than 4 MB of malloc() space,
258 * use slower decompression algorithm which requires
259 * at most 2300 KB of memory.
260 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100261 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100262 &unc_len, (char *)os_data, os_len,
263 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000264 if (i != BZ_OK) {
265 printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200266 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000267 do_reset (cmdtp, flag, argc, argv);
268 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100269
270 load_end = load_start + unc_len;
wdenkc29fdfc2003-08-29 20:57:53 +0000271 break;
272#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000273 default:
274 if (iflag)
275 enable_interrupts();
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100276 printf ("Unimplemented compression type %d\n", comp);
Heiko Schocherfad63402007-07-13 09:54:17 +0200277 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000278 return 1;
279 }
wdenk4b9206e2004-03-23 22:14:11 +0000280 puts ("OK\n");
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100281 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
Heiko Schocherfad63402007-07-13 09:54:17 +0200282 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000283
Marian Balakowicz75824382008-01-31 13:20:06 +0100284 if ((load_start < image_end) && (load_end > image_start)) {
285 debug ("image_start = 0x%lX, image_end = 0x%lx\n", image_start, image_end);
286 debug ("load_start = 0x%lx, load_end = 0x%lx\n", load_start, load_end);
287
288 puts ("ERROR: image overwritten - must RESET the board to recover.\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100289 show_boot_progress (-113);
Marian Balakowicz75824382008-01-31 13:20:06 +0100290 do_reset (cmdtp, flag, argc, argv);
291 }
292
Heiko Schocherfad63402007-07-13 09:54:17 +0200293 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000294
Kumar Gala4ed65522008-02-27 21:51:47 -0600295 lmb_reserve(&lmb, load_start, (load_end - load_start));
296
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100297 switch (os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000298 default: /* handled by (original) Linux case */
299 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000300#ifdef CONFIG_SILENT_CONSOLE
301 fixup_silent_linux();
302#endif
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100303 do_bootm_linux (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000304 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100305
wdenk47d1a6e2002-11-03 00:01:44 +0000306 case IH_OS_NETBSD:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100307 do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000308 break;
wdenk8bde7f72003-06-27 21:31:46 +0000309
wdenk1f4bb372003-07-27 00:21:01 +0000310#ifdef CONFIG_LYNXKDI
311 case IH_OS_LYNXOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100312 do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000313 break;
314#endif
315
wdenkd791b1d2003-04-20 14:04:18 +0000316 case IH_OS_RTEMS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100317 do_bootm_rtems (cmdtp, flag, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000318 break;
wdenk8bde7f72003-06-27 21:31:46 +0000319
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500320#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000321 case IH_OS_VXWORKS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100322 do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000323 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100324
wdenk47d1a6e2002-11-03 00:01:44 +0000325 case IH_OS_QNX:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100326 do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000327 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500328#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100329
wdenk7f70e852003-05-20 14:25:27 +0000330#ifdef CONFIG_ARTOS
331 case IH_OS_ARTOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100332 do_bootm_artos (cmdtp, flag, argc, argv, &images);
wdenk7f70e852003-05-20 14:25:27 +0000333 break;
334#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000335 }
336
Heiko Schocherfad63402007-07-13 09:54:17 +0200337 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000338#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000339 puts ("\n## Control returned to monitor - resetting...\n");
Marian Balakowicza44a2692008-03-12 10:14:57 +0100340 if (images.autostart)
341 do_reset (cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000342#endif
Marian Balakowicza44a2692008-03-12 10:14:57 +0100343 if (!images.autostart && iflag)
344 enable_interrupts();
345
wdenk47d1a6e2002-11-03 00:01:44 +0000346 return 1;
347}
348
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100349/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100350 * image_get_kernel - verify legacy format kernel image
351 * @img_addr: in RAM address of the legacy format image to be verified
352 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100353 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100354 * image_get_kernel() verifies legacy image integrity and returns pointer to
355 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100356 *
357 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100358 * pointer to a legacy image header if valid image was found
359 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100360 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100361static image_header_t *image_get_kernel (ulong img_addr, int verify)
362{
363 image_header_t *hdr = (image_header_t *)img_addr;
364
365 if (!image_check_magic(hdr)) {
366 puts ("Bad Magic Number\n");
367 show_boot_progress (-1);
368 return NULL;
369 }
370 show_boot_progress (2);
371
372 if (!image_check_hcrc (hdr)) {
373 puts ("Bad Header Checksum\n");
374 show_boot_progress (-2);
375 return NULL;
376 }
377
378 show_boot_progress (3);
379 image_print_contents (hdr);
380
381 if (verify) {
382 puts (" Verifying Checksum ... ");
383 if (!image_check_dcrc (hdr)) {
384 printf ("Bad Data CRC\n");
385 show_boot_progress (-3);
386 return NULL;
387 }
388 puts ("OK\n");
389 }
390 show_boot_progress (4);
391
392 if (!image_check_target_arch (hdr)) {
393 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
394 show_boot_progress (-4);
395 return NULL;
396 }
397 return hdr;
398}
399
400/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100401 * fit_check_kernel - verify FIT format kernel subimage
402 * @fit_hdr: pointer to the FIT image header
403 * os_noffset: kernel subimage node offset within FIT image
404 * @verify: data CRC verification flag
405 *
406 * fit_check_kernel() verifies integrity of the kernel subimage and from
407 * specified FIT image.
408 *
409 * returns:
410 * 1, on success
411 * 0, on failure
412 */
413#if defined (CONFIG_FIT)
414static int fit_check_kernel (const void *fit, int os_noffset, int verify)
415{
416 fit_image_print (fit, os_noffset, " ");
417
418 if (verify) {
419 puts (" Verifying Hash Integrity ... ");
420 if (!fit_image_check_hashes (fit, os_noffset)) {
421 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100422 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100423 return 0;
424 }
425 puts ("OK\n");
426 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100427 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100428
429 if (!fit_image_check_target_arch (fit, os_noffset)) {
430 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100431 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100432 return 0;
433 }
434
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100435 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100436 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
437 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100438 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100439 return 0;
440 }
441
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100442 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100443 return 1;
444}
445#endif /* CONFIG_FIT */
446
447/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100448 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100449 * @os_data: pointer to a ulong variable, will hold os data start address
450 * @os_len: pointer to a ulong variable, will hold os data length
451 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100452 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100453 * and locates kernel data.
454 *
455 * returns:
456 * pointer to image header if valid image was found, plus kernel start
457 * address and length, otherwise NULL
458 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100459static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100460 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100461{
462 image_header_t *hdr;
463 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100464#if defined(CONFIG_FIT)
465 void *fit_hdr;
466 const char *fit_uname_config = NULL;
467 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100468 const void *data;
469 size_t len;
470 int conf_noffset;
471 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100472#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100473
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100474 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100475 if (argc < 2) {
476 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100477 debug ("* kernel: default image load address = 0x%08lx\n",
478 load_addr);
479#if defined(CONFIG_FIT)
480 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
481 &fit_uname_config)) {
482 debug ("* kernel: config '%s' from image at 0x%08lx\n",
483 fit_uname_config, img_addr);
484 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
485 &fit_uname_kernel)) {
486 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
487 fit_uname_kernel, img_addr);
488#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100489 } else {
490 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100491 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100492 }
493
494 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100495
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100496 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100497 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100498
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100499 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100500 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100501 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100502 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100503 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
504 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100505 hdr = image_get_kernel (img_addr, images->verify);
506 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100507 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100508 show_boot_progress (5);
509
Marian Balakowicz6986a382008-03-12 10:01:05 +0100510 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100511 switch (image_get_type (hdr)) {
512 case IH_TYPE_KERNEL:
513 *os_data = image_get_data (hdr);
514 *os_len = image_get_data_size (hdr);
515 break;
516 case IH_TYPE_MULTI:
517 image_multi_getimg (hdr, 0, os_data, os_len);
518 break;
519 default:
520 printf ("Wrong Image Type for %s command\n", cmdtp->name);
521 show_boot_progress (-5);
522 return NULL;
523 }
524 images->legacy_hdr_os = hdr;
525 images->legacy_hdr_valid = 1;
526
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100527 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100528 break;
529#if defined(CONFIG_FIT)
530 case IMAGE_FORMAT_FIT:
531 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100532 printf ("## Booting kernel from FIT Image at %08lx ...\n",
533 img_addr);
534
535 if (!fit_check_format (fit_hdr)) {
536 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100537 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100538 return NULL;
539 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100540 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100541
542 if (!fit_uname_kernel) {
543 /*
544 * no kernel image node unit name, try to get config
545 * node first. If config unit node name is NULL
546 * fit_conf_get_node() will try to find default config node
547 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100548 show_boot_progress (101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100549 conf_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100550 if (conf_noffset < 0) {
551 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100552 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100553 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100554
555 os_noffset = fit_conf_get_kernel_node (fit_hdr, conf_noffset);
556 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
557 } else {
558 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100559 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100560 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
561 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100562 if (os_noffset < 0) {
563 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100564 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100565 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100566
567 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
568
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100569 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100570 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
571 return NULL;
572
573 /* get kernel image data address and length */
574 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
575 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100576 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100577 return NULL;
578 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100579 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100580
581 *os_len = len;
582 *os_data = (ulong)data;
583 images->fit_hdr_os = fit_hdr;
584 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100585 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100586 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100587#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100588 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100589 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100590 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100591 return NULL;
592 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100593
Marian Balakowicz6986a382008-03-12 10:01:05 +0100594 debug (" kernel data at 0x%08lx, len = 0x%08lx (%d)\n",
595 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100596
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100597 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100598}
599
wdenk0d498392003-07-01 21:06:45 +0000600U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100601 bootm, CFG_MAXARGS, 1, do_bootm,
602 "bootm - boot application image from memory\n",
603 "[addr [arg ...]]\n - boot application image stored in memory\n"
604 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
605 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100606#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500607 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200608 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500609 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
610 "\tuse a '-' for the second argument. If you do not pass a third\n"
611 "\ta bd_info struct will be passed instead\n"
612#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100613#if defined(CONFIG_FIT)
614 "\t\nFor the new multi component uImage format (FIT) addresses\n"
615 "\tmust be extened to include component or configuration unit name:\n"
616 "\taddr:<subimg_uname> - direct component image specification\n"
617 "\taddr#<conf_uname> - configuration specification\n"
618 "\tUse iminfo command to get the list of existing component\n"
619 "\timages and configurations.\n"
620#endif
wdenk8bde7f72003-06-27 21:31:46 +0000621);
622
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100623/*******************************************************************/
624/* bootd - boot default image */
625/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500626#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000627int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
628{
629 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100630
wdenk47d1a6e2002-11-03 00:01:44 +0000631#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100632 if (run_command (getenv ("bootcmd"), flag) < 0)
633 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000634#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100635 if (parse_string_outer (getenv ("bootcmd"),
636 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
637 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000638#endif
639 return rcode;
640}
wdenk8bde7f72003-06-27 21:31:46 +0000641
wdenk0d498392003-07-01 21:06:45 +0000642U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100643 boot, 1, 1, do_bootd,
644 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000645 NULL
646);
647
648/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000649U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100650 bootd, 1, 1, do_bootd,
651 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000652 NULL
653);
654
wdenk47d1a6e2002-11-03 00:01:44 +0000655#endif
656
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100657
658/*******************************************************************/
659/* iminfo - print header info for a requested image */
660/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500661#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100662int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000663{
664 int arg;
665 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100666 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000667
668 if (argc < 2) {
669 return image_info (load_addr);
670 }
671
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100672 for (arg = 1; arg < argc; ++arg) {
673 addr = simple_strtoul (argv[arg], NULL, 16);
674 if (image_info (addr) != 0)
675 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000676 }
677 return rcode;
678}
679
680static int image_info (ulong addr)
681{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100682 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000683
684 printf ("\n## Checking Image at %08lx ...\n", addr);
685
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100686 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100687 case IMAGE_FORMAT_LEGACY:
688 puts (" Legacy image found\n");
689 if (!image_check_magic (hdr)) {
690 puts (" Bad Magic Number\n");
691 return 1;
692 }
693
694 if (!image_check_hcrc (hdr)) {
695 puts (" Bad Header Checksum\n");
696 return 1;
697 }
698
699 image_print_contents (hdr);
700
701 puts (" Verifying Checksum ... ");
702 if (!image_check_dcrc (hdr)) {
703 puts (" Bad Data CRC\n");
704 return 1;
705 }
706 puts ("OK\n");
707 return 0;
708#if defined(CONFIG_FIT)
709 case IMAGE_FORMAT_FIT:
710 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100711
712 if (!fit_check_format (hdr)) {
713 puts ("Bad FIT image format!\n");
714 return 1;
715 }
716
717 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100718 return 0;
719#endif
720 default:
721 puts ("Unknown image format!\n");
722 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000723 }
724
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100725 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000726}
wdenk0d498392003-07-01 21:06:45 +0000727
728U_BOOT_CMD(
729 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000730 "iminfo - print header information for application image\n",
731 "addr [addr ...]\n"
732 " - print header information for application image starting at\n"
733 " address 'addr' in memory; this includes verification of the\n"
734 " image contents (magic number, header and payload checksums)\n"
735);
Jon Loeliger90253172007-07-10 11:02:44 -0500736#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000737
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100738
739/*******************************************************************/
740/* imls - list all images found in flash */
741/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500742#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000743int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
744{
745 flash_info_t *info;
746 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100747 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000748
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100749 for (i = 0, info = &flash_info[0];
750 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
751
wdenk27b207f2003-07-24 23:38:38 +0000752 if (info->flash_id == FLASH_UNKNOWN)
753 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100754 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000755
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100756 hdr = (void *)info->start[j];
757 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000758 goto next_sector;
759
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100760 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100761 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100762 if (!image_check_hcrc (hdr))
763 goto next_sector;
764
765 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
766 image_print_contents (hdr);
767
768 puts (" Verifying Checksum ... ");
769 if (!image_check_dcrc (hdr)) {
770 puts ("Bad Data CRC\n");
771 } else {
772 puts ("OK\n");
773 }
774 break;
775#if defined(CONFIG_FIT)
776 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100777 if (!fit_check_format (hdr))
778 goto next_sector;
779
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100780 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100781 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100782 break;
783#endif
784 default:
wdenk27b207f2003-07-24 23:38:38 +0000785 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000786 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100787
wdenkbdccc4f2003-08-05 17:43:17 +0000788next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000789 }
wdenkbdccc4f2003-08-05 17:43:17 +0000790next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000791 }
792
793 return (0);
794}
795
796U_BOOT_CMD(
797 imls, 1, 1, do_imls,
798 "imls - list all images found in flash\n",
799 "\n"
800 " - Prints information about all images found at sector\n"
801 " boundaries in flash.\n"
802);
Jon Loeliger90253172007-07-10 11:02:44 -0500803#endif
wdenk27b207f2003-07-24 23:38:38 +0000804
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100805/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100806/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100807/*******************************************************************/
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100808#ifdef CONFIG_SILENT_CONSOLE
809static void fixup_silent_linux ()
810{
811 char buf[256], *start, *end;
812 char *cmdline = getenv ("bootargs");
813
814 /* Only fix cmdline when requested */
815 if (!(gd->flags & GD_FLG_SILENT))
816 return;
817
818 debug ("before silent fix-up: %s\n", cmdline);
819 if (cmdline) {
820 if ((start = strstr (cmdline, "console=")) != NULL) {
821 end = strchr (start, ' ');
822 strncpy (buf, cmdline, (start - cmdline + 8));
823 if (end)
824 strcpy (buf + (start - cmdline + 8), end);
825 else
826 buf[start - cmdline + 8] = '\0';
827 } else {
828 strcpy (buf, cmdline);
829 strcat (buf, " console=");
830 }
831 } else {
832 strcpy (buf, "console=");
833 }
834
835 setenv ("bootargs", buf);
836 debug ("after silent fix-up: %s\n", buf);
837}
838#endif /* CONFIG_SILENT_CONSOLE */
839
840
841/*******************************************************************/
842/* OS booting routines */
843/*******************************************************************/
844
845static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100846 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100847 bootm_headers_t *images)
wdenkd791b1d2003-04-20 14:04:18 +0000848{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100849 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100850 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100851 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100852 char *consdev;
853 char *cmdline;
854
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100855#if defined(CONFIG_FIT)
856 if (!images->legacy_hdr_valid) {
857 fit_unsupported_reset ("NetBSD");
858 do_reset (cmdtp, flag, argc, argv);
859 }
860#endif
861 hdr = images->legacy_hdr_os;
862
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100863 /*
864 * Booting a (NetBSD) kernel image
865 *
866 * This process is pretty similar to a standalone application:
867 * The (first part of an multi-) image must be a stage-2 loader,
868 * which in turn is responsible for loading & invoking the actual
869 * kernel. The only differences are the parameters being passed:
870 * besides the board info strucure, the loader expects a command
871 * line, the name of the console device, and (optionally) the
872 * address of the original image header.
873 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100874 os_hdr = NULL;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100875 if (image_check_type (hdr, IH_TYPE_MULTI)) {
876 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
877 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100878 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100879 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100880
881 consdev = "";
882#if defined (CONFIG_8xx_CONS_SMC1)
883 consdev = "smc1";
884#elif defined (CONFIG_8xx_CONS_SMC2)
885 consdev = "smc2";
886#elif defined (CONFIG_8xx_CONS_SCC2)
887 consdev = "scc2";
888#elif defined (CONFIG_8xx_CONS_SCC3)
889 consdev = "scc3";
890#endif
891
892 if (argc > 2) {
893 ulong len;
894 int i;
895
896 for (i = 2, len = 0; i < argc; i += 1)
897 len += strlen (argv[i]) + 1;
898 cmdline = malloc (len);
899
900 for (i = 2, len = 0; i < argc; i += 1) {
901 if (i > 2)
902 cmdline[len++] = ' ';
903 strcpy (&cmdline[len], argv[i]);
904 len += strlen (argv[i]);
905 }
906 } else if ((cmdline = getenv ("bootargs")) == NULL) {
907 cmdline = "";
908 }
909
910 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
911
912 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
913 (ulong)loader);
914
915 show_boot_progress (15);
916
917 /*
918 * NetBSD Stage-2 Loader Parameters:
919 * r3: ptr to board info data
920 * r4: image address
921 * r5: console device
922 * r6: boot args string
923 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100924 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100925}
926
927#ifdef CONFIG_LYNXKDI
928static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
929 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100930 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100931{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100932 image_header_t *hdr = images->legacy_hdr_os;
933
934#if defined(CONFIG_FIT)
935 if (!images->legacy_hdr_valid) {
936 fit_unsupported_reset ("Lynx");
937 do_reset (cmdtp, flag, argc, argv);
938 }
939#endif
940
941 lynxkdi_boot ((image_header_t *)hdr);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100942}
943#endif /* CONFIG_LYNXKDI */
944
945static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
946 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100947 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100948{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100949 image_header_t *hdr = images->legacy_hdr_os;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100950 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +0000951
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100952#if defined(CONFIG_FIT)
953 if (!images->legacy_hdr_valid) {
954 fit_unsupported_reset ("RTEMS");
955 do_reset (cmdtp, flag, argc, argv);
956 }
957#endif
958
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100959 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
wdenkd791b1d2003-04-20 14:04:18 +0000960
961 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
962 (ulong)entry_point);
963
Heiko Schocherfad63402007-07-13 09:54:17 +0200964 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +0000965
966 /*
967 * RTEMS Parameters:
968 * r3: ptr to board info data
969 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100970 (*entry_point)(gd->bd);
wdenkd791b1d2003-04-20 14:04:18 +0000971}
972
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500973#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100974static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
975 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100976 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000977{
wdenk47d1a6e2002-11-03 00:01:44 +0000978 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100979 image_header_t *hdr = images->legacy_hdr_os;
980
981#if defined(CONFIG_FIT)
982 if (hdr == NULL) {
983 fit_unsupported_reset ("VxWorks");
984 do_reset (cmdtp, flag, argc, argv);
985 }
986#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000987
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100988 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +0000989 setenv("loadaddr", str);
990 do_bootvx(cmdtp, 0, 0, NULL);
991}
992
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100993static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
994 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100995 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000996{
wdenk47d1a6e2002-11-03 00:01:44 +0000997 char *local_args[2];
998 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100999 image_header_t *hdr = images->legacy_hdr_os;
1000
1001#if defined(CONFIG_FIT)
1002 if (!images->legacy_hdr_valid) {
1003 fit_unsupported_reset ("QNX");
1004 do_reset (cmdtp, flag, argc, argv);
1005 }
1006#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001007
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001008 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001009 local_args[0] = argv[0];
1010 local_args[1] = str; /* and provide it via the arguments */
1011 do_bootelf(cmdtp, 0, 2, local_args);
1012}
Jon Loeliger90253172007-07-10 11:02:44 -05001013#endif
wdenk1f4bb372003-07-27 00:21:01 +00001014
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001015#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1016static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1017 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001018 bootm_headers_t *images)
wdenk1f4bb372003-07-27 00:21:01 +00001019{
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001020 ulong top;
1021 char *s, *cmdline;
1022 char **fwenv, **ss;
1023 int i, j, nxt, len, envno, envsz;
1024 bd_t *kbd;
1025 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001026 image_header_t *hdr = images->legacy_hdr_os;
1027
1028#if defined(CONFIG_FIT)
1029 if (!images->legacy_hdr_valid) {
1030 fit_unsupported_reset ("ARTOS");
1031 do_reset (cmdtp, flag, argc, argv);
1032 }
1033#endif
wdenk1f4bb372003-07-27 00:21:01 +00001034
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001035 /*
1036 * Booting an ARTOS kernel image + application
1037 */
1038
1039 /* this used to be the top of memory, but was wrong... */
1040#ifdef CONFIG_PPC
1041 /* get stack pointer */
1042 asm volatile ("mr %0,1" : "=r"(top) );
1043#endif
1044 debug ("## Current stack ends at 0x%08lX ", top);
1045
1046 top -= 2048; /* just to be sure */
1047 if (top > CFG_BOOTMAPSZ)
1048 top = CFG_BOOTMAPSZ;
1049 top &= ~0xF;
1050
1051 debug ("=> set upper limit to 0x%08lX\n", top);
1052
1053 /* first check the artos specific boot args, then the linux args*/
1054 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
1055 s = "";
1056
1057 /* get length of cmdline, and place it */
1058 len = strlen (s);
1059 top = (top - (len + 1)) & ~0xF;
1060 cmdline = (char *)top;
1061 debug ("## cmdline at 0x%08lX ", top);
1062 strcpy (cmdline, s);
1063
1064 /* copy bdinfo */
1065 top = (top - sizeof (bd_t)) & ~0xF;
1066 debug ("## bd at 0x%08lX ", top);
1067 kbd = (bd_t *)top;
1068 memcpy (kbd, gd->bd, sizeof (bd_t));
1069
1070 /* first find number of env entries, and their size */
1071 envno = 0;
1072 envsz = 0;
1073 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1074 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
1075 ;
1076 envno++;
1077 envsz += (nxt - i) + 1; /* plus trailing zero */
1078 }
1079 envno++; /* plus the terminating zero */
1080 debug ("## %u envvars total size %u ", envno, envsz);
1081
1082 top = (top - sizeof (char **) * envno) & ~0xF;
1083 fwenv = (char **)top;
1084 debug ("## fwenv at 0x%08lX ", top);
1085
1086 top = (top - envsz) & ~0xF;
1087 s = (char *)top;
1088 ss = fwenv;
1089
1090 /* now copy them */
1091 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1092 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
1093 ;
1094 *ss++ = s;
1095 for (j = i; j < nxt; ++j)
1096 *s++ = env_get_char (j);
1097 *s++ = '\0';
1098 }
1099 *ss++ = NULL; /* terminate */
1100
1101 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
1102 (*entry) (kbd, cmdline, fwenv, top);
1103}
1104#endif