]> Git Repo - J-u-boot.git/blame - boot/image-fdt.c
Merge tag 'u-boot-imx-master-20250127' of https://gitlab.denx.de/u-boot/custodians...
[J-u-boot.git] / boot / image-fdt.c
CommitLineData
83d290c5 1// SPDX-License-Identifier: GPL-2.0+
44d3a306
SG
2/*
3 * Copyright (c) 2013, Google Inc.
4 *
5 * (C) Copyright 2008 Semihalf
6 *
7 * (C) Copyright 2000-2006
8 * Wolfgang Denk, DENX Software Engineering, [email protected].
44d3a306
SG
9 */
10
e91d6607 11#include <command.h>
44d3a306 12#include <fdt_support.h>
e2237a2c 13#include <fdtdec.h>
cdbff9fc 14#include <env.h>
44d3a306
SG
15#include <errno.h>
16#include <image.h>
4d72caa5 17#include <lmb.h>
f7ae49fc 18#include <log.h>
336d4615 19#include <malloc.h>
401d1c4f 20#include <asm/global_data.h>
b08c8c48 21#include <linux/libfdt.h>
0eb25b61 22#include <mapmem.h>
44d3a306 23#include <asm/io.h>
98887ab8 24#include <dm/ofnode.h>
6ccb05ea 25#include <tee/optee.h>
44d3a306 26
44d3a306
SG
27DECLARE_GLOBAL_DATA_PTR;
28
29static void fdt_error(const char *msg)
30{
31 puts("ERROR: ");
32 puts(msg);
33 puts(" - must RESET the board to recover.\n");
34}
35
c76c93a3 36#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
f3543e69 37static const struct legacy_img_hdr *image_get_fdt(ulong fdt_addr)
44d3a306 38{
f3543e69 39 const struct legacy_img_hdr *fdt_hdr = map_sysmem(fdt_addr, 0);
44d3a306
SG
40
41 image_print_contents(fdt_hdr);
42
43 puts(" Verifying Checksum ... ");
44 if (!image_check_hcrc(fdt_hdr)) {
45 fdt_error("fdt header checksum invalid");
46 return NULL;
47 }
48
49 if (!image_check_dcrc(fdt_hdr)) {
50 fdt_error("fdt checksum invalid");
51 return NULL;
52 }
53 puts("OK\n");
54
55 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) {
56 fdt_error("uImage is not a fdt");
57 return NULL;
58 }
59 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) {
60 fdt_error("uImage is compressed");
61 return NULL;
62 }
2f0877c7 63 if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) {
44d3a306
SG
64 fdt_error("uImage data is not a fdt");
65 return NULL;
66 }
67 return fdt_hdr;
68}
21d29f7f 69#endif
44d3a306 70
3d56c065 71static void boot_fdt_reserve_region(u64 addr, u64 size, u32 flags)
e2237a2c 72{
e1d7ed34 73 long ret;
e2237a2c 74
900a8951 75 ret = lmb_reserve(addr, size, flags);
0f57b009 76 if (!ret) {
f46959ce
PD
77 debug(" reserving fdt memory region: addr=%llx size=%llx flags=%x\n",
78 (unsigned long long)addr,
79 (unsigned long long)size, flags);
5a6aa7d5 80 } else if (ret != -EEXIST) {
e2237a2c 81 puts("ERROR: reserving fdt memory region failed ");
f46959ce
PD
82 printf("(addr=%llx size=%llx flags=%x)\n",
83 (unsigned long long)addr,
84 (unsigned long long)size, flags);
e2237a2c
SG
85 }
86}
87
44d3a306 88/**
e2237a2c
SG
89 * boot_fdt_add_mem_rsv_regions - Mark the memreserve and reserved-memory
90 * sections as unusable
44d3a306
SG
91 * @fdt_blob: pointer to fdt blob base address
92 *
e2237a2c
SG
93 * Adds the and reserved-memorymemreserve regions in the dtb to the lmb block.
94 * Adding the memreserve regions prevents u-boot from using them to store the
95 * initrd or the fdt blob.
44d3a306 96 */
ed17a33f 97void boot_fdt_add_mem_rsv_regions(void *fdt_blob)
44d3a306
SG
98{
99 uint64_t addr, size;
e2237a2c
SG
100 int i, total, ret;
101 int nodeoffset, subnode;
102 struct fdt_resource res;
3d56c065 103 u32 flags;
44d3a306
SG
104
105 if (fdt_check_header(fdt_blob) != 0)
106 return;
107
e2237a2c 108 /* process memreserve sections */
44d3a306
SG
109 total = fdt_num_mem_rsv(fdt_blob);
110 for (i = 0; i < total; i++) {
111 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
112 continue;
827dee58 113 boot_fdt_reserve_region(addr, size, LMB_NOOVERWRITE);
e2237a2c
SG
114 }
115
116 /* process reserved-memory */
117 nodeoffset = fdt_subnode_offset(fdt_blob, 0, "reserved-memory");
118 if (nodeoffset >= 0) {
119 subnode = fdt_first_subnode(fdt_blob, nodeoffset);
120 while (subnode >= 0) {
121 /* check if this subnode has a reg property */
122 ret = fdt_get_resource(fdt_blob, subnode, "reg", 0,
123 &res);
28b417ce 124 if (!ret && fdtdec_get_is_enabled(fdt_blob, subnode)) {
827dee58 125 flags = LMB_NOOVERWRITE;
f46959ce
PD
126 if (fdtdec_get_bool(fdt_blob, subnode,
127 "no-map"))
128 flags = LMB_NOMAP;
e2237a2c
SG
129 addr = res.start;
130 size = res.end - res.start + 1;
ed17a33f 131 boot_fdt_reserve_region(addr, size, flags);
e2237a2c
SG
132 }
133
134 subnode = fdt_next_subnode(fdt_blob, subnode);
135 }
44d3a306
SG
136 }
137}
138
139/**
140 * boot_relocate_fdt - relocate flat device tree
44d3a306
SG
141 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
142 * @of_size: pointer to a ulong variable, will hold fdt length
143 *
144 * boot_relocate_fdt() allocates a region of memory within the bootmap and
145 * relocates the of_flat_tree into that region, even if the fdt is already in
146 * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD
147 * bytes.
148 *
149 * of_flat_tree and of_size are set to final (after relocation) values
150 *
151 * returns:
152 * 0 - success
153 * 1 - failure
154 */
ed17a33f 155int boot_relocate_fdt(char **of_flat_tree, ulong *of_size)
44d3a306 156{
16da8531 157 u64 start, size, usable, addr, low, mapsize;
44d3a306
SG
158 void *fdt_blob = *of_flat_tree;
159 void *of_start = NULL;
160 char *fdt_high;
161 ulong of_len = 0;
a96d5657 162 int bank;
44d3a306
SG
163 int err;
164 int disable_relocation = 0;
165
166 /* nothing to do */
167 if (*of_size == 0)
168 return 0;
169
170 if (fdt_check_header(fdt_blob) != 0) {
171 fdt_error("image is not a fdt");
172 goto error;
173 }
174
175 /* position on a 4K boundary before the alloc_current */
176 /* Pad the FDT by a specified amount */
177 of_len = *of_size + CONFIG_SYS_FDT_PAD;
178
179 /* If fdt_high is set use it to select the relocation address */
00caae6d 180 fdt_high = env_get("fdt_high");
44d3a306 181 if (fdt_high) {
19511935 182 ulong desired_addr = hextoul(fdt_high, NULL);
44d3a306 183
19511935 184 if (desired_addr == ~0UL) {
44d3a306
SG
185 /* All ones means use fdt in place */
186 of_start = fdt_blob;
900a8951 187 lmb_reserve(map_to_sysmem(of_start), of_len, LMB_NONE);
44d3a306
SG
188 disable_relocation = 1;
189 } else if (desired_addr) {
30757080
IA
190 addr = lmb_alloc_base(of_len, 0x1000, desired_addr,
191 LMB_NONE);
19511935 192 of_start = map_sysmem(addr, of_len);
44d3a306
SG
193 if (of_start == NULL) {
194 puts("Failed using fdt_high value for Device Tree");
195 goto error;
196 }
197 } else {
ed17a33f 198 addr = lmb_alloc(of_len, 0x1000);
19511935 199 of_start = map_sysmem(addr, of_len);
44d3a306
SG
200 }
201 } else {
a96d5657
MV
202 mapsize = env_get_bootm_mapsize();
203 low = env_get_bootm_low();
204 of_start = NULL;
205
206 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
207 start = gd->bd->bi_dram[bank].start;
208 size = gd->bd->bi_dram[bank].size;
209
210 /* DRAM bank addresses are too low, skip it. */
211 if (start + size < low)
212 continue;
213
a96d5657
MV
214 /*
215 * At least part of this DRAM bank is usable, try
c7afe41b
MV
216 * using the DRAM bank up to 'usable' address limit
217 * for LMB allocation.
a96d5657 218 */
c7afe41b 219 usable = min(start + size, low + mapsize);
30757080 220 addr = lmb_alloc_base(of_len, 0x1000, usable, LMB_NONE);
f5178ddd 221 of_start = map_sysmem(addr, of_len);
a96d5657
MV
222 /* Allocation succeeded, use this block. */
223 if (of_start != NULL)
224 break;
225
226 /*
227 * Reduce the mapping size in the next bank
228 * by the size of attempt in current bank.
229 */
a4df06e4 230 mapsize -= usable - max(start, low);
a96d5657
MV
231 if (!mapsize)
232 break;
233 }
44d3a306
SG
234 }
235
236 if (of_start == NULL) {
237 puts("device tree - allocation error\n");
238 goto error;
239 }
240
241 if (disable_relocation) {
242 /*
243 * We assume there is space after the existing fdt to use
244 * for padding
245 */
246 fdt_set_totalsize(of_start, of_len);
247 printf(" Using Device Tree in place at %p, end %p\n",
248 of_start, of_start + of_len - 1);
249 } else {
250 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
251 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
252
253 printf(" Loading Device Tree to %p, end %p ... ",
254 of_start, of_start + of_len - 1);
255
256 err = fdt_open_into(fdt_blob, of_start, of_len);
257 if (err != 0) {
258 fdt_error("fdt move failed");
259 goto error;
260 }
261 puts("OK\n");
262 }
263
264 *of_flat_tree = of_start;
265 *of_size = of_len;
266
3a09f38d 267 if (IS_ENABLED(CONFIG_CMD_FDT))
596be5f3 268 set_working_fdt_addr(map_to_sysmem(*of_flat_tree));
44d3a306
SG
269 return 0;
270
271error:
272 return 1;
273}
274
44d3a306 275/**
4cb35b7a 276 * select_fdt() - Select and locate the FDT to use
44d3a306 277 *
4cb35b7a
SG
278 * @images: pointer to the bootm images structure
279 * @select: name of FDT to select, or NULL for any
280 * @arch: expected FDT architecture
281 * @fdt_addrp: pointer to a ulong variable, will hold FDT pointer
185f812c 282 * Return: 0 if OK, -ENOPKG if no FDT (but an error should not be reported),
4cb35b7a 283 * other -ve value on other error
44d3a306 284 */
44d3a306 285
d9d7c20b 286static int select_fdt(struct bootm_headers *images, const char *select, u8 arch,
4cb35b7a
SG
287 ulong *fdt_addrp)
288{
289 const char *buf;
290 ulong fdt_addr;
6a7b406a 291
73223f0e 292#if CONFIG_IS_ENABLED(FIT)
4cb35b7a
SG
293 const char *fit_uname_config = images->fit_uname_cfg;
294 const char *fit_uname_fdt = NULL;
295 ulong default_addr;
296 int fdt_noffset;
a2198cd0 297
4cb35b7a 298 if (select) {
44d3a306
SG
299 /*
300 * If the FDT blob comes from the FIT image and the
301 * FIT image address is omitted in the command line
302 * argument, try to use ramdisk or os FIT image
303 * address or default load address.
304 */
305 if (images->fit_uname_rd)
306 default_addr = (ulong)images->fit_hdr_rd;
307 else if (images->fit_uname_os)
308 default_addr = (ulong)images->fit_hdr_os;
309 else
bb872dd9 310 default_addr = image_load_addr;
44d3a306 311
4cb35b7a
SG
312 if (fit_parse_conf(select, default_addr, &fdt_addr,
313 &fit_uname_config)) {
44d3a306
SG
314 debug("* fdt: config '%s' from image at 0x%08lx\n",
315 fit_uname_config, fdt_addr);
4cb35b7a
SG
316 } else if (fit_parse_subimage(select, default_addr, &fdt_addr,
317 &fit_uname_fdt)) {
44d3a306
SG
318 debug("* fdt: subimage '%s' from image at 0x%08lx\n",
319 fit_uname_fdt, fdt_addr);
320 } else
321#endif
4cb35b7a
SG
322 {
323 fdt_addr = hextoul(select, NULL);
324 debug("* fdt: cmdline image address = 0x%08lx\n",
325 fdt_addr);
44d3a306 326 }
4cb35b7a
SG
327#if CONFIG_IS_ENABLED(FIT)
328 } else {
329 /* use FIT configuration provided in first bootm
330 * command argument
44d3a306 331 */
4cb35b7a
SG
332 fdt_addr = map_to_sysmem(images->fit_hdr_os);
333 fdt_noffset = fit_get_node_from_config(images, FIT_FDT_PROP,
334 fdt_addr);
335 if (fdt_noffset == -ENOENT)
336 return -ENOPKG;
337 else if (fdt_noffset < 0)
338 return fdt_noffset;
339 }
340#endif
341 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
342 fdt_addr);
343
344 /*
345 * Check if there is an FDT image at the
346 * address provided in the second bootm argument
347 * check image type, for FIT images get a FIT node.
348 */
349 buf = map_sysmem(fdt_addr, 0);
350 switch (genimg_get_format(buf)) {
c76c93a3 351#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
4cb35b7a 352 case IMAGE_FORMAT_LEGACY: {
f3543e69 353 const struct legacy_img_hdr *fdt_hdr;
a2198cd0
SG
354 ulong load, load_end;
355 ulong image_start, image_data, image_end;
356
44d3a306
SG
357 /* verify fdt_addr points to a valid image header */
358 printf("## Flattened Device Tree from Legacy Image at %08lx\n",
359 fdt_addr);
360 fdt_hdr = image_get_fdt(fdt_addr);
361 if (!fdt_hdr)
4cb35b7a 362 return -ENOPKG;
44d3a306
SG
363
364 /*
365 * move image data to the load address,
366 * make sure we don't overwrite initial image
367 */
368 image_start = (ulong)fdt_hdr;
369 image_data = (ulong)image_get_data(fdt_hdr);
370 image_end = image_get_image_end(fdt_hdr);
371
53f375fa
SG
372 load = image_get_load(fdt_hdr);
373 load_end = load + image_get_data_size(fdt_hdr);
44d3a306 374
53f375fa
SG
375 if (load == image_start ||
376 load == image_data) {
2ea47be0 377 fdt_addr = load;
44d3a306
SG
378 break;
379 }
380
53f375fa 381 if ((load < image_end) && (load_end > image_start)) {
44d3a306 382 fdt_error("fdt overwritten");
4cb35b7a 383 return -EFAULT;
44d3a306
SG
384 }
385
386 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
53f375fa 387 image_data, load);
44d3a306 388
53f375fa 389 memmove((void *)load,
44d3a306
SG
390 (void *)image_data,
391 image_get_data_size(fdt_hdr));
392
53f375fa 393 fdt_addr = load;
44d3a306 394 break;
a2198cd0 395 }
21d29f7f 396#endif
4cb35b7a
SG
397 case IMAGE_FORMAT_FIT:
398 /*
399 * This case will catch both: new uImage format
400 * (libfdt based) and raw FDT blob (also libfdt
401 * based).
402 */
73223f0e 403#if CONFIG_IS_ENABLED(FIT)
44d3a306 404 /* check FDT blob vs FIT blob */
c5819701 405 if (!fit_check_format(buf, IMAGE_SIZE_INVAL)) {
53f375fa 406 ulong load, len;
44d3a306 407
4cb35b7a
SG
408 fdt_noffset = boot_get_fdt_fit(images, fdt_addr,
409 &fit_uname_fdt,
410 &fit_uname_config,
411 arch, &load, &len);
44d3a306 412
9883df1b 413 if (fdt_noffset < 0)
4cb35b7a 414 return -ENOENT;
9883df1b 415
53f375fa 416 images->fit_hdr_fdt = map_sysmem(fdt_addr, 0);
44d3a306
SG
417 images->fit_uname_fdt = fit_uname_fdt;
418 images->fit_noffset_fdt = fdt_noffset;
53f375fa 419 fdt_addr = load;
169043d8 420
44d3a306 421 break;
4cb35b7a 422 } else
44d3a306 423#endif
4cb35b7a
SG
424 {
425 /*
426 * FDT blob
427 */
428 debug("* fdt: raw FDT blob\n");
429 printf("## Flattened Device Tree blob at %08lx\n",
430 (long)fdt_addr);
44d3a306 431 }
4cb35b7a
SG
432 break;
433 default:
434 puts("ERROR: Did not find a cmdline Flattened Device Tree\n");
435 return -ENOENT;
436 }
437 *fdt_addrp = fdt_addr;
438
439 return 0;
440}
441
0aa923ab 442int boot_get_fdt(void *buf, const char *select, uint arch,
ba5e3f7f
SG
443 struct bootm_headers *images, char **of_flat_tree,
444 ulong *of_size)
4cb35b7a 445{
0aa923ab
SG
446 char *fdt_blob = NULL;
447 ulong fdt_addr;
4cb35b7a
SG
448
449 *of_flat_tree = NULL;
450 *of_size = 0;
451
4cb35b7a
SG
452 if (select || genimg_has_config(images)) {
453 int ret;
44d3a306 454
4cb35b7a
SG
455 ret = select_fdt(images, select, arch, &fdt_addr);
456 if (ret == -ENOPKG)
457 goto no_fdt;
458 else if (ret)
459 return 1;
53f375fa
SG
460 printf(" Booting using the fdt blob at %#08lx\n", fdt_addr);
461 fdt_blob = map_sysmem(fdt_addr, 0);
44d3a306
SG
462 } else if (images->legacy_hdr_valid &&
463 image_check_type(&images->legacy_hdr_os_copy,
464 IH_TYPE_MULTI)) {
465 ulong fdt_data, fdt_len;
466
467 /*
468 * Now check if we have a legacy multi-component image,
469 * get second entry data start address and len.
470 */
471 printf("## Flattened Device Tree from multi component Image at %08lX\n",
472 (ulong)images->legacy_hdr_os);
473
474 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
475 &fdt_len);
476 if (fdt_len) {
477 fdt_blob = (char *)fdt_data;
478 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
479
480 if (fdt_check_header(fdt_blob) != 0) {
481 fdt_error("image is not a fdt");
482 goto error;
483 }
484
485 if (fdt_totalsize(fdt_blob) != fdt_len) {
486 fdt_error("fdt size != image size");
487 goto error;
488 }
489 } else {
490 debug("## No Flattened Device Tree\n");
48aead71 491 goto no_fdt;
44d3a306 492 }
6a7b406a
SG
493#ifdef CONFIG_ANDROID_BOOT_IMAGE
494 } else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
636da203 495 void *hdr = buf;
6e314584 496 ulong fdt_data, fdt_len;
497 u32 fdt_size, dtb_idx;
498 /*
499 * Firstly check if this android boot image has dtb field.
500 */
501 dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
58fed99f 502 if (android_image_get_dtb_by_index((ulong)hdr, get_avendor_bootimg_addr(),
e058176b 503 dtb_idx, &fdt_addr, &fdt_size)) {
6e314584 504 fdt_blob = (char *)map_sysmem(fdt_addr, 0);
505 if (fdt_check_header(fdt_blob))
506 goto no_fdt;
6a7b406a 507
6e314584 508 debug("## Using FDT in Android image dtb area with idx %u\n", dtb_idx);
509 } else if (!android_image_get_second(hdr, &fdt_data, &fdt_len) &&
510 !fdt_check_header((char *)fdt_data)) {
18b8f2c4
ER
511 fdt_blob = (char *)fdt_data;
512 if (fdt_totalsize(fdt_blob) != fdt_len)
513 goto error;
6a7b406a 514
18b8f2c4
ER
515 debug("## Using FDT in Android image second area\n");
516 } else {
62392675
ER
517 fdt_addr = env_get_hex("fdtaddr", 0);
518 if (!fdt_addr)
519 goto no_fdt;
6a7b406a 520
62392675
ER
521 fdt_blob = map_sysmem(fdt_addr, 0);
522 if (fdt_check_header(fdt_blob))
523 goto no_fdt;
6a7b406a 524
62392675 525 debug("## Using FDT at ${fdtaddr}=Ox%lx\n", fdt_addr);
18b8f2c4 526 }
6a7b406a 527#endif
44d3a306
SG
528 } else {
529 debug("## No Flattened Device Tree\n");
48aead71 530 goto no_fdt;
44d3a306
SG
531 }
532
533 *of_flat_tree = fdt_blob;
534 *of_size = fdt_totalsize(fdt_blob);
535 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
536 (ulong)*of_flat_tree, *of_size);
537
538 return 0;
539
48aead71 540no_fdt:
80281829
ER
541 debug("Continuing to boot without FDT\n");
542 return 0;
44d3a306 543error:
44d3a306
SG
544 return 1;
545}
13d06981
SG
546
547/*
548 * Verify the device tree.
549 *
550 * This function is called after all device tree fix-ups have been enacted,
551 * so that the final device tree can be verified. The definition of "verified"
552 * is up to the specific implementation. However, it generally means that the
553 * addresses of some of the devices in the device tree are compared with the
554 * actual addresses at which U-Boot has placed them.
555 *
a187559e 556 * Returns 1 on success, 0 on failure. If 0 is returned, U-Boot will halt the
13d06981
SG
557 * boot process.
558 */
559__weak int ft_verify_fdt(void *fdt)
560{
561 return 1;
562}
563
4280342a
AB
564__weak int arch_fixup_fdt(void *blob)
565{
566 return 0;
567}
568
ed17a33f 569int image_setup_libfdt(struct bootm_headers *images, void *blob, bool lmb)
13d06981
SG
570{
571 ulong *initrd_start = &images->initrd_start;
572 ulong *initrd_end = &images->initrd_end;
e91d6607
MS
573 int ret, fdt_ret, of_size;
574
575 if (IS_ENABLED(CONFIG_OF_ENV_SETUP)) {
576 const char *fdt_fixup;
577
578 fdt_fixup = env_get("fdt_fixup");
579 if (fdt_fixup) {
580 set_working_fdt_addr(map_to_sysmem(blob));
581 ret = run_command_list(fdt_fixup, -1, 0);
582 if (ret)
583 printf("WARNING: fdt_fixup command returned %d\n",
584 ret);
585 }
586 }
587
588 ret = -EPERM;
13d06981 589
10be5b5d
PK
590 if (fdt_root(blob) < 0) {
591 printf("ERROR: root node setup failed\n");
592 goto err;
593 }
bc6ed0f9 594 if (fdt_chosen(blob) < 0) {
6f4dbc21
SG
595 printf("ERROR: /chosen node create failed\n");
596 goto err;
13d06981 597 }
e29607ed 598 if (arch_fixup_fdt(blob) < 0) {
6f4dbc21
SG
599 printf("ERROR: arch-specific fdt fixup failed\n");
600 goto err;
601 }
5f9070a4 602
a2535243 603 fdt_ret = optee_copy_fdt_nodes(blob);
5f9070a4
EC
604 if (fdt_ret) {
605 printf("ERROR: transfer of optee nodes to new fdt failed: %s\n",
606 fdt_strerror(fdt_ret));
607 goto err;
608 }
609
5f2d5915
DG
610 /* Store name of configuration node as u-boot,bootconf in /chosen node */
611 if (images->fit_uname_cfg)
612 fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf",
613 images->fit_uname_cfg,
614 strlen(images->fit_uname_cfg) + 1, 1);
615
26d61195
TR
616 /* Update ethernet nodes */
617 fdt_fixup_ethernet(blob);
39c0da41 618#if IS_ENABLED(CONFIG_CMD_PSTORE)
9ea0a1ee
FD
619 /* Append PStore configuration */
620 fdt_fixup_pstore(blob);
621#endif
30ba2828 622 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) {
402558b1
WK
623 const char *skip_board_fixup;
624
625 skip_board_fixup = env_get("skip_board_fixup");
626 if (skip_board_fixup && ((int)simple_strtol(skip_board_fixup, NULL, 10) == 1)) {
627 printf("skip board fdt fixup\n");
628 } else {
629 fdt_ret = ft_board_setup(blob, gd->bd);
630 if (fdt_ret) {
631 printf("ERROR: board-specific fdt fixup failed: %s\n",
632 fdt_strerror(fdt_ret));
633 goto err;
634 }
6f4dbc21 635 }
e29607ed 636 }
3ac0f504 637 if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) {
d89212b7
MK
638 fdt_ret = ft_system_setup(blob, gd->bd);
639 if (fdt_ret) {
c654b517
SG
640 printf("ERROR: system-specific fdt fixup failed: %s\n",
641 fdt_strerror(fdt_ret));
642 goto err;
643 }
644 }
f2cbe6e4
SG
645
646 if (fdt_initrd(blob, *initrd_start, *initrd_end))
647 goto err;
648
dbdc9c6a
SG
649 if (!ft_verify_fdt(blob))
650 goto err;
651
652 /* after here we are using a livetree */
33ba7270 653 if (!of_live_active() && CONFIG_IS_ENABLED(EVENT)) {
98887ab8
SG
654 struct event_ft_fixup fixup;
655
33ba7270 656 fixup.tree = oftree_from_fdt(blob);
b215b603 657 fixup.images = images;
33ba7270
SG
658 if (oftree_valid(fixup.tree)) {
659 ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup));
660 if (ret) {
661 printf("ERROR: fdt fixup event failed: %d\n",
662 ret);
663 goto err;
664 }
98887ab8
SG
665 }
666 }
13d06981
SG
667
668 /* Delete the old LMB reservation */
ed17a33f
SG
669 if (CONFIG_IS_ENABLED(LMB) && lmb)
670 lmb_free(map_to_sysmem(blob), fdt_totalsize(blob));
13d06981 671
ef476836 672 ret = fdt_shrink_to_minimum(blob, 0);
13d06981 673 if (ret < 0)
6f4dbc21 674 goto err;
13d06981
SG
675 of_size = ret;
676
13d06981 677 /* Create a new LMB reservation */
ed17a33f 678 if (CONFIG_IS_ENABLED(LMB) && lmb)
900a8951 679 lmb_reserve(map_to_sysmem(blob), of_size, LMB_NONE);
13d06981 680
f899cc14 681#if defined(CONFIG_ARCH_KEYSTONE)
30ba2828 682 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP))
00c200f1
VA
683 ft_board_setup_ex(blob, gd->bd);
684#endif
685
13d06981 686 return 0;
6f4dbc21
SG
687err:
688 printf(" - must RESET the board to recover.\n\n");
689
690 return ret;
13d06981 691}
This page took 0.568971 seconds and 5 git commands to generate.