1*0e8011faSEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only 2*0e8011faSEmmanuel Vadot%YAML 1.2 3*0e8011faSEmmanuel Vadot--- 4*0e8011faSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/qcom,gcc-mdm9615.yaml# 5*0e8011faSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*0e8011faSEmmanuel Vadot 7*0e8011faSEmmanuel Vadottitle: Qualcomm Global Clock & Reset Controller 8*0e8011faSEmmanuel Vadot 9*0e8011faSEmmanuel Vadotmaintainers: 10*0e8011faSEmmanuel Vadot - Stephen Boyd <sboyd@kernel.org> 11*0e8011faSEmmanuel Vadot - Taniya Das <quic_tdas@quicinc.com> 12*0e8011faSEmmanuel Vadot 13*0e8011faSEmmanuel Vadotdescription: | 14*0e8011faSEmmanuel Vadot Qualcomm global clock control module provides the clocks, resets and power 15*0e8011faSEmmanuel Vadot domains. 16*0e8011faSEmmanuel Vadot 17*0e8011faSEmmanuel Vadot See also:: 18*0e8011faSEmmanuel Vadot include/dt-bindings/clock/qcom,gcc-mdm9615.h 19*0e8011faSEmmanuel Vadot 20*0e8011faSEmmanuel VadotallOf: 21*0e8011faSEmmanuel Vadot - $ref: qcom,gcc.yaml# 22*0e8011faSEmmanuel Vadot 23*0e8011faSEmmanuel Vadotproperties: 24*0e8011faSEmmanuel Vadot compatible: 25*0e8011faSEmmanuel Vadot enum: 26*0e8011faSEmmanuel Vadot - qcom,gcc-mdm9615 27*0e8011faSEmmanuel Vadot 28*0e8011faSEmmanuel Vadot clocks: 29*0e8011faSEmmanuel Vadot items: 30*0e8011faSEmmanuel Vadot - description: CXO clock 31*0e8011faSEmmanuel Vadot - description: PLL4 from LLC 32*0e8011faSEmmanuel Vadot 33*0e8011faSEmmanuel Vadot '#power-domain-cells': false 34*0e8011faSEmmanuel Vadot 35*0e8011faSEmmanuel Vadotrequired: 36*0e8011faSEmmanuel Vadot - compatible 37*0e8011faSEmmanuel Vadot 38*0e8011faSEmmanuel VadotunevaluatedProperties: false 39*0e8011faSEmmanuel Vadot 40*0e8011faSEmmanuel Vadotexamples: 41*0e8011faSEmmanuel Vadot - | 42*0e8011faSEmmanuel Vadot clock-controller@900000 { 43*0e8011faSEmmanuel Vadot compatible = "qcom,gcc-mdm9615"; 44*0e8011faSEmmanuel Vadot reg = <0x900000 0x4000>; 45*0e8011faSEmmanuel Vadot #clock-cells = <1>; 46*0e8011faSEmmanuel Vadot #reset-cells = <1>; 47*0e8011faSEmmanuel Vadot clocks = <&cxo_board>, 48*0e8011faSEmmanuel Vadot <&lcc_pll4>; 49*0e8011faSEmmanuel Vadot }; 50*0e8011faSEmmanuel Vadot... 51