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