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