Linux IIO development
 help / color / mirror / Atom feed
* [PATCH v1] iio: adc: ad_sigma_delta: Clear pending interrupts before enable
@ 2024-04-04 17:51 Markus Burri
  2024-04-06 16:17 ` Jonathan Cameron
  0 siblings, 1 reply; 4+ messages in thread
From: Markus Burri @ 2024-04-04 17:51 UTC (permalink / raw)
  To: linux-kernel
  Cc: Markus Burri, Lars-Peter Clausen, Michael Hennerich,
	Jonathan Cameron, linux-iio

For device will enable and disable irq contiously like AD7195,
it use DOUT/RDY pin for both SPI transfer and data ready.
It will disable irq during SPI transfer, and re-eanble irq after SPI transfer.
That may cause irq status bit set to 1 during spi transfer.

When the active condition has been detected, the corresponding bit
remains set until cleared by software. Status flags are cleared
by writing a 1 to the corresponding bit position.

Signed-off-by: Markus Burri <markus.burri@mt.com>
---
 drivers/iio/adc/ad_sigma_delta.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/drivers/iio/adc/ad_sigma_delta.c b/drivers/iio/adc/ad_sigma_delta.c
index a602429cdde4..59544c39642a 100644
--- a/drivers/iio/adc/ad_sigma_delta.c
+++ b/drivers/iio/adc/ad_sigma_delta.c
@@ -515,6 +515,10 @@ static irqreturn_t ad_sd_trigger_handler(int irq, void *p)
 
 irq_handled:
 	iio_trigger_notify_done(indio_dev->trig);
+	/*
+	 * ACK pending interrupts from spi transfer.
+	 */
+	irq_gc_ack_set_bit(irq_get_irq_data(sigma_delta->spi->irq));
 	sigma_delta->irq_dis = false;
 	enable_irq(sigma_delta->spi->irq);
 
-- 
2.39.2


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

* Re: [PATCH v1] iio: adc: ad_sigma_delta: Clear pending interrupts before enable
  2024-04-04 17:51 [PATCH v1] iio: adc: ad_sigma_delta: Clear pending interrupts before enable Markus Burri
@ 2024-04-06 16:17 ` Jonathan Cameron
  2024-04-08  8:31   ` Nuno Sá
  0 siblings, 1 reply; 4+ messages in thread
From: Jonathan Cameron @ 2024-04-06 16:17 UTC (permalink / raw)
  To: Markus Burri
  Cc: linux-kernel, Lars-Peter Clausen, Michael Hennerich, linux-iio,
	Nuno Sa

On Thu,  4 Apr 2024 19:51:26 +0200
Markus Burri <markus.burri@mt.com> wrote:

Hi Markus,


> For device will enable and disable irq contiously like AD7195,
> it use DOUT/RDY pin for both SPI transfer and data ready.
> It will disable irq during SPI transfer, and re-eanble irq after SPI transfer.
> That may cause irq status bit set to 1 during spi transfer.

Superficially that sounds like it might be an irq driver bug to me...
Or just possibly an irq chip doing lazy disabling?

> 
> When the active condition has been detected, the corresponding bit
> remains set until cleared by software. Status flags are cleared
> by writing a 1 to the corresponding bit position.
> 
> Signed-off-by: Markus Burri <markus.burri@mt.com>

I'll need an appropriate ADI ack for this one.

It seems highly unusual to be calling a generic irqchip related function in a
driver (there are no other such users).  So this seems unlikely to be
the right fix for this particular problem.

> ---
>  drivers/iio/adc/ad_sigma_delta.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/iio/adc/ad_sigma_delta.c b/drivers/iio/adc/ad_sigma_delta.c
> index a602429cdde4..59544c39642a 100644
> --- a/drivers/iio/adc/ad_sigma_delta.c
> +++ b/drivers/iio/adc/ad_sigma_delta.c
> @@ -515,6 +515,10 @@ static irqreturn_t ad_sd_trigger_handler(int irq, void *p)
>  
>  irq_handled:
>  	iio_trigger_notify_done(indio_dev->trig);
> +	/*
> +	 * ACK pending interrupts from spi transfer.

Single line comment format would be fine here.

> +	 */
> +	irq_gc_ack_set_bit(irq_get_irq_data(sigma_delta->spi->irq));
>  	sigma_delta->irq_dis = false;
>  	enable_irq(sigma_delta->spi->irq);
>  


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

* Re: [PATCH v1] iio: adc: ad_sigma_delta: Clear pending interrupts before enable
  2024-04-06 16:17 ` Jonathan Cameron
@ 2024-04-08  8:31   ` Nuno Sá
  2024-04-13 15:56     ` Jonathan Cameron
  0 siblings, 1 reply; 4+ messages in thread
