Re: [PATCH 2/3] arm64: dts: qcom: talos: Add CCI definitions
From: Konrad Dybcio
Date: Mon Dec 29 2025 - 08:21:49 EST
On 12/22/25 9:44 AM, Wenmeng Liu wrote:
> Qualcomm Talos SoC contains 1 Camera Control Interface controllers.
>
> Signed-off-by: Wenmeng Liu <wenmeng.liu@xxxxxxxxxxxxxxxx>
> ---
> arch/arm64/boot/dts/qcom/talos.dtsi | 76 +++++++++++++++++++++++++++++++++++++
> 1 file changed, 76 insertions(+)
>
> diff --git a/arch/arm64/boot/dts/qcom/talos.dtsi b/arch/arm64/boot/dts/qcom/talos.dtsi
> index 2e2fa9dc11aed6e8413488302710bc219ca9b64d..ebb1807f0222c075d4207163ed4359a55616d903 100644
> --- a/arch/arm64/boot/dts/qcom/talos.dtsi
> +++ b/arch/arm64/boot/dts/qcom/talos.dtsi
> @@ -1550,6 +1550,46 @@ tlmm: pinctrl@3100000 {
> #interrupt-cells = <2>;
> wakeup-parent = <&pdc>;
>
> + cci_default: cci0-default-state {
> + cci_i2c0_default: cci-i2c0-default-pins {
> + /* SDA, SCL */
> + pins = "gpio32", "gpio33";
> + function = "cci_i2c";
> +
> + bias-pull-up;
> + drive-strength = <2>;
> + };
Please match the style used in all reasonably non-acient additions:
cci_i2c0_default: cci-i2c0-default-pins {
/* SDA, SCL */
pins = "gpio32", "gpio33";
function = "cci_i2c";
drive-strength = <2>;
bias-pull-up;
};
[...]
> + cci: cci@ac4a000 {
> + compatible = "qcom,sm6150-cci", "qcom,msm8996-cci";
> +
> + reg = <0x0 0x0ac4a000 0x0 0x4000>;
double-space
Konrad