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