From: Nuno Sá @ 2024-04-08  8:31 UTC (permalink / raw)
  To: Jonathan Cameron, Markus Burri
  Cc: linux-kernel, Lars-Peter Clausen, Michael Hennerich, linux-iio,
	Nuno Sa

On Sat, 2024-04-06 at 17:17 +0100, Jonathan Cameron wrote:
> On Thu,  4 Apr 2024 19:51:26 +0200
> Markus Burri <markus.burri@mt.com> wrote:
> 
> Hi Markus,
> 
> 
> > For device will enable and disable irq contiously like AD7195,
> > it use DOUT/RDY pin for both SPI transfer and data ready.
> > It will disable irq during SPI transfer, and re-eanble irq after SPI
> > transfer.
> > That may cause irq status bit set to 1 during spi transfer.
> 
> Superficially that sounds like it might be an irq driver bug to me...
> Or just possibly an irq chip doing lazy disabling?

Yes, this sounds odd as we are already explicitly disabling lazy disabling:

https://elixir.bootlin.com/linux/latest/source/drivers/iio/adc/ad_sigma_delta.c#L589

> 
> > 
> > When the active condition has been detected, the corresponding bit
> > remains set until cleared by software. Status flags are cleared
> > by writing a 1 to the corresponding bit position.
> > 
> > Signed-off-by: Markus Burri <markus.burri@mt.com>
> 
> I'll need an appropriate ADI ack for this one.
> 

Yeah, I wanted to reply to this one Friday but then completely forgot. I can't
really ack this one. I would need some insights from someone with more core IRQ
knowledge. But...

> It seems highly unusual to be calling a generic irqchip related function in a
> driver (there are no other such users).  So this seems unlikely to be
> the right fix for this particular problem.
> 

Yes, and this (I think) would not even fix (if a fix is needed) this for all
irqchips which to me already sounds not the way to go.

- Nuno Sá
> 

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

* Re: [PATCH v1] iio: adc: ad_sigma_delta: Clear pending interrupts before enable
  2024-04-08  8:31   ` Nuno Sá
@ 2024-04-13 15:56     ` Jonathan Cameron
  0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2024-04-13 15:56 UTC (permalink / raw)
  To: Nuno Sá
  Cc: Markus Burri, linux-kernel, Lars-Peter Clausen, Michael Hennerich,
	linux-iio, Nuno Sa

On Mon, 08 Apr 2024 10:31:21 +0200
Nuno Sá <noname.nuno@gmail.com> wrote:

> On Sat, 2024-04-06 at 17:17 +0100, Jonathan Cameron wrote:
> > On Thu,  4 Apr 2024 19:51:26 +0200
> > Markus Burri <markus.burri@mt.com> wrote:
> > 
> > Hi Markus,
> > 
> >   
> > > For device will enable and disable irq contiously like AD7195,
> > > it use DOUT/RDY pin for both SPI transfer and data ready.
> > > It will disable irq during SPI transfer, and re-eanble irq after SPI
> > > transfer.
> > > That may cause irq status bit set to 1 during spi transfer.  
> > 
> > Superficially that sounds like it might be an irq driver bug to me...
> > Or just possibly an irq chip doing lazy disabling?  
> 
> Yes, this sounds odd as we are already explicitly disabling lazy disabling:
> 
> https://elixir.bootlin.com/linux/latest/source/drivers/iio/adc/ad_sigma_delta.c#L589

Markus, can you confirm you are running no a kernel with that line present?
Maybe this is just an old kernel not having the fix?

> 
> >   
> > > 
> > > When the active condition has been detected, the corresponding bit
> > > remains set until cleared by software. Status flags are cleared
> > > by writing a 1 to the corresponding bit position.
> > > 
> > > Signed-off-by: Markus Burri <markus.burri@mt.com>  
> > 
> > I'll need an appropriate ADI ack for this one.
> >   
> 
> Yeah, I wanted to reply to this one Friday but then completely forgot. I can't
> really ack this one. I would need some insights from someone with more core IRQ
> knowledge. But...
> 
> > It seems highly unusual to be calling a generic irqchip related function in a
> > driver (there are no other such users).  So this seems unlikely to be
> > the right fix for this particular problem.
> >   
> 
> Yes, and this (I think) would not even fix (if a fix is needed) this for all
> irqchips which to me already sounds not the way to go.
> 
> - Nuno Sá
> >   


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

end of thread, other threads:[~2024-04-13 15:56 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-04-04 17:51 [PATCH v1] iio: adc: ad_sigma_delta: Clear pending interrupts before enable Markus Burri
2024-04-06 16:17 ` Jonathan Cameron
2024-04-08  8:31   ` Nuno Sá
2024-04-13 15:56     ` Jonathan Cameron

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