blob: 2dffdfac883018fac9a6600a5199d30c096597ba [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
wdenk47d1a6e2002-11-03 00:01:44 +000025/*
26 * Boot support
27 */
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
wdenk47d1a6e2002-11-03 00:01:44 +000031#include <image.h>
32#include <malloc.h>
33#include <zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000034#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000035#include <environment.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060036#include <lmb.h>
wdenk47d1a6e2002-11-03 00:01:44 +000037#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000038
Stefan Roeseebb86c42008-07-30 09:59:51 +020039#if defined(CONFIG_CMD_USB)
Markus Klotzbücher3d71c812008-07-10 14:47:09 +020040#include <usb.h>
41#endif
42
wdenk47d1a6e2002-11-03 00:01:44 +000043#ifdef CFG_HUSH_PARSER
44#include <hush.h>
45#endif
46
Marian Balakowicz1ee11802008-01-08 18:17:10 +010047DECLARE_GLOBAL_DATA_PTR;
48
49extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
50#ifndef CFG_BOOTM_LEN
51#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
wdenk47d1a6e2002-11-03 00:01:44 +000052#endif
53
Marian Balakowicz321359f2008-01-08 18:11:43 +010054#ifdef CONFIG_BZIP2
55extern void bz_internal_error(int);
wdenk228f29a2002-12-08 09:53:23 +000056#endif
57
Jon Loeligerbaa26db2007-07-08 17:51:39 -050058#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000059static int image_info (unsigned long addr);
60#endif
wdenk27b207f2003-07-24 23:38:38 +000061
Jon Loeligerbaa26db2007-07-08 17:51:39 -050062#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000063#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020064extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000065static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
66#endif
67
Marian Balakowicz1ee11802008-01-08 18:17:10 +010068#ifdef CONFIG_SILENT_CONSOLE
69static void fixup_silent_linux (void);
wdenk2262cfe2002-11-18 00:14:45 +000070#endif
71
Marian Balakowicz6986a382008-03-12 10:01:05 +010072static image_header_t *image_get_kernel (ulong img_addr, int verify);
73#if defined(CONFIG_FIT)
74static int fit_check_kernel (const void *fit, int os_noffset, int verify);
75#endif
76
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010077static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010078 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010079extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000080
wdenk47d1a6e2002-11-03 00:01:44 +000081/*
82 * Continue booting an OS image; caller already has:
83 * - copied image header to global variable `header'
84 * - checked header magic number, checksums (both header & image),
85 * - verified image architecture (PPC) and type (KERNEL or MULTI),
86 * - loaded (first part of) image to header load address,
87 * - disabled interrupts.
88 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +010089typedef void boot_os_fn (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010090 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010091 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +000092
Marian Balakowicz1ee11802008-01-08 18:17:10 +010093extern boot_os_fn do_bootm_linux;
94static boot_os_fn do_bootm_netbsd;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010095#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010096static boot_os_fn do_bootm_lynxkdi;
97extern void lynxkdi_boot (image_header_t *);
wdenk8bde7f72003-06-27 21:31:46 +000098#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +010099static boot_os_fn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500100#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100101static boot_os_fn do_bootm_vxworks;
102static boot_os_fn do_bootm_qnxelf;
103int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
104int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -0500105#endif
wdenk7f70e852003-05-20 14:25:27 +0000106#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100107static boot_os_fn do_bootm_artos;
wdenk1f4bb372003-07-27 00:21:01 +0000108#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000109
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100110ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100111static bootm_headers_t images; /* pointers to os/initrd/fdt images */
Stefan Roese15940c92006-03-13 11:16:36 +0100112
Kumar Galae822d7f2008-02-27 21:51:49 -0600113void __board_lmb_reserve(struct lmb *lmb)
114{
115 /* please define platform specific board_lmb_reserve() */
116}
117void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
wdenk47d1a6e2002-11-03 00:01:44 +0000118
wdenk47d1a6e2002-11-03 00:01:44 +0000119
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100120/*******************************************************************/
121/* bootm - boot application image from image in memory */
122/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000123int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
124{
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100125 ulong iflag;
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100126 const char *type_name;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100127 uint unc_len = CFG_BOOTM_LEN;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100128 uint8_t comp, type, os;
wdenk47d1a6e2002-11-03 00:01:44 +0000129
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100130 void *os_hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100131 ulong os_data, os_len;
Marian Balakowicz75824382008-01-31 13:20:06 +0100132 ulong image_start, image_end;
133 ulong load_start, load_end;
Becky Bruce391fd932008-06-09 20:37:18 -0500134 ulong mem_start;
135 phys_size_t mem_size;
wdenk47d1a6e2002-11-03 00:01:44 +0000136
Kumar Gala4ed65522008-02-27 21:51:47 -0600137 struct lmb lmb;
wdenk47d1a6e2002-11-03 00:01:44 +0000138
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100139 memset ((void *)&images, 0, sizeof (images));
Bartlomiej Siekaedbed242008-04-18 12:39:23 +0200140 images.verify = getenv_yesno ("verify");
Kumar Gala4ed65522008-02-27 21:51:47 -0600141 images.lmb = &lmb;
wdenk47d1a6e2002-11-03 00:01:44 +0000142
Kumar Gala4ed65522008-02-27 21:51:47 -0600143 lmb_init(&lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000144
Kumar Galad3f2fa02008-02-27 21:51:50 -0600145 mem_start = getenv_bootm_low();
146 mem_size = getenv_bootm_size();
wdenk47d1a6e2002-11-03 00:01:44 +0000147
Becky Bruce391fd932008-06-09 20:37:18 -0500148 lmb_add(&lmb, (phys_addr_t)mem_start, mem_size);
wdenk47d1a6e2002-11-03 00:01:44 +0000149
Kumar Galae822d7f2008-02-27 21:51:49 -0600150 board_lmb_reserve(&lmb);
wdenk47d1a6e2002-11-03 00:01:44 +0000151
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100152 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100153 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100154 &images, &os_data, &os_len);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100155 if (os_len == 0) {
156 puts ("ERROR: can't get kernel image!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000157 return 1;
158 }
wdenk47d1a6e2002-11-03 00:01:44 +0000159
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100160 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100161 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100162 case IMAGE_FORMAT_LEGACY:
163 type = image_get_type (os_hdr);
164 comp = image_get_comp (os_hdr);
165 os = image_get_os (os_hdr);
Wolfgang Denkbccae902005-10-06 01:50:50 +0200166
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100167 image_end = image_get_image_end (os_hdr);
168 load_start = image_get_load (os_hdr);
169 break;
170#if defined(CONFIG_FIT)
171 case IMAGE_FORMAT_FIT:
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100172 if (fit_image_get_type (images.fit_hdr_os,
173 images.fit_noffset_os, &type)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100174 puts ("Can't get image type!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100175 show_boot_progress (-109);
wdenk47d1a6e2002-11-03 00:01:44 +0000176 return 1;
177 }
wdenk47d1a6e2002-11-03 00:01:44 +0000178
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100179 if (fit_image_get_comp (images.fit_hdr_os,
180 images.fit_noffset_os, &comp)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100181 puts ("Can't get image compression!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100182 show_boot_progress (-110);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100183 return 1;
184 }
wdenk47d1a6e2002-11-03 00:01:44 +0000185
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100186 if (fit_image_get_os (images.fit_hdr_os,
187 images.fit_noffset_os, &os)) {
Marian Balakowicz6986a382008-03-12 10:01:05 +0100188 puts ("Can't get image OS!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100189 show_boot_progress (-111);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100190 return 1;
191 }
wdenk47d1a6e2002-11-03 00:01:44 +0000192
Marian Balakowicz6986a382008-03-12 10:01:05 +0100193 image_end = fit_get_end (images.fit_hdr_os);
194
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100195 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
Marian Balakowicz6986a382008-03-12 10:01:05 +0100196 &load_start)) {
197 puts ("Can't get image load address!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100198 show_boot_progress (-112);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100199 return 1;
wdenkb13fb012003-10-30 21:49:38 +0000200 }
201 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100202#endif
203 default:
204 puts ("ERROR: unknown image format type!\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000205 return 1;
206 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100207
208 image_start = (ulong)os_hdr;
209 load_end = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100210 type_name = genimg_get_type_name (type);
wdenk47d1a6e2002-11-03 00:01:44 +0000211
212 /*
213 * We have reached the point of no return: we are going to
214 * overwrite all exception vector code, so we cannot easily
215 * recover from any failures any more...
216 */
wdenk47d1a6e2002-11-03 00:01:44 +0000217 iflag = disable_interrupts();
218
Stefan Roeseebb86c42008-07-30 09:59:51 +0200219#if defined(CONFIG_CMD_USB)
Wolfgang Denk699f0512008-07-15 22:22:44 +0200220 /*
221 * turn off USB to prevent the host controller from writing to the
222 * SDRAM while Linux is booting. This could happen (at least for OHCI
223 * controller), because the HCCA (Host Controller Communication Area)
224 * lies within the SDRAM and the host controller writes continously to
225 * this area (as busmaster!). The HccaFrameNumber is for example
226 * updated every 1 ms within the HCCA structure in SDRAM! For more
227 * details see the OpenHCI specification.
228 */
Markus Klotzbücher3d71c812008-07-10 14:47:09 +0200229 usb_stop();
230#endif
231
232
wdenkc7de8292002-11-19 11:04:11 +0000233#ifdef CONFIG_AMIGAONEG3SE
234 /*
wdenk8bde7f72003-06-27 21:31:46 +0000235 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000236 * bios emulation, so turn them off again
237 */
238 icache_disable();
239 invalidate_l1_instruction_cache();
240 flush_data_cache();
241 dcache_disable();
242#endif
243
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100244 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000245 case IH_COMP_NONE:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100246 if (load_start == (ulong)os_hdr) {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100247 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000248 } else {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100249 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000250
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100251 memmove_wd ((void *)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100252 (void *)os_data, os_len, CHUNKSZ);
wdenk47d1a6e2002-11-03 00:01:44 +0000253 }
Guennadi Liakhovetski2e752be2008-07-31 12:35:04 +0200254 load_end = load_start + os_len;
255 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000256 break;
257 case IH_COMP_GZIP:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100258 printf (" Uncompressing %s ... ", type_name);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100259 if (gunzip ((void *)load_start, unc_len,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100260 (uchar *)os_data, &os_len) != 0) {
Marian Balakowicz2682ce82008-03-12 10:33:01 +0100261 puts ("GUNZIP: uncompress or overwrite error "
262 "- must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200263 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000264 do_reset (cmdtp, flag, argc, argv);
265 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100266
267 load_end = load_start + os_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000268 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000269#ifdef CONFIG_BZIP2
270 case IH_COMP_BZIP2:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100271 printf (" Uncompressing %s ... ", type_name);
wdenk5653fc32004-02-08 22:55:38 +0000272 /*
273 * If we've got less than 4 MB of malloc() space,
274 * use slower decompression algorithm which requires
275 * at most 2300 KB of memory.
276 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100277 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100278 &unc_len, (char *)os_data, os_len,
279 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000280 if (i != BZ_OK) {
Marian Balakowicz2682ce82008-03-12 10:33:01 +0100281 printf ("BUNZIP2: uncompress or overwrite error %d "
282 "- must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200283 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000284 do_reset (cmdtp, flag, argc, argv);
285 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100286
287 load_end = load_start + unc_len;
wdenkc29fdfc2003-08-29 20:57:53 +0000288 break;
289#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000290 default:
291 if (iflag)
292 enable_interrupts();
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100293 printf ("Unimplemented compression type %d\n", comp);
Heiko Schocherfad63402007-07-13 09:54:17 +0200294 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000295 return 1;
296 }
wdenk4b9206e2004-03-23 22:14:11 +0000297 puts ("OK\n");
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100298 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
Heiko Schocherfad63402007-07-13 09:54:17 +0200299 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000300
Marian Balakowicz75824382008-01-31 13:20:06 +0100301 if ((load_start < image_end) && (load_end > image_start)) {
302 debug ("image_start = 0x%lX, image_end = 0x%lx\n", image_start, image_end);
303 debug ("load_start = 0x%lx, load_end = 0x%lx\n", load_start, load_end);
wdenk47d1a6e2002-11-03 00:01:44 +0000304
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200305 if (images.legacy_hdr_valid) {
306 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
307 puts ("WARNING: legacy format multi component "
308 "image overwritten\n");
309 } else {
310 puts ("ERROR: new format image overwritten - "
311 "must RESET the board to recover\n");
312 show_boot_progress (-113);
313 do_reset (cmdtp, flag, argc, argv);
314 }
wdenk47d1a6e2002-11-03 00:01:44 +0000315 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100316
Heiko Schocherfad63402007-07-13 09:54:17 +0200317 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000318
Kumar Gala4ed65522008-02-27 21:51:47 -0600319 lmb_reserve(&lmb, load_start, (load_end - load_start));
320
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100321 switch (os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000322 default: /* handled by (original) Linux case */
323 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000324#ifdef CONFIG_SILENT_CONSOLE
325 fixup_silent_linux();
326#endif
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100327 do_bootm_linux (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000328 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100329
wdenk47d1a6e2002-11-03 00:01:44 +0000330 case IH_OS_NETBSD:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100331 do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000332 break;
wdenk8bde7f72003-06-27 21:31:46 +0000333
wdenk1f4bb372003-07-27 00:21:01 +0000334#ifdef CONFIG_LYNXKDI
335 case IH_OS_LYNXOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100336 do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000337 break;
338#endif
339
wdenkd791b1d2003-04-20 14:04:18 +0000340 case IH_OS_RTEMS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100341 do_bootm_rtems (cmdtp, flag, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000342 break;
wdenk8bde7f72003-06-27 21:31:46 +0000343
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500344#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000345 case IH_OS_VXWORKS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100346 do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000347 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100348
wdenk47d1a6e2002-11-03 00:01:44 +0000349 case IH_OS_QNX:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100350 do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000351 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500352#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100353
wdenk7f70e852003-05-20 14:25:27 +0000354#ifdef CONFIG_ARTOS
355 case IH_OS_ARTOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100356 do_bootm_artos (cmdtp, flag, argc, argv, &images);
wdenk7f70e852003-05-20 14:25:27 +0000357 break;
358#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000359 }
360
Heiko Schocherfad63402007-07-13 09:54:17 +0200361 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000362#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000363 puts ("\n## Control returned to monitor - resetting...\n");
Marian Balakowicza44a2692008-03-12 10:14:57 +0100364 if (images.autostart)
365 do_reset (cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000366#endif
Marian Balakowicza44a2692008-03-12 10:14:57 +0100367 if (!images.autostart && iflag)
368 enable_interrupts();
369
wdenk47d1a6e2002-11-03 00:01:44 +0000370 return 1;
371}
372
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100373/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100374 * image_get_kernel - verify legacy format kernel image
375 * @img_addr: in RAM address of the legacy format image to be verified
376 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100377 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100378 * image_get_kernel() verifies legacy image integrity and returns pointer to
379 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100380 *
381 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100382 * pointer to a legacy image header if valid image was found
383 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100384 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100385static image_header_t *image_get_kernel (ulong img_addr, int verify)
386{
387 image_header_t *hdr = (image_header_t *)img_addr;
388
389 if (!image_check_magic(hdr)) {
390 puts ("Bad Magic Number\n");
391 show_boot_progress (-1);
392 return NULL;
393 }
394 show_boot_progress (2);
395
396 if (!image_check_hcrc (hdr)) {
397 puts ("Bad Header Checksum\n");
398 show_boot_progress (-2);
399 return NULL;
400 }
401
402 show_boot_progress (3);
403 image_print_contents (hdr);
404
405 if (verify) {
406 puts (" Verifying Checksum ... ");
407 if (!image_check_dcrc (hdr)) {
408 printf ("Bad Data CRC\n");
409 show_boot_progress (-3);
410 return NULL;
411 }
412 puts ("OK\n");
413 }
414 show_boot_progress (4);
415
416 if (!image_check_target_arch (hdr)) {
417 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
418 show_boot_progress (-4);
419 return NULL;
420 }
421 return hdr;
422}
423
424/**
Marian Balakowicz6986a382008-03-12 10:01:05 +0100425 * fit_check_kernel - verify FIT format kernel subimage
426 * @fit_hdr: pointer to the FIT image header
427 * os_noffset: kernel subimage node offset within FIT image
428 * @verify: data CRC verification flag
429 *
430 * fit_check_kernel() verifies integrity of the kernel subimage and from
431 * specified FIT image.
432 *
433 * returns:
434 * 1, on success
435 * 0, on failure
436 */
437#if defined (CONFIG_FIT)
438static int fit_check_kernel (const void *fit, int os_noffset, int verify)
439{
440 fit_image_print (fit, os_noffset, " ");
441
442 if (verify) {
443 puts (" Verifying Hash Integrity ... ");
444 if (!fit_image_check_hashes (fit, os_noffset)) {
445 puts ("Bad Data Hash\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100446 show_boot_progress (-104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100447 return 0;
448 }
449 puts ("OK\n");
450 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100451 show_boot_progress (105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100452
453 if (!fit_image_check_target_arch (fit, os_noffset)) {
454 puts ("Unsupported Architecture\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100455 show_boot_progress (-105);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100456 return 0;
457 }
458
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100459 show_boot_progress (106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100460 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
461 puts ("Not a kernel image\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100462 show_boot_progress (-106);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100463 return 0;
464 }
465
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100466 show_boot_progress (107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100467 return 1;
468}
469#endif /* CONFIG_FIT */
470
471/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100472 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100473 * @os_data: pointer to a ulong variable, will hold os data start address
474 * @os_len: pointer to a ulong variable, will hold os data length
475 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100476 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100477 * and locates kernel data.
478 *
479 * returns:
480 * pointer to image header if valid image was found, plus kernel start
481 * address and length, otherwise NULL
482 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100483static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100484 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100485{
486 image_header_t *hdr;
487 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100488#if defined(CONFIG_FIT)
489 void *fit_hdr;
490 const char *fit_uname_config = NULL;
491 const char *fit_uname_kernel = NULL;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100492 const void *data;
493 size_t len;
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100494 int cfg_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100495 int os_noffset;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100496#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100497
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100498 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100499 if (argc < 2) {
500 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100501 debug ("* kernel: default image load address = 0x%08lx\n",
502 load_addr);
503#if defined(CONFIG_FIT)
504 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
505 &fit_uname_config)) {
506 debug ("* kernel: config '%s' from image at 0x%08lx\n",
507 fit_uname_config, img_addr);
508 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
509 &fit_uname_kernel)) {
510 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
511 fit_uname_kernel, img_addr);
512#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100513 } else {
514 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100515 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100516 }
517
518 show_boot_progress (1);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100519
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100520 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100521 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100522
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100523 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz6986a382008-03-12 10:01:05 +0100524 *os_data = *os_len = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100525 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100526 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz6986a382008-03-12 10:01:05 +0100527 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
528 img_addr);
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100529 hdr = image_get_kernel (img_addr, images->verify);
530 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100531 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100532 show_boot_progress (5);
533
Marian Balakowicz6986a382008-03-12 10:01:05 +0100534 /* get os_data and os_len */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100535 switch (image_get_type (hdr)) {
536 case IH_TYPE_KERNEL:
537 *os_data = image_get_data (hdr);
538 *os_len = image_get_data_size (hdr);
539 break;
540 case IH_TYPE_MULTI:
541 image_multi_getimg (hdr, 0, os_data, os_len);
542 break;
543 default:
544 printf ("Wrong Image Type for %s command\n", cmdtp->name);
545 show_boot_progress (-5);
546 return NULL;
547 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100548
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200549 /*
550 * copy image header to allow for image overwrites during kernel
551 * decompression.
552 */
553 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
554
555 /* save pointer to image header */
556 images->legacy_hdr_os = hdr;
557
558 images->legacy_hdr_valid = 1;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100559 show_boot_progress (6);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100560 break;
561#if defined(CONFIG_FIT)
562 case IMAGE_FORMAT_FIT:
563 fit_hdr = (void *)img_addr;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100564 printf ("## Booting kernel from FIT Image at %08lx ...\n",
565 img_addr);
566
567 if (!fit_check_format (fit_hdr)) {
568 puts ("Bad FIT kernel image format!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100569 show_boot_progress (-100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100570 return NULL;
571 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100572 show_boot_progress (100);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100573
574 if (!fit_uname_kernel) {
575 /*
576 * no kernel image node unit name, try to get config
577 * node first. If config unit node name is NULL
578 * fit_conf_get_node() will try to find default config node
579 */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100580 show_boot_progress (101);
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100581 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
582 if (cfg_noffset < 0) {
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100583 show_boot_progress (-101);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100584 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100585 }
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100586 /* save configuration uname provided in the first
587 * bootm argument
588 */
589 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
590 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
591 show_boot_progress (103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100592
Marian Balakowiczf773bea2008-03-12 10:35:46 +0100593 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100594 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
595 } else {
596 /* get kernel component image node offset */
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100597 show_boot_progress (102);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100598 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
599 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100600 if (os_noffset < 0) {
601 show_boot_progress (-103);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100602 return NULL;
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100603 }
Marian Balakowicz6986a382008-03-12 10:01:05 +0100604
605 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
606
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100607 show_boot_progress (104);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100608 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
609 return NULL;
610
611 /* get kernel image data address and length */
612 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
613 puts ("Could not find kernel subimage data!\n");
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100614 show_boot_progress (-107);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100615 return NULL;
616 }
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100617 show_boot_progress (108);
Marian Balakowicz6986a382008-03-12 10:01:05 +0100618
619 *os_len = len;
620 *os_data = (ulong)data;
621 images->fit_hdr_os = fit_hdr;
622 images->fit_uname_os = fit_uname_kernel;
Marian Balakowicz3dfe1102008-03-12 10:32:59 +0100623 images->fit_noffset_os = os_noffset;
Marian Balakowicz6986a382008-03-12 10:01:05 +0100624 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100625#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100626 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100627 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz1372cce2008-03-12 10:33:01 +0100628 show_boot_progress (-108);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100629 return NULL;
630 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100631
Wolfgang Denk06c53be2008-07-10 13:16:09 +0200632 debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n",
Marian Balakowicz6986a382008-03-12 10:01:05 +0100633 *os_data, *os_len, *os_len);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100634
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100635 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100636}
637
wdenk0d498392003-07-01 21:06:45 +0000638U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100639 bootm, CFG_MAXARGS, 1, do_bootm,
640 "bootm - boot application image from memory\n",
641 "[addr [arg ...]]\n - boot application image stored in memory\n"
642 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
643 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100644#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500645 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200646 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500647 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
648 "\tuse a '-' for the second argument. If you do not pass a third\n"
649 "\ta bd_info struct will be passed instead\n"
650#endif
Marian Balakowicz6986a382008-03-12 10:01:05 +0100651#if defined(CONFIG_FIT)
652 "\t\nFor the new multi component uImage format (FIT) addresses\n"
653 "\tmust be extened to include component or configuration unit name:\n"
654 "\taddr:<subimg_uname> - direct component image specification\n"
655 "\taddr#<conf_uname> - configuration specification\n"
656 "\tUse iminfo command to get the list of existing component\n"
657 "\timages and configurations.\n"
658#endif
wdenk8bde7f72003-06-27 21:31:46 +0000659);
660
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100661/*******************************************************************/
662/* bootd - boot default image */
663/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500664#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000665int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
666{
667 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100668
wdenk47d1a6e2002-11-03 00:01:44 +0000669#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100670 if (run_command (getenv ("bootcmd"), flag) < 0)
671 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000672#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100673 if (parse_string_outer (getenv ("bootcmd"),
674 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
675 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000676#endif
677 return rcode;
678}
wdenk8bde7f72003-06-27 21:31:46 +0000679
wdenk0d498392003-07-01 21:06:45 +0000680U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100681 boot, 1, 1, do_bootd,
682 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000683 NULL
684);
685
686/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000687U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100688 bootd, 1, 1, do_bootd,
689 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000690 NULL
691);
692
wdenk47d1a6e2002-11-03 00:01:44 +0000693#endif
694
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100695
696/*******************************************************************/
697/* iminfo - print header info for a requested image */
698/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500699#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100700int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000701{
702 int arg;
703 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100704 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000705
706 if (argc < 2) {
707 return image_info (load_addr);
708 }
709
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100710 for (arg = 1; arg < argc; ++arg) {
711 addr = simple_strtoul (argv[arg], NULL, 16);
712 if (image_info (addr) != 0)
713 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000714 }
715 return rcode;
716}
717
718static int image_info (ulong addr)
719{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100720 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000721
722 printf ("\n## Checking Image at %08lx ...\n", addr);
723
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100724 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100725 case IMAGE_FORMAT_LEGACY:
726 puts (" Legacy image found\n");
727 if (!image_check_magic (hdr)) {
728 puts (" Bad Magic Number\n");
729 return 1;
730 }
731
732 if (!image_check_hcrc (hdr)) {
733 puts (" Bad Header Checksum\n");
734 return 1;
735 }
736
737 image_print_contents (hdr);
738
739 puts (" Verifying Checksum ... ");
740 if (!image_check_dcrc (hdr)) {
741 puts (" Bad Data CRC\n");
742 return 1;
743 }
744 puts ("OK\n");
745 return 0;
746#if defined(CONFIG_FIT)
747 case IMAGE_FORMAT_FIT:
748 puts (" FIT image found\n");
Marian Balakowicze32fea62008-03-11 12:35:20 +0100749
750 if (!fit_check_format (hdr)) {
751 puts ("Bad FIT image format!\n");
752 return 1;
753 }
754
755 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100756 return 0;
757#endif
758 default:
759 puts ("Unknown image format!\n");
760 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000761 }
762
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100763 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000764}
wdenk0d498392003-07-01 21:06:45 +0000765
766U_BOOT_CMD(
767 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000768 "iminfo - print header information for application image\n",
769 "addr [addr ...]\n"
770 " - print header information for application image starting at\n"
771 " address 'addr' in memory; this includes verification of the\n"
772 " image contents (magic number, header and payload checksums)\n"
773);
Jon Loeliger90253172007-07-10 11:02:44 -0500774#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000775
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100776
777/*******************************************************************/
778/* imls - list all images found in flash */
779/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500780#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000781int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
782{
783 flash_info_t *info;
784 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100785 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000786
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100787 for (i = 0, info = &flash_info[0];
788 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
789
wdenk27b207f2003-07-24 23:38:38 +0000790 if (info->flash_id == FLASH_UNKNOWN)
791 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100792 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000793
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100794 hdr = (void *)info->start[j];
795 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000796 goto next_sector;
797
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100798 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100799 case IMAGE_FORMAT_LEGACY:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100800 if (!image_check_hcrc (hdr))
801 goto next_sector;
802
803 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
804 image_print_contents (hdr);
805
806 puts (" Verifying Checksum ... ");
807 if (!image_check_dcrc (hdr)) {
808 puts ("Bad Data CRC\n");
809 } else {
810 puts ("OK\n");
811 }
812 break;
813#if defined(CONFIG_FIT)
814 case IMAGE_FORMAT_FIT:
Marian Balakowicze32fea62008-03-11 12:35:20 +0100815 if (!fit_check_format (hdr))
816 goto next_sector;
817
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100818 printf ("FIT Image at %08lX:\n", (ulong)hdr);
Marian Balakowicze32fea62008-03-11 12:35:20 +0100819 fit_print_contents (hdr);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100820 break;
821#endif
822 default:
wdenk27b207f2003-07-24 23:38:38 +0000823 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000824 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100825
wdenkbdccc4f2003-08-05 17:43:17 +0000826next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000827 }
wdenkbdccc4f2003-08-05 17:43:17 +0000828next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000829 }
830
831 return (0);
832}
833
834U_BOOT_CMD(
835 imls, 1, 1, do_imls,
836 "imls - list all images found in flash\n",
837 "\n"
838 " - Prints information about all images found at sector\n"
839 " boundaries in flash.\n"
840);
Jon Loeliger90253172007-07-10 11:02:44 -0500841#endif
wdenk27b207f2003-07-24 23:38:38 +0000842
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100843/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100844/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100845/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000846#ifdef CONFIG_SILENT_CONSOLE
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100847static void fixup_silent_linux ()
wdenk47d1a6e2002-11-03 00:01:44 +0000848{
849 char buf[256], *start, *end;
850 char *cmdline = getenv ("bootargs");
851
852 /* Only fix cmdline when requested */
853 if (!(gd->flags & GD_FLG_SILENT))
854 return;
855
856 debug ("before silent fix-up: %s\n", cmdline);
857 if (cmdline) {
858 if ((start = strstr (cmdline, "console=")) != NULL) {
859 end = strchr (start, ' ');
860 strncpy (buf, cmdline, (start - cmdline + 8));
861 if (end)
862 strcpy (buf + (start - cmdline + 8), end);
863 else
864 buf[start - cmdline + 8] = '\0';
865 } else {
866 strcpy (buf, cmdline);
867 strcat (buf, " console=");
868 }
869 } else {
870 strcpy (buf, "console=");
871 }
872
873 setenv ("bootargs", buf);
874 debug ("after silent fix-up: %s\n", buf);
875}
876#endif /* CONFIG_SILENT_CONSOLE */
877
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100878
879/*******************************************************************/
880/* OS booting routines */
881/*******************************************************************/
882
883static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100884 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100885 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000886{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100887 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100888 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100889 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100890 char *consdev;
891 char *cmdline;
wdenk47d1a6e2002-11-03 00:01:44 +0000892
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100893#if defined(CONFIG_FIT)
894 if (!images->legacy_hdr_valid) {
895 fit_unsupported_reset ("NetBSD");
896 do_reset (cmdtp, flag, argc, argv);
wdenk47d1a6e2002-11-03 00:01:44 +0000897 }
898#endif
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100899 hdr = images->legacy_hdr_os;
wdenk47d1a6e2002-11-03 00:01:44 +0000900
901 /*
902 * Booting a (NetBSD) kernel image
903 *
904 * This process is pretty similar to a standalone application:
905 * The (first part of an multi-) image must be a stage-2 loader,
906 * which in turn is responsible for loading & invoking the actual
907 * kernel. The only differences are the parameters being passed:
908 * besides the board info strucure, the loader expects a command
909 * line, the name of the console device, and (optionally) the
910 * address of the original image header.
911 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100912 os_hdr = NULL;
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200913 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100914 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
915 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100916 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100917 }
wdenk47d1a6e2002-11-03 00:01:44 +0000918
919 consdev = "";
920#if defined (CONFIG_8xx_CONS_SMC1)
921 consdev = "smc1";
922#elif defined (CONFIG_8xx_CONS_SMC2)
923 consdev = "smc2";
924#elif defined (CONFIG_8xx_CONS_SCC2)
925 consdev = "scc2";
926#elif defined (CONFIG_8xx_CONS_SCC3)
927 consdev = "scc3";
928#endif
929
930 if (argc > 2) {
931 ulong len;
932 int i;
933
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100934 for (i = 2, len = 0; i < argc; i += 1)
wdenk47d1a6e2002-11-03 00:01:44 +0000935 len += strlen (argv[i]) + 1;
936 cmdline = malloc (len);
937
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100938 for (i = 2, len = 0; i < argc; i += 1) {
wdenk47d1a6e2002-11-03 00:01:44 +0000939 if (i > 2)
940 cmdline[len++] = ' ';
941 strcpy (&cmdline[len], argv[i]);
942 len += strlen (argv[i]);
943 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100944 } else if ((cmdline = getenv ("bootargs")) == NULL) {
wdenk47d1a6e2002-11-03 00:01:44 +0000945 cmdline = "";
946 }
947
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100948 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
wdenk47d1a6e2002-11-03 00:01:44 +0000949
950 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
951 (ulong)loader);
952
953 show_boot_progress (15);
954
955 /*
956 * NetBSD Stage-2 Loader Parameters:
957 * r3: ptr to board info data
958 * r4: image address
959 * r5: console device
960 * r6: boot args string
961 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100962 (*loader) (gd->bd, os_hdr, consdev, cmdline);
wdenk47d1a6e2002-11-03 00:01:44 +0000963}
964
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100965#ifdef CONFIG_LYNXKDI
966static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
967 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100968 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100969{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200970 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100971
972#if defined(CONFIG_FIT)
973 if (!images->legacy_hdr_valid) {
974 fit_unsupported_reset ("Lynx");
975 do_reset (cmdtp, flag, argc, argv);
976 }
977#endif
978
979 lynxkdi_boot ((image_header_t *)hdr);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100980}
981#endif /* CONFIG_LYNXKDI */
982
983static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
984 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100985 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100986{
Marian Balakowiczcb1c4892008-04-11 11:07:49 +0200987 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100988 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +0000989
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100990#if defined(CONFIG_FIT)
991 if (!images->legacy_hdr_valid) {
992 fit_unsupported_reset ("RTEMS");
993 do_reset (cmdtp, flag, argc, argv);
994 }
995#endif
996
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100997 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
wdenkd791b1d2003-04-20 14:04:18 +0000998
999 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
1000 (ulong)entry_point);
1001
Heiko Schocherfad63402007-07-13 09:54:17 +02001002 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +00001003
1004 /*
1005 * RTEMS Parameters:
1006 * r3: ptr to board info data
1007 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001008 (*entry_point)(gd->bd);
wdenkd791b1d2003-04-20 14:04:18 +00001009}
1010
Jon Loeligerbaa26db2007-07-08 17:51:39 -05001011#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001012static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
1013 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001014 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001015{
wdenk47d1a6e2002-11-03 00:01:44 +00001016 char str[80];
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001017 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001018
1019#if defined(CONFIG_FIT)
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001020 if (!images->legacy_hdr_valid) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001021 fit_unsupported_reset ("VxWorks");
1022 do_reset (cmdtp, flag, argc, argv);
1023 }
1024#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001025
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001026 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001027 setenv("loadaddr", str);
1028 do_bootvx(cmdtp, 0, 0, NULL);
1029}
1030
Marian Balakowiczf13e7b22008-01-08 18:12:17 +01001031static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
1032 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001033 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001034{
wdenk47d1a6e2002-11-03 00:01:44 +00001035 char *local_args[2];
1036 char str[16];
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001037 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001038
1039#if defined(CONFIG_FIT)
1040 if (!images->legacy_hdr_valid) {
1041 fit_unsupported_reset ("QNX");
1042 do_reset (cmdtp, flag, argc, argv);
1043 }
1044#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001045
Marian Balakowiczb97a2a02008-01-08 18:14:09 +01001046 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +00001047 local_args[0] = argv[0];
1048 local_args[1] = str; /* and provide it via the arguments */
1049 do_bootelf(cmdtp, 0, 2, local_args);
1050}
Jon Loeliger90253172007-07-10 11:02:44 -05001051#endif
wdenk1f4bb372003-07-27 00:21:01 +00001052
wdenk47d1a6e2002-11-03 00:01:44 +00001053#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001054static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1055 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +01001056 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +00001057{
1058 ulong top;
1059 char *s, *cmdline;
1060 char **fwenv, **ss;
1061 int i, j, nxt, len, envno, envsz;
1062 bd_t *kbd;
1063 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
Marian Balakowiczcb1c4892008-04-11 11:07:49 +02001064 image_header_t *hdr = &images->legacy_hdr_os_copy;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +01001065
1066#if defined(CONFIG_FIT)
1067 if (!images->legacy_hdr_valid) {
1068 fit_unsupported_reset ("ARTOS");
1069 do_reset (cmdtp, flag, argc, argv);
1070 }
1071#endif
wdenk47d1a6e2002-11-03 00:01:44 +00001072
1073 /*
1074 * Booting an ARTOS kernel image + application
1075 */
1076
1077 /* this used to be the top of memory, but was wrong... */
1078#ifdef CONFIG_PPC
1079 /* get stack pointer */
1080 asm volatile ("mr %0,1" : "=r"(top) );
1081#endif
1082 debug ("## Current stack ends at 0x%08lX ", top);
1083
1084 top -= 2048; /* just to be sure */
1085 if (top > CFG_BOOTMAPSZ)
1086 top = CFG_BOOTMAPSZ;
1087 top &= ~0xF;
1088
1089 debug ("=> set upper limit to 0x%08lX\n", top);
1090
1091 /* first check the artos specific boot args, then the linux args*/
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001092 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
wdenk47d1a6e2002-11-03 00:01:44 +00001093 s = "";
1094
1095 /* get length of cmdline, and place it */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001096 len = strlen (s);
wdenk47d1a6e2002-11-03 00:01:44 +00001097 top = (top - (len + 1)) & ~0xF;
1098 cmdline = (char *)top;
1099 debug ("## cmdline at 0x%08lX ", top);
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001100 strcpy (cmdline, s);
wdenk47d1a6e2002-11-03 00:01:44 +00001101
1102 /* copy bdinfo */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001103 top = (top - sizeof (bd_t)) & ~0xF;
wdenk47d1a6e2002-11-03 00:01:44 +00001104 debug ("## bd at 0x%08lX ", top);
1105 kbd = (bd_t *)top;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001106 memcpy (kbd, gd->bd, sizeof (bd_t));
wdenk47d1a6e2002-11-03 00:01:44 +00001107
1108 /* first find number of env entries, and their size */
1109 envno = 0;
1110 envsz = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001111 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1112 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
wdenk47d1a6e2002-11-03 00:01:44 +00001113 ;
1114 envno++;
1115 envsz += (nxt - i) + 1; /* plus trailing zero */
1116 }
1117 envno++; /* plus the terminating zero */
1118 debug ("## %u envvars total size %u ", envno, envsz);
1119
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001120 top = (top - sizeof (char **) * envno) & ~0xF;
wdenk47d1a6e2002-11-03 00:01:44 +00001121 fwenv = (char **)top;
1122 debug ("## fwenv at 0x%08lX ", top);
1123
1124 top = (top - envsz) & ~0xF;
1125 s = (char *)top;
1126 ss = fwenv;
1127
1128 /* now copy them */
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001129 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1130 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
wdenk47d1a6e2002-11-03 00:01:44 +00001131 ;
1132 *ss++ = s;
1133 for (j = i; j < nxt; ++j)
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001134 *s++ = env_get_char (j);
wdenk47d1a6e2002-11-03 00:01:44 +00001135 *s++ = '\0';
1136 }
1137 *ss++ = NULL; /* terminate */
1138
Marian Balakowicz1ee11802008-01-08 18:17:10 +01001139 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
1140 (*entry) (kbd, cmdline, fwenv, top);
wdenk47d1a6e2002-11-03 00:01:44 +00001141}
1142#endif