From: Ulf Hansson <ulf.hansson@linaro.org>
To: Viresh Kumar <vireshk@kernel.org>, Nishanth Menon <nm@ti.com>,
Stephen Boyd <sboyd@kernel.org>,
Dikshita Agarwal <quic_dikshita@quicinc.com>
Cc: Bjorn Andersson <andersson@kernel.org>,
Konrad Dybcio <quic_kdybcio@quicinc.com>,
Nikunj Kela <nkela@quicinc.com>,
Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
Thierry Reding <thierry.reding@gmail.com>,
Mikko Perttunen <mperttunen@nvidia.com>,
Jonathan Hunter <jonathanh@nvidia.com>,
Stephan Gerhold <stephan@gerhold.net>,
Ilia Lin <ilia.lin@kernel.org>,
Stanimir Varbanov <stanimir.k.varbanov@gmail.com>,
Vikash Garodia <quic_vgarodia@quicinc.com>,
Ulf Hansson <ulf.hansson@linaro.org>,
linux-pm@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org
Subject: [PATCH 2/2] OPP/pmdomain: Fix the assignment of the required-devs
Date: Tue, 3 Sep 2024 00:48:15 +0200 [thread overview]
Message-ID: <20240902224815.78220-3-ulf.hansson@linaro.org> (raw)
In-Reply-To: <20240902224815.78220-1-ulf.hansson@linaro.org>
The recent attempt to make genpd first lookup an OPP table for a device
that has been attached to it and then let the OPP core validate whether the
OPP table is correct, fails for some configurations.
More precisely, if a device has multiple power-domains, which all has an
OPP table associated, doesn't necessarily mean that the device's OPP table
needs multiple phandles specified in the required-opps. Instead it's
perfectly possible to use a single phandle in the required-opps, which is
typically where the current code fails to assign the correct required-dev.
To fix this problem, let's instead start by letting the OPP core find the
device node for the required OPP table and then let genpd search for a
corresponding OPP table, allowing us the find the correct required-dev to
assign for it.
Reported-by: Dikshita Agarwal <quic_dikshita@quicinc.com>
Fixes: f0d2dcc9b087 ("OPP/pmdomain: Set the required_dev for a required OPP during genpd attach")
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
---
drivers/opp/core.c | 15 +++++++-----
drivers/pmdomain/core.c | 52 +++++++++++++++++++++++------------------
include/linux/pm_opp.h | 7 ++++--
3 files changed, 43 insertions(+), 31 deletions(-)
diff --git a/drivers/opp/core.c b/drivers/opp/core.c
index 66cac7a1d9db..538612886446 100644
--- a/drivers/opp/core.c
+++ b/drivers/opp/core.c
@@ -2363,7 +2363,7 @@ static void _opp_put_config_regulators_helper(struct opp_table *opp_table)
static int _opp_set_required_dev(struct opp_table *opp_table,
struct device *dev,
struct device *required_dev,
- struct opp_table *required_opp_table)
+ config_required_dev_t config_required_dev)
{
int i;
@@ -2380,6 +2380,7 @@ static int _opp_set_required_dev(struct opp_table *opp_table,
for (i = 0; i < opp_table->required_opp_count; i++) {
struct opp_table *table = opp_table->required_opp_tables[i];
+ struct opp_table *required_opp_table;
/*
* The OPP table should be available at this point. If not, it's
@@ -2396,7 +2397,9 @@ static int _opp_set_required_dev(struct opp_table *opp_table,
* We need to compare the nodes for the OPP tables, rather than
* the OPP tables themselves, as we may have separate instances.
*/
- if (required_opp_table->np == table->np) {
+ required_opp_table = config_required_dev(required_dev,
+ table->np);
+ if (required_opp_table) {
/*
* The required_opp_tables parsing is not perfect, as
* the OPP core does the parsing solely based on the DT
@@ -2422,8 +2425,8 @@ static int _opp_set_required_dev(struct opp_table *opp_table,
}
}
- dev_err(dev, "Missing OPP table, unable to set the required dev\n");
- return -ENODEV;
+ /* No matching OPP table found for the required_dev. */
+ return -ERANGE;
}
static void _opp_put_required_dev(struct opp_table *opp_table,
@@ -2547,10 +2550,10 @@ int dev_pm_opp_set_config(struct device *dev, struct dev_pm_opp_config *config)
data->flags |= OPP_CONFIG_REGULATOR;
}
- if (config->required_dev && config->required_opp_table) {
+ if (config->required_dev && config->config_required_dev) {
ret = _opp_set_required_dev(opp_table, dev,
config->required_dev,
- config->required_opp_table);
+ config->config_required_dev);
if (ret < 0)
goto err;
diff --git a/drivers/pmdomain/core.c b/drivers/pmdomain/core.c
index edef1a520110..0ff0b513b2a1 100644
--- a/drivers/pmdomain/core.c
+++ b/drivers/pmdomain/core.c
@@ -2874,20 +2874,21 @@ static void genpd_dev_pm_sync(struct device *dev)
genpd_queue_power_off_work(pd);
}
-static struct opp_table *genpd_find_opp_table(struct generic_pm_domain *genpd,
- unsigned int depth)
+static struct opp_table *_genpd_find_opp_table(struct generic_pm_domain *genpd,
+ struct device_node *np,
+ unsigned int depth)
{
- struct opp_table *opp_table;
+ struct opp_table *opp_table = genpd->opp_table;
struct gpd_link *link;
- if (genpd->opp_table)
- return genpd->opp_table;
+ if (opp_table && (dev_pm_opp_table_to_of_node(opp_table) == np))
+ return opp_table;
list_for_each_entry(link, &genpd->child_links, child_node) {
struct generic_pm_domain *parent = link->parent;
genpd_lock_nested(parent, depth + 1);
- opp_table = genpd_find_opp_table(parent, depth + 1);
+ opp_table = _genpd_find_opp_table(parent, np, depth + 1);
genpd_unlock(parent);
if (opp_table)
@@ -2897,12 +2898,27 @@ static struct opp_table *genpd_find_opp_table(struct generic_pm_domain *genpd,
return NULL;
}
-static int genpd_set_required_opp_dev(struct device *dev,
- struct device *base_dev)
+static struct opp_table *genpd_find_opp_table(struct device *dev,
+ struct device_node *np)
{
struct generic_pm_domain *genpd = dev_to_genpd(dev);
struct opp_table *opp_table;
- int ret = 0;
+
+ genpd_lock(genpd);
+ opp_table = _genpd_find_opp_table(genpd, np, 0);
+ genpd_unlock(genpd);
+
+ return opp_table;
+}
+
+static int genpd_set_required_opp_dev(struct device *dev,
+ struct device *base_dev)
+{
+ struct dev_pm_opp_config config = {
+ .required_dev = dev,
+ .config_required_dev = genpd_find_opp_table,
+ };
+ int ret;
/* Limit support to non-providers for now. */
if (of_property_present(base_dev->of_node, "#power-domain-cells"))
@@ -2911,20 +2927,10 @@ static int genpd_set_required_opp_dev(struct device *dev,
if (!dev_pm_opp_of_has_required_opp(base_dev))
return 0;
- genpd_lock(genpd);
- opp_table = genpd_find_opp_table(genpd, 0);
- genpd_unlock(genpd);
-
- if (opp_table) {
- struct dev_pm_opp_config config = {
- .required_dev = dev,
- .required_opp_table = opp_table,
- };
-
- ret = devm_pm_opp_set_config(base_dev, &config);
- if (ret < 0)
- dev_err(dev, "failed to set opp config %d\n", ret);
- }
+ ret = devm_pm_opp_set_config(base_dev, &config);
+ ret = ret == -ERANGE ? 0 : ret;
+ if (ret < 0)
+ dev_err(dev, "failed to set opp config %d\n", ret);
return ret;
}
diff --git a/include/linux/pm_opp.h b/include/linux/pm_opp.h
index 7894e631cded..0ada4a5057c8 100644
--- a/include/linux/pm_opp.h
+++ b/include/linux/pm_opp.h
@@ -53,6 +53,9 @@ typedef int (*config_regulators_t)(struct device *dev,
typedef int (*config_clks_t)(struct device *dev, struct opp_table *opp_table,
struct dev_pm_opp *opp, void *data, bool scaling_down);
+typedef struct opp_table *(*config_required_dev_t)(struct device *dev,
+ struct device_node *opp_table_np);
+
/**
* struct dev_pm_opp_config - Device OPP configuration values
* @clk_names: Clk names, NULL terminated array.
@@ -63,7 +66,7 @@ typedef int (*config_clks_t)(struct device *dev, struct opp_table *opp_table,
* @supported_hw_count: Number of elements in the array.
* @regulator_names: Array of pointers to the names of the regulator, NULL terminated.
* @required_dev: Required OPP device.
- * @required_opp_table: The corresponding required OPP table for @required_dev.
+ * @config_required_dev: Custom helper to find the required OPP table for $required_dev.
*
* This structure contains platform specific OPP configurations for the device.
*/
@@ -77,7 +80,7 @@ struct dev_pm_opp_config {
unsigned int supported_hw_count;
const char * const *regulator_names;
struct device *required_dev;
- struct opp_table *required_opp_table;
+ config_required_dev_t config_required_dev;
};
#define OPP_LEVEL_UNSET U32_MAX
--
2.34.1
next prev parent reply other threads:[~2024-09-02 22:48 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-02 22:48 [PATCH 0/2] OPP/pmdomain: Assign the correct required-dev Ulf Hansson
2024-09-02 22:48 ` [PATCH 1/2] OPP: Add helper to retrieve the OF node for an OPP table Ulf Hansson
2024-09-02 22:48 ` Ulf Hansson [this message]
2024-09-03 7:16 ` [PATCH 2/2] OPP/pmdomain: Fix the assignment of the required-devs Viresh Kumar
2024-09-03 9:54 ` Ulf Hansson
2024-09-03 10:53 ` Viresh Kumar
2024-09-03 11:43 ` Ulf Hansson
2024-09-04 6:40 ` Viresh Kumar
2024-09-04 12:57 ` Ulf Hansson
2024-09-06 6:14 ` Viresh Kumar
2024-09-06 8:49 ` Ulf Hansson
2024-09-11 6:02 ` Viresh Kumar
2024-09-11 14:15 ` Ulf Hansson
2024-09-12 10:13 ` Ulf Hansson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20240902224815.78220-3-ulf.hansson@linaro.org \
--to=ulf.hansson@linaro.org \
--cc=andersson@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=ilia.lin@kernel.org \
--cc=jonathanh@nvidia.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-pm@vger.kernel.org \
--cc=mperttunen@nvidia.com \
--cc=nkela@quicinc.com \
--cc=nm@ti.com \
--cc=quic_dikshita@quicinc.com \
--cc=quic_kdybcio@quicinc.com \
--cc=quic_vgarodia@quicinc.com \
--cc=sboyd@kernel.org \
--cc=stanimir.k.varbanov@gmail.com \
--cc=stephan@gerhold.net \
--cc=thierry.reding@gmail.com \
--cc=vireshk@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox