Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1422819 > unrolled thread

[PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are pending before dispatching

Started byRichard Fitzgerald <rf@opensource.wolfsonmicro.com>
First post2016-06-15 11:30 +0200
Last post2016-06-15 15:00 +0200
Articles 2 — 2 participants

Back to article view | Back to linux.kernel


Contents

  [PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are pending before dispatching Richard Fitzgerald <rf@opensource.wolfsonmicro.com> - 2016-06-15 11:30 +0200
    Re: [PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are  pending before dispatching Lee Jones <lee.jones@linaro.org> - 2016-06-15 15:00 +0200

#1422819 — [PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are pending before dispatching

FromRichard Fitzgerald <rf@opensource.wolfsonmicro.com>
Date2016-06-15 11:30 +0200
Subject[PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are pending before dispatching
Message-ID<rKfj3-Ig-11@gated-at.bofh.it>
Previously the arizona_irq_thread implementation would call
handle_nested_irqs() to handle AOD interrupts without checking if any
were actually pending. The kernel will see these as spurious IRQs and
will eventually disable the IRQ.

This patch ensures we only launch the nested handler if there are AOD
interrupts pending in the codec.

Signed-off-by: Simon Trimmer <simont@opensource.wolfsonmicro.com>
Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
---
 drivers/mfd/arizona-irq.c | 16 ++++++++++++++--
 1 file changed, 14 insertions(+), 2 deletions(-)

diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
index edeb495..5e18d3c 100644
--- a/drivers/mfd/arizona-irq.c
+++ b/drivers/mfd/arizona-irq.c
@@ -109,8 +109,20 @@ static irqreturn_t arizona_irq_thread(int irq, void *data)
 	do {
 		poll = false;
 
-		if (arizona->aod_irq_chip)
-			handle_nested_irq(irq_find_mapping(arizona->virq, 0));
+		if (arizona->aod_irq_chip) {
+			/*
+			 * Check the AOD status register to determine whether
+			 * the nested IRQ handler should be called.
+			 */
+			ret = regmap_read(arizona->regmap,
+					  ARIZONA_AOD_IRQ1, &val);
+			if (ret)
+				dev_warn(arizona->dev,
+					"Failed to read AOD IRQ1 %d\n", ret);
+			else if (val)
+				handle_nested_irq(
+					irq_find_mapping(arizona->virq, 0));
+		}
 
 		/*
 		 * Check if one of the main interrupts is asserted and only
-- 
1.9.1

[toc] | [next] | [standalone]


#1422989 — Re: [PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are pending before dispatching

FromLee Jones <lee.jones@linaro.org>
Date2016-06-15 15:00 +0200
SubjectRe: [PATCH v2 RESEND] mfd: arizona: Check if AOD interrupts are pending before dispatching
Message-ID<rKiAh-2Dn-7@gated-at.bofh.it>
In reply to#1422819
On Wed, 15 Jun 2016, Richard Fitzgerald wrote:

> Previously the arizona_irq_thread implementation would call
> handle_nested_irqs() to handle AOD interrupts without checking if any
> were actually pending. The kernel will see these as spurious IRQs and
> will eventually disable the IRQ.
> 
> This patch ensures we only launch the nested handler if there are AOD
> interrupts pending in the codec.
> 
> Signed-off-by: Simon Trimmer <simont@opensource.wolfsonmicro.com>
> Signed-off-by: Richard Fitzgerald <rf@opensource.wolfsonmicro.com>
> ---
>  drivers/mfd/arizona-irq.c | 16 ++++++++++++++--
>  1 file changed, 14 insertions(+), 2 deletions(-)

Applied, thanks.

> diff --git a/drivers/mfd/arizona-irq.c b/drivers/mfd/arizona-irq.c
> index edeb495..5e18d3c 100644
> --- a/drivers/mfd/arizona-irq.c
> +++ b/drivers/mfd/arizona-irq.c
> @@ -109,8 +109,20 @@ static irqreturn_t arizona_irq_thread(int irq, void *data)
>  	do {
>  		poll = false;
>  
> -		if (arizona->aod_irq_chip)
> -			handle_nested_irq(irq_find_mapping(arizona->virq, 0));
> +		if (arizona->aod_irq_chip) {
> +			/*
> +			 * Check the AOD status register to determine whether
> +			 * the nested IRQ handler should be called.
> +			 */
> +			ret = regmap_read(arizona->regmap,
> +					  ARIZONA_AOD_IRQ1, &val);
> +			if (ret)
> +				dev_warn(arizona->dev,
> +					"Failed to read AOD IRQ1 %d\n", ret);
> +			else if (val)
> +				handle_nested_irq(
> +					irq_find_mapping(arizona->virq, 0));
> +		}
>  
>  		/*
>  		 * Check if one of the main interrupts is asserted and only

-- 
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog

[toc] | [prev] | [standalone]


Back to top | Article view | linux.kernel


csiph-web