blob: bd5a6231140bf74de1a51eb6c968c98dbc00d27e [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) {
Simon Glass8169ece2022-10-11 09:47:10 -0600186 ulong desired_addr = hextoul(fdt_high, NULL);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000187
Simon Glass8169ece2022-10-11 09:47:10 -0600188 if (desired_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;
201 } else if (desired_addr) {
Ilias Apalodimasd1e9a262024-12-18 09:02:36 +0200202 addr = lmb_alloc_base(of_len, 0x1000, desired_addr,
203 LMB_NONE);
Simon Glass8169ece2022-10-11 09:47:10 -0600204 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000205 if (of_start == NULL) {
206 puts("Failed using fdt_high value for Device Tree");
207 goto error;
208 }
209 } else {
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530210 addr = lmb_alloc(of_len, 0x1000);
Simon Glass8169ece2022-10-11 09:47:10 -0600211 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000212 }
213 } else {
Marek Vasut6de37b12022-04-08 02:09:19 +0200214 mapsize = env_get_bootm_mapsize();
215 low = env_get_bootm_low();
216 of_start = NULL;
217
218 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
219 start = gd->bd->bi_dram[bank].start;
220 size = gd->bd->bi_dram[bank].size;
221
222 /* DRAM bank addresses are too low, skip it. */
223 if (start + size < low)
224 continue;
225
Marek Vasut6de37b12022-04-08 02:09:19 +0200226 /*
227 * At least part of this DRAM bank is usable, try
Marek Vasute9748b22024-03-26 23:13:16 +0100228 * using the DRAM bank up to 'usable' address limit
229 * for LMB allocation.
Marek Vasut6de37b12022-04-08 02:09:19 +0200230 */
Marek Vasute9748b22024-03-26 23:13:16 +0100231 usable = min(start + size, low + mapsize);
Ilias Apalodimasd1e9a262024-12-18 09:02:36 +0200232 addr = lmb_alloc_base(of_len, 0x1000, usable, LMB_NONE);
Marek Vasute4530ca2024-03-26 23:13:15 +0100233 of_start = map_sysmem(addr, of_len);
Marek Vasut6de37b12022-04-08 02:09:19 +0200234 /* Allocation succeeded, use this block. */
235 if (of_start != NULL)
236 break;
237
238 /*
239 * Reduce the mapping size in the next bank
240 * by the size of attempt in current bank.
241 */
Marek Vasutf816c422024-03-26 23:13:11 +0100242 mapsize -= usable - max(start, low);
Marek Vasut6de37b12022-04-08 02:09:19 +0200243 if (!mapsize)
244 break;
245 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000246 }
247
248 if (of_start == NULL) {
249 puts("device tree - allocation error\n");
250 goto error;
251 }
252
253 if (disable_relocation) {
254 /*
255 * We assume there is space after the existing fdt to use
256 * for padding
257 */
258 fdt_set_totalsize(of_start, of_len);
259 printf(" Using Device Tree in place at %p, end %p\n",
260 of_start, of_start + of_len - 1);
261 } else {
262 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
263 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
264
265 printf(" Loading Device Tree to %p, end %p ... ",
266 of_start, of_start + of_len - 1);
267
268 err = fdt_open_into(fdt_blob, of_start, of_len);
269 if (err != 0) {
270 fdt_error("fdt move failed");
271 goto error;
272 }
273 puts("OK\n");
274 }
275
276 *of_flat_tree = of_start;
277 *of_size = of_len;
278
Simon Glasse2d49d92023-02-05 15:36:30 -0700279 if (IS_ENABLED(CONFIG_CMD_FDT))
Simon Goldschmidt6127ac02018-12-17 20:14:42 +0100280 set_working_fdt_addr(map_to_sysmem(*of_flat_tree));
Simon Glassc6bdabb2013-05-08 08:06:00 +0000281 return 0;
282
283error:
284 return 1;
285}
286
Simon Glassc6bdabb2013-05-08 08:06:00 +0000287/**
Simon Glass8a876e42021-09-25 19:43:41 -0600288 * select_fdt() - Select and locate the FDT to use
Simon Glassc6bdabb2013-05-08 08:06:00 +0000289 *
Simon Glass8a876e42021-09-25 19:43:41 -0600290 * @images: pointer to the bootm images structure
291 * @select: name of FDT to select, or NULL for any
292 * @arch: expected FDT architecture
293 * @fdt_addrp: pointer to a ulong variable, will hold FDT pointer
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100294 * Return: 0 if OK, -ENOPKG if no FDT (but an error should not be reported),
Simon Glass8a876e42021-09-25 19:43:41 -0600295 * other -ve value on other error
Simon Glassc6bdabb2013-05-08 08:06:00 +0000296 */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000297
Simon Glassdf00afa2022-09-06 20:26:50 -0600298static int select_fdt(struct bootm_headers *images, const char *select, u8 arch,
Simon Glass8a876e42021-09-25 19:43:41 -0600299 ulong *fdt_addrp)
300{
301 const char *buf;
302 ulong fdt_addr;
Shawn Guoc9e71522019-01-15 22:26:37 +0800303
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700304#if CONFIG_IS_ENABLED(FIT)
Simon Glass8a876e42021-09-25 19:43:41 -0600305 const char *fit_uname_config = images->fit_uname_cfg;
306 const char *fit_uname_fdt = NULL;
307 ulong default_addr;
308 int fdt_noffset;
Simon Glass3afbb602021-09-25 19:43:40 -0600309
Simon Glass8a876e42021-09-25 19:43:41 -0600310 if (select) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000311 /*
312 * If the FDT blob comes from the FIT image and the
313 * FIT image address is omitted in the command line
314 * argument, try to use ramdisk or os FIT image
315 * address or default load address.
316 */
317 if (images->fit_uname_rd)
318 default_addr = (ulong)images->fit_hdr_rd;
319 else if (images->fit_uname_os)
320 default_addr = (ulong)images->fit_hdr_os;
321 else
Simon Glass892265d2019-12-28 10:45:02 -0700322 default_addr = image_load_addr;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000323
Simon Glass8a876e42021-09-25 19:43:41 -0600324 if (fit_parse_conf(select, default_addr, &fdt_addr,
325 &fit_uname_config)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000326 debug("* fdt: config '%s' from image at 0x%08lx\n",
327 fit_uname_config, fdt_addr);
Simon Glass8a876e42021-09-25 19:43:41 -0600328 } else if (fit_parse_subimage(select, default_addr, &fdt_addr,
329 &fit_uname_fdt)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000330 debug("* fdt: subimage '%s' from image at 0x%08lx\n",
331 fit_uname_fdt, fdt_addr);
332 } else
333#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600334 {
335 fdt_addr = hextoul(select, NULL);
336 debug("* fdt: cmdline image address = 0x%08lx\n",
337 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000338 }
Simon Glass8a876e42021-09-25 19:43:41 -0600339#if CONFIG_IS_ENABLED(FIT)
340 } else {
341 /* use FIT configuration provided in first bootm
342 * command argument
343 */
344 fdt_addr = map_to_sysmem(images->fit_hdr_os);
345 fdt_noffset = fit_get_node_from_config(images, FIT_FDT_PROP,
346 fdt_addr);
347 if (fdt_noffset == -ENOENT)
348 return -ENOPKG;
349 else if (fdt_noffset < 0)
350 return fdt_noffset;
351 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000352#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600353 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
354 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000355
Simon Glass8a876e42021-09-25 19:43:41 -0600356 /*
357 * Check if there is an FDT image at the
358 * address provided in the second bootm argument
359 * check image type, for FIT images get a FIT node.
360 */
361 buf = map_sysmem(fdt_addr, 0);
362 switch (genimg_get_format(buf)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400363#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass8a876e42021-09-25 19:43:41 -0600364 case IMAGE_FORMAT_LEGACY: {
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600365 const struct legacy_img_hdr *fdt_hdr;
Simon Glass3afbb602021-09-25 19:43:40 -0600366 ulong load, load_end;
367 ulong image_start, image_data, image_end;
368
Simon Glassc6bdabb2013-05-08 08:06:00 +0000369 /* verify fdt_addr points to a valid image header */
370 printf("## Flattened Device Tree from Legacy Image at %08lx\n",
371 fdt_addr);
372 fdt_hdr = image_get_fdt(fdt_addr);
373 if (!fdt_hdr)
Simon Glass8a876e42021-09-25 19:43:41 -0600374 return -ENOPKG;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000375
376 /*
377 * move image data to the load address,
378 * make sure we don't overwrite initial image
379 */
380 image_start = (ulong)fdt_hdr;
381 image_data = (ulong)image_get_data(fdt_hdr);
382 image_end = image_get_image_end(fdt_hdr);
383
Simon Glassb1b79922013-05-16 13:53:23 +0000384 load = image_get_load(fdt_hdr);
385 load_end = load + image_get_data_size(fdt_hdr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000386
Simon Glassb1b79922013-05-16 13:53:23 +0000387 if (load == image_start ||
388 load == image_data) {
Peng Fanab80a112015-11-24 16:54:22 +0800389 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000390 break;
391 }
392
Simon Glassb1b79922013-05-16 13:53:23 +0000393 if ((load < image_end) && (load_end > image_start)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000394 fdt_error("fdt overwritten");
Simon Glass8a876e42021-09-25 19:43:41 -0600395 return -EFAULT;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000396 }
397
398 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
Simon Glassb1b79922013-05-16 13:53:23 +0000399 image_data, load);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000400
Simon Glassb1b79922013-05-16 13:53:23 +0000401 memmove((void *)load,
Simon Glassc6bdabb2013-05-08 08:06:00 +0000402 (void *)image_data,
403 image_get_data_size(fdt_hdr));
404
Simon Glassb1b79922013-05-16 13:53:23 +0000405 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000406 break;
Simon Glass3afbb602021-09-25 19:43:40 -0600407 }
Heiko Schocher515eb122014-05-28 11:33:33 +0200408#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600409 case IMAGE_FORMAT_FIT:
410 /*
411 * This case will catch both: new uImage format
412 * (libfdt based) and raw FDT blob (also libfdt
413 * based).
414 */
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700415#if CONFIG_IS_ENABLED(FIT)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000416 /* check FDT blob vs FIT blob */
Simon Glassd563c252021-02-15 17:08:09 -0700417 if (!fit_check_format(buf, IMAGE_SIZE_INVAL)) {
Simon Glassb1b79922013-05-16 13:53:23 +0000418 ulong load, len;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000419
Simon Glass8a876e42021-09-25 19:43:41 -0600420 fdt_noffset = boot_get_fdt_fit(images, fdt_addr,
421 &fit_uname_fdt,
422 &fit_uname_config,
423 arch, &load, &len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000424
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500425 if (fdt_noffset < 0)
Simon Glass8a876e42021-09-25 19:43:41 -0600426 return -ENOENT;
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500427
Simon Glassb1b79922013-05-16 13:53:23 +0000428 images->fit_hdr_fdt = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000429 images->fit_uname_fdt = fit_uname_fdt;
430 images->fit_noffset_fdt = fdt_noffset;
Simon Glassb1b79922013-05-16 13:53:23 +0000431 fdt_addr = load;
Pantelis Antoniou6e51fb22017-09-04 23:12:16 +0300432
Simon Glassc6bdabb2013-05-08 08:06:00 +0000433 break;
Simon Glass8a876e42021-09-25 19:43:41 -0600434 } else
Simon Glassc6bdabb2013-05-08 08:06:00 +0000435#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600436 {
437 /*
438 * FDT blob
439 */
440 debug("* fdt: raw FDT blob\n");
441 printf("## Flattened Device Tree blob at %08lx\n",
442 (long)fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000443 }
Simon Glass8a876e42021-09-25 19:43:41 -0600444 break;
445 default:
446 puts("ERROR: Did not find a cmdline Flattened Device Tree\n");
447 return -ENOENT;
448 }
449 *fdt_addrp = fdt_addr;
450
451 return 0;
452}
453
Simon Glassdb125e02023-11-18 14:05:10 -0700454int boot_get_fdt(void *buf, const char *select, uint arch,
Simon Glassaf2c72c2023-11-18 14:05:09 -0700455 struct bootm_headers *images, char **of_flat_tree,
456 ulong *of_size)
Simon Glass8a876e42021-09-25 19:43:41 -0600457{
Simon Glassdb125e02023-11-18 14:05:10 -0700458 char *fdt_blob = NULL;
459 ulong fdt_addr;
Simon Glass8a876e42021-09-25 19:43:41 -0600460
461 *of_flat_tree = NULL;
462 *of_size = 0;
463
Simon Glass8a876e42021-09-25 19:43:41 -0600464 if (select || genimg_has_config(images)) {
465 int ret;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000466
Simon Glass8a876e42021-09-25 19:43:41 -0600467 ret = select_fdt(images, select, arch, &fdt_addr);
468 if (ret == -ENOPKG)
469 goto no_fdt;
470 else if (ret)
471 return 1;
Simon Glassb1b79922013-05-16 13:53:23 +0000472 printf(" Booting using the fdt blob at %#08lx\n", fdt_addr);
473 fdt_blob = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000474 } else if (images->legacy_hdr_valid &&
475 image_check_type(&images->legacy_hdr_os_copy,
476 IH_TYPE_MULTI)) {
477 ulong fdt_data, fdt_len;
478
479 /*
480 * Now check if we have a legacy multi-component image,
481 * get second entry data start address and len.
482 */
483 printf("## Flattened Device Tree from multi component Image at %08lX\n",
484 (ulong)images->legacy_hdr_os);
485
486 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
487 &fdt_len);
488 if (fdt_len) {
489 fdt_blob = (char *)fdt_data;
490 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
491
492 if (fdt_check_header(fdt_blob) != 0) {
493 fdt_error("image is not a fdt");
494 goto error;
495 }
496
497 if (fdt_totalsize(fdt_blob) != fdt_len) {
498 fdt_error("fdt size != image size");
499 goto error;
500 }
501 } else {
502 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800503 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000504 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800505#ifdef CONFIG_ANDROID_BOOT_IMAGE
506 } else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
Safae Ouajih51c981b2023-02-06 00:50:17 +0100507 void *hdr = buf;
chenshuo1c7d9042020-07-20 08:48:15 +0800508 ulong fdt_data, fdt_len;
509 u32 fdt_size, dtb_idx;
510 /*
511 * Firstly check if this android boot image has dtb field.
512 */
513 dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
Mattijs Korpershoek2b5c70a2024-07-10 10:40:02 +0200514 if (android_image_get_dtb_by_index((ulong)hdr, get_avendor_bootimg_addr(),
Safae Ouajihc60ae102023-02-06 00:50:11 +0100515 dtb_idx, &fdt_addr, &fdt_size)) {
chenshuo1c7d9042020-07-20 08:48:15 +0800516 fdt_blob = (char *)map_sysmem(fdt_addr, 0);
517 if (fdt_check_header(fdt_blob))
518 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800519
chenshuo1c7d9042020-07-20 08:48:15 +0800520 debug("## Using FDT in Android image dtb area with idx %u\n", dtb_idx);
521 } else if (!android_image_get_second(hdr, &fdt_data, &fdt_len) &&
522 !fdt_check_header((char *)fdt_data)) {
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200523 fdt_blob = (char *)fdt_data;
524 if (fdt_totalsize(fdt_blob) != fdt_len)
525 goto error;
Shawn Guoc9e71522019-01-15 22:26:37 +0800526
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200527 debug("## Using FDT in Android image second area\n");
528 } else {
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200529 fdt_addr = env_get_hex("fdtaddr", 0);
530 if (!fdt_addr)
531 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800532
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200533 fdt_blob = map_sysmem(fdt_addr, 0);
534 if (fdt_check_header(fdt_blob))
535 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800536
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200537 debug("## Using FDT at ${fdtaddr}=Ox%lx\n", fdt_addr);
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200538 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800539#endif
Simon Glassc6bdabb2013-05-08 08:06:00 +0000540 } else {
541 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800542 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000543 }
544
545 *of_flat_tree = fdt_blob;
546 *of_size = fdt_totalsize(fdt_blob);
547 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
548 (ulong)*of_flat_tree, *of_size);
549
550 return 0;
551
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800552no_fdt:
Eugeniu Roscaa7da5022019-04-01 12:45:35 +0200553 debug("Continuing to boot without FDT\n");
554 return 0;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000555error:
Simon Glassc6bdabb2013-05-08 08:06:00 +0000556 return 1;
557}
Simon Glass9ca37422013-05-08 08:06:01 +0000558
559/*
560 * Verify the device tree.
561 *
562 * This function is called after all device tree fix-ups have been enacted,
563 * so that the final device tree can be verified. The definition of "verified"
564 * is up to the specific implementation. However, it generally means that the
565 * addresses of some of the devices in the device tree are compared with the
566 * actual addresses at which U-Boot has placed them.
567 *
Bin Meng75574052016-02-05 19:30:11 -0800568 * Returns 1 on success, 0 on failure. If 0 is returned, U-Boot will halt the
Simon Glass9ca37422013-05-08 08:06:01 +0000569 * boot process.
570 */
571__weak int ft_verify_fdt(void *fdt)
572{
573 return 1;
574}
575
Alexey Brodkin91a31592018-01-24 20:47:09 +0300576__weak int arch_fixup_fdt(void *blob)
577{
578 return 0;
579}
580
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530581int image_setup_libfdt(struct bootm_headers *images, void *blob, bool lmb)
Simon Glass9ca37422013-05-08 08:06:01 +0000582{
583 ulong *initrd_start = &images->initrd_start;
584 ulong *initrd_end = &images->initrd_end;
Matthias Schiffere908fec2023-12-11 12:03:17 +0100585 int ret, fdt_ret, of_size;
586
587 if (IS_ENABLED(CONFIG_OF_ENV_SETUP)) {
588 const char *fdt_fixup;
589
590 fdt_fixup = env_get("fdt_fixup");
591 if (fdt_fixup) {
592 set_working_fdt_addr(map_to_sysmem(blob));
593 ret = run_command_list(fdt_fixup, -1, 0);
594 if (ret)
595 printf("WARNING: fdt_fixup command returned %d\n",
596 ret);
597 }
598 }
599
600 ret = -EPERM;
Simon Glass9ca37422013-05-08 08:06:01 +0000601
Paul Kocialkowski2c0fbc72015-05-21 11:27:03 +0200602 if (fdt_root(blob) < 0) {
603 printf("ERROR: root node setup failed\n");
604 goto err;
605 }
Masahiro Yamada451c2042014-04-18 17:41:00 +0900606 if (fdt_chosen(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600607 printf("ERROR: /chosen node create failed\n");
608 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000609 }
Ma Haijun62358242014-07-12 14:24:06 +0100610 if (arch_fixup_fdt(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600611 printf("ERROR: arch-specific fdt fixup failed\n");
612 goto err;
Ma Haijun62358242014-07-12 14:24:06 +0100613 }
Etienne Carriere2502e292020-06-05 09:22:54 +0200614
Patrick Delaunay05381402021-02-08 13:54:31 +0100615 fdt_ret = optee_copy_fdt_nodes(blob);
Etienne Carriere2502e292020-06-05 09:22:54 +0200616 if (fdt_ret) {
617 printf("ERROR: transfer of optee nodes to new fdt failed: %s\n",
618 fdt_strerror(fdt_ret));
619 goto err;
620 }
621
Daniel Gollec5df3e22022-04-12 21:00:43 +0100622 /* Store name of configuration node as u-boot,bootconf in /chosen node */
623 if (images->fit_uname_cfg)
624 fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf",
625 images->fit_uname_cfg,
626 strlen(images->fit_uname_cfg) + 1, 1);
627
Tom Rini78548ea2017-04-28 08:51:44 -0400628 /* Update ethernet nodes */
629 fdt_fixup_ethernet(blob);
Simon Glassdb5d0d22023-02-05 15:36:38 -0700630#if IS_ENABLED(CONFIG_CMD_PSTORE)
Frédéric Daniscdd6a6d2020-03-20 10:59:24 +0100631 /* Append PStore configuration */
632 fdt_fixup_pstore(blob);
633#endif
Simon Glassd49049f2021-09-25 19:43:26 -0600634 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) {
Wasim Khan6e5aad82021-02-04 15:44:04 +0100635 const char *skip_board_fixup;
636
637 skip_board_fixup = env_get("skip_board_fixup");
638 if (skip_board_fixup && ((int)simple_strtol(skip_board_fixup, NULL, 10) == 1)) {
639 printf("skip board fdt fixup\n");
640 } else {
641 fdt_ret = ft_board_setup(blob, gd->bd);
642 if (fdt_ret) {
643 printf("ERROR: board-specific fdt fixup failed: %s\n",
644 fdt_strerror(fdt_ret));
645 goto err;
646 }
Simon Glassf3dd50b2014-10-23 18:58:53 -0600647 }
648 }
Simon Glass336b9c72021-09-25 19:43:27 -0600649 if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) {
Max Krummenacher17585f22015-08-05 17:17:03 +0200650 fdt_ret = ft_system_setup(blob, gd->bd);
651 if (fdt_ret) {
Simon Glass6c0be912014-10-23 18:58:54 -0600652 printf("ERROR: system-specific fdt fixup failed: %s\n",
653 fdt_strerror(fdt_ret));
654 goto err;
655 }
656 }
Simon Glass449b7592023-11-12 08:27:48 -0700657
658 if (fdt_initrd(blob, *initrd_start, *initrd_end))
659 goto err;
660
Simon Glass80968942023-11-12 08:27:50 -0700661 if (!ft_verify_fdt(blob))
662 goto err;
663
Sughosh Ganu8231d032025-03-17 14:04:02 +0530664 if (CONFIG_IS_ENABLED(BLKMAP) && CONFIG_IS_ENABLED(EFI_LOADER)) {
665 fdt_ret = fdt_efi_pmem_setup(blob);
666 if (fdt_ret)
667 goto err;
668 }
669
Simon Glass80968942023-11-12 08:27:50 -0700670 /* after here we are using a livetree */
Simon Glassf4ff7032022-10-11 09:47:15 -0600671 if (!of_live_active() && CONFIG_IS_ENABLED(EVENT)) {
Simon Glass4305fe72022-07-30 15:52:31 -0600672 struct event_ft_fixup fixup;
673
Simon Glassf4ff7032022-10-11 09:47:15 -0600674 fixup.tree = oftree_from_fdt(blob);
Simon Glass74ba8e62022-09-06 20:26:58 -0600675 fixup.images = images;
Simon Glassf4ff7032022-10-11 09:47:15 -0600676 if (oftree_valid(fixup.tree)) {
677 ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup));
678 if (ret) {
679 printf("ERROR: fdt fixup event failed: %d\n",
680 ret);
681 goto err;
682 }
Simon Glass4305fe72022-07-30 15:52:31 -0600683 }
684 }
Simon Glass9ca37422013-05-08 08:06:01 +0000685
686 /* Delete the old LMB reservation */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530687 if (CONFIG_IS_ENABLED(LMB) && lmb)
688 lmb_free(map_to_sysmem(blob), fdt_totalsize(blob));
Simon Glass9ca37422013-05-08 08:06:01 +0000689
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200690 ret = fdt_shrink_to_minimum(blob, 0);
Simon Glass9ca37422013-05-08 08:06:01 +0000691 if (ret < 0)
Simon Glassf3dd50b2014-10-23 18:58:53 -0600692 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000693 of_size = ret;
694
Simon Glass9ca37422013-05-08 08:06:01 +0000695 /* Create a new LMB reservation */
Sughosh Ganu9b0765a2025-06-17 16:13:40 +0530696 if (CONFIG_IS_ENABLED(LMB) && lmb) {
697 phys_addr_t fdt_addr;
698
699 fdt_addr = map_to_sysmem(blob);
700 ret = lmb_alloc_mem(LMB_MEM_ALLOC_ADDR, 0, &fdt_addr,
701 of_size, LMB_NONE);
702 if (ret) {
703 printf("Failed to reserve memory for the fdt at %#llx\n",
704 (u64)fdt_addr);
705 }
706 }
Simon Glass9ca37422013-05-08 08:06:01 +0000707
Tom Rini84c0f692021-09-12 20:32:32 -0400708#if defined(CONFIG_ARCH_KEYSTONE)
Simon Glassd49049f2021-09-25 19:43:26 -0600709 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP))
Vitaly Andrianova122cbb2014-04-04 13:16:47 -0400710 ft_board_setup_ex(blob, gd->bd);
711#endif
712
Simon Glass9ca37422013-05-08 08:06:01 +0000713 return 0;
Simon Glassf3dd50b2014-10-23 18:58:53 -0600714err:
715 printf(" - must RESET the board to recover.\n\n");
716
717 return ret;
Simon Glass9ca37422013-05-08 08:06:01 +0000718}