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

From: Andi
Date: Tue Mar 06 2012 - 04:38:16 EST


Hi,

On Tue, Mar 6, 2012 at 9:45 AM, Dmitry Artamonow <mad_soft@xxxxxxxx> wrote:
> Tegra PCIe driver waits for PLL to lock using busy loop.
> If PLL fails to lock for some reason, this leads to silent lockup
> while booting (as PCIe code is not modular).
>
> Fix by adding timeout, so if PLL doesn't lock in a couple
> of seconds, just PCIe driver fails and machine continues to boot.
>
> Signed-off-by: Dmitry Artamonow <mad_soft@xxxxxxxx>
> ---
> Âarch/arm/mach-tegra/pcie.c | Â 14 +++++++++++---
> Â1 files changed, 11 insertions(+), 3 deletions(-)
>
> diff --git a/arch/arm/mach-tegra/pcie.c b/arch/arm/mach-tegra/pcie.c
> index 14b29ab..ffdfdd4 100644
> --- a/arch/arm/mach-tegra/pcie.c
> +++ b/arch/arm/mach-tegra/pcie.c
> @@ -585,10 +585,10 @@ static void tegra_pcie_setup_translations(void)
> Â Â Â Âafi_writel(0, AFI_MSI_BAR_SZ);
> Â}
>
> -static void tegra_pcie_enable_controller(void)
> +static int tegra_pcie_enable_controller(void)
> Â{
> Â Â Â Âu32 val, reg;
> - Â Â Â int i;
> + Â Â Â int i, timeout;
>
> Â Â Â Â/* Enable slot clock and pulse the reset signals */
> Â Â Â Âfor (i = 0, reg = AFI_PEX0_CTRL; i < 2; i++, reg += 0x8) {
> @@ -639,8 +639,14 @@ static void tegra_pcie_enable_controller(void)
> Â Â Â Âpads_writel(0xfa5cfa5c, 0xc8);
>
> Â Â Â Â/* 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

Andi

> + Â Â Â Â Â Â Â if (--timeout == 0) {
> + Â Â Â Â Â Â Â Â Â Â Â pr_err("Tegra PCIe error: timeout waiting for PLL\n");
> + Â Â Â Â Â Â Â Â Â Â Â return -EBUSY;
> + Â Â Â Â Â Â Â }
> Â Â Â Â} while (!(val & PADS_PLL_CTL_LOCKDET));
>
> Â Â Â Â/* turn off IDDQ override */
> @@ -921,7 +927,9 @@ int __init tegra_pcie_init(bool init_port0, bool init_port1)
> Â Â Â Âif (err)
> Â Â Â Â Â Â Â Âreturn err;
>
> - Â Â Â tegra_pcie_enable_controller();
> + Â Â Â err = tegra_pcie_enable_controller();
> + Â Â Â if (err)
> + Â Â Â Â Â Â Â return err;
>
> Â Â Â Â/* setup the AFI address translations */
> Â Â Â Âtegra_pcie_setup_translations();
> --
> 1.7.5.1.300.gc565c
>
> --
> 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/
--
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/