2 * (C) Copyright 2008 Semihalf
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
35 #include <environment.h>
36 #include <asm/byteorder.h>
38 #if defined(CONFIG_OF_LIBFDT)
41 #include <fdt_support.h>
43 static void fdt_error (const char *msg);
46 #ifdef CONFIG_LOGBUFFER
50 #ifdef CFG_INIT_RAM_LOCK
51 #include <asm/cache.h>
54 DECLARE_GLOBAL_DATA_PTR;
56 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
58 #if defined(CONFIG_CMD_BDI)
59 extern int do_bdinfo(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
62 void __attribute__((noinline))
63 do_bootm_linux(cmd_tbl_t *cmdtp, int flag,
64 int argc, char *argv[],
69 int initrd_copy_to_ram = 1;
70 ulong initrd_start, initrd_end;
71 ulong rd_data, rd_len;
72 image_header_t *rd_hdr;
74 ulong cmd_start, cmd_end;
80 void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
82 #if defined(CONFIG_OF_LIBFDT)
83 image_header_t *fdt_hdr;
84 char *of_flat_tree = NULL;
88 if ((s = getenv ("initrd_high")) != NULL) {
89 /* a value of "no" or a similar string will act like 0,
90 * turning the "load high" feature off. This is intentional.
92 initrd_high = simple_strtoul(s, NULL, 16);
93 if (initrd_high == ~0)
94 initrd_copy_to_ram = 0;
95 } else { /* not set, no restrictions to load high */
99 #ifdef CONFIG_LOGBUFFER
101 /* Prevent initrd from overwriting logbuffer */
102 if (initrd_high < (kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD))
103 initrd_high = kbd->bi_memsize-LOGBUFF_LEN-LOGBUFF_OVERHEAD;
104 debug ("## Logbuffer at 0x%08lX ", kbd->bi_memsize-LOGBUFF_LEN);
108 * Booting a (Linux) kernel image
110 * Allocate space for command line and board info - the
111 * address should be as high as possible within the reach of
112 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
113 * memory, which means far enough below the current stack
117 asm( "mr %0,1": "=r"(sp) : );
119 debug ("## Current stack ends at 0x%08lX ", sp);
121 sp -= 2048; /* just to be sure */
122 if (sp > CFG_BOOTMAPSZ)
126 debug ("=> set upper limit to 0x%08lX\n", sp);
128 cmdline = (char *)((sp - CFG_BARGSIZE) & ~0xF);
129 kbd = (bd_t *)(((ulong)cmdline - sizeof(bd_t)) & ~0xF);
131 if ((s = getenv("bootargs")) == NULL)
136 cmd_start = (ulong)&cmdline[0];
137 cmd_end = cmd_start + strlen(cmdline);
142 printf ("## cmdline at 0x%08lX ... 0x%08lX\n", cmd_start, cmd_end);
144 #if defined(CONFIG_CMD_BDI)
145 do_bdinfo (NULL, 0, 0, NULL);
149 if ((s = getenv ("clocks_in_mhz")) != NULL) {
150 /* convert all clock information to MHz */
151 kbd->bi_intfreq /= 1000000L;
152 kbd->bi_busfreq /= 1000000L;
153 #if defined(CONFIG_MPC8220)
154 kbd->bi_inpfreq /= 1000000L;
155 kbd->bi_pcifreq /= 1000000L;
156 kbd->bi_pevfreq /= 1000000L;
157 kbd->bi_flbfreq /= 1000000L;
158 kbd->bi_vcofreq /= 1000000L;
160 #if defined(CONFIG_CPM2)
161 kbd->bi_cpmfreq /= 1000000L;
162 kbd->bi_brgfreq /= 1000000L;
163 kbd->bi_sccfreq /= 1000000L;
164 kbd->bi_vco /= 1000000L;
166 #if defined(CONFIG_MPC5xxx)
167 kbd->bi_ipbfreq /= 1000000L;
168 kbd->bi_pcifreq /= 1000000L;
169 #endif /* CONFIG_MPC5xxx */
172 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))image_get_ep (hdr);
175 * Check if there is an initrd image
178 #if defined(CONFIG_OF_LIBFDT)
179 /* Look for a '-' which indicates to ignore the ramdisk argument */
180 if (argc >= 3 && strcmp(argv[2], "-") == 0) {
181 debug ("Skipping initrd\n");
182 rd_len = rd_data = 0;
187 debug ("Not skipping initrd\n");
188 show_boot_progress (9);
190 rd_hdr = (image_header_t *)simple_strtoul (argv[2], NULL, 16);
191 printf ("## Loading RAMDisk Image at %08lx ...\n", (ulong)rd_hdr);
193 if (!image_check_magic (rd_hdr)) {
194 puts ("Bad Magic Number\n");
195 show_boot_progress (-10);
196 do_reset (cmdtp, flag, argc, argv);
199 if (!image_check_hcrc (rd_hdr)) {
200 puts ("Bad Header Checksum\n");
201 show_boot_progress (-11);
202 do_reset (cmdtp, flag, argc, argv);
204 show_boot_progress (10);
206 print_image_hdr (rd_hdr);
209 puts (" Verifying Checksum ... ");
211 if (!image_check_dcrc_wd (rd_hdr, CHUNKSZ)) {
212 puts ("Bad Data CRC\n");
213 show_boot_progress (-12);
214 do_reset (cmdtp, flag, argc, argv);
219 show_boot_progress (11);
221 if (!image_check_os (rd_hdr, IH_OS_LINUX) ||
222 !image_check_arch (rd_hdr, IH_ARCH_PPC) ||
223 !image_check_type (rd_hdr, IH_TYPE_RAMDISK)) {
224 puts ("No Linux PPC Ramdisk Image\n");
225 show_boot_progress (-13);
226 do_reset (cmdtp, flag, argc, argv);
229 rd_data = image_get_data (rd_hdr);
230 rd_len = image_get_data_size (rd_hdr);
233 * Now check if we have a multifile image
235 } else if (image_check_type (hdr, IH_TYPE_MULTI)) {
237 * Get second entry data start address and len
239 image_multi_getimg (hdr, 1, &rd_data, &rd_len);
240 show_boot_progress (13);
245 show_boot_progress (14);
247 rd_len = rd_data = 0;
250 #if defined(CONFIG_OF_LIBFDT)
252 of_flat_tree = (char *) simple_strtoul(argv[3], NULL, 16);
253 fdt_hdr = (image_header_t *)of_flat_tree;
255 if (fdt_check_header (of_flat_tree) == 0) {
257 if (addr2info((ulong)of_flat_tree) != NULL)
258 of_data = (ulong)of_flat_tree;
260 } else if (image_check_magic (fdt_hdr)) {
261 ulong image_start, image_end;
262 ulong load_start, load_end;
264 printf ("## Flat Device Tree at %08lX\n", fdt_hdr);
265 print_image_hdr (fdt_hdr);
267 image_start = (ulong)fdt_hdr;
268 image_end = image_get_image_end (fdt_hdr);
270 load_start = image_get_load (fdt_hdr);
271 load_end = load_start + image_get_data_size (fdt_hdr);
273 if ((load_start < image_end) && (load_end > image_start)) {
274 fdt_error ("fdt overwritten");
275 do_reset (cmdtp, flag, argc, argv);
278 puts (" Verifying Checksum ... ");
279 if (!image_check_hcrc (fdt_hdr)) {
280 fdt_error ("fdt header checksum invalid");
281 do_reset (cmdtp, flag, argc, argv);
284 if (!image_check_dcrc (fdt_hdr)) {
285 fdt_error ("fdt checksum invalid");
286 do_reset (cmdtp, flag, argc, argv);
290 if (!image_check_type (fdt_hdr, IH_TYPE_FLATDT)) {
291 fdt_error ("uImage is not a fdt");
292 do_reset (cmdtp, flag, argc, argv);
294 if (image_get_comp (fdt_hdr) != IH_COMP_NONE) {
295 fdt_error ("uImage is compressed");
296 do_reset (cmdtp, flag, argc, argv);
298 if (fdt_check_header (of_flat_tree + image_get_header_size ()) != 0) {
299 fdt_error ("uImage data is not a fdt");
300 do_reset (cmdtp, flag, argc, argv);
303 memmove ((void *)image_get_load (fdt_hdr),
304 (void *)(of_flat_tree + image_get_header_size ()),
305 image_get_data_size (fdt_hdr));
307 of_flat_tree = (char *)image_get_load (fdt_hdr);
309 fdt_error ("Did not find a Flattened Device Tree");
310 do_reset (cmdtp, flag, argc, argv);
312 printf (" Booting using the fdt at 0x%x\n",
314 } else if (image_check_type (hdr, IH_TYPE_MULTI)) {
315 ulong fdt_data, fdt_len;
317 image_multi_getimg (hdr, 2, &fdt_data, &fdt_len);
320 of_flat_tree = (char *)fdt_data;
323 /* move the blob if it is in flash (set of_data to !null) */
324 if (addr2info ((ulong)of_flat_tree) != NULL)
325 of_data = (ulong)of_flat_tree;
328 if (fdt_check_header (of_flat_tree) != 0) {
329 fdt_error ("image is not a fdt");
330 do_reset (cmdtp, flag, argc, argv);
333 if (be32_to_cpu (fdt_totalsize (of_flat_tree)) != fdt_len) {
334 fdt_error ("fdt size != image size");
335 do_reset (cmdtp, flag, argc, argv);
341 debug ("No initrd\n");
345 if (!initrd_copy_to_ram) { /* zero-copy ramdisk support */
346 initrd_start = rd_data;
347 initrd_end = initrd_start + rd_len;
349 initrd_start = (ulong)kbd - rd_len;
350 initrd_start &= ~(4096 - 1); /* align on page */
356 * the inital ramdisk does not need to be within
357 * CFG_BOOTMAPSZ as it is not accessed until after
358 * the mm system is initialised.
360 * do the stack bottom calculation again and see if
361 * the initrd will fit just below the monitor stack
362 * bottom without overwriting the area allocated
363 * above for command line args and board info.
365 asm( "mr %0,1": "=r"(nsp) : );
366 nsp -= 2048; /* just to be sure */
368 if (nsp > initrd_high) /* limit as specified */
371 nsp &= ~(4096 - 1); /* align on page */
376 show_boot_progress (12);
378 debug ("## initrd at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
379 rd_data, rd_data + rd_len - 1, rd_len, rd_len);
381 initrd_end = initrd_start + rd_len;
382 printf (" Loading Ramdisk to %08lx, end %08lx ... ",
383 initrd_start, initrd_end);
385 memmove_wd((void *)initrd_start,
386 (void *)rd_data, rd_len, CHUNKSZ);
395 #if defined(CONFIG_OF_LIBFDT)
399 * The blob must be within CFG_BOOTMAPSZ,
400 * so we flag it to be copied if it is not.
402 if (of_flat_tree >= (char *)CFG_BOOTMAPSZ)
403 of_data = (ulong)of_flat_tree;
406 /* move of_flat_tree if needed */
409 ulong of_start, of_len;
411 of_len = be32_to_cpu(fdt_totalsize(of_data));
413 /* position on a 4K boundary before the kbd */
414 of_start = (ulong)kbd - of_len;
415 of_start &= ~(4096 - 1); /* align on page */
416 debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
417 of_data, of_data + of_len - 1, of_len, of_len);
419 of_flat_tree = (char *)of_start;
420 printf (" Loading Device Tree to %08lx, end %08lx ... ",
421 of_start, of_start + of_len - 1);
422 err = fdt_open_into((void *)of_data, (void *)of_start, of_len);
424 fdt_error ("fdt move failed");
425 do_reset (cmdtp, flag, argc, argv);
430 * Add the chosen node if it doesn't exist, add the env and bd_t
431 * if the user wants it (the logic is in the subroutines).
434 if (fdt_chosen(of_flat_tree, initrd_start, initrd_end, 0) < 0) {
435 fdt_error ("/chosen node create failed");
436 do_reset (cmdtp, flag, argc, argv);
438 #ifdef CONFIG_OF_HAS_UBOOT_ENV
439 if (fdt_env(of_flat_tree) < 0) {
440 fdt_error ("/u-boot-env node create failed");
441 do_reset (cmdtp, flag, argc, argv);
444 #ifdef CONFIG_OF_HAS_BD_T
445 if (fdt_bd_t(of_flat_tree) < 0) {
446 fdt_error ("/bd_t node create failed");
447 do_reset (cmdtp, flag, argc, argv);
450 #ifdef CONFIG_OF_BOARD_SETUP
451 /* Call the board-specific fixup routine */
452 ft_board_setup(of_flat_tree, gd->bd);
455 #endif /* CONFIG_OF_LIBFDT */
457 debug ("## Transferring control to Linux (at address %08lx) ...\n",
460 show_boot_progress (15);
462 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
463 unlock_ram_in_cache();
466 #if defined(CONFIG_OF_LIBFDT)
467 if (of_flat_tree) { /* device tree; boot new style */
469 * Linux Kernel Parameters (passing device tree):
470 * r3: pointer to the fdt, followed by the board info data
471 * r4: physical pointer to the kernel itself
476 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
477 /* does not return */
481 * Linux Kernel Parameters (passing board info data):
482 * r3: ptr to board info data
483 * r4: initrd_start or 0 if no initrd
484 * r5: initrd_end - unused if r4 is 0
485 * r6: Start of command line string
486 * r7: End of command line string
488 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
489 /* does not return */
492 #if defined(CONFIG_OF_LIBFDT)
493 static void fdt_error (const char *msg)
497 puts (" - must RESET the board to recover.\n");