Linux Samsung SOC development
 help / color / mirror / Atom feed
  • [parent not found: <150901ce682e$1c3fca50$54bf5ef0$%kim@samsung.com>]
  • * [PATCH v2 3/3] pinctrl: exynos: ack level-triggered interrupts before unmasking
           [not found] <1371058399-31933-1-git-send-email-dianders@chromium.org>
           [not found] ` <1371058399-31933-3-git-send-email-dianders@chromium.org>
    @ 2013-06-13 16:38 ` Doug Anderson
      2013-06-13 16:44   ` Tomasz Figa
      2013-06-13 18:20   ` Linus Walleij
      1 sibling, 2 replies; 12+ messages in thread
    From: Doug Anderson @ 2013-06-13 16:38 UTC (permalink / raw)
      To: Linus Walleij
      Cc: Kukjin Kim, Tomasz Figa, Olof Johansson, Simon Glass,
    	Luigi Semenzato, ilho215.lee, eunki_kim, linux-samsung-soc,
    	Doug Anderson, linux-kernel
    
    A level-triggered interrupt should be acked after the interrupt line
    becomes inactive and before it is unmasked, or else another interrupt
    will be immediately triggered.  Acking before or after calling the
    handler is not enough.
    
    Signed-off-by: Luigi Semenzato <semenzato@chromium.org>
    Signed-off-by: Doug Anderson <dianders@chromium.org>
    ---
    Changes in v2:
    - Greatly simplified using Tomasz's suggestion of irqd_get_trigger_type
    - Moved acking out of the bank spinlock since since it's not needed.
    - Linus W. has already applied parts 1 and 2, so not resending.
    
     drivers/pinctrl/pinctrl-exynos.c | 22 ++++++++++++++++++++++
     1 file changed, 22 insertions(+)
    
    diff --git a/drivers/pinctrl/pinctrl-exynos.c b/drivers/pinctrl/pinctrl-exynos.c
    index c0729a3..ef75321 100644
    --- a/drivers/pinctrl/pinctrl-exynos.c
    +++ b/drivers/pinctrl/pinctrl-exynos.c
    @@ -84,6 +84,17 @@ static void exynos_gpio_irq_unmask(struct irq_data *irqd)
     	unsigned long mask;
     	unsigned long flags;
     
    +	/*
    +	 * Ack level interrupts right before unmask
    +	 *
    +	 * If we don't do this we'll get a double-interrupt.  Level triggered
    +	 * interrupts must not fire an interrupt if the level is not
    +	 * _currently_ active, even if it was active while the interrupt was
    +	 * masked.
    +	 */
    +	if (irqd_get_trigger_type(irqd) & IRQ_TYPE_LEVEL_MASK)
    +		exynos_gpio_irq_ack(irqd);
    +
     	spin_lock_irqsave(&bank->slock, flags);
     
     	mask = readl(d->virt_base + reg_mask);
    @@ -302,6 +313,17 @@ static void exynos_wkup_irq_unmask(struct irq_data *irqd)
     	unsigned long mask;
     	unsigned long flags;
     
    +	/*
    +	 * Ack level interrupts right before unmask
    +	 *
    +	 * If we don't do this we'll get a double-interrupt.  Level triggered
    +	 * interrupts must not fire an interrupt if the level is not
    +	 * _currently_ active, even if it was active while the interrupt was
    +	 * masked.
    +	 */
    +	if (irqd_get_trigger_type(irqd) & IRQ_TYPE_LEVEL_MASK)
    +		exynos_wkup_irq_ack(irqd);
    +
     	spin_lock_irqsave(&b->slock, flags);
     
     	mask = readl(d->virt_base + reg_mask);
    -- 
    1.8.3
    
    ^ permalink raw reply related	[flat|nested] 12+ messages in thread

  • end of thread, other threads:[~2013-06-17 16:56 UTC | newest]
    
    Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1371058399-31933-1-git-send-email-dianders@chromium.org>
         [not found] ` <1371058399-31933-3-git-send-email-dianders@chromium.org>
         [not found]   ` <24084769.VqIFUPHnqh@flatron>
    2013-06-13 16:34     ` [PATCH 3/3] pinctrl: exynos: ack level-triggered interrupts before unmasking Doug Anderson
    2013-06-13 16:40       ` Tomasz Figa
         [not found]   ` <150901ce682e$1c3fca50$54bf5ef0$%kim@samsung.com>
    2013-06-13 16:38     ` Doug Anderson
    2013-06-13 16:42       ` Tomasz Figa
    2013-06-13 16:50         ` Doug Anderson
    2013-06-13 23:13           ` Kukjin Kim
    2013-06-14  0:00             ` Doug Anderson
    2013-06-14  0:18               ` Kukjin Kim
    2013-06-13 16:38 ` [PATCH v2 " Doug Anderson
    2013-06-13 16:44   ` Tomasz Figa
    2013-06-13 18:20   ` Linus Walleij
    2013-06-17 16:56     ` Linus Walleij
    

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