From: Imran Shaik <imran.shaik@oss.qualcomm.com>
To: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>,
Konrad Dybcio <konrad.dybcio@oss.qualcomm.com>
Cc: Bjorn Andersson <andersson@kernel.org>,
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>,
Konrad Dybcio <konradybcio@kernel.org>,
Ajit Pandey <ajit.pandey@oss.qualcomm.com>,
Taniya Das <taniya.das@oss.qualcomm.com>,
Jagadeesh Kona <jagadeesh.kona@oss.qualcomm.com>,
linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/4] clk: qcom: Add support for Display Clock Controller on Shikra
Date: Tue, 19 May 2026 09:34:09 +0530 [thread overview]
Message-ID: <1c0bb8ff-eaca-4779-9b2f-4d564abd8670@oss.qualcomm.com> (raw)
In-Reply-To: <qg2n6pwjcoz7262eylept4mec2l74h2owfbhjykfxap6qwgzuq@oawiwgok4hhi>
On 13-05-2026 08:38 pm, Dmitry Baryshkov wrote:
> On Wed, May 13, 2026 at 04:51:03PM +0200, Konrad Dybcio wrote:
>> On 5/13/26 4:06 PM, Dmitry Baryshkov wrote:
>>> On Wed, May 13, 2026 at 05:01:16PM +0300, Dmitry Baryshkov wrote:
>>>> On Wed, May 13, 2026 at 07:10:38PM +0530, Imran Shaik wrote:
>>>>> Add a driver for the Display clock controller on Qualcomm Shikra SoC.
>>>>>
>>>>> Signed-off-by: Imran Shaik <imran.shaik@oss.qualcomm.com>
>>>>> ---
>>>>> drivers/clk/qcom/Kconfig | 10 +
>>>>> drivers/clk/qcom/Makefile | 1 +
>>>>> drivers/clk/qcom/dispcc-shikra.c | 565 +++++++++++++++++++++++++++++++++++++++
>>>>> 3 files changed, 576 insertions(+)
>>>>>
>>>>
>>>> Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@oss.qualcomm.com>
>>>
>>> After comparing the files...
>>>
>>> Can we use dispcc-qcm2290.c instead? It uses clock-names instead of
>>> clock-indices, but I think it should be fine to use clock-names as a
>>> one-off.
>>
>> Or we can convert it to use indices, since those are stable for agatti
>> too - the names would remain in the binding, just unused by the driver
>
> Either is fine for me.
>
Hi,
In Agatti, apart from the clock-names difference, I see that the AHB/XO
clocks are not handled as always-on via the probe and instead rely on
pm_clk style handling, whereas Shikra follows the newer pattern by
marking required CBCRs as critical during probe. I think that attempting
to modify this approach into Agatti may introduce unnecessary complexity.
And the Agatti DISPCC doesn't have the DT_DSI1 bindings exposed, and
updating this might break the ABI with respect to bindings, and DT.
Given these and considering that Agatti is already stable, keeping the
Shikra as separate GPUCC/DISPCC drivers is better to avoid the risk of
regressions and complexity.
Please let know your thoughts on this.
Thanks,
Imran
next prev parent reply other threads:[~2026-05-19 4:04 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-05-13 13:40 [PATCH 0/4] clk: qcom: Add DISPCC and GPUCC support for the Qualcomm Shikra SoC Imran Shaik
2026-05-13 13:40 ` [PATCH 1/4] dt-bindings: clock: qcom: Add Shikra Display clock controller Imran Shaik
2026-05-30 11:30 ` Krzysztof Kozlowski
2026-05-13 13:40 ` [PATCH 2/4] dt-bindings: clock: qcom: Add Shikra GPU " Imran Shaik
2026-05-13 13:40 ` [PATCH 3/4] clk: qcom: Add support for Display Clock Controller on Shikra Imran Shaik
2026-05-13 14:01 ` Dmitry Baryshkov
2026-05-13 14:06 ` Dmitry Baryshkov
2026-05-13 14:51 ` Konrad Dybcio
2026-05-13 15:08 ` Dmitry Baryshkov
2026-05-19 4:04 ` Imran Shaik [this message]
2026-05-20 16:29 ` Dmitry Baryshkov
2026-05-22 9:09 ` Imran Shaik
2026-05-23 10:04 ` Dmitry Baryshkov
2026-05-13 13:40 ` [PATCH 4/4] clk: qcom: Add support for GPU " Imran Shaik
2026-05-13 14:11 ` Dmitry Baryshkov
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=1c0bb8ff-eaca-4779-9b2f-4d564abd8670@oss.qualcomm.com \
--to=imran.shaik@oss.qualcomm.com \
--cc=ajit.pandey@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=dmitry.baryshkov@oss.qualcomm.com \
--cc=jagadeesh.kona@oss.qualcomm.com \
--cc=konrad.dybcio@oss.qualcomm.com \
--cc=konradybcio@kernel.org \
--cc=krzk+dt@kernel.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@kernel.org \
--cc=sboyd@kernel.org \
--cc=taniya.das@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
all inboxes | Powered by JetHome®