* [PATCH v3 1/4] PM / QoS: add flag to indicate latency applies system-wide
2026-06-11 19:59 [PATCH v3 0/4] PM: QoS/pmdomains: support resume latencies for system-wide PM Kevin Hilman (TI)
@ 2026-06-11 19:59 ` Kevin Hilman (TI)
2026-06-30 21:11 ` Kendall Willis
2026-06-11 19:59 ` [PATCH v3 2/4] PM / QoS: add lockless read for flags Kevin Hilman (TI)
` (2 subsequent siblings)
3 siblings, 1 reply; 11+ messages in thread
From: Kevin Hilman (TI) @ 2026-06-11 19:59 UTC (permalink / raw)
To: Rafael J. Wysocki, linux-pm, Ulf Hansson; +Cc: Dhruva Gole, linux-kernel
By default, the QoS resume latency currenly only applied to runtime PM
decisions.
Add new PM_QOS_FLAG_LATENCY_SYS flag to indicate that the
resume latency QoS constraint should be applied to system-wide
PM *in addition to* runtime PM.
Acked-by: Rafael J. Wysocki (Intel) <rafael@kernel.org>
Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
---
include/linux/pm_qos.h | 2 ++
1 file changed, 2 insertions(+)
diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
index 6cea4455f867..aededda52b6b 100644
--- a/include/linux/pm_qos.h
+++ b/include/linux/pm_qos.h
@@ -37,6 +37,8 @@ enum pm_qos_flags_status {
#define PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT (-1)
#define PM_QOS_FLAG_NO_POWER_OFF (1 << 0)
+/* latency value applies to system-wide suspend/s2idle */
+#define PM_QOS_FLAG_LATENCY_SYS (2 << 0)
enum pm_qos_type {
PM_QOS_UNITIALIZED,
--
2.47.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v3 1/4] PM / QoS: add flag to indicate latency applies system-wide
2026-06-11 19:59 ` [PATCH v3 1/4] PM / QoS: add flag to indicate latency applies system-wide Kevin Hilman (TI)
@ 2026-06-30 21:11 ` Kendall Willis
0 siblings, 0 replies; 11+ messages in thread
From: Kendall Willis @ 2026-06-30 21:11 UTC (permalink / raw)
To: Kevin Hilman (TI)
Cc: Rafael J. Wysocki, linux-pm, Ulf Hansson, Dhruva Gole,
linux-kernel
On 12:59-20260611, Kevin Hilman (TI) wrote:
> By default, the QoS resume latency currenly only applied to runtime PM
> decisions.
>
> Add new PM_QOS_FLAG_LATENCY_SYS flag to indicate that the
> resume latency QoS constraint should be applied to system-wide
> PM *in addition to* runtime PM.
>
> Acked-by: Rafael J. Wysocki (Intel) <rafael@kernel.org>
> Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
Reviewed-by: Kendall Willis <k-willis@ti.com>
> ---
> include/linux/pm_qos.h | 2 ++
> 1 file changed, 2 insertions(+)
>
> diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
> index 6cea4455f867..aededda52b6b 100644
> --- a/include/linux/pm_qos.h
> +++ b/include/linux/pm_qos.h
> @@ -37,6 +37,8 @@ enum pm_qos_flags_status {
> #define PM_QOS_LATENCY_TOLERANCE_NO_CONSTRAINT (-1)
>
> #define PM_QOS_FLAG_NO_POWER_OFF (1 << 0)
> +/* latency value applies to system-wide suspend/s2idle */
> +#define PM_QOS_FLAG_LATENCY_SYS (2 << 0)
>
> enum pm_qos_type {
> PM_QOS_UNITIALIZED,
>
> --
> 2.47.3
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 2/4] PM / QoS: add lockless read for flags
2026-06-11 19:59 [PATCH v3 0/4] PM: QoS/pmdomains: support resume latencies for system-wide PM Kevin Hilman (TI)
2026-06-11 19:59 ` [PATCH v3 1/4] PM / QoS: add flag to indicate latency applies system-wide Kevin Hilman (TI)
@ 2026-06-11 19:59 ` Kevin Hilman (TI)
2026-06-30 21:12 ` Kendall Willis
2026-07-10 10:42 ` Rafael J. Wysocki (Intel)
2026-06-11 19:59 ` [PATCH v3 3/4] pmdomain: core: add genpd_for_each_child() helper Kevin Hilman (TI)
2026-06-11 19:59 ` [PATCH v3 4/4] pmdomain: add support system-wide resume latency constraints Kevin Hilman (TI)
3 siblings, 2 replies; 11+ messages in thread
From: Kevin Hilman (TI) @ 2026-06-11 19:59 UTC (permalink / raw)
To: Rafael J. Wysocki, linux-pm, Ulf Hansson; +Cc: Dhruva Gole, linux-kernel
Add a lockless read for QoS flags similar to the lockless read for
resume latency (dev_pm_qos_raw_resume_latency) which may be called
from atomic context (e.g. genpd governors running under a raw spinlock
or in the syscore suspend path), where taking that sleeping lock would
be invalid on PREEMPT_RT.
Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
---
include/linux/pm_qos.h | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
index aededda52b6b..439a9e779d81 100644
--- a/include/linux/pm_qos.h
+++ b/include/linux/pm_qos.h
@@ -219,6 +219,12 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
PM_QOS_RESUME_LATENCY_NO_CONSTRAINT :
pm_qos_read_value(&dev->power.qos->resume_latency);
}
+
+static inline s32 dev_pm_qos_raw_flags(struct device *dev)
+{
+ return IS_ERR_OR_NULL(dev->power.qos) ?
+ 0 : READ_ONCE(dev->power.qos->flags.effective_flags);
+}
#else
static inline enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev,
s32 mask)
@@ -300,6 +306,7 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
{
return PM_QOS_RESUME_LATENCY_NO_CONSTRAINT;
}
+static inline s32 dev_pm_qos_raw_flags(struct device *dev) { return 0; }
#endif
static inline int freq_qos_request_active(struct freq_qos_request *req)
--
2.47.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v3 2/4] PM / QoS: add lockless read for flags
2026-06-11 19:59 ` [PATCH v3 2/4] PM / QoS: add lockless read for flags Kevin Hilman (TI)
@ 2026-06-30 21:12 ` Kendall Willis
2026-07-10 10:42 ` Rafael J. Wysocki (Intel)
1 sibling, 0 replies; 11+ messages in thread
From: Kendall Willis @ 2026-06-30 21:12 UTC (permalink / raw)
To: Kevin Hilman (TI)
Cc: Rafael J. Wysocki, linux-pm, Ulf Hansson, Dhruva Gole,
linux-kernel
On 12:59-20260611, Kevin Hilman (TI) wrote:
> Add a lockless read for QoS flags similar to the lockless read for
> resume latency (dev_pm_qos_raw_resume_latency) which may be called
> from atomic context (e.g. genpd governors running under a raw spinlock
> or in the syscore suspend path), where taking that sleeping lock would
> be invalid on PREEMPT_RT.
>
> Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
Reviewed-by: Kendall Willis <k-willis@ti.com>
> ---
> include/linux/pm_qos.h | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
> index aededda52b6b..439a9e779d81 100644
> --- a/include/linux/pm_qos.h
> +++ b/include/linux/pm_qos.h
> @@ -219,6 +219,12 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
> PM_QOS_RESUME_LATENCY_NO_CONSTRAINT :
> pm_qos_read_value(&dev->power.qos->resume_latency);
> }
> +
> +static inline s32 dev_pm_qos_raw_flags(struct device *dev)
> +{
> + return IS_ERR_OR_NULL(dev->power.qos) ?
> + 0 : READ_ONCE(dev->power.qos->flags.effective_flags);
> +}
> #else
> static inline enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev,
> s32 mask)
> @@ -300,6 +306,7 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
> {
> return PM_QOS_RESUME_LATENCY_NO_CONSTRAINT;
> }
> +static inline s32 dev_pm_qos_raw_flags(struct device *dev) { return 0; }
> #endif
>
> static inline int freq_qos_request_active(struct freq_qos_request *req)
>
> --
> 2.47.3
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH v3 2/4] PM / QoS: add lockless read for flags
2026-06-11 19:59 ` [PATCH v3 2/4] PM / QoS: add lockless read for flags Kevin Hilman (TI)
2026-06-30 21:12 ` Kendall Willis
@ 2026-07-10 10:42 ` Rafael J. Wysocki (Intel)
2026-08-19 16:27 ` Kevin Hilman
1 sibling, 1 reply; 11+ messages in thread
From: Rafael J. Wysocki (Intel) @ 2026-07-10 10:42 UTC (permalink / raw)
To: Kevin Hilman (TI)
Cc: Rafael J. Wysocki, linux-pm, Ulf Hansson, Dhruva Gole,
linux-kernel
On Thu, Jun 11, 2026 at 9:59 PM Kevin Hilman (TI) <khilman@baylibre.com> wrote:
>
> Add a lockless read for QoS flags similar to the lockless read for
> resume latency (dev_pm_qos_raw_resume_latency) which may be called
> from atomic context (e.g. genpd governors running under a raw spinlock
> or in the syscore suspend path), where taking that sleeping lock would
> be invalid on PREEMPT_RT.
>
> Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
> ---
> include/linux/pm_qos.h | 7 +++++++
> 1 file changed, 7 insertions(+)
>
> diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
> index aededda52b6b..439a9e779d81 100644
> --- a/include/linux/pm_qos.h
> +++ b/include/linux/pm_qos.h
> @@ -219,6 +219,12 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
> PM_QOS_RESUME_LATENCY_NO_CONSTRAINT :
> pm_qos_read_value(&dev->power.qos->resume_latency);
> }
> +
> +static inline s32 dev_pm_qos_raw_flags(struct device *dev)
> +{
> + return IS_ERR_OR_NULL(dev->power.qos) ?
> + 0 : READ_ONCE(dev->power.qos->flags.effective_flags);
So if you add READ_ONCE() on the reader side, all updates of it need
to go under WRITE_ONCE(), or the READ_ONCE() may still not be
effective.
I don't think they are under WRITE_ONCE() ATM.
> +}
> #else
> static inline enum pm_qos_flags_status __dev_pm_qos_flags(struct device *dev,
> s32 mask)
> @@ -300,6 +306,7 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
> {
> return PM_QOS_RESUME_LATENCY_NO_CONSTRAINT;
> }
> +static inline s32 dev_pm_qos_raw_flags(struct device *dev) { return 0; }
> #endif
>
> static inline int freq_qos_request_active(struct freq_qos_request *req)
>
> --
^ permalink raw reply [flat|nested] 11+ messages in thread* Re: [PATCH v3 2/4] PM / QoS: add lockless read for flags
2026-07-10 10:42 ` Rafael J. Wysocki (Intel)
@ 2026-08-19 16:27 ` Kevin Hilman
0 siblings, 0 replies; 11+ messages in thread
From: Kevin Hilman @ 2026-08-19 16:27 UTC (permalink / raw)
To: Rafael J. Wysocki (Intel)
Cc: Rafael J. Wysocki, linux-pm, Ulf Hansson, Dhruva Gole,
linux-kernel
"Rafael J. Wysocki (Intel)" <rafael@kernel.org> writes:
> On Thu, Jun 11, 2026 at 9:59 PM Kevin Hilman (TI) <khilman@baylibre.com> wrote:
>>
>> Add a lockless read for QoS flags similar to the lockless read for
>> resume latency (dev_pm_qos_raw_resume_latency) which may be called
>> from atomic context (e.g. genpd governors running under a raw spinlock
>> or in the syscore suspend path), where taking that sleeping lock would
>> be invalid on PREEMPT_RT.
>>
>> Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
>> ---
>> include/linux/pm_qos.h | 7 +++++++
>> 1 file changed, 7 insertions(+)
>>
>> diff --git a/include/linux/pm_qos.h b/include/linux/pm_qos.h
>> index aededda52b6b..439a9e779d81 100644
>> --- a/include/linux/pm_qos.h
>> +++ b/include/linux/pm_qos.h
>> @@ -219,6 +219,12 @@ static inline s32 dev_pm_qos_raw_resume_latency(struct device *dev)
>> PM_QOS_RESUME_LATENCY_NO_CONSTRAINT :
>> pm_qos_read_value(&dev->power.qos->resume_latency);
>> }
>> +
>> +static inline s32 dev_pm_qos_raw_flags(struct device *dev)
>> +{
>> + return IS_ERR_OR_NULL(dev->power.qos) ?
>> + 0 : READ_ONCE(dev->power.qos->flags.effective_flags);
>
> So if you add READ_ONCE() on the reader side, all updates of it need
> to go under WRITE_ONCE(), or the READ_ONCE() may still not be
> effective.
>
> I don't think they are under WRITE_ONCE() ATM.
Ah, good catch. Thanks for the review, I'll fix that in v4.
Kevin
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 3/4] pmdomain: core: add genpd_for_each_child() helper
2026-06-11 19:59 [PATCH v3 0/4] PM: QoS/pmdomains: support resume latencies for system-wide PM Kevin Hilman (TI)
2026-06-11 19:59 ` [PATCH v3 1/4] PM / QoS: add flag to indicate latency applies system-wide Kevin Hilman (TI)
2026-06-11 19:59 ` [PATCH v3 2/4] PM / QoS: add lockless read for flags Kevin Hilman (TI)
@ 2026-06-11 19:59 ` Kevin Hilman (TI)
2026-06-30 21:13 ` Kendall Willis
2026-06-11 19:59 ` [PATCH v3 4/4] pmdomain: add support system-wide resume latency constraints Kevin Hilman (TI)
3 siblings, 1 reply; 11+ messages in thread
From: Kevin Hilman (TI) @ 2026-06-11 19:59 UTC (permalink / raw)
To: Rafael J. Wysocki, linux-pm, Ulf Hansson; +Cc: Dhruva Gole, linux-kernel
Add a new internal helper function genpd_for_each_child() that recursively
iterates over all devices in a PM domain and its child domains (subdomains).
This helper is useful for governors and other core PM domain code that needs
to examine or apply operations to all devices within a domain hierarchy.
The function takes a callback that is invoked for each device, and supports
early termination if the callback returns a non-zero value.
The helper is defined in a new internal header drivers/pmdomain/core.h and
implemented in drivers/pmdomain/core.c, making it available to other PM
domain subsystem components.
The first user of this helper is the cpu_system_power_down_ok() governor
function, which uses it to check device QoS latency constraints across the
entire domain hierarchy.
Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
---
drivers/pmdomain/core.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
drivers/pmdomain/core.h | 17 +++++++++++++++++
2 files changed, 62 insertions(+)
diff --git a/drivers/pmdomain/core.c b/drivers/pmdomain/core.c
index 52ea84e548ff..347bfb7db75a 100644
--- a/drivers/pmdomain/core.c
+++ b/drivers/pmdomain/core.c
@@ -24,6 +24,8 @@
#include <linux/cpu.h>
#include <linux/debugfs.h>
+#include "core.h"
+
/* Provides a unique ID for each genpd device */
static DEFINE_IDA(genpd_ida);
@@ -281,6 +283,49 @@ static void genpd_sd_counter_inc(struct generic_pm_domain *genpd)
smp_mb__after_atomic();
}
+/**
+ * genpd_for_each_child - Recursively iterate over all devices
+ * in a PM domain and its subdomains.
+ * @genpd: PM domain to iterate over.
+ * @fn: Callback function to invoke for each device.
+ * @data: Data to pass to the callback function.
+ *
+ * This function recursively walks through all devices in the given PM domain
+ * and all devices in its child PM domains (subdomains). For each device found,
+ * the callback function @fn is invoked with the device and @data as arguments.
+ *
+ * Note: this function is inteded for use by the core and governors,
+ * not for pmdomain providers.
+ *
+ * Returns: 0 on success, or the first non-zero value returned by @fn.
+ */
+int genpd_for_each_child(struct generic_pm_domain *genpd,
+ int (*fn)(struct device *dev, void *data),
+ void *data)
+{
+ struct pm_domain_data *pdd;
+ struct gpd_link *link;
+ int ret;
+
+ /* First, iterate over all devices in this domain */
+ list_for_each_entry(pdd, &genpd->dev_list, list_node) {
+ ret = fn(pdd->dev, data);
+ if (ret)
+ return ret;
+ }
+
+ /* Then, recursively iterate over all child domains (subdomains) */
+ list_for_each_entry(link, &genpd->parent_links, parent_node) {
+ struct generic_pm_domain *child_pd = link->child;
+
+ ret = genpd_for_each_child(child_pd, fn, data);
+ if (ret)
+ return ret;
+ }
+
+ return 0;
+}
+
#ifdef CONFIG_DEBUG_FS
static struct dentry *genpd_debugfs_dir;
diff --git a/drivers/pmdomain/core.h b/drivers/pmdomain/core.h
new file mode 100644
index 000000000000..7061891d31fb
--- /dev/null
+++ b/drivers/pmdomain/core.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0 */
+/*
+ * Internal header for PM domain core
+ *
+ * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
+ */
+
+#ifndef __PM_DOMAIN_CORE_H__
+#define __PM_DOMAIN_CORE_H__
+
+#include <linux/pm_domain.h>
+
+int genpd_for_each_child(struct generic_pm_domain *genpd,
+ int (*fn)(struct device *dev, void *data),
+ void *data);
+
+#endif /* __PM_DOMAIN_CORE_H__ */
--
2.47.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v3 3/4] pmdomain: core: add genpd_for_each_child() helper
2026-06-11 19:59 ` [PATCH v3 3/4] pmdomain: core: add genpd_for_each_child() helper Kevin Hilman (TI)
@ 2026-06-30 21:13 ` Kendall Willis
0 siblings, 0 replies; 11+ messages in thread
From: Kendall Willis @ 2026-06-30 21:13 UTC (permalink / raw)
To: Kevin Hilman (TI)
Cc: Rafael J. Wysocki, linux-pm, Ulf Hansson, Dhruva Gole,
linux-kernel
On 12:59-20260611, Kevin Hilman (TI) wrote:
> Add a new internal helper function genpd_for_each_child() that recursively
> iterates over all devices in a PM domain and its child domains (subdomains).
> This helper is useful for governors and other core PM domain code that needs
> to examine or apply operations to all devices within a domain hierarchy.
>
> The function takes a callback that is invoked for each device, and supports
> early termination if the callback returns a non-zero value.
>
> The helper is defined in a new internal header drivers/pmdomain/core.h and
> implemented in drivers/pmdomain/core.c, making it available to other PM
> domain subsystem components.
>
> The first user of this helper is the cpu_system_power_down_ok() governor
> function, which uses it to check device QoS latency constraints across the
> entire domain hierarchy.
>
> Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
> ---
> drivers/pmdomain/core.c | 45 +++++++++++++++++++++++++++++++++++++++++++++
> drivers/pmdomain/core.h | 17 +++++++++++++++++
> 2 files changed, 62 insertions(+)
>
> diff --git a/drivers/pmdomain/core.c b/drivers/pmdomain/core.c
> index 52ea84e548ff..347bfb7db75a 100644
> --- a/drivers/pmdomain/core.c
> +++ b/drivers/pmdomain/core.c
> @@ -24,6 +24,8 @@
> #include <linux/cpu.h>
> #include <linux/debugfs.h>
>
> +#include "core.h"
> +
> /* Provides a unique ID for each genpd device */
> static DEFINE_IDA(genpd_ida);
>
> @@ -281,6 +283,49 @@ static void genpd_sd_counter_inc(struct generic_pm_domain *genpd)
> smp_mb__after_atomic();
> }
>
> +/**
> + * genpd_for_each_child - Recursively iterate over all devices
> + * in a PM domain and its subdomains.
> + * @genpd: PM domain to iterate over.
> + * @fn: Callback function to invoke for each device.
> + * @data: Data to pass to the callback function.
> + *
> + * This function recursively walks through all devices in the given PM domain
> + * and all devices in its child PM domains (subdomains). For each device found,
> + * the callback function @fn is invoked with the device and @data as arguments.
> + *
> + * Note: this function is inteded for use by the core and governors,
> + * not for pmdomain providers.
> + *
> + * Returns: 0 on success, or the first non-zero value returned by @fn.
> + */
> +int genpd_for_each_child(struct generic_pm_domain *genpd,
> + int (*fn)(struct device *dev, void *data),
> + void *data)
> +{
> + struct pm_domain_data *pdd;
> + struct gpd_link *link;
> + int ret;
> +
> + /* First, iterate over all devices in this domain */
> + list_for_each_entry(pdd, &genpd->dev_list, list_node) {
> + ret = fn(pdd->dev, data);
> + if (ret)
> + return ret;
> + }
> +
> + /* Then, recursively iterate over all child domains (subdomains) */
> + list_for_each_entry(link, &genpd->parent_links, parent_node) {
> + struct generic_pm_domain *child_pd = link->child;
> +
> + ret = genpd_for_each_child(child_pd, fn, data);
> + if (ret)
> + return ret;
> + }
> +
> + return 0;
> +}
> +
> #ifdef CONFIG_DEBUG_FS
> static struct dentry *genpd_debugfs_dir;
>
> diff --git a/drivers/pmdomain/core.h b/drivers/pmdomain/core.h
> new file mode 100644
> index 000000000000..7061891d31fb
> --- /dev/null
> +++ b/drivers/pmdomain/core.h
> @@ -0,0 +1,17 @@
> +/* SPDX-License-Identifier: GPL-2.0 */
> +/*
> + * Internal header for PM domain core
> + *
> + * Copyright (C) 2011 Rafael J. Wysocki <rjw@sisk.pl>, Renesas Electronics Corp.
> + */
Does the copyright need to be updated?
> +
> +#ifndef __PM_DOMAIN_CORE_H__
> +#define __PM_DOMAIN_CORE_H__
> +
> +#include <linux/pm_domain.h>
> +
> +int genpd_for_each_child(struct generic_pm_domain *genpd,
> + int (*fn)(struct device *dev, void *data),
> + void *data);
> +
> +#endif /* __PM_DOMAIN_CORE_H__ */
>
> --
> 2.47.3
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread
* [PATCH v3 4/4] pmdomain: add support system-wide resume latency constraints
2026-06-11 19:59 [PATCH v3 0/4] PM: QoS/pmdomains: support resume latencies for system-wide PM Kevin Hilman (TI)
` (2 preceding siblings ...)
2026-06-11 19:59 ` [PATCH v3 3/4] pmdomain: core: add genpd_for_each_child() helper Kevin Hilman (TI)
@ 2026-06-11 19:59 ` Kevin Hilman (TI)
2026-07-01 17:01 ` Kendall Willis
3 siblings, 1 reply; 11+ messages in thread
From: Kevin Hilman (TI) @ 2026-06-11 19:59 UTC (permalink / raw)
To: Rafael J. Wysocki, linux-pm, Ulf Hansson; +Cc: Dhruva Gole, linux-kernel
In addition to checking for CPU latency constraints when checking if
OK to power down a domain, also check for QoS latency constraints in
all devices of a domain and use that in determining the final latency
constraint to use for the domain.
Since cpu_system_power_down_ok() is used for system-wide suspend, the
per-device constratints are only relevant if the LATENCY_SYS QoS flag
is set.
Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
---
drivers/pmdomain/governor.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 56 insertions(+)
diff --git a/drivers/pmdomain/governor.c b/drivers/pmdomain/governor.c
index 96737abbb496..1a85fd375db9 100644
--- a/drivers/pmdomain/governor.c
+++ b/drivers/pmdomain/governor.c
@@ -13,6 +13,8 @@
#include <linux/cpumask.h>
#include <linux/ktime.h>
+#include "core.h"
+
static int dev_update_qos_constraint(struct device *dev, void *data)
{
s64 *constraint_ns_p = data;
@@ -425,17 +427,71 @@ static bool cpu_power_down_ok(struct dev_pm_domain *pd)
return true;
}
+/**
+ * check_device_qos_latency - Callback to check device QoS latency constraints
+ * @dev: Device to check
+ * @data: Pointer to s32 variable holding minimum latency found so far
+ *
+ * This callback checks if the device has a system-wide resume latency QoS
+ * constraint and updates the minimum latency if this device has a stricter
+ * constraint.
+ *
+ * This runs in atomic context: for a CPU domain the genpd lock is a raw
+ * spinlock and the s2idle path runs in the syscore suspend window with
+ * interrupts disabled. The lockless dev_pm_qos_raw_*() accessors must
+ * therefore be used here; the locked dev_pm_qos_read_value() /
+ * dev_pm_qos_flags() would take dev->power.lock, which is a sleeping lock
+ * on PREEMPT_RT and must not be acquired in this context. The values read
+ * are best-effort, which matches the sibling cpu_power_down_ok() governor.
+ *
+ * The system-wide flag is checked first so that devices that have not opted
+ * in only incur a single lockless read.
+ *
+ * Returns: 0 to continue iteration.
+ */
+static int check_device_qos_latency(struct device *dev, void *data)
+{
+ s32 *min_dev_latency = data;
+ s32 dev_latency;
+
+ if (!(dev_pm_qos_raw_flags(dev) & PM_QOS_FLAG_LATENCY_SYS))
+ return 0;
+
+ dev_latency = dev_pm_qos_raw_resume_latency(dev);
+ if (dev_latency != PM_QOS_RESUME_LATENCY_NO_CONSTRAINT) {
+ dev_dbg(dev,
+ "has QoS system-wide resume latency=%d\n",
+ dev_latency);
+ if (dev_latency < *min_dev_latency)
+ *min_dev_latency = dev_latency;
+ }
+
+ return 0;
+}
+
static bool cpu_system_power_down_ok(struct dev_pm_domain *pd)
{
s64 constraint_ns = cpu_wakeup_latency_qos_limit() * NSEC_PER_USEC;
struct generic_pm_domain *genpd = pd_to_genpd(pd);
int state_idx = genpd->state_count - 1;
+ s32 min_dev_latency = PM_QOS_RESUME_LATENCY_NO_CONSTRAINT;
+ s64 min_dev_latency_ns = PM_QOS_RESUME_LATENCY_NO_CONSTRAINT_NS;
if (!(genpd->flags & GENPD_FLAG_CPU_DOMAIN)) {
genpd->state_idx = state_idx;
return true;
}
+ genpd_for_each_child(genpd, check_device_qos_latency,
+ &min_dev_latency);
+
+ /* If device latency < CPU wakeup latency, use it instead */
+ if (min_dev_latency != PM_QOS_RESUME_LATENCY_NO_CONSTRAINT) {
+ min_dev_latency_ns = min_dev_latency * NSEC_PER_USEC;
+ if (min_dev_latency_ns < constraint_ns)
+ constraint_ns = min_dev_latency_ns;
+ }
+
/* Find the deepest state for the latency constraint. */
while (state_idx >= 0) {
s64 latency_ns = genpd->states[state_idx].power_off_latency_ns +
--
2.47.3
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [PATCH v3 4/4] pmdomain: add support system-wide resume latency constraints
2026-06-11 19:59 ` [PATCH v3 4/4] pmdomain: add support system-wide resume latency constraints Kevin Hilman (TI)
@ 2026-07-01 17:01 ` Kendall Willis
0 siblings, 0 replies; 11+ messages in thread
From: Kendall Willis @ 2026-07-01 17:01 UTC (permalink / raw)
To: Kevin Hilman (TI)
Cc: Rafael J. Wysocki, linux-pm, Ulf Hansson, Dhruva Gole,
linux-kernel
Hi Kevin,
On 12:59-20260611, Kevin Hilman (TI) wrote:
> In addition to checking for CPU latency constraints when checking if
> OK to power down a domain, also check for QoS latency constraints in
> all devices of a domain and use that in determining the final latency
> constraint to use for the domain.
>
> Since cpu_system_power_down_ok() is used for system-wide suspend, the
> per-device constratints are only relevant if the LATENCY_SYS QoS flag
> is set.
nit: s/constratints/constraints
>
> Signed-off-by: Kevin Hilman (TI) <khilman@baylibre.com>
> ---
Reviewed-by: Kendall Willis <k-willis@ti.com>
Best,
Kendall
> drivers/pmdomain/governor.c | 56 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 56 insertions(+)
>
> diff --git a/drivers/pmdomain/governor.c b/drivers/pmdomain/governor.c
> index 96737abbb496..1a85fd375db9 100644
> --- a/drivers/pmdomain/governor.c
> +++ b/drivers/pmdomain/governor.c
> @@ -13,6 +13,8 @@
> #include <linux/cpumask.h>
> #include <linux/ktime.h>
>
> +#include "core.h"
> +
> static int dev_update_qos_constraint(struct device *dev, void *data)
> {
> s64 *constraint_ns_p = data;
> @@ -425,17 +427,71 @@ static bool cpu_power_down_ok(struct dev_pm_domain *pd)
> return true;
> }
>
> +/**
> + * check_device_qos_latency - Callback to check device QoS latency constraints
> + * @dev: Device to check
> + * @data: Pointer to s32 variable holding minimum latency found so far
> + *
> + * This callback checks if the device has a system-wide resume latency QoS
> + * constraint and updates the minimum latency if this device has a stricter
> + * constraint.
> + *
> + * This runs in atomic context: for a CPU domain the genpd lock is a raw
> + * spinlock and the s2idle path runs in the syscore suspend window with
> + * interrupts disabled. The lockless dev_pm_qos_raw_*() accessors must
> + * therefore be used here; the locked dev_pm_qos_read_value() /
> + * dev_pm_qos_flags() would take dev->power.lock, which is a sleeping lock
> + * on PREEMPT_RT and must not be acquired in this context. The values read
> + * are best-effort, which matches the sibling cpu_power_down_ok() governor.
> + *
> + * The system-wide flag is checked first so that devices that have not opted
> + * in only incur a single lockless read.
> + *
> + * Returns: 0 to continue iteration.
> + */
> +static int check_device_qos_latency(struct device *dev, void *data)
> +{
> + s32 *min_dev_latency = data;
> + s32 dev_latency;
> +
> + if (!(dev_pm_qos_raw_flags(dev) & PM_QOS_FLAG_LATENCY_SYS))
> + return 0;
> +
> + dev_latency = dev_pm_qos_raw_resume_latency(dev);
> + if (dev_latency != PM_QOS_RESUME_LATENCY_NO_CONSTRAINT) {
> + dev_dbg(dev,
> + "has QoS system-wide resume latency=%d\n",
> + dev_latency);
> + if (dev_latency < *min_dev_latency)
> + *min_dev_latency = dev_latency;
> + }
> +
> + return 0;
> +}
> +
> static bool cpu_system_power_down_ok(struct dev_pm_domain *pd)
> {
> s64 constraint_ns = cpu_wakeup_latency_qos_limit() * NSEC_PER_USEC;
> struct generic_pm_domain *genpd = pd_to_genpd(pd);
> int state_idx = genpd->state_count - 1;
> + s32 min_dev_latency = PM_QOS_RESUME_LATENCY_NO_CONSTRAINT;
> + s64 min_dev_latency_ns = PM_QOS_RESUME_LATENCY_NO_CONSTRAINT_NS;
>
> if (!(genpd->flags & GENPD_FLAG_CPU_DOMAIN)) {
> genpd->state_idx = state_idx;
> return true;
> }
>
> + genpd_for_each_child(genpd, check_device_qos_latency,
> + &min_dev_latency);
> +
> + /* If device latency < CPU wakeup latency, use it instead */
> + if (min_dev_latency != PM_QOS_RESUME_LATENCY_NO_CONSTRAINT) {
> + min_dev_latency_ns = min_dev_latency * NSEC_PER_USEC;
> + if (min_dev_latency_ns < constraint_ns)
> + constraint_ns = min_dev_latency_ns;
> + }
> +
> /* Find the deepest state for the latency constraint. */
> while (state_idx >= 0) {
> s64 latency_ns = genpd->states[state_idx].power_off_latency_ns +
>
> --
> 2.47.3
>
>
^ permalink raw reply [flat|nested] 11+ messages in thread