157b97190STaniya Das# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 257b97190STaniya Das%YAML 1.2 357b97190STaniya Das--- 457b97190STaniya Das$id: http://devicetree.org/schemas/clock/qcom,sc7180-camcc.yaml# 557b97190STaniya Das$schema: http://devicetree.org/meta-schemas/core.yaml# 657b97190STaniya Das 7ece3c319SKrzysztof Kozlowskititle: Qualcomm Camera Clock & Reset Controller on SC7180 857b97190STaniya Das 957b97190STaniya Dasmaintainers: 1060838878STaniya Das - Taniya Das <quic_tdas@quicinc.com> 1157b97190STaniya Das 1257b97190STaniya Dasdescription: | 13ece3c319SKrzysztof Kozlowski Qualcomm camera clock control module provides the clocks, resets and power 14ece3c319SKrzysztof Kozlowski domains on SC7180. 1557b97190STaniya Das 16ece3c319SKrzysztof Kozlowski See also:: include/dt-bindings/clock/qcom,camcc-sc7180.h 1757b97190STaniya Das 18*4ab17216SBryan O'DonoghueallOf: 19*4ab17216SBryan O'Donoghue - $ref: qcom,gcc.yaml# 20*4ab17216SBryan O'Donoghue 2157b97190STaniya Dasproperties: 2257b97190STaniya Das compatible: 2357b97190STaniya Das const: qcom,sc7180-camcc 2457b97190STaniya Das 2557b97190STaniya Das clocks: 2657b97190STaniya Das items: 2757b97190STaniya Das - description: Board XO source 2857b97190STaniya Das - description: Camera_ahb clock from GCC 2957b97190STaniya Das - description: Camera XO clock from GCC 3057b97190STaniya Das 3157b97190STaniya Das clock-names: 3257b97190STaniya Das items: 3357b97190STaniya Das - const: bi_tcxo 3457b97190STaniya Das - const: iface 3557b97190STaniya Das - const: xo 3657b97190STaniya Das 3757b97190STaniya Das reg: 3857b97190STaniya Das maxItems: 1 3957b97190STaniya Das 4057b97190STaniya Dasrequired: 4157b97190STaniya Das - compatible 4257b97190STaniya Das - clocks 4357b97190STaniya Das - clock-names 4457b97190STaniya Das 45*4ab17216SBryan O'DonoghueunevaluatedProperties: false 4657b97190STaniya Das 4757b97190STaniya Dasexamples: 4857b97190STaniya Das - | 4957b97190STaniya Das #include <dt-bindings/clock/qcom,gcc-sc7180.h> 5057b97190STaniya Das #include <dt-bindings/clock/qcom,rpmh.h> 5157b97190STaniya Das clock-controller@ad00000 { 5257b97190STaniya Das compatible = "qcom,sc7180-camcc"; 5357b97190STaniya Das reg = <0x0ad00000 0x10000>; 5457b97190STaniya Das clocks = <&rpmhcc RPMH_CXO_CLK>, 5557b97190STaniya Das <&gcc GCC_CAMERA_AHB_CLK>, 5657b97190STaniya Das <&gcc GCC_CAMERA_XO_CLK>; 5757b97190STaniya Das clock-names = "bi_tcxo", "iface", "xo"; 5857b97190STaniya Das #clock-cells = <1>; 5957b97190STaniya Das #reset-cells = <1>; 6057b97190STaniya Das #power-domain-cells = <1>; 6157b97190STaniya Das }; 6257b97190STaniya Das... 63