From: Vladimir Zapolskiy <vladimir.zapolskiy@linaro.org>
To: Satya Priya Kakitapalli <quic_skakitap@quicinc.com>,
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>
Cc: Ajit Pandey <quic_ajipan@quicinc.com>,
Imran Shaik <quic_imrashai@quicinc.com>,
Taniya Das <quic_tdas@quicinc.com>,
Jagadeesh Kona <quic_jkona@quicinc.com>,
linux-arm-msm@vger.kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/3] dt-bindings: clock: Add Qualcomm SC8180X Camera clock controller
Date: Sat, 26 Apr 2025 17:03:29 +0300 [thread overview]
Message-ID: <a4149ac8-7e47-48a9-84ef-42aa367d014e@linaro.org> (raw)
In-Reply-To: <20250422-sc8180x-camcc-support-v1-1-691614d13f06@quicinc.com>
On 4/22/25 08:42, Satya Priya Kakitapalli wrote:
> Add device tree bindings for the camera clock controller on
> Qualcomm SC8180X platform.
>
> Signed-off-by: Satya Priya Kakitapalli <quic_skakitap@quicinc.com>
> ---
> .../bindings/clock/qcom,sc8180x-camcc.yaml | 65 ++++++++
> include/dt-bindings/clock/qcom,sc8180x-camcc.h | 181 +++++++++++++++++++++
> 2 files changed, 246 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/clock/qcom,sc8180x-camcc.yaml b/Documentation/devicetree/bindings/clock/qcom,sc8180x-camcc.yaml
> new file mode 100644
> index 0000000000000000000000000000000000000000..b17f40ee53a3002b2942869d60773dbecd764134
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/clock/qcom,sc8180x-camcc.yaml
> @@ -0,0 +1,65 @@
> +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
> +%YAML 1.2
> +---
> +$id: http://devicetree.org/schemas/clock/qcom,sc8180x-camcc.yaml#
> +$schema: http://devicetree.org/meta-schemas/core.yaml#
> +
> +title: Qualcomm Camera Clock & Reset Controller on SC8180X
> +
> +maintainers:
> + - Satya Priya Kakitapalli <quic_skakitap@quicinc.com>
> +
> +description: |
> + Qualcomm camera clock control module provides the clocks, resets and
> + power domains on SC8180X.
> +
> + See also: include/dt-bindings/clock/qcom,sc8180x-camcc.h
> +
> +properties:
> + compatible:
> + const: qcom,sc8180x-camcc
> +
> + clocks:
> + items:
> + - description: Board XO source
From sc8180x_rpmh_clocks[] in clk/qcom/clk-rpmh.c I get that there is
RPMH_CXO_CLK_A clock also, shall it be added to this list then?
If yes, and taking into account Konrad's ask for GCC_CAMERA_AHB_CLK, it
implies that the new dt bindings can be omitted, instead please consider
to add the 'qcom,sc8180x-camcc' compatible into qcom,sa8775p-camcc.yaml.
However still there is a difference, qcom,sa8775p-camcc and qcom,qcs8300-camcc
does not contain 'required-opps' property, it might be an omission over
there though, please double check it. The ultimate goal would be to get
a shorter list of different camcc dt bindings.
> + - description: Sleep clock source
> +
> + power-domains:
> + maxItems: 1
> + description:
> + A phandle and PM domain specifier for the MMCX power domain.
> +
> + required-opps:
> + maxItems: 1
> + description:
> + A phandle to an OPP node describing required MMCX performance point.
> +
> +allOf:
> + - $ref: qcom,gcc.yaml#
> +
> +required:
> + - compatible
> + - clocks
> + - power-domains
> + - required-opps
> +
> +unevaluatedProperties: false
> +
> +examples:
> + - |
> + #include <dt-bindings/clock/qcom,gcc-sc8180x.h>
> + #include <dt-bindings/clock/qcom,rpmh.h>
> + #include <dt-bindings/power/qcom-rpmpd.h>
> + clock-controller@ad00000 {
> + compatible = "qcom,sc8180x-camcc";
> + reg = <0x0ad00000 0x20000>;
> + clocks = <&rpmhcc RPMH_CXO_CLK>,
> + <&sleep_clk>;
> + power-domains = <&rpmhpd SC8180X_MMCX>;
> + required-opps = <&rpmhpd_opp_low_svs>;
> +
> + #clock-cells = <1>;
> + #reset-cells = <1>;
> + #power-domain-cells = <1>;
> + };
> +...
--
Best wishes,
Vladimir
next prev parent reply other threads:[~2025-04-26 14:03 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-04-22 5:42 [PATCH 0/3] clk: qcom: Add camera clock controller support for sc8180x Satya Priya Kakitapalli
2025-04-22 5:42 ` [PATCH 1/3] dt-bindings: clock: Add Qualcomm SC8180X Camera clock controller Satya Priya Kakitapalli
2025-04-22 11:41 ` Bryan O'Donoghue
2025-04-24 10:38 ` Satya Priya Kakitapalli
2025-04-25 9:35 ` Konrad Dybcio
2025-04-25 10:06 ` Bryan O'Donoghue
2025-04-25 10:23 ` Bryan O'Donoghue
2025-04-30 4:53 ` Satya Priya Kakitapalli
2025-04-30 8:43 ` Satya Priya Kakitapalli
2025-04-26 14:03 ` Vladimir Zapolskiy [this message]
2025-04-29 19:03 ` Konrad Dybcio
2025-04-30 5:01 ` Satya Priya Kakitapalli
2025-04-22 5:42 ` [PATCH 2/3] clk: qcom: camcc-sc8180x: Add SC8180X camera clock controller driver Satya Priya Kakitapalli
2025-04-23 13:54 ` Dmitry Baryshkov
2025-04-26 13:24 ` Vladimir Zapolskiy
2025-04-30 5:02 ` Satya Priya Kakitapalli
2025-05-07 11:52 ` kernel test robot
2025-04-22 5:42 ` [PATCH 3/3] arm64: dts: qcom: Add camera clock controller for sc8180x Satya Priya Kakitapalli
2025-04-23 13:32 ` Konrad Dybcio
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=a4149ac8-7e47-48a9-84ef-42aa367d014e@linaro.org \
--to=vladimir.zapolskiy@linaro.org \
--cc=andersson@kernel.org \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--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=quic_ajipan@quicinc.com \
--cc=quic_imrashai@quicinc.com \
--cc=quic_jkona@quicinc.com \
--cc=quic_skakitap@quicinc.com \
--cc=quic_tdas@quicinc.com \
--cc=robh@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