]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
gpio: sa1100: use sa11x0_gpio_set_wake()
authorRussell King <rmk+kernel@armlinux.org.uk>
Wed, 31 Aug 2016 07:49:44 +0000 (08:49 +0100)
committerLinus Walleij <linus.walleij@linaro.org>
Fri, 24 Mar 2017 13:04:13 +0000 (14:04 +0100)
Use sa11x0_gpio_set_wake() to set the PWER register, as provided by
Dmitry some time back.

Signed-off-by: Russell King <rmk+kernel@armlinux.org.uk>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
drivers/gpio/gpio-sa1100.c

index 8d8ee0ebf14c03dc96b95b8d98c2f2d2c73352c9..fb9d52a57d78286d3bc74263db11720583b9100c 100644 (file)
@@ -12,6 +12,7 @@
 #include <linux/module.h>
 #include <linux/io.h>
 #include <linux/syscore_ops.h>
+#include <soc/sa1100/pwer.h>
 #include <mach/hardware.h>
 #include <mach/irqs.h>
 
@@ -73,6 +74,7 @@ static struct gpio_chip sa1100_gpio_chip = {
 static int GPIO_IRQ_rising_edge;
 static int GPIO_IRQ_falling_edge;
 static int GPIO_IRQ_mask;
+static int GPIO_IRQ_wake;
 
 static int sa1100_gpio_type(struct irq_data *d, unsigned int type)
 {
@@ -131,11 +133,14 @@ static void sa1100_gpio_unmask(struct irq_data *d)
 
 static int sa1100_gpio_wake(struct irq_data *d, unsigned int on)
 {
-       if (on)
-               PWER |= BIT(d->hwirq);
-       else
-               PWER &= ~BIT(d->hwirq);
-       return 0;
+       int ret = sa11x0_gpio_set_wake(d->hwirq, on);
+       if (!ret) {
+               if (on)
+                       GPIO_IRQ_wake |= BIT(d->hwirq);
+               else
+                       GPIO_IRQ_wake &= ~BIT(d->hwirq);
+       }
+       return ret;
 }
 
 /*
@@ -201,8 +206,8 @@ static int sa1100_gpio_suspend(void)
        /*
         * Set the appropriate edges for wakeup.
         */
-       GRER = PWER & GPIO_IRQ_rising_edge;
-       GFER = PWER & GPIO_IRQ_falling_edge;
+       GRER = GPIO_IRQ_wake & GPIO_IRQ_rising_edge;
+       GFER = GPIO_IRQ_wake & GPIO_IRQ_falling_edge;
 
        /*
         * Clear any pending GPIO interrupts.