* [PATCH 0/2] iio: fix bug with triggers not resuming after sleep
@ 2024-07-25 0:26 Denis Benato
2024-07-25 0:26 ` [PATCH 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
2024-07-25 0:26 ` [PATCH 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
0 siblings, 2 replies; 4+ messages in thread
From: Denis Benato @ 2024-07-25 0:26 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/
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 | 32 ++++++++++++++++++++++++++++
drivers/iio/imu/bmi323/bmi323_i2c.c | 1 +
drivers/iio/imu/bmi323/bmi323_spi.c | 1 +
drivers/iio/industrialio-trigger.c | 24 +++++++++++++++++++++
include/linux/iio/iio.h | 16 ++++++++++++++
6 files changed, 75 insertions(+)
--
2.45.2
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger
2024-07-25 0:26 [PATCH 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
@ 2024-07-25 0:26 ` Denis Benato
2024-07-25 0:26 ` [PATCH 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
1 sibling, 0 replies; 4+ messages in thread
From: Denis Benato @ 2024-07-25 0:26 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 | 26 ++++++++++++++++++++++++++
include/linux/iio/iio.h | 17 +++++++++++++++++
2 files changed, 43 insertions(+)
diff --git a/drivers/iio/industrialio-trigger.c b/drivers/iio/industrialio-trigger.c
index 2e84776f4fbd..2e92283fad0f 100644
--- a/drivers/iio/industrialio-trigger.c
+++ b/drivers/iio/industrialio-trigger.c
@@ -770,3 +770,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 894309294182..c87dfda54681 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.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations
2024-07-25 0:26 [PATCH 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
2024-07-25 0:26 ` [PATCH 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
@ 2024-07-25 0:26 ` Denis Benato
2024-07-25 11:28 ` Jonathan Cameron
1 sibling, 1 reply; 4+ messages in thread
From: Denis Benato @ 2024-07-25 0:26 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 | 29 ++++++++++++++++++++++++++++
drivers/iio/imu/bmi323/bmi323_i2c.c | 1 +
drivers/iio/imu/bmi323/bmi323_spi.c | 1 +
4 files changed, 32 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..b318544957de 100644
--- a/drivers/iio/imu/bmi323/bmi323_core.c
+++ b/drivers/iio/imu/bmi323/bmi323_core.c
@@ -2121,6 +2121,35 @@ 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);
+
+ int ret = iio_device_suspend_triggering(indio_dev);
+
+ return ret;
+}
+
+static int bmi323_core_runtime_resume(struct device *dev)
+{
+ struct iio_dev *indio_dev = dev_get_drvdata(dev);
+
+ int ret = iio_device_resume_triggering(indio_dev);
+
+ return ret;
+}
+
+#endif
+
+const struct dev_pm_ops bmi323_core_pm_ops = {
+#if defined(CONFIG_PM)
+ SET_RUNTIME_PM_OPS(bmi323_core_runtime_suspend,
+ bmi323_core_runtime_resume, NULL)
+#endif
+};
+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 52140bf05765..79c9b029a209 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 = &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 7b1e8127d0dd..ec3238d93862 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 = &bmi323_core_pm_ops,
.of_match_table = bmi323_of_spi_match,
},
.probe = bmi323_spi_probe,
--
2.45.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations
2024-07-25 0:26 ` [PATCH 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
@ 2024-07-25 11:28 ` Jonathan Cameron
0 siblings, 0 replies; 4+ messages in thread
From: Jonathan Cameron @ 2024-07-25 11:28 UTC (permalink / raw)
To: Denis Benato
Cc: Jonathan Cameron, Lars-Peter Clausen, Jagath Jog J, linux-iio,
linux-kernel, Luke D . Jones, Jonathan LoBue
On Thu, 25 Jul 2024 02:26:41 +0200
Denis Benato <benato.denis96@gmail.com> wrote:
> 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 | 29 ++++++++++++++++++++++++++++
> drivers/iio/imu/bmi323/bmi323_i2c.c | 1 +
> drivers/iio/imu/bmi323/bmi323_spi.c | 1 +
> 4 files changed, 32 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..b318544957de 100644
> --- a/drivers/iio/imu/bmi323/bmi323_core.c
> +++ b/drivers/iio/imu/bmi323/bmi323_core.c
> @@ -2121,6 +2121,35 @@ 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);
> +
I want to think about patch 1 for a few days. In meantime.
> + int ret = iio_device_suspend_triggering(indio_dev);
return iio_device_suspend_triggering(indio_dev);
> +
> + return ret;
> +}
> +
> +static int bmi323_core_runtime_resume(struct device *dev)
> +{
> + struct iio_dev *indio_dev = dev_get_drvdata(dev);
> +
> + int ret = iio_device_resume_triggering(indio_dev);
> +
> + return ret;
return iio_device_resume_triggering(indio_dev);
> +}
> +
> +#endif
> +
> +const struct dev_pm_ops bmi323_core_pm_ops = {
> +#if defined(CONFIG_PM)
SET_RUNTIME_PM_OPS() is defined to nothing if CONFIG_PM is
not enabled so these protections aren't needed.
> + SET_RUNTIME_PM_OPS(bmi323_core_runtime_suspend,
> + bmi323_core_runtime_resume, NULL)
> +#endif
> +};
> +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 52140bf05765..79c9b029a209 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 = &bmi323_core_pm_ops,
pm_ptr() to let the compiler drop bmi323_core_pm_ops if
!CONFIG_PM
> .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 7b1e8127d0dd..ec3238d93862 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 = &bmi323_core_pm_ops,
> .of_match_table = bmi323_of_spi_match,
> },
> .probe = bmi323_spi_probe,
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-07-25 11:28 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-07-25 0:26 [PATCH 0/2] iio: fix bug with triggers not resuming after sleep Denis Benato
2024-07-25 0:26 ` [PATCH 1/2] iio: trigger: allow devices to suspend/resume theirs associated trigger Denis Benato
2024-07-25 0:26 ` [PATCH 2/2] iio: bmi323: suspend and resume triggering on relevant pm operations Denis Benato
2024-07-25 11:28 ` Jonathan Cameron
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.