brintos

brintos / linux-shallow public Read only

0
0
Text · 1.4 KiB · c7fe640 Raw
63 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/qcom,sc7180-camcc.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm Camera Clock & Reset Controller on SC71808 9maintainers:10  - Taniya Das <quic_tdas@quicinc.com>11 12description: |13  Qualcomm camera clock control module provides the clocks, resets and power14  domains on SC7180.15 16  See also:: include/dt-bindings/clock/qcom,camcc-sc7180.h17 18allOf:19  - $ref: qcom,gcc.yaml#20 21properties:22  compatible:23    const: qcom,sc7180-camcc24 25  clocks:26    items:27      - description: Board XO source28      - description: Camera_ahb clock from GCC29      - description: Camera XO clock from GCC30 31  clock-names:32    items:33      - const: bi_tcxo34      - const: iface35      - const: xo36 37  reg:38    maxItems: 139 40required:41  - compatible42  - clocks43  - clock-names44 45unevaluatedProperties: false46 47examples:48  - |49    #include <dt-bindings/clock/qcom,gcc-sc7180.h>50    #include <dt-bindings/clock/qcom,rpmh.h>51    clock-controller@ad00000 {52      compatible = "qcom,sc7180-camcc";53      reg = <0x0ad00000 0x10000>;54      clocks = <&rpmhcc RPMH_CXO_CLK>,55               <&gcc GCC_CAMERA_AHB_CLK>,56               <&gcc GCC_CAMERA_XO_CLK>;57      clock-names = "bi_tcxo", "iface", "xo";58      #clock-cells = <1>;59      #reset-cells = <1>;60      #power-domain-cells = <1>;61    };62...63