1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2%YAML 1.2 3--- 4$id: http://devicetree.org/schemas/clock/qcom,sm6350-camcc.yaml# 5$schema: http://devicetree.org/meta-schemas/core.yaml# 6 7title: Qualcomm Camera Clock & Reset Controller on SM6350 8 9maintainers: 10 - Konrad Dybcio <konradybcio@kernel.org> 11 - Taniya Das <quic_tdas@quicinc.com> 12 13description: | 14 Qualcomm camera clock control module provides the clocks, resets and power 15 domains on SM6350 and QCS615 SoC. 16 17 See also: 18 include/dt-bindings/clock/qcom,qcs615-camcc.h 19 include/dt-bindings/clock/qcom,sm6350-camcc.h 20 21properties: 22 compatible: 23 enum: 24 - qcom,qcs615-camcc 25 - qcom,sm6350-camcc 26 27 clocks: 28 items: 29 - description: Board XO source 30 31 reg: 32 maxItems: 1 33 34required: 35 - compatible 36 - clocks 37 38allOf: 39 - $ref: qcom,gcc.yaml# 40 41unevaluatedProperties: false 42 43examples: 44 - | 45 #include <dt-bindings/clock/qcom,rpmh.h> 46 clock-controller@ad00000 { 47 compatible = "qcom,sm6350-camcc"; 48 reg = <0x0ad00000 0x16000>; 49 clocks = <&rpmhcc RPMH_CXO_CLK>; 50 #clock-cells = <1>; 51 #reset-cells = <1>; 52 #power-domain-cells = <1>; 53 }; 54... 55