]>
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 | ||
24 | /* | |
25 | * Boot support | |
26 | */ | |
27 | #include <common.h> | |
28 | #include <watchdog.h> | |
29 | #include <command.h> | |
47d1a6e1 WD |
30 | #include <image.h> |
31 | #include <malloc.h> | |
32 | #include <zlib.h> | |
c29fdfc1 | 33 | #include <bzlib.h> |
7f70e853 | 34 | #include <environment.h> |
47d1a6e1 | 35 | #include <asm/byteorder.h> |
8bde7f77 | 36 | |
213bf8c8 GVB |
37 | #if defined(CONFIG_OF_LIBFDT) |
38 | #include <fdt.h> | |
39 | #include <libfdt.h> | |
c28abb9c | 40 | #include <fdt_support.h> |
213bf8c8 | 41 | #endif |
aea03c4e | 42 | #if defined(CONFIG_OF_FLAT_TREE) |
f57f70aa WD |
43 | #include <ft_build.h> |
44 | #endif | |
45 | ||
d87080b7 WD |
46 | DECLARE_GLOBAL_DATA_PTR; |
47 | ||
8bde7f77 WD |
48 | /*cmd_boot.c*/ |
49 | extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); | |
50 | ||
baa26db4 | 51 | #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) |
47d1a6e1 WD |
52 | #include <rtc.h> |
53 | #endif | |
54 | ||
55 | #ifdef CFG_HUSH_PARSER | |
56 | #include <hush.h> | |
57 | #endif | |
58 | ||
47d1a6e1 WD |
59 | #ifdef CFG_INIT_RAM_LOCK |
60 | #include <asm/cache.h> | |
61 | #endif | |
62 | ||
228f29ac WD |
63 | #ifdef CONFIG_LOGBUFFER |
64 | #include <logbuff.h> | |
65 | #endif | |
66 | ||
2abbe075 WD |
67 | #ifdef CONFIG_HAS_DATAFLASH |
68 | #include <dataflash.h> | |
69 | #endif | |
70 | ||
47d1a6e1 WD |
71 | /* |
72 | * Some systems (for example LWMON) have very short watchdog periods; | |
73 | * we must make sure to split long operations like memmove() or | |
74 | * crc32() into reasonable chunks. | |
75 | */ | |
76 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) | |
77 | # define CHUNKSZ (64 * 1024) | |
78 | #endif | |
79 | ||
eedcd078 | 80 | int gunzip (void *, int, unsigned char *, unsigned long *); |
47d1a6e1 WD |
81 | |
82 | static void *zalloc(void *, unsigned, unsigned); | |
83 | static void zfree(void *, void *, unsigned); | |
84 | ||
baa26db4 | 85 | #if defined(CONFIG_CMD_IMI) |
47d1a6e1 WD |
86 | static int image_info (unsigned long addr); |
87 | #endif | |
27b207fd | 88 | |
baa26db4 | 89 | #if defined(CONFIG_CMD_IMLS) |
27b207fd | 90 | #include <flash.h> |
e6f2e902 | 91 | extern flash_info_t flash_info[]; /* info for FLASH chips */ |
27b207fd WD |
92 | static int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); |
93 | #endif | |
94 | ||
47d1a6e1 WD |
95 | static void print_type (image_header_t *hdr); |
96 | ||
2262cfee WD |
97 | #ifdef __I386__ |
98 | image_header_t *fake_header(image_header_t *hdr, void *ptr, int size); | |
99 | #endif | |
100 | ||
47d1a6e1 WD |
101 | /* |
102 | * Continue booting an OS image; caller already has: | |
103 | * - copied image header to global variable `header' | |
104 | * - checked header magic number, checksums (both header & image), | |
105 | * - verified image architecture (PPC) and type (KERNEL or MULTI), | |
106 | * - loaded (first part of) image to header load address, | |
107 | * - disabled interrupts. | |
108 | */ | |
109 | typedef void boot_os_Fcn (cmd_tbl_t *cmdtp, int flag, | |
110 | int argc, char *argv[], | |
111 | ulong addr, /* of image to boot */ | |
112 | ulong *len_ptr, /* multi-file image length table */ | |
113 | int verify); /* getenv("verify")[0] != 'n' */ | |
114 | ||
8bde7f77 WD |
115 | #ifdef DEBUG |
116 | extern int do_bdinfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]); | |
117 | #endif | |
118 | ||
2262cfee | 119 | #ifdef CONFIG_PPC |
47d1a6e1 WD |
120 | static boot_os_Fcn do_bootm_linux; |
121 | #else | |
122 | extern boot_os_Fcn do_bootm_linux; | |
123 | #endif | |
f72da340 WD |
124 | #ifdef CONFIG_SILENT_CONSOLE |
125 | static void fixup_silent_linux (void); | |
126 | #endif | |
47d1a6e1 | 127 | static boot_os_Fcn do_bootm_netbsd; |
d791b1dc | 128 | static boot_os_Fcn do_bootm_rtems; |
baa26db4 | 129 | #if defined(CONFIG_CMD_ELF) |
47d1a6e1 WD |
130 | static boot_os_Fcn do_bootm_vxworks; |
131 | static boot_os_Fcn do_bootm_qnxelf; | |
132 | int do_bootvx ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] ); | |
133 | int do_bootelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[] ); | |
90253178 | 134 | #endif |
7f70e853 WD |
135 | #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC) |
136 | static boot_os_Fcn do_bootm_artos; | |
137 | #endif | |
1f4bb37d WD |
138 | #ifdef CONFIG_LYNXKDI |
139 | static boot_os_Fcn do_bootm_lynxkdi; | |
140 | extern void lynxkdi_boot( image_header_t * ); | |
141 | #endif | |
47d1a6e1 | 142 | |
15940c9a SR |
143 | #ifndef CFG_BOOTM_LEN |
144 | #define CFG_BOOTM_LEN 0x800000 /* use 8MByte as default max gunzip size */ | |
145 | #endif | |
146 | ||
47d1a6e1 WD |
147 | image_header_t header; |
148 | ||
149 | ulong load_addr = CFG_LOAD_ADDR; /* Default Load Address */ | |
150 | ||
151 | int do_bootm (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
152 | { | |
153 | ulong iflag; | |
154 | ulong addr; | |
155 | ulong data, len, checksum; | |
156 | ulong *len_ptr; | |
15940c9a | 157 | uint unc_len = CFG_BOOTM_LEN; |
47d1a6e1 WD |
158 | int i, verify; |
159 | char *name, *s; | |
b13fb01a | 160 | int (*appl)(int, char *[]); |
47d1a6e1 WD |
161 | image_header_t *hdr = &header; |
162 | ||
163 | s = getenv ("verify"); | |
164 | verify = (s && (*s == 'n')) ? 0 : 1; | |
165 | ||
166 | if (argc < 2) { | |
167 | addr = load_addr; | |
168 | } else { | |
169 | addr = simple_strtoul(argv[1], NULL, 16); | |
170 | } | |
171 | ||
fad63407 | 172 | show_boot_progress (1); |
47d1a6e1 WD |
173 | printf ("## Booting image at %08lx ...\n", addr); |
174 | ||
175 | /* Copy header so we can blank CRC field for re-calculation */ | |
2abbe075 WD |
176 | #ifdef CONFIG_HAS_DATAFLASH |
177 | if (addr_dataflash(addr)){ | |
178 | read_dataflash(addr, sizeof(image_header_t), (char *)&header); | |
179 | } else | |
180 | #endif | |
47d1a6e1 WD |
181 | memmove (&header, (char *)addr, sizeof(image_header_t)); |
182 | ||
183 | if (ntohl(hdr->ih_magic) != IH_MAGIC) { | |
2262cfee WD |
184 | #ifdef __I386__ /* correct image format not implemented yet - fake it */ |
185 | if (fake_header(hdr, (void*)addr, -1) != NULL) { | |
186 | /* to compensate for the addition below */ | |
187 | addr -= sizeof(image_header_t); | |
188 | /* turnof verify, | |
189 | * fake_header() does not fake the data crc | |
190 | */ | |
191 | verify = 0; | |
192 | } else | |
193 | #endif /* __I386__ */ | |
194 | { | |
4b9206ed | 195 | puts ("Bad Magic Number\n"); |
fad63407 | 196 | show_boot_progress (-1); |
47d1a6e1 | 197 | return 1; |
2262cfee | 198 | } |
47d1a6e1 | 199 | } |
fad63407 | 200 | show_boot_progress (2); |
47d1a6e1 WD |
201 | |
202 | data = (ulong)&header; | |
203 | len = sizeof(image_header_t); | |
204 | ||
205 | checksum = ntohl(hdr->ih_hcrc); | |
206 | hdr->ih_hcrc = 0; | |
207 | ||
77ddac94 | 208 | if (crc32 (0, (uchar *)data, len) != checksum) { |
4b9206ed | 209 | puts ("Bad Header Checksum\n"); |
fad63407 | 210 | show_boot_progress (-2); |
47d1a6e1 WD |
211 | return 1; |
212 | } | |
fad63407 | 213 | show_boot_progress (3); |
47d1a6e1 | 214 | |
bccae903 WD |
215 | #ifdef CONFIG_HAS_DATAFLASH |
216 | if (addr_dataflash(addr)){ | |
217 | len = ntohl(hdr->ih_size) + sizeof(image_header_t); | |
218 | read_dataflash(addr, len, (char *)CFG_LOAD_ADDR); | |
219 | addr = CFG_LOAD_ADDR; | |
220 | } | |
221 | #endif | |
222 | ||
223 | ||
47d1a6e1 | 224 | /* for multi-file images we need the data part, too */ |
a57a496f | 225 | print_image_hdr ((image_header_t *)addr); |
47d1a6e1 WD |
226 | |
227 | data = addr + sizeof(image_header_t); | |
228 | len = ntohl(hdr->ih_size); | |
229 | ||
230 | if (verify) { | |
4b9206ed | 231 | puts (" Verifying Checksum ... "); |
77ddac94 | 232 | if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) { |
47d1a6e1 | 233 | printf ("Bad Data CRC\n"); |
fad63407 | 234 | show_boot_progress (-3); |
47d1a6e1 WD |
235 | return 1; |
236 | } | |
4b9206ed | 237 | puts ("OK\n"); |
47d1a6e1 | 238 | } |
fad63407 | 239 | show_boot_progress (4); |
47d1a6e1 WD |
240 | |
241 | len_ptr = (ulong *)data; | |
242 | ||
44ba464b | 243 | #if defined(__ARM__) |
2262cfee | 244 | if (hdr->ih_arch != IH_CPU_ARM) |
44ba464b WD |
245 | #elif defined(__avr32__) |
246 | if (hdr->ih_arch != IH_CPU_AVR32) | |
247 | #elif defined(__bfin__) | |
248 | if (hdr->ih_arch != IH_CPU_BLACKFIN) | |
2262cfee WD |
249 | #elif defined(__I386__) |
250 | if (hdr->ih_arch != IH_CPU_I386) | |
4e5ca3eb WD |
251 | #elif defined(__M68K__) |
252 | if (hdr->ih_arch != IH_CPU_M68K) | |
507bbe3e WD |
253 | #elif defined(__microblaze__) |
254 | if (hdr->ih_arch != IH_CPU_MICROBLAZE) | |
44ba464b WD |
255 | #elif defined(__mips__) |
256 | if (hdr->ih_arch != IH_CPU_MIPS) | |
257 | #elif defined(__nios__) | |
258 | if (hdr->ih_arch != IH_CPU_NIOS) | |
5c952cf0 WD |
259 | #elif defined(__nios2__) |
260 | if (hdr->ih_arch != IH_CPU_NIOS2) | |
44ba464b WD |
261 | #elif defined(__PPC__) |
262 | if (hdr->ih_arch != IH_CPU_PPC) | |
2262cfee WD |
263 | #else |
264 | # error Unknown CPU type | |
265 | #endif | |
266 | { | |
267 | printf ("Unsupported Architecture 0x%x\n", hdr->ih_arch); | |
fad63407 | 268 | show_boot_progress (-4); |
47d1a6e1 WD |
269 | return 1; |
270 | } | |
fad63407 | 271 | show_boot_progress (5); |
47d1a6e1 WD |
272 | |
273 | switch (hdr->ih_type) { | |
b13fb01a WD |
274 | case IH_TYPE_STANDALONE: |
275 | name = "Standalone Application"; | |
276 | /* A second argument overwrites the load address */ | |
277 | if (argc > 2) { | |
b2532eff | 278 | hdr->ih_load = htonl(simple_strtoul(argv[2], NULL, 16)); |
b13fb01a WD |
279 | } |
280 | break; | |
281 | case IH_TYPE_KERNEL: | |
282 | name = "Kernel Image"; | |
283 | break; | |
d4ca31c4 | 284 | case IH_TYPE_MULTI: |
b13fb01a WD |
285 | name = "Multi-File Image"; |
286 | len = ntohl(len_ptr[0]); | |
287 | /* OS kernel is always the first image */ | |
288 | data += 8; /* kernel_len + terminator */ | |
289 | for (i=1; len_ptr[i]; ++i) | |
290 | data += 4; | |
291 | break; | |
47d1a6e1 | 292 | default: printf ("Wrong Image Type for %s command\n", cmdtp->name); |
fad63407 | 293 | show_boot_progress (-5); |
47d1a6e1 WD |
294 | return 1; |
295 | } | |
fad63407 | 296 | show_boot_progress (6); |
47d1a6e1 WD |
297 | |
298 | /* | |
299 | * We have reached the point of no return: we are going to | |
300 | * overwrite all exception vector code, so we cannot easily | |
301 | * recover from any failures any more... | |
302 | */ | |
303 | ||
304 | iflag = disable_interrupts(); | |
305 | ||
c7de829c WD |
306 | #ifdef CONFIG_AMIGAONEG3SE |
307 | /* | |
8bde7f77 | 308 | * We've possible left the caches enabled during |
c7de829c WD |
309 | * bios emulation, so turn them off again |
310 | */ | |
311 | icache_disable(); | |
312 | invalidate_l1_instruction_cache(); | |
313 | flush_data_cache(); | |
314 | dcache_disable(); | |
315 | #endif | |
316 | ||
47d1a6e1 WD |
317 | switch (hdr->ih_comp) { |
318 | case IH_COMP_NONE: | |
2262cfee | 319 | if(ntohl(hdr->ih_load) == addr) { |
47d1a6e1 WD |
320 | printf (" XIP %s ... ", name); |
321 | } else { | |
322 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) | |
323 | size_t l = len; | |
324 | void *to = (void *)ntohl(hdr->ih_load); | |
325 | void *from = (void *)data; | |
326 | ||
327 | printf (" Loading %s ... ", name); | |
328 | ||
329 | while (l > 0) { | |
330 | size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l; | |
331 | WATCHDOG_RESET(); | |
332 | memmove (to, from, tail); | |
333 | to += tail; | |
334 | from += tail; | |
335 | l -= tail; | |
336 | } | |
337 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ | |
338 | memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len); | |
339 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ | |
340 | } | |
341 | break; | |
342 | case IH_COMP_GZIP: | |
343 | printf (" Uncompressing %s ... ", name); | |
c29fdfc1 | 344 | if (gunzip ((void *)ntohl(hdr->ih_load), unc_len, |
eedcd078 | 345 | (uchar *)data, &len) != 0) { |
4b9206ed | 346 | puts ("GUNZIP ERROR - must RESET board to recover\n"); |
fad63407 | 347 | show_boot_progress (-6); |
47d1a6e1 WD |
348 | do_reset (cmdtp, flag, argc, argv); |
349 | } | |
350 | break; | |
c29fdfc1 WD |
351 | #ifdef CONFIG_BZIP2 |
352 | case IH_COMP_BZIP2: | |
353 | printf (" Uncompressing %s ... ", name); | |
5653fc33 WD |
354 | /* |
355 | * If we've got less than 4 MB of malloc() space, | |
356 | * use slower decompression algorithm which requires | |
357 | * at most 2300 KB of memory. | |
358 | */ | |
c29fdfc1 | 359 | i = BZ2_bzBuffToBuffDecompress ((char*)ntohl(hdr->ih_load), |
5653fc33 WD |
360 | &unc_len, (char *)data, len, |
361 | CFG_MALLOC_LEN < (4096 * 1024), 0); | |
c29fdfc1 WD |
362 | if (i != BZ_OK) { |
363 | printf ("BUNZIP2 ERROR %d - must RESET board to recover\n", i); | |
fad63407 | 364 | show_boot_progress (-6); |
c29fdfc1 WD |
365 | udelay(100000); |
366 | do_reset (cmdtp, flag, argc, argv); | |
367 | } | |
368 | break; | |
369 | #endif /* CONFIG_BZIP2 */ | |
47d1a6e1 WD |
370 | default: |
371 | if (iflag) | |
372 | enable_interrupts(); | |
373 | printf ("Unimplemented compression type %d\n", hdr->ih_comp); | |
fad63407 | 374 | show_boot_progress (-7); |
47d1a6e1 WD |
375 | return 1; |
376 | } | |
4b9206ed | 377 | puts ("OK\n"); |
fad63407 | 378 | show_boot_progress (7); |
47d1a6e1 WD |
379 | |
380 | switch (hdr->ih_type) { | |
381 | case IH_TYPE_STANDALONE: | |
47d1a6e1 WD |
382 | if (iflag) |
383 | enable_interrupts(); | |
384 | ||
4a6fd34b WD |
385 | /* load (and uncompress), but don't start if "autostart" |
386 | * is set to "no" | |
387 | */ | |
4a551709 WD |
388 | if (((s = getenv("autostart")) != NULL) && (strcmp(s,"no") == 0)) { |
389 | char buf[32]; | |
390 | sprintf(buf, "%lX", len); | |
391 | setenv("filesize", buf); | |
4a6fd34b | 392 | return 0; |
4a551709 | 393 | } |
b13fb01a WD |
394 | appl = (int (*)(int, char *[]))ntohl(hdr->ih_ep); |
395 | (*appl)(argc-1, &argv[1]); | |
4a6fd34b | 396 | return 0; |
47d1a6e1 WD |
397 | case IH_TYPE_KERNEL: |
398 | case IH_TYPE_MULTI: | |
399 | /* handled below */ | |
400 | break; | |
401 | default: | |
402 | if (iflag) | |
403 | enable_interrupts(); | |
404 | printf ("Can't boot image type %d\n", hdr->ih_type); | |
fad63407 | 405 | show_boot_progress (-8); |
47d1a6e1 WD |
406 | return 1; |
407 | } | |
fad63407 | 408 | show_boot_progress (8); |
47d1a6e1 WD |
409 | |
410 | switch (hdr->ih_os) { | |
411 | default: /* handled by (original) Linux case */ | |
412 | case IH_OS_LINUX: | |
f72da340 WD |
413 | #ifdef CONFIG_SILENT_CONSOLE |
414 | fixup_silent_linux(); | |
415 | #endif | |
47d1a6e1 WD |
416 | do_bootm_linux (cmdtp, flag, argc, argv, |
417 | addr, len_ptr, verify); | |
418 | break; | |
419 | case IH_OS_NETBSD: | |
420 | do_bootm_netbsd (cmdtp, flag, argc, argv, | |
421 | addr, len_ptr, verify); | |
422 | break; | |
8bde7f77 | 423 | |
1f4bb37d WD |
424 | #ifdef CONFIG_LYNXKDI |
425 | case IH_OS_LYNXOS: | |
426 | do_bootm_lynxkdi (cmdtp, flag, argc, argv, | |
427 | addr, len_ptr, verify); | |
428 | break; | |
429 | #endif | |
430 | ||
d791b1dc WD |
431 | case IH_OS_RTEMS: |
432 | do_bootm_rtems (cmdtp, flag, argc, argv, | |
433 | addr, len_ptr, verify); | |
434 | break; | |
8bde7f77 | 435 | |
baa26db4 | 436 | #if defined(CONFIG_CMD_ELF) |
47d1a6e1 WD |
437 | case IH_OS_VXWORKS: |
438 | do_bootm_vxworks (cmdtp, flag, argc, argv, | |
439 | addr, len_ptr, verify); | |
440 | break; | |
441 | case IH_OS_QNX: | |
442 | do_bootm_qnxelf (cmdtp, flag, argc, argv, | |
443 | addr, len_ptr, verify); | |
444 | break; | |
90253178 | 445 | #endif |
7f70e853 WD |
446 | #ifdef CONFIG_ARTOS |
447 | case IH_OS_ARTOS: | |
448 | do_bootm_artos (cmdtp, flag, argc, argv, | |
449 | addr, len_ptr, verify); | |
450 | break; | |
451 | #endif | |
47d1a6e1 WD |
452 | } |
453 | ||
fad63407 | 454 | show_boot_progress (-9); |
47d1a6e1 | 455 | #ifdef DEBUG |
4b9206ed | 456 | puts ("\n## Control returned to monitor - resetting...\n"); |
47d1a6e1 WD |
457 | do_reset (cmdtp, flag, argc, argv); |
458 | #endif | |
459 | return 1; | |
460 | } | |
461 | ||
0d498393 WD |
462 | U_BOOT_CMD( |
463 | bootm, CFG_MAXARGS, 1, do_bootm, | |
8bde7f77 WD |
464 | "bootm - boot application image from memory\n", |
465 | "[addr [arg ...]]\n - boot application image stored in memory\n" | |
9d5028c2 WD |
466 | "\tpassing arguments 'arg ...'; when booting a Linux kernel,\n" |
467 | "\t'arg' can be the address of an initrd image\n" | |
213bf8c8 | 468 | #if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT) |
98a9c4d4 MM |
469 | "\tWhen booting a Linux kernel which requires a flat device-tree\n" |
470 | "\ta third argument is required which is the address of the of the\n" | |
471 | "\tdevice-tree blob. To boot that kernel without an initrd image,\n" | |
472 | "\tuse a '-' for the second argument. If you do not pass a third\n" | |
473 | "\ta bd_info struct will be passed instead\n" | |
474 | #endif | |
8bde7f77 WD |
475 | ); |
476 | ||
f72da340 WD |
477 | #ifdef CONFIG_SILENT_CONSOLE |
478 | static void | |
479 | fixup_silent_linux () | |
480 | { | |
f72da340 WD |
481 | char buf[256], *start, *end; |
482 | char *cmdline = getenv ("bootargs"); | |
483 | ||
484 | /* Only fix cmdline when requested */ | |
485 | if (!(gd->flags & GD_FLG_SILENT)) | |
486 | return; | |
487 | ||
488 | debug ("before silent fix-up: %s\n", cmdline); | |
489 | if (cmdline) { | |
490 | if ((start = strstr (cmdline, "console=")) != NULL) { | |
491 | end = strchr (start, ' '); | |
492 | strncpy (buf, cmdline, (start - cmdline + 8)); | |
493 | if (end) | |
494 | strcpy (buf + (start - cmdline + 8), end); | |
495 | else | |
496 | buf[start - cmdline + 8] = '\0'; | |
497 | } else { | |
498 | strcpy (buf, cmdline); | |
499 | strcat (buf, " console="); | |
500 | } | |
501 | } else { | |
502 | strcpy (buf, "console="); | |
503 | } | |
504 | ||
505 | setenv ("bootargs", buf); | |
506 | debug ("after silent fix-up: %s\n", buf); | |
507 | } | |
508 | #endif /* CONFIG_SILENT_CONSOLE */ | |
509 | ||
2262cfee | 510 | #ifdef CONFIG_PPC |
b2b78421 | 511 | static void __attribute__((noinline)) |
47d1a6e1 WD |
512 | do_bootm_linux (cmd_tbl_t *cmdtp, int flag, |
513 | int argc, char *argv[], | |
514 | ulong addr, | |
515 | ulong *len_ptr, | |
516 | int verify) | |
517 | { | |
47d1a6e1 WD |
518 | ulong sp; |
519 | ulong len, checksum; | |
520 | ulong initrd_start, initrd_end; | |
521 | ulong cmd_start, cmd_end; | |
522 | ulong initrd_high; | |
523 | ulong data; | |
38b99261 | 524 | int initrd_copy_to_ram = 1; |
47d1a6e1 WD |
525 | char *cmdline; |
526 | char *s; | |
527 | bd_t *kbd; | |
528 | void (*kernel)(bd_t *, ulong, ulong, ulong, ulong); | |
529 | image_header_t *hdr = &header; | |
213bf8c8 | 530 | #if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT) |
25c751e9 | 531 | char *of_flat_tree = NULL; |
c76f951a | 532 | ulong of_data = 0; |
f57f70aa | 533 | #endif |
47d1a6e1 WD |
534 | |
535 | if ((s = getenv ("initrd_high")) != NULL) { | |
536 | /* a value of "no" or a similar string will act like 0, | |
537 | * turning the "load high" feature off. This is intentional. | |
538 | */ | |
539 | initrd_high = simple_strtoul(s, NULL, 16); | |
38b99261 WD |
540 | if (initrd_high == ~0) |
541 | initrd_copy_to_ram = 0; | |
228f29ac | 542 | } else { /* not set, no restrictions to load high */ |
47d1a6e1 WD |
543 | initrd_high = ~0; |
544 | } | |
545 | ||
56f94be3 | 546 | #ifdef CONFIG_LOGBUFFER |
6aff3115 | 547 | kbd=gd->bd; |
228f29ac WD |
548 | /* Prevent initrd from overwriting logbuffer */ |
549 | if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD)) | |
550 | initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD; | |
551 | debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN); | |
56f94be3 WD |
552 | #endif |
553 | ||
47d1a6e1 WD |
554 | /* |
555 | * Booting a (Linux) kernel image | |
556 | * | |
557 | * Allocate space for command line and board info - the | |
558 | * address should be as high as possible within the reach of | |
559 | * the kernel (see CFG_BOOTMAPSZ settings), but in unused | |
560 | * memory, which means far enough below the current stack | |
561 | * pointer. | |
562 | */ | |
563 | ||
564 | asm( "mr %0,1": "=r"(sp) : ); | |
565 | ||
56f94be3 WD |
566 | debug ("## Current stack ends at 0x%08lX ", sp); |
567 | ||
47d1a6e1 WD |
568 | sp -= 2048; /* just to be sure */ |
569 | if (sp > CFG_BOOTMAPSZ) | |
570 | sp = CFG_BOOTMAPSZ; | |
571 | sp &= ~0xF; | |
572 | ||
56f94be3 WD |
573 | debug ("=> set upper limit to 0x%08lX\n", sp); |
574 | ||
47d1a6e1 WD |
575 | cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF); |
576 | kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF); | |
577 | ||
578 | if ((s = getenv("bootargs")) == NULL) | |
579 | s = ""; | |
580 | ||
581 | strcpy (cmdline, s); | |
582 | ||
583 | cmd_start = (ulong)&cmdline[0]; | |
584 | cmd_end = cmd_start + strlen(cmdline); | |
585 | ||
586 | *kbd = *(gd->bd); | |
587 | ||
588 | #ifdef DEBUG | |
589 | printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end); | |
590 | ||
591 | do_bdinfo (NULL, 0, 0, NULL); | |
592 | #endif | |
593 | ||
594 | if ((s = getenv ("clocks_in_mhz")) != NULL) { | |
595 | /* convert all clock information to MHz */ | |
596 | kbd->bi_intfreq /= 1000000L; | |
597 | kbd->bi_busfreq /= 1000000L; | |
983fda83 | 598 | #if defined(CONFIG_MPC8220) |
9d5028c2 WD |
599 | kbd->bi_inpfreq /= 1000000L; |
600 | kbd->bi_pcifreq /= 1000000L; | |
601 | kbd->bi_pevfreq /= 1000000L; | |
602 | kbd->bi_flbfreq /= 1000000L; | |
603 | kbd->bi_vcofreq /= 1000000L; | |
983fda83 | 604 | #endif |
9c4c5ae3 | 605 | #if defined(CONFIG_CPM2) |
47d1a6e1 WD |
606 | kbd->bi_cpmfreq /= 1000000L; |
607 | kbd->bi_brgfreq /= 1000000L; | |
608 | kbd->bi_sccfreq /= 1000000L; | |
609 | kbd->bi_vco /= 1000000L; | |
9c4c5ae3 | 610 | #endif |
cbd8a35c | 611 | #if defined(CONFIG_MPC5xxx) |
945af8d7 WD |
612 | kbd->bi_ipbfreq /= 1000000L; |
613 | kbd->bi_pcifreq /= 1000000L; | |
cbd8a35c | 614 | #endif /* CONFIG_MPC5xxx */ |
47d1a6e1 WD |
615 | } |
616 | ||
dc013d46 | 617 | kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong)) ntohl(hdr->ih_ep); |
47d1a6e1 WD |
618 | |
619 | /* | |
620 | * Check if there is an initrd image | |
621 | */ | |
98a9c4d4 | 622 | |
213bf8c8 | 623 | #if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT) |
98a9c4d4 MM |
624 | /* Look for a '-' which indicates to ignore the ramdisk argument */ |
625 | if (argc >= 3 && strcmp(argv[2], "-") == 0) { | |
626 | debug ("Skipping initrd\n"); | |
7376eb87 | 627 | len = data = 0; |
98a9c4d4 MM |
628 | } |
629 | else | |
630 | #endif | |
47d1a6e1 | 631 | if (argc >= 3) { |
98a9c4d4 | 632 | debug ("Not skipping initrd\n"); |
fad63407 | 633 | show_boot_progress (9); |
47d1a6e1 WD |
634 | |
635 | addr = simple_strtoul(argv[2], NULL, 16); | |
636 | ||
637 | printf ("## Loading RAMDisk Image at %08lx ...\n", addr); | |
638 | ||
639 | /* Copy header so we can blank CRC field for re-calculation */ | |
640 | memmove (&header, (char *)addr, sizeof(image_header_t)); | |
641 | ||
dc013d46 | 642 | if (ntohl(hdr->ih_magic) != IH_MAGIC) { |
4b9206ed | 643 | puts ("Bad Magic Number\n"); |
fad63407 | 644 | show_boot_progress (-10); |
47d1a6e1 WD |
645 | do_reset (cmdtp, flag, argc, argv); |
646 | } | |
647 | ||
648 | data = (ulong)&header; | |
649 | len = sizeof(image_header_t); | |
650 | ||
dc013d46 | 651 | checksum = ntohl(hdr->ih_hcrc); |
47d1a6e1 WD |
652 | hdr->ih_hcrc = 0; |
653 | ||
77ddac94 | 654 | if (crc32 (0, (uchar *)data, len) != checksum) { |
4b9206ed | 655 | puts ("Bad Header Checksum\n"); |
fad63407 | 656 | show_boot_progress (-11); |
47d1a6e1 WD |
657 | do_reset (cmdtp, flag, argc, argv); |
658 | } | |
659 | ||
fad63407 | 660 | show_boot_progress (10); |
47d1a6e1 WD |
661 | |
662 | print_image_hdr (hdr); | |
663 | ||
664 | data = addr + sizeof(image_header_t); | |
dc013d46 | 665 | len = ntohl(hdr->ih_size); |
47d1a6e1 WD |
666 | |
667 | if (verify) { | |
668 | ulong csum = 0; | |
669 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) | |
670 | ulong cdata = data, edata = cdata + len; | |
671 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ | |
672 | ||
4b9206ed | 673 | puts (" Verifying Checksum ... "); |
47d1a6e1 WD |
674 | |
675 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) | |
676 | ||
677 | while (cdata < edata) { | |
678 | ulong chunk = edata - cdata; | |
679 | ||
680 | if (chunk > CHUNKSZ) | |
681 | chunk = CHUNKSZ; | |
77ddac94 | 682 | csum = crc32 (csum, (uchar *)cdata, chunk); |
47d1a6e1 WD |
683 | cdata += chunk; |
684 | ||
685 | WATCHDOG_RESET(); | |
686 | } | |
687 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ | |
77ddac94 | 688 | csum = crc32 (0, (uchar *)data, len); |
47d1a6e1 WD |
689 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ |
690 | ||
dc013d46 | 691 | if (csum != ntohl(hdr->ih_dcrc)) { |
4b9206ed | 692 | puts ("Bad Data CRC\n"); |
fad63407 | 693 | show_boot_progress (-12); |
47d1a6e1 WD |
694 | do_reset (cmdtp, flag, argc, argv); |
695 | } | |
4b9206ed | 696 | puts ("OK\n"); |
47d1a6e1 WD |
697 | } |
698 | ||
fad63407 | 699 | show_boot_progress (11); |
47d1a6e1 WD |
700 | |
701 | if ((hdr->ih_os != IH_OS_LINUX) || | |
702 | (hdr->ih_arch != IH_CPU_PPC) || | |
703 | (hdr->ih_type != IH_TYPE_RAMDISK) ) { | |
4b9206ed | 704 | puts ("No Linux PPC Ramdisk Image\n"); |
fad63407 | 705 | show_boot_progress (-13); |
47d1a6e1 WD |
706 | do_reset (cmdtp, flag, argc, argv); |
707 | } | |
708 | ||
709 | /* | |
710 | * Now check if we have a multifile image | |
711 | */ | |
712 | } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) { | |
713 | u_long tail = ntohl(len_ptr[0]) % 4; | |
714 | int i; | |
715 | ||
fad63407 | 716 | show_boot_progress (13); |
47d1a6e1 WD |
717 | |
718 | /* skip kernel length and terminator */ | |
719 | data = (ulong)(&len_ptr[2]); | |
720 | /* skip any additional image length fields */ | |
721 | for (i=1; len_ptr[i]; ++i) | |
722 | data += 4; | |
723 | /* add kernel length, and align */ | |
724 | data += ntohl(len_ptr[0]); | |
725 | if (tail) { | |
726 | data += 4 - tail; | |
727 | } | |
728 | ||
729 | len = ntohl(len_ptr[1]); | |
730 | ||
731 | } else { | |
732 | /* | |
733 | * no initrd image | |
734 | */ | |
fad63407 | 735 | show_boot_progress (14); |
47d1a6e1 WD |
736 | |
737 | len = data = 0; | |
738 | } | |
739 | ||
213bf8c8 | 740 | #if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT) |
5de62c47 | 741 | if(argc > 3) { |
98a9c4d4 | 742 | of_flat_tree = (char *) simple_strtoul(argv[3], NULL, 16); |
25c751e9 | 743 | hdr = (image_header_t *)of_flat_tree; |
213bf8c8 | 744 | #if defined(CONFIG_OF_LIBFDT) |
c28abb9c | 745 | if (fdt_check_header(of_flat_tree) == 0) { |
213bf8c8 GVB |
746 | #else |
747 | if (*(ulong *)of_flat_tree == OF_DT_HEADER) { | |
748 | #endif | |
25c751e9 | 749 | #ifndef CFG_NO_FLASH |
c76f951a KG |
750 | if (addr2info((ulong)of_flat_tree) != NULL) |
751 | of_data = (ulong)of_flat_tree; | |
25c751e9 MM |
752 | #endif |
753 | } else if (ntohl(hdr->ih_magic) == IH_MAGIC) { | |
754 | printf("## Flat Device Tree Image at %08lX\n", hdr); | |
755 | print_image_hdr(hdr); | |
756 | ||
757 | if ((ntohl(hdr->ih_load) < ((unsigned long)hdr + ntohl(hdr->ih_size) + sizeof(hdr))) && | |
758 | ((ntohl(hdr->ih_load) + ntohl(hdr->ih_size)) > (unsigned long)hdr)) { | |
759 | printf ("ERROR: Load address overwrites Flat Device Tree uImage\n"); | |
760 | return; | |
761 | } | |
87a449c8 | 762 | |
25c751e9 MM |
763 | printf(" Verifying Checksum ... "); |
764 | memmove (&header, (char *)hdr, sizeof(image_header_t)); | |
765 | checksum = ntohl(header.ih_hcrc); | |
766 | header.ih_hcrc = 0; | |
767 | ||
768 | if(checksum != crc32(0, (uchar *)&header, sizeof(image_header_t))) { | |
769 | printf("ERROR: Flat Device Tree header checksum is invalid\n"); | |
770 | return; | |
771 | } | |
772 | ||
773 | checksum = ntohl(hdr->ih_dcrc); | |
774 | addr = (ulong)((uchar *)(hdr) + sizeof(image_header_t)); | |
25c751e9 | 775 | |
9877d7dc | 776 | if(checksum != crc32(0, (uchar *)addr, ntohl(hdr->ih_size))) { |
25c751e9 MM |
777 | printf("ERROR: Flat Device Tree checksum is invalid\n"); |
778 | return; | |
779 | } | |
780 | printf("OK\n"); | |
781 | ||
782 | if (ntohl(hdr->ih_type) != IH_TYPE_FLATDT) { | |
783 | printf ("ERROR: uImage not Flat Device Tree type\n"); | |
784 | return; | |
785 | } | |
786 | if (ntohl(hdr->ih_comp) != IH_COMP_NONE) { | |
787 | printf("ERROR: uImage is not uncompressed\n"); | |
788 | return; | |
789 | } | |
213bf8c8 | 790 | #if defined(CONFIG_OF_LIBFDT) |
89c8757d | 791 | if (fdt_check_header(of_flat_tree + sizeof(image_header_t)) != 0) { |
213bf8c8 | 792 | #else |
25c751e9 | 793 | if (*((ulong *)(of_flat_tree + sizeof(image_header_t))) != OF_DT_HEADER) { |
213bf8c8 | 794 | #endif |
25c751e9 MM |
795 | printf ("ERROR: uImage data is not a flat device tree\n"); |
796 | return; | |
797 | } | |
87a449c8 MM |
798 | |
799 | memmove((void *)ntohl(hdr->ih_load), | |
25c751e9 MM |
800 | (void *)(of_flat_tree + sizeof(image_header_t)), |
801 | ntohl(hdr->ih_size)); | |
802 | of_flat_tree = (char *)ntohl(hdr->ih_load); | |
803 | } else { | |
804 | printf ("Did not find a flat flat device tree at address %08lX\n", of_flat_tree); | |
805 | return; | |
806 | } | |
807 | printf (" Booting using flat device tree at 0x%x\n", | |
98a9c4d4 | 808 | of_flat_tree); |
c76f951a KG |
809 | } else if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1]) && (len_ptr[2])) { |
810 | u_long tail = ntohl(len_ptr[0]) % 4; | |
811 | int i; | |
812 | ||
813 | /* skip kernel length, initrd length, and terminator */ | |
814 | of_data = (ulong)(&len_ptr[3]); | |
815 | /* skip any additional image length fields */ | |
816 | for (i=2; len_ptr[i]; ++i) | |
817 | of_data += 4; | |
818 | /* add kernel length, and align */ | |
819 | of_data += ntohl(len_ptr[0]); | |
820 | if (tail) { | |
821 | of_data += 4 - tail; | |
822 | } | |
823 | ||
824 | /* add initrd length, and align */ | |
825 | tail = ntohl(len_ptr[1]) % 4; | |
826 | of_data += ntohl(len_ptr[1]); | |
827 | if (tail) { | |
828 | of_data += 4 - tail; | |
829 | } | |
830 | ||
213bf8c8 | 831 | #if defined(CONFIG_OF_LIBFDT) |
c28abb9c | 832 | if (fdt_check_header((void *)of_data) != 0) { |
213bf8c8 | 833 | #else |
c76f951a | 834 | if (((struct boot_param_header *)of_data)->magic != OF_DT_HEADER) { |
213bf8c8 | 835 | #endif |
c76f951a KG |
836 | printf ("ERROR: image is not a flat device tree\n"); |
837 | return; | |
838 | } | |
839 | ||
213bf8c8 GVB |
840 | #if defined(CONFIG_OF_LIBFDT) |
841 | if (be32_to_cpu(fdt_totalsize(of_data)) != ntohl(len_ptr[2])) { | |
842 | #else | |
c76f951a | 843 | if (((struct boot_param_header *)of_data)->totalsize != ntohl(len_ptr[2])) { |
213bf8c8 | 844 | #endif |
c76f951a KG |
845 | printf ("ERROR: flat device tree size does not agree with image\n"); |
846 | return; | |
847 | } | |
98a9c4d4 MM |
848 | } |
849 | #endif | |
47d1a6e1 | 850 | if (!data) { |
56f94be3 | 851 | debug ("No initrd\n"); |
47d1a6e1 | 852 | } |
47d1a6e1 WD |
853 | |
854 | if (data) { | |
38b99261 WD |
855 | if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */ |
856 | initrd_start = data; | |
857 | initrd_end = initrd_start + len; | |
858 | } else { | |
47d1a6e1 WD |
859 | initrd_start = (ulong)kbd - len; |
860 | initrd_start &= ~(4096 - 1); /* align on page */ | |
861 | ||
862 | if (initrd_high) { | |
863 | ulong nsp; | |
864 | ||
865 | /* | |
866 | * the inital ramdisk does not need to be within | |
867 | * CFG_BOOTMAPSZ as it is not accessed until after | |
868 | * the mm system is initialised. | |
869 | * | |
870 | * do the stack bottom calculation again and see if | |
871 | * the initrd will fit just below the monitor stack | |
872 | * bottom without overwriting the area allocated | |
873 | * above for command line args and board info. | |
874 | */ | |
875 | asm( "mr %0,1": "=r"(nsp) : ); | |
876 | nsp -= 2048; /* just to be sure */ | |
877 | nsp &= ~0xF; | |
878 | if (nsp > initrd_high) /* limit as specified */ | |
879 | nsp = initrd_high; | |
880 | nsp -= len; | |
881 | nsp &= ~(4096 - 1); /* align on page */ | |
882 | if (nsp >= sp) | |
883 | initrd_start = nsp; | |
884 | } | |
885 | ||
fad63407 | 886 | show_boot_progress (12); |
56f94be3 WD |
887 | |
888 | debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n", | |
47d1a6e1 | 889 | data, data + len - 1, len, len); |
56f94be3 | 890 | |
47d1a6e1 WD |
891 | initrd_end = initrd_start + len; |
892 | printf (" Loading Ramdisk to %08lx, end %08lx ... ", | |
893 | initrd_start, initrd_end); | |
894 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) | |
895 | { | |
896 | size_t l = len; | |
897 | void *to = (void *)initrd_start; | |
898 | void *from = (void *)data; | |
899 | ||
900 | while (l > 0) { | |
901 | size_t tail = (l > CHUNKSZ) ? CHUNKSZ : l; | |
902 | WATCHDOG_RESET(); | |
903 | memmove (to, from, tail); | |
904 | to += tail; | |
905 | from += tail; | |
906 | l -= tail; | |
907 | } | |
908 | } | |
909 | #else /* !(CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG) */ | |
910 | memmove ((void *)initrd_start, (void *)data, len); | |
911 | #endif /* CONFIG_HW_WATCHDOG || CONFIG_WATCHDOG */ | |
4b9206ed | 912 | puts ("OK\n"); |
38b99261 | 913 | } |
47d1a6e1 WD |
914 | } else { |
915 | initrd_start = 0; | |
916 | initrd_end = 0; | |
917 | } | |
918 | ||
56f94be3 | 919 | debug ("## Transferring control to Linux (at address %08lx) ...\n", |
47d1a6e1 | 920 | (ulong)kernel); |
56f94be3 | 921 | |
fad63407 | 922 | show_boot_progress (15); |
47d1a6e1 | 923 | |
42d1f039 | 924 | #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500) |
47d1a6e1 WD |
925 | unlock_ram_in_cache(); |
926 | #endif | |
f57f70aa | 927 | |
213bf8c8 GVB |
928 | #if defined(CONFIG_OF_LIBFDT) |
929 | /* move of_flat_tree if needed */ | |
930 | if (of_data) { | |
931 | int err; | |
932 | ulong of_start, of_len; | |
c28abb9c | 933 | |
213bf8c8 | 934 | of_len = be32_to_cpu(fdt_totalsize(of_data)); |
c28abb9c | 935 | /* position on a 4K boundary before the initrd/kbd */ |
213bf8c8 | 936 | if (initrd_start) |
c28abb9c | 937 | of_start = initrd_start - of_len; |
213bf8c8 | 938 | else |
c28abb9c | 939 | of_start = (ulong)kbd - of_len; |
213bf8c8 GVB |
940 | of_start &= ~(4096 - 1); /* align on page */ |
941 | debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n", | |
942 | of_data, of_data + of_len - 1, of_len, of_len); | |
943 | ||
c28abb9c | 944 | of_flat_tree = (char *)of_start; |
213bf8c8 GVB |
945 | printf (" Loading Device Tree to %08lx, end %08lx ... ", |
946 | of_start, of_start + of_len - 1); | |
89c8757d | 947 | err = fdt_open_into((void *)of_data, (void *)of_start, of_len); |
213bf8c8 | 948 | if (err != 0) { |
c28abb9c | 949 | printf ("libfdt: %s " __FILE__ " %d\n", fdt_strerror(err), __LINE__); |
213bf8c8 | 950 | } |
c28abb9c GVB |
951 | /* |
952 | * Add the chosen node if it doesn't exist, add the env and bd_t | |
953 | * if the user wants it (the logic is in the subroutines). | |
954 | */ | |
955 | if (fdt_chosen(of_flat_tree, initrd_start, initrd_end, 0) < 0) { | |
956 | printf("Failed creating the /chosen node (0x%08X), aborting.\n", of_flat_tree); | |
957 | return; | |
958 | } | |
959 | #ifdef CONFIG_OF_HAS_UBOOT_ENV | |
960 | if (fdt_env(of_flat_tree) < 0) { | |
961 | printf("Failed creating the /u-boot-env node, aborting.\n"); | |
962 | return; | |
963 | } | |
964 | #endif | |
965 | #ifdef CONFIG_OF_HAS_BD_T | |
966 | if (fdt_bd_t(of_flat_tree) < 0) { | |
967 | printf("Failed creating the /bd_t node, aborting.\n"); | |
968 | return; | |
969 | } | |
970 | #endif | |
213bf8c8 GVB |
971 | } |
972 | #endif | |
973 | #if defined(CONFIG_OF_FLAT_TREE) | |
c76f951a KG |
974 | /* move of_flat_tree if needed */ |
975 | if (of_data) { | |
976 | ulong of_start, of_len; | |
977 | of_len = ((struct boot_param_header *)of_data)->totalsize; | |
978 | /* provide extra 8k pad */ | |
979 | if (initrd_start) | |
980 | of_start = initrd_start - of_len - 8192; | |
981 | else | |
982 | of_start = (ulong)kbd - of_len - 8192; | |
983 | of_start &= ~(4096 - 1); /* align on page */ | |
984 | debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n", | |
985 | of_data, of_data + of_len - 1, of_len, of_len); | |
986 | ||
987 | of_flat_tree = (char *)of_start; | |
988 | printf (" Loading Device Tree to %08lx, end %08lx ... ", | |
989 | of_start, of_start + of_len - 1); | |
990 | memmove ((void *)of_start, (void *)of_data, of_len); | |
991 | } | |
da5553b0 | 992 | #endif |
c76f951a | 993 | |
da5553b0 SR |
994 | /* |
995 | * Linux Kernel Parameters (passing board info data): | |
996 | * r3: ptr to board info data | |
997 | * r4: initrd_start or 0 if no initrd | |
998 | * r5: initrd_end - unused if r4 is 0 | |
999 | * r6: Start of command line string | |
1000 | * r7: End of command line string | |
1001 | */ | |
213bf8c8 | 1002 | #if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT) |
da5553b0 | 1003 | if (!of_flat_tree) /* no device tree; boot old style */ |
f57f70aa | 1004 | #endif |
da5553b0 SR |
1005 | (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end); |
1006 | /* does not return */ | |
1007 | ||
213bf8c8 | 1008 | #if defined(CONFIG_OF_FLAT_TREE) || defined(CONFIG_OF_LIBFDT) |
f57f70aa | 1009 | /* |
da5553b0 | 1010 | * Linux Kernel Parameters (passing device tree): |
f57f70aa | 1011 | * r3: ptr to OF flat tree, followed by the board info data |
e559a690 KG |
1012 | * r4: physical pointer to the kernel itself |
1013 | * r5: NULL | |
1014 | * r6: NULL | |
1015 | * r7: NULL | |
f57f70aa | 1016 | */ |
213bf8c8 | 1017 | #if defined(CONFIG_OF_FLAT_TREE) |
da5553b0 SR |
1018 | ft_setup(of_flat_tree, kbd, initrd_start, initrd_end); |
1019 | /* ft_dump_blob(of_flat_tree); */ | |
213bf8c8 | 1020 | #endif |
c28abb9c GVB |
1021 | #if defined(CONFIG_OF_LIBFDT) |
1022 | if (fdt_chosen(of_flat_tree, initrd_start, initrd_end, 0) < 0) { | |
1023 | printf("Failed creating the /chosen node (0x%08X), aborting.\n", of_flat_tree); | |
1024 | return; | |
1025 | } | |
1026 | #ifdef CONFIG_OF_HAS_UBOOT_ENV | |
1027 | if (fdt_env(of_flat_tree) < 0) { | |
1028 | printf("Failed creating the /u-boot-env node, aborting.\n"); | |
1029 | return; | |
1030 | } | |
1031 | #endif | |
1032 | #ifdef CONFIG_OF_HAS_BD_T | |
1033 | if (fdt_bd_t(of_flat_tree) < 0) { | |
1034 | printf("Failed creating the /bd_t node, aborting.\n"); | |
1035 | return; | |
1036 | } | |
1037 | #endif | |
1038 | #endif /* if defined(CONFIG_OF_LIBFDT) */ | |
da5553b0 SR |
1039 | |
1040 | (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0); | |
1041 | #endif | |
47d1a6e1 | 1042 | } |
1cb8e980 | 1043 | #endif /* CONFIG_PPC */ |
47d1a6e1 WD |
1044 | |
1045 | static void | |
1046 | do_bootm_netbsd (cmd_tbl_t *cmdtp, int flag, | |
1047 | int argc, char *argv[], | |
1048 | ulong addr, | |
1049 | ulong *len_ptr, | |
1050 | int verify) | |
1051 | { | |
47d1a6e1 WD |
1052 | image_header_t *hdr = &header; |
1053 | ||
1054 | void (*loader)(bd_t *, image_header_t *, char *, char *); | |
1055 | image_header_t *img_addr; | |
1056 | char *consdev; | |
1057 | char *cmdline; | |
1058 | ||
1059 | ||
1060 | /* | |
1061 | * Booting a (NetBSD) kernel image | |
1062 | * | |
1063 | * This process is pretty similar to a standalone application: | |
1064 | * The (first part of an multi-) image must be a stage-2 loader, | |
1065 | * which in turn is responsible for loading & invoking the actual | |
1066 | * kernel. The only differences are the parameters being passed: | |
1067 | * besides the board info strucure, the loader expects a command | |
1068 | * line, the name of the console device, and (optionally) the | |
1069 | * address of the original image header. | |
1070 | */ | |
1071 | ||
1072 | img_addr = 0; | |
1073 | if ((hdr->ih_type==IH_TYPE_MULTI) && (len_ptr[1])) | |
1074 | img_addr = (image_header_t *) addr; | |
1075 | ||
1076 | ||
1077 | consdev = ""; | |
1078 | #if defined (CONFIG_8xx_CONS_SMC1) | |
1079 | consdev = "smc1"; | |
1080 | #elif defined (CONFIG_8xx_CONS_SMC2) | |
1081 | consdev = "smc2"; | |
1082 | #elif defined (CONFIG_8xx_CONS_SCC2) | |
1083 | consdev = "scc2"; | |
1084 | #elif defined (CONFIG_8xx_CONS_SCC3) | |
1085 | consdev = "scc3"; | |
1086 | #endif | |
1087 | ||
1088 | if (argc > 2) { | |
1089 | ulong len; | |
1090 | int i; | |
1091 | ||
1092 | for (i=2, len=0 ; i<argc ; i+=1) | |
1093 | len += strlen (argv[i]) + 1; | |
1094 | cmdline = malloc (len); | |
1095 | ||
1096 | for (i=2, len=0 ; i<argc ; i+=1) { | |
1097 | if (i > 2) | |
1098 | cmdline[len++] = ' '; | |
1099 | strcpy (&cmdline[len], argv[i]); | |
1100 | len += strlen (argv[i]); | |
1101 | } | |
1102 | } else if ((cmdline = getenv("bootargs")) == NULL) { | |
1103 | cmdline = ""; | |
1104 | } | |
1105 | ||
dc013d46 | 1106 | loader = (void (*)(bd_t *, image_header_t *, char *, char *)) ntohl(hdr->ih_ep); |
47d1a6e1 WD |
1107 | |
1108 | printf ("## Transferring control to NetBSD stage-2 loader (at address %08lx) ...\n", | |
1109 | (ulong)loader); | |
1110 | ||
fad63407 | 1111 | show_boot_progress (15); |
47d1a6e1 WD |
1112 | |
1113 | /* | |
1114 | * NetBSD Stage-2 Loader Parameters: | |
1115 | * r3: ptr to board info data | |
1116 | * r4: image address | |
1117 | * r5: console device | |
1118 | * r6: boot args string | |
1119 | */ | |
1120 | (*loader) (gd->bd, img_addr, consdev, cmdline); | |
1121 | } | |
1122 | ||
7f70e853 WD |
1123 | #if defined(CONFIG_ARTOS) && defined(CONFIG_PPC) |
1124 | ||
1125 | /* Function that returns a character from the environment */ | |
1126 | extern uchar (*env_get_char)(int); | |
1127 | ||
1128 | static void | |
1129 | do_bootm_artos (cmd_tbl_t *cmdtp, int flag, | |
1130 | int argc, char *argv[], | |
1131 | ulong addr, | |
1132 | ulong *len_ptr, | |
1133 | int verify) | |
1134 | { | |
7f70e853 WD |
1135 | ulong top; |
1136 | char *s, *cmdline; | |
1137 | char **fwenv, **ss; | |
1138 | int i, j, nxt, len, envno, envsz; | |
1139 | bd_t *kbd; | |
1140 | void (*entry)(bd_t *bd, char *cmdline, char **fwenv, ulong top); | |
1141 | image_header_t *hdr = &header; | |
1142 | ||
1143 | /* | |
1144 | * Booting an ARTOS kernel image + application | |
1145 | */ | |
1146 | ||
1147 | /* this used to be the top of memory, but was wrong... */ | |
1148 | #ifdef CONFIG_PPC | |
1149 | /* get stack pointer */ | |
1150 | asm volatile ("mr %0,1" : "=r"(top) ); | |
1151 | #endif | |
1152 | debug ("## Current stack ends at 0x%08lX ", top); | |
1153 | ||
1154 | top -= 2048; /* just to be sure */ | |
1155 | if (top > CFG_BOOTMAPSZ) | |
1156 | top = CFG_BOOTMAPSZ; | |
1157 | top &= ~0xF; | |
1158 | ||
1159 | debug ("=> set upper limit to 0x%08lX\n", top); | |
1160 | ||
1161 | /* first check the artos specific boot args, then the linux args*/ | |
1162 | if ((s = getenv("abootargs")) == NULL && (s = getenv("bootargs")) == NULL) | |
1163 | s = ""; | |
1164 | ||
1165 | /* get length of cmdline, and place it */ | |
1166 | len = strlen(s); | |
1167 | top = (top - (len + 1)) & ~0xF; | |
1168 | cmdline = (char *)top; | |
1169 | debug ("## cmdline at 0x%08lX ", top); | |
1170 | strcpy(cmdline, s); | |
1171 | ||
1172 | /* copy bdinfo */ | |
1173 | top = (top - sizeof(bd_t)) & ~0xF; | |
1174 | debug ("## bd at 0x%08lX ", top); | |
1175 | kbd = (bd_t *)top; | |
1176 | memcpy(kbd, gd->bd, sizeof(bd_t)); | |
1177 | ||
1178 | /* first find number of env entries, and their size */ | |
1179 | envno = 0; | |
1180 | envsz = 0; | |
1181 | for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) { | |
1182 | for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) | |
1183 | ; | |
1184 | envno++; | |
1185 | envsz += (nxt - i) + 1; /* plus trailing zero */ | |
1186 | } | |
1187 | envno++; /* plus the terminating zero */ | |
1188 | debug ("## %u envvars total size %u ", envno, envsz); | |
1189 | ||
1190 | top = (top - sizeof(char **)*envno) & ~0xF; | |
1191 | fwenv = (char **)top; | |
1192 | debug ("## fwenv at 0x%08lX ", top); | |
1193 | ||
1194 | top = (top - envsz) & ~0xF; | |
1195 | s = (char *)top; | |
1196 | ss = fwenv; | |
1197 | ||
1198 | /* now copy them */ | |
1199 | for (i = 0; env_get_char(i) != '\0'; i = nxt + 1) { | |
1200 | for (nxt = i; env_get_char(nxt) != '\0'; ++nxt) | |
1201 | ; | |
1202 | *ss++ = s; | |
1203 | for (j = i; j < nxt; ++j) | |
1204 | *s++ = env_get_char(j); | |
1205 | *s++ = '\0'; | |
1206 | } | |
1207 | *ss++ = NULL; /* terminate */ | |
1208 | ||
1209 | entry = (void (*)(bd_t *, char *, char **, ulong))ntohl(hdr->ih_ep); | |
1210 | (*entry)(kbd, cmdline, fwenv, top); | |
1211 | } | |
1212 | #endif | |
1213 | ||
1214 | ||
baa26db4 | 1215 | #if defined(CONFIG_CMD_BOOTD) |
47d1a6e1 WD |
1216 | int do_bootd (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
1217 | { | |
1218 | int rcode = 0; | |
1219 | #ifndef CFG_HUSH_PARSER | |
1220 | if (run_command (getenv ("bootcmd"), flag) < 0) rcode = 1; | |
1221 | #else | |
1222 | if (parse_string_outer(getenv("bootcmd"), | |
1223 | FLAG_PARSE_SEMICOLON | FLAG_EXIT_FROM_LOOP) != 0 ) rcode = 1; | |
1224 | #endif | |
1225 | return rcode; | |
1226 | } | |
8bde7f77 | 1227 | |
0d498393 WD |
1228 | U_BOOT_CMD( |
1229 | boot, 1, 1, do_bootd, | |
9d2b18a0 WD |
1230 | "boot - boot default, i.e., run 'bootcmd'\n", |
1231 | NULL | |
1232 | ); | |
1233 | ||
1234 | /* keep old command name "bootd" for backward compatibility */ | |
0d498393 WD |
1235 | U_BOOT_CMD( |
1236 | bootd, 1, 1, do_bootd, | |
8bde7f77 WD |
1237 | "bootd - boot default, i.e., run 'bootcmd'\n", |
1238 | NULL | |
1239 | ); | |
1240 | ||
47d1a6e1 WD |
1241 | #endif |
1242 | ||
baa26db4 | 1243 | #if defined(CONFIG_CMD_IMI) |
47d1a6e1 WD |
1244 | int do_iminfo ( cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) |
1245 | { | |
1246 | int arg; | |
1247 | ulong addr; | |
1248 | int rcode=0; | |
1249 | ||
1250 | if (argc < 2) { | |
1251 | return image_info (load_addr); | |
1252 | } | |
1253 | ||
1254 | for (arg=1; arg <argc; ++arg) { | |
1255 | addr = simple_strtoul(argv[arg], NULL, 16); | |
1256 | if (image_info (addr) != 0) rcode = 1; | |
1257 | } | |
1258 | return rcode; | |
1259 | } | |
1260 | ||
1261 | static int image_info (ulong addr) | |
1262 | { | |
1263 | ulong data, len, checksum; | |
1264 | image_header_t *hdr = &header; | |
1265 | ||
1266 | printf ("\n## Checking Image at %08lx ...\n", addr); | |
1267 | ||
1268 | /* Copy header so we can blank CRC field for re-calculation */ | |
1269 | memmove (&header, (char *)addr, sizeof(image_header_t)); | |
1270 | ||
1271 | if (ntohl(hdr->ih_magic) != IH_MAGIC) { | |
4b9206ed | 1272 | puts (" Bad Magic Number\n"); |
47d1a6e1 WD |
1273 | return 1; |
1274 | } | |
1275 | ||
1276 | data = (ulong)&header; | |
1277 | len = sizeof(image_header_t); | |
1278 | ||
1279 | checksum = ntohl(hdr->ih_hcrc); | |
1280 | hdr->ih_hcrc = 0; | |
1281 | ||
77ddac94 | 1282 | if (crc32 (0, (uchar *)data, len) != checksum) { |
4b9206ed | 1283 | puts (" Bad Header Checksum\n"); |
47d1a6e1 WD |
1284 | return 1; |
1285 | } | |
1286 | ||
1287 | /* for multi-file images we need the data part, too */ | |
1288 | print_image_hdr ((image_header_t *)addr); | |
1289 | ||
1290 | data = addr + sizeof(image_header_t); | |
1291 | len = ntohl(hdr->ih_size); | |
1292 | ||
4b9206ed | 1293 | puts (" Verifying Checksum ... "); |
77ddac94 | 1294 | if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) { |
4b9206ed | 1295 | puts (" Bad Data CRC\n"); |
47d1a6e1 WD |
1296 | return 1; |
1297 | } | |
4b9206ed | 1298 | puts ("OK\n"); |
47d1a6e1 WD |
1299 | return 0; |
1300 | } | |
0d498393 WD |
1301 | |
1302 | U_BOOT_CMD( | |
1303 | iminfo, CFG_MAXARGS, 1, do_iminfo, | |
8bde7f77 WD |
1304 | "iminfo - print header information for application image\n", |
1305 | "addr [addr ...]\n" | |
1306 | " - print header information for application image starting at\n" | |
1307 | " address 'addr' in memory; this includes verification of the\n" | |
1308 | " image contents (magic number, header and payload checksums)\n" | |
1309 | ); | |
1310 | ||
90253178 | 1311 | #endif |
47d1a6e1 | 1312 | |
baa26db4 | 1313 | #if defined(CONFIG_CMD_IMLS) |
27b207fd WD |
1314 | /*----------------------------------------------------------------------- |
1315 | * List all images found in flash. | |
1316 | */ | |
1317 | int do_imls (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]) | |
1318 | { | |
1319 | flash_info_t *info; | |
1320 | int i, j; | |
1321 | image_header_t *hdr; | |
5bb226e8 | 1322 | ulong data, len, checksum; |
27b207fd WD |
1323 | |
1324 | for (i=0, info=&flash_info[0]; i<CFG_MAX_FLASH_BANKS; ++i, ++info) { | |
1325 | if (info->flash_id == FLASH_UNKNOWN) | |
1326 | goto next_bank; | |
e6f2e902 | 1327 | for (j=0; j<info->sector_count; ++j) { |
27b207fd WD |
1328 | |
1329 | if (!(hdr=(image_header_t *)info->start[j]) || | |
1330 | (ntohl(hdr->ih_magic) != IH_MAGIC)) | |
1331 | goto next_sector; | |
1332 | ||
1333 | /* Copy header so we can blank CRC field for re-calculation */ | |
1334 | memmove (&header, (char *)hdr, sizeof(image_header_t)); | |
1335 | ||
1336 | checksum = ntohl(header.ih_hcrc); | |
1337 | header.ih_hcrc = 0; | |
1338 | ||
77ddac94 | 1339 | if (crc32 (0, (uchar *)&header, sizeof(image_header_t)) |
27b207fd WD |
1340 | != checksum) |
1341 | goto next_sector; | |
1342 | ||
1343 | printf ("Image at %08lX:\n", (ulong)hdr); | |
1344 | print_image_hdr( hdr ); | |
5bb226e8 WD |
1345 | |
1346 | data = (ulong)hdr + sizeof(image_header_t); | |
1347 | len = ntohl(hdr->ih_size); | |
1348 | ||
4b9206ed | 1349 | puts (" Verifying Checksum ... "); |
77ddac94 | 1350 | if (crc32 (0, (uchar *)data, len) != ntohl(hdr->ih_dcrc)) { |
4b9206ed | 1351 | puts (" Bad Data CRC\n"); |
5bb226e8 | 1352 | } |
4b9206ed | 1353 | puts ("OK\n"); |
bdccc4fe | 1354 | next_sector: ; |
27b207fd | 1355 | } |
bdccc4fe | 1356 | next_bank: ; |
27b207fd WD |
1357 | } |
1358 | ||
1359 | return (0); | |
1360 | } | |
1361 | ||
1362 | U_BOOT_CMD( | |
1363 | imls, 1, 1, do_imls, | |
1364 | "imls - list all images found in flash\n", | |
1365 | "\n" | |
1366 | " - Prints information about all images found at sector\n" | |
1367 | " boundaries in flash.\n" | |
1368 | ); | |
90253178 | 1369 | #endif |
27b207fd | 1370 | |
47d1a6e1 WD |
1371 | void |
1372 | print_image_hdr (image_header_t *hdr) | |
1373 | { | |
baa26db4 | 1374 | #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) |
47d1a6e1 WD |
1375 | time_t timestamp = (time_t)ntohl(hdr->ih_time); |
1376 | struct rtc_time tm; | |
1377 | #endif | |
1378 | ||
1379 | printf (" Image Name: %.*s\n", IH_NMLEN, hdr->ih_name); | |
baa26db4 | 1380 | #if defined(CONFIG_TIMESTAMP) || defined(CONFIG_CMD_DATE) |
47d1a6e1 WD |
1381 | to_tm (timestamp, &tm); |
1382 | printf (" Created: %4d-%02d-%02d %2d:%02d:%02d UTC\n", | |
1383 | tm.tm_year, tm.tm_mon, tm.tm_mday, | |
1384 | tm.tm_hour, tm.tm_min, tm.tm_sec); | |
90253178 | 1385 | #endif |
4b9206ed WD |
1386 | puts (" Image Type: "); print_type(hdr); |
1387 | printf ("\n Data Size: %d Bytes = ", ntohl(hdr->ih_size)); | |
47d1a6e1 | 1388 | print_size (ntohl(hdr->ih_size), "\n"); |
4b9206ed WD |
1389 | printf (" Load Address: %08x\n" |
1390 | " Entry Point: %08x\n", | |
1391 | ntohl(hdr->ih_load), ntohl(hdr->ih_ep)); | |
47d1a6e1 WD |
1392 | |
1393 | if (hdr->ih_type == IH_TYPE_MULTI) { | |
1394 | int i; | |
1395 | ulong len; | |
1396 | ulong *len_ptr = (ulong *)((ulong)hdr + sizeof(image_header_t)); | |
1397 | ||
4b9206ed | 1398 | puts (" Contents:\n"); |
47d1a6e1 WD |
1399 | for (i=0; (len = ntohl(*len_ptr)); ++i, ++len_ptr) { |
1400 | printf (" Image %d: %8ld Bytes = ", i, len); | |
1401 | print_size (len, "\n"); | |
1402 | } | |
1403 | } | |
1404 | } | |
1405 | ||
1406 | ||
1407 | static void | |
1408 | print_type (image_header_t *hdr) | |
1409 | { | |
1410 | char *os, *arch, *type, *comp; | |
1411 | ||
1412 | switch (hdr->ih_os) { | |
1413 | case IH_OS_INVALID: os = "Invalid OS"; break; | |
1414 | case IH_OS_NETBSD: os = "NetBSD"; break; | |
1415 | case IH_OS_LINUX: os = "Linux"; break; | |
1416 | case IH_OS_VXWORKS: os = "VxWorks"; break; | |
1417 | case IH_OS_QNX: os = "QNX"; break; | |
1418 | case IH_OS_U_BOOT: os = "U-Boot"; break; | |
d791b1dc | 1419 | case IH_OS_RTEMS: os = "RTEMS"; break; |
7f70e853 WD |
1420 | #ifdef CONFIG_ARTOS |
1421 | case IH_OS_ARTOS: os = "ARTOS"; break; | |
1f4bb37d WD |
1422 | #endif |
1423 | #ifdef CONFIG_LYNXKDI | |
1424 | case IH_OS_LYNXOS: os = "LynxOS"; break; | |
7f70e853 | 1425 | #endif |
47d1a6e1 WD |
1426 | default: os = "Unknown OS"; break; |
1427 | } | |
1428 | ||
1429 | switch (hdr->ih_arch) { | |
1430 | case IH_CPU_INVALID: arch = "Invalid CPU"; break; | |
1431 | case IH_CPU_ALPHA: arch = "Alpha"; break; | |
1432 | case IH_CPU_ARM: arch = "ARM"; break; | |
1a1b7374 | 1433 | case IH_CPU_AVR32: arch = "AVR32"; break; |
44ba464b | 1434 | case IH_CPU_BLACKFIN: arch = "Blackfin"; break; |
47d1a6e1 WD |
1435 | case IH_CPU_I386: arch = "Intel x86"; break; |
1436 | case IH_CPU_IA64: arch = "IA64"; break; | |
44ba464b WD |
1437 | case IH_CPU_M68K: arch = "M68K"; break; |
1438 | case IH_CPU_MICROBLAZE: arch = "Microblaze"; break; | |
47d1a6e1 | 1439 | case IH_CPU_MIPS64: arch = "MIPS 64 Bit"; break; |
44ba464b WD |
1440 | case IH_CPU_MIPS: arch = "MIPS"; break; |
1441 | case IH_CPU_NIOS2: arch = "Nios-II"; break; | |
1442 | case IH_CPU_NIOS: arch = "Nios"; break; | |
47d1a6e1 WD |
1443 | case IH_CPU_PPC: arch = "PowerPC"; break; |
1444 | case IH_CPU_S390: arch = "IBM S390"; break; | |
1445 | case IH_CPU_SH: arch = "SuperH"; break; | |
47d1a6e1 | 1446 | case IH_CPU_SPARC64: arch = "SPARC 64 Bit"; break; |
44ba464b | 1447 | case IH_CPU_SPARC: arch = "SPARC"; break; |
47d1a6e1 WD |
1448 | default: arch = "Unknown Architecture"; break; |
1449 | } | |
1450 | ||
1451 | switch (hdr->ih_type) { | |
1452 | case IH_TYPE_INVALID: type = "Invalid Image"; break; | |
1453 | case IH_TYPE_STANDALONE:type = "Standalone Program"; break; | |
1454 | case IH_TYPE_KERNEL: type = "Kernel Image"; break; | |
1455 | case IH_TYPE_RAMDISK: type = "RAMDisk Image"; break; | |
1456 | case IH_TYPE_MULTI: type = "Multi-File Image"; break; | |
1457 | case IH_TYPE_FIRMWARE: type = "Firmware"; break; | |
1458 | case IH_TYPE_SCRIPT: type = "Script"; break; | |
25c751e9 | 1459 | case IH_TYPE_FLATDT: type = "Flat Device Tree"; break; |
47d1a6e1 WD |
1460 | default: type = "Unknown Image"; break; |
1461 | } | |
1462 | ||
1463 | switch (hdr->ih_comp) { | |
1464 | case IH_COMP_NONE: comp = "uncompressed"; break; | |
1465 | case IH_COMP_GZIP: comp = "gzip compressed"; break; | |
1466 | case IH_COMP_BZIP2: comp = "bzip2 compressed"; break; | |
1467 | default: comp = "unknown compression"; break; | |
1468 | } | |
1469 | ||
1470 | printf ("%s %s %s (%s)", arch, os, type, comp); | |
1471 | } | |
1472 | ||
1473 | #define ZALLOC_ALIGNMENT 16 | |
1474 | ||
1475 | static void *zalloc(void *x, unsigned items, unsigned size) | |
1476 | { | |
1477 | void *p; | |
1478 | ||
1479 | size *= items; | |
1480 | size = (size + ZALLOC_ALIGNMENT - 1) & ~(ZALLOC_ALIGNMENT - 1); | |
1481 | ||
1482 | p = malloc (size); | |
1483 | ||
1484 | return (p); | |
1485 | } | |
1486 | ||
1487 | static void zfree(void *x, void *addr, unsigned nb) | |
1488 | { | |
1489 | free (addr); | |
1490 | } | |
1491 | ||
1492 | #define HEAD_CRC 2 | |
1493 | #define EXTRA_FIELD 4 | |
1494 | #define ORIG_NAME 8 | |
1495 | #define COMMENT 0x10 | |
1496 | #define RESERVED 0xe0 | |
1497 | ||
1498 | #define DEFLATED 8 | |
1499 | ||
eedcd078 | 1500 | int gunzip(void *dst, int dstlen, unsigned char *src, unsigned long *lenp) |
47d1a6e1 WD |
1501 | { |
1502 | z_stream s; | |
1503 | int r, i, flags; | |
1504 | ||
1505 | /* skip header */ | |
1506 | i = 10; | |
1507 | flags = src[3]; | |
1508 | if (src[2] != DEFLATED || (flags & RESERVED) != 0) { | |
4b9206ed | 1509 | puts ("Error: Bad gzipped data\n"); |
47d1a6e1 WD |
1510 | return (-1); |
1511 | } | |
1512 | if ((flags & EXTRA_FIELD) != 0) | |
1513 | i = 12 + src[10] + (src[11] << 8); | |
1514 | if ((flags & ORIG_NAME) != 0) | |
1515 | while (src[i++] != 0) | |
1516 | ; | |
1517 | if ((flags & COMMENT) != 0) | |
1518 | while (src[i++] != 0) | |
1519 | ; | |
1520 | if ((flags & HEAD_CRC) != 0) | |
1521 | i += 2; | |
1522 | if (i >= *lenp) { | |
4b9206ed | 1523 | puts ("Error: gunzip out of data in header\n"); |
47d1a6e1 WD |
1524 | return (-1); |
1525 | } | |
1526 | ||
1527 | s.zalloc = zalloc; | |
1528 | s.zfree = zfree; | |
1529 | #if defined(CONFIG_HW_WATCHDOG) || defined(CONFIG_WATCHDOG) | |
1530 | s.outcb = (cb_func)WATCHDOG_RESET; | |
1531 | #else | |
1532 | s.outcb = Z_NULL; | |
1533 | #endif /* CONFIG_HW_WATCHDOG */ | |
1534 | ||
1535 | r = inflateInit2(&s, -MAX_WBITS); | |
1536 | if (r != Z_OK) { | |
1537 | printf ("Error: inflateInit2() returned %d\n", r); | |
1538 | return (-1); | |
1539 | } | |
1540 | s.next_in = src + i; | |
1541 | s.avail_in = *lenp - i; | |
1542 | s.next_out = dst; | |
1543 | s.avail_out = dstlen; | |
1544 | r = inflate(&s, Z_FINISH); | |
1545 | if (r != Z_OK && r != Z_STREAM_END) { | |
1546 | printf ("Error: inflate() returned %d\n", r); | |
1547 | return (-1); | |
1548 | } | |
1549 | *lenp = s.next_out - (unsigned char *) dst; | |
1550 | inflateEnd(&s); | |
1551 | ||
1552 | return (0); | |
1553 | } | |
1554 | ||
c29fdfc1 WD |
1555 | #ifdef CONFIG_BZIP2 |
1556 | void bz_internal_error(int errcode) | |
1557 | { | |
1558 | printf ("BZIP2 internal error %d\n", errcode); | |
1559 | } | |
1560 | #endif /* CONFIG_BZIP2 */ | |
1561 | ||
d791b1dc WD |
1562 | static void |
1563 | do_bootm_rtems (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], | |
1564 | ulong addr, ulong *len_ptr, int verify) | |
1565 | { | |
d791b1dc WD |
1566 | image_header_t *hdr = &header; |
1567 | void (*entry_point)(bd_t *); | |
1568 | ||
dc013d46 | 1569 | entry_point = (void (*)(bd_t *)) ntohl(hdr->ih_ep); |
d791b1dc WD |
1570 | |
1571 | printf ("## Transferring control to RTEMS (at address %08lx) ...\n", | |
1572 | (ulong)entry_point); | |
1573 | ||
fad63407 | 1574 | show_boot_progress (15); |
d791b1dc WD |
1575 | |
1576 | /* | |
1577 | * RTEMS Parameters: | |
1578 | * r3: ptr to board info data | |
1579 | */ | |
1580 | ||
1581 | (*entry_point ) ( gd->bd ); | |
1582 | } | |
1583 | ||
baa26db4 | 1584 | #if defined(CONFIG_CMD_ELF) |
47d1a6e1 WD |
1585 | static void |
1586 | do_bootm_vxworks (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], | |
1587 | ulong addr, ulong *len_ptr, int verify) | |
1588 | { | |
1589 | image_header_t *hdr = &header; | |
1590 | char str[80]; | |
1591 | ||
dc013d46 | 1592 | sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */ |
47d1a6e1 WD |
1593 | setenv("loadaddr", str); |
1594 | do_bootvx(cmdtp, 0, 0, NULL); | |
1595 | } | |
1596 | ||
1597 | static void | |
1598 | do_bootm_qnxelf (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], | |
1599 | ulong addr, ulong *len_ptr, int verify) | |
1600 | { | |
1601 | image_header_t *hdr = &header; | |
1602 | char *local_args[2]; | |
1603 | char str[16]; | |
1604 | ||
dc013d46 | 1605 | sprintf(str, "%x", ntohl(hdr->ih_ep)); /* write entry-point into string */ |
47d1a6e1 WD |
1606 | local_args[0] = argv[0]; |
1607 | local_args[1] = str; /* and provide it via the arguments */ | |
1608 | do_bootelf(cmdtp, 0, 2, local_args); | |
1609 | } | |
90253178 | 1610 | #endif |
1f4bb37d WD |
1611 | |
1612 | #ifdef CONFIG_LYNXKDI | |
1613 | static void | |
1614 | do_bootm_lynxkdi (cmd_tbl_t *cmdtp, int flag, | |
1615 | int argc, char *argv[], | |
1616 | ulong addr, | |
1617 | ulong *len_ptr, | |
1618 | int verify) | |
1619 | { | |
1620 | lynxkdi_boot( &header ); | |
1621 | } | |
1622 | ||
1623 | #endif /* CONFIG_LYNXKDI */ |