blob: 3d5b6f9e2dc72e5ac73a188401eb207e791785e7 [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>
Simon Glass83c2e492019-08-01 09:46:50 -060014#include <env.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000015#include <errno.h>
16#include <image.h>
Simon Glass2dc9c342020-05-10 11:40:01 -060017#include <lmb.h>
Simon Glass0f2af882020-05-10 11:40:05 -060018#include <log.h>
Simon Glass9bc15642020-02-03 07:36:16 -070019#include <malloc.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060020#include <asm/global_data.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090021#include <linux/libfdt.h>
Joe Hershberger65b905b2015-03-22 17:08:59 -050022#include <mapmem.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000023#include <asm/io.h>
Simon Glass4305fe72022-07-30 15:52:31 -060024#include <dm/ofnode.h>
Heiko Stuebnerb1a4fa02019-10-23 16:46:40 +020025#include <tee/optee.h>
Simon Glassc6bdabb2013-05-08 08:06:00 +000026
Simon Glassc6bdabb2013-05-08 08:06:00 +000027DECLARE_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
Tom Rinic220bd92019-05-23 07:14:07 -040036#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glassbb7d3bb2022-09-06 20:26:52 -060037static const struct legacy_img_hdr *image_get_fdt(ulong fdt_addr)
Simon Glassc6bdabb2013-05-08 08:06:00 +000038{
Simon Glassbb7d3bb2022-09-06 20:26:52 -060039 const struct legacy_img_hdr *fdt_hdr = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +000040
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 }
Masahiro Yamadabc2a07d2013-09-19 12:10:18 +090063 if (fdt_check_header((void *)image_get_data(fdt_hdr)) != 0) {
Simon Glassc6bdabb2013-05-08 08:06:00 +000064 fdt_error("uImage data is not a fdt");
65 return NULL;
66 }
67 return fdt_hdr;
68}
Heiko Schocher515eb122014-05-28 11:33:33 +020069#endif
Simon Glassc6bdabb2013-05-08 08:06:00 +000070
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053071static void boot_fdt_reserve_region(u64 addr, u64 size, enum lmb_flags flags)
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010072{
Patrick Delaunaydcd5aba2019-03-06 14:23:52 +010073 long ret;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010074
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053075 ret = lmb_reserve_flags(addr, size, flags);
Ilias Apalodimas98491252024-10-23 18:22:00 +030076 if (!ret) {
Patrick Delaunay4a4992b2021-05-07 14:50:33 +020077 debug(" reserving fdt memory region: addr=%llx size=%llx flags=%x\n",
78 (unsigned long long)addr,
79 (unsigned long long)size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010080 } else {
81 puts("ERROR: reserving fdt memory region failed ");
Patrick Delaunay4a4992b2021-05-07 14:50:33 +020082 printf("(addr=%llx size=%llx flags=%x)\n",
83 (unsigned long long)addr,
84 (unsigned long long)size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010085 }
86}
87
Simon Glassc6bdabb2013-05-08 08:06:00 +000088/**
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010089 * boot_fdt_add_mem_rsv_regions - Mark the memreserve and reserved-memory
90 * sections as unusable
Simon Glassc6bdabb2013-05-08 08:06:00 +000091 * @fdt_blob: pointer to fdt blob base address
92 *
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010093 * 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.
Simon Glassc6bdabb2013-05-08 08:06:00 +000096 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053097void boot_fdt_add_mem_rsv_regions(void *fdt_blob)
Simon Glassc6bdabb2013-05-08 08:06:00 +000098{
99 uint64_t addr, size;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100100 int i, total, ret;
101 int nodeoffset, subnode;
102 struct fdt_resource res;
Patrick Delaunay4a4992b2021-05-07 14:50:33 +0200103 enum lmb_flags flags;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000104
105 if (fdt_check_header(fdt_blob) != 0)
106 return;
107
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100108 /* process memreserve sections */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000109 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;
Sughosh Ganu04ddcb32024-10-21 22:54:33 +0530113 boot_fdt_reserve_region(addr, size, LMB_NOOVERWRITE);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100114 }
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);
Thirupathaiah Annapureddye6d6d142020-01-06 22:21:42 -0800124 if (!ret && fdtdec_get_is_enabled(fdt_blob, subnode)) {
Sughosh Ganu04ddcb32024-10-21 22:54:33 +0530125 flags = LMB_NOOVERWRITE;
Patrick Delaunay4a4992b2021-05-07 14:50:33 +0200126 if (fdtdec_get_bool(fdt_blob, subnode,
127 "no-map"))
128 flags = LMB_NOMAP;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100129 addr = res.start;
130 size = res.end - res.start + 1;
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530131 boot_fdt_reserve_region(addr, size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100132 }
133
134 subnode = fdt_next_subnode(fdt_blob, subnode);
135 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000136 }
137}
138
139/**
140 * boot_relocate_fdt - relocate flat device tree
Simon Glassc6bdabb2013-05-08 08:06:00 +0000141 * @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 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530155int boot_relocate_fdt(char **of_flat_tree, ulong *of_size)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000156{
Marek Vasutde815742024-04-14 20:37:20 +0200157 u64 start, size, usable, addr, low, mapsize;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000158 void *fdt_blob = *of_flat_tree;
159 void *of_start = NULL;
160 char *fdt_high;
161 ulong of_len = 0;
Marek Vasut6de37b12022-04-08 02:09:19 +0200162 int bank;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000163 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 */
Simon Glass64b723f2017-08-03 12:22:12 -0600180 fdt_high = env_get("fdt_high");
Simon Glassc6bdabb2013-05-08 08:06:00 +0000181 if (fdt_high) {
Simon Glass8169ece2022-10-11 09:47:10 -0600182 ulong desired_addr = hextoul(fdt_high, NULL);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000183
Simon Glass8169ece2022-10-11 09:47:10 -0600184 if (desired_addr == ~0UL) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000185 /* All ones means use fdt in place */
186 of_start = fdt_blob;
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530187 lmb_reserve(map_to_sysmem(of_start), of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000188 disable_relocation = 1;
189 } else if (desired_addr) {
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530190 addr = lmb_alloc_base(of_len, 0x1000, desired_addr);
Simon Glass8169ece2022-10-11 09:47:10 -0600191 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000192 if (of_start == NULL) {
193 puts("Failed using fdt_high value for Device Tree");
194 goto error;
195 }
196 } else {
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530197 addr = lmb_alloc(of_len, 0x1000);
Simon Glass8169ece2022-10-11 09:47:10 -0600198 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000199 }
200 } else {
Marek Vasut6de37b12022-04-08 02:09:19 +0200201 mapsize = env_get_bootm_mapsize();
202 low = env_get_bootm_low();
203 of_start = NULL;
204
205 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
206 start = gd->bd->bi_dram[bank].start;
207 size = gd->bd->bi_dram[bank].size;
208
209 /* DRAM bank addresses are too low, skip it. */
210 if (start + size < low)
211 continue;
212
Marek Vasut6de37b12022-04-08 02:09:19 +0200213 /*
214 * At least part of this DRAM bank is usable, try
Marek Vasute9748b22024-03-26 23:13:16 +0100215 * using the DRAM bank up to 'usable' address limit
216 * for LMB allocation.
Marek Vasut6de37b12022-04-08 02:09:19 +0200217 */
Marek Vasute9748b22024-03-26 23:13:16 +0100218 usable = min(start + size, low + mapsize);
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530219 addr = lmb_alloc_base(of_len, 0x1000, usable);
Marek Vasute4530ca2024-03-26 23:13:15 +0100220 of_start = map_sysmem(addr, of_len);
Marek Vasut6de37b12022-04-08 02:09:19 +0200221 /* Allocation succeeded, use this block. */
222 if (of_start != NULL)
223 break;
224
225 /*
226 * Reduce the mapping size in the next bank
227 * by the size of attempt in current bank.
228 */
Marek Vasutf816c422024-03-26 23:13:11 +0100229 mapsize -= usable - max(start, low);
Marek Vasut6de37b12022-04-08 02:09:19 +0200230 if (!mapsize)
231 break;
232 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000233 }
234
235 if (of_start == NULL) {
236 puts("device tree - allocation error\n");
237 goto error;
238 }
239
240 if (disable_relocation) {
241 /*
242 * We assume there is space after the existing fdt to use
243 * for padding
244 */
245 fdt_set_totalsize(of_start, of_len);
246 printf(" Using Device Tree in place at %p, end %p\n",
247 of_start, of_start + of_len - 1);
248 } else {
249 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
250 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
251
252 printf(" Loading Device Tree to %p, end %p ... ",
253 of_start, of_start + of_len - 1);
254
255 err = fdt_open_into(fdt_blob, of_start, of_len);
256 if (err != 0) {
257 fdt_error("fdt move failed");
258 goto error;
259 }
260 puts("OK\n");
261 }
262
263 *of_flat_tree = of_start;
264 *of_size = of_len;
265
Simon Glasse2d49d92023-02-05 15:36:30 -0700266 if (IS_ENABLED(CONFIG_CMD_FDT))
Simon Goldschmidt6127ac02018-12-17 20:14:42 +0100267 set_working_fdt_addr(map_to_sysmem(*of_flat_tree));
Simon Glassc6bdabb2013-05-08 08:06:00 +0000268 return 0;
269
270error:
271 return 1;
272}
273
Simon Glassc6bdabb2013-05-08 08:06:00 +0000274/**
Simon Glass8a876e42021-09-25 19:43:41 -0600275 * select_fdt() - Select and locate the FDT to use
Simon Glassc6bdabb2013-05-08 08:06:00 +0000276 *
Simon Glass8a876e42021-09-25 19:43:41 -0600277 * @images: pointer to the bootm images structure
278 * @select: name of FDT to select, or NULL for any
279 * @arch: expected FDT architecture
280 * @fdt_addrp: pointer to a ulong variable, will hold FDT pointer
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100281 * Return: 0 if OK, -ENOPKG if no FDT (but an error should not be reported),
Simon Glass8a876e42021-09-25 19:43:41 -0600282 * other -ve value on other error
Simon Glassc6bdabb2013-05-08 08:06:00 +0000283 */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000284
Simon Glassdf00afa2022-09-06 20:26:50 -0600285static int select_fdt(struct bootm_headers *images, const char *select, u8 arch,
Simon Glass8a876e42021-09-25 19:43:41 -0600286 ulong *fdt_addrp)
287{
288 const char *buf;
289 ulong fdt_addr;
Shawn Guoc9e71522019-01-15 22:26:37 +0800290
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700291#if CONFIG_IS_ENABLED(FIT)
Simon Glass8a876e42021-09-25 19:43:41 -0600292 const char *fit_uname_config = images->fit_uname_cfg;
293 const char *fit_uname_fdt = NULL;
294 ulong default_addr;
295 int fdt_noffset;
Simon Glass3afbb602021-09-25 19:43:40 -0600296
Simon Glass8a876e42021-09-25 19:43:41 -0600297 if (select) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000298 /*
299 * If the FDT blob comes from the FIT image and the
300 * FIT image address is omitted in the command line
301 * argument, try to use ramdisk or os FIT image
302 * address or default load address.
303 */
304 if (images->fit_uname_rd)
305 default_addr = (ulong)images->fit_hdr_rd;
306 else if (images->fit_uname_os)
307 default_addr = (ulong)images->fit_hdr_os;
308 else
Simon Glass892265d2019-12-28 10:45:02 -0700309 default_addr = image_load_addr;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000310
Simon Glass8a876e42021-09-25 19:43:41 -0600311 if (fit_parse_conf(select, default_addr, &fdt_addr,
312 &fit_uname_config)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000313 debug("* fdt: config '%s' from image at 0x%08lx\n",
314 fit_uname_config, fdt_addr);
Simon Glass8a876e42021-09-25 19:43:41 -0600315 } else if (fit_parse_subimage(select, default_addr, &fdt_addr,
316 &fit_uname_fdt)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000317 debug("* fdt: subimage '%s' from image at 0x%08lx\n",
318 fit_uname_fdt, fdt_addr);
319 } else
320#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600321 {
322 fdt_addr = hextoul(select, NULL);
323 debug("* fdt: cmdline image address = 0x%08lx\n",
324 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000325 }
Simon Glass8a876e42021-09-25 19:43:41 -0600326#if CONFIG_IS_ENABLED(FIT)
327 } else {
328 /* use FIT configuration provided in first bootm
329 * command argument
330 */
331 fdt_addr = map_to_sysmem(images->fit_hdr_os);
332 fdt_noffset = fit_get_node_from_config(images, FIT_FDT_PROP,
333 fdt_addr);
334 if (fdt_noffset == -ENOENT)
335 return -ENOPKG;
336 else if (fdt_noffset < 0)
337 return fdt_noffset;
338 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000339#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600340 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
341 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000342
Simon Glass8a876e42021-09-25 19:43:41 -0600343 /*
344 * Check if there is an FDT image at the
345 * address provided in the second bootm argument
346 * check image type, for FIT images get a FIT node.
347 */
348 buf = map_sysmem(fdt_addr, 0);
349 switch (genimg_get_format(buf)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400350#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass8a876e42021-09-25 19:43:41 -0600351 case IMAGE_FORMAT_LEGACY: {
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600352 const struct legacy_img_hdr *fdt_hdr;
Simon Glass3afbb602021-09-25 19:43:40 -0600353 ulong load, load_end;
354 ulong image_start, image_data, image_end;
355
Simon Glassc6bdabb2013-05-08 08:06:00 +0000356 /* verify fdt_addr points to a valid image header */
357 printf("## Flattened Device Tree from Legacy Image at %08lx\n",
358 fdt_addr);
359 fdt_hdr = image_get_fdt(fdt_addr);
360 if (!fdt_hdr)
Simon Glass8a876e42021-09-25 19:43:41 -0600361 return -ENOPKG;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000362
363 /*
364 * move image data to the load address,
365 * make sure we don't overwrite initial image
366 */
367 image_start = (ulong)fdt_hdr;
368 image_data = (ulong)image_get_data(fdt_hdr);
369 image_end = image_get_image_end(fdt_hdr);
370
Simon Glassb1b79922013-05-16 13:53:23 +0000371 load = image_get_load(fdt_hdr);
372 load_end = load + image_get_data_size(fdt_hdr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000373
Simon Glassb1b79922013-05-16 13:53:23 +0000374 if (load == image_start ||
375 load == image_data) {
Peng Fanab80a112015-11-24 16:54:22 +0800376 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000377 break;
378 }
379
Simon Glassb1b79922013-05-16 13:53:23 +0000380 if ((load < image_end) && (load_end > image_start)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000381 fdt_error("fdt overwritten");
Simon Glass8a876e42021-09-25 19:43:41 -0600382 return -EFAULT;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000383 }
384
385 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
Simon Glassb1b79922013-05-16 13:53:23 +0000386 image_data, load);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000387
Simon Glassb1b79922013-05-16 13:53:23 +0000388 memmove((void *)load,
Simon Glassc6bdabb2013-05-08 08:06:00 +0000389 (void *)image_data,
390 image_get_data_size(fdt_hdr));
391
Simon Glassb1b79922013-05-16 13:53:23 +0000392 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000393 break;
Simon Glass3afbb602021-09-25 19:43:40 -0600394 }
Heiko Schocher515eb122014-05-28 11:33:33 +0200395#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600396 case IMAGE_FORMAT_FIT:
397 /*
398 * This case will catch both: new uImage format
399 * (libfdt based) and raw FDT blob (also libfdt
400 * based).
401 */
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700402#if CONFIG_IS_ENABLED(FIT)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000403 /* check FDT blob vs FIT blob */
Simon Glassd563c252021-02-15 17:08:09 -0700404 if (!fit_check_format(buf, IMAGE_SIZE_INVAL)) {
Simon Glassb1b79922013-05-16 13:53:23 +0000405 ulong load, len;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000406
Simon Glass8a876e42021-09-25 19:43:41 -0600407 fdt_noffset = boot_get_fdt_fit(images, fdt_addr,
408 &fit_uname_fdt,
409 &fit_uname_config,
410 arch, &load, &len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000411
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500412 if (fdt_noffset < 0)
Simon Glass8a876e42021-09-25 19:43:41 -0600413 return -ENOENT;
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500414
Simon Glassb1b79922013-05-16 13:53:23 +0000415 images->fit_hdr_fdt = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000416 images->fit_uname_fdt = fit_uname_fdt;
417 images->fit_noffset_fdt = fdt_noffset;
Simon Glassb1b79922013-05-16 13:53:23 +0000418 fdt_addr = load;
Pantelis Antoniou6e51fb22017-09-04 23:12:16 +0300419
Simon Glassc6bdabb2013-05-08 08:06:00 +0000420 break;
Simon Glass8a876e42021-09-25 19:43:41 -0600421 } else
Simon Glassc6bdabb2013-05-08 08:06:00 +0000422#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600423 {
424 /*
425 * FDT blob
426 */
427 debug("* fdt: raw FDT blob\n");
428 printf("## Flattened Device Tree blob at %08lx\n",
429 (long)fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000430 }
Simon Glass8a876e42021-09-25 19:43:41 -0600431 break;
432 default:
433 puts("ERROR: Did not find a cmdline Flattened Device Tree\n");
434 return -ENOENT;
435 }
436 *fdt_addrp = fdt_addr;
437
438 return 0;
439}
440
Simon Glassdb125e02023-11-18 14:05:10 -0700441int boot_get_fdt(void *buf, const char *select, uint arch,
Simon Glassaf2c72c2023-11-18 14:05:09 -0700442 struct bootm_headers *images, char **of_flat_tree,
443 ulong *of_size)
Simon Glass8a876e42021-09-25 19:43:41 -0600444{
Simon Glassdb125e02023-11-18 14:05:10 -0700445 char *fdt_blob = NULL;
446 ulong fdt_addr;
Simon Glass8a876e42021-09-25 19:43:41 -0600447
448 *of_flat_tree = NULL;
449 *of_size = 0;
450
Simon Glass8a876e42021-09-25 19:43:41 -0600451 if (select || genimg_has_config(images)) {
452 int ret;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000453
Simon Glass8a876e42021-09-25 19:43:41 -0600454 ret = select_fdt(images, select, arch, &fdt_addr);
455 if (ret == -ENOPKG)
456 goto no_fdt;
457 else if (ret)
458 return 1;
Simon Glassb1b79922013-05-16 13:53:23 +0000459 printf(" Booting using the fdt blob at %#08lx\n", fdt_addr);
460 fdt_blob = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000461 } else if (images->legacy_hdr_valid &&
462 image_check_type(&images->legacy_hdr_os_copy,
463 IH_TYPE_MULTI)) {
464 ulong fdt_data, fdt_len;
465
466 /*
467 * Now check if we have a legacy multi-component image,
468 * get second entry data start address and len.
469 */
470 printf("## Flattened Device Tree from multi component Image at %08lX\n",
471 (ulong)images->legacy_hdr_os);
472
473 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
474 &fdt_len);
475 if (fdt_len) {
476 fdt_blob = (char *)fdt_data;
477 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
478
479 if (fdt_check_header(fdt_blob) != 0) {
480 fdt_error("image is not a fdt");
481 goto error;
482 }
483
484 if (fdt_totalsize(fdt_blob) != fdt_len) {
485 fdt_error("fdt size != image size");
486 goto error;
487 }
488 } else {
489 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800490 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000491 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800492#ifdef CONFIG_ANDROID_BOOT_IMAGE
493 } else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
Safae Ouajih51c981b2023-02-06 00:50:17 +0100494 void *hdr = buf;
chenshuo1c7d9042020-07-20 08:48:15 +0800495 ulong fdt_data, fdt_len;
496 u32 fdt_size, dtb_idx;
497 /*
498 * Firstly check if this android boot image has dtb field.
499 */
500 dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
Mattijs Korpershoek2b5c70a2024-07-10 10:40:02 +0200501 if (android_image_get_dtb_by_index((ulong)hdr, get_avendor_bootimg_addr(),
Safae Ouajihc60ae102023-02-06 00:50:11 +0100502 dtb_idx, &fdt_addr, &fdt_size)) {
chenshuo1c7d9042020-07-20 08:48:15 +0800503 fdt_blob = (char *)map_sysmem(fdt_addr, 0);
504 if (fdt_check_header(fdt_blob))
505 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800506
chenshuo1c7d9042020-07-20 08:48:15 +0800507 debug("## Using FDT in Android image dtb area with idx %u\n", dtb_idx);
508 } else if (!android_image_get_second(hdr, &fdt_data, &fdt_len) &&
509 !fdt_check_header((char *)fdt_data)) {
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200510 fdt_blob = (char *)fdt_data;
511 if (fdt_totalsize(fdt_blob) != fdt_len)
512 goto error;
Shawn Guoc9e71522019-01-15 22:26:37 +0800513
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200514 debug("## Using FDT in Android image second area\n");
515 } else {
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200516 fdt_addr = env_get_hex("fdtaddr", 0);
517 if (!fdt_addr)
518 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800519
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200520 fdt_blob = map_sysmem(fdt_addr, 0);
521 if (fdt_check_header(fdt_blob))
522 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800523
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200524 debug("## Using FDT at ${fdtaddr}=Ox%lx\n", fdt_addr);
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200525 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800526#endif
Simon Glassc6bdabb2013-05-08 08:06:00 +0000527 } else {
528 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800529 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000530 }
531
532 *of_flat_tree = fdt_blob;
533 *of_size = fdt_totalsize(fdt_blob);
534 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
535 (ulong)*of_flat_tree, *of_size);
536
537 return 0;
538
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800539no_fdt:
Eugeniu Roscaa7da5022019-04-01 12:45:35 +0200540 debug("Continuing to boot without FDT\n");
541 return 0;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000542error:
Simon Glassc6bdabb2013-05-08 08:06:00 +0000543 return 1;
544}
Simon Glass9ca37422013-05-08 08:06:01 +0000545
546/*
547 * Verify the device tree.
548 *
549 * This function is called after all device tree fix-ups have been enacted,
550 * so that the final device tree can be verified. The definition of "verified"
551 * is up to the specific implementation. However, it generally means that the
552 * addresses of some of the devices in the device tree are compared with the
553 * actual addresses at which U-Boot has placed them.
554 *
Bin Meng75574052016-02-05 19:30:11 -0800555 * Returns 1 on success, 0 on failure. If 0 is returned, U-Boot will halt the
Simon Glass9ca37422013-05-08 08:06:01 +0000556 * boot process.
557 */
558__weak int ft_verify_fdt(void *fdt)
559{
560 return 1;
561}
562
Alexey Brodkin91a31592018-01-24 20:47:09 +0300563__weak int arch_fixup_fdt(void *blob)
564{
565 return 0;
566}
567
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530568int image_setup_libfdt(struct bootm_headers *images, void *blob, bool lmb)
Simon Glass9ca37422013-05-08 08:06:01 +0000569{
570 ulong *initrd_start = &images->initrd_start;
571 ulong *initrd_end = &images->initrd_end;
Matthias Schiffere908fec2023-12-11 12:03:17 +0100572 int ret, fdt_ret, of_size;
573
574 if (IS_ENABLED(CONFIG_OF_ENV_SETUP)) {
575 const char *fdt_fixup;
576
577 fdt_fixup = env_get("fdt_fixup");
578 if (fdt_fixup) {
579 set_working_fdt_addr(map_to_sysmem(blob));
580 ret = run_command_list(fdt_fixup, -1, 0);
581 if (ret)
582 printf("WARNING: fdt_fixup command returned %d\n",
583 ret);
584 }
585 }
586
587 ret = -EPERM;
Simon Glass9ca37422013-05-08 08:06:01 +0000588
Paul Kocialkowski2c0fbc72015-05-21 11:27:03 +0200589 if (fdt_root(blob) < 0) {
590 printf("ERROR: root node setup failed\n");
591 goto err;
592 }
Masahiro Yamada451c2042014-04-18 17:41:00 +0900593 if (fdt_chosen(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600594 printf("ERROR: /chosen node create failed\n");
595 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000596 }
Ma Haijun62358242014-07-12 14:24:06 +0100597 if (arch_fixup_fdt(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600598 printf("ERROR: arch-specific fdt fixup failed\n");
599 goto err;
Ma Haijun62358242014-07-12 14:24:06 +0100600 }
Etienne Carriere2502e292020-06-05 09:22:54 +0200601
Patrick Delaunay05381402021-02-08 13:54:31 +0100602 fdt_ret = optee_copy_fdt_nodes(blob);
Etienne Carriere2502e292020-06-05 09:22:54 +0200603 if (fdt_ret) {
604 printf("ERROR: transfer of optee nodes to new fdt failed: %s\n",
605 fdt_strerror(fdt_ret));
606 goto err;
607 }
608
Daniel Gollec5df3e22022-04-12 21:00:43 +0100609 /* Store name of configuration node as u-boot,bootconf in /chosen node */
610 if (images->fit_uname_cfg)
611 fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf",
612 images->fit_uname_cfg,
613 strlen(images->fit_uname_cfg) + 1, 1);
614
Tom Rini78548ea2017-04-28 08:51:44 -0400615 /* Update ethernet nodes */
616 fdt_fixup_ethernet(blob);
Simon Glassdb5d0d22023-02-05 15:36:38 -0700617#if IS_ENABLED(CONFIG_CMD_PSTORE)
Frédéric Daniscdd6a6d2020-03-20 10:59:24 +0100618 /* Append PStore configuration */
619 fdt_fixup_pstore(blob);
620#endif
Simon Glassd49049f2021-09-25 19:43:26 -0600621 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) {
Wasim Khan6e5aad82021-02-04 15:44:04 +0100622 const char *skip_board_fixup;
623
624 skip_board_fixup = env_get("skip_board_fixup");
625 if (skip_board_fixup && ((int)simple_strtol(skip_board_fixup, NULL, 10) == 1)) {
626 printf("skip board fdt fixup\n");
627 } else {
628 fdt_ret = ft_board_setup(blob, gd->bd);
629 if (fdt_ret) {
630 printf("ERROR: board-specific fdt fixup failed: %s\n",
631 fdt_strerror(fdt_ret));
632 goto err;
633 }
Simon Glassf3dd50b2014-10-23 18:58:53 -0600634 }
635 }
Simon Glass336b9c72021-09-25 19:43:27 -0600636 if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) {
Max Krummenacher17585f22015-08-05 17:17:03 +0200637 fdt_ret = ft_system_setup(blob, gd->bd);
638 if (fdt_ret) {
Simon Glass6c0be912014-10-23 18:58:54 -0600639 printf("ERROR: system-specific fdt fixup failed: %s\n",
640 fdt_strerror(fdt_ret));
641 goto err;
642 }
643 }
Simon Glass449b7592023-11-12 08:27:48 -0700644
645 if (fdt_initrd(blob, *initrd_start, *initrd_end))
646 goto err;
647
Simon Glass80968942023-11-12 08:27:50 -0700648 if (!ft_verify_fdt(blob))
649 goto err;
650
651 /* after here we are using a livetree */
Simon Glassf4ff7032022-10-11 09:47:15 -0600652 if (!of_live_active() && CONFIG_IS_ENABLED(EVENT)) {
Simon Glass4305fe72022-07-30 15:52:31 -0600653 struct event_ft_fixup fixup;
654
Simon Glassf4ff7032022-10-11 09:47:15 -0600655 fixup.tree = oftree_from_fdt(blob);
Simon Glass74ba8e62022-09-06 20:26:58 -0600656 fixup.images = images;
Simon Glassf4ff7032022-10-11 09:47:15 -0600657 if (oftree_valid(fixup.tree)) {
658 ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup));
659 if (ret) {
660 printf("ERROR: fdt fixup event failed: %d\n",
661 ret);
662 goto err;
663 }
Simon Glass4305fe72022-07-30 15:52:31 -0600664 }
665 }
Simon Glass9ca37422013-05-08 08:06:01 +0000666
667 /* Delete the old LMB reservation */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530668 if (CONFIG_IS_ENABLED(LMB) && lmb)
669 lmb_free(map_to_sysmem(blob), fdt_totalsize(blob));
Simon Glass9ca37422013-05-08 08:06:01 +0000670
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200671 ret = fdt_shrink_to_minimum(blob, 0);
Simon Glass9ca37422013-05-08 08:06:01 +0000672 if (ret < 0)
Simon Glassf3dd50b2014-10-23 18:58:53 -0600673 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000674 of_size = ret;
675
Simon Glass9ca37422013-05-08 08:06:01 +0000676 /* Create a new LMB reservation */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530677 if (CONFIG_IS_ENABLED(LMB) && lmb)
678 lmb_reserve(map_to_sysmem(blob), of_size);
Simon Glass9ca37422013-05-08 08:06:01 +0000679
Tom Rini84c0f692021-09-12 20:32:32 -0400680#if defined(CONFIG_ARCH_KEYSTONE)
Simon Glassd49049f2021-09-25 19:43:26 -0600681 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP))
Vitaly Andrianova122cbb2014-04-04 13:16:47 -0400682 ft_board_setup_ex(blob, gd->bd);
683#endif
684
Simon Glass9ca37422013-05-08 08:06:01 +0000685 return 0;
Simon Glassf3dd50b2014-10-23 18:58:53 -0600686err:
687 printf(" - must RESET the board to recover.\n\n");
688
689 return ret;
Simon Glass9ca37422013-05-08 08:06:01 +0000690}