1*833e5d42SEmmanuel Vadot# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) 2*833e5d42SEmmanuel Vadot%YAML 1.2 3*833e5d42SEmmanuel Vadot--- 4*833e5d42SEmmanuel Vadot$id: http://devicetree.org/schemas/clock/qcom,milos-dispcc.yaml# 5*833e5d42SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml# 6*833e5d42SEmmanuel Vadot 7*833e5d42SEmmanuel Vadottitle: Qualcomm Display Clock & Reset Controller on Milos 8*833e5d42SEmmanuel Vadot 9*833e5d42SEmmanuel Vadotmaintainers: 10*833e5d42SEmmanuel Vadot - Luca Weiss <luca.weiss@fairphone.com> 11*833e5d42SEmmanuel Vadot 12*833e5d42SEmmanuel Vadotdescription: | 13*833e5d42SEmmanuel Vadot Qualcomm display clock control module provides the clocks, resets and power 14*833e5d42SEmmanuel Vadot domains on Milos. 15*833e5d42SEmmanuel Vadot 16*833e5d42SEmmanuel Vadot See also: include/dt-bindings/clock/qcom,milos-dispcc.h 17*833e5d42SEmmanuel Vadot 18*833e5d42SEmmanuel Vadotproperties: 19*833e5d42SEmmanuel Vadot compatible: 20*833e5d42SEmmanuel Vadot const: qcom,milos-dispcc 21*833e5d42SEmmanuel Vadot 22*833e5d42SEmmanuel Vadot clocks: 23*833e5d42SEmmanuel Vadot items: 24*833e5d42SEmmanuel Vadot - description: Board XO source 25*833e5d42SEmmanuel Vadot - description: Sleep clock source 26*833e5d42SEmmanuel Vadot - description: Display's AHB clock 27*833e5d42SEmmanuel Vadot - description: GPLL0 source from GCC 28*833e5d42SEmmanuel Vadot - description: Byte clock from DSI PHY0 29*833e5d42SEmmanuel Vadot - description: Pixel clock from DSI PHY0 30*833e5d42SEmmanuel Vadot - description: Link clock from DP PHY0 31*833e5d42SEmmanuel Vadot - description: VCO DIV clock from DP PHY0 32*833e5d42SEmmanuel Vadot 33*833e5d42SEmmanuel Vadotrequired: 34*833e5d42SEmmanuel Vadot - compatible 35*833e5d42SEmmanuel Vadot - clocks 36*833e5d42SEmmanuel Vadot - '#power-domain-cells' 37*833e5d42SEmmanuel Vadot 38*833e5d42SEmmanuel VadotallOf: 39*833e5d42SEmmanuel Vadot - $ref: qcom,gcc.yaml# 40*833e5d42SEmmanuel Vadot 41*833e5d42SEmmanuel VadotunevaluatedProperties: false 42*833e5d42SEmmanuel Vadot 43*833e5d42SEmmanuel Vadotexamples: 44*833e5d42SEmmanuel Vadot - | 45*833e5d42SEmmanuel Vadot #include <dt-bindings/clock/qcom,milos-gcc.h> 46*833e5d42SEmmanuel Vadot #include <dt-bindings/phy/phy-qcom-qmp.h> 47*833e5d42SEmmanuel Vadot clock-controller@af00000 { 48*833e5d42SEmmanuel Vadot compatible = "qcom,milos-dispcc"; 49*833e5d42SEmmanuel Vadot reg = <0x0af00000 0x20000>; 50*833e5d42SEmmanuel Vadot clocks = <&bi_tcxo_div2>, 51*833e5d42SEmmanuel Vadot <&sleep_clk>, 52*833e5d42SEmmanuel Vadot <&gcc GCC_DISP_AHB_CLK>, 53*833e5d42SEmmanuel Vadot <&gcc GCC_DISP_GPLL0_DIV_CLK_SRC>, 54*833e5d42SEmmanuel Vadot <&mdss_dsi0_phy 0>, 55*833e5d42SEmmanuel Vadot <&mdss_dsi0_phy 1>, 56*833e5d42SEmmanuel Vadot <&usb_dp_qmpphy QMP_USB43DP_DP_LINK_CLK>, 57*833e5d42SEmmanuel Vadot <&usb_dp_qmpphy QMP_USB43DP_DP_VCO_DIV_CLK>; 58*833e5d42SEmmanuel Vadot #clock-cells = <1>; 59*833e5d42SEmmanuel Vadot #reset-cells = <1>; 60*833e5d42SEmmanuel Vadot #power-domain-cells = <1>; 61*833e5d42SEmmanuel Vadot }; 62*833e5d42SEmmanuel Vadot 63*833e5d42SEmmanuel Vadot... 64