blob: 8f718ad29f6b7af9cb1d0cedc8e4c038eb3020fc [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;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010075
Ilias Apalodimasf72c55e2024-12-18 09:02:32 +020076 ret = lmb_reserve(addr, size, flags);
Ilias Apalodimas98491252024-10-23 18:22:00 +030077 if (!ret) {
Patrick Delaunay4a4992b2021-05-07 14:50:33 +020078 debug(" reserving fdt memory region: addr=%llx size=%llx flags=%x\n",
79 (unsigned long long)addr,
80 (unsigned long long)size, flags);
Sam Protsenkoc4b68712024-12-10 20:17:02 -060081 } else if (ret != -EEXIST) {
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010082 puts("ERROR: reserving fdt memory region failed ");
Patrick Delaunay4a4992b2021-05-07 14:50:33 +020083 printf("(addr=%llx size=%llx flags=%x)\n",
84 (unsigned long long)addr,
85 (unsigned long long)size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010086 }
87}
88
Simon Glassc6bdabb2013-05-08 08:06:00 +000089/**
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010090 * boot_fdt_add_mem_rsv_regions - Mark the memreserve and reserved-memory
91 * sections as unusable
Simon Glassc6bdabb2013-05-08 08:06:00 +000092 * @fdt_blob: pointer to fdt blob base address
93 *
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +010094 * Adds the and reserved-memorymemreserve regions in the dtb to the lmb block.
95 * Adding the memreserve regions prevents u-boot from using them to store the
96 * initrd or the fdt blob.
Simon Glassc6bdabb2013-05-08 08:06:00 +000097 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +053098void boot_fdt_add_mem_rsv_regions(void *fdt_blob)
Simon Glassc6bdabb2013-05-08 08:06:00 +000099{
100 uint64_t addr, size;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100101 int i, total, ret;
102 int nodeoffset, subnode;
103 struct fdt_resource res;
Ilias Apalodimasd8462bf2024-12-18 09:02:31 +0200104 u32 flags;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000105
106 if (fdt_check_header(fdt_blob) != 0)
107 return;
108
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100109 /* process memreserve sections */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000110 total = fdt_num_mem_rsv(fdt_blob);
111 for (i = 0; i < total; i++) {
112 if (fdt_get_mem_rsv(fdt_blob, i, &addr, &size) != 0)
113 continue;
Sughosh Ganu04ddcb32024-10-21 22:54:33 +0530114 boot_fdt_reserve_region(addr, size, LMB_NOOVERWRITE);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100115 }
116
117 /* process reserved-memory */
118 nodeoffset = fdt_subnode_offset(fdt_blob, 0, "reserved-memory");
119 if (nodeoffset >= 0) {
120 subnode = fdt_first_subnode(fdt_blob, nodeoffset);
121 while (subnode >= 0) {
122 /* check if this subnode has a reg property */
123 ret = fdt_get_resource(fdt_blob, subnode, "reg", 0,
124 &res);
Thirupathaiah Annapureddye6d6d142020-01-06 22:21:42 -0800125 if (!ret && fdtdec_get_is_enabled(fdt_blob, subnode)) {
Sughosh Ganu04ddcb32024-10-21 22:54:33 +0530126 flags = LMB_NOOVERWRITE;
Patrick Delaunay4a4992b2021-05-07 14:50:33 +0200127 if (fdtdec_get_bool(fdt_blob, subnode,
128 "no-map"))
129 flags = LMB_NOMAP;
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100130 addr = res.start;
131 size = res.end - res.start + 1;
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530132 boot_fdt_reserve_region(addr, size, flags);
Simon Goldschmidt01adc4c2019-01-14 22:38:17 +0100133 }
134
135 subnode = fdt_next_subnode(fdt_blob, subnode);
136 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000137 }
138}
139
140/**
141 * boot_relocate_fdt - relocate flat device tree
Simon Glassc6bdabb2013-05-08 08:06:00 +0000142 * @of_flat_tree: pointer to a char* variable, will hold fdt start address
143 * @of_size: pointer to a ulong variable, will hold fdt length
144 *
145 * boot_relocate_fdt() allocates a region of memory within the bootmap and
146 * relocates the of_flat_tree into that region, even if the fdt is already in
147 * the bootmap. It also expands the size of the fdt by CONFIG_SYS_FDT_PAD
148 * bytes.
149 *
150 * of_flat_tree and of_size are set to final (after relocation) values
151 *
152 * returns:
153 * 0 - success
154 * 1 - failure
155 */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530156int boot_relocate_fdt(char **of_flat_tree, ulong *of_size)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000157{
Marek Vasutde815742024-04-14 20:37:20 +0200158 u64 start, size, usable, addr, low, mapsize;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000159 void *fdt_blob = *of_flat_tree;
160 void *of_start = NULL;
161 char *fdt_high;
162 ulong of_len = 0;
Marek Vasut6de37b12022-04-08 02:09:19 +0200163 int bank;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000164 int err;
165 int disable_relocation = 0;
166
167 /* nothing to do */
168 if (*of_size == 0)
169 return 0;
170
171 if (fdt_check_header(fdt_blob) != 0) {
172 fdt_error("image is not a fdt");
173 goto error;
174 }
175
176 /* position on a 4K boundary before the alloc_current */
177 /* Pad the FDT by a specified amount */
178 of_len = *of_size + CONFIG_SYS_FDT_PAD;
179
180 /* If fdt_high is set use it to select the relocation address */
Simon Glass64b723f2017-08-03 12:22:12 -0600181 fdt_high = env_get("fdt_high");
Simon Glassc6bdabb2013-05-08 08:06:00 +0000182 if (fdt_high) {
Simon Glass8169ece2022-10-11 09:47:10 -0600183 ulong desired_addr = hextoul(fdt_high, NULL);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000184
Simon Glass8169ece2022-10-11 09:47:10 -0600185 if (desired_addr == ~0UL) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000186 /* All ones means use fdt in place */
187 of_start = fdt_blob;
Ilias Apalodimasf72c55e2024-12-18 09:02:32 +0200188 lmb_reserve(map_to_sysmem(of_start), of_len, LMB_NONE);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000189 disable_relocation = 1;
190 } else if (desired_addr) {
Ilias Apalodimasd1e9a262024-12-18 09:02:36 +0200191 addr = lmb_alloc_base(of_len, 0x1000, desired_addr,
192 LMB_NONE);
Simon Glass8169ece2022-10-11 09:47:10 -0600193 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000194 if (of_start == NULL) {
195 puts("Failed using fdt_high value for Device Tree");
196 goto error;
197 }
198 } else {
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530199 addr = lmb_alloc(of_len, 0x1000);
Simon Glass8169ece2022-10-11 09:47:10 -0600200 of_start = map_sysmem(addr, of_len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000201 }
202 } else {
Marek Vasut6de37b12022-04-08 02:09:19 +0200203 mapsize = env_get_bootm_mapsize();
204 low = env_get_bootm_low();
205 of_start = NULL;
206
207 for (bank = 0; bank < CONFIG_NR_DRAM_BANKS; bank++) {
208 start = gd->bd->bi_dram[bank].start;
209 size = gd->bd->bi_dram[bank].size;
210
211 /* DRAM bank addresses are too low, skip it. */
212 if (start + size < low)
213 continue;
214
Marek Vasut6de37b12022-04-08 02:09:19 +0200215 /*
216 * At least part of this DRAM bank is usable, try
Marek Vasute9748b22024-03-26 23:13:16 +0100217 * using the DRAM bank up to 'usable' address limit
218 * for LMB allocation.
Marek Vasut6de37b12022-04-08 02:09:19 +0200219 */
Marek Vasute9748b22024-03-26 23:13:16 +0100220 usable = min(start + size, low + mapsize);
Ilias Apalodimasd1e9a262024-12-18 09:02:36 +0200221 addr = lmb_alloc_base(of_len, 0x1000, usable, LMB_NONE);
Marek Vasute4530ca2024-03-26 23:13:15 +0100222 of_start = map_sysmem(addr, of_len);
Marek Vasut6de37b12022-04-08 02:09:19 +0200223 /* Allocation succeeded, use this block. */
224 if (of_start != NULL)
225 break;
226
227 /*
228 * Reduce the mapping size in the next bank
229 * by the size of attempt in current bank.
230 */
Marek Vasutf816c422024-03-26 23:13:11 +0100231 mapsize -= usable - max(start, low);
Marek Vasut6de37b12022-04-08 02:09:19 +0200232 if (!mapsize)
233 break;
234 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000235 }
236
237 if (of_start == NULL) {
238 puts("device tree - allocation error\n");
239 goto error;
240 }
241
242 if (disable_relocation) {
243 /*
244 * We assume there is space after the existing fdt to use
245 * for padding
246 */
247 fdt_set_totalsize(of_start, of_len);
248 printf(" Using Device Tree in place at %p, end %p\n",
249 of_start, of_start + of_len - 1);
250 } else {
251 debug("## device tree at %p ... %p (len=%ld [0x%lX])\n",
252 fdt_blob, fdt_blob + *of_size - 1, of_len, of_len);
253
254 printf(" Loading Device Tree to %p, end %p ... ",
255 of_start, of_start + of_len - 1);
256
257 err = fdt_open_into(fdt_blob, of_start, of_len);
258 if (err != 0) {
259 fdt_error("fdt move failed");
260 goto error;
261 }
262 puts("OK\n");
263 }
264
265 *of_flat_tree = of_start;
266 *of_size = of_len;
267
Simon Glasse2d49d92023-02-05 15:36:30 -0700268 if (IS_ENABLED(CONFIG_CMD_FDT))
Simon Goldschmidt6127ac02018-12-17 20:14:42 +0100269 set_working_fdt_addr(map_to_sysmem(*of_flat_tree));
Simon Glassc6bdabb2013-05-08 08:06:00 +0000270 return 0;
271
272error:
273 return 1;
274}
275
Simon Glassc6bdabb2013-05-08 08:06:00 +0000276/**
Simon Glass8a876e42021-09-25 19:43:41 -0600277 * select_fdt() - Select and locate the FDT to use
Simon Glassc6bdabb2013-05-08 08:06:00 +0000278 *
Simon Glass8a876e42021-09-25 19:43:41 -0600279 * @images: pointer to the bootm images structure
280 * @select: name of FDT to select, or NULL for any
281 * @arch: expected FDT architecture
282 * @fdt_addrp: pointer to a ulong variable, will hold FDT pointer
Heinrich Schuchardt47b4c022022-01-19 18:05:50 +0100283 * Return: 0 if OK, -ENOPKG if no FDT (but an error should not be reported),
Simon Glass8a876e42021-09-25 19:43:41 -0600284 * other -ve value on other error
Simon Glassc6bdabb2013-05-08 08:06:00 +0000285 */
Simon Glassc6bdabb2013-05-08 08:06:00 +0000286
Simon Glassdf00afa2022-09-06 20:26:50 -0600287static int select_fdt(struct bootm_headers *images, const char *select, u8 arch,
Simon Glass8a876e42021-09-25 19:43:41 -0600288 ulong *fdt_addrp)
289{
290 const char *buf;
291 ulong fdt_addr;
Shawn Guoc9e71522019-01-15 22:26:37 +0800292
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700293#if CONFIG_IS_ENABLED(FIT)
Simon Glass8a876e42021-09-25 19:43:41 -0600294 const char *fit_uname_config = images->fit_uname_cfg;
295 const char *fit_uname_fdt = NULL;
296 ulong default_addr;
297 int fdt_noffset;
Simon Glass3afbb602021-09-25 19:43:40 -0600298
Simon Glass8a876e42021-09-25 19:43:41 -0600299 if (select) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000300 /*
301 * If the FDT blob comes from the FIT image and the
302 * FIT image address is omitted in the command line
303 * argument, try to use ramdisk or os FIT image
304 * address or default load address.
305 */
306 if (images->fit_uname_rd)
307 default_addr = (ulong)images->fit_hdr_rd;
308 else if (images->fit_uname_os)
309 default_addr = (ulong)images->fit_hdr_os;
310 else
Simon Glass892265d2019-12-28 10:45:02 -0700311 default_addr = image_load_addr;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000312
Simon Glass8a876e42021-09-25 19:43:41 -0600313 if (fit_parse_conf(select, default_addr, &fdt_addr,
314 &fit_uname_config)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000315 debug("* fdt: config '%s' from image at 0x%08lx\n",
316 fit_uname_config, fdt_addr);
Simon Glass8a876e42021-09-25 19:43:41 -0600317 } else if (fit_parse_subimage(select, default_addr, &fdt_addr,
318 &fit_uname_fdt)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000319 debug("* fdt: subimage '%s' from image at 0x%08lx\n",
320 fit_uname_fdt, fdt_addr);
321 } else
322#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600323 {
324 fdt_addr = hextoul(select, NULL);
325 debug("* fdt: cmdline image address = 0x%08lx\n",
326 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000327 }
Simon Glass8a876e42021-09-25 19:43:41 -0600328#if CONFIG_IS_ENABLED(FIT)
329 } else {
330 /* use FIT configuration provided in first bootm
331 * command argument
332 */
333 fdt_addr = map_to_sysmem(images->fit_hdr_os);
334 fdt_noffset = fit_get_node_from_config(images, FIT_FDT_PROP,
335 fdt_addr);
336 if (fdt_noffset == -ENOENT)
337 return -ENOPKG;
338 else if (fdt_noffset < 0)
339 return fdt_noffset;
340 }
Simon Glassc6bdabb2013-05-08 08:06:00 +0000341#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600342 debug("## Checking for 'FDT'/'FDT Image' at %08lx\n",
343 fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000344
Simon Glass8a876e42021-09-25 19:43:41 -0600345 /*
346 * Check if there is an FDT image at the
347 * address provided in the second bootm argument
348 * check image type, for FIT images get a FIT node.
349 */
350 buf = map_sysmem(fdt_addr, 0);
351 switch (genimg_get_format(buf)) {
Tom Rinic220bd92019-05-23 07:14:07 -0400352#if CONFIG_IS_ENABLED(LEGACY_IMAGE_FORMAT)
Simon Glass8a876e42021-09-25 19:43:41 -0600353 case IMAGE_FORMAT_LEGACY: {
Simon Glassbb7d3bb2022-09-06 20:26:52 -0600354 const struct legacy_img_hdr *fdt_hdr;
Simon Glass3afbb602021-09-25 19:43:40 -0600355 ulong load, load_end;
356 ulong image_start, image_data, image_end;
357
Simon Glassc6bdabb2013-05-08 08:06:00 +0000358 /* verify fdt_addr points to a valid image header */
359 printf("## Flattened Device Tree from Legacy Image at %08lx\n",
360 fdt_addr);
361 fdt_hdr = image_get_fdt(fdt_addr);
362 if (!fdt_hdr)
Simon Glass8a876e42021-09-25 19:43:41 -0600363 return -ENOPKG;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000364
365 /*
366 * move image data to the load address,
367 * make sure we don't overwrite initial image
368 */
369 image_start = (ulong)fdt_hdr;
370 image_data = (ulong)image_get_data(fdt_hdr);
371 image_end = image_get_image_end(fdt_hdr);
372
Simon Glassb1b79922013-05-16 13:53:23 +0000373 load = image_get_load(fdt_hdr);
374 load_end = load + image_get_data_size(fdt_hdr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000375
Simon Glassb1b79922013-05-16 13:53:23 +0000376 if (load == image_start ||
377 load == image_data) {
Peng Fanab80a112015-11-24 16:54:22 +0800378 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000379 break;
380 }
381
Simon Glassb1b79922013-05-16 13:53:23 +0000382 if ((load < image_end) && (load_end > image_start)) {
Simon Glassc6bdabb2013-05-08 08:06:00 +0000383 fdt_error("fdt overwritten");
Simon Glass8a876e42021-09-25 19:43:41 -0600384 return -EFAULT;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000385 }
386
387 debug(" Loading FDT from 0x%08lx to 0x%08lx\n",
Simon Glassb1b79922013-05-16 13:53:23 +0000388 image_data, load);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000389
Simon Glassb1b79922013-05-16 13:53:23 +0000390 memmove((void *)load,
Simon Glassc6bdabb2013-05-08 08:06:00 +0000391 (void *)image_data,
392 image_get_data_size(fdt_hdr));
393
Simon Glassb1b79922013-05-16 13:53:23 +0000394 fdt_addr = load;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000395 break;
Simon Glass3afbb602021-09-25 19:43:40 -0600396 }
Heiko Schocher515eb122014-05-28 11:33:33 +0200397#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600398 case IMAGE_FORMAT_FIT:
399 /*
400 * This case will catch both: new uImage format
401 * (libfdt based) and raw FDT blob (also libfdt
402 * based).
403 */
Simon Glasse3ee2fb2016-02-22 22:55:43 -0700404#if CONFIG_IS_ENABLED(FIT)
Simon Glassc6bdabb2013-05-08 08:06:00 +0000405 /* check FDT blob vs FIT blob */
Simon Glassd563c252021-02-15 17:08:09 -0700406 if (!fit_check_format(buf, IMAGE_SIZE_INVAL)) {
Simon Glassb1b79922013-05-16 13:53:23 +0000407 ulong load, len;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000408
Simon Glass8a876e42021-09-25 19:43:41 -0600409 fdt_noffset = boot_get_fdt_fit(images, fdt_addr,
410 &fit_uname_fdt,
411 &fit_uname_config,
412 arch, &load, &len);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000413
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500414 if (fdt_noffset < 0)
Simon Glass8a876e42021-09-25 19:43:41 -0600415 return -ENOENT;
Hongwei Zhang1f215e32020-12-02 14:47:03 -0500416
Simon Glassb1b79922013-05-16 13:53:23 +0000417 images->fit_hdr_fdt = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000418 images->fit_uname_fdt = fit_uname_fdt;
419 images->fit_noffset_fdt = fdt_noffset;
Simon Glassb1b79922013-05-16 13:53:23 +0000420 fdt_addr = load;
Pantelis Antoniou6e51fb22017-09-04 23:12:16 +0300421
Simon Glassc6bdabb2013-05-08 08:06:00 +0000422 break;
Simon Glass8a876e42021-09-25 19:43:41 -0600423 } else
Simon Glassc6bdabb2013-05-08 08:06:00 +0000424#endif
Simon Glass8a876e42021-09-25 19:43:41 -0600425 {
426 /*
427 * FDT blob
428 */
429 debug("* fdt: raw FDT blob\n");
430 printf("## Flattened Device Tree blob at %08lx\n",
431 (long)fdt_addr);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000432 }
Simon Glass8a876e42021-09-25 19:43:41 -0600433 break;
434 default:
435 puts("ERROR: Did not find a cmdline Flattened Device Tree\n");
436 return -ENOENT;
437 }
438 *fdt_addrp = fdt_addr;
439
440 return 0;
441}
442
Simon Glassdb125e02023-11-18 14:05:10 -0700443int boot_get_fdt(void *buf, const char *select, uint arch,
Simon Glassaf2c72c2023-11-18 14:05:09 -0700444 struct bootm_headers *images, char **of_flat_tree,
445 ulong *of_size)
Simon Glass8a876e42021-09-25 19:43:41 -0600446{
Simon Glassdb125e02023-11-18 14:05:10 -0700447 char *fdt_blob = NULL;
448 ulong fdt_addr;
Simon Glass8a876e42021-09-25 19:43:41 -0600449
450 *of_flat_tree = NULL;
451 *of_size = 0;
452
Simon Glass8a876e42021-09-25 19:43:41 -0600453 if (select || genimg_has_config(images)) {
454 int ret;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000455
Simon Glass8a876e42021-09-25 19:43:41 -0600456 ret = select_fdt(images, select, arch, &fdt_addr);
457 if (ret == -ENOPKG)
458 goto no_fdt;
459 else if (ret)
460 return 1;
Simon Glassb1b79922013-05-16 13:53:23 +0000461 printf(" Booting using the fdt blob at %#08lx\n", fdt_addr);
462 fdt_blob = map_sysmem(fdt_addr, 0);
Simon Glassc6bdabb2013-05-08 08:06:00 +0000463 } else if (images->legacy_hdr_valid &&
464 image_check_type(&images->legacy_hdr_os_copy,
465 IH_TYPE_MULTI)) {
466 ulong fdt_data, fdt_len;
467
468 /*
469 * Now check if we have a legacy multi-component image,
470 * get second entry data start address and len.
471 */
472 printf("## Flattened Device Tree from multi component Image at %08lX\n",
473 (ulong)images->legacy_hdr_os);
474
475 image_multi_getimg(images->legacy_hdr_os, 2, &fdt_data,
476 &fdt_len);
477 if (fdt_len) {
478 fdt_blob = (char *)fdt_data;
479 printf(" Booting using the fdt at 0x%p\n", fdt_blob);
480
481 if (fdt_check_header(fdt_blob) != 0) {
482 fdt_error("image is not a fdt");
483 goto error;
484 }
485
486 if (fdt_totalsize(fdt_blob) != fdt_len) {
487 fdt_error("fdt size != image size");
488 goto error;
489 }
490 } else {
491 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800492 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000493 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800494#ifdef CONFIG_ANDROID_BOOT_IMAGE
495 } else if (genimg_get_format(buf) == IMAGE_FORMAT_ANDROID) {
Safae Ouajih51c981b2023-02-06 00:50:17 +0100496 void *hdr = buf;
chenshuo1c7d9042020-07-20 08:48:15 +0800497 ulong fdt_data, fdt_len;
498 u32 fdt_size, dtb_idx;
499 /*
500 * Firstly check if this android boot image has dtb field.
501 */
502 dtb_idx = (u32)env_get_ulong("adtb_idx", 10, 0);
Mattijs Korpershoek2b5c70a2024-07-10 10:40:02 +0200503 if (android_image_get_dtb_by_index((ulong)hdr, get_avendor_bootimg_addr(),
Safae Ouajihc60ae102023-02-06 00:50:11 +0100504 dtb_idx, &fdt_addr, &fdt_size)) {
chenshuo1c7d9042020-07-20 08:48:15 +0800505 fdt_blob = (char *)map_sysmem(fdt_addr, 0);
506 if (fdt_check_header(fdt_blob))
507 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800508
chenshuo1c7d9042020-07-20 08:48:15 +0800509 debug("## Using FDT in Android image dtb area with idx %u\n", dtb_idx);
510 } else if (!android_image_get_second(hdr, &fdt_data, &fdt_len) &&
511 !fdt_check_header((char *)fdt_data)) {
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200512 fdt_blob = (char *)fdt_data;
513 if (fdt_totalsize(fdt_blob) != fdt_len)
514 goto error;
Shawn Guoc9e71522019-01-15 22:26:37 +0800515
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200516 debug("## Using FDT in Android image second area\n");
517 } else {
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200518 fdt_addr = env_get_hex("fdtaddr", 0);
519 if (!fdt_addr)
520 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800521
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200522 fdt_blob = map_sysmem(fdt_addr, 0);
523 if (fdt_check_header(fdt_blob))
524 goto no_fdt;
Shawn Guoc9e71522019-01-15 22:26:37 +0800525
Eugeniu Roscad3617b42019-04-01 12:52:52 +0200526 debug("## Using FDT at ${fdtaddr}=Ox%lx\n", fdt_addr);
Eugeniu Rosca60a869a2019-04-01 12:45:36 +0200527 }
Shawn Guoc9e71522019-01-15 22:26:37 +0800528#endif
Simon Glassc6bdabb2013-05-08 08:06:00 +0000529 } else {
530 debug("## No Flattened Device Tree\n");
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800531 goto no_fdt;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000532 }
533
534 *of_flat_tree = fdt_blob;
535 *of_size = fdt_totalsize(fdt_blob);
536 debug(" of_flat_tree at 0x%08lx size 0x%08lx\n",
537 (ulong)*of_flat_tree, *of_size);
538
539 return 0;
540
Suriyan Ramasami00f9ca92014-11-27 13:24:16 -0800541no_fdt:
Eugeniu Roscaa7da5022019-04-01 12:45:35 +0200542 debug("Continuing to boot without FDT\n");
543 return 0;
Simon Glassc6bdabb2013-05-08 08:06:00 +0000544error:
Simon Glassc6bdabb2013-05-08 08:06:00 +0000545 return 1;
546}
Simon Glass9ca37422013-05-08 08:06:01 +0000547
548/*
549 * Verify the device tree.
550 *
551 * This function is called after all device tree fix-ups have been enacted,
552 * so that the final device tree can be verified. The definition of "verified"
553 * is up to the specific implementation. However, it generally means that the
554 * addresses of some of the devices in the device tree are compared with the
555 * actual addresses at which U-Boot has placed them.
556 *
Bin Meng75574052016-02-05 19:30:11 -0800557 * Returns 1 on success, 0 on failure. If 0 is returned, U-Boot will halt the
Simon Glass9ca37422013-05-08 08:06:01 +0000558 * boot process.
559 */
560__weak int ft_verify_fdt(void *fdt)
561{
562 return 1;
563}
564
Alexey Brodkin91a31592018-01-24 20:47:09 +0300565__weak int arch_fixup_fdt(void *blob)
566{
567 return 0;
568}
569
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530570int image_setup_libfdt(struct bootm_headers *images, void *blob, bool lmb)
Simon Glass9ca37422013-05-08 08:06:01 +0000571{
572 ulong *initrd_start = &images->initrd_start;
573 ulong *initrd_end = &images->initrd_end;
Matthias Schiffere908fec2023-12-11 12:03:17 +0100574 int ret, fdt_ret, of_size;
575
576 if (IS_ENABLED(CONFIG_OF_ENV_SETUP)) {
577 const char *fdt_fixup;
578
579 fdt_fixup = env_get("fdt_fixup");
580 if (fdt_fixup) {
581 set_working_fdt_addr(map_to_sysmem(blob));
582 ret = run_command_list(fdt_fixup, -1, 0);
583 if (ret)
584 printf("WARNING: fdt_fixup command returned %d\n",
585 ret);
586 }
587 }
588
589 ret = -EPERM;
Simon Glass9ca37422013-05-08 08:06:01 +0000590
Paul Kocialkowski2c0fbc72015-05-21 11:27:03 +0200591 if (fdt_root(blob) < 0) {
592 printf("ERROR: root node setup failed\n");
593 goto err;
594 }
Masahiro Yamada451c2042014-04-18 17:41:00 +0900595 if (fdt_chosen(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600596 printf("ERROR: /chosen node create failed\n");
597 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000598 }
Ma Haijun62358242014-07-12 14:24:06 +0100599 if (arch_fixup_fdt(blob) < 0) {
Simon Glassf3dd50b2014-10-23 18:58:53 -0600600 printf("ERROR: arch-specific fdt fixup failed\n");
601 goto err;
Ma Haijun62358242014-07-12 14:24:06 +0100602 }
Etienne Carriere2502e292020-06-05 09:22:54 +0200603
Patrick Delaunay05381402021-02-08 13:54:31 +0100604 fdt_ret = optee_copy_fdt_nodes(blob);
Etienne Carriere2502e292020-06-05 09:22:54 +0200605 if (fdt_ret) {
606 printf("ERROR: transfer of optee nodes to new fdt failed: %s\n",
607 fdt_strerror(fdt_ret));
608 goto err;
609 }
610
Daniel Gollec5df3e22022-04-12 21:00:43 +0100611 /* Store name of configuration node as u-boot,bootconf in /chosen node */
612 if (images->fit_uname_cfg)
613 fdt_find_and_setprop(blob, "/chosen", "u-boot,bootconf",
614 images->fit_uname_cfg,
615 strlen(images->fit_uname_cfg) + 1, 1);
616
Tom Rini78548ea2017-04-28 08:51:44 -0400617 /* Update ethernet nodes */
618 fdt_fixup_ethernet(blob);
Simon Glassdb5d0d22023-02-05 15:36:38 -0700619#if IS_ENABLED(CONFIG_CMD_PSTORE)
Frédéric Daniscdd6a6d2020-03-20 10:59:24 +0100620 /* Append PStore configuration */
621 fdt_fixup_pstore(blob);
622#endif
Simon Glassd49049f2021-09-25 19:43:26 -0600623 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP)) {
Wasim Khan6e5aad82021-02-04 15:44:04 +0100624 const char *skip_board_fixup;
625
626 skip_board_fixup = env_get("skip_board_fixup");
627 if (skip_board_fixup && ((int)simple_strtol(skip_board_fixup, NULL, 10) == 1)) {
628 printf("skip board fdt fixup\n");
629 } else {
630 fdt_ret = ft_board_setup(blob, gd->bd);
631 if (fdt_ret) {
632 printf("ERROR: board-specific fdt fixup failed: %s\n",
633 fdt_strerror(fdt_ret));
634 goto err;
635 }
Simon Glassf3dd50b2014-10-23 18:58:53 -0600636 }
637 }
Simon Glass336b9c72021-09-25 19:43:27 -0600638 if (IS_ENABLED(CONFIG_OF_SYSTEM_SETUP)) {
Max Krummenacher17585f22015-08-05 17:17:03 +0200639 fdt_ret = ft_system_setup(blob, gd->bd);
640 if (fdt_ret) {
Simon Glass6c0be912014-10-23 18:58:54 -0600641 printf("ERROR: system-specific fdt fixup failed: %s\n",
642 fdt_strerror(fdt_ret));
643 goto err;
644 }
645 }
Simon Glass449b7592023-11-12 08:27:48 -0700646
647 if (fdt_initrd(blob, *initrd_start, *initrd_end))
648 goto err;
649
Simon Glass80968942023-11-12 08:27:50 -0700650 if (!ft_verify_fdt(blob))
651 goto err;
652
Sughosh Ganu8231d032025-03-17 14:04:02 +0530653 if (CONFIG_IS_ENABLED(BLKMAP) && CONFIG_IS_ENABLED(EFI_LOADER)) {
654 fdt_ret = fdt_efi_pmem_setup(blob);
655 if (fdt_ret)
656 goto err;
657 }
658
Simon Glass80968942023-11-12 08:27:50 -0700659 /* after here we are using a livetree */
Simon Glassf4ff7032022-10-11 09:47:15 -0600660 if (!of_live_active() && CONFIG_IS_ENABLED(EVENT)) {
Simon Glass4305fe72022-07-30 15:52:31 -0600661 struct event_ft_fixup fixup;
662
Simon Glassf4ff7032022-10-11 09:47:15 -0600663 fixup.tree = oftree_from_fdt(blob);
Simon Glass74ba8e62022-09-06 20:26:58 -0600664 fixup.images = images;
Simon Glassf4ff7032022-10-11 09:47:15 -0600665 if (oftree_valid(fixup.tree)) {
666 ret = event_notify(EVT_FT_FIXUP, &fixup, sizeof(fixup));
667 if (ret) {
668 printf("ERROR: fdt fixup event failed: %d\n",
669 ret);
670 goto err;
671 }
Simon Glass4305fe72022-07-30 15:52:31 -0600672 }
673 }
Simon Glass9ca37422013-05-08 08:06:01 +0000674
675 /* Delete the old LMB reservation */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530676 if (CONFIG_IS_ENABLED(LMB) && lmb)
677 lmb_free(map_to_sysmem(blob), fdt_totalsize(blob));
Simon Glass9ca37422013-05-08 08:06:01 +0000678
Hannes Schmelzerd3dbac82016-09-20 18:10:43 +0200679 ret = fdt_shrink_to_minimum(blob, 0);
Simon Glass9ca37422013-05-08 08:06:01 +0000680 if (ret < 0)
Simon Glassf3dd50b2014-10-23 18:58:53 -0600681 goto err;
Simon Glass9ca37422013-05-08 08:06:01 +0000682 of_size = ret;
683
Simon Glass9ca37422013-05-08 08:06:01 +0000684 /* Create a new LMB reservation */
Sughosh Ganu291bf9c2024-08-26 17:29:18 +0530685 if (CONFIG_IS_ENABLED(LMB) && lmb)
Ilias Apalodimasf72c55e2024-12-18 09:02:32 +0200686 lmb_reserve(map_to_sysmem(blob), of_size, LMB_NONE);
Simon Glass9ca37422013-05-08 08:06:01 +0000687
Tom Rini84c0f692021-09-12 20:32:32 -0400688#if defined(CONFIG_ARCH_KEYSTONE)
Simon Glassd49049f2021-09-25 19:43:26 -0600689 if (IS_ENABLED(CONFIG_OF_BOARD_SETUP))
Vitaly Andrianova122cbb2014-04-04 13:16:47 -0400690 ft_board_setup_ex(blob, gd->bd);
691#endif
692
Simon Glass9ca37422013-05-08 08:06:01 +0000693 return 0;
Simon Glassf3dd50b2014-10-23 18:58:53 -0600694err:
695 printf(" - must RESET the board to recover.\n\n");
696
697 return ret;
Simon Glass9ca37422013-05-08 08:06:01 +0000698}