Linux IIO development
 help / color / mirror / Atom feed
* [PATCH] Fix IRQ issue by setting IRQ_DISABLE_UNLAZY flag
@ 2023-03-06  4:47 Masahiro Honda
  2023-03-06 13:32 ` Nuno Sá
  0 siblings, 1 reply; 6+ messages in thread
From: Masahiro Honda @ 2023-03-06  4:47 UTC (permalink / raw)
  To: Lars-Peter Clausen, Michael Hennerich, Jonathan Cameron
  Cc: linux-iio, linux-kernel, Masahiro Honda

ADC using ad7793.ko, such as AD7794, may read incorrect data.
Extra interrupt is pending if the data on DOUT contains a falling edge.
Therefore, wait_for_completion_timeout returns immediately.
This patch fixes the issue by setting IRQ_DISABLE_UNLAZY flag.

Signed-off-by: Masahiro Honda <honda@mechatrax.com>
---
 drivers/iio/adc/ad_sigma_delta.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/iio/adc/ad_sigma_delta.c b/drivers/iio/adc/ad_sigma_delta.c
index d8570f620..364051809 100644
--- a/drivers/iio/adc/ad_sigma_delta.c
+++ b/drivers/iio/adc/ad_sigma_delta.c
@@ -584,6 +584,7 @@ static int devm_ad_sd_probe_trigger(struct device *dev, struct iio_dev *indio_de
 	init_completion(&sigma_delta->completion);
 
 	sigma_delta->irq_dis = true;
+	irq_set_status_flags(sigma_delta->spi->irq, IRQ_DISABLE_UNLAZY);
 	ret = devm_request_irq(dev, sigma_delta->spi->irq,
 			       ad_sd_data_rdy_trig_poll,
 			       sigma_delta->info->irq_flags | IRQF_NO_AUTOEN,
-- 
2.34.1


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

end of thread, other threads:[~2023-03-28 10:55 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-06  4:47 [PATCH] Fix IRQ issue by setting IRQ_DISABLE_UNLAZY flag Masahiro Honda
2023-03-06 13:32 ` Nuno Sá
2023-03-07 10:54   ` Masahiro Honda
2023-03-27  9:01     ` Masahiro Honda
2023-03-27 12:28       ` Nuno Sá
2023-03-28 10:55         ` Masahiro Honda

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