Re: [PATCH 3/3] gpio: langwell: clear IRQ edge detect registers at init

From: Grant Likely
Date: Fri Apr 06 2012 - 10:45:30 EST


On Thu, 5 Apr 2012 12:15:17 +0300, Mika Westerberg <mika.westerberg@xxxxxxxxxxxxxxx> wrote:
> The boot firmware might leave the registers configured causing interrupts
> to happen even when no handler for them is yet registered. Fix this by
> clearing the IRQ edge detect registers at init.
>
> Signed-off-by: Mika Westerberg <mika.westerberg@xxxxxxxxxxxxxxx>

Applied, thanks

g.

> ---
> drivers/gpio/gpio-langwell.c | 21 +++++++++++++++++++++
> 1 files changed, 21 insertions(+), 0 deletions(-)
>
> diff --git a/drivers/gpio/gpio-langwell.c b/drivers/gpio/gpio-langwell.c
> index bc15ae3..52f00d3 100644
> --- a/drivers/gpio/gpio-langwell.c
> +++ b/drivers/gpio/gpio-langwell.c
> @@ -263,6 +263,24 @@ static void lnw_irq_handler(unsigned irq, struct irq_desc *desc)
> chip->irq_eoi(data);
> }
>
> +static void lnw_irq_init_hw(struct lnw_gpio *lnw)
> +{
> + void __iomem *reg;
> + unsigned base;
> +
> + for (base = 0; base < lnw->chip.ngpio; base += 32) {
> + /* Clear the rising-edge detect register */
> + reg = gpio_reg(&lnw->chip, base, GRER);
> + writel(0, reg);
> + /* Clear the falling-edge detect register */
> + reg = gpio_reg(&lnw->chip, base, GFER);
> + writel(0, reg);
> + /* Clear the edge detect status register */
> + reg = gpio_reg(&lnw->chip, base, GEDR);
> + writel(~0, reg);
> + }
> +}
> +
> #ifdef CONFIG_PM
> static int lnw_gpio_runtime_resume(struct device *dev)
> {
> @@ -371,6 +389,9 @@ static int __devinit lnw_gpio_probe(struct pci_dev *pdev,
> dev_err(&pdev->dev, "langwell gpiochip_add error %d\n", retval);
> goto err4;
> }
> +
> + lnw_irq_init_hw(lnw);
> +
> irq_set_handler_data(pdev->irq, lnw);
> irq_set_chained_handler(pdev->irq, lnw_irq_handler);
> for (i = 0; i < lnw->chip.ngpio; i++) {
> --
> 1.7.9.1
>

--
Grant Likely, B.Sc, P.Eng.
Secret Lab Technologies,Ltd.
--
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/