diff options
author | Andrew Lunn <andrew@lunn.ch> | 2012-10-27 09:28:58 -0400 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2012-10-30 17:34:20 -0400 |
commit | 8fcff5f13773aa3898df1d13a1615d468079cb15 (patch) | |
tree | 6ac1aac693b076871edfa4855635b66bde74a832 /drivers/gpio/gpio-mvebu.c | |
parent | c9c55d9211150b589d2d39a45cf5f96c70a51a47 (diff) |
GPIO: mvebu-gpio: Don't initialize the mask_cache
Due to the SMP nature of some of the chips, which have per CPU
registers, the driver does not use the generic irq_gc_mask_set_bit() &
irq_gc_mask_clr_bit() functions, which only support a single register.
The driver has its own implementation of these functions, which can
pick the correct register depending on the CPU being used. The
functions do however use the gc->mask_cache value.
The call to irq_setup_generic_chip() was passing
IRQ_GC_INIT_MASK_CACHE, which caused the gc->mask_cache to be
initialized to the contents of some random register. This resulted in
unexpected interrupts been delivered from random GPIO lines.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Tested-by: Jamie Lentin <jm@lentin.co.uk>
Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Tested-by: Michael Walle <michael@walle.cc>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/gpio/gpio-mvebu.c')
-rw-r--r-- | drivers/gpio/gpio-mvebu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpio/gpio-mvebu.c b/drivers/gpio/gpio-mvebu.c index 1bb43e3f9a61..fec421fe59b2 100644 --- a/drivers/gpio/gpio-mvebu.c +++ b/drivers/gpio/gpio-mvebu.c | |||
@@ -643,7 +643,7 @@ static int __devinit mvebu_gpio_probe(struct platform_device *pdev) | |||
643 | ct->handler = handle_edge_irq; | 643 | ct->handler = handle_edge_irq; |
644 | ct->chip.name = mvchip->chip.label; | 644 | ct->chip.name = mvchip->chip.label; |
645 | 645 | ||
646 | irq_setup_generic_chip(gc, IRQ_MSK(ngpios), IRQ_GC_INIT_MASK_CACHE, | 646 | irq_setup_generic_chip(gc, IRQ_MSK(ngpios), 0, |
647 | IRQ_NOREQUEST, IRQ_LEVEL | IRQ_NOPROBE); | 647 | IRQ_NOREQUEST, IRQ_LEVEL | IRQ_NOPROBE); |
648 | 648 | ||
649 | /* Setup irq domain on top of the generic chip. */ | 649 | /* Setup irq domain on top of the generic chip. */ |