On Tue, Sep 4, 2018 at 8:49 PM Frank Rowand <frowand.list@xxxxxxxxx> wrote: > > On 08/30/18 12:05, Rob Herring wrote: > > Scan the root node properties (#{size,address}-cells) earlier, > > ^^^^^^^ > before mdesc->dt_fixup() is called > > > so that > > the dt_root_addr_cells and dt_root_size_cells variables are initialized > > and can be used. > by mdesc->dt_fixup() That's an ARM specific detail. Granted, ARM is the only caller. > > > > Cc: Frank Rowand <frowand.list@xxxxxxxxx> > > Signed-off-by: Rob Herring <robh@xxxxxxxxxx> > > --- > > drivers/of/fdt.c | 7 ++++--- > > 1 file changed, 4 insertions(+), 3 deletions(-) > > > Moving early_init_dt_scan_root() to inside early_init_dt_verify() > puts something that has nothing to do with verifying the fdt > into a function whose purpose is the verify. It hides the side > effect of initializing the dt_root_addr_cells and dt_root_size_cells > variables. It already has the side effect of setting initial_boot_params which every subsequent function needs. > I suggest creating a new function early_init_dt_scan_init_pre_dt_fixup(), > move the chunk of code there instead of to early_init_dt_scan_nodes(), > and call the new function from setup_machine_fdt(), just before > calling mdesc->dt_fixup(). This would be a little bit more code, > but more clearly showing the intent. I'm trying to reduce the number of functions arches call and renaming would need a bunch of arch changes. This change will also let me make early_init_dt_scan_root private as powerpc is the only user. I need to dust off a patch for that. I'd be more inclined to push exynos to remove this altogether. After all, if they claim their bindings are unstable, they can't really claim their bootloader is stable/fixed. Rob