From: Taniya Das <taniya.das@oss.qualcomm.com>
To: Bjorn Andersson <andersson@kernel.org>,
Jingyi Wang <jingyi.wang@oss.qualcomm.com>
Cc: Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Neil Armstrong <neil.armstrong@linaro.org>,
Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>,
Jagadeesh Kona <quic_jkona@quicinc.com>,
Bryan O'Donoghue <bryan.odonoghue@linaro.org>,
Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>,
Maxime Coquelin <mcoquelin.stm32@gmail.com>,
Alexandre Torgue <alexandre.torgue@foss.st.com>,
Konrad Dybcio <konradybcio@kernel.org>,
linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>,
linux-stm32@st-md-mailman.stormreply.com,
linux-arm-kernel@lists.infradead.org, aiqun.yu@oss.qualcomm.com,
tingwei.zhang@oss.qualcomm.com, trilok.soni@oss.qualcomm.com,
yijie.yang@oss.qualcomm.com
Subject: Re: [PATCH 9/9] drivers: clk: qcom: Add support for GPUCC and GFXCLK for Kaanapali
Date: Fri, 26 Sep 2025 12:54:28 +0530 [thread overview]
Message-ID: <b01e5413-c8d2-4e4d-af9f-106bdbab6e07@oss.qualcomm.com> (raw)
In-Reply-To: <ba4vkdcbudvyoj3i7eufd27luhmn6ai4mgkefza6sfbjzfwgp7@rvnpins2bruh>
On 9/25/2025 6:47 PM, Bjorn Andersson wrote:
> On Wed, Sep 24, 2025 at 04:56:50PM -0700, Jingyi Wang wrote:
>> From: Taniya Das <taniya.das@oss.qualcomm.com>
>>
>> Support the graphics clock controller for Kaanapali for Graphics SW
>> driver to use the clocks.
>
> GFXCLKCTL is a new thing, please describe what it is.
>
Sure Bjorn, will update more details of the GFXCLKCTL.
>>
> [..]
>> diff --git a/drivers/clk/qcom/gxclkctl-kaanapali.c b/drivers/clk/qcom/gxclkctl-kaanapali.c
> [..]
>> +static struct platform_driver gx_clkctl_kaanapali_driver = {
>> + .probe = gx_clkctl_kaanapali_probe,
>> + .driver = {
>> + .name = "gxclkctl-kaanapali",
>> + .of_match_table = gx_clkctl_kaanapali_match_table,
>> + },
>> +};
>> +
>> +static int __init gx_clkctl_kaanapali_init(void)
>> +{
>> + return platform_driver_register(&gx_clkctl_kaanapali_driver);
>> +}
>> +subsys_initcall(gx_clkctl_kaanapali_init);
>
> We're not starting up the GPU at subsys initlevel. Can't this just be
> module_platform_driver()? If not please document why.
>
You are right, we could move it to module_platform_driver().
> Regards,
> Bjorn
>
>> +
>> +static void __exit gx_clkctl_kaanapali_exit(void)
>> +{
>> + platform_driver_unregister(&gx_clkctl_kaanapali_driver);
>> +}
>> +module_exit(gx_clkctl_kaanapali_exit);
>> +
>> +MODULE_DESCRIPTION("QTI GFXCLKCTL KAANAPALI Driver");
>> +MODULE_LICENSE("GPL");
>>
>> --
>> 2.25.1
>>
--
Thanks,
Taniya Das
prev parent reply other threads:[~2025-09-26 7:24 UTC|newest]
Thread overview: 32+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-24 23:56 [PATCH 0/9] Add support for Multimedia Clock controllers for Kaanapali Jingyi Wang
2025-09-24 23:56 ` [PATCH 1/9] dt-bindings: clock: qcom: document Kaanapali DISPCC clock controller Jingyi Wang
2025-10-09 10:48 ` Krzysztof Kozlowski
2025-09-24 23:56 ` [PATCH 2/9] dt-bindings: clock: sm8450-camcc: Remove sc8280xp camcc to from sm8450 camcc Jingyi Wang
2025-09-25 8:29 ` Bryan O'Donoghue
2025-09-25 8:44 ` Taniya Das
2025-09-25 12:47 ` Bryan O'Donoghue
2025-09-25 13:12 ` Bjorn Andersson
2025-09-25 13:14 ` Krzysztof Kozlowski
2025-09-25 21:20 ` Dmitry Baryshkov
2025-09-26 7:06 ` Taniya Das
2025-09-24 23:56 ` [PATCH 3/9] dt-bindings: clock: qcom: Add support for CAMCC for Kaanapali Jingyi Wang
2025-09-25 8:39 ` Bryan O'Donoghue
2025-09-25 8:46 ` Taniya Das
2025-09-25 9:01 ` Bryan O'Donoghue
2025-09-26 7:09 ` Taniya Das
2025-09-24 23:56 ` [PATCH 4/9] dt-bindings: clock: qcom: Add Kaanapali video clock controller Jingyi Wang
2025-09-25 9:02 ` Bryan O'Donoghue
2025-10-09 10:49 ` Krzysztof Kozlowski
2025-09-24 23:56 ` [PATCH 5/9] dt-bindings: clock: qcom: document the Kaanapali GPU Clock Controller Jingyi Wang
2025-09-25 9:04 ` Bryan O'Donoghue
2025-09-24 23:56 ` [PATCH 6/9] clk: qcom: dispcc: Add support for display clock controller Kaanapali Jingyi Wang
2025-09-24 23:56 ` [PATCH 7/9] clk: qcom: camcc: Add support for camera clock controller for Kaanapali Jingyi Wang
2025-09-25 9:10 ` Bryan O'Donoghue
2025-09-26 8:40 ` Taniya Das
2025-09-25 12:45 ` Bryan O'Donoghue
2025-09-26 7:10 ` Taniya Das
2025-09-24 23:56 ` [PATCH 8/9] clk: qcom: Add support for VideoCC driver " Jingyi Wang
2025-09-26 0:55 ` Bryan O'Donoghue
2025-09-24 23:56 ` [PATCH 9/9] drivers: clk: qcom: Add support for GPUCC and GFXCLK " Jingyi Wang
2025-09-25 13:17 ` Bjorn Andersson
2025-09-26 7:24 ` Taniya Das [this message]
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=b01e5413-c8d2-4e4d-af9f-106bdbab6e07@oss.qualcomm.com \
--to=taniya.das@oss.qualcomm.com \
--cc=aiqun.yu@oss.qualcomm.com \
--cc=alexandre.torgue@foss.st.com \
--cc=andersson@kernel.org \
--cc=bryan.odonoghue@linaro.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=jingyi.wang@oss.qualcomm.com \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.org \
--cc=krzysztof.kozlowski@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-stm32@st-md-mailman.stormreply.com \
--cc=mcoquelin.stm32@gmail.com \
--cc=mturquette@baylibre.com \
--cc=neil.armstrong@linaro.org \
--cc=quic_jkona@quicinc.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=tingwei.zhang@oss.qualcomm.com \
--cc=trilok.soni@oss.qualcomm.com \
--cc=vladimir.zapolskiy@linaro.org \
--cc=yijie.yang@oss.qualcomm.com \
/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