[RFC PATCH 1/2 v2] tools: binman: control.py: Propagate bootph-* properties to supernodes
Simon Glass
sjg at chromium.org
Sat Mar 29 00:47:47 CET 2025
Hi Quentin,
On Fri, 28 Mar 2025 at 14:46, Quentin Schulz <quentin.schulz at cherry.de> wrote:
>
> Hi Moteen,
>
> On 3/27/25 9:06 AM, Moteen Shah wrote:
> > Add a function to scan through all the nodes in the device-tree
> > recusively for bootph-* property. If found, propagate it to all
> > of its parent nodes up the hierarchy.
> >
> > Signed-off-by: Moteen Shah <m-shah at ti.com>
> > ---
> > tools/binman/control.py | 35 ++++++++++++++++++++++++++++++++++-
> > 1 file changed, 34 insertions(+), 1 deletion(-)
> >
> > diff --git a/tools/binman/control.py b/tools/binman/control.py
> > index e73c598298c..e739949d366 100644
> > --- a/tools/binman/control.py
> > +++ b/tools/binman/control.py
> > @@ -526,6 +526,35 @@ def _RemoveTemplates(parent):
> > if node.name.startswith('template'):
> > node.Delete()
> >
> > +def prop_bootph_to_parent(node, prop, dtb):
> > + """Propagates bootph-* property to all the parent
> > + nodes up the hierarchy
> > + """
> > + parent = node.parent
> > + if parent == None or parent.props.get(prop):
> > + return
> > +
> > + while parent:
> > + parent.AddEmptyProp(prop, 0)
> > + parent = parent.parent
> > +
> > +def scan_and_prop_bootph(node, dtb):
> > + """Scan the device tree and set the bootph-* property if its present
> > + in subnode
> > +
> > + This is used to set the bootph-* property in the parent node if a
> > + "bootph-*" property is found in any of the subnodes of the parent
> > + node.
> > + """
> > + bootph_prop = ['bootph-all', 'bootph-some-ram', 'bootph-pre-ram', 'bootph-pre-sram']
> > +
>
> This should only be done for U-Boot proper DTB I believe, otherwise
> it'll cause FDT size increase for TPL/SPL/VPL/whatever where we may be
> extremely size-constrained. Furthermore, TPL/SPL/VPL should not need
> this since they get a subset of the actual full DTB (see
> scripts/Makefile.lib and fdtgrep_props), only containing the DT node
> that are relevant for the stage in question. The only exception I can
> think of right now is if we use bloblist or any other mechanism having
> the full DT passed from stage to stage.
>
> Maybe the solution is to have it as part of
> tools/binman/etype/u_boot_dtb.py only?
The location of this code is where it is handling the U-Boot device
tree, so it won't affect xPL versions.
But it is possible to add a check for this into the test.
>
> Also, I imagine we want to support this for systems which do not use
> binman (yet?)?
Nope, sorry :-) They can enable binman if they want this.
Regards,
Simon
More information about the U-Boot
mailing list