]> git.ipfire.org Git - people/ms/u-boot.git/blame - common/cmd_bootm.c
Merge branch 'master' of git://www.denx.de/git/u-boot-mpc83xx
[people/ms/u-boot.git] / common / cmd_bootm.c
CommitLineData
47d1a6e1 1/*
15940c9a 2 * (C) Copyright 2000-2006
47d1a6e1
WD
3 * 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
b97a2a0a 24
47d1a6e1
WD
25/*
26 * Boot support
27 */
28#include <common.h>
29#include <watchdog.h>
30#include <command.h>
47d1a6e1
WD
31#include <image.h>
32#include <malloc.h>
33#include <zlib.h>
c29fdfc1 34#include <bzlib.h>
7f70e853 35#include <environment.h>
4ed6552f 36#include <lmb.h>
47d1a6e1 37#include <asm/byteorder.h>
8bde7f77 38
47d1a6e1
WD
39#ifdef CFG_HUSH_PARSER
40#include <hush.h>
41#endif
42
1ee1180b 43DECLARE_GLOBAL_DATA_PTR;
228f29ac 44
1ee1180b
MB
45extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
46#ifndef CFG_BOOTM_LEN
47#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
2abbe075
WD
48#endif
49
321359f2
MB
50#ifdef CONFIG_BZIP2
51extern void bz_internal_error(int);
47d1a6e1
WD
52#endif
53
baa26db4 54#if defined(CONFIG_CMD_IMI)
47d1a6e1
WD
55static int image_info (unsigned long addr);
56#endif
27b207fd 57
baa26db4 58#if defined(CONFIG_CMD_IMLS)
27b207fd 59#include <flash.h>
e6f2e902 60extern flash_info_t flash_info[]; /* info for FLASH chips */
27b207fd
WD
61static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
62#endif
63
1ee1180b
MB
64#ifdef CONFIG_SILENT_CONSOLE
65static void fixup_silent_linux (void);
66#endif
47d1a6e1 67
6986a385
MB
68static image_header_t *image_get_kernel (ulong img_addr, int verify);
69#if defined(CONFIG_FIT)
70static int fit_check_kernel (const void *fit, int os_noffset, int verify);
2262cfee
WD
71#endif
72
9a4daad0 73static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
8a5ea3e6 74 bootm_headers_t *images, ulong *os_data, ulong *os_len);
1ee1180b 75extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
47d1a6e1
WD
76
77/*
78 * Continue booting an OS image; caller already has:
79 * - copied image header to global variable `header'
80 * - checked header magic number, checksums (both header & image),
81 * - verified image architecture (PPC) and type (KERNEL or MULTI),
82 * - loaded (first part of) image to header load address,
83 * - disabled interrupts.
84 */
1ee1180b 85typedef void boot_os_fn (cmd_tbl_t *cmdtp, int flag,
f13e7b2e 86 int argc, char *argv[],
8a5ea3e6 87 bootm_headers_t *images); /* pointers to os/initrd/fdt */
1ee1180b
MB
88
89extern boot_os_fn do_bootm_linux;
90static boot_os_fn do_bootm_netbsd;
f13e7b2e 91#if defined(CONFIG_LYNXKDI)
1ee1180b
MB
92static boot_os_fn do_bootm_lynxkdi;
93extern void lynxkdi_boot (image_header_t *);
47d1a6e1 94#endif
1ee1180b 95static boot_os_fn do_bootm_rtems;
baa26db4 96#if defined(CONFIG_CMD_ELF)
1ee1180b
MB
97static boot_os_fn do_bootm_vxworks;
98static boot_os_fn do_bootm_qnxelf;
99int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
100int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
90253178 101#endif
7f70e853 102#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1ee1180b 103static boot_os_fn do_bootm_artos;
1f4bb37d 104#endif
47d1a6e1 105
1ee1180b 106ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
d5934ad7 107static bootm_headers_t images; /* pointers to os/initrd/fdt images */
15940c9a 108
e822d7fc
KG
109void __board_lmb_reserve(struct lmb *lmb)
110{
111 /* please define platform specific board_lmb_reserve() */
112}
113void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
47d1a6e1 114
47d1a6e1 115
1ee1180b
MB
116/*******************************************************************/
117/* bootm - boot application image from image in memory */
118/*******************************************************************/
47d1a6e1
WD
119int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
120{
f13e7b2e 121 ulong iflag;
42b73e8e 122 const char *type_name;
f13e7b2e 123 uint unc_len = CFG_BOOTM_LEN;
d5934ad7 124 uint8_t comp, type, os;
47d1a6e1 125
d5934ad7 126 void *os_hdr;
f13e7b2e 127 ulong os_data, os_len;
7582438c
MB
128 ulong image_start, image_end;
129 ulong load_start, load_end;
d3f2fa0d 130 ulong mem_start, mem_size;
47d1a6e1 131
4ed6552f 132 struct lmb lmb;
47d1a6e1 133
d5934ad7 134 memset ((void *)&images, 0, sizeof (images));
edbed247
BS
135 images.verify = getenv_yesno ("verify");
136 images.autostart = getenv_yesno ("autostart");
4ed6552f 137 images.lmb = &lmb;
47d1a6e1 138
4ed6552f 139 lmb_init(&lmb);
47d1a6e1 140
d3f2fa0d
KG
141 mem_start = getenv_bootm_low();
142 mem_size = getenv_bootm_size();
47d1a6e1 143
d3f2fa0d 144 lmb_add(&lmb, mem_start, mem_size);
47d1a6e1 145
e822d7fc 146 board_lmb_reserve(&lmb);
47d1a6e1 147
5cf746c3 148 /* get kernel image header, start address and length */
9a4daad0 149 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
d5934ad7 150 &images, &os_data, &os_len);
6986a385
MB
151 if (os_len == 0) {
152 puts ("ERROR: can't get kernel image!\n");
47d1a6e1 153 return 1;
bccae903 154 }
bccae903 155
d5934ad7 156 /* get image parameters */
9a4daad0 157 switch (genimg_get_format (os_hdr)) {
d5934ad7
MB
158 case IMAGE_FORMAT_LEGACY:
159 type = image_get_type (os_hdr);
160 comp = image_get_comp (os_hdr);
161 os = image_get_os (os_hdr);
bccae903 162
d5934ad7
MB
163 image_end = image_get_image_end (os_hdr);
164 load_start = image_get_load (os_hdr);
165 break;
166#if defined(CONFIG_FIT)
167 case IMAGE_FORMAT_FIT:
3dfe1101
MB
168 if (fit_image_get_type (images.fit_hdr_os,
169 images.fit_noffset_os, &type)) {
6986a385 170 puts ("Can't get image type!\n");
1372cce2 171 show_boot_progress (-109);
6986a385
MB
172 return 1;
173 }
47d1a6e1 174
3dfe1101
MB
175 if (fit_image_get_comp (images.fit_hdr_os,
176 images.fit_noffset_os, &comp)) {
6986a385 177 puts ("Can't get image compression!\n");
1372cce2 178 show_boot_progress (-110);
6986a385
MB
179 return 1;
180 }
47d1a6e1 181
3dfe1101
MB
182 if (fit_image_get_os (images.fit_hdr_os,
183 images.fit_noffset_os, &os)) {
6986a385 184 puts ("Can't get image OS!\n");
1372cce2 185 show_boot_progress (-111);
47d1a6e1
WD
186 return 1;
187 }
47d1a6e1 188
6986a385
MB
189 image_end = fit_get_end (images.fit_hdr_os);
190
3dfe1101 191 if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os,
6986a385
MB
192 &load_start)) {
193 puts ("Can't get image load address!\n");
1372cce2 194 show_boot_progress (-112);
6986a385 195 return 1;
b13fb01a
WD
196 }
197 break;
d5934ad7
MB
198#endif
199 default:
200 puts ("ERROR: unknown image format type!\n");
47d1a6e1
WD
201 return 1;
202 }
d5934ad7
MB
203
204 image_start = (ulong)os_hdr;
205 load_end = 0;
9a4daad0 206 type_name = genimg_get_type_name (type);
47d1a6e1
WD
207
208 /*
209 * We have reached the point of no return: we are going to
210 * overwrite all exception vector code, so we cannot easily
211 * recover from any failures any more...
212 */
47d1a6e1
WD
213 iflag = disable_interrupts();
214
c7de829c
WD
215#ifdef CONFIG_AMIGAONEG3SE
216 /*
8bde7f77 217 * We've possible left the caches enabled during
c7de829c
WD
218 * bios emulation, so turn them off again
219 */
220 icache_disable();
221 invalidate_l1_instruction_cache();
222 flush_data_cache();
223 dcache_disable();
224#endif
225
d5934ad7 226 switch (comp) {
47d1a6e1 227 case IH_COMP_NONE:
d5934ad7 228 if (load_start == (ulong)os_hdr) {
42b73e8e 229 printf (" XIP %s ... ", type_name);
47d1a6e1 230 } else {
42b73e8e 231 printf (" Loading %s ... ", type_name);
47d1a6e1 232
d5934ad7 233 memmove_wd ((void *)load_start,
f13e7b2e 234 (void *)os_data, os_len, CHUNKSZ);
af13cdbc 235
7582438c 236 load_end = load_start + os_len;
af13cdbc 237 puts("OK\n");
47d1a6e1
WD
238 }
239 break;
240 case IH_COMP_GZIP:
42b73e8e 241 printf (" Uncompressing %s ... ", type_name);
d5934ad7 242 if (gunzip ((void *)load_start, unc_len,
f13e7b2e 243 (uchar *)os_data, &os_len) != 0) {
2682ce8a
MB
244 puts ("GUNZIP: uncompress or overwrite error "
245 "- must RESET board to recover\n");
fad63407 246 show_boot_progress (-6);
47d1a6e1
WD
247 do_reset (cmdtp, flag, argc, argv);
248 }
7582438c
MB
249
250 load_end = load_start + os_len;
47d1a6e1 251 break;
c29fdfc1
WD
252#ifdef CONFIG_BZIP2
253 case IH_COMP_BZIP2:
42b73e8e 254 printf (" Uncompressing %s ... ", type_name);
5653fc33
WD
255 /*
256 * If we've got less than 4 MB of malloc() space,
257 * use slower decompression algorithm which requires
258 * at most 2300 KB of memory.
259 */
d5934ad7 260 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
f13e7b2e
MB
261 &unc_len, (char *)os_data, os_len,
262 CFG_MALLOC_LEN < (4096 * 1024), 0);
c29fdfc1 263 if (i != BZ_OK) {
2682ce8a
MB
264 printf ("BUNZIP2: uncompress or overwrite error %d "
265 "- must RESET board to recover\n", i);
fad63407 266 show_boot_progress (-6);
c29fdfc1
WD
267 do_reset (cmdtp, flag, argc, argv);
268 }
7582438c
MB
269
270 load_end = load_start + unc_len;
c29fdfc1
WD
271 break;
272#endif /* CONFIG_BZIP2 */
47d1a6e1
WD
273 default:
274 if (iflag)
275 enable_interrupts();
d5934ad7 276 printf ("Unimplemented compression type %d\n", comp);
fad63407 277 show_boot_progress (-7);
47d1a6e1
WD
278 return 1;
279 }
4b9206ed 280 puts ("OK\n");
5cf746c3 281 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
fad63407 282 show_boot_progress (7);
47d1a6e1 283
7582438c
MB
284 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);
47d1a6e1 287
cb1c4896
MB
288 if (images.legacy_hdr_valid) {
289 if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI)
290 puts ("WARNING: legacy format multi component "
291 "image overwritten\n");
292 } else {
293 puts ("ERROR: new format image overwritten - "
294 "must RESET the board to recover\n");
295 show_boot_progress (-113);
296 do_reset (cmdtp, flag, argc, argv);
297 }
47d1a6e1 298 }
7582438c 299
fad63407 300 show_boot_progress (8);
47d1a6e1 301
4ed6552f
KG
302 lmb_reserve(&lmb, load_start, (load_end - load_start));
303
d5934ad7 304 switch (os) {
47d1a6e1
WD
305 default: /* handled by (original) Linux case */
306 case IH_OS_LINUX:
f72da340
WD
307#ifdef CONFIG_SILENT_CONSOLE
308 fixup_silent_linux();
309#endif
8a5ea3e6 310 do_bootm_linux (cmdtp, flag, argc, argv, &images);
47d1a6e1 311 break;
1ee1180b 312
47d1a6e1 313 case IH_OS_NETBSD:
8a5ea3e6 314 do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
47d1a6e1 315 break;
8bde7f77 316
1f4bb37d
WD
317#ifdef CONFIG_LYNXKDI
318 case IH_OS_LYNXOS:
8a5ea3e6 319 do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
1f4bb37d
WD
320 break;
321#endif
322
d791b1dc 323 case IH_OS_RTEMS:
8a5ea3e6 324 do_bootm_rtems (cmdtp, flag, argc, argv, &images);
d791b1dc 325 break;
8bde7f77 326
baa26db4 327#if defined(CONFIG_CMD_ELF)
47d1a6e1 328 case IH_OS_VXWORKS:
8a5ea3e6 329 do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
47d1a6e1 330 break;
f13e7b2e 331
47d1a6e1 332 case IH_OS_QNX:
8a5ea3e6 333 do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
47d1a6e1 334 break;
90253178 335#endif
1ee1180b 336
7f70e853
WD
337#ifdef CONFIG_ARTOS
338 case IH_OS_ARTOS:
8a5ea3e6 339 do_bootm_artos (cmdtp, flag, argc, argv, &images);
7f70e853
WD
340 break;
341#endif
47d1a6e1
WD
342 }
343
fad63407 344 show_boot_progress (-9);
47d1a6e1 345#ifdef DEBUG
4b9206ed 346 puts ("\n## Control returned to monitor - resetting...\n");
a44a269a
MB
347 if (images.autostart)
348 do_reset (cmdtp, flag, argc, argv);
47d1a6e1 349#endif
a44a269a
MB
350 if (!images.autostart && iflag)
351 enable_interrupts();
352
47d1a6e1
WD
353 return 1;
354}
355
1efd4360 356/**
9a4daad0
MB
357 * image_get_kernel - verify legacy format kernel image
358 * @img_addr: in RAM address of the legacy format image to be verified
359 * @verify: data CRC verification flag
1efd4360 360 *
9a4daad0
MB
361 * image_get_kernel() verifies legacy image integrity and returns pointer to
362 * legacy image header if image verification was completed successfully.
1efd4360
MB
363 *
364 * returns:
9a4daad0
MB
365 * pointer to a legacy image header if valid image was found
366 * otherwise return NULL
1efd4360
MB
367 */
368static image_header_t *image_get_kernel (ulong img_addr, int verify)
f72da340 369{
1efd4360 370 image_header_t *hdr = (image_header_t *)img_addr;
f72da340 371
1efd4360
MB
372 if (!image_check_magic(hdr)) {
373 puts ("Bad Magic Number\n");
374 show_boot_progress (-1);
375 return NULL;
376 }
377 show_boot_progress (2);
f72da340 378
1efd4360
MB
379 if (!image_check_hcrc (hdr)) {
380 puts ("Bad Header Checksum\n");
381 show_boot_progress (-2);
382 return NULL;
383 }
384
385 show_boot_progress (3);
386 image_print_contents (hdr);
387
388 if (verify) {
389 puts (" Verifying Checksum ... ");
390 if (!image_check_dcrc (hdr)) {
391 printf ("Bad Data CRC\n");
392 show_boot_progress (-3);
393 return NULL;
f72da340 394 }
1efd4360 395 puts ("OK\n");
f72da340 396 }
1efd4360 397 show_boot_progress (4);
f72da340 398
1efd4360
MB
399 if (!image_check_target_arch (hdr)) {
400 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
401 show_boot_progress (-4);
402 return NULL;
403 }
404 return hdr;
f72da340 405}
f72da340 406
6986a385
MB
407/**
408 * fit_check_kernel - verify FIT format kernel subimage
409 * @fit_hdr: pointer to the FIT image header
410 * os_noffset: kernel subimage node offset within FIT image
411 * @verify: data CRC verification flag
412 *
413 * fit_check_kernel() verifies integrity of the kernel subimage and from
414 * specified FIT image.
415 *
416 * returns:
417 * 1, on success
418 * 0, on failure
419 */
420#if defined (CONFIG_FIT)
421static int fit_check_kernel (const void *fit, int os_noffset, int verify)
47d1a6e1 422{
6986a385 423 fit_image_print (fit, os_noffset, " ");
47d1a6e1 424
6986a385
MB
425 if (verify) {
426 puts (" Verifying Hash Integrity ... ");
427 if (!fit_image_check_hashes (fit, os_noffset)) {
428 puts ("Bad Data Hash\n");
1372cce2 429 show_boot_progress (-104);
6986a385
MB
430 return 0;
431 }
432 puts ("OK\n");
47d1a6e1 433 }
1372cce2 434 show_boot_progress (105);
47d1a6e1 435
6986a385
MB
436 if (!fit_image_check_target_arch (fit, os_noffset)) {
437 puts ("Unsupported Architecture\n");
1372cce2 438 show_boot_progress (-105);
6986a385
MB
439 return 0;
440 }
56f94be3 441
1372cce2 442 show_boot_progress (106);
6986a385
MB
443 if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) {
444 puts ("Not a kernel image\n");
1372cce2 445 show_boot_progress (-106);
6986a385
MB
446 return 0;
447 }
47d1a6e1 448
1372cce2 449 show_boot_progress (107);
6986a385
MB
450 return 1;
451}
452#endif /* CONFIG_FIT */
47d1a6e1 453
5cf746c3 454/**
9a4daad0 455 * boot_get_kernel - find kernel image
5cf746c3
MB
456 * @os_data: pointer to a ulong variable, will hold os data start address
457 * @os_len: pointer to a ulong variable, will hold os data length
458 *
9a4daad0 459 * boot_get_kernel() tries to find a kernel image, verifies its integrity
5cf746c3
MB
460 * and locates kernel data.
461 *
462 * returns:
463 * pointer to image header if valid image was found, plus kernel start
464 * address and length, otherwise NULL
465 */
9a4daad0 466static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
8a5ea3e6 467 bootm_headers_t *images, ulong *os_data, ulong *os_len)
5cf746c3
MB
468{
469 image_header_t *hdr;
470 ulong img_addr;
d5934ad7
MB
471#if defined(CONFIG_FIT)
472 void *fit_hdr;
473 const char *fit_uname_config = NULL;
474 const char *fit_uname_kernel = NULL;
6986a385
MB
475 const void *data;
476 size_t len;
f773bea8 477 int cfg_noffset;
6986a385 478 int os_noffset;
d5934ad7 479#endif
56f94be3 480
d5934ad7 481 /* find out kernel image address */
5cf746c3
MB
482 if (argc < 2) {
483 img_addr = load_addr;
d5934ad7
MB
484 debug ("* kernel: default image load address = 0x%08lx\n",
485 load_addr);
486#if defined(CONFIG_FIT)
487 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
488 &fit_uname_config)) {
489 debug ("* kernel: config '%s' from image at 0x%08lx\n",
490 fit_uname_config, img_addr);
491 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
492 &fit_uname_kernel)) {
493 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
494 fit_uname_kernel, img_addr);
495#endif
5cf746c3
MB
496 } else {
497 img_addr = simple_strtoul(argv[1], NULL, 16);
d5934ad7 498 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
5cf746c3 499 }
47d1a6e1 500
5cf746c3 501 show_boot_progress (1);
56f94be3 502
fff888a1 503 /* copy from dataflash if needed */
9a4daad0 504 img_addr = genimg_get_image (img_addr);
5cf746c3 505
d5934ad7 506 /* check image type, for FIT images get FIT kernel node */
6986a385 507 *os_data = *os_len = 0;
9a4daad0 508 switch (genimg_get_format ((void *)img_addr)) {
d5934ad7 509 case IMAGE_FORMAT_LEGACY:
6986a385
MB
510 printf ("## Booting kernel from Legacy Image at %08lx ...\n",
511 img_addr);
1efd4360
MB
512 hdr = image_get_kernel (img_addr, images->verify);
513 if (!hdr)
d5934ad7 514 return NULL;
d5934ad7
MB
515 show_boot_progress (5);
516
6986a385 517 /* get os_data and os_len */
d5934ad7
MB
518 switch (image_get_type (hdr)) {
519 case IH_TYPE_KERNEL:
520 *os_data = image_get_data (hdr);
521 *os_len = image_get_data_size (hdr);
522 break;
523 case IH_TYPE_MULTI:
524 image_multi_getimg (hdr, 0, os_data, os_len);
525 break;
526 default:
527 printf ("Wrong Image Type for %s command\n", cmdtp->name);
528 show_boot_progress (-5);
529 return NULL;
530 }
cb1c4896
MB
531
532 /*
533 * copy image header to allow for image overwrites during kernel
534 * decompression.
535 */
536 memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t));
537
538 /* save pointer to image header */
d5934ad7 539 images->legacy_hdr_os = hdr;
47d1a6e1 540
cb1c4896 541 images->legacy_hdr_valid = 1;
1372cce2 542 show_boot_progress (6);
5cf746c3 543 break;
d5934ad7
MB
544#if defined(CONFIG_FIT)
545 case IMAGE_FORMAT_FIT:
546 fit_hdr = (void *)img_addr;
6986a385
MB
547 printf ("## Booting kernel from FIT Image at %08lx ...\n",
548 img_addr);
549
550 if (!fit_check_format (fit_hdr)) {
551 puts ("Bad FIT kernel image format!\n");
1372cce2 552 show_boot_progress (-100);
6986a385
MB
553 return NULL;
554 }
1372cce2 555 show_boot_progress (100);
47d1a6e1 556
6986a385
MB
557 if (!fit_uname_kernel) {
558 /*
559 * no kernel image node unit name, try to get config
560 * node first. If config unit node name is NULL
561 * fit_conf_get_node() will try to find default config node
562 */
1372cce2 563 show_boot_progress (101);
f773bea8
MB
564 cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config);
565 if (cfg_noffset < 0) {
1372cce2 566 show_boot_progress (-101);
6986a385 567 return NULL;
1372cce2 568 }
f773bea8
MB
569 /* save configuration uname provided in the first
570 * bootm argument
571 */
572 images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL);
573 printf (" Using '%s' configuration\n", images->fit_uname_cfg);
574 show_boot_progress (103);
47d1a6e1 575
f773bea8 576 os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset);
6986a385
MB
577 fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL);
578 } else {
579 /* get kernel component image node offset */
1372cce2 580 show_boot_progress (102);
6986a385
MB
581 os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel);
582 }
1372cce2
MB
583 if (os_noffset < 0) {
584 show_boot_progress (-103);
6986a385 585 return NULL;
1372cce2 586 }
47d1a6e1 587
6986a385 588 printf (" Trying '%s' kernel subimage\n", fit_uname_kernel);
47d1a6e1 589
1372cce2 590 show_boot_progress (104);
6986a385
MB
591 if (!fit_check_kernel (fit_hdr, os_noffset, images->verify))
592 return NULL;
47d1a6e1 593
6986a385
MB
594 /* get kernel image data address and length */
595 if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) {
596 puts ("Could not find kernel subimage data!\n");
1372cce2 597 show_boot_progress (-107);
6986a385
MB
598 return NULL;
599 }
1372cce2 600 show_boot_progress (108);
47d1a6e1 601
6986a385
MB
602 *os_len = len;
603 *os_data = (ulong)data;
604 images->fit_hdr_os = fit_hdr;
605 images->fit_uname_os = fit_uname_kernel;
3dfe1101 606 images->fit_noffset_os = os_noffset;
6986a385 607 break;
9c4c5ae3 608#endif
5cf746c3 609 default:
d5934ad7 610 printf ("Wrong Image Format for %s command\n", cmdtp->name);
1372cce2 611 show_boot_progress (-108);
5cf746c3 612 return NULL;
47d1a6e1
WD
613 }
614
6986a385
MB
615 debug (" kernel data at 0x%08lx, len = 0x%08lx (%d)\n",
616 *os_data, *os_len, *os_len);
47d1a6e1 617
d5934ad7 618 return (void *)img_addr;
5cf746c3 619}
98a9c4d4 620
0d498393 621U_BOOT_CMD(
1ee1180b
MB
622 bootm, CFG_MAXARGS, 1, do_bootm,
623 "bootm - boot application image from memory\n",
624 "[addr [arg ...]]\n - boot application image stored in memory\n"
625 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
626 "\t'arg' can be the address of an initrd image\n"
4a2ad5ff 627#if defined(CONFIG_OF_LIBFDT)
98a9c4d4 628 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
5441f61a 629 "\ta third argument is required which is the address of the\n"
98a9c4d4
MM
630 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
631 "\tuse a '-' for the second argument. If you do not pass a third\n"
632 "\ta bd_info struct will be passed instead\n"
98a9c4d4 633#endif
6986a385
MB
634#if defined(CONFIG_FIT)
635 "\t\nFor the new multi component uImage format (FIT) addresses\n"
636 "\tmust be extened to include component or configuration unit name:\n"
637 "\taddr:<subimg_uname> - direct component image specification\n"
638 "\taddr#<conf_uname> - configuration specification\n"
639 "\tUse iminfo command to get the list of existing component\n"
640 "\timages and configurations.\n"
641#endif
8bde7f77 642);
47d1a6e1 643
1ee1180b
MB
644/*******************************************************************/
645/* bootd - boot default image */
646/*******************************************************************/
baa26db4 647#if defined(CONFIG_CMD_BOOTD)
47d1a6e1
WD
648int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
649{
650 int rcode = 0;
47d1a6e1 651
47d1a6e1 652#ifndef CFG_HUSH_PARSER
1ee1180b
MB
653 if (run_command (getenv ("bootcmd"), flag) < 0)
654 rcode = 1;
47d1a6e1 655#else
1ee1180b
MB
656 if (parse_string_outer (getenv ("bootcmd"),
657 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
658 rcode = 1;
47d1a6e1
WD
659#endif
660 return rcode;
661}
47d1a6e1 662
0d498393 663U_BOOT_CMD(
1ee1180b
MB
664 boot, 1, 1, do_bootd,
665 "boot - boot default, i.e., run 'bootcmd'\n",
9d2b18a0
WD
666 NULL
667);
47d1a6e1 668
9d2b18a0 669/* keep old command name "bootd" for backward compatibility */
0d498393 670U_BOOT_CMD(
1ee1180b
MB
671 bootd, 1, 1, do_bootd,
672 "bootd - boot default, i.e., run 'bootcmd'\n",
8bde7f77
WD
673 NULL
674);
47d1a6e1 675
47d1a6e1 676#endif
47d1a6e1 677
47d1a6e1 678
1ee1180b
MB
679/*******************************************************************/
680/* iminfo - print header info for a requested image */
681/*******************************************************************/
baa26db4 682#if defined(CONFIG_CMD_IMI)
1ee1180b 683int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
47d1a6e1
WD
684{
685 int arg;
686 ulong addr;
1ee1180b 687 int rcode = 0;
47d1a6e1 688
47d1a6e1
WD
689 if (argc < 2) {
690 return image_info (load_addr);
691 }
47d1a6e1 692
1ee1180b
MB
693 for (arg = 1; arg < argc; ++arg) {
694 addr = simple_strtoul (argv[arg], NULL, 16);
695 if (image_info (addr) != 0)
696 rcode = 1;
47d1a6e1
WD
697 }
698 return rcode;
699}
47d1a6e1 700
47d1a6e1
WD
701static int image_info (ulong addr)
702{
d5934ad7 703 void *hdr = (void *)addr;
47d1a6e1 704
47d1a6e1 705 printf ("\n## Checking Image at %08lx ...\n", addr);
47d1a6e1 706
9a4daad0 707 switch (genimg_get_format (hdr)) {
d5934ad7
MB
708 case IMAGE_FORMAT_LEGACY:
709 puts (" Legacy image found\n");
710 if (!image_check_magic (hdr)) {
711 puts (" Bad Magic Number\n");
712 return 1;
713 }
47d1a6e1 714
d5934ad7
MB
715 if (!image_check_hcrc (hdr)) {
716 puts (" Bad Header Checksum\n");
717 return 1;
47d1a6e1
WD
718 }
719
d5934ad7 720 image_print_contents (hdr);
47d1a6e1 721
d5934ad7
MB
722 puts (" Verifying Checksum ... ");
723 if (!image_check_dcrc (hdr)) {
724 puts (" Bad Data CRC\n");
725 return 1;
47d1a6e1 726 }
d5934ad7
MB
727 puts ("OK\n");
728 return 0;
729#if defined(CONFIG_FIT)
730 case IMAGE_FORMAT_FIT:
731 puts (" FIT image found\n");
47d1a6e1 732
e32fea6a
MB
733 if (!fit_check_format (hdr)) {
734 puts ("Bad FIT image format!\n");
735 return 1;
47d1a6e1
WD
736 }
737
e32fea6a 738 fit_print_contents (hdr);
d5934ad7
MB
739 return 0;
740#endif
741 default:
742 puts ("Unknown image format!\n");
743 break;
47d1a6e1
WD
744 }
745
d5934ad7 746 return 1;
47d1a6e1 747}
0d498393
WD
748
749U_BOOT_CMD(
750 iminfo, CFG_MAXARGS, 1, do_iminfo,
8bde7f77
WD
751 "iminfo - print header information for application image\n",
752 "addr [addr ...]\n"
753 " - print header information for application image starting at\n"
754 " address 'addr' in memory; this includes verification of the\n"
755 " image contents (magic number, header and payload checksums)\n"
756);
25c751e9 757#endif
87a449c8 758
25c751e9 759
1ee1180b
MB
760/*******************************************************************/
761/* imls - list all images found in flash */
762/*******************************************************************/
baa26db4 763#if defined(CONFIG_CMD_IMLS)
27b207fd
WD
764int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
765{
766 flash_info_t *info;
767 int i, j;
d5934ad7 768 void *hdr;
25c751e9 769
1ee1180b
MB
770 for (i = 0, info = &flash_info[0];
771 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
25c751e9 772
27b207fd
WD
773 if (info->flash_id == FLASH_UNKNOWN)
774 goto next_bank;
1ee1180b 775 for (j = 0; j < info->sector_count; ++j) {
25c751e9 776
d5934ad7
MB
777 hdr = (void *)info->start[j];
778 if (!hdr)
b97a2a0a 779 goto next_sector;
27b207fd 780
9a4daad0 781 switch (genimg_get_format (hdr)) {
d5934ad7 782 case IMAGE_FORMAT_LEGACY:
d5934ad7
MB
783 if (!image_check_hcrc (hdr))
784 goto next_sector;
785
786 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
787 image_print_contents (hdr);
788
789 puts (" Verifying Checksum ... ");
790 if (!image_check_dcrc (hdr)) {
791 puts ("Bad Data CRC\n");
792 } else {
793 puts ("OK\n");
794 }
795 break;
796#if defined(CONFIG_FIT)
797 case IMAGE_FORMAT_FIT:
e32fea6a
MB
798 if (!fit_check_format (hdr))
799 goto next_sector;
800
d5934ad7 801 printf ("FIT Image at %08lX:\n", (ulong)hdr);
e32fea6a 802 fit_print_contents (hdr);
d5934ad7 803 break;
213bf8c8 804#endif
d5934ad7 805 default:
27b207fd 806 goto next_sector;
25c751e9 807 }
87a449c8 808
bdccc4fe 809next_sector: ;
c76f951a 810 }
bdccc4fe 811next_bank: ;
27b207fd 812 }
c76f951a 813
27b207fd
WD
814 return (0);
815}
c76f951a 816
27b207fd
WD
817U_BOOT_CMD(
818 imls, 1, 1, do_imls,
819 "imls - list all images found in flash\n",
820 "\n"
821 " - Prints information about all images found at sector\n"
822 " boundaries in flash.\n"
823);
98a9c4d4 824#endif
47d1a6e1 825
1ee1180b 826/*******************************************************************/
5cf746c3 827/* helper routines */
1ee1180b 828/*******************************************************************/
1ee1180b
MB
829#ifdef CONFIG_SILENT_CONSOLE
830static void fixup_silent_linux ()
831{
832 char buf[256], *start, *end;
833 char *cmdline = getenv ("bootargs");
47d1a6e1 834
1ee1180b
MB
835 /* Only fix cmdline when requested */
836 if (!(gd->flags & GD_FLG_SILENT))
837 return;
47d1a6e1 838
1ee1180b
MB
839 debug ("before silent fix-up: %s\n", cmdline);
840 if (cmdline) {
841 if ((start = strstr (cmdline, "console=")) != NULL) {
842 end = strchr (start, ' ');
843 strncpy (buf, cmdline, (start - cmdline + 8));
844 if (end)
845 strcpy (buf + (start - cmdline + 8), end);
846 else
847 buf[start - cmdline + 8] = '\0';
848 } else {
849 strcpy (buf, cmdline);
850 strcat (buf, " console=");
47d1a6e1 851 }
47d1a6e1 852 } else {
1ee1180b 853 strcpy (buf, "console=");
e7902122 854 }
10aaf716 855
1ee1180b
MB
856 setenv ("bootargs", buf);
857 debug ("after silent fix-up: %s\n", buf);
858}
859#endif /* CONFIG_SILENT_CONSOLE */
38eb508e 860
38eb508e 861
1ee1180b
MB
862/*******************************************************************/
863/* OS booting routines */
864/*******************************************************************/
c76f951a 865
1ee1180b 866static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
f13e7b2e 867 int argc, char *argv[],
8a5ea3e6 868 bootm_headers_t *images)
d791b1dc 869{
1ee1180b 870 void (*loader)(bd_t *, image_header_t *, char *, char *);
d5934ad7 871 image_header_t *os_hdr, *hdr;
f13e7b2e 872 ulong kernel_data, kernel_len;
1ee1180b
MB
873 char *consdev;
874 char *cmdline;
875
d5934ad7
MB
876#if defined(CONFIG_FIT)
877 if (!images->legacy_hdr_valid) {
878 fit_unsupported_reset ("NetBSD");
879 do_reset (cmdtp, flag, argc, argv);
38eb508e
GVB
880 }
881#endif
d5934ad7 882 hdr = images->legacy_hdr_os;
47d1a6e1
WD
883
884 /*
885 * Booting a (NetBSD) kernel image
886 *
887 * This process is pretty similar to a standalone application:
888 * The (first part of an multi-) image must be a stage-2 loader,
889 * which in turn is responsible for loading & invoking the actual
890 * kernel. The only differences are the parameters being passed:
891 * besides the board info strucure, the loader expects a command
892 * line, the name of the console device, and (optionally) the
893 * address of the original image header.
894 */
d5934ad7 895 os_hdr = NULL;
cb1c4896 896 if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) {
f13e7b2e
MB
897 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
898 if (kernel_len)
d5934ad7 899 os_hdr = hdr;
f13e7b2e 900 }
47d1a6e1
WD
901
902 consdev = "";
903#if defined (CONFIG_8xx_CONS_SMC1)
904 consdev = "smc1";
905#elif defined (CONFIG_8xx_CONS_SMC2)
906 consdev = "smc2";
907#elif defined (CONFIG_8xx_CONS_SCC2)
908 consdev = "scc2";
909#elif defined (CONFIG_8xx_CONS_SCC3)
910 consdev = "scc3";
911#endif
912
913 if (argc > 2) {
914 ulong len;
915 int i;
916
1ee1180b 917 for (i = 2, len = 0; i < argc; i += 1)
47d1a6e1
WD
918 len += strlen (argv[i]) + 1;
919 cmdline = malloc (len);
920
1ee1180b 921 for (i = 2, len = 0; i < argc; i += 1) {
47d1a6e1
WD
922 if (i > 2)
923 cmdline[len++] = ' ';
924 strcpy (&cmdline[len], argv[i]);
925 len += strlen (argv[i]);
926 }
1ee1180b 927 } else if ((cmdline = getenv ("bootargs")) == NULL) {
47d1a6e1
WD
928 cmdline = "";
929 }
930
1ee1180b 931 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
47d1a6e1
WD
932
933 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
934 (ulong)loader);
935
fad63407 936 show_boot_progress (15);
47d1a6e1
WD
937
938 /*
939 * NetBSD Stage-2 Loader Parameters:
940 * r3: ptr to board info data
941 * r4: image address
942 * r5: console device
943 * r6: boot args string
944 */
d5934ad7 945 (*loader) (gd->bd, os_hdr, consdev, cmdline);
47d1a6e1
WD
946}
947
1ee1180b
MB
948#ifdef CONFIG_LYNXKDI
949static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
950 int argc, char *argv[],
8a5ea3e6 951 bootm_headers_t *images)
1ee1180b 952{
cb1c4896 953 image_header_t *hdr = &images->legacy_hdr_os_copy;
d5934ad7
MB
954
955#if defined(CONFIG_FIT)
956 if (!images->legacy_hdr_valid) {
957 fit_unsupported_reset ("Lynx");
958 do_reset (cmdtp, flag, argc, argv);
959 }
960#endif
961
962 lynxkdi_boot ((image_header_t *)hdr);
1ee1180b
MB
963}
964#endif /* CONFIG_LYNXKDI */
965
966static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
967 int argc, char *argv[],
8a5ea3e6 968 bootm_headers_t *images)
1ee1180b 969{
cb1c4896 970 image_header_t *hdr = &images->legacy_hdr_os_copy;
1ee1180b 971 void (*entry_point)(bd_t *);
d791b1dc 972
d5934ad7
MB
973#if defined(CONFIG_FIT)
974 if (!images->legacy_hdr_valid) {
975 fit_unsupported_reset ("RTEMS");
976 do_reset (cmdtp, flag, argc, argv);
977 }
978#endif
979
b97a2a0a 980 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
d791b1dc
WD
981
982 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
983 (ulong)entry_point);
984
fad63407 985 show_boot_progress (15);
d791b1dc
WD
986
987 /*
988 * RTEMS Parameters:
989 * r3: ptr to board info data
990 */
1ee1180b 991 (*entry_point)(gd->bd);
d791b1dc 992}
7f70e853 993
baa26db4 994#if defined(CONFIG_CMD_ELF)
1ee1180b
MB
995static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
996 int argc, char *argv[],
8a5ea3e6 997 bootm_headers_t *images)
47d1a6e1 998{
47d1a6e1 999 char str[80];
cb1c4896 1000 image_header_t *hdr = &images->legacy_hdr_os_copy;
7f70e853 1001
d5934ad7 1002#if defined(CONFIG_FIT)
cb1c4896 1003 if (!images->legacy_hdr_valid) {
d5934ad7
MB
1004 fit_unsupported_reset ("VxWorks");
1005 do_reset (cmdtp, flag, argc, argv);
1006 }
1007#endif
47d1a6e1 1008
b97a2a0a 1009 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
47d1a6e1
WD
1010 setenv("loadaddr", str);
1011 do_bootvx(cmdtp, 0, 0, NULL);
1012}
1013
f13e7b2e
MB
1014static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
1015 int argc, char *argv[],
8a5ea3e6 1016 bootm_headers_t *images)
47d1a6e1 1017{
47d1a6e1
WD
1018 char *local_args[2];
1019 char str[16];
cb1c4896 1020 image_header_t *hdr = &images->legacy_hdr_os_copy;
d5934ad7
MB
1021
1022#if defined(CONFIG_FIT)
1023 if (!images->legacy_hdr_valid) {
1024 fit_unsupported_reset ("QNX");
1025 do_reset (cmdtp, flag, argc, argv);
1026 }
1027#endif
47d1a6e1 1028
b97a2a0a 1029 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
47d1a6e1
WD
1030 local_args[0] = argv[0];
1031 local_args[1] = str; /* and provide it via the arguments */
1032 do_bootelf(cmdtp, 0, 2, local_args);
1033}
90253178 1034#endif
1f4bb37d 1035
1ee1180b
MB
1036#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
1037static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
1038 int argc, char *argv[],
8a5ea3e6 1039 bootm_headers_t *images)
7f70e853 1040{
7f70e853
WD
1041 ulong top;
1042 char *s, *cmdline;
1043 char **fwenv, **ss;
1044 int i, j, nxt, len, envno, envsz;
1045 bd_t *kbd;
1046 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
cb1c4896 1047 image_header_t *hdr = &images->legacy_hdr_os_copy;
d5934ad7
MB
1048
1049#if defined(CONFIG_FIT)
1050 if (!images->legacy_hdr_valid) {
1051 fit_unsupported_reset ("ARTOS");
1052 do_reset (cmdtp, flag, argc, argv);
1053 }
1054#endif
7f70e853
WD
1055
1056 /*
1057 * Booting an ARTOS kernel image + application
1058 */
1059
1060 /* this used to be the top of memory, but was wrong... */
1061#ifdef CONFIG_PPC
1062 /* get stack pointer */
1063 asm volatile ("mr %0,1" : "=r"(top) );
1064#endif
1065 debug ("## Current stack ends at 0x%08lX ", top);
1066
1067 top -= 2048; /* just to be sure */
1068 if (top > CFG_BOOTMAPSZ)
1069 top = CFG_BOOTMAPSZ;
1070 top &= ~0xF;
1071
1072 debug ("=> set upper limit to 0x%08lX\n", top);
1073
1074 /* first check the artos specific boot args, then the linux args*/
1ee1180b 1075 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
7f70e853
WD
1076 s = "";
1077
1078 /* get length of cmdline, and place it */
1ee1180b 1079 len = strlen (s);
7f70e853
WD
1080 top = (top - (len + 1)) & ~0xF;
1081 cmdline = (char *)top;
1082 debug ("## cmdline at 0x%08lX ", top);
1ee1180b 1083 strcpy (cmdline, s);
7f70e853
WD
1084
1085 /* copy bdinfo */
1ee1180b 1086 top = (top - sizeof (bd_t)) & ~0xF;
7f70e853
WD
1087 debug ("## bd at 0x%08lX ", top);
1088 kbd = (bd_t *)top;
1ee1180b 1089 memcpy (kbd, gd->bd, sizeof (bd_t));
7f70e853
WD
1090
1091 /* first find number of env entries, and their size */
1092 envno = 0;
1093 envsz = 0;
1ee1180b
MB
1094 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1095 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
7f70e853
WD
1096 ;
1097 envno++;
1098 envsz += (nxt - i) + 1; /* plus trailing zero */
1099 }
1100 envno++; /* plus the terminating zero */
1101 debug ("## %u envvars total size %u ", envno, envsz);
1102
1ee1180b 1103 top = (top - sizeof (char **) * envno) & ~0xF;
7f70e853
WD
1104 fwenv = (char **)top;
1105 debug ("## fwenv at 0x%08lX ", top);
1106
1107 top = (top - envsz) & ~0xF;
1108 s = (char *)top;
1109 ss = fwenv;
1110
1111 /* now copy them */
1ee1180b
MB
1112 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
1113 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
7f70e853
WD
1114 ;
1115 *ss++ = s;
1116 for (j = i; j < nxt; ++j)
1ee1180b 1117 *s++ = env_get_char (j);
7f70e853
WD
1118 *s++ = '\0';
1119 }
1120 *ss++ = NULL; /* terminate */
1121
1ee1180b
MB
1122 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
1123 (*entry) (kbd, cmdline, fwenv, top);
47d1a6e1 1124}
1f4bb37d 1125#endif