Re: [PATCH/RFC 2/2] arm/tegra: add timeout to PCIe PLL lockdetection loop

From: Dmitry Artamonow
Date: Tue Mar 06 2012 - 06:19:53 EST


On 10:38 Tue 06 Mar , Andi wrote:
> Hi,
>
> On Tue, Mar 6, 2012 at 9:45 AM, Dmitry Artamonow <mad_soft@xxxxxxxx> wrote:
> >        /* Wait for the PLL to lock */
> > +       timeout = 2000;
> >        do {
> >                val = pads_readl(PADS_PLL_CTL);
> > +               mdelay(1);
>
> why are you using an mdelay? If you need to sleep 1ms just use
> usleep_range or similar

This driver uses mdelay(1) in other places, so I just used it for the sake
of consistency. And as this code runs just one time on boot, there's not
really much harm in doing delay with busy loop instead of sleeping.

Anyway, I agree that sleeping is better than busy waiting in general, so
I can respin this patch using usleep_range, or else prepare incremental
patch on top of this, which will change all mdelay in driver to usleep_range.

--
Best regards,
Dmitry "MAD" Artamonow

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/