public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [OMAP] gpio: Simultaneously requested rising and falling edge
@ 2009-12-11  3:59 Cory Maccarrone
  2009-12-11 16:07 ` Kevin Hilman
  0 siblings, 1 reply; 3+ messages in thread
From: Cory Maccarrone @ 2009-12-11  3:59 UTC (permalink / raw)
  To: linux-omap; +Cc: Cory Maccarrone

Some chips, namely any OMAP1 chips using METHOD_MPUIO,
OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
interrupts in both rising and falling edge directions -- they can
only respond to one direction or the other, depending on how the
ICR is configured.

This change implements a toggle function that will modify the ICR
to flip the direction of interrupt for IRQs that are requested with
both rising and falling flags.  The toggle function is a noop for
chips and GPIOs it does not apply to.

Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
---
 arch/arm/plat-omap/gpio.c |   60 +++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 60 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c
index 055160e..b594398 100644
--- a/arch/arm/plat-omap/gpio.c
+++ b/arch/arm/plat-omap/gpio.c
@@ -749,6 +749,53 @@ static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio,
 }
 #endif
 
+/*
+ * This only applies to chips that can't do both rising and falling edge
+ * detection at once.  For all other chips, this function is a noop.
+ */
+static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
+{
+	void __iomem *reg = bank->base;
+	u32 l = 0;
+
+	switch (bank->method) {
+#ifdef CONFIG_ARCH_OMAP1
+	case METHOD_MPUIO:
+		reg += OMAP_MPUIO_GPIO_INT_EDGE;
+		l = __raw_readl(reg);
+		if ((l >> gpio) & 1)
+			l &= ~(1 << gpio);
+		else
+			l |= 1 << gpio;
+		break;
+#endif
+#ifdef CONFIG_ARCH_OMAP15XX
+	case METHOD_GPIO_1510:
+		reg += OMAP1510_GPIO_INT_CONTROL;
+		l = __raw_readl(reg);
+		if ((l >> gpio) & 1)
+			l &= ~(1 << gpio);
+		else
+			l |= 1 << gpio;
+		break;
+#endif
+#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
+	case METHOD_GPIO_7XX:
+		reg += OMAP7XX_GPIO_INT_CONTROL;
+		l = __raw_readl(reg);
+		if ((l >> gpio) & 1) {
+			l &= ~(1 << gpio);
+		} else {
+			l |= 1 << gpio;
+		}
+		break;
+#endif
+	default:
+		return;
+	}
+	__raw_writel(l, reg);
+}
+
 static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
 {
 	void __iomem *reg = bank->base;
@@ -1284,9 +1331,22 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
 
 		gpio_irq = bank->virtual_irq_start;
 		for (; isr != 0; isr >>= 1, gpio_irq++) {
+			struct irq_desc *desc = irq_to_desc(gpio_irq);
 			if (!(isr & 1))
 				continue;
 
+			/*
+			 * Some chips can't respond to both rising and falling at the
+			 * same time.  If this irq was requested with both flags, we
+			 * need to flip the ICR data for the IRQ to respond to the
+			 * IRQ for the opposite direction.
+			 */
+			if (desc->status & IRQ_TYPE_EDGE_FALLING &&
+			    desc->status & IRQ_TYPE_EDGE_RISING)
+				_toggle_gpio_edge_triggering(
+						get_irq_chip_data(gpio_irq),
+						get_gpio_index(irq_to_gpio(gpio_irq)));
+
 			generic_handle_irq(gpio_irq);
 		}
 	}
-- 
1.6.3.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] [OMAP] gpio: Simultaneously requested rising and falling edge
  2009-12-11  3:59 [PATCH] [OMAP] gpio: Simultaneously requested rising and falling edge Cory Maccarrone
@ 2009-12-11 16:07 ` Kevin Hilman
  2009-12-11 19:43   ` Cory Maccarrone
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Hilman @ 2009-12-11 16:07 UTC (permalink / raw)
  To: Cory Maccarrone; +Cc: linux-omap

Cory Maccarrone <darkstar6262@gmail.com> writes:

> Some chips, namely any OMAP1 chips using METHOD_MPUIO,
> OMAP15xx and OMAP7xx, cannot be setup to respond to on-chip GPIO
> interrupts in both rising and falling edge directions -- they can
> only respond to one direction or the other, depending on how the
> ICR is configured.
>
> This change implements a toggle function that will modify the ICR
> to flip the direction of interrupt for IRQs that are requested with
> both rising and falling flags.  The toggle function is a noop for
> chips and GPIOs it does not apply to.

I think this needs a little more description.  In particular you
should describe that this toggle happens on *every* interrupt, and
why.

Also, it's not exactly a noop for non-OMAP1.  More on this below...

> Signed-off-by: Cory Maccarrone <darkstar6262@gmail.com>
> ---
>  arch/arm/plat-omap/gpio.c |   60 +++++++++++++++++++++++++++++++++++++++++++++
>  1 files changed, 60 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/plat-omap/gpio.c b/arch/arm/plat-omap/gpio.c
> index 055160e..b594398 100644
> --- a/arch/arm/plat-omap/gpio.c
> +++ b/arch/arm/plat-omap/gpio.c
> @@ -749,6 +749,53 @@ static inline void set_24xx_gpio_triggering(struct gpio_bank *bank, int gpio,
>  }
>  #endif
>  
> +/*
> + * This only applies to chips that can't do both rising and falling edge
> + * detection at once.  For all other chips, this function is a noop.
> + */

Not exactly a noop.  This function is called for non-OMAP1 as well...

> +static void _toggle_gpio_edge_triggering(struct gpio_bank *bank, int gpio)
> +{
> +	void __iomem *reg = bank->base;
> +	u32 l = 0;
> +
> +	switch (bank->method) {
> +#ifdef CONFIG_ARCH_OMAP1
> +	case METHOD_MPUIO:
> +		reg += OMAP_MPUIO_GPIO_INT_EDGE;
> +		l = __raw_readl(reg);
> +		if ((l >> gpio) & 1)
> +			l &= ~(1 << gpio);
> +		else
> +			l |= 1 << gpio;
> +		break;
> +#endif
> +#ifdef CONFIG_ARCH_OMAP15XX
> +	case METHOD_GPIO_1510:
> +		reg += OMAP1510_GPIO_INT_CONTROL;
> +		l = __raw_readl(reg);
> +		if ((l >> gpio) & 1)
> +			l &= ~(1 << gpio);
> +		else
> +			l |= 1 << gpio;
> +		break;
> +#endif
> +#if defined(CONFIG_ARCH_OMAP730) || defined(CONFIG_ARCH_OMAP850)
> +	case METHOD_GPIO_7XX:
> +		reg += OMAP7XX_GPIO_INT_CONTROL;
> +		l = __raw_readl(reg);
> +		if ((l >> gpio) & 1) {
> +			l &= ~(1 << gpio);
> +		} else {
> +			l |= 1 << gpio;
> +		}
> +		break;
> +#endif
> +	default:
> +		return;
> +	}
> +	__raw_writel(l, reg);

...and will write a zero to offset zero of the GPIO bank regs
(GPIO_REVISION reg).  While ths is a read-only reg and *should* have
no effect, the point is that this function should not be called for
non-OMAP1.

> +}
> +
>  static int _set_gpio_triggering(struct gpio_bank *bank, int gpio, int trigger)
>  {
>  	void __iomem *reg = bank->base;
> @@ -1284,9 +1331,22 @@ static void gpio_irq_handler(unsigned int irq, struct irq_desc *desc)
>  
>  		gpio_irq = bank->virtual_irq_start;
>  		for (; isr != 0; isr >>= 1, gpio_irq++) {
> +			struct irq_desc *desc = irq_to_desc(gpio_irq);
>  			if (!(isr & 1))
>  				continue;
>  
> +			/*
> +			 * Some chips can't respond to both rising and falling at the
> +			 * same time.  If this irq was requested with both flags, we
> +			 * need to flip the ICR data for the IRQ to respond to the
> +			 * IRQ for the opposite direction.
> +			 */
> +			if (desc->status & IRQ_TYPE_EDGE_FALLING &&
> +			    desc->status & IRQ_TYPE_EDGE_RISING)
> +				_toggle_gpio_edge_triggering(
> +						get_irq_chip_data(gpio_irq),
> +						get_gpio_index(irq_to_gpio(gpio_irq)));
> +

Rather than check the flags on every interrupt, it may be better to
create a per-bank mask for GPIOs that need this treatment.  

The code that sets that flag could be conditional on OMAP1 and also on
whether both edges are set.

>  			generic_handle_irq(gpio_irq);
>  		}
>  	}

Kevin

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] [OMAP] gpio: Simultaneously requested rising and falling edge
  2009-12-11 16:07 ` Kevin Hilman
