* [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep
@ 2024-08-07 18:56 Denis Benato
2024-08-07 18:56 ` [PATCH v3 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Denis Benato @ 2024-08-07 18:56 UTC (permalink / raw)
To: Jonathan Cameron
Cc: Lars-Peter Clausen, Jagath Jog J, linux-iio, linux-kernel,
Denis Benato, Luke D . Jones, Jonathan LoBue
When a device enters an idle state (for example ASUS RC71L with s2idle)
and an iio driver has a trigger attached such as iio-trig-hrtimer,
after resuming the device the trigger is not triggering data acquisition.
This patch series solves the problem reliably and is well tested after
many cycles and many reboots.
Closes: https://lore.kernel.org/all/31d7f7aa-e834-4fd0-a66a-e0ff528425dc@gmail.com/
Changelog:
- V2: patch 2:
+ Simplify code
+ Remove unneeded code protections around SET_RUNTIME_PM_OPS()
+ pm_ptr() to let the compiler drop bmi323_core_pm_ops if !CONFIG_PM
- V3: patch 1:
+ Add pf->irq=0 that was accidentally left out
Previous patches obsoleted:
https://lore.kernel.org/all/20240727123034.5541-1-benato.denis96@gmail.com/
https://lore.kernel.org/all/20240725002641.191509-3-benato.denis96@gmail.com/
Denis Benato (2):
iio: trigger: allow devices to suspend/resume theirs associated
trigger
iio: bmi323: suspend and resume triggering on relevant pm operations
drivers/iio/imu/bmi323/bmi323.h | 1 +
drivers/iio/imu/bmi323/bmi323_core.c | 23 +++++++++++++++++++++++
drivers/iio/imu/bmi323/bmi323_i2c.c | 1 +
drivers/iio/imu/bmi323/bmi323_spi.c | 1 +
drivers/iio/industrialio-trigger.c | 27 +++++++++++++++++++++++++++
include/linux/iio/iio.h | 17 +++++++++++++++++
6 files changed, 70 insertions(+)
--
2.46.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger
2024-08-07 18:56 [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
@ 2024-08-07 18:56 ` Denis Benato
2024-08-07 18:56 ` [PATCH v3 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
2024-08-10 10:20 ` [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Jonathan Cameron
2 siblings, 0 replies; 4+ messages in thread
From: Denis Benato @ 2024-08-07 18:56 UTC (permalink / raw)
To: Jonathan Cameron
Cc: Lars-Peter Clausen, Jagath Jog J, linux-iio, linux-kernel,
Denis Benato, Luke D . Jones, Jonathan LoBue
When a machine enters a sleep state while a trigger is associated to
an iio device that trigger is not resumed after exiting the sleep state:
provide iio device drivers a way to suspend and resume
the associated trigger to solve the aforementioned bug.
Each iio driver supporting external triggers is expected to call
iio_device_suspend_triggering before suspending,
and iio_device_resume_triggering upon resuming.
Signed-off-by: Denis Benato <benato.denis96@gmail.com>
---
drivers/iio/industrialio-trigger.c | 27 +++++++++++++++++++++++++++
include/linux/iio/iio.h | 17 +++++++++++++++++
2 files changed, 44 insertions(+)
diff --git a/drivers/iio/industrialio-trigger.c b/drivers/iio/industrialio-trigger.c
index 2e84776f4fbd..54416a384232 100644
--- a/drivers/iio/industrialio-trigger.c
+++ b/drivers/iio/industrialio-trigger.c
@@ -347,6 +347,7 @@ int iio_trigger_detach_poll_func(struct iio_trigger *trig,
iio_trigger_put_irq(trig, pf->irq);
free_irq(pf->irq, pf);
module_put(iio_dev_opaque->driver_module);
+ pf->irq = 0;
return ret;
}
@@ -770,3 +771,29 @@ void iio_device_unregister_trigger_consumer(struct iio_dev *indio_dev)
if (indio_dev->trig)
iio_trigger_put(indio_dev->trig);
}
+
+int iio_device_suspend_triggering(struct iio_dev *indio_dev)
+{
+ struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
+
+ guard(mutex)(&iio_dev_opaque->mlock);
+
+ if ((indio_dev->pollfunc) && (indio_dev->pollfunc->irq > 0))
+ disable_irq(indio_dev->pollfunc->irq);
+
+ return 0;
+}
+EXPORT_SYMBOL(iio_device_suspend_triggering);
+
+int iio_device_resume_triggering(struct iio_dev *indio_dev)
+{
+ struct iio_dev_opaque *iio_dev_opaque = to_iio_dev_opaque(indio_dev);
+
+ guard(mutex)(&iio_dev_opaque->mlock);
+
+ if ((indio_dev->pollfunc) && (indio_dev->pollfunc->irq > 0))
+ enable_irq(indio_dev->pollfunc->irq);
+
+ return 0;
+}
+EXPORT_SYMBOL(iio_device_resume_triggering);
diff --git a/include/linux/iio/iio.h b/include/linux/iio/iio.h
index f6c0499853bb..c66c784d31e4 100644
--- a/include/linux/iio/iio.h
+++ b/include/linux/iio/iio.h
@@ -810,6 +810,23 @@ static inline struct dentry *iio_get_debugfs_dentry(struct iio_dev *indio_dev)
}
#endif
+/**
+ * iio_device_suspend_triggering() - suspend trigger attached to an iio_dev
+ * @indio_dev: iio_dev associated with the device that will have triggers suspended
+ *
+ * Return 0 if successful, negative otherwise
+ **/
+int iio_device_suspend_triggering(struct iio_dev *indio_dev);
+
+/**
+ * iio_device_resume_triggering() - resume trigger attached to an iio_dev
+ * that was previously suspended with iio_device_suspend_triggering()
+ * @indio_dev: iio_dev associated with the device that will have triggers resumed
+ *
+ * Return 0 if successful, negative otherwise
+ **/
+int iio_device_resume_triggering(struct iio_dev *indio_dev);
+
#ifdef CONFIG_ACPI
bool iio_read_acpi_mount_matrix(struct device *dev,
struct iio_mount_matrix *orientation,
--
2.46.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v3 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations
2024-08-07 18:56 [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
2024-08-07 18:56 ` [PATCH v3 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
@ 2024-08-07 18:56 ` Denis Benato
2024-08-10 10:20 ` [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Jonathan Cameron
2 siblings, 0 replies; 4+ messages in thread
From: Denis Benato @ 2024-08-07 18:56 UTC (permalink / raw)
To: Jonathan Cameron
Cc: Lars-Peter Clausen, Jagath Jog J, linux-iio, linux-kernel,
Denis Benato, Luke D . Jones, Jonathan LoBue
Prevent triggers from stop working after the device has entered sleep:
use iio_device_suspend_triggering and iio_device_resume_triggering helpers.
Signed-off-by: Denis Benato <benato.denis96@gmail.com>
---
drivers/iio/imu/bmi323/bmi323.h | 1 +
drivers/iio/imu/bmi323/bmi323_core.c | 23 +++++++++++++++++++++++
drivers/iio/imu/bmi323/bmi323_i2c.c | 1 +
drivers/iio/imu/bmi323/bmi323_spi.c | 1 +
4 files changed, 26 insertions(+)
diff --git a/drivers/iio/imu/bmi323/bmi323.h b/drivers/iio/imu/bmi323/bmi323.h
index dff126d41658..209bccb1f335 100644
--- a/drivers/iio/imu/bmi323/bmi323.h
+++ b/drivers/iio/imu/bmi323/bmi323.h
@@ -205,5 +205,6 @@
struct device;
int bmi323_core_probe(struct device *dev);
extern const struct regmap_config bmi323_regmap_config;
+extern const struct dev_pm_ops bmi323_core_pm_ops;
#endif
diff --git a/drivers/iio/imu/bmi323/bmi323_core.c b/drivers/iio/imu/bmi323/bmi323_core.c
index d708d1fe3e42..4b2b211a3e88 100644
--- a/drivers/iio/imu/bmi323/bmi323_core.c
+++ b/drivers/iio/imu/bmi323/bmi323_core.c
@@ -2121,6 +2121,29 @@ int bmi323_core_probe(struct device *dev)
}
EXPORT_SYMBOL_NS_GPL(bmi323_core_probe, IIO_BMI323);
+#if defined(CONFIG_PM)
+static int bmi323_core_runtime_suspend(struct device *dev)
+{
+ struct iio_dev *indio_dev = dev_get_drvdata(dev);
+
+ return iio_device_suspend_triggering(indio_dev);
+}
+
+static int bmi323_core_runtime_resume(struct device *dev)
+{
+ struct iio_dev *indio_dev = dev_get_drvdata(dev);
+
+ return iio_device_resume_triggering(indio_dev);
+}
+
+#endif
+
+const struct dev_pm_ops bmi323_core_pm_ops = {
+ SET_RUNTIME_PM_OPS(bmi323_core_runtime_suspend,
+ bmi323_core_runtime_resume, NULL)
+};
+EXPORT_SYMBOL_NS_GPL(bmi323_core_pm_ops, IIO_BMI323);
+
MODULE_DESCRIPTION("Bosch BMI323 IMU driver");
MODULE_AUTHOR("Jagath Jog J <jagathjog1996@gmail.com>");
MODULE_LICENSE("GPL");
diff --git a/drivers/iio/imu/bmi323/bmi323_i2c.c b/drivers/iio/imu/bmi323/bmi323_i2c.c
index 3298e027c97e..0ba5d69d8329 100644
--- a/drivers/iio/imu/bmi323/bmi323_i2c.c
+++ b/drivers/iio/imu/bmi323/bmi323_i2c.c
@@ -128,6 +128,7 @@ MODULE_DEVICE_TABLE(of, bmi323_of_i2c_match);
static struct i2c_driver bmi323_i2c_driver = {
.driver = {
.name = "bmi323",
+ .pm = pm_ptr(&bmi323_core_pm_ops),
.of_match_table = bmi323_of_i2c_match,
.acpi_match_table = bmi323_acpi_match,
},
diff --git a/drivers/iio/imu/bmi323/bmi323_spi.c b/drivers/iio/imu/bmi323/bmi323_spi.c
index 571e1cd7ce72..9de3ade78d71 100644
--- a/drivers/iio/imu/bmi323/bmi323_spi.c
+++ b/drivers/iio/imu/bmi323/bmi323_spi.c
@@ -79,6 +79,7 @@ MODULE_DEVICE_TABLE(of, bmi323_of_spi_match);
static struct spi_driver bmi323_spi_driver = {
.driver = {
.name = "bmi323",
+ .pm = pm_ptr(&bmi323_core_pm_ops),
.of_match_table = bmi323_of_spi_match,
},
.probe = bmi323_spi_probe,
--
2.46.0
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep
2024-08-07 18:56 [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
2024-08-07 18:56 ` [PATCH v3 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
2024-08-07 18:56 ` [PATCH v3 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
@ 2024-08-10 10:20 ` Jonathan Cameron
2 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2024-08-10 10:20 UTC (permalink / raw)
To: Denis Benato
Cc: Lars-Peter Clausen, Jagath Jog J, linux-iio, linux-kernel,
Luke D . Jones, Jonathan LoBue
On Wed, 7 Aug 2024 20:56:17 +0200
Denis Benato <benato.denis96@gmail.com> wrote:
> When a device enters an idle state (for example ASUS RC71L with s2idle)
> and an iio driver has a trigger attached such as iio-trig-hrtimer,
> after resuming the device the trigger is not triggering data acquisition.
>
> This patch series solves the problem reliably and is well tested after
> many cycles and many reboots.
>
> Closes: https://lore.kernel.org/all/31d7f7aa-e834-4fd0-a66a-e0ff528425dc@gmail.com/
>
> Changelog:
> - V2: patch 2:
> + Simplify code
> + Remove unneeded code protections around SET_RUNTIME_PM_OPS()
> + pm_ptr() to let the compiler drop bmi323_core_pm_ops if !CONFIG_PM
>
> - V3: patch 1:
> + Add pf->irq=0 that was accidentally left out
Dropped v2 and picked up v3.
Thanks,
Jonathan
>
> Previous patches obsoleted:
> https://lore.kernel.org/all/20240727123034.5541-1-benato.denis96@gmail.com/
> https://lore.kernel.org/all/20240725002641.191509-3-benato.denis96@gmail.com/
>
> Denis Benato (2):
> iio: trigger: allow devices to suspend/resume theirs associated
> trigger
> iio: bmi323: suspend and resume triggering on relevant pm operations
>
> drivers/iio/imu/bmi323/bmi323.h | 1 +
> drivers/iio/imu/bmi323/bmi323_core.c | 23 +++++++++++++++++++++++
> drivers/iio/imu/bmi323/bmi323_i2c.c | 1 +
> drivers/iio/imu/bmi323/bmi323_spi.c | 1 +
> drivers/iio/industrialio-trigger.c | 27 +++++++++++++++++++++++++++
> include/linux/iio/iio.h | 17 +++++++++++++++++
> 6 files changed, 70 insertions(+)
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-08-10 10:20 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-08-07 18:56 [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
2024-08-07 18:56 ` [PATCH v3 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
2024-08-07 18:56 ` [PATCH v3 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
2024-08-10 10:20 ` [PATCH v3 0/2] iio: fix bug with triggers not resuming after sleep Jonathan Cameron
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®