lkml.org 
[lkml]   [2022]   [May]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 2/2] iio: adc: stm32: Fix check for spurious IRQs on STM32F4
Date
The check for spurious IRQs introduced in 695e2f5c289bb assumed that the bits
in the control and status registers are aligned. This is true for the H7 and MP1
version, but not the F4.

Instead of comparing both registers bitwise, we check the bit in the status and control
for each interrupt we are interested in.

Signed-off-by: Yannick Brosseau <yannick.brosseau@gmail.com>
---
drivers/iio/adc/stm32-adc.c | 9 ++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/iio/adc/stm32-adc.c b/drivers/iio/adc/stm32-adc.c
index a68ecbda6480..5b0f138333ee 100644
--- a/drivers/iio/adc/stm32-adc.c
+++ b/drivers/iio/adc/stm32-adc.c
@@ -1422,9 +1422,10 @@ static irqreturn_t stm32_adc_threaded_isr(int irq, void *data)
return IRQ_HANDLED;
}

- if (!(status & mask))
+ if(!((status & regs->isr_eoc.mask) && (mask & regs->ier_eoc.mask)) ||
+ ((status & regs->isr_ovr.mask) && (mask & regs->ier_ovr.mask)))
dev_err_ratelimited(&indio_dev->dev,
- "Unexpected IRQ: IER=0x%08x, ISR=0x%08x\n",
+ "Unexpected IRQ: CR1/IER=0x%08x, SR/ISR=0x%08x\n",
mask, status);

return IRQ_NONE;
@@ -1438,7 +1439,9 @@ static irqreturn_t stm32_adc_isr(int irq, void *data)
u32 status = stm32_adc_readl(adc, regs->isr_eoc.reg);
u32 mask = stm32_adc_readl(adc, regs->ier_eoc.reg);

- if (!(status & mask))
+ /* Check that we have the interrupt we care about are enabled and active */
+ if(!((status & regs->isr_eoc.mask) && (mask & regs->ier_eoc.mask)) ||
+ ((status & regs->isr_ovr.mask) && (mask & regs->ier_ovr.mask)))
return IRQ_WAKE_THREAD;

if (status & regs->isr_ovr.mask) {
--
2.36.0
\
 
 \ /
  Last update: 2022-05-07 00:58    [W:0.061 / U:0.708 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site