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