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);
44 static void get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
45 bootm_headers_t *images, char **of_flat_tree, ulong *of_size);
46 static ulong fdt_relocate (ulong alloc_current,
47 cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
48 char **of_flat_tree, ulong *of_size);
51 #ifdef CFG_INIT_RAM_LOCK
52 #include <asm/cache.h>
55 DECLARE_GLOBAL_DATA_PTR;
57 extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
58 static ulong get_sp (void);
59 static void set_clocks_in_mhz (bd_t *kbd);
61 void __attribute__((noinline))
62 do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
63 bootm_headers_t *images)
65 ulong sp, sp_limit, alloc_current;
67 ulong initrd_start, initrd_end;
68 ulong rd_data_start, rd_data_end, rd_len;
70 ulong cmd_start, cmd_end;
73 void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
77 #if defined(CONFIG_OF_LIBFDT)
78 char *of_flat_tree = NULL;
82 * Booting a (Linux) kernel image
84 * Allocate space for command line and board info - the
85 * address should be as high as possible within the reach of
86 * the kernel (see CFG_BOOTMAPSZ settings), but in unused
87 * memory, which means far enough below the current stack
91 debug ("## Current stack ends at 0x%08lx ", sp);
93 alloc_current = sp_limit = get_boot_sp_limit(sp);
94 debug ("=> set upper limit to 0x%08lx\n", sp_limit);
96 #if defined(CONFIG_OF_LIBFDT)
97 /* find flattened device tree */
98 get_fdt (cmdtp, flag, argc, argv, images, &of_flat_tree, &of_size);
102 /* allocate space and init command line */
103 alloc_current = get_boot_cmdline (alloc_current, &cmd_start, &cmd_end);
105 /* allocate space for kernel copy of board info */
106 alloc_current = get_boot_kbd (alloc_current, &kbd);
107 set_clocks_in_mhz(kbd);
110 /* find kernel entry point */
111 if (images->legacy_hdr_valid) {
112 ep = image_get_ep (images->legacy_hdr_os);
113 #if defined(CONFIG_FIT)
114 } else if (images->fit_uname_os) {
115 fit_unsupported_reset ("PPC linux bootm");
116 do_reset (cmdtp, flag, argc, argv);
119 puts ("Could not find kernel entry point!\n");
120 do_reset (cmdtp, flag, argc, argv);
122 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep;
125 get_ramdisk (cmdtp, flag, argc, argv, images,
126 IH_ARCH_PPC, &rd_data_start, &rd_data_end);
128 rd_len = rd_data_end - rd_data_start;
130 #if defined(CONFIG_OF_LIBFDT)
131 alloc_current = fdt_relocate (alloc_current,
132 cmdtp, flag, argc, argv, &of_flat_tree, &of_size);
135 * Add the chosen node if it doesn't exist, add the env and bd_t
136 * if the user wants it (the logic is in the subroutines).
139 /* pass in dummy initrd info, we'll fix up later */
140 if (fdt_chosen(of_flat_tree, rd_data_start, rd_data_end, 0) < 0) {
141 fdt_error ("/chosen node create failed");
142 do_reset (cmdtp, flag, argc, argv);
144 #ifdef CONFIG_OF_HAS_UBOOT_ENV
145 if (fdt_env(of_flat_tree) < 0) {
146 fdt_error ("/u-boot-env node create failed");
147 do_reset (cmdtp, flag, argc, argv);
150 #ifdef CONFIG_OF_HAS_BD_T
151 if (fdt_bd_t(of_flat_tree) < 0) {
152 fdt_error ("/bd_t node create failed");
153 do_reset (cmdtp, flag, argc, argv);
156 #ifdef CONFIG_OF_BOARD_SETUP
157 /* Call the board-specific fixup routine */
158 ft_board_setup(of_flat_tree, gd->bd);
161 #endif /* CONFIG_OF_LIBFDT */
163 alloc_current = ramdisk_high (alloc_current, rd_data_start, rd_len,
164 sp_limit, get_sp (), &initrd_start, &initrd_end);
166 #if defined(CONFIG_OF_LIBFDT)
167 /* fixup the initrd now that we know where it should be */
168 if ((of_flat_tree) && (initrd_start && initrd_end)) {
170 int total = fdt_num_mem_rsv(of_flat_tree);
173 /* Look for the dummy entry and delete it */
174 for (j = 0; j < total; j++) {
175 fdt_get_mem_rsv(of_flat_tree, j, &addr, &size);
176 if (addr == rd_data_start) {
177 fdt_del_mem_rsv(of_flat_tree, j);
182 ret = fdt_add_mem_rsv(of_flat_tree, initrd_start,
183 initrd_end - initrd_start + 1);
185 printf("fdt_chosen: %s\n", fdt_strerror(ret));
186 do_reset (cmdtp, flag, argc, argv);
189 do_fixup_by_path_u32(of_flat_tree, "/chosen",
190 "linux,initrd-start", initrd_start, 0);
191 do_fixup_by_path_u32(of_flat_tree, "/chosen",
192 "linux,initrd-end", initrd_end, 0);
195 debug ("## Transferring control to Linux (at address %08lx) ...\n",
198 show_boot_progress (15);
200 #if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
201 unlock_ram_in_cache();
204 #if defined(CONFIG_OF_LIBFDT)
205 if (of_flat_tree) { /* device tree; boot new style */
207 * Linux Kernel Parameters (passing device tree):
208 * r3: pointer to the fdt, followed by the board info data
209 * r4: physical pointer to the kernel itself
214 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
215 /* does not return */
219 * Linux Kernel Parameters (passing board info data):
220 * r3: ptr to board info data
221 * r4: initrd_start or 0 if no initrd
222 * r5: initrd_end - unused if r4 is 0
223 * r6: Start of command line string
224 * r7: End of command line string
226 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
227 /* does not return */
230 static ulong get_sp (void)
234 asm( "mr %0,1": "=r"(sp) : );
238 static void set_clocks_in_mhz (bd_t *kbd)
242 if ((s = getenv ("clocks_in_mhz")) != NULL) {
243 /* convert all clock information to MHz */
244 kbd->bi_intfreq /= 1000000L;
245 kbd->bi_busfreq /= 1000000L;
246 #if defined(CONFIG_MPC8220)
247 kbd->bi_inpfreq /= 1000000L;
248 kbd->bi_pcifreq /= 1000000L;
249 kbd->bi_pevfreq /= 1000000L;
250 kbd->bi_flbfreq /= 1000000L;
251 kbd->bi_vcofreq /= 1000000L;
253 #if defined(CONFIG_CPM2)
254 kbd->bi_cpmfreq /= 1000000L;
255 kbd->bi_brgfreq /= 1000000L;
256 kbd->bi_sccfreq /= 1000000L;
257 kbd->bi_vco /= 1000000L;
259 #if defined(CONFIG_MPC5xxx)
260 kbd->bi_ipbfreq /= 1000000L;
261 kbd->bi_pcifreq /= 1000000L;
262 #endif /* CONFIG_MPC5xxx */
266 #if defined(CONFIG_OF_LIBFDT)
267 static void fdt_error (const char *msg)
271 puts (" - must RESET the board to recover.\n");
274 static image_header_t *image_get_fdt (ulong fdt_addr)
276 image_header_t *fdt_hdr = (image_header_t *)fdt_addr;
278 image_print_contents (fdt_hdr);
280 puts (" Verifying Checksum ... ");
281 if (!image_check_hcrc (fdt_hdr)) {
282 fdt_error ("fdt header checksum invalid");
286 if (!image_check_dcrc (fdt_hdr)) {
287 fdt_error ("fdt checksum invalid");
292 if (!image_check_type (fdt_hdr, IH_TYPE_FLATDT)) {
293 fdt_error ("uImage is not a fdt");
296 if (image_get_comp (fdt_hdr) != IH_COMP_NONE) {
297 fdt_error ("uImage is compressed");
300 if (fdt_check_header ((char *)image_get_data (fdt_hdr)) != 0) {
301 fdt_error ("uImage data is not a fdt");
307 static void get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
308 bootm_headers_t *images, char **of_flat_tree, ulong *of_size)
311 image_header_t *fdt_hdr;
312 char *fdt_blob = NULL;
313 ulong image_start, image_end;
314 ulong load_start, load_end;
315 #if defined(CONFIG_FIT)
317 const char *fit_uname_config = NULL;
318 const char *fit_uname_fdt = NULL;
323 #if defined(CONFIG_FIT)
325 * If the FDT blob comes from the FIT image and the FIT image
326 * address is omitted in the command line argument, try to use
327 * ramdisk or os FIT image address or default load address.
329 if (images->fit_uname_rd)
330 default_addr = (ulong)images->fit_hdr_rd;
331 else if (images->fit_uname_os)
332 default_addr = (ulong)images->fit_hdr_os;
334 default_addr = load_addr;
336 if (fit_parse_conf (argv[3], default_addr,
337 &fdt_addr, &fit_uname_config)) {
338 debug ("* fdt: config '%s' from image at 0x%08lx\n",
339 fit_uname_config, fdt_addr);
340 } else if (fit_parse_subimage (argv[3], default_addr,
341 &fdt_addr, &fit_uname_fdt)) {
342 debug ("* fdt: subimage '%s' from image at 0x%08lx\n",
343 fit_uname_fdt, fdt_addr);
347 fdt_addr = simple_strtoul(argv[3], NULL, 16);
348 debug ("* fdt: cmdline image address = 0x%08lx\n",
352 debug ("## Checking for 'FDT'/'FDT image' at %08lx\n",
355 /* copy from dataflash if needed */
356 fdt_addr = gen_get_image (fdt_addr);
359 * Check if there is an FDT image at the
360 * address provided in the second bootm argument
361 * check image type, for FIT images get a FIT node.
363 switch (gen_image_get_format ((void *)fdt_addr)) {
364 case IMAGE_FORMAT_LEGACY:
365 debug ("* fdt: legacy format image\n");
367 /* verify fdt_addr points to a valid image header */
368 printf ("## Flattened Device Tree Legacy Image at %08lx\n",
370 fdt_hdr = image_get_fdt (fdt_addr);
372 do_reset (cmdtp, flag, argc, argv);
375 * move image data to the load address,
376 * make sure we don't overwrite initial image
378 image_start = (ulong)fdt_hdr;
379 image_end = image_get_image_end (fdt_hdr);
381 load_start = image_get_load (fdt_hdr);
382 load_end = load_start + image_get_data_size (fdt_hdr);
384 if ((load_start < image_end) && (load_end > image_start)) {
385 fdt_error ("fdt overwritten");
386 do_reset (cmdtp, flag, argc, argv);
388 memmove ((void *)image_get_load (fdt_hdr),
389 (void *)image_get_data (fdt_hdr),
390 image_get_data_size (fdt_hdr));
392 fdt_blob = (char *)image_get_load (fdt_hdr);
394 case IMAGE_FORMAT_FIT:
396 * This case will catch both: new uImage format
397 * (libfdt based) and raw FDT blob (also libfdt
400 #if defined(CONFIG_FIT)
401 /* check FDT blob vs FIT blob */
402 if (0) { /* FIXME: call FIT format verification */
406 fit_hdr = (void *)fdt_addr;
407 debug ("* fdt: FIT format image\n");
408 fit_unsupported_reset ("PPC fdt");
409 do_reset (cmdtp, flag, argc, argv);
416 debug ("* fdt: raw FDT blob\n");
417 printf ("## Flattened Device Tree blob at %08lx\n", fdt_blob);
418 fdt_blob = (char *)fdt_addr;
422 fdt_error ("Did not find a cmdline Flattened Device Tree");
423 do_reset (cmdtp, flag, argc, argv);
426 printf (" Booting using the fdt blob at 0x%x\n", fdt_blob);
428 } else if (images->legacy_hdr_valid &&
429 image_check_type (images->legacy_hdr_os, IH_TYPE_MULTI)) {
431 ulong fdt_data, fdt_len;
434 * Now check if we have a legacy multi-component image,
435 * get second entry data start address and len.
437 printf ("## Flattened Device Tree from multi "
438 "component Image at %08lX\n",
439 (ulong)images->legacy_hdr_os);
441 image_multi_getimg (images->legacy_hdr_os, 2, &fdt_data, &fdt_len);
444 fdt_blob = (char *)fdt_data;
445 printf (" Booting using the fdt at 0x%x\n", fdt_blob);
447 if (fdt_check_header (fdt_blob) != 0) {
448 fdt_error ("image is not a fdt");
449 do_reset (cmdtp, flag, argc, argv);
452 if (be32_to_cpu (fdt_totalsize (fdt_blob)) != fdt_len) {
453 fdt_error ("fdt size != image size");
454 do_reset (cmdtp, flag, argc, argv);
457 fdt_error ("Did not find a Flattened Device Tree "
458 "in a legacy multi-component image");
459 do_reset (cmdtp, flag, argc, argv);
462 debug ("## No Flattened Device Tree\n");
463 *of_flat_tree = NULL;
468 *of_flat_tree = fdt_blob;
469 *of_size = be32_to_cpu (fdt_totalsize (fdt_blob));
470 debug (" of_flat_tree at 0x%08lx size 0x%08lx\n",
471 *of_flat_tree, *of_size);
474 static ulong fdt_relocate (ulong alloc_current,
475 cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
476 char **of_flat_tree, ulong *of_size)
478 char *fdt_blob = *of_flat_tree;
480 ulong new_alloc_current;
484 return alloc_current;
486 if (fdt_check_header (fdt_blob) != 0) {
487 fdt_error ("image is not a fdt");
488 do_reset (cmdtp, flag, argc, argv);
492 /* move the blob if it is in flash (set relocate) */
493 if (addr2info ((ulong)fdt_blob) != NULL)
499 * The blob must be within CFG_BOOTMAPSZ,
500 * so we flag it to be copied if it is not.
502 if (fdt_blob >= (char *)CFG_BOOTMAPSZ)
506 /* move flattend device tree if needed */
509 ulong of_start, of_len;
513 /* position on a 4K boundary before the alloc_current */
514 of_start = alloc_current - of_len;
515 of_start &= ~(4096 - 1); /* align on page */
517 debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
518 (ulong)fdt_blob, (ulong)fdt_blob + of_len - 1,
521 printf (" Loading Device Tree to %08lx, end %08lx ... ",
522 of_start, of_start + of_len - 1);
524 err = fdt_open_into (fdt_blob, (void *)of_start, of_len);
526 fdt_error ("fdt move failed");
527 do_reset (cmdtp, flag, argc, argv);
531 *of_flat_tree = (char *)of_start;
532 new_alloc_current = of_start;
534 *of_flat_tree = fdt_blob;
535 new_alloc_current = alloc_current;
538 return new_alloc_current;