]>
Commit | Line | Data |
---|---|---|
47d1a6e1 | 1 | /* |
ca95c9df | 2 | * (C) Copyright 2000-2009 |
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> | |
a31e091a | 33 | #include <u-boot/zlib.h> |
c29fdfc1 | 34 | #include <bzlib.h> |
7f70e853 | 35 | #include <environment.h> |
4ed6552f | 36 | #include <lmb.h> |
49c3a861 | 37 | #include <linux/ctype.h> |
47d1a6e1 | 38 | #include <asm/byteorder.h> |
8bde7f77 | 39 | |
ebb86c4e | 40 | #if defined(CONFIG_CMD_USB) |
3d71c81a MK |
41 | #include <usb.h> |
42 | #endif | |
43 | ||
6d0f6bcf | 44 | #ifdef CONFIG_SYS_HUSH_PARSER |
47d1a6e1 WD |
45 | #include <hush.h> |
46 | #endif | |
47 | ||
54f9c866 KG |
48 | #if defined(CONFIG_OF_LIBFDT) |
49 | #include <fdt.h> | |
50 | #include <libfdt.h> | |
51 | #include <fdt_support.h> | |
52 | #endif | |
53 | ||
fc9c1727 | 54 | #ifdef CONFIG_LZMA |
fc9c1727 | 55 | #include <lzma/LzmaTypes.h> |
caf72ff3 | 56 | #include <lzma/LzmaDec.h> |
fc9c1727 LCM |
57 | #include <lzma/LzmaTools.h> |
58 | #endif /* CONFIG_LZMA */ | |
59 | ||
20dde48b PK |
60 | #ifdef CONFIG_LZO |
61 | #include <linux/lzo.h> | |
62 | #endif /* CONFIG_LZO */ | |
63 | ||
1ee1180b | 64 | DECLARE_GLOBAL_DATA_PTR; |
228f29ac | 65 | |
6d0f6bcf JCPV |
66 | #ifndef CONFIG_SYS_BOOTM_LEN |
67 | #define CONFIG_SYS_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */ | |
2abbe075 WD |
68 | #endif |
69 | ||
321359f2 MB |
70 | #ifdef CONFIG_BZIP2 |
71 | extern void bz_internal_error(int); | |
47d1a6e1 WD |
72 | #endif |
73 | ||
baa26db4 | 74 | #if defined(CONFIG_CMD_IMI) |
47d1a6e1 WD |
75 | static int image_info (unsigned long addr); |
76 | #endif | |
27b207fd | 77 | |
baa26db4 | 78 | #if defined(CONFIG_CMD_IMLS) |
27b207fd | 79 | #include <flash.h> |
ca5def3f | 80 | #include <mtd/cfi_flash.h> |
e6f2e902 | 81 | extern flash_info_t flash_info[]; /* info for FLASH chips */ |
54841ab5 | 82 | static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
27b207fd WD |
83 | #endif |
84 | ||
1ee1180b MB |
85 | #ifdef CONFIG_SILENT_CONSOLE |
86 | static void fixup_silent_linux (void); | |
87 | #endif | |
47d1a6e1 | 88 | |
6986a385 MB |
89 | static image_header_t *image_get_kernel (ulong img_addr, int verify); |
90 | #if defined(CONFIG_FIT) | |
91 | static int fit_check_kernel (const void *fit, int os_noffset, int verify); | |
2262cfee WD |
92 | #endif |
93 | ||
54841ab5 | 94 | static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag,int argc, char * const argv[], |
8a5ea3e6 | 95 | bootm_headers_t *images, ulong *os_data, ulong *os_len); |
54841ab5 | 96 | extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
47d1a6e1 WD |
97 | |
98 | /* | |
99 | * Continue booting an OS image; caller already has: | |
100 | * - copied image header to global variable `header' | |
101 | * - checked header magic number, checksums (both header & image), | |
102 | * - verified image architecture (PPC) and type (KERNEL or MULTI), | |
103 | * - loaded (first part of) image to header load address, | |
104 | * - disabled interrupts. | |
105 | */ | |
54841ab5 | 106 | typedef int boot_os_fn (int flag, int argc, char * const argv[], |
8a5ea3e6 | 107 | bootm_headers_t *images); /* pointers to os/initrd/fdt */ |
1ee1180b | 108 | |
b1d0db18 | 109 | #ifdef CONFIG_BOOTM_LINUX |
1ee1180b | 110 | extern boot_os_fn do_bootm_linux; |
b1d0db18 KG |
111 | #endif |
112 | #ifdef CONFIG_BOOTM_NETBSD | |
1ee1180b | 113 | static boot_os_fn do_bootm_netbsd; |
b1d0db18 | 114 | #endif |
f13e7b2e | 115 | #if defined(CONFIG_LYNXKDI) |
1ee1180b MB |
116 | static boot_os_fn do_bootm_lynxkdi; |
117 | extern void lynxkdi_boot (image_header_t *); | |
47d1a6e1 | 118 | #endif |
b1d0db18 | 119 | #ifdef CONFIG_BOOTM_RTEMS |
1ee1180b | 120 | static boot_os_fn do_bootm_rtems; |
b1d0db18 | 121 | #endif |
baa26db4 | 122 | #if defined(CONFIG_CMD_ELF) |
1ee1180b MB |
123 | static boot_os_fn do_bootm_vxworks; |
124 | static boot_os_fn do_bootm_qnxelf; | |
54841ab5 WD |
125 | int do_bootvx (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); |
126 | int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]); | |
90253178 | 127 | #endif |
f5ed9e39 PT |
128 | #if defined(CONFIG_INTEGRITY) |
129 | static boot_os_fn do_bootm_integrity; | |
130 | #endif | |
47d1a6e1 | 131 | |
0008555f | 132 | static boot_os_fn *boot_os[] = { |
b1d0db18 | 133 | #ifdef CONFIG_BOOTM_LINUX |
be083159 | 134 | [IH_OS_LINUX] = do_bootm_linux, |
b1d0db18 KG |
135 | #endif |
136 | #ifdef CONFIG_BOOTM_NETBSD | |
be083159 | 137 | [IH_OS_NETBSD] = do_bootm_netbsd, |
b1d0db18 | 138 | #endif |
be083159 KG |
139 | #ifdef CONFIG_LYNXKDI |
140 | [IH_OS_LYNXOS] = do_bootm_lynxkdi, | |
141 | #endif | |
b1d0db18 | 142 | #ifdef CONFIG_BOOTM_RTEMS |
be083159 | 143 | [IH_OS_RTEMS] = do_bootm_rtems, |
b1d0db18 | 144 | #endif |
be083159 KG |
145 | #if defined(CONFIG_CMD_ELF) |
146 | [IH_OS_VXWORKS] = do_bootm_vxworks, | |
147 | [IH_OS_QNX] = do_bootm_qnxelf, | |
148 | #endif | |
149 | #ifdef CONFIG_INTEGRITY | |
150 | [IH_OS_INTEGRITY] = do_bootm_integrity, | |
151 | #endif | |
152 | }; | |
153 | ||
6d0f6bcf | 154 | ulong load_addr = CONFIG_SYS_LOAD_ADDR; /* Default Load Address */ |
d5934ad7 | 155 | static bootm_headers_t images; /* pointers to os/initrd/fdt images */ |
15940c9a | 156 | |
3dfad40a KG |
157 | /* Allow for arch specific config before we boot */ |
158 | void __arch_preboot_os(void) | |
159 | { | |
160 | /* please define platform specific arch_preboot_os() */ | |
161 | } | |
162 | void arch_preboot_os(void) __attribute__((weak, alias("__arch_preboot_os"))); | |
163 | ||
c4f9419c KG |
164 | #if defined(__ARM__) |
165 | #define IH_INITRD_ARCH IH_ARCH_ARM | |
166 | #elif defined(__avr32__) | |
167 | #define IH_INITRD_ARCH IH_ARCH_AVR32 | |
168 | #elif defined(__bfin__) | |
169 | #define IH_INITRD_ARCH IH_ARCH_BLACKFIN | |
170 | #elif defined(__I386__) | |
171 | #define IH_INITRD_ARCH IH_ARCH_I386 | |
172 | #elif defined(__M68K__) | |
173 | #define IH_INITRD_ARCH IH_ARCH_M68K | |
174 | #elif defined(__microblaze__) | |
175 | #define IH_INITRD_ARCH IH_ARCH_MICROBLAZE | |
176 | #elif defined(__mips__) | |
177 | #define IH_INITRD_ARCH IH_ARCH_MIPS | |
c4f9419c KG |
178 | #elif defined(__nios2__) |
179 | #define IH_INITRD_ARCH IH_ARCH_NIOS2 | |
180 | #elif defined(__PPC__) | |
181 | #define IH_INITRD_ARCH IH_ARCH_PPC | |
182 | #elif defined(__sh__) | |
183 | #define IH_INITRD_ARCH IH_ARCH_SH | |
184 | #elif defined(__sparc__) | |
185 | #define IH_INITRD_ARCH IH_ARCH_SPARC | |
186 | #else | |
187 | # error Unknown CPU type | |
188 | #endif | |
47d1a6e1 | 189 | |
a16028da | 190 | static void bootm_start_lmb(void) |
47d1a6e1 | 191 | { |
a16028da | 192 | #ifdef CONFIG_LMB |
391fd93a BB |
193 | ulong mem_start; |
194 | phys_size_t mem_size; | |
47d1a6e1 | 195 | |
e906cfae | 196 | lmb_init(&images.lmb); |
47d1a6e1 | 197 | |
d3f2fa0d KG |
198 | mem_start = getenv_bootm_low(); |
199 | mem_size = getenv_bootm_size(); | |
47d1a6e1 | 200 | |
e906cfae | 201 | lmb_add(&images.lmb, (phys_addr_t)mem_start, mem_size); |
47d1a6e1 | 202 | |
76da19df | 203 | arch_lmb_reserve(&images.lmb); |
e906cfae | 204 | board_lmb_reserve(&images.lmb); |
a16028da MF |
205 | #else |
206 | # define lmb_reserve(lmb, base, size) | |
207 | #endif | |
208 | } | |
209 | ||
54841ab5 | 210 | static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
a16028da MF |
211 | { |
212 | void *os_hdr; | |
213 | int ret; | |
214 | ||
215 | memset ((void *)&images, 0, sizeof (images)); | |
216 | images.verify = getenv_yesno ("verify"); | |
217 | ||
218 | bootm_start_lmb(); | |
47d1a6e1 | 219 | |
5cf746c3 | 220 | /* get kernel image header, start address and length */ |
9a4daad0 | 221 | os_hdr = boot_get_kernel (cmdtp, flag, argc, argv, |
396f635b KG |
222 | &images, &images.os.image_start, &images.os.image_len); |
223 | if (images.os.image_len == 0) { | |
6986a385 | 224 | puts ("ERROR: can't get kernel image!\n"); |
47d1a6e1 | 225 | return 1; |
bccae903 | 226 | } |
bccae903 | 227 | |
d5934ad7 | 228 | /* get image parameters */ |
9a4daad0 | 229 | switch (genimg_get_format (os_hdr)) { |
d5934ad7 | 230 | case IMAGE_FORMAT_LEGACY: |
396f635b KG |
231 | images.os.type = image_get_type (os_hdr); |
232 | images.os.comp = image_get_comp (os_hdr); | |
233 | images.os.os = image_get_os (os_hdr); | |
bccae903 | 234 | |
396f635b KG |
235 | images.os.end = image_get_image_end (os_hdr); |
236 | images.os.load = image_get_load (os_hdr); | |
d5934ad7 MB |
237 | break; |
238 | #if defined(CONFIG_FIT) | |
239 | case IMAGE_FORMAT_FIT: | |
3dfe1101 | 240 | if (fit_image_get_type (images.fit_hdr_os, |
396f635b | 241 | images.fit_noffset_os, &images.os.type)) { |
6986a385 | 242 | puts ("Can't get image type!\n"); |
1372cce2 | 243 | show_boot_progress (-109); |
6986a385 MB |
244 | return 1; |
245 | } | |
47d1a6e1 | 246 | |
3dfe1101 | 247 | if (fit_image_get_comp (images.fit_hdr_os, |
396f635b | 248 | images.fit_noffset_os, &images.os.comp)) { |
6986a385 | 249 | puts ("Can't get image compression!\n"); |
1372cce2 | 250 | show_boot_progress (-110); |
6986a385 MB |
251 | return 1; |
252 | } | |
47d1a6e1 | 253 | |
3dfe1101 | 254 | if (fit_image_get_os (images.fit_hdr_os, |
396f635b | 255 | images.fit_noffset_os, &images.os.os)) { |
6986a385 | 256 | puts ("Can't get image OS!\n"); |
1372cce2 | 257 | show_boot_progress (-111); |
47d1a6e1 WD |
258 | return 1; |
259 | } | |
47d1a6e1 | 260 | |
396f635b | 261 | images.os.end = fit_get_end (images.fit_hdr_os); |
6986a385 | 262 | |
3dfe1101 | 263 | if (fit_image_get_load (images.fit_hdr_os, images.fit_noffset_os, |
396f635b | 264 | &images.os.load)) { |
6986a385 | 265 | puts ("Can't get image load address!\n"); |
1372cce2 | 266 | show_boot_progress (-112); |
6986a385 | 267 | return 1; |
b13fb01a WD |
268 | } |
269 | break; | |
d5934ad7 MB |
270 | #endif |
271 | default: | |
272 | puts ("ERROR: unknown image format type!\n"); | |
47d1a6e1 WD |
273 | return 1; |
274 | } | |
d5934ad7 | 275 | |
c160a954 KG |
276 | /* find kernel entry point */ |
277 | if (images.legacy_hdr_valid) { | |
278 | images.ep = image_get_ep (&images.legacy_hdr_os_copy); | |
279 | #if defined(CONFIG_FIT) | |
280 | } else if (images.fit_uname_os) { | |
281 | ret = fit_image_get_entry (images.fit_hdr_os, | |
282 | images.fit_noffset_os, &images.ep); | |
283 | if (ret) { | |
284 | puts ("Can't get entry point property!\n"); | |
285 | return 1; | |
286 | } | |
287 | #endif | |
288 | } else { | |
289 | puts ("Could not find kernel entry point!\n"); | |
290 | return 1; | |
291 | } | |
292 | ||
24de2f4b HS |
293 | if (((images.os.type == IH_TYPE_KERNEL) || |
294 | (images.os.type == IH_TYPE_MULTI)) && | |
8b828a8f | 295 | (images.os.os == IH_OS_LINUX)) { |
c4f9419c KG |
296 | /* find ramdisk */ |
297 | ret = boot_get_ramdisk (argc, argv, &images, IH_INITRD_ARCH, | |
298 | &images.rd_start, &images.rd_end); | |
299 | if (ret) { | |
ea86b9e6 | 300 | puts ("Ramdisk image is corrupt or invalid\n"); |
c4f9419c KG |
301 | return 1; |
302 | } | |
06a09918 KG |
303 | |
304 | #if defined(CONFIG_OF_LIBFDT) | |
1d9af0be | 305 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) |
06a09918 KG |
306 | /* find flattened device tree */ |
307 | ret = boot_get_fdt (flag, argc, argv, &images, | |
308 | &images.ft_addr, &images.ft_len); | |
309 | if (ret) { | |
310 | puts ("Could not find a valid device tree\n"); | |
311 | return 1; | |
312 | } | |
54f9c866 KG |
313 | |
314 | set_working_fdt_addr(images.ft_addr); | |
1d9af0be | 315 | #endif |
06a09918 | 316 | #endif |
c4f9419c KG |
317 | } |
318 | ||
396f635b | 319 | images.os.start = (ulong)os_hdr; |
49c3a861 | 320 | images.state = BOOTM_STATE_START; |
47d1a6e1 | 321 | |
396f635b KG |
322 | return 0; |
323 | } | |
3d71c81a | 324 | |
396f635b KG |
325 | #define BOOTM_ERR_RESET -1 |
326 | #define BOOTM_ERR_OVERLAP -2 | |
327 | #define BOOTM_ERR_UNIMPLEMENTED -3 | |
328 | static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress) | |
329 | { | |
330 | uint8_t comp = os.comp; | |
331 | ulong load = os.load; | |
332 | ulong blob_start = os.start; | |
333 | ulong blob_end = os.end; | |
334 | ulong image_start = os.image_start; | |
335 | ulong image_len = os.image_len; | |
6d0f6bcf | 336 | uint unc_len = CONFIG_SYS_BOOTM_LEN; |
60fdc5f2 MW |
337 | #if defined(CONFIG_LZMA) || defined(CONFIG_LZO) |
338 | int ret; | |
339 | #endif /* defined(CONFIG_LZMA) || defined(CONFIG_LZO) */ | |
3d71c81a | 340 | |
396f635b | 341 | const char *type_name = genimg_get_type_name (os.type); |
c7de829c | 342 | |
d5934ad7 | 343 | switch (comp) { |
47d1a6e1 | 344 | case IH_COMP_NONE: |
396f635b | 345 | if (load == blob_start) { |
42b73e8e | 346 | printf (" XIP %s ... ", type_name); |
47d1a6e1 | 347 | } else { |
42b73e8e | 348 | printf (" Loading %s ... ", type_name); |
54fa2c5b LJ |
349 | memmove_wd ((void *)load, (void *)image_start, |
350 | image_len, CHUNKSZ); | |
47d1a6e1 | 351 | } |
396f635b | 352 | *load_end = load + image_len; |
2e752be3 | 353 | puts("OK\n"); |
47d1a6e1 | 354 | break; |
44431cab | 355 | #ifdef CONFIG_GZIP |
47d1a6e1 | 356 | case IH_COMP_GZIP: |
42b73e8e | 357 | printf (" Uncompressing %s ... ", type_name); |
396f635b KG |
358 | if (gunzip ((void *)load, unc_len, |
359 | (uchar *)image_start, &image_len) != 0) { | |
107b801c | 360 | puts ("GUNZIP: uncompress, out-of-mem or overwrite error " |
2682ce8a | 361 | "- must RESET board to recover\n"); |
396f635b KG |
362 | if (boot_progress) |
363 | show_boot_progress (-6); | |
364 | return BOOTM_ERR_RESET; | |
47d1a6e1 | 365 | } |
7582438c | 366 | |
396f635b | 367 | *load_end = load + image_len; |
47d1a6e1 | 368 | break; |
44431cab | 369 | #endif /* CONFIG_GZIP */ |
c29fdfc1 WD |
370 | #ifdef CONFIG_BZIP2 |
371 | case IH_COMP_BZIP2: | |
42b73e8e | 372 | printf (" Uncompressing %s ... ", type_name); |
5653fc33 WD |
373 | /* |
374 | * If we've got less than 4 MB of malloc() space, | |
375 | * use slower decompression algorithm which requires | |
376 | * at most 2300 KB of memory. | |
377 | */ | |
396f635b KG |
378 | int i = BZ2_bzBuffToBuffDecompress ((char*)load, |
379 | &unc_len, (char *)image_start, image_len, | |
6d0f6bcf | 380 | CONFIG_SYS_MALLOC_LEN < (4096 * 1024), 0); |
c29fdfc1 | 381 | if (i != BZ_OK) { |
2682ce8a MB |
382 | printf ("BUNZIP2: uncompress or overwrite error %d " |
383 | "- must RESET board to recover\n", i); | |
396f635b KG |
384 | if (boot_progress) |
385 | show_boot_progress (-6); | |
386 | return BOOTM_ERR_RESET; | |
c29fdfc1 | 387 | } |
7582438c | 388 | |
396f635b | 389 | *load_end = load + unc_len; |
c29fdfc1 WD |
390 | break; |
391 | #endif /* CONFIG_BZIP2 */ | |
fc9c1727 | 392 | #ifdef CONFIG_LZMA |
78e1e846 MF |
393 | case IH_COMP_LZMA: { |
394 | SizeT lzma_len = unc_len; | |
fc9c1727 LCM |
395 | printf (" Uncompressing %s ... ", type_name); |
396 | ||
60fdc5f2 | 397 | ret = lzmaBuffToBuffDecompress( |
78e1e846 | 398 | (unsigned char *)load, &lzma_len, |
d977a573 | 399 | (unsigned char *)image_start, image_len); |
78e1e846 | 400 | unc_len = lzma_len; |
caf72ff3 | 401 | if (ret != SZ_OK) { |
fc9c1727 LCM |
402 | printf ("LZMA: uncompress or overwrite error %d " |
403 | "- must RESET board to recover\n", ret); | |
404 | show_boot_progress (-6); | |
405 | return BOOTM_ERR_RESET; | |
406 | } | |
407 | *load_end = load + unc_len; | |
408 | break; | |
78e1e846 | 409 | } |
fc9c1727 | 410 | #endif /* CONFIG_LZMA */ |
20dde48b PK |
411 | #ifdef CONFIG_LZO |
412 | case IH_COMP_LZO: | |
413 | printf (" Uncompressing %s ... ", type_name); | |
414 | ||
60fdc5f2 | 415 | ret = lzop_decompress((const unsigned char *)image_start, |
20dde48b PK |
416 | image_len, (unsigned char *)load, |
417 | &unc_len); | |
418 | if (ret != LZO_E_OK) { | |
419 | printf ("LZO: uncompress or overwrite error %d " | |
420 | "- must RESET board to recover\n", ret); | |
421 | if (boot_progress) | |
422 | show_boot_progress (-6); | |
423 | return BOOTM_ERR_RESET; | |
424 | } | |
425 | ||
426 | *load_end = load + unc_len; | |
427 | break; | |
428 | #endif /* CONFIG_LZO */ | |
47d1a6e1 | 429 | default: |
d5934ad7 | 430 | printf ("Unimplemented compression type %d\n", comp); |
396f635b | 431 | return BOOTM_ERR_UNIMPLEMENTED; |
47d1a6e1 | 432 | } |
4b9206ed | 433 | puts ("OK\n"); |
54b4ab3c | 434 | debug (" kernel loaded at 0x%08lx, end = 0x%08lx\n", load, *load_end); |
396f635b KG |
435 | if (boot_progress) |
436 | show_boot_progress (7); | |
47d1a6e1 | 437 | |
396f635b KG |
438 | if ((load < blob_end) && (*load_end > blob_start)) { |
439 | debug ("images.os.start = 0x%lX, images.os.end = 0x%lx\n", blob_start, blob_end); | |
54b4ab3c | 440 | debug ("images.os.load = 0x%lx, load_end = 0x%lx\n", load, *load_end); |
47d1a6e1 | 441 | |
396f635b KG |
442 | return BOOTM_ERR_OVERLAP; |
443 | } | |
444 | ||
445 | return 0; | |
446 | } | |
447 | ||
54841ab5 | 448 | static int bootm_start_standalone(ulong iflag, int argc, char * const argv[]) |
f97ec30b DZ |
449 | { |
450 | char *s; | |
54841ab5 | 451 | int (*appl)(int, char * const []); |
f97ec30b DZ |
452 | |
453 | /* Don't start if "autostart" is set to "no" */ | |
454 | if (((s = getenv("autostart")) != NULL) && (strcmp(s, "no") == 0)) { | |
455 | char buf[32]; | |
456 | sprintf(buf, "%lX", images.os.image_len); | |
457 | setenv("filesize", buf); | |
458 | return 0; | |
459 | } | |
54841ab5 | 460 | appl = (int (*)(int, char * const []))ntohl(images.ep); |
f97ec30b DZ |
461 | (*appl)(argc-1, &argv[1]); |
462 | ||
463 | return 0; | |
464 | } | |
465 | ||
49c3a861 KG |
466 | /* we overload the cmd field with our state machine info instead of a |
467 | * function pointer */ | |
f74d9bd2 | 468 | static cmd_tbl_t cmd_bootm_sub[] = { |
49c3a861 KG |
469 | U_BOOT_CMD_MKENT(start, 0, 1, (void *)BOOTM_STATE_START, "", ""), |
470 | U_BOOT_CMD_MKENT(loados, 0, 1, (void *)BOOTM_STATE_LOADOS, "", ""), | |
471 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) | |
472 | U_BOOT_CMD_MKENT(ramdisk, 0, 1, (void *)BOOTM_STATE_RAMDISK, "", ""), | |
473 | #endif | |
474 | #ifdef CONFIG_OF_LIBFDT | |
475 | U_BOOT_CMD_MKENT(fdt, 0, 1, (void *)BOOTM_STATE_FDT, "", ""), | |
476 | #endif | |
49c3a861 | 477 | U_BOOT_CMD_MKENT(cmdline, 0, 1, (void *)BOOTM_STATE_OS_CMDLINE, "", ""), |
224c90d1 | 478 | U_BOOT_CMD_MKENT(bdt, 0, 1, (void *)BOOTM_STATE_OS_BD_T, "", ""), |
49c3a861 KG |
479 | U_BOOT_CMD_MKENT(prep, 0, 1, (void *)BOOTM_STATE_OS_PREP, "", ""), |
480 | U_BOOT_CMD_MKENT(go, 0, 1, (void *)BOOTM_STATE_OS_GO, "", ""), | |
481 | }; | |
482 | ||
54841ab5 | 483 | int do_bootm_subcommand (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
49c3a861 KG |
484 | { |
485 | int ret = 0; | |
486 | int state; | |
487 | cmd_tbl_t *c; | |
488 | boot_os_fn *boot_fn; | |
489 | ||
490 | c = find_cmd_tbl(argv[1], &cmd_bootm_sub[0], ARRAY_SIZE(cmd_bootm_sub)); | |
491 | ||
492 | if (c) { | |
493 | state = (int)c->cmd; | |
494 | ||
495 | /* treat start special since it resets the state machine */ | |
496 | if (state == BOOTM_STATE_START) { | |
497 | argc--; | |
498 | argv++; | |
499 | return bootm_start(cmdtp, flag, argc, argv); | |
500 | } | |
47e26b1b WD |
501 | } else { |
502 | /* Unrecognized command */ | |
503 | return cmd_usage(cmdtp); | |
49c3a861 KG |
504 | } |
505 | ||
506 | if (images.state >= state) { | |
507 | printf ("Trying to execute a command out of order\n"); | |
47e26b1b | 508 | return cmd_usage(cmdtp); |
49c3a861 KG |
509 | } |
510 | ||
511 | images.state |= state; | |
512 | boot_fn = boot_os[images.os.os]; | |
513 | ||
514 | switch (state) { | |
515 | ulong load_end; | |
516 | case BOOTM_STATE_START: | |
517 | /* should never occur */ | |
518 | break; | |
519 | case BOOTM_STATE_LOADOS: | |
520 | ret = bootm_load_os(images.os, &load_end, 0); | |
521 | if (ret) | |
522 | return ret; | |
523 | ||
524 | lmb_reserve(&images.lmb, images.os.load, | |
525 | (load_end - images.os.load)); | |
526 | break; | |
527 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) | |
528 | case BOOTM_STATE_RAMDISK: | |
529 | { | |
530 | ulong rd_len = images.rd_end - images.rd_start; | |
531 | char str[17]; | |
532 | ||
533 | ret = boot_ramdisk_high(&images.lmb, images.rd_start, | |
534 | rd_len, &images.initrd_start, &images.initrd_end); | |
535 | if (ret) | |
536 | return ret; | |
537 | ||
538 | sprintf(str, "%lx", images.initrd_start); | |
539 | setenv("initrd_start", str); | |
540 | sprintf(str, "%lx", images.initrd_end); | |
541 | setenv("initrd_end", str); | |
542 | } | |
543 | break; | |
544 | #endif | |
b25e38fc | 545 | #if defined(CONFIG_OF_LIBFDT) && defined(CONFIG_SYS_BOOTMAPSZ) |
49c3a861 KG |
546 | case BOOTM_STATE_FDT: |
547 | { | |
548 | ulong bootmap_base = getenv_bootm_low(); | |
549 | ret = boot_relocate_fdt(&images.lmb, bootmap_base, | |
550 | &images.ft_addr, &images.ft_len); | |
551 | break; | |
552 | } | |
553 | #endif | |
554 | case BOOTM_STATE_OS_CMDLINE: | |
555 | ret = boot_fn(BOOTM_STATE_OS_CMDLINE, argc, argv, &images); | |
556 | if (ret) | |
557 | printf ("cmdline subcommand not supported\n"); | |
558 | break; | |
559 | case BOOTM_STATE_OS_BD_T: | |
560 | ret = boot_fn(BOOTM_STATE_OS_BD_T, argc, argv, &images); | |
561 | if (ret) | |
562 | printf ("bdt subcommand not supported\n"); | |
563 | break; | |
564 | case BOOTM_STATE_OS_PREP: | |
565 | ret = boot_fn(BOOTM_STATE_OS_PREP, argc, argv, &images); | |
566 | if (ret) | |
567 | printf ("prep subcommand not supported\n"); | |
568 | break; | |
569 | case BOOTM_STATE_OS_GO: | |
570 | disable_interrupts(); | |
3dfad40a | 571 | arch_preboot_os(); |
49c3a861 KG |
572 | boot_fn(BOOTM_STATE_OS_GO, argc, argv, &images); |
573 | break; | |
574 | } | |
575 | ||
576 | return ret; | |
577 | } | |
578 | ||
396f635b KG |
579 | /*******************************************************************/ |
580 | /* bootm - boot application image from image in memory */ | |
581 | /*******************************************************************/ | |
be083159 | 582 | |
54841ab5 | 583 | int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
396f635b | 584 | { |
396f635b KG |
585 | ulong iflag; |
586 | ulong load_end = 0; | |
587 | int ret; | |
be083159 | 588 | boot_os_fn *boot_fn; |
521af04d PT |
589 | #ifndef CONFIG_RELOC_FIXUP_WORKS |
590 | static int relocated = 0; | |
be083159 KG |
591 | |
592 | /* relocate boot function table */ | |
593 | if (!relocated) { | |
594 | int i; | |
595 | for (i = 0; i < ARRAY_SIZE(boot_os); i++) | |
ca95c9df DZ |
596 | if (boot_os[i] != NULL) |
597 | boot_os[i] += gd->reloc_off; | |
be083159 KG |
598 | relocated = 1; |
599 | } | |
521af04d | 600 | #endif |
396f635b | 601 | |
49c3a861 KG |
602 | /* determine if we have a sub command */ |
603 | if (argc > 1) { | |
604 | char *endp; | |
605 | ||
606 | simple_strtoul(argv[1], &endp, 16); | |
607 | /* endp pointing to NULL means that argv[1] was just a | |
608 | * valid number, pass it along to the normal bootm processing | |
609 | * | |
610 | * If endp is ':' or '#' assume a FIT identifier so pass | |
611 | * along for normal processing. | |
612 | * | |
613 | * Right now we assume the first arg should never be '-' | |
614 | */ | |
615 | if ((*endp != 0) && (*endp != ':') && (*endp != '#')) | |
616 | return do_bootm_subcommand(cmdtp, flag, argc, argv); | |
617 | } | |
618 | ||
8e02494e AG |
619 | if (bootm_start(cmdtp, flag, argc, argv)) |
620 | return 1; | |
396f635b KG |
621 | |
622 | /* | |
623 | * We have reached the point of no return: we are going to | |
624 | * overwrite all exception vector code, so we cannot easily | |
625 | * recover from any failures any more... | |
626 | */ | |
627 | iflag = disable_interrupts(); | |
628 | ||
629 | #if defined(CONFIG_CMD_USB) | |
630 | /* | |
631 | * turn off USB to prevent the host controller from writing to the | |
632 | * SDRAM while Linux is booting. This could happen (at least for OHCI | |
633 | * controller), because the HCCA (Host Controller Communication Area) | |
634 | * lies within the SDRAM and the host controller writes continously to | |
635 | * this area (as busmaster!). The HccaFrameNumber is for example | |
636 | * updated every 1 ms within the HCCA structure in SDRAM! For more | |
637 | * details see the OpenHCI specification. | |
638 | */ | |
639 | usb_stop(); | |
640 | #endif | |
641 | ||
396f635b KG |
642 | ret = bootm_load_os(images.os, &load_end, 1); |
643 | ||
644 | if (ret < 0) { | |
645 | if (ret == BOOTM_ERR_RESET) | |
cb1c4896 | 646 | do_reset (cmdtp, flag, argc, argv); |
396f635b KG |
647 | if (ret == BOOTM_ERR_OVERLAP) { |
648 | if (images.legacy_hdr_valid) { | |
649 | if (image_get_type (&images.legacy_hdr_os_copy) == IH_TYPE_MULTI) | |
650 | puts ("WARNING: legacy format multi component " | |
651 | "image overwritten\n"); | |
652 | } else { | |
653 | puts ("ERROR: new format image overwritten - " | |
654 | "must RESET the board to recover\n"); | |
655 | show_boot_progress (-113); | |
656 | do_reset (cmdtp, flag, argc, argv); | |
657 | } | |
658 | } | |
659 | if (ret == BOOTM_ERR_UNIMPLEMENTED) { | |
660 | if (iflag) | |
661 | enable_interrupts(); | |
662 | show_boot_progress (-7); | |
663 | return 1; | |
cb1c4896 | 664 | } |
47d1a6e1 | 665 | } |
7582438c | 666 | |
396f635b | 667 | lmb_reserve(&images.lmb, images.os.load, (load_end - images.os.load)); |
47d1a6e1 | 668 | |
f97ec30b DZ |
669 | if (images.os.type == IH_TYPE_STANDALONE) { |
670 | if (iflag) | |
671 | enable_interrupts(); | |
672 | /* This may return when 'autostart' is 'no' */ | |
673 | bootm_start_standalone(iflag, argc, argv); | |
674 | return 0; | |
675 | } | |
676 | ||
396f635b | 677 | show_boot_progress (8); |
4ed6552f | 678 | |
f72da340 | 679 | #ifdef CONFIG_SILENT_CONSOLE |
be083159 KG |
680 | if (images.os.os == IH_OS_LINUX) |
681 | fixup_silent_linux(); | |
1f4bb37d WD |
682 | #endif |
683 | ||
be083159 | 684 | boot_fn = boot_os[images.os.os]; |
ca95c9df DZ |
685 | |
686 | if (boot_fn == NULL) { | |
687 | if (iflag) | |
688 | enable_interrupts(); | |
689 | printf ("ERROR: booting os '%s' (%d) is not supported\n", | |
690 | genimg_get_os_name(images.os.os), images.os.os); | |
691 | show_boot_progress (-8); | |
692 | return 1; | |
693 | } | |
694 | ||
3dfad40a KG |
695 | arch_preboot_os(); |
696 | ||
be083159 | 697 | boot_fn(0, argc, argv, &images); |
47d1a6e1 | 698 | |
fad63407 | 699 | show_boot_progress (-9); |
47d1a6e1 | 700 | #ifdef DEBUG |
4b9206ed | 701 | puts ("\n## Control returned to monitor - resetting...\n"); |
47d1a6e1 | 702 | #endif |
40d7e99d | 703 | do_reset (cmdtp, flag, argc, argv); |
a44a269a | 704 | |
47d1a6e1 WD |
705 | return 1; |
706 | } | |
707 | ||
1efd4360 | 708 | /** |
9a4daad0 MB |
709 | * image_get_kernel - verify legacy format kernel image |
710 | * @img_addr: in RAM address of the legacy format image to be verified | |
711 | * @verify: data CRC verification flag | |
1efd4360 | 712 | * |
9a4daad0 MB |
713 | * image_get_kernel() verifies legacy image integrity and returns pointer to |
714 | * legacy image header if image verification was completed successfully. | |
1efd4360 MB |
715 | * |
716 | * returns: | |
9a4daad0 MB |
717 | * pointer to a legacy image header if valid image was found |
718 | * otherwise return NULL | |
1efd4360 MB |
719 | */ |
720 | static image_header_t *image_get_kernel (ulong img_addr, int verify) | |
f72da340 | 721 | { |
1efd4360 | 722 | image_header_t *hdr = (image_header_t *)img_addr; |
f72da340 | 723 | |
1efd4360 MB |
724 | if (!image_check_magic(hdr)) { |
725 | puts ("Bad Magic Number\n"); | |
726 | show_boot_progress (-1); | |
727 | return NULL; | |
728 | } | |
729 | show_boot_progress (2); | |
f72da340 | 730 | |
1efd4360 MB |
731 | if (!image_check_hcrc (hdr)) { |
732 | puts ("Bad Header Checksum\n"); | |
733 | show_boot_progress (-2); | |
734 | return NULL; | |
735 | } | |
736 | ||
737 | show_boot_progress (3); | |
738 | image_print_contents (hdr); | |
739 | ||
740 | if (verify) { | |
741 | puts (" Verifying Checksum ... "); | |
742 | if (!image_check_dcrc (hdr)) { | |
743 | printf ("Bad Data CRC\n"); | |
744 | show_boot_progress (-3); | |
745 | return NULL; | |
f72da340 | 746 | } |
1efd4360 | 747 | puts ("OK\n"); |
f72da340 | 748 | } |
1efd4360 | 749 | show_boot_progress (4); |
f72da340 | 750 | |
1efd4360 MB |
751 | if (!image_check_target_arch (hdr)) { |
752 | printf ("Unsupported Architecture 0x%x\n", image_get_arch (hdr)); | |
753 | show_boot_progress (-4); | |
754 | return NULL; | |
755 | } | |
756 | return hdr; | |
f72da340 | 757 | } |
f72da340 | 758 | |
6986a385 MB |
759 | /** |
760 | * fit_check_kernel - verify FIT format kernel subimage | |
761 | * @fit_hdr: pointer to the FIT image header | |
762 | * os_noffset: kernel subimage node offset within FIT image | |
763 | * @verify: data CRC verification flag | |
764 | * | |
765 | * fit_check_kernel() verifies integrity of the kernel subimage and from | |
766 | * specified FIT image. | |
767 | * | |
768 | * returns: | |
769 | * 1, on success | |
770 | * 0, on failure | |
771 | */ | |
772 | #if defined (CONFIG_FIT) | |
773 | static int fit_check_kernel (const void *fit, int os_noffset, int verify) | |
47d1a6e1 | 774 | { |
6986a385 | 775 | fit_image_print (fit, os_noffset, " "); |
47d1a6e1 | 776 | |
6986a385 MB |
777 | if (verify) { |
778 | puts (" Verifying Hash Integrity ... "); | |
779 | if (!fit_image_check_hashes (fit, os_noffset)) { | |
780 | puts ("Bad Data Hash\n"); | |
1372cce2 | 781 | show_boot_progress (-104); |
6986a385 MB |
782 | return 0; |
783 | } | |
784 | puts ("OK\n"); | |
47d1a6e1 | 785 | } |
1372cce2 | 786 | show_boot_progress (105); |
47d1a6e1 | 787 | |
6986a385 MB |
788 | if (!fit_image_check_target_arch (fit, os_noffset)) { |
789 | puts ("Unsupported Architecture\n"); | |
1372cce2 | 790 | show_boot_progress (-105); |
6986a385 MB |
791 | return 0; |
792 | } | |
56f94be3 | 793 | |
1372cce2 | 794 | show_boot_progress (106); |
6986a385 MB |
795 | if (!fit_image_check_type (fit, os_noffset, IH_TYPE_KERNEL)) { |
796 | puts ("Not a kernel image\n"); | |
1372cce2 | 797 | show_boot_progress (-106); |
6986a385 MB |
798 | return 0; |
799 | } | |
47d1a6e1 | 800 | |
1372cce2 | 801 | show_boot_progress (107); |
6986a385 MB |
802 | return 1; |
803 | } | |
804 | #endif /* CONFIG_FIT */ | |
47d1a6e1 | 805 | |
5cf746c3 | 806 | /** |
9a4daad0 | 807 | * boot_get_kernel - find kernel image |
5cf746c3 MB |
808 | * @os_data: pointer to a ulong variable, will hold os data start address |
809 | * @os_len: pointer to a ulong variable, will hold os data length | |
810 | * | |
9a4daad0 | 811 | * boot_get_kernel() tries to find a kernel image, verifies its integrity |
5cf746c3 MB |
812 | * and locates kernel data. |
813 | * | |
814 | * returns: | |
815 | * pointer to image header if valid image was found, plus kernel start | |
816 | * address and length, otherwise NULL | |
817 | */ | |
54841ab5 | 818 | static void *boot_get_kernel (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[], |
8a5ea3e6 | 819 | bootm_headers_t *images, ulong *os_data, ulong *os_len) |
5cf746c3 MB |
820 | { |
821 | image_header_t *hdr; | |
822 | ulong img_addr; | |
d5934ad7 MB |
823 | #if defined(CONFIG_FIT) |
824 | void *fit_hdr; | |
825 | const char *fit_uname_config = NULL; | |
826 | const char *fit_uname_kernel = NULL; | |
6986a385 MB |
827 | const void *data; |
828 | size_t len; | |
f773bea8 | 829 | int cfg_noffset; |
6986a385 | 830 | int os_noffset; |
d5934ad7 | 831 | #endif |
56f94be3 | 832 | |
d5934ad7 | 833 | /* find out kernel image address */ |
5cf746c3 MB |
834 | if (argc < 2) { |
835 | img_addr = load_addr; | |
d5934ad7 MB |
836 | debug ("* kernel: default image load address = 0x%08lx\n", |
837 | load_addr); | |
838 | #if defined(CONFIG_FIT) | |
839 | } else if (fit_parse_conf (argv[1], load_addr, &img_addr, | |
840 | &fit_uname_config)) { | |
841 | debug ("* kernel: config '%s' from image at 0x%08lx\n", | |
842 | fit_uname_config, img_addr); | |
843 | } else if (fit_parse_subimage (argv[1], load_addr, &img_addr, | |
844 | &fit_uname_kernel)) { | |
845 | debug ("* kernel: subimage '%s' from image at 0x%08lx\n", | |
846 | fit_uname_kernel, img_addr); | |
847 | #endif | |
5cf746c3 MB |
848 | } else { |
849 | img_addr = simple_strtoul(argv[1], NULL, 16); | |
d5934ad7 | 850 | debug ("* kernel: cmdline image address = 0x%08lx\n", img_addr); |
5cf746c3 | 851 | } |
47d1a6e1 | 852 | |
5cf746c3 | 853 | show_boot_progress (1); |
56f94be3 | 854 | |
fff888a1 | 855 | /* copy from dataflash if needed */ |
9a4daad0 | 856 | img_addr = genimg_get_image (img_addr); |
5cf746c3 | 857 | |
d5934ad7 | 858 | /* check image type, for FIT images get FIT kernel node */ |
6986a385 | 859 | *os_data = *os_len = 0; |
9a4daad0 | 860 | switch (genimg_get_format ((void *)img_addr)) { |
d5934ad7 | 861 | case IMAGE_FORMAT_LEGACY: |
6986a385 MB |
862 | printf ("## Booting kernel from Legacy Image at %08lx ...\n", |
863 | img_addr); | |
1efd4360 MB |
864 | hdr = image_get_kernel (img_addr, images->verify); |
865 | if (!hdr) | |
d5934ad7 | 866 | return NULL; |
d5934ad7 MB |
867 | show_boot_progress (5); |
868 | ||
6986a385 | 869 | /* get os_data and os_len */ |
d5934ad7 MB |
870 | switch (image_get_type (hdr)) { |
871 | case IH_TYPE_KERNEL: | |
872 | *os_data = image_get_data (hdr); | |
873 | *os_len = image_get_data_size (hdr); | |
874 | break; | |
875 | case IH_TYPE_MULTI: | |
876 | image_multi_getimg (hdr, 0, os_data, os_len); | |
877 | break; | |
f97ec30b | 878 | case IH_TYPE_STANDALONE: |
f97ec30b DZ |
879 | *os_data = image_get_data (hdr); |
880 | *os_len = image_get_data_size (hdr); | |
881 | break; | |
d5934ad7 MB |
882 | default: |
883 | printf ("Wrong Image Type for %s command\n", cmdtp->name); | |
884 | show_boot_progress (-5); | |
885 | return NULL; | |
886 | } | |
cb1c4896 MB |
887 | |
888 | /* | |
889 | * copy image header to allow for image overwrites during kernel | |
890 | * decompression. | |
891 | */ | |
892 | memmove (&images->legacy_hdr_os_copy, hdr, sizeof(image_header_t)); | |
893 | ||
894 | /* save pointer to image header */ | |
d5934ad7 | 895 | images->legacy_hdr_os = hdr; |
47d1a6e1 | 896 | |
cb1c4896 | 897 | images->legacy_hdr_valid = 1; |
1372cce2 | 898 | show_boot_progress (6); |
5cf746c3 | 899 | break; |
d5934ad7 MB |
900 | #if defined(CONFIG_FIT) |
901 | case IMAGE_FORMAT_FIT: | |
902 | fit_hdr = (void *)img_addr; | |
6986a385 MB |
903 | printf ("## Booting kernel from FIT Image at %08lx ...\n", |
904 | img_addr); | |
905 | ||
906 | if (!fit_check_format (fit_hdr)) { | |
907 | puts ("Bad FIT kernel image format!\n"); | |
1372cce2 | 908 | show_boot_progress (-100); |
6986a385 MB |
909 | return NULL; |
910 | } | |
1372cce2 | 911 | show_boot_progress (100); |
47d1a6e1 | 912 | |
6986a385 MB |
913 | if (!fit_uname_kernel) { |
914 | /* | |
915 | * no kernel image node unit name, try to get config | |
916 | * node first. If config unit node name is NULL | |
917 | * fit_conf_get_node() will try to find default config node | |
918 | */ | |
1372cce2 | 919 | show_boot_progress (101); |
f773bea8 MB |
920 | cfg_noffset = fit_conf_get_node (fit_hdr, fit_uname_config); |
921 | if (cfg_noffset < 0) { | |
1372cce2 | 922 | show_boot_progress (-101); |
6986a385 | 923 | return NULL; |
1372cce2 | 924 | } |
f773bea8 MB |
925 | /* save configuration uname provided in the first |
926 | * bootm argument | |
927 | */ | |
928 | images->fit_uname_cfg = fdt_get_name (fit_hdr, cfg_noffset, NULL); | |
929 | printf (" Using '%s' configuration\n", images->fit_uname_cfg); | |
930 | show_boot_progress (103); | |
47d1a6e1 | 931 | |
f773bea8 | 932 | os_noffset = fit_conf_get_kernel_node (fit_hdr, cfg_noffset); |
6986a385 MB |
933 | fit_uname_kernel = fit_get_name (fit_hdr, os_noffset, NULL); |
934 | } else { | |
935 | /* get kernel component image node offset */ | |
1372cce2 | 936 | show_boot_progress (102); |
6986a385 MB |
937 | os_noffset = fit_image_get_node (fit_hdr, fit_uname_kernel); |
938 | } | |
1372cce2 MB |
939 | if (os_noffset < 0) { |
940 | show_boot_progress (-103); | |
6986a385 | 941 | return NULL; |
1372cce2 | 942 | } |
47d1a6e1 | 943 | |
6986a385 | 944 | printf (" Trying '%s' kernel subimage\n", fit_uname_kernel); |
47d1a6e1 | 945 | |
1372cce2 | 946 | show_boot_progress (104); |
6986a385 MB |
947 | if (!fit_check_kernel (fit_hdr, os_noffset, images->verify)) |
948 | return NULL; | |
47d1a6e1 | 949 | |
6986a385 MB |
950 | /* get kernel image data address and length */ |
951 | if (fit_image_get_data (fit_hdr, os_noffset, &data, &len)) { | |
952 | puts ("Could not find kernel subimage data!\n"); | |
1372cce2 | 953 | show_boot_progress (-107); |
6986a385 MB |
954 | return NULL; |
955 | } | |
1372cce2 | 956 | show_boot_progress (108); |
47d1a6e1 | 957 | |
6986a385 MB |
958 | *os_len = len; |
959 | *os_data = (ulong)data; | |
960 | images->fit_hdr_os = fit_hdr; | |
961 | images->fit_uname_os = fit_uname_kernel; | |
3dfe1101 | 962 | images->fit_noffset_os = os_noffset; |
6986a385 | 963 | break; |
9c4c5ae3 | 964 | #endif |
5cf746c3 | 965 | default: |
d5934ad7 | 966 | printf ("Wrong Image Format for %s command\n", cmdtp->name); |
1372cce2 | 967 | show_boot_progress (-108); |
5cf746c3 | 968 | return NULL; |
47d1a6e1 WD |
969 | } |
970 | ||
06c53bea | 971 | debug (" kernel data at 0x%08lx, len = 0x%08lx (%ld)\n", |
6986a385 | 972 | *os_data, *os_len, *os_len); |
47d1a6e1 | 973 | |
d5934ad7 | 974 | return (void *)img_addr; |
5cf746c3 | 975 | } |
98a9c4d4 | 976 | |
0d498393 | 977 | U_BOOT_CMD( |
6d0f6bcf | 978 | bootm, CONFIG_SYS_MAXARGS, 1, do_bootm, |
2fb2604d | 979 | "boot application image from memory", |
1ee1180b MB |
980 | "[addr [arg ...]]\n - boot application image stored in memory\n" |
981 | "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n" | |
982 | "\t'arg' can be the address of an initrd image\n" | |
4a2ad5ff | 983 | #if defined(CONFIG_OF_LIBFDT) |
98a9c4d4 | 984 | "\tWhen booting a Linux kernel which requires a flat device-tree\n" |
5441f61a | 985 | "\ta third argument is required which is the address of the\n" |
98a9c4d4 MM |
986 | "\tdevice-tree blob. To boot that kernel without an initrd image,\n" |
987 | "\tuse a '-' for the second argument. If you do not pass a third\n" | |
988 | "\ta bd_info struct will be passed instead\n" | |
98a9c4d4 | 989 | #endif |
6986a385 MB |
990 | #if defined(CONFIG_FIT) |
991 | "\t\nFor the new multi component uImage format (FIT) addresses\n" | |
992 | "\tmust be extened to include component or configuration unit name:\n" | |
993 | "\taddr:<subimg_uname> - direct component image specification\n" | |
994 | "\taddr#<conf_uname> - configuration specification\n" | |
995 | "\tUse iminfo command to get the list of existing component\n" | |
996 | "\timages and configurations.\n" | |
997 | #endif | |
49c3a861 KG |
998 | "\nSub-commands to do part of the bootm sequence. The sub-commands " |
999 | "must be\n" | |
1000 | "issued in the order below (it's ok to not issue all sub-commands):\n" | |
1001 | "\tstart [addr [arg ...]]\n" | |
1002 | "\tloados - load OS image\n" | |
1003 | #if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) | |
1004 | "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n" | |
1005 | #endif | |
1006 | #if defined(CONFIG_OF_LIBFDT) | |
1007 | "\tfdt - relocate flat device tree\n" | |
1008 | #endif | |
49c3a861 | 1009 | "\tcmdline - OS specific command line processing/setup\n" |
224c90d1 | 1010 | "\tbdt - OS specific bd_t processing\n" |
49c3a861 | 1011 | "\tprep - OS specific prep before relocation or go\n" |
a89c33db | 1012 | "\tgo - start OS" |
8bde7f77 | 1013 | ); |
47d1a6e1 | 1014 | |
1ee1180b MB |
1015 | /*******************************************************************/ |
1016 | /* bootd - boot default image */ | |
1017 | /*******************************************************************/ | |
baa26db4 | 1018 | #if defined(CONFIG_CMD_BOOTD) |
54841ab5 | 1019 | int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
47d1a6e1 WD |
1020 | { |
1021 | int rcode = 0; | |
47d1a6e1 | 1022 | |
6d0f6bcf | 1023 | #ifndef CONFIG_SYS_HUSH_PARSER |
1ee1180b MB |
1024 | if (run_command (getenv ("bootcmd"), flag) < 0) |
1025 | rcode = 1; | |
47d1a6e1 | 1026 | #else |
1ee1180b MB |
1027 | if (parse_string_outer (getenv ("bootcmd"), |
1028 | FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0) | |
1029 | rcode = 1; | |
47d1a6e1 WD |
1030 | #endif |
1031 | return rcode; | |
1032 | } | |
47d1a6e1 | 1033 | |
0d498393 | 1034 | U_BOOT_CMD( |
1ee1180b | 1035 | boot, 1, 1, do_bootd, |
2fb2604d | 1036 | "boot default, i.e., run 'bootcmd'", |
a89c33db | 1037 | "" |
9d2b18a0 | 1038 | ); |
47d1a6e1 | 1039 | |
9d2b18a0 | 1040 | /* keep old command name "bootd" for backward compatibility */ |
0d498393 | 1041 | U_BOOT_CMD( |
1ee1180b | 1042 | bootd, 1, 1, do_bootd, |
2fb2604d | 1043 | "boot default, i.e., run 'bootcmd'", |
a89c33db | 1044 | "" |
8bde7f77 | 1045 | ); |
47d1a6e1 | 1046 | |
47d1a6e1 | 1047 | #endif |
47d1a6e1 | 1048 | |
47d1a6e1 | 1049 | |
1ee1180b MB |
1050 | /*******************************************************************/ |
1051 | /* iminfo - print header info for a requested image */ | |
1052 | /*******************************************************************/ | |
baa26db4 | 1053 | #if defined(CONFIG_CMD_IMI) |
54841ab5 | 1054 | int do_iminfo (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
47d1a6e1 WD |
1055 | { |
1056 | int arg; | |
1057 | ulong addr; | |
1ee1180b | 1058 | int rcode = 0; |
47d1a6e1 | 1059 | |
47d1a6e1 WD |
1060 | if (argc < 2) { |
1061 | return image_info (load_addr); | |
1062 | } | |
47d1a6e1 | 1063 | |
1ee1180b MB |
1064 | for (arg = 1; arg < argc; ++arg) { |
1065 | addr = simple_strtoul (argv[arg], NULL, 16); | |
1066 | if (image_info (addr) != 0) | |
1067 | rcode = 1; | |
47d1a6e1 WD |
1068 | } |
1069 | return rcode; | |
1070 | } | |
47d1a6e1 | 1071 | |
47d1a6e1 WD |
1072 | static int image_info (ulong addr) |
1073 | { | |
d5934ad7 | 1074 | void *hdr = (void *)addr; |
47d1a6e1 | 1075 | |
47d1a6e1 | 1076 | printf ("\n## Checking Image at %08lx ...\n", addr); |
47d1a6e1 | 1077 | |
9a4daad0 | 1078 | switch (genimg_get_format (hdr)) { |
d5934ad7 MB |
1079 | case IMAGE_FORMAT_LEGACY: |
1080 | puts (" Legacy image found\n"); | |
1081 | if (!image_check_magic (hdr)) { | |
1082 | puts (" Bad Magic Number\n"); | |
1083 | return 1; | |
1084 | } | |
47d1a6e1 | 1085 | |
d5934ad7 MB |
1086 | if (!image_check_hcrc (hdr)) { |
1087 | puts (" Bad Header Checksum\n"); | |
1088 | return 1; | |
47d1a6e1 WD |
1089 | } |
1090 | ||
d5934ad7 | 1091 | image_print_contents (hdr); |
47d1a6e1 | 1092 | |
d5934ad7 MB |
1093 | puts (" Verifying Checksum ... "); |
1094 | if (!image_check_dcrc (hdr)) { | |
1095 | puts (" Bad Data CRC\n"); | |
1096 | return 1; | |
47d1a6e1 | 1097 | } |
d5934ad7 MB |
1098 | puts ("OK\n"); |
1099 | return 0; | |
1100 | #if defined(CONFIG_FIT) | |
1101 | case IMAGE_FORMAT_FIT: | |
1102 | puts (" FIT image found\n"); | |
47d1a6e1 | 1103 | |
e32fea6a MB |
1104 | if (!fit_check_format (hdr)) { |
1105 | puts ("Bad FIT image format!\n"); | |
1106 | return 1; | |
47d1a6e1 WD |
1107 | } |
1108 | ||
e32fea6a | 1109 | fit_print_contents (hdr); |
a4f24345 BS |
1110 | |
1111 | if (!fit_all_image_check_hashes (hdr)) { | |
1112 | puts ("Bad hash in FIT image!\n"); | |
1113 | return 1; | |
1114 | } | |
1115 | ||
d5934ad7 MB |
1116 | return 0; |
1117 | #endif | |
1118 | default: | |
1119 | puts ("Unknown image format!\n"); | |
1120 | break; | |
47d1a6e1 WD |
1121 | } |
1122 | ||
d5934ad7 | 1123 | return 1; |
47d1a6e1 | 1124 | } |
0d498393 WD |
1125 | |
1126 | U_BOOT_CMD( | |
6d0f6bcf | 1127 | iminfo, CONFIG_SYS_MAXARGS, 1, do_iminfo, |
2fb2604d | 1128 | "print header information for application image", |
8bde7f77 WD |
1129 | "addr [addr ...]\n" |
1130 | " - print header information for application image starting at\n" | |
1131 | " address 'addr' in memory; this includes verification of the\n" | |
a89c33db | 1132 | " image contents (magic number, header and payload checksums)" |
8bde7f77 | 1133 | ); |
25c751e9 | 1134 | #endif |
87a449c8 | 1135 | |
25c751e9 | 1136 | |
1ee1180b MB |
1137 | /*******************************************************************/ |
1138 | /* imls - list all images found in flash */ | |
1139 | /*******************************************************************/ | |
baa26db4 | 1140 | #if defined(CONFIG_CMD_IMLS) |
54841ab5 | 1141 | int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]) |
27b207fd WD |
1142 | { |
1143 | flash_info_t *info; | |
1144 | int i, j; | |
d5934ad7 | 1145 | void *hdr; |
25c751e9 | 1146 | |
1ee1180b | 1147 | for (i = 0, info = &flash_info[0]; |
6d0f6bcf | 1148 | i < CONFIG_SYS_MAX_FLASH_BANKS; ++i, ++info) { |
25c751e9 | 1149 | |
27b207fd WD |
1150 | if (info->flash_id == FLASH_UNKNOWN) |
1151 | goto next_bank; | |
1ee1180b | 1152 | for (j = 0; j < info->sector_count; ++j) { |
25c751e9 | 1153 | |
d5934ad7 MB |
1154 | hdr = (void *)info->start[j]; |
1155 | if (!hdr) | |
b97a2a0a | 1156 | goto next_sector; |
27b207fd | 1157 | |
9a4daad0 | 1158 | switch (genimg_get_format (hdr)) { |
d5934ad7 | 1159 | case IMAGE_FORMAT_LEGACY: |
d5934ad7 MB |
1160 | if (!image_check_hcrc (hdr)) |
1161 | goto next_sector; | |
1162 | ||
1163 | printf ("Legacy Image at %08lX:\n", (ulong)hdr); | |
1164 | image_print_contents (hdr); | |
1165 | ||
1166 | puts (" Verifying Checksum ... "); | |
1167 | if (!image_check_dcrc (hdr)) { | |
1168 | puts ("Bad Data CRC\n"); | |
1169 | } else { | |
1170 | puts ("OK\n"); | |
1171 | } | |
1172 | break; | |
1173 | #if defined(CONFIG_FIT) | |
1174 | case IMAGE_FORMAT_FIT: | |
e32fea6a MB |
1175 | if (!fit_check_format (hdr)) |
1176 | goto next_sector; | |
1177 | ||
d5934ad7 | 1178 | printf ("FIT Image at %08lX:\n", (ulong)hdr); |
e32fea6a | 1179 | fit_print_contents (hdr); |
d5934ad7 | 1180 | break; |
213bf8c8 | 1181 | #endif |
d5934ad7 | 1182 | default: |
27b207fd | 1183 | goto next_sector; |
25c751e9 | 1184 | } |
87a449c8 | 1185 | |
bdccc4fe | 1186 | next_sector: ; |
c76f951a | 1187 | } |
bdccc4fe | 1188 | next_bank: ; |
27b207fd | 1189 | } |
c76f951a | 1190 | |
27b207fd WD |
1191 | return (0); |
1192 | } | |
c76f951a | 1193 | |
27b207fd WD |
1194 | U_BOOT_CMD( |
1195 | imls, 1, 1, do_imls, | |
2fb2604d | 1196 | "list all images found in flash", |
27b207fd WD |
1197 | "\n" |
1198 | " - Prints information about all images found at sector\n" | |
a89c33db | 1199 | " boundaries in flash." |
27b207fd | 1200 | ); |
98a9c4d4 | 1201 | #endif |
47d1a6e1 | 1202 | |
1ee1180b | 1203 | /*******************************************************************/ |
5cf746c3 | 1204 | /* helper routines */ |
1ee1180b | 1205 | /*******************************************************************/ |
1ee1180b MB |
1206 | #ifdef CONFIG_SILENT_CONSOLE |
1207 | static void fixup_silent_linux () | |
1208 | { | |
1209 | char buf[256], *start, *end; | |
1210 | char *cmdline = getenv ("bootargs"); | |
47d1a6e1 | 1211 | |
1ee1180b MB |
1212 | /* Only fix cmdline when requested */ |
1213 | if (!(gd->flags & GD_FLG_SILENT)) | |
1214 | return; | |
47d1a6e1 | 1215 | |
1ee1180b MB |
1216 | debug ("before silent fix-up: %s\n", cmdline); |
1217 | if (cmdline) { | |
1218 | if ((start = strstr (cmdline, "console=")) != NULL) { | |
1219 | end = strchr (start, ' '); | |
1220 | strncpy (buf, cmdline, (start - cmdline + 8)); | |
1221 | if (end) | |
1222 | strcpy (buf + (start - cmdline + 8), end); | |
1223 | else | |
1224 | buf[start - cmdline + 8] = '\0'; | |
1225 | } else { | |
1226 | strcpy (buf, cmdline); | |
1227 | strcat (buf, " console="); | |
47d1a6e1 | 1228 | } |
47d1a6e1 | 1229 | } else { |
1ee1180b | 1230 | strcpy (buf, "console="); |
e7902122 | 1231 | } |
10aaf716 | 1232 | |
1ee1180b MB |
1233 | setenv ("bootargs", buf); |
1234 | debug ("after silent fix-up: %s\n", buf); | |
1235 | } | |
1236 | #endif /* CONFIG_SILENT_CONSOLE */ | |
38eb508e | 1237 | |
38eb508e | 1238 | |
1ee1180b MB |
1239 | /*******************************************************************/ |
1240 | /* OS booting routines */ | |
1241 | /*******************************************************************/ | |
c76f951a | 1242 | |
b1d0db18 | 1243 | #ifdef CONFIG_BOOTM_NETBSD |
54841ab5 | 1244 | static int do_bootm_netbsd (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1245 | bootm_headers_t *images) |
d791b1dc | 1246 | { |
1ee1180b | 1247 | void (*loader)(bd_t *, image_header_t *, char *, char *); |
d5934ad7 | 1248 | image_header_t *os_hdr, *hdr; |
f13e7b2e | 1249 | ulong kernel_data, kernel_len; |
1ee1180b MB |
1250 | char *consdev; |
1251 | char *cmdline; | |
1252 | ||
49c3a861 KG |
1253 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1254 | return 1; | |
1255 | ||
d5934ad7 MB |
1256 | #if defined(CONFIG_FIT) |
1257 | if (!images->legacy_hdr_valid) { | |
1258 | fit_unsupported_reset ("NetBSD"); | |
40d7e99d | 1259 | return 1; |
38eb508e GVB |
1260 | } |
1261 | #endif | |
d5934ad7 | 1262 | hdr = images->legacy_hdr_os; |
47d1a6e1 WD |
1263 | |
1264 | /* | |
1265 | * Booting a (NetBSD) kernel image | |
1266 | * | |
1267 | * This process is pretty similar to a standalone application: | |
1268 | * The (first part of an multi-) image must be a stage-2 loader, | |
1269 | * which in turn is responsible for loading & invoking the actual | |
1270 | * kernel. The only differences are the parameters being passed: | |
1271 | * besides the board info strucure, the loader expects a command | |
1272 | * line, the name of the console device, and (optionally) the | |
1273 | * address of the original image header. | |
1274 | */ | |
d5934ad7 | 1275 | os_hdr = NULL; |
cb1c4896 | 1276 | if (image_check_type (&images->legacy_hdr_os_copy, IH_TYPE_MULTI)) { |
f13e7b2e MB |
1277 | image_multi_getimg (hdr, 1, &kernel_data, &kernel_len); |
1278 | if (kernel_len) | |
d5934ad7 | 1279 | os_hdr = hdr; |
f13e7b2e | 1280 | } |
47d1a6e1 WD |
1281 | |
1282 | consdev = ""; | |
1283 | #if defined (CONFIG_8xx_CONS_SMC1) | |
1284 | consdev = "smc1"; | |
1285 | #elif defined (CONFIG_8xx_CONS_SMC2) | |
1286 | consdev = "smc2"; | |
1287 | #elif defined (CONFIG_8xx_CONS_SCC2) | |
1288 | consdev = "scc2"; | |
1289 | #elif defined (CONFIG_8xx_CONS_SCC3) | |
1290 | consdev = "scc3"; | |
1291 | #endif | |
1292 | ||
1293 | if (argc > 2) { | |
1294 | ulong len; | |
1295 | int i; | |
1296 | ||
1ee1180b | 1297 | for (i = 2, len = 0; i < argc; i += 1) |
47d1a6e1 WD |
1298 | len += strlen (argv[i]) + 1; |
1299 | cmdline = malloc (len); | |
1300 | ||
1ee1180b | 1301 | for (i = 2, len = 0; i < argc; i += 1) { |
47d1a6e1 WD |
1302 | if (i > 2) |
1303 | cmdline[len++] = ' '; | |
1304 | strcpy (&cmdline[len], argv[i]); | |
1305 | len += strlen (argv[i]); | |
1306 | } | |
1ee1180b | 1307 | } else if ((cmdline = getenv ("bootargs")) == NULL) { |
47d1a6e1 WD |
1308 | cmdline = ""; |
1309 | } | |
1310 | ||
c160a954 | 1311 | loader = (void (*)(bd_t *, image_header_t *, char *, char *))images->ep; |
47d1a6e1 WD |
1312 | |
1313 | printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n", | |
1314 | (ulong)loader); | |
1315 | ||
fad63407 | 1316 | show_boot_progress (15); |
47d1a6e1 WD |
1317 | |
1318 | /* | |
1319 | * NetBSD Stage-2 Loader Parameters: | |
1320 | * r3: ptr to board info data | |
1321 | * r4: image address | |
1322 | * r5: console device | |
1323 | * r6: boot args string | |
1324 | */ | |
d5934ad7 | 1325 | (*loader) (gd->bd, os_hdr, consdev, cmdline); |
40d7e99d KG |
1326 | |
1327 | return 1; | |
47d1a6e1 | 1328 | } |
b1d0db18 | 1329 | #endif /* CONFIG_BOOTM_NETBSD*/ |
47d1a6e1 | 1330 | |
1ee1180b | 1331 | #ifdef CONFIG_LYNXKDI |
54841ab5 | 1332 | static int do_bootm_lynxkdi (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1333 | bootm_headers_t *images) |
1ee1180b | 1334 | { |
cb1c4896 | 1335 | image_header_t *hdr = &images->legacy_hdr_os_copy; |
d5934ad7 | 1336 | |
49c3a861 KG |
1337 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1338 | return 1; | |
1339 | ||
d5934ad7 MB |
1340 | #if defined(CONFIG_FIT) |
1341 | if (!images->legacy_hdr_valid) { | |
1342 | fit_unsupported_reset ("Lynx"); | |
40d7e99d | 1343 | return 1; |
d5934ad7 MB |
1344 | } |
1345 | #endif | |
1346 | ||
1347 | lynxkdi_boot ((image_header_t *)hdr); | |
40d7e99d KG |
1348 | |
1349 | return 1; | |
1ee1180b MB |
1350 | } |
1351 | #endif /* CONFIG_LYNXKDI */ | |
1352 | ||
b1d0db18 | 1353 | #ifdef CONFIG_BOOTM_RTEMS |
54841ab5 | 1354 | static int do_bootm_rtems (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1355 | bootm_headers_t *images) |
1ee1180b | 1356 | { |
1ee1180b | 1357 | void (*entry_point)(bd_t *); |
d791b1dc | 1358 | |
49c3a861 KG |
1359 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1360 | return 1; | |
1361 | ||
d5934ad7 MB |
1362 | #if defined(CONFIG_FIT) |
1363 | if (!images->legacy_hdr_valid) { | |
1364 | fit_unsupported_reset ("RTEMS"); | |
40d7e99d | 1365 | return 1; |
d5934ad7 MB |
1366 | } |
1367 | #endif | |
1368 | ||
c160a954 | 1369 | entry_point = (void (*)(bd_t *))images->ep; |
d791b1dc WD |
1370 | |
1371 | printf ("## Transferring control to RTEMS (at address %08lx) ...\n", | |
1372 | (ulong)entry_point); | |
1373 | ||
fad63407 | 1374 | show_boot_progress (15); |
d791b1dc WD |
1375 | |
1376 | /* | |
1377 | * RTEMS Parameters: | |
1378 | * r3: ptr to board info data | |
1379 | */ | |
1ee1180b | 1380 | (*entry_point)(gd->bd); |
40d7e99d KG |
1381 | |
1382 | return 1; | |
d791b1dc | 1383 | } |
b1d0db18 | 1384 | #endif /* CONFIG_BOOTM_RTEMS */ |
7f70e853 | 1385 | |
baa26db4 | 1386 | #if defined(CONFIG_CMD_ELF) |
54841ab5 | 1387 | static int do_bootm_vxworks (int flag, int argc, char * const argv[], |
8a5ea3e6 | 1388 | bootm_headers_t *images) |
47d1a6e1 | 1389 | { |
47d1a6e1 | 1390 | char str[80]; |
7f70e853 | 1391 | |
49c3a861 KG |
1392 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1393 | return 1; | |
1394 | ||
d5934ad7 | 1395 | #if defined(CONFIG_FIT) |
cb1c4896 | 1396 | if (!images->legacy_hdr_valid) { |
d5934ad7 | 1397 | fit_unsupported_reset ("VxWorks"); |
40d7e99d | 1398 | return 1; |
d5934ad7 MB |
1399 | } |
1400 | #endif | |
47d1a6e1 | 1401 | |
c160a954 | 1402 | sprintf(str, "%lx", images->ep); /* write entry-point into string */ |
47d1a6e1 | 1403 | setenv("loadaddr", str); |
40d7e99d KG |
1404 | do_bootvx(NULL, 0, 0, NULL); |
1405 | ||
1406 | return 1; | |
47d1a6e1 WD |
1407 | } |
1408 | ||
54841ab5 | 1409 | static int do_bootm_qnxelf(int flag, int argc, char * const argv[], |
8a5ea3e6 | 1410 | bootm_headers_t *images) |
47d1a6e1 | 1411 | { |
47d1a6e1 WD |
1412 | char *local_args[2]; |
1413 | char str[16]; | |
d5934ad7 | 1414 | |
49c3a861 KG |
1415 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1416 | return 1; | |
1417 | ||
d5934ad7 MB |
1418 | #if defined(CONFIG_FIT) |
1419 | if (!images->legacy_hdr_valid) { | |
1420 | fit_unsupported_reset ("QNX"); | |
40d7e99d | 1421 | return 1; |
d5934ad7 MB |
1422 | } |
1423 | #endif | |
47d1a6e1 | 1424 | |
c160a954 | 1425 | sprintf(str, "%lx", images->ep); /* write entry-point into string */ |
47d1a6e1 WD |
1426 | local_args[0] = argv[0]; |
1427 | local_args[1] = str; /* and provide it via the arguments */ | |
40d7e99d KG |
1428 | do_bootelf(NULL, 0, 2, local_args); |
1429 | ||
1430 | return 1; | |
47d1a6e1 | 1431 | } |
90253178 | 1432 | #endif |
f5ed9e39 PT |
1433 | |
1434 | #ifdef CONFIG_INTEGRITY | |
54841ab5 | 1435 | static int do_bootm_integrity (int flag, int argc, char * const argv[], |
f5ed9e39 PT |
1436 | bootm_headers_t *images) |
1437 | { | |
1438 | void (*entry_point)(void); | |
1439 | ||
49c3a861 KG |
1440 | if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) |
1441 | return 1; | |
1442 | ||
f5ed9e39 PT |
1443 | #if defined(CONFIG_FIT) |
1444 | if (!images->legacy_hdr_valid) { | |
1445 | fit_unsupported_reset ("INTEGRITY"); | |
1446 | return 1; | |
1447 | } | |
1448 | #endif | |
1449 | ||
1450 | entry_point = (void (*)(void))images->ep; | |
1451 | ||
1452 | printf ("## Transferring control to INTEGRITY (at address %08lx) ...\n", | |
1453 | (ulong)entry_point); | |
1454 | ||
1455 | show_boot_progress (15); | |
1456 | ||
1457 | /* | |
1458 | * INTEGRITY Parameters: | |
1459 | * None | |
1460 | */ | |
1461 | (*entry_point)(); | |
1462 | ||
1463 | return 1; | |
1464 | } | |
1465 | #endif |