blob: 2720ce6f6f37d255523a1db3024a6dd8b7c66db1 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc6bdabb2013-05-08 08:06:00 +00002/*
3 * Copyright (c) 2013, Google Inc.
4 *
5 * (C) Copyright 2008 Semihalf
6 *
7 * (C) Copyright 2000-2006
8 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
Simon Glassc6bdabb2013-05-08 08:06:00 +00009 */
10
Matthias Schiffere908fec2023-12-11 12:03:17 +010011#include <command.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000012#include <fdt_support.h>
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010013#include <fdtdec.h>
Sughosh Ganu8231d032025-03-17 14:04:02 +053014#include <efi.h>
Simon Glass83c2e492019-08-01 09:46:50 -060015#include <env.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000016#include <errno.h>
17#include <image.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060018#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060019#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070020#include <malloc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060021#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090022#include <linux/libfdt.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050023#include <mapmem.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000024#include <asm/io.h>
Simon Glass4305fe72022-07-30 15:52:31 -060025#include <dm/ofnode.h>
Heiko Stuebnerb1a4fa02019-10-23 16:46:40 +020026#include <tee/optee.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000027
Simon Glassc6bdabb2013-05-08 08:06:00 +000028DECLARE_GLOBAL_DATA_PTR;
29
30static void fdt_error(const char *msg)
31{
32 puts("ERROR: ");
33 puts(msg);
34 puts(" - must RESET the board to recover.\n");
35}
36
Tom Rinic220bd92019-05-23 07:14:07 -040037#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glassbb7d3bb2022-09-06 20:26:52 -060038static const struct legacy_img_hdr *image_get_fdt(ulong fdt_addr)
Simon Glassc6bdabb2013-05-08 08:06:00 +000039{
Simon Glassbb7d3bb2022-09-06 20:26:52 -060040 const struct legacy_img_hdr *fdt_hdr = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +000041
42 image_print_contents(fdt_hdr);
43
44 puts(" Verifying Checksum ... ");
45 if (!image_check_hcrc(fdt_hdr)) {
46 fdt_error("fdt header checksum invalid");
47 return NULL;
48 }
49
50 if (!image_check_dcrc(fdt_hdr)) {
51 fdt_error("fdt checksum invalid");
52 return NULL;
53 }
54 puts("OK\n");
55
56 if (!image_check_type(fdt_hdr, IH_TYPE_FLATDT)) {
57 fdt_error("uImage is not a fdt");
58 return NULL;
59 }
60 if (image_get_comp(fdt_hdr) != IH_COMP_NONE) {
61 fdt_error("uImage is compressed");
62 return NULL;
63 }
Masahiro Yamadabc2a07d2013-09-19 12:10:18 +090064 if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) {
Simon Glassc6bdabb2013-05-08 08:06:00 +000065 fdt_error("uImage data is not a fdt");
66 return NULL;
67 }
68 return fdt_hdr;
69}
Heiko Schocher515eb122014-05-28 11:33:33 +020070#endif
Simon Glassc6bdabb2013-05-08 08:06:00 +000071
Ilias Apalodimasd8462bf2024-12-18 09:02:31 +020072static void boot_fdt_reserve_region(u64 addr, u64 size, u32 flags)
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010073{
Patrick Delaunaydcd5aba2019-03-06 14:23:52 +010074 long ret;
Sughosh Ganu9b0765a2025-06-17 16:13:40 +053075 phys_addr_t rsv_addr;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010076
Sughosh Ganu9b0765a2025-06-17 16:13:40 +053077 rsv_addr = (phys_addr_t)addr;
78 ret = lmb_alloc_mem(LMB_MEM_ALLOC_ADDR, 0, &rsv_addr, size, flags);
Ilias Apalodimas98491252024-10-23 18:22:00 +030079 if (!ret) {
Patrick Delaunay4a4992b2021-05-07 14:50:33 +020080 debug(" reserving fdt memory region: addr=%llx size=%llx flags=%x\n",
81 (unsigned long long)addr,
82 (unsigned long long)size, flags);
Sughosh Ganu9b0765a2025-06-17 16:13:40 +053083 } else if (ret != -EEXIST && ret != -EINVAL) {
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010084 puts("ERROR: reserving fdt memory region failed ");
Patrick Delaunay4a4992b2021-05-07 14:50:33 +020085 printf("(addr=%llx size=%llx flags=%x)\n",
86 (unsigned long long)addr,
87 (unsigned long long)size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010088 }
89}
90
Simon Glassc6bdabb2013-05-08 08:06:00 +000091/**
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010092 * boot_fdt_add_mem_rsv_regions - Mark the memreserve and reserved-memory
93 * sections as unusable
Simon Glassc6bdabb2013-05-08 08:06:00 +000094 * @fdt_blob: pointer to fdt blob base address
95 *
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010096 * Adds the and reserved-memorymemreserve regions in the dtb to the lmb block.
97 * Adding the memreserve regions prevents u-boot from using them to store the
98 * initrd or the fdt blob.
Simon Glassc6bdabb2013-05-08 08:06:00 +000099 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530100void boot_fdt_add_mem_rsv_regions(void *fdt_blob)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000101{
102 uint64_t addr, size;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100103 int i, total, ret;
104 int nodeoffset, subnode;
105 struct fdt_resource res;
Ilias Apalodimasd8462bf2024-12-18 09:02:31 +0200106 u32 flags;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000107
108 if (fdt_check_header(fdt_blob) != 0)
109 return;
110
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100111 /* process memreserve sections */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000112 total = fdt_num_mem_rsv(fdt_blob);
113 for (i = 0; i < total; i++) {
114 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
115 continue;
Sughosh Ganu04ddcb32024-10-21 22:54:33 +0530116 boot_fdt_reserve_region(addr, size, LMB_NOOVERWRITE);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100117 }
118
119 /* process reserved-memory */
120 nodeoffset = fdt_subnode_offset(fdt_blob, 0, "reserved-memory");
121 if (nodeoffset >= 0) {
122 subnode = fdt_first_subnode(fdt_blob, nodeoffset);
123 while (subnode >= 0) {
124 /* check if this subnode has a reg property */
125 ret = fdt_get_resource(fdt_blob, subnode, "reg", 0,
126 &res);
Thirupathaiah Annapureddye6d6d142020-01-06 22:21:42 -0800127 if (!ret && fdtdec_get_is_enabled(fdt_blob, subnode)) {
Sughosh Ganu04ddcb32024-10-21 22:54:33 +0530128 flags = LMB_NOOVERWRITE;
Patrick Delaunay4a4992b2021-05-07 14:50:33 +0200129 if (fdtdec_get_bool(fdt_blob, subnode,
130 "no-map"))
131 flags = LMB_NOMAP;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100132 addr = res.start;
133 size = res.end - res.start + 1;
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530134 boot_fdt_reserve_region(addr, size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100135 }
136
137 subnode = fdt_next_subnode(fdt_blob, subnode);
138 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000139 }
140}
141
142/**
143 * boot_relocate_fdt - relocate flat device tree
Simon Glassc6bdabb2013-05-08 08:06:00 +0000144 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
145 * @of_size: pointer to a ulong variable, will hold fdt length
146 *
147 * boot_relocate_fdt() allocates a region of memory within the bootmap and
148 * relocates the of_flat_tree into that region, even if the fdt is already in
149 * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD
150 * bytes.
151 *
152 * of_flat_tree and of_size are set to final (after relocation) values
153 *
154 * returns:
155 * 0 - success
156 * 1 - failure
157 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530158int boot_relocate_fdt(char **of_flat_tree, ulong *of_size)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000159{
Sughosh Ganu9b0765a2025-06-17 16:13:40 +0530160 u64 start, size, usable, low, mapsize;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000161 void *fdt_blob = *of_flat_tree;
162 void *of_start = NULL;
163 char *fdt_high;
164 ulong of_len = 0;
Marek Vasut6de37b12022-04-08 02:09:19 +0200165 int bank;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000166 int err;
167 int disable_relocation = 0;
Sughosh Ganu9b0765a2025-06-17 16:13:40 +0530168 phys_addr_t addr;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000169
170 /* nothing to do */
171 if (*of_size == 0)
172 return 0;
173
174 if (fdt_check_header(fdt_blob) != 0) {
175 fdt_error("image is not a fdt");
176 goto error;
177 }
178
179 /* position on a 4K boundary before the alloc_current */
180 /* Pad the FDT by a specified amount */
181 of_len = *of_size + CONFIG_SYS_FDT_PAD;
182
183 /* If fdt_high is set use it to select the relocation address */
Simon Glass64b723f2017-08-03 12:22:12 -0600184 fdt_high = env_get("fdt_high");
Simon Glassc6bdabb2013-05-08 08:06:00 +0000185 if (fdt_high) {
Sughosh Ganu7bdfe122025-06-17 16:13:41 +0530186 ulong high_addr = hextoul(fdt_high, NULL);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000187
Sughosh Ganu7bdfe122025-06-17 16:13:41 +0530188 if (high_addr == ~0UL) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000189 /* All ones means use fdt in place */
190 of_start = fdt_blob;
Sughosh Ganu9b0765a2025-06-17 16:13:40 +0530191 addr = map_to_sysmem(fdt_blob);
192 err = lmb_alloc_mem(LMB_MEM_ALLOC_ADDR, 0, &addr,
193 of_len, LMB_NONE);
194 if (err) {
195 printf("Failed to reserve memory for fdt at %#llx\n",
196 (u64)addr);
197 goto error;
198 }
199
Simon Glassc6bdabb2013-05-08 08:06:00 +0000200 disable_relocation = 1;
Sughosh Ganu7bdfe122025-06-17 16:13:41 +0530201 } else {
202 enum lmb_mem_type type = high_addr ?
203 LMB_MEM_ALLOC_MAX : LMB_MEM_ALLOC_ANY;
204
205 addr = high_addr;
206 err = lmb_alloc_mem(type, 0x1000, &addr, of_len,
207 LMB_NONE);
208 if (err) {
209 puts("Failed to allocate memory for Device Tree relocation\n");
Simon Glassc6bdabb2013-05-08 08:06:00 +0000210 goto error;
211 }
Simon Glass8169ece2022-10-11 09:47:10 -0600212 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000213 }
214 } else {
Marek Vasut6de37b12022-04-08 02:09:19 +0200215 mapsize = env_get_bootm_mapsize();
216 low = env_get_bootm_low();
217 of_start = NULL;
218
219 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
220 start = gd->bd->bi_dram[bank].start;
221 size = gd->bd->bi_dram[bank].size;
222
223 /* DRAM bank addresses are too low, skip it. */
224 if (start + size < low)
225 continue;
226
Marek Vasut6de37b12022-04-08 02:09:19 +0200227 /*
228 * At least part of this DRAM bank is usable, try
Marek Vasute9748b22024-03-26 23:13:16 +0100229 * using the DRAM bank up to 'usable' address limit
230 * for LMB allocation.
Marek Vasut6de37b12022-04-08 02:09:19 +0200231 */
Marek Vasute9748b22024-03-26 23:13:16 +0100232 usable = min(start + size, low + mapsize);
Sughosh Ganu7bdfe122025-06-17 16:13:41 +0530233 addr = usable;
234 err = lmb_alloc_mem(LMB_MEM_ALLOC_MAX, 0x1000,
235 &addr, of_len, LMB_NONE);
236 if (!err) {
237 of_start = map_sysmem(addr, of_len);
238 /* Allocation succeeded, use this block. */
239 if (of_start)
240 break;
241 }
Marek Vasut6de37b12022-04-08 02:09:19 +0200242
243 /*
244 * Reduce the mapping size in the next bank
245 * by the size of attempt in current bank.
246 */
Marek Vasutf816c422024-03-26 23:13:11 +0100247 mapsize -= usable - max(start, low);
Marek Vasut6de37b12022-04-08 02:09:19 +0200248 if (!mapsize)
249 break;
250 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000251 }
252
253 if (of_start == NULL) {
254 puts("device tree - allocation error\n");
255 goto error;
256 }
257
258 if (disable_relocation) {
259 /*
260 * We assume there is space after the existing fdt to use
261 * for padding
262 */
263 fdt_set_totalsize(of_start, of_len);
264 printf(" Using Device Tree in place at %p, end %p\n",
265 of_start, of_start + of_len - 1);
266 } else {
267 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
268 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
269
270 printf(" Loading Device Tree to %p, end %p ... ",
271 of_start, of_start + of_len - 1);
272
273 err = fdt_open_into(fdt_blob, of_start, of_len);
274 if (err != 0) {
275 fdt_error("fdt move failed");
276 goto error;
277 }
278 puts("OK\n");
279 }
280
281 *of_flat_tree = of_start;
282 *of_size = of_len;
283
Simon Glasse2d49d92023-02-05 15:36:30 -0700284 if (IS_ENABLED(CONFIG_CMD_FDT))
Simon Goldschmidt6127ac02018-12-17 20:14:42 +0100285 set_working_fdt_addr(map_to_sysmem(*of_flat_tree));
Simon Glassc6bdabb2013-05-08 08:06:00 +0000286 return 0;
287
288error:
289 return 1;
290}
291
Simon Glassc6bdabb2013-05-08 08:06:00 +0000292/**
Simon Glass8a876e42021-09-25 19:43:41 -0600293 * select_fdt() - Select and locate the FDT to use
Simon Glassc6bdabb2013-05-08 08:06:00 +0000294 *
Simon Glass8a876e42021-09-25 19:43:41 -0600295 * @images: pointer to the bootm images structure
296 * @select: name of FDT to select, or NULL for any
297 * @arch: expected FDT architecture
298 * @fdt_addrp: pointer to a ulong variable, will hold FDT pointer
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100299 * Return: 0 if OK, -ENOPKG if no FDT (but an error should not be reported),
Simon Glass8a876e42021-09-25 19:43:41 -0600300 * other -ve value on other error
Simon Glassc6bdabb2013-05-08 08:06:00 +0000301 */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000302
Simon Glassdf00afa2022-09-06 20:26:50 -0600303static int select_fdt(struct bootm_headers *images, const char *select, u8 arch,
Simon Glass8a876e42021-09-25 19:43:41 -0600304 ulong *fdt_addrp)
305{
306 const char *buf;
307 ulong fdt_addr;
Shawn Guoc9e71522019-01-15 22:26:37 +0800308
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700309#if CONFIG_IS_ENABLED(FIT)
Simon Glass8a876e42021-09-25 19:43:41 -0600310 const char *fit_uname_config = images->fit_uname_cfg;
311 const char *fit_uname_fdt = NULL;
312 ulong default_addr;
313 int fdt_noffset;
Simon Glass3afbb602021-09-25 19:43:40 -0600314
Simon Glass8a876e42021-09-25 19:43:41 -0600315 if (select) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000316 /*
317 * If the FDT blob comes from the FIT image and the
318 * FIT image address is omitted in the command line
319 * argument, try to use ramdisk or os FIT image
320 * address or default load address.
321 */
322 if (images->fit_uname_rd)
323 default_addr = (ulong)images->fit_hdr_rd;
324 else if (images->fit_uname_os)
325 default_addr = (ulong)images->fit_hdr_os;
326 else
Simon Glass892265d2019-12-28 10:45:02 -0700327 default_addr = image_load_addr;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000328
Simon Glass8a876e42021-09-25 19:43:41 -0600329 if (fit_parse_conf(select, default_addr, &fdt_addr,
330 &fit_uname_config)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000331 debug("* fdt: config '%s' from image at 0x%08lx\n",
332 fit_uname_config, fdt_addr);
Simon Glass8a876e42021-09-25 19:43:41 -0600333 } else if (fit_parse_subimage(select, default_addr, &fdt_addr,
334 &fit_uname_fdt)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000335 debug("* fdt: subimage '%s' from image at 0x%08lx\n",
336 fit_uname_fdt, fdt_addr);
337 } else
338#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600339 {
340 fdt_addr = hextoul(select, NULL);
341 debug("* fdt: cmdline image address = 0x%08lx\n",
342 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000343 }
Simon Glass8a876e42021-09-25 19:43:41 -0600344#if CONFIG_IS_ENABLED(FIT)
345 } else {
346 /* use FIT configuration provided in first bootm
347 * command argument
348 */
349 fdt_addr = map_to_sysmem(images->fit_hdr_os);
350 fdt_noffset = fit_get_node_from_config(images, FIT_FDT_PROP,
351 fdt_addr);
352 if (fdt_noffset == -ENOENT)
353 return -ENOPKG;
354 else if (fdt_noffset < 0)
355 return fdt_noffset;
356 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000357#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600358 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
359 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000360
Simon Glass8a876e42021-09-25 19:43:41 -0600361 /*
362 * Check if there is an FDT image at the
363 * address provided in the second bootm argument
364 * check image type, for FIT images get a FIT node.
365 */
366 buf = map_sysmem(fdt_addr, 0);
367 switch (genimg_get_format(buf)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400368#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass8a876e42021-09-25 19:43:41 -0600369 case IMAGE_FORMAT_LEGACY: {
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600370 const struct legacy_img_hdr *fdt_hdr;
Simon Glass3afbb602021-09-25 19:43:40 -0600371 ulong load, load_end;
372 ulong image_start, image_data, image_end;
373
Simon Glassc6bdabb2013-05-08 08:06:00 +0000374 /* verify fdt_addr points to a valid image header */
375 printf("## Flattened Device Tree from Legacy Image at %08lx\n",
376 fdt_addr);
377 fdt_hdr = image_get_fdt(fdt_addr);
378 if (!fdt_hdr)
Simon Glass8a876e42021-09-25 19:43:41 -0600379 return -ENOPKG;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000380
381 /*
382 * move image data to the load address,
383 * make sure we don't overwrite initial image
384 */
385 image_start = (ulong)fdt_hdr;
386 image_data = (ulong)image_get_data(fdt_hdr);
387 image_end = image_get_image_end(fdt_hdr);
388
Simon Glassb1b79922013-05-16 13:53:23 +0000389 load = image_get_load(fdt_hdr);
390 load_end = load + image_get_data_size(fdt_hdr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000391
Simon Glassb1b79922013-05-16 13:53:23 +0000392 if (load == image_start ||
393 load == image_data) {
Peng Fanab80a112015-11-24 16:54:22 +0800394 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000395 break;
396 }
397
Simon Glassb1b79922013-05-16 13:53:23 +0000398 if ((load < image_end) && (load_end > image_start)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000399 fdt_error("fdt overwritten");
Simon Glass8a876e42021-09-25 19:43:41 -0600400 return -EFAULT;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000401 }
402
403 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
Simon Glassb1b79922013-05-16 13:53:23 +0000404 image_data, load);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000405
Simon Glassb1b79922013-05-16 13:53:23 +0000406 memmove((void *)load,
Simon Glassc6bdabb2013-05-08 08:06:00 +0000407 (void *)image_data,
408 image_get_data_size(fdt_hdr));
409
Simon Glassb1b79922013-05-16 13:53:23 +0000410 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000411 break;
Simon Glass3afbb602021-09-25 19:43:40 -0600412 }
Heiko Schocher515eb122014-05-28 11:33:33 +0200413#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600414 case IMAGE_FORMAT_FIT:
415 /*
416 * This case will catch both: new uImage format
417 * (libfdt based) and raw FDT blob (also libfdt
418 * based).
419 */
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700420#if CONFIG_IS_ENABLED(FIT)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000421 /* check FDT blob vs FIT blob */
Simon Glassd563c252021-02-15 17:08:09 -0700422 if (!fit_check_format(buf, IMAGE_SIZE_INVAL)) {
Simon Glassb1b79922013-05-16 13:53:23 +0000423 ulong load, len;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000424
Simon Glass8a876e42021-09-25 19:43:41 -0600425 fdt_noffset = boot_get_fdt_fit(images, fdt_addr,
426 &fit_uname_fdt,
427 &fit_uname_config,
428 arch, &load, &len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000429
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500430 if (fdt_noffset < 0)
Simon Glass8a876e42021-09-25 19:43:41 -0600431 return -ENOENT;
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500432
Simon Glassb1b79922013-05-16 13:53:23 +0000433 images->fit_hdr_fdt = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000434 images->fit_uname_fdt = fit_uname_fdt;
435 images->fit_noffset_fdt = fdt_noffset;
Simon Glassb1b79922013-05-16 13:53:23 +0000436 fdt_addr = load;
Pantelis Antoniou6e51fb22017-09-04 23:12:16 +0300437
Simon Glassc6bdabb2013-05-08 08:06:00 +0000438 break;
Simon Glass8a876e42021-09-25 19:43:41 -0600439 } else
Simon Glassc6bdabb2013-05-08 08:06:00 +0000440#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600441 {
442 /*
443 * FDT blob
444 */
445 debug("* fdt: raw FDT blob\n");
446 printf("## Flattened Device Tree blob at %08lx\n",
447 (long)fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000448 }
Simon Glass8a876e42021-09-25 19:43:41 -0600449 break;
450 default:
451 puts("ERROR: Did not find a cmdline Flattened Device Tree\n");
452 return -ENOENT;
453 }
454 *fdt_addrp = fdt_addr;
455
456 return 0;
457}
458
Simon Glassdb125e02023-11-18 14:05:10 -0700459int boot_get_fdt(void *buf, const char *select, uint arch,
Simon Glassaf2c72c2023-11-18 14:05:09 -0700460 struct bootm_headers *images, char **of_flat_tree,
461 ulong *of_size)
Simon Glass8a876e42021-09-25 19:43:41 -0600462{
Simon Glassdb125e02023-11-18 14:05:10 -0700463 char *fdt_blob = NULL;
464 ulong fdt_addr;
Simon Glass8a876e42021-09-25 19:43:41 -0600465
466 *of_flat_tree = NULL;
467 *of_size = 0;
468
Simon Glass8a876e42021-09-25 19:43:41 -0600469 if (select || genimg_has_config(images)) {
470 int ret;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000471
Simon Glass8a876e42021-09-25 19:43:41 -0600472 ret = select_fdt(images, select, arch, &fdt_addr);
473 if (ret == -ENOPKG)
474 goto no_fdt;
475 else if (ret)
476 return 1;
Simon Glassb1b79922013-05-16 13:53:23 +0000477 printf(" Booting using the fdt blob at %#08lx\n", fdt_addr);
478 fdt_blob = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000479 } else if (images->legacy_hdr_valid &&
480 image_check_type(&images->legacy_hdr_os_copy,
481 IH_TYPE_MULTI)) {
482 ulong fdt_data, fdt_len;
483
484 /*
485 * Now check if we have a legacy multi-component image,
486 * get second entry data start address and len.
487 */
488 printf("## Flattened Device Tree from multi component Image at %08lX\n",
489 (ulong)images->legacy_hdr_os);
490
491 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
492 &fdt_len);
493 if (fdt_len) {
494 fdt_blob = (char *)fdt_data;
495 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
496
497 if (fdt_check_header(fdt_blob) != 0) {
498 fdt_error("image is not a fdt");
499 goto error;
500 }
501
502 if (fdt_totalsize(fdt_blob) != fdt_len) {
503 fdt_error("fdt size != image size");
504 goto error;
505 }
506 } else {
507 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800508 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000509 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800510#ifdef CONFIG_ANDROID_BOOT_IMAGE
511 } else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
Safae Ouajih51c981b2023-02-06 00:50:17 +0100512 void *hdr = buf;
chenshuo1c7d9042020-07-20 08:48:15 +0800513 ulong fdt_data, fdt_len;
514 u32 fdt_size, dtb_idx;
515 /*
516 * Firstly check if this android boot image has dtb field.
517 */
518 dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
Mattijs Korpershoek2b5c70a2024-07-10 10:40:02 +0200519 if (android_image_get_dtb_by_index((ulong)hdr, get_avendor_bootimg_addr(),
Safae Ouajihc60ae102023-02-06 00:50:11 +0100520 dtb_idx, &fdt_addr, &fdt_size)) {
chenshuo1c7d9042020-07-20 08:48:15 +0800521 fdt_blob = (char *)map_sysmem(fdt_addr, 0);
522 if (fdt_check_header(fdt_blob))
523 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800524
chenshuo1c7d9042020-07-20 08:48:15 +0800525 debug("## Using FDT in Android image dtb area with idx %u\n", dtb_idx);
526 } else if (!android_image_get_second(hdr, &fdt_data, &fdt_len) &&
527 !fdt_check_header((char *)fdt_data)) {
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200528 fdt_blob = (char *)fdt_data;
529 if (fdt_totalsize(fdt_blob) != fdt_len)
530 goto error;
Shawn Guoc9e71522019-01-15 22:26:37 +0800531
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200532 debug("## Using FDT in Android image second area\n");
533 } else {
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200534 fdt_addr = env_get_hex("fdtaddr", 0);
535 if (!fdt_addr)
536 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800537
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200538 fdt_blob = map_sysmem(fdt_addr, 0);
539 if (fdt_check_header(fdt_blob))
540 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800541
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200542 debug("## Using FDT at ${fdtaddr}=Ox%lx\n", fdt_addr);
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200543 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800544#endif
Simon Glassc6bdabb2013-05-08 08:06:00 +0000545 } else {
546 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800547 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000548 }
549
550 *of_flat_tree = fdt_blob;
551 *of_size = fdt_totalsize(fdt_blob);
552 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
553 (ulong)*of_flat_tree, *of_size);
554
555 return 0;
556
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800557no_fdt:
Eugeniu Roscaa7da5022019-04-01 12:45:35 +0200558 debug("Continuing to boot without FDT\n");
559 return 0;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000560error:
Simon Glassc6bdabb2013-05-08 08:06:00 +0000561 return 1;
562}
Simon Glass9ca37422013-05-08 08:06:01 +0000563
564/*
565 * Verify the device tree.
566 *
567 * This function is called after all device tree fix-ups have been enacted,
568 * so that the final device tree can be verified. The definition of "verified"
569 * is up to the specific implementation. However, it generally means that the
570 * addresses of some of the devices in the device tree are compared with the
571 * actual addresses at which U-Boot has placed them.
572 *
Bin Meng75574052016-02-05 19:30:11 -0800573 * Returns 1 on success, 0 on failure. If 0 is returned, U-Boot will halt the
Simon Glass9ca37422013-05-08 08:06:01 +0000574 * boot process.
575 */
576__weak int ft_verify_fdt(void *fdt)
577{
578 return 1;
579}
580
Alexey Brodkin91a31592018-01-24 20:47:09 +0300581__weak int arch_fixup_fdt(void *blob)
582{
583 return 0;
584}
585
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530586int image_setup_libfdt(struct bootm_headers *images, void *blob, bool lmb)
Simon Glass9ca37422013-05-08 08:06:01 +0000587{
588 ulong *initrd_start = &images->initrd_start;
589 ulong *initrd_end = &images->initrd_end;
Matthias Schiffere908fec2023-12-11 12:03:17 +0100590 int ret, fdt_ret, of_size;
591
592 if (IS_ENABLED(CONFIG_OF_ENV_SETUP)) {
593 const char *fdt_fixup;
594
595 fdt_fixup = env_get("fdt_fixup");
596 if (fdt_fixup) {
597 set_working_fdt_addr(map_to_sysmem(blob));
598 ret = run_command_list(fdt_fixup, -1, 0);
599 if (ret)
600 printf("WARNING: fdt_fixup command returned %d\n",
601 ret);
602 }
603 }
604
605 ret = -EPERM;
Simon Glass9ca37422013-05-08 08:06:01 +0000606
Paul Kocialkowski2c0fbc72015-05-21 11:27:03 +0200607 if (fdt_root(blob) < 0) {
608 printf("ERROR: root node setup failed\n");
609 goto err;
610 }
Masahiro Yamada451c2042014-04-18 17:41:00 +0900611 if (fdt_chosen(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600612 printf("ERROR: /chosen node create failed\n");
613 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000614 }
Ma Haijun62358242014-07-12 14:24:06 +0100615 if (arch_fixup_fdt(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600616 printf("ERROR: arch-specific fdt fixup failed\n");
617 goto err;
Ma Haijun62358242014-07-12 14:24:06 +0100618 }
Etienne Carriere2502e292020-06-05 09:22:54 +0200619
Patrick Delaunay05381402021-02-08 13:54:31 +0100620 fdt_ret = optee_copy_fdt_nodes(blob);
Etienne Carriere2502e292020-06-05 09:22:54 +0200621 if (fdt_ret) {
622 printf("ERROR: transfer of optee nodes to new fdt failed: %s\n",
623 fdt_strerror(fdt_ret));
624 goto err;
625 }
626
Daniel Gollec5df3e22022-04-12 21:00:43 +0100627 /* Store name of configuration node as u-boot,bootconf in /chosen node */
628 if (images->fit_uname_cfg)
629 fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf",
630 images->fit_uname_cfg,
631 strlen(images->fit_uname_cfg) + 1, 1);
632
Tom Rini78548ea2017-04-28 08:51:44 -0400633 /* Update ethernet nodes */
634 fdt_fixup_ethernet(blob);
Simon Glassdb5d0d22023-02-05 15:36:38 -0700635#if IS_ENABLED(CONFIG_CMD_PSTORE)
Frédéric Daniscdd6a6d2020-03-20 10:59:24 +0100636 /* Append PStore configuration */
637 fdt_fixup_pstore(blob);
638#endif
Simon Glassd49049f2021-09-25 19:43:26 -0600639 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) {
Wasim Khan6e5aad82021-02-04 15:44:04 +0100640 const char *skip_board_fixup;
641
642 skip_board_fixup = env_get("skip_board_fixup");
643 if (skip_board_fixup && ((int)simple_strtol(skip_board_fixup, NULL, 10) == 1)) {
644 printf("skip board fdt fixup\n");
645 } else {
646 fdt_ret = ft_board_setup(blob, gd->bd);
647 if (fdt_ret) {
648 printf("ERROR: board-specific fdt fixup failed: %s\n",
649 fdt_strerror(fdt_ret));
650 goto err;
651 }
Simon Glassf3dd50b2014-10-23 18:58:53 -0600652 }
653 }
Simon Glass336b9c72021-09-25 19:43:27 -0600654 if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) {
Max Krummenacher17585f22015-08-05 17:17:03 +0200655 fdt_ret = ft_system_setup(blob, gd->bd);
656 if (fdt_ret) {
Simon Glass6c0be912014-10-23 18:58:54 -0600657 printf("ERROR: system-specific fdt fixup failed: %s\n",
658 fdt_strerror(fdt_ret));
659 goto err;
660 }
661 }
Simon Glass449b7592023-11-12 08:27:48 -0700662
663 if (fdt_initrd(blob, *initrd_start, *initrd_end))
664 goto err;
665
Simon Glass80968942023-11-12 08:27:50 -0700666 if (!ft_verify_fdt(blob))
667 goto err;
668
Sughosh Ganu8231d032025-03-17 14:04:02 +0530669 if (CONFIG_IS_ENABLED(BLKMAP) && CONFIG_IS_ENABLED(EFI_LOADER)) {
670 fdt_ret = fdt_efi_pmem_setup(blob);
671 if (fdt_ret)
672 goto err;
673 }
674
Simon Glass80968942023-11-12 08:27:50 -0700675 /* after here we are using a livetree */
Simon Glassf4ff7032022-10-11 09:47:15 -0600676 if (!of_live_active() && CONFIG_IS_ENABLED(EVENT)) {
Simon Glass4305fe72022-07-30 15:52:31 -0600677 struct event_ft_fixup fixup;
678
Simon Glassf4ff7032022-10-11 09:47:15 -0600679 fixup.tree = oftree_from_fdt(blob);
Simon Glass74ba8e62022-09-06 20:26:58 -0600680 fixup.images = images;
Simon Glassf4ff7032022-10-11 09:47:15 -0600681 if (oftree_valid(fixup.tree)) {
682 ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup));
683 if (ret) {
684 printf("ERROR: fdt fixup event failed: %d\n",
685 ret);
686 goto err;
687 }
Simon Glass4305fe72022-07-30 15:52:31 -0600688 }
689 }
Simon Glass9ca37422013-05-08 08:06:01 +0000690
691 /* Delete the old LMB reservation */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530692 if (CONFIG_IS_ENABLED(LMB) && lmb)
693 lmb_free(map_to_sysmem(blob), fdt_totalsize(blob));
Simon Glass9ca37422013-05-08 08:06:01 +0000694
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200695 ret = fdt_shrink_to_minimum(blob, 0);
Simon Glass9ca37422013-05-08 08:06:01 +0000696 if (ret < 0)
Simon Glassf3dd50b2014-10-23 18:58:53 -0600697 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000698 of_size = ret;
699
Simon Glass9ca37422013-05-08 08:06:01 +0000700 /* Create a new LMB reservation */
Sughosh Ganu9b0765a2025-06-17 16:13:40 +0530701 if (CONFIG_IS_ENABLED(LMB) && lmb) {
702 phys_addr_t fdt_addr;
703
704 fdt_addr = map_to_sysmem(blob);
705 ret = lmb_alloc_mem(LMB_MEM_ALLOC_ADDR, 0, &fdt_addr,
706 of_size, LMB_NONE);
707 if (ret) {
708 printf("Failed to reserve memory for the fdt at %#llx\n",
709 (u64)fdt_addr);
710 }
711 }
Simon Glass9ca37422013-05-08 08:06:01 +0000712
Tom Rini84c0f692021-09-12 20:32:32 -0400713#if defined(CONFIG_ARCH_KEYSTONE)
Simon Glassd49049f2021-09-25 19:43:26 -0600714 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP))
Vitaly Andrianova122cbb2014-04-04 13:16:47 -0400715 ft_board_setup_ex(blob, gd->bd);
716#endif
717
Simon Glass9ca37422013-05-08 08:06:01 +0000718 return 0;
Simon Glassf3dd50b2014-10-23 18:58:53 -0600719err:
720 printf(" - must RESET the board to recover.\n\n");
721
722 return ret;
Simon Glass9ca37422013-05-08 08:06:01 +0000723}