From: Marco Felsch <m.felsch@pengutronix.de>
To: Sascha Hauer <s.hauer@pengutronix.de>,
BAREBOX <barebox@lists.infradead.org>
Cc: Marco Felsch <m.felsch@pengutronix.de>
Subject: [PATCH v2 05/15] pbl: fdt: add pbl_load_fdt helper
Date: Wed, 04 Feb 2026 21:01:21 +0100 [thread overview]
Message-ID: <20260204-v2025-09-0-topic-optee-of-handling-v2-5-da075e6818e0@pengutronix.de> (raw)
In-Reply-To: <20260204-v2025-09-0-topic-optee-of-handling-v2-0-da075e6818e0@pengutronix.de>
The helper provides a common FDT load mechanism to load the (optional
compressed) DTB to the provided destination address in a user agnostic
manner.
Early FDTs may be useful for other firmware binaries like TEEs (e.g.
OP-TEE) which are loaded and started during the barebox boot phase.
Signed-off-by: Marco Felsch <m.felsch@pengutronix.de>
---
include/pbl.h | 2 ++
pbl/fdt.c | 79 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 81 insertions(+)
diff --git a/include/pbl.h b/include/pbl.h
index 14a463ef8a9f18e42a3332889ca8d9b30d8f1ceb..514f1143706785946e4190f23f95422f23df42e3 100644
--- a/include/pbl.h
+++ b/include/pbl.h
@@ -31,6 +31,8 @@ fdt_device_get_match_data(const void *fdt, const char *nodepath,
int pbl_barebox_verify(const void *compressed_start, unsigned int len,
const void *hash, unsigned int hash_len);
+int pbl_load_fdt(const void *fdt, void *dest, int destsize);
+
#endif
void __noreturn barebox_pbl_entry(ulong, ulong, void *);
diff --git a/pbl/fdt.c b/pbl/fdt.c
index ac377446caeafb1beaeb211aa8bdec8767ae21fe..3c90959f8e73ea7310248f9b31359d6e8a86ae57 100644
--- a/pbl/fdt.c
+++ b/pbl/fdt.c
@@ -1,8 +1,10 @@
// SPDX-License-Identifier: GPL-2.0
+#include <compressed-dtb.h>
#include <linux/libfdt.h>
#include <pbl.h>
#include <linux/printk.h>
#include <stdio.h>
+#include <uncompress.h>
static const __be32 *fdt_parse_reg(const __be32 *reg, uint32_t n,
uint64_t *val)
@@ -185,3 +187,80 @@ const void *fdt_device_get_match_data(const void *fdt, const char *nodepath,
return NULL;
}
+
+static int pbl_open_dtbz_into(const void *fdt, void *buf, int bufsize)
+{
+ const struct barebox_boarddata_compressed_dtb *compressed_dtb;
+ int error;
+
+ if (!fdt_blob_can_be_decompressed(fdt)) {
+ pr_warn("DTB can't be decompressed\n");
+ return -EINVAL;
+ }
+
+ compressed_dtb = fdt;
+
+ if (IS_ENABLED(CONFIG_IMAGE_COMPRESSION_NONE)) {
+ error = fdt_open_into(compressed_dtb->data, buf, bufsize);
+ if (error) {
+ pr_warn("Failed to open uncompressed DTB with %s\n",
+ fdt_strerror(error));
+ return -EINVAL;
+ }
+ return 0;
+ }
+
+ if (bufsize < compressed_dtb->datalen_uncompressed) {
+ pr_warn("FDT buffer to small, min. %u bytes required\n",
+ compressed_dtb->datalen_uncompressed);
+ return -EINVAL;
+ }
+
+ /*
+ * No error handling required, since this will hang() if uncompress
+ * fails.
+ */
+ pbl_dtbz_uncompress(buf, (void *)compressed_dtb->data,
+ compressed_dtb->datalen);
+
+ if (!blob_is_fdt(buf)) {
+ pr_warn("Failed to determine FDT type for uncompressed DTB\n");
+ return -EINVAL;
+ }
+
+ /* Required to setup size data structures to allow runtime adaptions */
+ error = fdt_open_into(buf, buf, bufsize);
+ if (error) {
+ pr_warn("Failed to open decompressed DTB with %s\n",
+ fdt_strerror(error));
+ return -EINVAL;
+ }
+
+ return 0;
+}
+
+int pbl_load_fdt(const void *fdt, void *dest, int destsize)
+{
+ if (destsize == 0 || !dest || !fdt) {
+ pr_warn("Skip early FDT load, invalid input\n");
+ return -EINVAL;
+ }
+
+ if (blob_is_fdt(fdt)) {
+ int error;
+
+ error = fdt_open_into(fdt, dest, destsize);
+ if (error) {
+ pr_warn("Failed to uncompressed DTB with %s\n",
+ fdt_strerror(error));
+ return -EINVAL;
+ }
+ return 0;
+ } else if (blob_is_compressed_fdt(fdt)) {
+ return pbl_open_dtbz_into(fdt, dest, destsize);
+ }
+
+ pr_warn("FDT detection failed\n");
+
+ return -EINVAL;
+}
--
2.47.3
next prev parent reply other threads:[~2026-02-04 20:02 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-04 20:01 [PATCH v2 00/15] Improve OP-TEE handling Marco Felsch
2026-02-04 20:01 ` [PATCH v2 01/15] ARM: i.MX8M: add support to pass DT via lowlevel __imx8m*_load_and_start_image_via_tfa() Marco Felsch
2026-02-06 9:04 ` Ahmad Fatoum
2026-02-04 20:01 ` [PATCH v2 02/15] ARM: i.MX8M: move BL32 setup into imx8m_tfa_start_bl31() Marco Felsch
2026-02-04 20:01 ` [PATCH v2 03/15] ARM: i.MX8M: imx8m_tfa_start_bl31() add support for bl33 and fdt Marco Felsch
2026-02-04 20:01 ` [PATCH v2 04/15] pbl: decomp: add pbl_dtbz_uncompress helper Marco Felsch
2026-02-04 20:01 ` Marco Felsch [this message]
2026-02-06 9:16 ` [PATCH v2 05/15] pbl: fdt: add pbl_load_fdt helper Ahmad Fatoum
2026-02-04 20:01 ` [PATCH v2 06/15] ARM: i.MX: scratch: add FDT support Marco Felsch
2026-02-06 9:40 ` Ahmad Fatoum
2026-02-06 10:02 ` Marco Felsch
2026-02-06 13:01 ` Ahmad Fatoum
2026-02-09 20:50 ` Marco Felsch
2026-02-09 20:59 ` Ahmad Fatoum
2026-02-10 9:35 ` Marco Felsch
2026-02-10 9:41 ` Ahmad Fatoum
2026-02-04 20:01 ` [PATCH v2 07/15] ARM: i.MX8M: esdctl: drop ddrc base from imx8m_ddrc_sdram_size Marco Felsch
2026-02-04 20:01 ` [PATCH v2 08/15] ARM: i.MX8M: esdctl: export imx8m_ddrc_sdram_size() Marco Felsch
2026-02-04 20:01 ` [PATCH v2 09/15] ARM: i.MX8M: add support to pass BL3x bl_params Marco Felsch
2026-02-05 17:02 ` Michael Tretter
2026-02-05 22:41 ` Marco Felsch
2026-02-06 10:20 ` Ahmad Fatoum
2026-02-06 13:46 ` Marco Felsch
2026-02-06 11:55 ` Ahmad Fatoum
2026-02-04 20:01 ` [PATCH v2 10/15] handoff-data: Add TEE_DT_OVL entry Marco Felsch
2026-02-06 11:56 ` Ahmad Fatoum
2026-02-04 20:01 ` [PATCH v2 11/15] security: optee: add optee_handoff_overlay helper Marco Felsch
2026-02-06 12:25 ` Ahmad Fatoum
2026-02-09 20:18 ` Marco Felsch
2026-02-04 20:01 ` [PATCH v2 12/15] security: optee: add helpers to register OF overlays Marco Felsch
2026-02-06 12:09 ` Ahmad Fatoum
2026-02-09 20:17 ` Marco Felsch
2026-02-04 20:01 ` [PATCH v2 13/15] ARM: i.MX8M: Pass optional OP-TEE overlay to barebox Marco Felsch
2026-02-06 12:04 ` Ahmad Fatoum
2026-02-04 20:01 ` [PATCH v2 14/15] of: base: register optional OP-TEE overlay Marco Felsch
2026-02-06 12:05 ` Ahmad Fatoum
2026-02-06 13:24 ` Marco Felsch
2026-02-04 20:01 ` [PATCH v2 15/15] handoff-data: add missing include Marco Felsch
2026-02-06 12:07 ` Ahmad Fatoum
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260204-v2025-09-0-topic-optee-of-handling-v2-5-da075e6818e0@pengutronix.de \
--to=m.felsch@pengutronix.de \
--cc=barebox@lists.infradead.org \
--cc=s.hauer@pengutronix.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox