devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] kbuild: Ensure .dtbo targets are applied to a base .dtb
@ 2025-11-14 22:27 Rob Herring (Arm)
  2025-11-21 19:56 ` Nicolas Schier
  0 siblings, 1 reply; 3+ messages in thread
From: Rob Herring (Arm) @ 2025-11-14 22:27 UTC (permalink / raw)
  To: Nathan Chancellor, Nicolas Schier; +Cc: devicetree, linux-kbuild, linux-kernel

It is a requirement that DT overlays in the kernel are applied at build
time to a base DTB in order to validate they can be applied and to
validate them against the DT schemas. DT overlays on their own may be
incomplete and can't be validated.

Add a kbuild check so this doesn't have to be checked and fixed
periodically.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
 scripts/Makefile.dtbs | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/scripts/Makefile.dtbs b/scripts/Makefile.dtbs
index 2d321b813600..15473edc2589 100644
--- a/scripts/Makefile.dtbs
+++ b/scripts/Makefile.dtbs
@@ -10,6 +10,13 @@ real-dtb-y := $(call real-search, $(dtb-y), .dtb, -dtbs)
 # Base DTB that overlay is applied onto
 base-dtb-y := $(filter %.dtb, $(call real-search, $(multi-dtb-y), .dtb, -dtbs))
 
+# Ensure that any .dtbo is applied to at least one base .dtb. Otherwise, it
+# does not get validated.
+applied-dtbo := $(filter %.dtbo, \
+	$(call real-search, $(call multi-search, $(dtb-y) $(dtb-), .dtb, -dtbs), .dtb, -dtbs))
+unapplied-dtbo := $(filter-out $(applied-dtbo),$(filter %.dtbo, $(dtb-y)))
+$(if $(unapplied-dtbo), $(warning .dtbo is not applied to any base: $(unapplied-dtbo)))
+
 dtb-y           := $(addprefix $(obj)/, $(dtb-y))
 multi-dtb-y     := $(addprefix $(obj)/, $(multi-dtb-y))
 real-dtb-y      := $(addprefix $(obj)/, $(real-dtb-y))
-- 
2.51.0


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] kbuild: Ensure .dtbo targets are applied to a base .dtb
  2025-11-14 22:27 [PATCH] kbuild: Ensure .dtbo targets are applied to a base .dtb Rob Herring (Arm)
@ 2025-11-21 19:56 ` Nicolas Schier
  2025-11-26 22:25   ` Rob Herring
  0 siblings, 1 reply; 3+ messages in thread
From: Nicolas Schier @ 2025-11-21 19:56 UTC (permalink / raw)
  To: Rob Herring (Arm)
  Cc: Nathan Chancellor, devicetree, linux-kbuild, linux-kernel

On Fri, Nov 14, 2025 at 04:27:58PM -0600, Rob Herring (Arm) wrote:
> It is a requirement that DT overlays in the kernel are applied at build
> time to a base DTB in order to validate they can be applied and to
> validate them against the DT schemas. DT overlays on their own may be
> incomplete and can't be validated.
> 
> Add a kbuild check so this doesn't have to be checked and fixed
> periodically.
> 
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> ---
>  scripts/Makefile.dtbs | 7 +++++++
>  1 file changed, 7 insertions(+)
> 
> diff --git a/scripts/Makefile.dtbs b/scripts/Makefile.dtbs
> index 2d321b813600..15473edc2589 100644
> --- a/scripts/Makefile.dtbs
> +++ b/scripts/Makefile.dtbs
> @@ -10,6 +10,13 @@ real-dtb-y := $(call real-search, $(dtb-y), .dtb, -dtbs)
>  # Base DTB that overlay is applied onto
>  base-dtb-y := $(filter %.dtb, $(call real-search, $(multi-dtb-y), .dtb, -dtbs))
>  
> +# Ensure that any .dtbo is applied to at least one base .dtb. Otherwise, it
> +# does not get validated.
> +applied-dtbo := $(filter %.dtbo, \
> +	$(call real-search, $(call multi-search, $(dtb-y) $(dtb-), .dtb, -dtbs), .dtb, -dtbs))
> +unapplied-dtbo := $(filter-out $(applied-dtbo),$(filter %.dtbo, $(dtb-y)))
> +$(if $(unapplied-dtbo), $(warning .dtbo is not applied to any base: $(unapplied-dtbo)))
> +
>  dtb-y           := $(addprefix $(obj)/, $(dtb-y))
>  multi-dtb-y     := $(addprefix $(obj)/, $(multi-dtb-y))
>  real-dtb-y      := $(addprefix $(obj)/, $(real-dtb-y))
> -- 
> 2.51.0
> 

Acked-by: Nicolas Schier <nsc@kernel.org>

Do you take this via DT tree?

Kind regards,
Nicolas

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] kbuild: Ensure .dtbo targets are applied to a base .dtb
  2025-11-21 19:56 ` Nicolas Schier
