From: Rajendra Nayak <rnayak@codeaurora.org>
To: Viresh Kumar <viresh.kumar@linaro.org>
Cc: sboyd@kernel.org, andy.gross@linaro.org, ulf.hansson@linaro.org,
devicetree@vger.kernel.org, linux-arm-msm@vger.kernel.org,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH 4/7] soc: qcom: rpmpd: Add support for get/set performance state
Date: Fri, 16 Mar 2018 11:22:05 +0530 [thread overview]
Message-ID: <36687f34-449d-643c-251f-4469322db21e@codeaurora.org> (raw)
In-Reply-To: <20180316043535.GQ15832@vireshk-i7>
On 03/16/2018 10:05 AM, Viresh Kumar wrote:
> On 16-03-18, 09:38, Rajendra Nayak wrote:
>> With genpd now expecting powerdomain drivers supporting performance
>> state to support get/set performance state callbacks, add support for it
>> in the rpmpd driver.
>>
>> Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org>
>> Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
>> ---
>> drivers/soc/qcom/rpmpd.c | 42 ++++++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 42 insertions(+)
>>
>> diff --git a/drivers/soc/qcom/rpmpd.c b/drivers/soc/qcom/rpmpd.c
>> index c8754d867c33..4058c5b450c6 100644
>> --- a/drivers/soc/qcom/rpmpd.c
>> +++ b/drivers/soc/qcom/rpmpd.c
>> @@ -14,6 +14,7 @@
>> #include <linux/of.h>
>> #include <linux/of_device.h>
>> #include <linux/platform_device.h>
>> +#include <linux/pm_opp.h>
>> #include <linux/soc/qcom/smd-rpm.h>
>>
>> #include <dt-bindings/mfd/qcom-rpm.h>
>> @@ -29,6 +30,8 @@
>> #define KEY_ENABLE 0x6e657773 /* swen */
>> #define KEY_FLOOR_CORNER 0x636676 /* vfc */
>>
>> +#define MAX_RPMPD_STATE 6
>> +
>> #define DEFINE_RPMPD_CORN_SMPA(_platform, _name, _active, r_id) \
>> static struct rpmpd _platform##_##_active; \
>> static struct rpmpd _platform##_##_name = { \
>> @@ -222,6 +225,43 @@ static int rpmpd_power_off(struct generic_pm_domain *domain)
>> return ret;
>> }
>>
>> +static int rpmpd_set_performance(struct generic_pm_domain *domain,
>> + unsigned int state)
>> +{
>> + int ret = 0;
>> + struct rpmpd *pd = domain_to_rpmpd(domain);
>> +
>> + mutex_lock(&rpmpd_lock);
>> +
>> + if (state > MAX_RPMPD_STATE)
>> + goto out;
>> +
>> + pd->corner = state;
>> +
>> + if (!pd->enabled && (pd->key != KEY_FLOOR_CORNER))
>> + goto out;
>> +
>> + ret = rpmpd_aggregate_corner(pd);
>> +
>> +out:
>> + mutex_unlock(&rpmpd_lock);
>> +
>> + return ret;
>> +}
>> +
>> +static unsigned int rpmpd_get_performance(struct generic_pm_domain *genpd,
>> + struct dev_pm_opp *opp)
>> +{
>> + struct device_node *np;
>> + unsigned int corner = 0;
>> +
>> + np = dev_pm_opp_get_of_node(opp);
>> + of_property_read_u32(np, "qcom,level", &corner);
>
> Don't we want to error out or do something else in case of an error ?
yes, I missed the error checks, will add.
--
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
hosted by The Linux Foundation
next prev parent reply other threads:[~2018-03-16 5:52 UTC|newest]
Thread overview: 23+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-16 4:08 [PATCH 0/7] Add powerdomain driver for corners on msm8996 Rajendra Nayak
2018-03-16 4:08 ` [PATCH 1/7] PM / OPP: Add dev_pm_opp_get_of_node() Rajendra Nayak
2018-04-07 13:00 ` Stephen Boyd
2018-04-09 3:22 ` Viresh Kumar
2018-04-09 15:17 ` Jordan Crouse
2018-03-16 4:08 ` [PATCH 2/7] soc: qcom: rpmpd: Add a powerdomain driver to model corners Rajendra Nayak
2018-03-18 12:52 ` Rob Herring
2018-03-16 4:08 ` [PATCH 3/7] dt-bindings: opp: Introduce qcom-opp bindings Rajendra Nayak
2018-03-16 4:33 ` Viresh Kumar
2018-03-26 22:22 ` Rob Herring
2018-04-07 13:05 ` Stephen Boyd
2018-03-16 4:08 ` [PATCH 4/7] soc: qcom: rpmpd: Add support for get/set performance state Rajendra Nayak
2018-03-16 4:35 ` Viresh Kumar
2018-03-16 5:52 ` Rajendra Nayak [this message]
2018-03-16 4:08 ` [PATCH 5/7] arm64: dts: msm8996: Add rpmpd device node Rajendra Nayak
2018-03-16 4:38 ` Viresh Kumar
2018-04-09 16:03 ` Stephen Boyd
2018-04-10 3:40 ` Viresh Kumar
2018-04-10 4:19 ` Rajendra Nayak
2018-03-16 4:08 ` [PATCH 6/7] mmc: sdhci-msm: Adapt the driver to use OPPs to set clocks/performance state Rajendra Nayak
2018-03-16 4:41 ` Viresh Kumar
2018-03-16 4:08 ` [PATCH 7/7] soc: qcom: rpmpd: Add a max vote on all corners at init Rajendra Nayak
2018-03-16 4:41 ` Viresh Kumar
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=36687f34-449d-643c-251f-4469322db21e@codeaurora.org \
--to=rnayak@codeaurora.org \
--cc=andy.gross@linaro.org \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=sboyd@kernel.org \
--cc=ulf.hansson@linaro.org \
--cc=viresh.kumar@linaro.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;
as well as URLs for NNTP newsgroup(s).