1*7ef62cebSEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*7ef62cebSEmmanuel Vadot%YAML 1.2 3*7ef62cebSEmmanuel Vadot--- 4*7ef62cebSEmmanuel Vadot$id: http://devicetree.org/schemas/clock/qcom,gcc-msm8909.yaml# 5*7ef62cebSEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*7ef62cebSEmmanuel Vadot 7*7ef62cebSEmmanuel Vadottitle: Qualcomm Global Clock & Reset Controller Binding for MSM8909 8*7ef62cebSEmmanuel Vadot 9*7ef62cebSEmmanuel Vadotmaintainers: 10*7ef62cebSEmmanuel Vadot - Stephan Gerhold <stephan@gerhold.net> 11*7ef62cebSEmmanuel Vadot 12*7ef62cebSEmmanuel Vadotdescription: | 13*7ef62cebSEmmanuel Vadot Qualcomm global clock control module which supports the clocks, resets and 14*7ef62cebSEmmanuel Vadot power domains on MSM8909. 15*7ef62cebSEmmanuel Vadot 16*7ef62cebSEmmanuel Vadot See also: 17*7ef62cebSEmmanuel Vadot - dt-bindings/clock/qcom,gcc-msm8909.h 18*7ef62cebSEmmanuel Vadot 19*7ef62cebSEmmanuel Vadotproperties: 20*7ef62cebSEmmanuel Vadot compatible: 21*7ef62cebSEmmanuel Vadot const: qcom,gcc-msm8909 22*7ef62cebSEmmanuel Vadot 23*7ef62cebSEmmanuel Vadot clocks: 24*7ef62cebSEmmanuel Vadot items: 25*7ef62cebSEmmanuel Vadot - description: XO source 26*7ef62cebSEmmanuel Vadot - description: Sleep clock source 27*7ef62cebSEmmanuel Vadot - description: DSI phy instance 0 dsi clock 28*7ef62cebSEmmanuel Vadot - description: DSI phy instance 0 byte clock 29*7ef62cebSEmmanuel Vadot 30*7ef62cebSEmmanuel Vadot clock-names: 31*7ef62cebSEmmanuel Vadot items: 32*7ef62cebSEmmanuel Vadot - const: xo 33*7ef62cebSEmmanuel Vadot - const: sleep_clk 34*7ef62cebSEmmanuel Vadot - const: dsi0pll 35*7ef62cebSEmmanuel Vadot - const: dsi0pllbyte 36*7ef62cebSEmmanuel Vadot 37*7ef62cebSEmmanuel Vadotrequired: 38*7ef62cebSEmmanuel Vadot - compatible 39*7ef62cebSEmmanuel Vadot - clocks 40*7ef62cebSEmmanuel Vadot - clock-names 41*7ef62cebSEmmanuel Vadot 42*7ef62cebSEmmanuel VadotallOf: 43*7ef62cebSEmmanuel Vadot - $ref: qcom,gcc.yaml# 44*7ef62cebSEmmanuel Vadot 45*7ef62cebSEmmanuel VadotunevaluatedProperties: false 46*7ef62cebSEmmanuel Vadot 47*7ef62cebSEmmanuel Vadotexamples: 48*7ef62cebSEmmanuel Vadot - | 49*7ef62cebSEmmanuel Vadot gcc: clock-controller@1800000 { 50*7ef62cebSEmmanuel Vadot compatible = "qcom,gcc-msm8909"; 51*7ef62cebSEmmanuel Vadot reg = <0x01800000 0x80000>; 52*7ef62cebSEmmanuel Vadot #clock-cells = <1>; 53*7ef62cebSEmmanuel Vadot #reset-cells = <1>; 54*7ef62cebSEmmanuel Vadot #power-domain-cells = <1>; 55*7ef62cebSEmmanuel Vadot clocks = <&xo_board>, <&sleep_clk>, <&dsi0_phy 1>, <&dsi0_phy 0>; 56*7ef62cebSEmmanuel Vadot clock-names = "xo", "sleep_clk", "dsi0pll", "dsi0pllbyte"; 57*7ef62cebSEmmanuel Vadot }; 58*7ef62cebSEmmanuel Vadot... 59