blob: 9f48b8dd96383861abb00924a733bf9e6f835f41 [file] [log] [blame]
Marian Balakowicz5d3cc552008-01-08 18:11:43 +01001/*
2 * (C) Copyright 2008 Semihalf
3 *
4 * (C) Copyright 2000-2006
5 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
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.
14 *
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.
19 *
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,
23 * MA 02111-1307 USA
24 */
25
Marian Balakowicz75824382008-01-31 13:20:06 +010026#define DEBUG
27
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010028#include <common.h>
29#include <watchdog.h>
30#include <command.h>
31#include <image.h>
32#include <malloc.h>
33#include <zlib.h>
34#include <bzlib.h>
35#include <environment.h>
36#include <asm/byteorder.h>
37
38#if defined(CONFIG_OF_LIBFDT)
39#include <fdt.h>
40#include <libfdt.h>
41#include <fdt_support.h>
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +010042
43static void fdt_error (const char *msg);
Kumar Gala274cea22008-02-27 21:51:46 -060044static int get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +010045 bootm_headers_t *images, char **of_flat_tree, ulong *of_size);
46static 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);
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010049#endif
50
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010051#ifdef CFG_INIT_RAM_LOCK
52#include <asm/cache.h>
53#endif
54
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010055DECLARE_GLOBAL_DATA_PTR;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010056
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010057extern int do_reset (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[]);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +010058static ulong get_sp (void);
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010059static void set_clocks_in_mhz (bd_t *kbd);
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010060
61void __attribute__((noinline))
Marian Balakowicz8a5ea3e2008-02-27 11:01:04 +010062do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
63 bootm_headers_t *images)
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010064{
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010065 ulong sp, sp_limit, alloc_current;
66
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010067 ulong initrd_start, initrd_end;
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +010068 ulong rd_data_start, rd_data_end, rd_len;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010069
70 ulong cmd_start, cmd_end;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010071 bd_t *kbd;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +010072 ulong ep = 0;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010073 void (*kernel)(bd_t *, ulong, ulong, ulong, ulong);
Kumar Galad2bc0952008-02-27 21:51:45 -060074 int ret;
Kumar Gala27953492008-02-27 21:51:44 -060075 ulong of_size = 0;
Marian Balakowiczf13e7b22008-01-08 18:12:17 +010076
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +010077#if defined(CONFIG_OF_LIBFDT)
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +010078 char *of_flat_tree = NULL;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010079#endif
80
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010081 /*
82 * Booting a (Linux) kernel image
83 *
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
88 * pointer.
89 */
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010090 sp = get_sp();
91 debug ("## Current stack ends at 0x%08lx ", sp);
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010092
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +010093 alloc_current = sp_limit = get_boot_sp_limit(sp);
94 debug ("=> set upper limit to 0x%08lx\n", sp_limit);
Marian Balakowicz5d3cc552008-01-08 18:11:43 +010095
Kumar Gala27953492008-02-27 21:51:44 -060096#if defined(CONFIG_OF_LIBFDT)
97 /* find flattened device tree */
Kumar Gala274cea22008-02-27 21:51:46 -060098 ret = get_fdt (cmdtp, flag, argc, argv, images, &of_flat_tree, &of_size);
99
100 if (ret)
101 goto error;
Kumar Gala27953492008-02-27 21:51:44 -0600102#endif
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100103
Kumar Gala27953492008-02-27 21:51:44 -0600104 if (!of_size) {
105 /* allocate space and init command line */
106 alloc_current = get_boot_cmdline (alloc_current, &cmd_start, &cmd_end);
107
108 /* allocate space for kernel copy of board info */
109 alloc_current = get_boot_kbd (alloc_current, &kbd);
110 set_clocks_in_mhz(kbd);
111 }
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100112
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100113 /* find kernel entry point */
114 if (images->legacy_hdr_valid) {
115 ep = image_get_ep (images->legacy_hdr_os);
116#if defined(CONFIG_FIT)
117 } else if (images->fit_uname_os) {
118 fit_unsupported_reset ("PPC linux bootm");
Kumar Gala274cea22008-02-27 21:51:46 -0600119 goto error;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100120#endif
121 } else {
122 puts ("Could not find kernel entry point!\n");
Kumar Gala274cea22008-02-27 21:51:46 -0600123 goto error;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100124 }
125 kernel = (void (*)(bd_t *, ulong, ulong, ulong, ulong))ep;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100126
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100127 /* find ramdisk */
Kumar Gala274cea22008-02-27 21:51:46 -0600128 ret = get_ramdisk (cmdtp, flag, argc, argv, images,
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100129 IH_ARCH_PPC, &rd_data_start, &rd_data_end);
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100130
Kumar Gala274cea22008-02-27 21:51:46 -0600131 if (ret)
132 goto error;
133
Marian Balakowicz5ad03eb2008-01-31 13:55:39 +0100134 rd_len = rd_data_end - rd_data_start;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100135
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100136#if defined(CONFIG_OF_LIBFDT)
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100137 alloc_current = fdt_relocate (alloc_current,
138 cmdtp, flag, argc, argv, &of_flat_tree, &of_size);
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100139
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100140 /*
141 * Add the chosen node if it doesn't exist, add the env and bd_t
142 * if the user wants it (the logic is in the subroutines).
143 */
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100144 if (of_size) {
Kumar Galad2bc0952008-02-27 21:51:45 -0600145 /* pass in dummy initrd info, we'll fix up later */
146 if (fdt_chosen(of_flat_tree, rd_data_start, rd_data_end, 0) < 0) {
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +0100147 fdt_error ("/chosen node create failed");
Kumar Gala274cea22008-02-27 21:51:46 -0600148 goto error;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100149 }
150#ifdef CONFIG_OF_HAS_UBOOT_ENV
151 if (fdt_env(of_flat_tree) < 0) {
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +0100152 fdt_error ("/u-boot-env node create failed");
Kumar Gala274cea22008-02-27 21:51:46 -0600153 goto error;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100154 }
155#endif
156#ifdef CONFIG_OF_HAS_BD_T
157 if (fdt_bd_t(of_flat_tree) < 0) {
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +0100158 fdt_error ("/bd_t node create failed");
Kumar Gala274cea22008-02-27 21:51:46 -0600159 goto error;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100160 }
161#endif
162#ifdef CONFIG_OF_BOARD_SETUP
163 /* Call the board-specific fixup routine */
164 ft_board_setup(of_flat_tree, gd->bd);
165#endif
166 }
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100167#endif /* CONFIG_OF_LIBFDT */
Marian Balakowiczd45d5a12008-01-08 18:11:43 +0100168
Kumar Galad2bc0952008-02-27 21:51:45 -0600169 alloc_current = ramdisk_high (alloc_current, rd_data_start, rd_len,
170 sp_limit, get_sp (), &initrd_start, &initrd_end);
171
172#if defined(CONFIG_OF_LIBFDT)
173 /* fixup the initrd now that we know where it should be */
174 if ((of_flat_tree) && (initrd_start && initrd_end)) {
175 uint64_t addr, size;
176 int total = fdt_num_mem_rsv(of_flat_tree);
177 int j;
178
179 /* Look for the dummy entry and delete it */
180 for (j = 0; j < total; j++) {
181 fdt_get_mem_rsv(of_flat_tree, j, &addr, &size);
182 if (addr == rd_data_start) {
183 fdt_del_mem_rsv(of_flat_tree, j);
184 break;
185 }
186 }
187
188 ret = fdt_add_mem_rsv(of_flat_tree, initrd_start,
189 initrd_end - initrd_start + 1);
190 if (ret < 0) {
191 printf("fdt_chosen: %s\n", fdt_strerror(ret));
Kumar Gala274cea22008-02-27 21:51:46 -0600192 goto error;
Kumar Galad2bc0952008-02-27 21:51:45 -0600193 }
194
195 do_fixup_by_path_u32(of_flat_tree, "/chosen",
196 "linux,initrd-start", initrd_start, 0);
197 do_fixup_by_path_u32(of_flat_tree, "/chosen",
198 "linux,initrd-end", initrd_end, 0);
199 }
200#endif
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100201 debug ("## Transferring control to Linux (at address %08lx) ...\n",
202 (ulong)kernel);
203
204 show_boot_progress (15);
205
206#if defined(CFG_INIT_RAM_LOCK) && !defined(CONFIG_E500)
207 unlock_ram_in_cache();
208#endif
209
Marian Balakowicz4a2ad5f2008-01-31 13:20:07 +0100210#if defined(CONFIG_OF_LIBFDT)
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100211 if (of_flat_tree) { /* device tree; boot new style */
212 /*
213 * Linux Kernel Parameters (passing device tree):
214 * r3: pointer to the fdt, followed by the board info data
215 * r4: physical pointer to the kernel itself
216 * r5: NULL
217 * r6: NULL
218 * r7: NULL
219 */
220 (*kernel) ((bd_t *)of_flat_tree, (ulong)kernel, 0, 0, 0);
221 /* does not return */
222 }
223#endif
224 /*
225 * Linux Kernel Parameters (passing board info data):
226 * r3: ptr to board info data
227 * r4: initrd_start or 0 if no initrd
228 * r5: initrd_end - unused if r4 is 0
229 * r6: Start of command line string
230 * r7: End of command line string
231 */
232 (*kernel) (kbd, initrd_start, initrd_end, cmd_start, cmd_end);
233 /* does not return */
Kumar Gala274cea22008-02-27 21:51:46 -0600234 return ;
235
236error:
237 do_reset (cmdtp, flag, argc, argv);
238 return ;
Marian Balakowicz5d3cc552008-01-08 18:11:43 +0100239}
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +0100240
Marian Balakowiczceaed2b2008-01-31 13:57:17 +0100241static ulong get_sp (void)
242{
243 ulong sp;
244
245 asm( "mr %0,1": "=r"(sp) : );
246 return sp;
247}
248
Marian Balakowiczb6b0fe62008-01-31 13:58:13 +0100249static void set_clocks_in_mhz (bd_t *kbd)
250{
251 char *s;
252
253 if ((s = getenv ("clocks_in_mhz")) != NULL) {
254 /* convert all clock information to MHz */
255 kbd->bi_intfreq /= 1000000L;
256 kbd->bi_busfreq /= 1000000L;
257#if defined(CONFIG_MPC8220)
258 kbd->bi_inpfreq /= 1000000L;
259 kbd->bi_pcifreq /= 1000000L;
260 kbd->bi_pevfreq /= 1000000L;
261 kbd->bi_flbfreq /= 1000000L;
262 kbd->bi_vcofreq /= 1000000L;
263#endif
264#if defined(CONFIG_CPM2)
265 kbd->bi_cpmfreq /= 1000000L;
266 kbd->bi_brgfreq /= 1000000L;
267 kbd->bi_sccfreq /= 1000000L;
268 kbd->bi_vco /= 1000000L;
269#endif
270#if defined(CONFIG_MPC5xxx)
271 kbd->bi_ipbfreq /= 1000000L;
272 kbd->bi_pcifreq /= 1000000L;
273#endif /* CONFIG_MPC5xxx */
274 }
275}
276
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +0100277#if defined(CONFIG_OF_LIBFDT)
278static void fdt_error (const char *msg)
279{
280 puts ("ERROR: ");
281 puts (msg);
282 puts (" - must RESET the board to recover.\n");
283}
Marian Balakowicz7b325452008-01-31 13:58:20 +0100284
Marian Balakowiczff0734c2008-02-27 11:02:26 +0100285static image_header_t *image_get_fdt (ulong fdt_addr)
286{
287 image_header_t *fdt_hdr = (image_header_t *)fdt_addr;
288
289 image_print_contents (fdt_hdr);
290
291 puts (" Verifying Checksum ... ");
292 if (!image_check_hcrc (fdt_hdr)) {
293 fdt_error ("fdt header checksum invalid");
294 return NULL;
295 }
296
297 if (!image_check_dcrc (fdt_hdr)) {
298 fdt_error ("fdt checksum invalid");
299 return NULL;
300 }
301 puts ("OK\n");
302
303 if (!image_check_type (fdt_hdr, IH_TYPE_FLATDT)) {
304 fdt_error ("uImage is not a fdt");
305 return NULL;
306 }
307 if (image_get_comp (fdt_hdr) != IH_COMP_NONE) {
308 fdt_error ("uImage is compressed");
309 return NULL;
310 }
311 if (fdt_check_header ((char *)image_get_data (fdt_hdr)) != 0) {
312 fdt_error ("uImage data is not a fdt");
313 return NULL;
314 }
315 return fdt_hdr;
316}
317
Kumar Gala274cea22008-02-27 21:51:46 -0600318static int get_fdt (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100319 bootm_headers_t *images, char **of_flat_tree, ulong *of_size)
Marian Balakowicz7b325452008-01-31 13:58:20 +0100320{
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100321 ulong fdt_addr;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100322 image_header_t *fdt_hdr;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100323 char *fdt_blob = NULL;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100324 ulong image_start, image_end;
325 ulong load_start, load_end;
326#if defined(CONFIG_FIT)
327 void *fit_hdr;
328 const char *fit_uname_config = NULL;
329 const char *fit_uname_fdt = NULL;
330 ulong default_addr;
331#endif
Marian Balakowicz7b325452008-01-31 13:58:20 +0100332
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100333 if (argc > 3) {
334#if defined(CONFIG_FIT)
335 /*
336 * If the FDT blob comes from the FIT image and the FIT image
337 * address is omitted in the command line argument, try to use
338 * ramdisk or os FIT image address or default load address.
339 */
340 if (images->fit_uname_rd)
341 default_addr = (ulong)images->fit_hdr_rd;
342 else if (images->fit_uname_os)
343 default_addr = (ulong)images->fit_hdr_os;
344 else
345 default_addr = load_addr;
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100346
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100347 if (fit_parse_conf (argv[3], default_addr,
348 &fdt_addr, &fit_uname_config)) {
349 debug ("* fdt: config '%s' from image at 0x%08lx\n",
350 fit_uname_config, fdt_addr);
351 } else if (fit_parse_subimage (argv[3], default_addr,
352 &fdt_addr, &fit_uname_fdt)) {
353 debug ("* fdt: subimage '%s' from image at 0x%08lx\n",
354 fit_uname_fdt, fdt_addr);
355 } else
356#endif
357 {
358 fdt_addr = simple_strtoul(argv[3], NULL, 16);
359 debug ("* fdt: cmdline image address = 0x%08lx\n",
360 fdt_addr);
361 }
362
363 debug ("## Checking for 'FDT'/'FDT image' at %08lx\n",
364 fdt_addr);
Marian Balakowiczfff888a12008-02-21 17:20:19 +0100365
366 /* copy from dataflash if needed */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100367 fdt_addr = gen_get_image (fdt_addr);
Marian Balakowicz7b325452008-01-31 13:58:20 +0100368
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100369 /*
370 * Check if there is an FDT image at the
371 * address provided in the second bootm argument
372 * check image type, for FIT images get a FIT node.
373 */
374 switch (gen_image_get_format ((void *)fdt_addr)) {
375 case IMAGE_FORMAT_LEGACY:
376 debug ("* fdt: legacy format image\n");
Marian Balakowicz7b325452008-01-31 13:58:20 +0100377
Marian Balakowiczff0734c2008-02-27 11:02:26 +0100378 /* verify fdt_addr points to a valid image header */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100379 printf ("## Flattened Device Tree Legacy Image at %08lx\n",
Marian Balakowiczff0734c2008-02-27 11:02:26 +0100380 fdt_addr);
381 fdt_hdr = image_get_fdt (fdt_addr);
382 if (!fdt_hdr)
Kumar Gala274cea22008-02-27 21:51:46 -0600383 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100384
Marian Balakowiczff0734c2008-02-27 11:02:26 +0100385 /*
386 * move image data to the load address,
387 * make sure we don't overwrite initial image
388 */
Marian Balakowicz7b325452008-01-31 13:58:20 +0100389 image_start = (ulong)fdt_hdr;
390 image_end = image_get_image_end (fdt_hdr);
391
392 load_start = image_get_load (fdt_hdr);
393 load_end = load_start + image_get_data_size (fdt_hdr);
394
395 if ((load_start < image_end) && (load_end > image_start)) {
396 fdt_error ("fdt overwritten");
Kumar Gala274cea22008-02-27 21:51:46 -0600397 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100398 }
Marian Balakowicz7b325452008-01-31 13:58:20 +0100399 memmove ((void *)image_get_load (fdt_hdr),
Marian Balakowiczff0734c2008-02-27 11:02:26 +0100400 (void *)image_get_data (fdt_hdr),
401 image_get_data_size (fdt_hdr));
Marian Balakowicz7b325452008-01-31 13:58:20 +0100402
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100403 fdt_blob = (char *)image_get_load (fdt_hdr);
404 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100405 case IMAGE_FORMAT_FIT:
Marian Balakowicz4efbe9d2008-02-27 11:02:26 +0100406 /*
407 * This case will catch both: new uImage format
408 * (libfdt based) and raw FDT blob (also libfdt
409 * based).
410 */
411#if defined(CONFIG_FIT)
412 /* check FDT blob vs FIT blob */
413 if (0) { /* FIXME: call FIT format verification */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100414 /*
415 * FIT image
416 */
417 fit_hdr = (void *)fdt_addr;
418 debug ("* fdt: FIT format image\n");
419 fit_unsupported_reset ("PPC fdt");
Kumar Gala274cea22008-02-27 21:51:46 -0600420 goto error;
Marian Balakowicz4efbe9d2008-02-27 11:02:26 +0100421 } else
422#endif
423 {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100424 /*
425 * FDT blob
426 */
Marian Balakowicz4efbe9d2008-02-27 11:02:26 +0100427 debug ("* fdt: raw FDT blob\n");
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100428 printf ("## Flattened Device Tree blob at %08lx\n", fdt_blob);
429 fdt_blob = (char *)fdt_addr;
430 }
431 break;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100432 default:
433 fdt_error ("Did not find a cmdline Flattened Device Tree");
Kumar Gala274cea22008-02-27 21:51:46 -0600434 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100435 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100436
437 printf (" Booting using the fdt blob at 0x%x\n", fdt_blob);
438
439 } else if (images->legacy_hdr_valid &&
440 image_check_type (images->legacy_hdr_os, IH_TYPE_MULTI)) {
441
Marian Balakowicz7b325452008-01-31 13:58:20 +0100442 ulong fdt_data, fdt_len;
443
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100444 /*
445 * Now check if we have a legacy multi-component image,
446 * get second entry data start address and len.
447 */
Marian Balakowicz7b325452008-01-31 13:58:20 +0100448 printf ("## Flattened Device Tree from multi "
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100449 "component Image at %08lX\n",
450 (ulong)images->legacy_hdr_os);
Marian Balakowicz7b325452008-01-31 13:58:20 +0100451
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100452 image_multi_getimg (images->legacy_hdr_os, 2, &fdt_data, &fdt_len);
Marian Balakowicz7b325452008-01-31 13:58:20 +0100453 if (fdt_len) {
454
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100455 fdt_blob = (char *)fdt_data;
456 printf (" Booting using the fdt at 0x%x\n", fdt_blob);
Marian Balakowicz7b325452008-01-31 13:58:20 +0100457
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100458 if (fdt_check_header (fdt_blob) != 0) {
Marian Balakowicz7b325452008-01-31 13:58:20 +0100459 fdt_error ("image is not a fdt");
Kumar Gala274cea22008-02-27 21:51:46 -0600460 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100461 }
462
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100463 if (be32_to_cpu (fdt_totalsize (fdt_blob)) != fdt_len) {
Marian Balakowicz7b325452008-01-31 13:58:20 +0100464 fdt_error ("fdt size != image size");
Kumar Gala274cea22008-02-27 21:51:46 -0600465 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100466 }
467 } else {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100468 fdt_error ("Did not find a Flattened Device Tree "
469 "in a legacy multi-component image");
Kumar Gala274cea22008-02-27 21:51:46 -0600470 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100471 }
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100472 } else {
473 debug ("## No Flattened Device Tree\n");
474 *of_flat_tree = NULL;
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100475 *of_size = 0;
Kumar Gala274cea22008-02-27 21:51:46 -0600476 return 0;
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100477 }
478
479 *of_flat_tree = fdt_blob;
480 *of_size = be32_to_cpu (fdt_totalsize (fdt_blob));
481 debug (" of_flat_tree at 0x%08lx size 0x%08lx\n",
482 *of_flat_tree, *of_size);
Kumar Gala274cea22008-02-27 21:51:46 -0600483
484 return 0;
485
486error:
487 do_reset (cmdtp, flag, argc, argv);
488 return 1;
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100489}
490
491static ulong fdt_relocate (ulong alloc_current,
492 cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],
493 char **of_flat_tree, ulong *of_size)
494{
495 char *fdt_blob = *of_flat_tree;
496 ulong relocate = 0;
497 ulong new_alloc_current;
498
499 /* nothing to do */
500 if (*of_size == 0)
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100501 return alloc_current;
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100502
503 if (fdt_check_header (fdt_blob) != 0) {
504 fdt_error ("image is not a fdt");
Kumar Gala274cea22008-02-27 21:51:46 -0600505 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100506 }
507
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100508#ifndef CFG_NO_FLASH
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100509 /* move the blob if it is in flash (set relocate) */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100510 if (addr2info ((ulong)fdt_blob) != NULL)
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100511 relocate = 1;
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100512#endif
513
Marian Balakowicz7b325452008-01-31 13:58:20 +0100514#ifdef CFG_BOOTMAPSZ
515 /*
516 * The blob must be within CFG_BOOTMAPSZ,
517 * so we flag it to be copied if it is not.
518 */
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100519 if (fdt_blob >= (char *)CFG_BOOTMAPSZ)
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100520 relocate = 1;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100521#endif
522
523 /* move flattend device tree if needed */
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100524 if (relocate) {
Marian Balakowicz7b325452008-01-31 13:58:20 +0100525 int err;
526 ulong of_start, of_len;
527
Marian Balakowiczd2ced9e2008-02-04 08:28:17 +0100528 of_len = *of_size;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100529
530 /* position on a 4K boundary before the alloc_current */
531 of_start = alloc_current - of_len;
532 of_start &= ~(4096 - 1); /* align on page */
533
534 debug ("## device tree at 0x%08lX ... 0x%08lX (len=%ld=0x%lX)\n",
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100535 (ulong)fdt_blob, (ulong)fdt_blob + of_len - 1,
Marian Balakowicz7b325452008-01-31 13:58:20 +0100536 of_len, of_len);
537
538 printf (" Loading Device Tree to %08lx, end %08lx ... ",
539 of_start, of_start + of_len - 1);
540
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100541 err = fdt_open_into (fdt_blob, (void *)of_start, of_len);
Marian Balakowicz7b325452008-01-31 13:58:20 +0100542 if (err != 0) {
543 fdt_error ("fdt move failed");
Kumar Gala274cea22008-02-27 21:51:46 -0600544 goto error;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100545 }
546 puts ("OK\n");
547
548 *of_flat_tree = (char *)of_start;
549 new_alloc_current = of_start;
550 } else {
Marian Balakowiczd5934ad2008-02-04 08:28:09 +0100551 *of_flat_tree = fdt_blob;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100552 new_alloc_current = alloc_current;
553 }
554
555 return new_alloc_current;
Kumar Gala274cea22008-02-27 21:51:46 -0600556
557error:
558 do_reset (cmdtp, flag, argc, argv);
559 return 1;
Marian Balakowicz7b325452008-01-31 13:58:20 +0100560}
Marian Balakowiczd3c5eb62008-01-31 13:20:08 +0100561#endif