blob: 10403aa0fa9ef80ae3f8475fdc17d93329fb4ac6 [file] [log] [blame]
wdenk47d1a6e2002-11-03 00:01:44 +00001/*
Stefan Roese15940c92006-03-13 11:16:36 +01002 * (C) Copyright 2000-2006
wdenk47d1a6e2002-11-03 00:01:44 +00003 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23
Marian Balakowiczb97a2a02008-01-08 18:14:09 +010024#define DEBUG
25
wdenk47d1a6e2002-11-03 00:01:44 +000026/*
27 * Boot support
28 */
29#include <common.h>
30#include <watchdog.h>
31#include <command.h>
wdenk47d1a6e2002-11-03 00:01:44 +000032#include <image.h>
33#include <malloc.h>
34#include <zlib.h>
wdenkc29fdfc2003-08-29 20:57:53 +000035#include <bzlib.h>
wdenk7f70e852003-05-20 14:25:27 +000036#include <environment.h>
Kumar Gala4ed65522008-02-27 21:51:47 -060037#include <lmb.h>
wdenk47d1a6e2002-11-03 00:01:44 +000038#include <asm/byteorder.h>
wdenk8bde7f72003-06-27 21:31:46 +000039
wdenk47d1a6e2002-11-03 00:01:44 +000040#ifdef CFG_HUSH_PARSER
41#include <hush.h>
42#endif
43
Marian Balakowicz1ee11802008-01-08 18:17:10 +010044DECLARE_GLOBAL_DATA_PTR;
45
46extern int gunzip (void *dst, int dstlen, unsigned char *src, unsigned long *lenp);
47#ifndef CFG_BOOTM_LEN
48#define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */
49#endif
wdenk47d1a6e2002-11-03 00:01:44 +000050
Marian Balakowicz321359f2008-01-08 18:11:43 +010051#ifdef CONFIG_BZIP2
52extern void bz_internal_error(int);
53#endif
wdenk47d1a6e2002-11-03 00:01:44 +000054
Jon Loeligerbaa26db2007-07-08 17:51:39 -050055#if defined(CONFIG_CMD_IMI)
wdenk47d1a6e2002-11-03 00:01:44 +000056static int image_info (unsigned long addr);
57#endif
wdenk27b207f2003-07-24 23:38:38 +000058
Jon Loeligerbaa26db2007-07-08 17:51:39 -050059#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +000060#include <flash.h>
Marian Balakowicze6f2e902005-10-11 19:09:42 +020061extern flash_info_t flash_info[]; /* info for FLASH chips */
wdenk27b207f2003-07-24 23:38:38 +000062static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
63#endif
64
Marian Balakowicz1ee11802008-01-08 18:17:10 +010065#ifdef CONFIG_SILENT_CONSOLE
66static void fixup_silent_linux (void);
67#endif
68
Marian Balakowicz9a4daad2008-02-29 14:58:34 +010069static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010070 bootm_headers_t *images, ulong *os_data, ulong *os_len);
Marian Balakowicz1ee11802008-01-08 18:17:10 +010071extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
wdenk47d1a6e2002-11-03 00:01:44 +000072
73/*
74 * Continue booting an OS image; caller already has:
75 * - copied image header to global variable `header'
76 * - checked header magic number, checksums (both header & image),
77 * - verified image architecture (PPC) and type (KERNEL or MULTI),
78 * - loaded (first part of) image to header load address,
79 * - disabled interrupts.
80 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +010081typedef void boot_os_fn (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010082 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010083 bootm_headers_t *images); /* pointers to os/initrd/fdt */
wdenk47d1a6e2002-11-03 00:01:44 +000084
Marian Balakowicz1ee11802008-01-08 18:17:10 +010085extern boot_os_fn do_bootm_linux;
86static boot_os_fn do_bootm_netbsd;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010087#if defined(CONFIG_LYNXKDI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010088static boot_os_fn do_bootm_lynxkdi;
89extern void lynxkdi_boot (image_header_t *);
wdenkf72da342003-10-10 10:05:42 +000090#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +010091static boot_os_fn do_bootm_rtems;
Jon Loeligerbaa26db2007-07-08 17:51:39 -050092#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010093static boot_os_fn do_bootm_vxworks;
94static boot_os_fn do_bootm_qnxelf;
95int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
96int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Jon Loeliger90253172007-07-10 11:02:44 -050097#endif
wdenk7f70e852003-05-20 14:25:27 +000098#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
Marian Balakowicz1ee11802008-01-08 18:17:10 +010099extern uchar (*env_get_char)(int); /* Returns a character from the environment */
100static boot_os_fn do_bootm_artos;
Stefan Roese15940c92006-03-13 11:16:36 +0100101#endif
102
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100103ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100104static bootm_headers_t images; /* pointers to os/initrd/fdt images */
wdenk47d1a6e2002-11-03 00:01:44 +0000105
Kumar Galae822d7f2008-02-27 21:51:49 -0600106void __board_lmb_reserve(struct lmb *lmb)
107{
108 /* please define platform specific board_lmb_reserve() */
109}
110void board_lmb_reserve(struct lmb *lmb) __attribute__((weak, alias("__board_lmb_reserve")));
111
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100112
113/*******************************************************************/
114/* bootm - boot application image from image in memory */
115/*******************************************************************/
wdenk47d1a6e2002-11-03 00:01:44 +0000116int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
117{
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100118 ulong iflag;
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100119 const char *type_name;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100120 uint unc_len = CFG_BOOTM_LEN;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100121 uint8_t comp, type, os;
wdenk47d1a6e2002-11-03 00:01:44 +0000122
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100123 void *os_hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100124 ulong os_data, os_len;
Marian Balakowicz75824382008-01-31 13:20:06 +0100125 ulong image_start, image_end;
126 ulong load_start, load_end;
Kumar Galad3f2fa02008-02-27 21:51:50 -0600127 ulong mem_start, mem_size;
Marian Balakowicz75824382008-01-31 13:20:06 +0100128
Kumar Gala4ed65522008-02-27 21:51:47 -0600129 struct lmb lmb;
130
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100131 memset ((void *)&images, 0, sizeof (images));
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100132 images.verify = getenv_verify();
Kumar Galaf5614e72008-02-27 21:51:48 -0600133 images.autostart = getenv_autostart();
Kumar Gala4ed65522008-02-27 21:51:47 -0600134 images.lmb = &lmb;
135
136 lmb_init(&lmb);
137
Kumar Galad3f2fa02008-02-27 21:51:50 -0600138 mem_start = getenv_bootm_low();
139 mem_size = getenv_bootm_size();
140
141 lmb_add(&lmb, mem_start, mem_size);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100142
Kumar Galae822d7f2008-02-27 21:51:49 -0600143 board_lmb_reserve(&lmb);
144
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100145 /* get kernel image header, start address and length */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100146 os_hdr = boot_get_kernel (cmdtp, flag, argc, argv,
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100147 &images, &os_data, &os_len);
148 if (os_len == 0)
wdenk47d1a6e2002-11-03 00:01:44 +0000149 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000150
Heiko Schocherfad63402007-07-13 09:54:17 +0200151 show_boot_progress (6);
wdenk47d1a6e2002-11-03 00:01:44 +0000152
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100153 /* get image parameters */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100154 switch (genimg_get_format (os_hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100155 case IMAGE_FORMAT_LEGACY:
156 type = image_get_type (os_hdr);
157 comp = image_get_comp (os_hdr);
158 os = image_get_os (os_hdr);
159
160 image_end = image_get_image_end (os_hdr);
161 load_start = image_get_load (os_hdr);
162 break;
163#if defined(CONFIG_FIT)
164 case IMAGE_FORMAT_FIT:
165 fit_unsupported ("bootm");
166 return 1;
167#endif
168 default:
169 puts ("ERROR: unknown image format type!\n");
170 return 1;
171 }
172
173 image_start = (ulong)os_hdr;
174 load_end = 0;
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100175 type_name = genimg_get_type_name (type);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100176
wdenk47d1a6e2002-11-03 00:01:44 +0000177 /*
178 * We have reached the point of no return: we are going to
179 * overwrite all exception vector code, so we cannot easily
180 * recover from any failures any more...
181 */
wdenk47d1a6e2002-11-03 00:01:44 +0000182 iflag = disable_interrupts();
183
wdenkc7de8292002-11-19 11:04:11 +0000184#ifdef CONFIG_AMIGAONEG3SE
185 /*
wdenk8bde7f72003-06-27 21:31:46 +0000186 * We've possible left the caches enabled during
wdenkc7de8292002-11-19 11:04:11 +0000187 * bios emulation, so turn them off again
188 */
189 icache_disable();
190 invalidate_l1_instruction_cache();
191 flush_data_cache();
192 dcache_disable();
193#endif
194
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100195 switch (comp) {
wdenk47d1a6e2002-11-03 00:01:44 +0000196 case IH_COMP_NONE:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100197 if (load_start == (ulong)os_hdr) {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100198 printf (" XIP %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000199 } else {
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100200 printf (" Loading %s ... ", type_name);
wdenk47d1a6e2002-11-03 00:01:44 +0000201
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100202 memmove_wd ((void *)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100203 (void *)os_data, os_len, CHUNKSZ);
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100204
Marian Balakowicz75824382008-01-31 13:20:06 +0100205 load_end = load_start + os_len;
Marian Balakowiczaf13cdb2008-01-08 18:11:45 +0100206 puts("OK\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000207 }
208 break;
209 case IH_COMP_GZIP:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100210 printf (" Uncompressing %s ... ", type_name);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100211 if (gunzip ((void *)load_start, unc_len,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100212 (uchar *)os_data, &os_len) != 0) {
wdenk4b9206e2004-03-23 22:14:11 +0000213 puts ("GUNZIP ERROR - must RESET board to recover\n");
Heiko Schocherfad63402007-07-13 09:54:17 +0200214 show_boot_progress (-6);
wdenk47d1a6e2002-11-03 00:01:44 +0000215 do_reset (cmdtp, flag, argc, argv);
216 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100217
218 load_end = load_start + os_len;
wdenk47d1a6e2002-11-03 00:01:44 +0000219 break;
wdenkc29fdfc2003-08-29 20:57:53 +0000220#ifdef CONFIG_BZIP2
221 case IH_COMP_BZIP2:
Marian Balakowicz42b73e82008-01-31 13:20:07 +0100222 printf (" Uncompressing %s ... ", type_name);
wdenk5653fc32004-02-08 22:55:38 +0000223 /*
224 * If we've got less than 4 MB of malloc() space,
225 * use slower decompression algorithm which requires
226 * at most 2300 KB of memory.
227 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100228 int i = BZ2_bzBuffToBuffDecompress ((char*)load_start,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100229 &unc_len, (char *)os_data, os_len,
230 CFG_MALLOC_LEN < (4096 * 1024), 0);
wdenkc29fdfc2003-08-29 20:57:53 +0000231 if (i != BZ_OK) {
232 printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i);
Heiko Schocherfad63402007-07-13 09:54:17 +0200233 show_boot_progress (-6);
wdenkc29fdfc2003-08-29 20:57:53 +0000234 do_reset (cmdtp, flag, argc, argv);
235 }
Marian Balakowicz75824382008-01-31 13:20:06 +0100236
237 load_end = load_start + unc_len;
wdenkc29fdfc2003-08-29 20:57:53 +0000238 break;
239#endif /* CONFIG_BZIP2 */
wdenk47d1a6e2002-11-03 00:01:44 +0000240 default:
241 if (iflag)
242 enable_interrupts();
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100243 printf ("Unimplemented compression type %d\n", comp);
Heiko Schocherfad63402007-07-13 09:54:17 +0200244 show_boot_progress (-7);
wdenk47d1a6e2002-11-03 00:01:44 +0000245 return 1;
246 }
wdenk4b9206e2004-03-23 22:14:11 +0000247 puts ("OK\n");
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100248 debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load_start, load_end);
Heiko Schocherfad63402007-07-13 09:54:17 +0200249 show_boot_progress (7);
wdenk47d1a6e2002-11-03 00:01:44 +0000250
Marian Balakowicz75824382008-01-31 13:20:06 +0100251 if ((load_start < image_end) && (load_end > image_start)) {
252 debug ("image_start = 0x%lX, image_end = 0x%lx\n", image_start, image_end);
253 debug ("load_start = 0x%lx, load_end = 0x%lx\n", load_start, load_end);
254
255 puts ("ERROR: image overwritten - must RESET the board to recover.\n");
256 do_reset (cmdtp, flag, argc, argv);
257 }
258
Heiko Schocherfad63402007-07-13 09:54:17 +0200259 show_boot_progress (8);
wdenk47d1a6e2002-11-03 00:01:44 +0000260
Kumar Gala4ed65522008-02-27 21:51:47 -0600261 lmb_reserve(&lmb, load_start, (load_end - load_start));
262
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100263 switch (os) {
wdenk47d1a6e2002-11-03 00:01:44 +0000264 default: /* handled by (original) Linux case */
265 case IH_OS_LINUX:
wdenkf72da342003-10-10 10:05:42 +0000266#ifdef CONFIG_SILENT_CONSOLE
267 fixup_silent_linux();
268#endif
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100269 do_bootm_linux (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000270 break;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100271
wdenk47d1a6e2002-11-03 00:01:44 +0000272 case IH_OS_NETBSD:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100273 do_bootm_netbsd (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000274 break;
wdenk8bde7f72003-06-27 21:31:46 +0000275
wdenk1f4bb372003-07-27 00:21:01 +0000276#ifdef CONFIG_LYNXKDI
277 case IH_OS_LYNXOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100278 do_bootm_lynxkdi (cmdtp, flag, argc, argv, &images);
wdenk1f4bb372003-07-27 00:21:01 +0000279 break;
280#endif
281
wdenkd791b1d2003-04-20 14:04:18 +0000282 case IH_OS_RTEMS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100283 do_bootm_rtems (cmdtp, flag, argc, argv, &images);
wdenkd791b1d2003-04-20 14:04:18 +0000284 break;
wdenk8bde7f72003-06-27 21:31:46 +0000285
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500286#if defined(CONFIG_CMD_ELF)
wdenk47d1a6e2002-11-03 00:01:44 +0000287 case IH_OS_VXWORKS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100288 do_bootm_vxworks (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000289 break;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100290
wdenk47d1a6e2002-11-03 00:01:44 +0000291 case IH_OS_QNX:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100292 do_bootm_qnxelf (cmdtp, flag, argc, argv, &images);
wdenk47d1a6e2002-11-03 00:01:44 +0000293 break;
Jon Loeliger90253172007-07-10 11:02:44 -0500294#endif
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100295
wdenk7f70e852003-05-20 14:25:27 +0000296#ifdef CONFIG_ARTOS
297 case IH_OS_ARTOS:
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100298 do_bootm_artos (cmdtp, flag, argc, argv, &images);
wdenk7f70e852003-05-20 14:25:27 +0000299 break;
300#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000301 }
302
Heiko Schocherfad63402007-07-13 09:54:17 +0200303 show_boot_progress (-9);
wdenk47d1a6e2002-11-03 00:01:44 +0000304#ifdef DEBUG
wdenk4b9206e2004-03-23 22:14:11 +0000305 puts ("\n## Control returned to monitor - resetting...\n");
wdenk47d1a6e2002-11-03 00:01:44 +0000306 do_reset (cmdtp, flag, argc, argv);
307#endif
308 return 1;
309}
310
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100311/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100312 * image_get_kernel - verify legacy format kernel image
313 * @img_addr: in RAM address of the legacy format image to be verified
314 * @verify: data CRC verification flag
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100315 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100316 * image_get_kernel() verifies legacy image integrity and returns pointer to
317 * legacy image header if image verification was completed successfully.
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100318 *
319 * returns:
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100320 * pointer to a legacy image header if valid image was found
321 * otherwise return NULL
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100322 */
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100323static image_header_t *image_get_kernel (ulong img_addr, int verify)
324{
325 image_header_t *hdr = (image_header_t *)img_addr;
326
327 if (!image_check_magic(hdr)) {
328 puts ("Bad Magic Number\n");
329 show_boot_progress (-1);
330 return NULL;
331 }
332 show_boot_progress (2);
333
334 if (!image_check_hcrc (hdr)) {
335 puts ("Bad Header Checksum\n");
336 show_boot_progress (-2);
337 return NULL;
338 }
339
340 show_boot_progress (3);
341 image_print_contents (hdr);
342
343 if (verify) {
344 puts (" Verifying Checksum ... ");
345 if (!image_check_dcrc (hdr)) {
346 printf ("Bad Data CRC\n");
347 show_boot_progress (-3);
348 return NULL;
349 }
350 puts ("OK\n");
351 }
352 show_boot_progress (4);
353
354 if (!image_check_target_arch (hdr)) {
355 printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr));
356 show_boot_progress (-4);
357 return NULL;
358 }
359 return hdr;
360}
361
362/**
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100363 * boot_get_kernel - find kernel image
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100364 * @os_data: pointer to a ulong variable, will hold os data start address
365 * @os_len: pointer to a ulong variable, will hold os data length
366 *
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100367 * boot_get_kernel() tries to find a kernel image, verifies its integrity
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100368 * and locates kernel data.
369 *
370 * returns:
371 * pointer to image header if valid image was found, plus kernel start
372 * address and length, otherwise NULL
373 */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100374static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100375 bootm_headers_t *images, ulong *os_data, ulong *os_len)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100376{
377 image_header_t *hdr;
378 ulong img_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100379#if defined(CONFIG_FIT)
380 void *fit_hdr;
381 const char *fit_uname_config = NULL;
382 const char *fit_uname_kernel = NULL;
383#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100384
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100385 /* find out kernel image address */
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100386 if (argc < 2) {
387 img_addr = load_addr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100388 debug ("* kernel: default image load address = 0x%08lx\n",
389 load_addr);
390#if defined(CONFIG_FIT)
391 } else if (fit_parse_conf (argv[1], load_addr, &img_addr,
392 &fit_uname_config)) {
393 debug ("* kernel: config '%s' from image at 0x%08lx\n",
394 fit_uname_config, img_addr);
395 } else if (fit_parse_subimage (argv[1], load_addr, &img_addr,
396 &fit_uname_kernel)) {
397 debug ("* kernel: subimage '%s' from image at 0x%08lx\n",
398 fit_uname_kernel, img_addr);
399#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100400 } else {
401 img_addr = simple_strtoul(argv[1], NULL, 16);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100402 debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100403 }
404
405 show_boot_progress (1);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100406 printf ("## Booting kernel image at %08lx ...\n", img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100407
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100408 /* copy from dataflash if needed */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100409 img_addr = genimg_get_image (img_addr);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100410
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100411 /* check image type, for FIT images get FIT kernel node */
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100412 switch (genimg_get_format ((void *)img_addr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100413 case IMAGE_FORMAT_LEGACY:
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100414
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100415 debug ("* kernel: legacy format image\n");
Marian Balakowicz1efd4362008-02-27 11:02:07 +0100416 hdr = image_get_kernel (img_addr, images->verify);
417 if (!hdr)
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100418 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100419 show_boot_progress (5);
420
421 switch (image_get_type (hdr)) {
422 case IH_TYPE_KERNEL:
423 *os_data = image_get_data (hdr);
424 *os_len = image_get_data_size (hdr);
425 break;
426 case IH_TYPE_MULTI:
427 image_multi_getimg (hdr, 0, os_data, os_len);
428 break;
429 default:
430 printf ("Wrong Image Type for %s command\n", cmdtp->name);
431 show_boot_progress (-5);
432 return NULL;
433 }
434 images->legacy_hdr_os = hdr;
435 images->legacy_hdr_valid = 1;
436
437 break;
438#if defined(CONFIG_FIT)
439 case IMAGE_FORMAT_FIT:
440 fit_hdr = (void *)img_addr;
441 debug ("* kernel: FIT format image\n");
442 fit_unsupported ("kernel");
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100443 return NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100444#endif
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100445 default:
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100446 printf ("Wrong Image Format for %s command\n", cmdtp->name);
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100447 return NULL;
448 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100449
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100450 debug (" kernel data at 0x%08lx, end = 0x%08lx\n",
451 *os_data, *os_data + *os_len);
452
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100453 return (void *)img_addr;
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100454}
455
wdenk0d498392003-07-01 21:06:45 +0000456U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100457 bootm, CFG_MAXARGS, 1, do_bootm,
458 "bootm - boot application image from memory\n",
459 "[addr [arg ...]]\n - boot application image stored in memory\n"
460 "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n"
461 "\t'arg' can be the address of an initrd image\n"
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100462#if defined(CONFIG_OF_LIBFDT)
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500463 "\tWhen booting a Linux kernel which requires a flat device-tree\n"
Detlev Zundel5441f612007-10-19 16:47:26 +0200464 "\ta third argument is required which is the address of the\n"
Matthew McClintock98a9c4d2006-06-28 10:41:37 -0500465 "\tdevice-tree blob. To boot that kernel without an initrd image,\n"
466 "\tuse a '-' for the second argument. If you do not pass a third\n"
467 "\ta bd_info struct will be passed instead\n"
468#endif
wdenk8bde7f72003-06-27 21:31:46 +0000469);
470
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100471/*******************************************************************/
472/* bootd - boot default image */
473/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500474#if defined(CONFIG_CMD_BOOTD)
wdenk47d1a6e2002-11-03 00:01:44 +0000475int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
476{
477 int rcode = 0;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100478
wdenk47d1a6e2002-11-03 00:01:44 +0000479#ifndef CFG_HUSH_PARSER
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100480 if (run_command (getenv ("bootcmd"), flag) < 0)
481 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000482#else
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100483 if (parse_string_outer (getenv ("bootcmd"),
484 FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0)
485 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000486#endif
487 return rcode;
488}
wdenk8bde7f72003-06-27 21:31:46 +0000489
wdenk0d498392003-07-01 21:06:45 +0000490U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100491 boot, 1, 1, do_bootd,
492 "boot - boot default, i.e., run 'bootcmd'\n",
wdenk9d2b18a2003-06-28 23:11:04 +0000493 NULL
494);
495
496/* keep old command name "bootd" for backward compatibility */
wdenk0d498392003-07-01 21:06:45 +0000497U_BOOT_CMD(
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100498 bootd, 1, 1, do_bootd,
499 "bootd - boot default, i.e., run 'bootcmd'\n",
wdenk8bde7f72003-06-27 21:31:46 +0000500 NULL
501);
502
wdenk47d1a6e2002-11-03 00:01:44 +0000503#endif
504
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100505
506/*******************************************************************/
507/* iminfo - print header info for a requested image */
508/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500509#if defined(CONFIG_CMD_IMI)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100510int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
wdenk47d1a6e2002-11-03 00:01:44 +0000511{
512 int arg;
513 ulong addr;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100514 int rcode = 0;
wdenk47d1a6e2002-11-03 00:01:44 +0000515
516 if (argc < 2) {
517 return image_info (load_addr);
518 }
519
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100520 for (arg = 1; arg < argc; ++arg) {
521 addr = simple_strtoul (argv[arg], NULL, 16);
522 if (image_info (addr) != 0)
523 rcode = 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000524 }
525 return rcode;
526}
527
528static int image_info (ulong addr)
529{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100530 void *hdr = (void *)addr;
wdenk47d1a6e2002-11-03 00:01:44 +0000531
532 printf ("\n## Checking Image at %08lx ...\n", addr);
533
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100534 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100535 case IMAGE_FORMAT_LEGACY:
536 puts (" Legacy image found\n");
537 if (!image_check_magic (hdr)) {
538 puts (" Bad Magic Number\n");
539 return 1;
540 }
541
542 if (!image_check_hcrc (hdr)) {
543 puts (" Bad Header Checksum\n");
544 return 1;
545 }
546
547 image_print_contents (hdr);
548
549 puts (" Verifying Checksum ... ");
550 if (!image_check_dcrc (hdr)) {
551 puts (" Bad Data CRC\n");
552 return 1;
553 }
554 puts ("OK\n");
555 return 0;
556#if defined(CONFIG_FIT)
557 case IMAGE_FORMAT_FIT:
558 puts (" FIT image found\n");
559 fit_unsupported ("iminfo");
560 return 0;
561#endif
562 default:
563 puts ("Unknown image format!\n");
564 break;
wdenk47d1a6e2002-11-03 00:01:44 +0000565 }
566
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100567 return 1;
wdenk47d1a6e2002-11-03 00:01:44 +0000568}
wdenk0d498392003-07-01 21:06:45 +0000569
570U_BOOT_CMD(
571 iminfo, CFG_MAXARGS, 1, do_iminfo,
wdenk8bde7f72003-06-27 21:31:46 +0000572 "iminfo - print header information for application image\n",
573 "addr [addr ...]\n"
574 " - print header information for application image starting at\n"
575 " address 'addr' in memory; this includes verification of the\n"
576 " image contents (magic number, header and payload checksums)\n"
577);
Jon Loeliger90253172007-07-10 11:02:44 -0500578#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000579
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100580
581/*******************************************************************/
582/* imls - list all images found in flash */
583/*******************************************************************/
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500584#if defined(CONFIG_CMD_IMLS)
wdenk27b207f2003-07-24 23:38:38 +0000585int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[])
586{
587 flash_info_t *info;
588 int i, j;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100589 void *hdr;
wdenk27b207f2003-07-24 23:38:38 +0000590
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100591 for (i = 0, info = &flash_info[0];
592 i < CFG_MAX_FLASH_BANKS; ++i, ++info) {
593
wdenk27b207f2003-07-24 23:38:38 +0000594 if (info->flash_id == FLASH_UNKNOWN)
595 goto next_bank;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100596 for (j = 0; j < info->sector_count; ++j) {
wdenk27b207f2003-07-24 23:38:38 +0000597
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100598 hdr = (void *)info->start[j];
599 if (!hdr)
wdenk27b207f2003-07-24 23:38:38 +0000600 goto next_sector;
601
Marian Balakowicz9a4daad2008-02-29 14:58:34 +0100602 switch (genimg_get_format (hdr)) {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100603 case IMAGE_FORMAT_LEGACY:
604 if (!image_check_magic (hdr))
605 goto next_sector;
606
607 if (!image_check_hcrc (hdr))
608 goto next_sector;
609
610 printf ("Legacy Image at %08lX:\n", (ulong)hdr);
611 image_print_contents (hdr);
612
613 puts (" Verifying Checksum ... ");
614 if (!image_check_dcrc (hdr)) {
615 puts ("Bad Data CRC\n");
616 } else {
617 puts ("OK\n");
618 }
619 break;
620#if defined(CONFIG_FIT)
621 case IMAGE_FORMAT_FIT:
622 printf ("FIT Image at %08lX:\n", (ulong)hdr);
623 fit_unsupported ("imls");
624 break;
625#endif
626 default:
wdenk27b207f2003-07-24 23:38:38 +0000627 goto next_sector;
wdenk5bb226e2003-11-17 21:14:37 +0000628 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100629
wdenkbdccc4f2003-08-05 17:43:17 +0000630next_sector: ;
wdenk27b207f2003-07-24 23:38:38 +0000631 }
wdenkbdccc4f2003-08-05 17:43:17 +0000632next_bank: ;
wdenk27b207f2003-07-24 23:38:38 +0000633 }
634
635 return (0);
636}
637
638U_BOOT_CMD(
639 imls, 1, 1, do_imls,
640 "imls - list all images found in flash\n",
641 "\n"
642 " - Prints information about all images found at sector\n"
643 " boundaries in flash.\n"
644);
Jon Loeliger90253172007-07-10 11:02:44 -0500645#endif
wdenk27b207f2003-07-24 23:38:38 +0000646
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100647/*******************************************************************/
Marian Balakowicz5cf746c2008-01-31 13:59:09 +0100648/* helper routines */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100649/*******************************************************************/
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100650#ifdef CONFIG_SILENT_CONSOLE
651static void fixup_silent_linux ()
652{
653 char buf[256], *start, *end;
654 char *cmdline = getenv ("bootargs");
655
656 /* Only fix cmdline when requested */
657 if (!(gd->flags & GD_FLG_SILENT))
658 return;
659
660 debug ("before silent fix-up: %s\n", cmdline);
661 if (cmdline) {
662 if ((start = strstr (cmdline, "console=")) != NULL) {
663 end = strchr (start, ' ');
664 strncpy (buf, cmdline, (start - cmdline + 8));
665 if (end)
666 strcpy (buf + (start - cmdline + 8), end);
667 else
668 buf[start - cmdline + 8] = '\0';
669 } else {
670 strcpy (buf, cmdline);
671 strcat (buf, " console=");
672 }
673 } else {
674 strcpy (buf, "console=");
675 }
676
677 setenv ("bootargs", buf);
678 debug ("after silent fix-up: %s\n", buf);
679}
680#endif /* CONFIG_SILENT_CONSOLE */
681
682
683/*******************************************************************/
684/* OS booting routines */
685/*******************************************************************/
686
687static void do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag,
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100688 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100689 bootm_headers_t *images)
wdenkd791b1d2003-04-20 14:04:18 +0000690{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100691 void (*loader)(bd_t *, image_header_t *, char *, char *);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100692 image_header_t *os_hdr, *hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100693 ulong kernel_data, kernel_len;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100694 char *consdev;
695 char *cmdline;
696
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100697#if defined(CONFIG_FIT)
698 if (!images->legacy_hdr_valid) {
699 fit_unsupported_reset ("NetBSD");
700 do_reset (cmdtp, flag, argc, argv);
701 }
702#endif
703 hdr = images->legacy_hdr_os;
704
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100705 /*
706 * Booting a (NetBSD) kernel image
707 *
708 * This process is pretty similar to a standalone application:
709 * The (first part of an multi-) image must be a stage-2 loader,
710 * which in turn is responsible for loading & invoking the actual
711 * kernel. The only differences are the parameters being passed:
712 * besides the board info strucure, the loader expects a command
713 * line, the name of the console device, and (optionally) the
714 * address of the original image header.
715 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100716 os_hdr = NULL;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100717 if (image_check_type (hdr, IH_TYPE_MULTI)) {
718 image_multi_getimg (hdr, 1, &kernel_data, &kernel_len);
719 if (kernel_len)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100720 os_hdr = hdr;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100721 }
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100722
723 consdev = "";
724#if defined (CONFIG_8xx_CONS_SMC1)
725 consdev = "smc1";
726#elif defined (CONFIG_8xx_CONS_SMC2)
727 consdev = "smc2";
728#elif defined (CONFIG_8xx_CONS_SCC2)
729 consdev = "scc2";
730#elif defined (CONFIG_8xx_CONS_SCC3)
731 consdev = "scc3";
732#endif
733
734 if (argc > 2) {
735 ulong len;
736 int i;
737
738 for (i = 2, len = 0; i < argc; i += 1)
739 len += strlen (argv[i]) + 1;
740 cmdline = malloc (len);
741
742 for (i = 2, len = 0; i < argc; i += 1) {
743 if (i > 2)
744 cmdline[len++] = ' ';
745 strcpy (&cmdline[len], argv[i]);
746 len += strlen (argv[i]);
747 }
748 } else if ((cmdline = getenv ("bootargs")) == NULL) {
749 cmdline = "";
750 }
751
752 loader = (void (*)(bd_t *, image_header_t *, char *, char *))image_get_ep (hdr);
753
754 printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n",
755 (ulong)loader);
756
757 show_boot_progress (15);
758
759 /*
760 * NetBSD Stage-2 Loader Parameters:
761 * r3: ptr to board info data
762 * r4: image address
763 * r5: console device
764 * r6: boot args string
765 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100766 (*loader) (gd->bd, os_hdr, consdev, cmdline);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100767}
768
769#ifdef CONFIG_LYNXKDI
770static void do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag,
771 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100772 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100773{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100774 image_header_t *hdr = images->legacy_hdr_os;
775
776#if defined(CONFIG_FIT)
777 if (!images->legacy_hdr_valid) {
778 fit_unsupported_reset ("Lynx");
779 do_reset (cmdtp, flag, argc, argv);
780 }
781#endif
782
783 lynxkdi_boot ((image_header_t *)hdr);
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100784}
785#endif /* CONFIG_LYNXKDI */
786
787static void do_bootm_rtems (cmd_tbl_t *cmdtp, int flag,
788 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100789 bootm_headers_t *images)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100790{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100791 image_header_t *hdr = images->legacy_hdr_os;
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100792 void (*entry_point)(bd_t *);
wdenkd791b1d2003-04-20 14:04:18 +0000793
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100794#if defined(CONFIG_FIT)
795 if (!images->legacy_hdr_valid) {
796 fit_unsupported_reset ("RTEMS");
797 do_reset (cmdtp, flag, argc, argv);
798 }
799#endif
800
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100801 entry_point = (void (*)(bd_t *))image_get_ep (hdr);
wdenkd791b1d2003-04-20 14:04:18 +0000802
803 printf ("## Transferring control to RTEMS (at address %08lx) ...\n",
804 (ulong)entry_point);
805
Heiko Schocherfad63402007-07-13 09:54:17 +0200806 show_boot_progress (15);
wdenkd791b1d2003-04-20 14:04:18 +0000807
808 /*
809 * RTEMS Parameters:
810 * r3: ptr to board info data
811 */
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100812 (*entry_point)(gd->bd);
wdenkd791b1d2003-04-20 14:04:18 +0000813}
814
Jon Loeligerbaa26db2007-07-08 17:51:39 -0500815#if defined(CONFIG_CMD_ELF)
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100816static void do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag,
817 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100818 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000819{
wdenk47d1a6e2002-11-03 00:01:44 +0000820 char str[80];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100821 image_header_t *hdr = images->legacy_hdr_os;
822
823#if defined(CONFIG_FIT)
824 if (hdr == NULL) {
825 fit_unsupported_reset ("VxWorks");
826 do_reset (cmdtp, flag, argc, argv);
827 }
828#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000829
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100830 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +0000831 setenv("loadaddr", str);
832 do_bootvx(cmdtp, 0, 0, NULL);
833}
834
Marian Balakowiczf13e7b22008-01-08 18:12:17 +0100835static void do_bootm_qnxelf(cmd_tbl_t *cmdtp, int flag,
836 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100837 bootm_headers_t *images)
wdenk47d1a6e2002-11-03 00:01:44 +0000838{
wdenk47d1a6e2002-11-03 00:01:44 +0000839 char *local_args[2];
840 char str[16];
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100841 image_header_t *hdr = images->legacy_hdr_os;
842
843#if defined(CONFIG_FIT)
844 if (!images->legacy_hdr_valid) {
845 fit_unsupported_reset ("QNX");
846 do_reset (cmdtp, flag, argc, argv);
847 }
848#endif
wdenk47d1a6e2002-11-03 00:01:44 +0000849
Marian Balakowiczb97a2a02008-01-08 18:14:09 +0100850 sprintf(str, "%x", image_get_ep (hdr)); /* write entry-point into string */
wdenk47d1a6e2002-11-03 00:01:44 +0000851 local_args[0] = argv[0];
852 local_args[1] = str; /* and provide it via the arguments */
853 do_bootelf(cmdtp, 0, 2, local_args);
854}
Jon Loeliger90253172007-07-10 11:02:44 -0500855#endif
wdenk1f4bb372003-07-27 00:21:01 +0000856
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100857#if defined(CONFIG_ARTOS) && defined(CONFIG_PPC)
858static void do_bootm_artos (cmd_tbl_t *cmdtp, int flag,
859 int argc, char *argv[],
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +0100860 bootm_headers_t *images)
wdenk1f4bb372003-07-27 00:21:01 +0000861{
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100862 ulong top;
863 char *s, *cmdline;
864 char **fwenv, **ss;
865 int i, j, nxt, len, envno, envsz;
866 bd_t *kbd;
867 void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top);
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100868 image_header_t *hdr = images->legacy_hdr_os;
869
870#if defined(CONFIG_FIT)
871 if (!images->legacy_hdr_valid) {
872 fit_unsupported_reset ("ARTOS");
873 do_reset (cmdtp, flag, argc, argv);
874 }
875#endif
wdenk1f4bb372003-07-27 00:21:01 +0000876
Marian Balakowicz1ee11802008-01-08 18:17:10 +0100877 /*
878 * Booting an ARTOS kernel image + application
879 */
880
881 /* this used to be the top of memory, but was wrong... */
882#ifdef CONFIG_PPC
883 /* get stack pointer */
884 asm volatile ("mr %0,1" : "=r"(top) );
885#endif
886 debug ("## Current stack ends at 0x%08lX ", top);
887
888 top -= 2048; /* just to be sure */
889 if (top > CFG_BOOTMAPSZ)
890 top = CFG_BOOTMAPSZ;
891 top &= ~0xF;
892
893 debug ("=> set upper limit to 0x%08lX\n", top);
894
895 /* first check the artos specific boot args, then the linux args*/
896 if ((s = getenv( "abootargs")) == NULL && (s = getenv ("bootargs")) == NULL)
897 s = "";
898
899 /* get length of cmdline, and place it */
900 len = strlen (s);
901 top = (top - (len + 1)) & ~0xF;
902 cmdline = (char *)top;
903 debug ("## cmdline at 0x%08lX ", top);
904 strcpy (cmdline, s);
905
906 /* copy bdinfo */
907 top = (top - sizeof (bd_t)) & ~0xF;
908 debug ("## bd at 0x%08lX ", top);
909 kbd = (bd_t *)top;
910 memcpy (kbd, gd->bd, sizeof (bd_t));
911
912 /* first find number of env entries, and their size */
913 envno = 0;
914 envsz = 0;
915 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
916 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
917 ;
918 envno++;
919 envsz += (nxt - i) + 1; /* plus trailing zero */
920 }
921 envno++; /* plus the terminating zero */
922 debug ("## %u envvars total size %u ", envno, envsz);
923
924 top = (top - sizeof (char **) * envno) & ~0xF;
925 fwenv = (char **)top;
926 debug ("## fwenv at 0x%08lX ", top);
927
928 top = (top - envsz) & ~0xF;
929 s = (char *)top;
930 ss = fwenv;
931
932 /* now copy them */
933 for (i = 0; env_get_char (i) != '\0'; i = nxt + 1) {
934 for (nxt = i; env_get_char (nxt) != '\0'; ++nxt)
935 ;
936 *ss++ = s;
937 for (j = i; j < nxt; ++j)
938 *s++ = env_get_char (j);
939 *s++ = '\0';
940 }
941 *ss++ = NULL; /* terminate */
942
943 entry = (void (*)(bd_t *, char *, char **, ulong))image_get_ep (hdr);
944 (*entry) (kbd, cmdline, fwenv, top);
945}
946#endif