@ 2009-12-11 19:43   ` Cory Maccarrone
  0 siblings, 0 replies; 3+ messages in thread
From: Cory Maccarrone @ 2009-12-11 19:43 UTC (permalink / raw)
  To: Kevin Hilman; +Cc: linux-omap

On Fri, Dec 11, 2009 at 8:07 AM, Kevin Hilman
<khilman@deeprootsystems.com> wrote:
> Cory Maccarrone <darkstar6262@gmail.com> writes:
>
>
> I think this needs a little more description.  In particular you
> should describe that this toggle happens on *every* interrupt, and
> why.
>
> Also, it's not exactly a noop for non-OMAP1.  More on this below...
>
> ...
>
> Not exactly a noop.  This function is called for non-OMAP1 as well...
>
>
> ...and will write a zero to offset zero of the GPIO bank regs
> (GPIO_REVISION reg).  While ths is a read-only reg and *should* have
> no effect, the point is that this function should not be called for
> non-OMAP1.
>
>
> Rather than check the flags on every interrupt, it may be better to
> create a per-bank mask for GPIOs that need this treatment.
>
> The code that sets that flag could be conditional on OMAP1 and also on
> whether both edges are set.
>

Thanks for the feedback.  This is the first time I've dealt with this
code and I wanna make sure I get it right.  I'll take another look at
it and see what I can do.

Thanks
Cory
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2009-12-11 19:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-12-11  3:59 [PATCH] [OMAP] gpio: Simultaneously requested rising and falling edge Cory Maccarrone
2009-12-11 16:07 ` Kevin Hilman
2009-12-11 19:43   ` Cory Maccarrone

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox