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>,
Taniya Das <quic_tdas@quicinc.com>,
linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
aiqun.yu@oss.qualcomm.com, tingwei.zhang@oss.qualcomm.com,
trilok.soni@oss.qualcomm.com, yijie.yang@oss.qualcomm.com
Subject: Re: [PATCH 0/9] Add support for Clock controllers for Kaanapali
Date: Thu, 23 Oct 2025 14:12:18 +0530 [thread overview]
Message-ID: <703cfc97-ff4b-47f5-9f14-fb3ea4f68f7a@oss.qualcomm.com> (raw)
In-Reply-To: <hy3dcra2izm3elcrmvmsyfeht6e4bhzqzy35ooqywve2c2htfg@24hpt2nn6um5>
On 10/23/2025 3:23 AM, Bjorn Andersson wrote:
> On Wed, Sep 24, 2025 at 03:58:52PM -0700, Jingyi Wang wrote:
>> Add support for Global clock controller(GCC), TCSR and the RPMH clock
>> controller for the Qualcomm Kaanapali SoC. And update the PLL support.
>>
>> Signed-off-by: Jingyi Wang <jingyi.wang@oss.qualcomm.com>
>> ---
>> Taniya Das (9):
>> dt-bindings: clock: qcom-rpmhcc: Add RPMHCC for Kaanapali
>> dt-bindings: clock: qcom: Document the Kaanapali TCSR Clock Controller
>> dt-bindings: clock: qcom: Add Kaanapali Global clock controller
>> clk: qcom: rpmh: Add support for Kaanapali rpmh clocks
>> clk: qcom: Update TCSR clock driver for Kaanapali
>> clk: qcom: Add support for Global clock controller on Kaanapali
>> clk: qcom: clk-alpha-pll: Update the PLL support for cal_l
>> clk: qcom: clk-alpha-pll: Add support for controlling Pongo EKO_T PLL
>> clk: qcom: clk-alpha-pll: Add support for controlling Rivian PLL
>
> The series adds rpmh, tcsr and global clock controllers, and then it
> adds support for cal_l and two new PLL types.
>
This ordering I will fix in the next patch.
> I assumed that meant that the order of the patches was wrong, but I
> can't find anything in this series that depend on these 3 last patches.
>
These were originally part of the Multimedia clock series and got
introduced after Jingyi mentioned they need to be moved to this series.
I can update the order of the patches to RPMHCC, TCSRCC, PLL code
changes and then the GCC clock controller if that seems okay for these
patches, please suggest.
> They seems to just add dead code?
>
> Regards,
> Bjorn
>
>>
>> .../devicetree/bindings/clock/qcom,rpmhcc.yaml | 1 +
>> .../bindings/clock/qcom,sm8550-tcsr.yaml | 1 +
>> .../devicetree/bindings/clock/qcom,sm8750-gcc.yaml | 8 +-
>> drivers/clk/qcom/Kconfig | 9 +
>> drivers/clk/qcom/Makefile | 1 +
>> drivers/clk/qcom/clk-alpha-pll.c | 20 +-
>> drivers/clk/qcom/clk-alpha-pll.h | 7 +
>> drivers/clk/qcom/clk-rpmh.c | 39 +
>> drivers/clk/qcom/gcc-kaanapali.c | 3541 ++++++++++++++++++++
>> drivers/clk/qcom/tcsrcc-sm8750.c | 34 +-
>> include/dt-bindings/clock/qcom,kaanapali-gcc.h | 241 ++
>> 11 files changed, 3897 insertions(+), 5 deletions(-)
>> ---
>> base-commit: ae2d20002576d2893ecaff25db3d7ef9190ac0b6
>> change-id: 20250917-knp-clk-c60d94492863
>>
>> Best regards,
>> --
>> Jingyi Wang <jingyi.wang@oss.qualcomm.com>
>>
--
Thanks,
Taniya Das
prev parent reply other threads:[~2025-10-23 8:42 UTC|newest]
Thread overview: 29+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-09-24 22:58 [PATCH 0/9] Add support for Clock controllers for Kaanapali Jingyi Wang
2025-09-24 22:58 ` [PATCH 1/9] dt-bindings: clock: qcom-rpmhcc: Add RPMHCC " Jingyi Wang
2025-10-12 3:06 ` Krzysztof Kozlowski
2025-09-24 22:58 ` [PATCH 2/9] dt-bindings: clock: qcom: Document the Kaanapali TCSR Clock Controller Jingyi Wang
2025-10-12 3:07 ` Krzysztof Kozlowski
2025-09-24 22:58 ` [PATCH 3/9] dt-bindings: clock: qcom: Add Kaanapali Global clock controller Jingyi Wang
2025-10-12 3:06 ` Krzysztof Kozlowski
2025-09-24 22:58 ` [PATCH 4/9] clk: qcom: rpmh: Add support for Kaanapali rpmh clocks Jingyi Wang
2025-10-20 10:11 ` Aiqun(Maria) Yu
2025-10-20 10:25 ` Krzysztof Kozlowski
2025-10-20 10:59 ` Dmitry Baryshkov
2025-10-23 6:35 ` Taniya Das
2025-09-24 22:58 ` [PATCH 5/9] clk: qcom: Update TCSR clock driver for Kaanapali Jingyi Wang
2025-10-20 10:11 ` Aiqun(Maria) Yu
2025-10-20 10:27 ` Krzysztof Kozlowski
2025-10-20 11:03 ` Dmitry Baryshkov
2025-10-23 6:56 ` Taniya Das
2025-10-22 21:47 ` Bjorn Andersson
2025-09-24 22:58 ` [PATCH 6/9] clk: qcom: Add support for Global clock controller on Kaanapali Jingyi Wang
2025-09-25 21:26 ` Dmitry Baryshkov
2025-09-24 22:58 ` [PATCH 7/9] clk: qcom: clk-alpha-pll: Update the PLL support for cal_l Jingyi Wang
2025-09-25 9:30 ` Konrad Dybcio
2025-09-25 21:28 ` Dmitry Baryshkov
2025-09-24 22:59 ` [PATCH 8/9] clk: qcom: clk-alpha-pll: Add support for controlling Pongo EKO_T PLL Jingyi Wang
2025-09-25 12:46 ` Konrad Dybcio
2025-09-24 22:59 ` [PATCH 9/9] clk: qcom: clk-alpha-pll: Add support for controlling Rivian PLL Jingyi Wang
2025-09-25 12:46 ` Konrad Dybcio
2025-10-22 21:53 ` [PATCH 0/9] Add support for Clock controllers for Kaanapali Bjorn Andersson
2025-10-23 8:42 ` 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=703cfc97-ff4b-47f5-9f14-fb3ea4f68f7a@oss.qualcomm.com \
--to=taniya.das@oss.qualcomm.com \
--cc=aiqun.yu@oss.qualcomm.com \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jingyi.wang@oss.qualcomm.com \
--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=quic_tdas@quicinc.com \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
--cc=tingwei.zhang@oss.qualcomm.com \
--cc=trilok.soni@oss.qualcomm.com \
--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