[PATCH RFT 1/4] efi: payload: ignore ESP state.dtb if device tree is populated
Fabian Pflug
f.pflug at pengutronix.de
Tue Sep 1 08:16:41 PDT 2026
Hey,
On Wed, 2026-08-26 at 14:15 +0200, Ahmad Fatoum wrote:
> In preparation for allowing the state nodes to ship inside the barebox
> binary (as we do for non-EFI-payload already), add provisions to skip
> the external file if barebox already has a populated DT.
>
> Also for the case that a state had already been set up, skip manual
> creation of the state node.
>
> Assisted-by: Claude:opus-5
> Signed-off-by: Ahmad Fatoum <a.fatoum at pengutronix.de>
> ---
> efi/payload/init.c | 16 ++++++++++++++++
> 1 file changed, 16 insertions(+)
>
> diff --git a/efi/payload/init.c b/efi/payload/init.c
> index 1e5f2eb8cf56..db4bc25682a3 100644
> --- a/efi/payload/init.c
> +++ b/efi/payload/init.c
> @@ -284,6 +284,7 @@ static int efi_late_init(void)
> {
> const char *state_desc = "/boot/EFI/barebox/state.dtb";
> struct device_node *state_root = NULL;
> + struct device_node *root;
> size_t size;
> void *fdt;
> int ret;
> @@ -303,6 +304,17 @@ static int efi_late_init(void)
> return 0;
> }
>
> + /*
> + * A device tree built into barebox takes precedence: any state it
> + * describes has been instantiated by the state driver already.
> + */
> + root = of_get_root_node();
> + if (root && !list_empty(&root->children)) {
> + pr_warn("device tree is populated, ignoring %s\n", state_desc);
> + free(fdt);
> + return 0;
> + }
I would put the check a bit earlier and more sophisticated. Currently I either get an info message, that the state.dtb
could not be found, or a warning, if it could be found, but the compiled in dts takes precedence.
The first is confusing when looking at dmesg.
/Fabian
> +
> state_root = of_unflatten_dtb(fdt, size);
> free(fdt);
>
> @@ -320,6 +332,10 @@ static int efi_late_init(void)
> return 0;
> }
>
> + /* probing the registered tree may have instantiated it already */
> + if (state_by_node(np))
> + return 0;
> +
> state = state_new_from_node(np, false);
> if (IS_ERR(state))
> return PTR_ERR(state);
More information about the barebox
mailing list