Re: [PATCH v4 13/33] bootstd: Add the bootstd uclass and core implementation

2022-03-12 Thread Simon Glass
Hi Ilias, On Sat, 12 Mar 2022 at 07:35, Ilias Apalodimas wrote: > > Hi Simon, > > + > > +/* For now, bind the boormethod device if none are found in the devicetree > > */ > > +int dm_scan_other(bool pre_reloc_only) > > +{ > > + struct udevice *bootstd; > > + int ret; > > + > > + /*

Re: [PATCH v4 13/33] bootstd: Add the bootstd uclass and core implementation

2022-03-12 Thread Ilias Apalodimas
Hi Simon, + > +/* For now, bind the boormethod device if none are found in the devicetree */ > +int dm_scan_other(bool pre_reloc_only) > +{ > + struct udevice *bootstd; > + int ret; > + > + /* These are not needed before relocation */ > + if (!(gd->flags & GD_FLG_RELOC)) > +

[PATCH v4 13/33] bootstd: Add the bootstd uclass and core implementation

2022-03-06 Thread Simon Glass
The 'bootstd' device provides the central information about U-Boot standard boot. Add a uclass for bootstd and the various helpers needed to make it work. Also add a binding file. Signed-off-by: Simon Glass --- Changes in v4: - NULL-terminate the default prefix list - Use new Return style in fu