atheros: leave the gpio interrupts alone when user space changes the gpio input setti...
authorFelix Fietkau <nbd@openwrt.org>
Sun, 11 Oct 2009 19:50:16 +0000 (19:50 +0000)
committerFelix Fietkau <nbd@openwrt.org>
Sun, 11 Oct 2009 19:50:16 +0000 (19:50 +0000)
SVN-Revision: 18036

target/linux/atheros/patches-2.6.30/100-board.patch
target/linux/atheros/patches-2.6.30/105-ar2315_pci.patch
target/linux/atheros/patches-2.6.31/100-board.patch
target/linux/atheros/patches-2.6.31/105-ar2315_pci.patch

index 4367ce413dbf1943a6baae5baaa9e718f3a67a26..5f51293714f2402336f4f0d4ea678ec4401c208f 100644 (file)
 +
 --- /dev/null
 +++ b/arch/mips/ar231x/ar2315.c
-@@ -0,0 +1,643 @@
+@@ -0,0 +1,658 @@
 +/*
 + * This file is subject to the terms and conditions of the GNU General Public
 + * License.  See the file "COPYING" in the main directory of this archive
 +      if (!pend)
 +              ar231x_write_reg(AR2315_ISR, AR2315_ISR_GPIO);
 +
++      /* Enable interrupt with edge detection */
++      if ((ar231x_read_reg(AR2315_GPIO_CR) & AR2315_GPIO_CR_M(bit)) != AR2315_GPIO_CR_I(bit))
++              return;
++
 +      if (bit >= 0)
 +              do_IRQ(AR531X_GPIO_IRQ_BASE + bit);
 +}
 +{
 +      unsigned int gpio = irq - AR531X_GPIO_IRQ_BASE;
 +
-+      /* reconfigure GPIO line as input */
-+      ar231x_mask_reg(AR2315_GPIO_CR, AR2315_GPIO_CR_M(gpio), AR2315_GPIO_CR_I(gpio));
-+
 +      /* Enable interrupt with edge detection */
++      if ((ar231x_read_reg(AR2315_GPIO_CR) & AR2315_GPIO_CR_M(gpio)) != AR2315_GPIO_CR_I(gpio))
++              return;
++
 +      gpiointmask |= (1 << gpio);
 +      ar2315_set_gpiointmask(gpio, 3);
 +}
 +
