RE: [PATCH v2 2/3] ufs: poll HCS.UCRDY before issuing a UIC command

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



> >  static inline bool ufshcd_ready_for_uic_cmd(struct ufs_hba *hba)  {
> > -       return ufshcd_readl(hba, REG_CONTROLLER_STATUS) &
> > UIC_COMMAND_READY;
> > +       ktime_t timeout = ktime_add_ms(ktime_get(), UIC_CMD_TIMEOUT);
> > +       u32 val = 0;
> > +
> > +       do {
> > +               val = ufshcd_readl(hba, REG_CONTROLLER_STATUS) &
> > +                       UIC_COMMAND_READY;
> > +               if (val)
> > +                       break;
> > +               udelay(500);
> > +       } while (ktime_before(ktime_get(), timeout));
> > +
> > +       return val ? true : false;
> >  }
> Can you use read_poll_timeout() instead?
> 
> Thanks,
> Avri

Okay, thanks.




[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [SCSI Target Devel]     [Linux SCSI Target Infrastructure]     [Kernel Newbies]     [IDE]     [Security]     [Git]     [Netfilter]     [Bugtraq]     [Yosemite News]     [MIPS Linux]     [ARM Linux]     [Linux Security]     [Linux RAID]     [Linux ATA RAID]     [Linux IIO]     [Samba]     [Device Mapper]

  Powered by Linux