@ 2025-11-26 22:25   ` Rob Herring
  0 siblings, 0 replies; 3+ messages in thread
From: Rob Herring @ 2025-11-26 22:25 UTC (permalink / raw)
  To: Nicolas Schier; +Cc: Nathan Chancellor, devicetree, linux-kbuild, linux-kernel

On Wed, Nov 26, 2025 at 2:49 PM Nicolas Schier <nsc@kernel.org> wrote:
>
> On Fri, Nov 14, 2025 at 04:27:58PM -0600, Rob Herring (Arm) wrote:
> > It is a requirement that DT overlays in the kernel are applied at build
> > time to a base DTB in order to validate they can be applied and to
> > validate them against the DT schemas. DT overlays on their own may be
> > incomplete and can't be validated.
> >
> > Add a kbuild check so this doesn't have to be checked and fixed
> > periodically.
> >
> > Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
> > ---
> >  scripts/Makefile.dtbs | 7 +++++++
> >  1 file changed, 7 insertions(+)
> >
> > diff --git a/scripts/Makefile.dtbs b/scripts/Makefile.dtbs
> > index 2d321b813600..15473edc2589 100644
> > --- a/scripts/Makefile.dtbs
> > +++ b/scripts/Makefile.dtbs
> > @@ -10,6 +10,13 @@ real-dtb-y := $(call real-search, $(dtb-y), .dtb, -dtbs)
> >  # Base DTB that overlay is applied onto
> >  base-dtb-y := $(filter %.dtb, $(call real-search, $(multi-dtb-y), .dtb, -dtbs))
> >
> > +# Ensure that any .dtbo is applied to at least one base .dtb. Otherwise, it
> > +# does not get validated.
> > +applied-dtbo := $(filter %.dtbo, \
> > +     $(call real-search, $(call multi-search, $(dtb-y) $(dtb-), .dtb, -dtbs), .dtb, -dtbs))
> > +unapplied-dtbo := $(filter-out $(applied-dtbo),$(filter %.dtbo, $(dtb-y)))
> > +$(if $(unapplied-dtbo), $(warning .dtbo is not applied to any base: $(unapplied-dtbo)))
> > +
> >  dtb-y           := $(addprefix $(obj)/, $(dtb-y))
> >  multi-dtb-y     := $(addprefix $(obj)/, $(multi-dtb-y))
> >  real-dtb-y      := $(addprefix $(obj)/, $(real-dtb-y))
> > --
> > 2.51.0
> >
>
> Acked-by: Nicolas Schier <nsc@kernel.org>

Thanks!

> Do you take this via DT tree?

Yes, I'll take it.

Rob

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2025-11-26 22:25 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-11-14 22:27 [PATCH] kbuild: Ensure .dtbo targets are applied to a base .dtb Rob Herring (Arm)
2025-11-21 19:56 ` Nicolas Schier
2025-11-26 22:25   ` Rob Herring

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).