++static unsigned int ar2315_gpio_intr_startup(unsigned int irq)
++{
++      unsigned int gpio = irq - AR531X_GPIO_IRQ_BASE;
++
++      /* reconfigure GPIO line as input */
++      ar231x_mask_reg(AR2315_GPIO_CR, AR2315_GPIO_CR_M(gpio), AR2315_GPIO_CR_I(gpio));
++      ar2315_gpio_intr_enable(irq);
++      return 0;
++}
++
 +static void ar2315_gpio_intr_disable(unsigned int irq)
 +{
 +      unsigned int gpio = irq - AR531X_GPIO_IRQ_BASE;
 +
 +static struct irq_chip ar2315_gpio_intr_controller = {
 +      .typename       = "AR2315-GPIO",
++      .startup  = ar2315_gpio_intr_startup,
 +      .ack      = ar2315_gpio_intr_disable,
 +      .mask_ack = ar2315_gpio_intr_disable,
 +      .mask     = ar2315_gpio_intr_disable,
index f5f0956e118fa6a4829cc216b5086bc2fafba37b..9b76dfee46c1c1986abb97f3be95f880f07115c8 100644 (file)
 +      default y
 --- a/arch/mips/ar231x/ar2315.c
 +++ b/arch/mips/ar231x/ar2315.c
-@@ -59,6 +59,27 @@ static inline void ar2315_gpio_irq(void)
+@@ -63,6 +63,27 @@ static inline void ar2315_gpio_irq(void)
                do_IRQ(AR531X_GPIO_IRQ_BASE + bit);
  }
  
  
  /*
   * Called when an interrupt is received, this function
-@@ -77,6 +98,10 @@ ar2315_irq_dispatch(void)
+@@ -81,6 +102,10 @@ ar2315_irq_dispatch(void)
                do_IRQ(AR2315_IRQ_WLAN0_INTRS);
        else if (pending & CAUSEF_IP4)
                do_IRQ(AR2315_IRQ_ENET0_INTRS);
index be6d64d633f8be3e72e00630a23aa64dd60c2fd0..e54a47032e9027abfd8a15a38523d33034a8c120 100644 (file)
 +
 --- /dev/null
 +++ b/arch/mips/ar231x/ar2315.c
-@@ -0,0 +1,643 @@
+@@ -0,0 +1,658 @@
 +/*
 + * This file is subject to the terms and conditions of the GNU General Public
 + * License.  See the file "COPYING" in the main directory of this archive
 +      if (!pend)
 +              ar231x_write_reg(AR2315_ISR, AR2315_ISR_GPIO);
 +
++      /* Enable interrupt with edge detection */
++      if ((ar231x_read_reg(AR2315_GPIO_CR) & AR2315_GPIO_CR_M(bit)) != AR2315_GPIO_CR_I(bit))
++              return;
++
 +      if (bit >= 0)
 +              do_IRQ(AR531X_GPIO_IRQ_BASE + bit);
 +}
 +{
 +      unsigned int gpio = irq - AR531X_GPIO_IRQ_BASE;
 +
-+      /* reconfigure GPIO line as input */
-+      ar231x_mask_reg(AR2315_GPIO_CR, AR2315_GPIO_CR_M(gpio), AR2315_GPIO_CR_I(gpio));
-+
 +      /* Enable interrupt with edge detection */
++      if ((ar231x_read_reg(AR2315_GPIO_CR) & AR2315_GPIO_CR_M(gpio)) != AR2315_GPIO_CR_I(gpio))
++              return;
++
 +      gpiointmask |= (1 << gpio);
 +      ar2315_set_gpiointmask(gpio, 3);
 +}
 +
++static unsigned int ar2315_gpio_intr_startup(unsigned int irq)
++{
++      unsigned int gpio = irq - AR531X_GPIO_IRQ_BASE;
++
++      /* reconfigure GPIO line as input */
++      ar231x_mask_reg(AR2315_GPIO_CR, AR2315_GPIO_CR_M(gpio), AR2315_GPIO_CR_I(gpio));
++      ar2315_gpio_intr_enable(irq);
++      return 0;
++}
++
 +static void ar2315_gpio_intr_disable(unsigned int irq)
 +{
 +      unsigned int gpio = irq - AR531X_GPIO_IRQ_BASE;
 +
 +static struct irq_chip ar2315_gpio_intr_controller = {
 +      .typename       = "AR2315-GPIO",
++      .startup  = ar2315_gpio_intr_startup,
 +      .ack      = ar2315_gpio_intr_disable,
 +      .mask_ack = ar2315_gpio_intr_disable,
 +      .mask     = ar2315_gpio_intr_disable,
index f5f0956e118fa6a4829cc216b5086bc2fafba37b..9b76dfee46c1c1986abb97f3be95f880f07115c8 100644 (file)
 +      default y
 --- a/arch/mips/ar231x/ar2315.c
 +++ b/arch/mips/ar231x/ar2315.c
-@@ -59,6 +59,27 @@ static inline void ar2315_gpio_irq(void)
+@@ -63,6 +63,27 @@ static inline void ar2315_gpio_irq(void)
                do_IRQ(AR531X_GPIO_IRQ_BASE + bit);
  }
  
  
  /*
   * Called when an interrupt is received, this function
-@@ -77,6 +98,10 @@ ar2315_irq_dispatch(void)
+@@ -81,6 +102,10 @@ ar2315_irq_dispatch(void)
                do_IRQ(AR2315_IRQ_WLAN0_INTRS);
        else if (pending & CAUSEF_IP4)
                do_IRQ(AR2315_IRQ_ENET0_INTRS);