From: "Satya Priya Kakitapalli (Temp)" <quic_skakitap@quicinc.com>
To: Konrad Dybcio <konrad.dybcio@linaro.org>,
Andy Gross <agross@kernel.org>,
Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Conor Dooley <conor+dt@kernel.org>
Cc: <linux-arm-msm@vger.kernel.org>, <linux-clk@vger.kernel.org>,
<linux-kernel@vger.kernel.org>, <devicetree@vger.kernel.org>,
Bjorn Andersson <andersson@kernel.org>,
Bryan O'Donoghue <bryan.odonoghue@linaro.org>
Subject: Re: [PATCH V2 4/4] clk: qcom: videocc-sm8150: Add runtime PM support
Date: Fri, 24 Nov 2023 17:04:28 +0530 [thread overview]
Message-ID: <9c41d1ce-d4e7-efca-1be0-ddf296f59ac8@quicinc.com> (raw)
In-Reply-To: <9710258c-3419-41f2-9b30-f818b031ae5f@linaro.org>
On 11/23/2023 1:31 AM, Konrad Dybcio wrote:
>
>
> On 11/18/23 13:39, Satya Priya Kakitapalli wrote:
>> Add runtime PM support to ensure the supply rails are enabled
>> when necessary.
>>
>> Signed-off-by: Satya Priya Kakitapalli <quic_skakitap@quicinc.com>
>> ---
>> Changes since v1:
>> - None.
>>
>> drivers/clk/qcom/videocc-sm8150.c | 20 ++++++++++++++++++--
>> 1 file changed, 18 insertions(+), 2 deletions(-)
>>
>> diff --git a/drivers/clk/qcom/videocc-sm8150.c
>> b/drivers/clk/qcom/videocc-sm8150.c
>> index 52a9a453a143..b57df5ff96c4 100644
>> --- a/drivers/clk/qcom/videocc-sm8150.c
>> +++ b/drivers/clk/qcom/videocc-sm8150.c
>> @@ -6,6 +6,7 @@
>> #include <linux/clk-provider.h>
>> #include <linux/module.h>
>> #include <linux/platform_device.h>
>> +#include <linux/pm_runtime.h>
>> #include <linux/regmap.h>
>> #include <dt-bindings/clock/qcom,videocc-sm8150.h>
>> @@ -240,17 +241,32 @@ MODULE_DEVICE_TABLE(of,
>> video_cc_sm8150_match_table);
>> static int video_cc_sm8150_probe(struct platform_device *pdev)
>> {
>> struct regmap *regmap;
>> + int ret;
>> +
>> + ret = devm_pm_runtime_enable(&pdev->dev);
>> + if (ret)
>> + return ret;
>> +
>> + ret = pm_runtime_resume_and_get(&pdev->dev);
>> + if (ret)
>> + return ret;
>> regmap = qcom_cc_map(pdev, &video_cc_sm8150_desc);
>> - if (IS_ERR(regmap))
>> + if (IS_ERR(regmap)) {
>> + pm_runtime_put(&pdev->dev);
> Shouldn't this be _sync?
>
Yes, will update it on v2
> Konrad
next prev parent reply other threads:[~2023-11-24 11:34 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-11-18 12:39 [PATCH V2 0/4] Add runtime PM support for videocc on SM8150 Satya Priya Kakitapalli
2023-11-18 12:39 ` [PATCH V2 1/4] dt-bindings: clock: Update the videocc resets for sm8150 Satya Priya Kakitapalli
2023-11-18 12:39 ` [PATCH V2 2/4] clk: qcom: videocc-sm8150: Update the videocc resets Satya Priya Kakitapalli
2023-11-22 20:00 ` Konrad Dybcio
2023-11-18 12:39 ` [PATCH V2 3/4] clk: qcom: videocc-sm8150: Add missing PLL config property Satya Priya Kakitapalli
2023-11-20 11:49 ` Konrad Dybcio
2023-11-18 12:39 ` [PATCH V2 4/4] clk: qcom: videocc-sm8150: Add runtime PM support Satya Priya Kakitapalli
2023-11-22 20:01 ` Konrad Dybcio
2023-11-24 11:34 ` Satya Priya Kakitapalli (Temp) [this message]
2023-11-20 11:48 ` [PATCH V2 0/4] Add runtime PM support for videocc on SM8150 Konrad Dybcio
2023-11-28 16:11 ` Satya Priya Kakitapalli (Temp)
2023-11-29 14:00 ` Konrad Dybcio
2023-12-01 9:19 ` Satya Priya Kakitapalli (Temp)
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=9c41d1ce-d4e7-efca-1be0-ddf296f59ac8@quicinc.com \
--to=quic_skakitap@quicinc.com \
--cc=agross@kernel.org \
--cc=andersson@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=konrad.dybcio@linaro.org \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@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