Hi Miquel,

On Wed, Aug 08, 2018 at 02:33:52PM +0200, Miquel Raynal wrote:
> Hi Kurt,
>
>
> > > > +               u32 ncfgr, status;
> > > > +               int ret;
> > > > +
> > > > +               /* Trigger auto initialization */
> > > > +               ncfgr = ifc_in32(&ifc_runtime->ifc_nand.ncfgr);
> > > > +               ifc_out32(ncfgr | IFC_NAND_NCFGR_SRAM_INIT_EN, 
> > > > &ifc_runtime->ifc_nand.ncfgr);
> > > > +
> > > > +               /* Wait until done */
> > > > +               ret = readx_poll_timeout(ifc_in32, 
> > > > &ifc_runtime->ifc_nand.ncfgr,
> > > > +                                        status, !(status & 
> > > > IFC_NAND_NCFGR_SRAM_INIT_EN),
> > > > +                                        10, 1000);
> > >
> > > Nit: I always prefer when delays/timeouts are defined (and may be
> > > reused).
> >
> > Me too. I've missed that there is already a timeout constant
> > IFC_TIMEOUT_MSECS (500). As it's huge, I'll add a second one.
>
> Well, I'm not bothered with huge timeouts, it's in the error path so we
> don't really care.

okay. I'll send a v2 next week addressing your comments.

Thanks,
Kurt

Reply via email to