brintos

brintos / linux-shallow public Read only

0
0
Text · 1.6 KiB · 258b6b9 Raw
68 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/qcom,gcc-msm8916.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm Global Clock & Reset Controller on MSM8916 and MSM89398 9maintainers:10  - Stephen Boyd <sboyd@kernel.org>11  - Taniya Das <quic_tdas@quicinc.com>12 13description: |14  Qualcomm global clock control module provides the clocks, resets and power15  domains on MSM8916 or MSM8939.16 17  See also::18    include/dt-bindings/clock/qcom,gcc-msm8916.h19    include/dt-bindings/clock/qcom,gcc-msm8939.h20    include/dt-bindings/reset/qcom,gcc-msm8916.h21    include/dt-bindings/reset/qcom,gcc-msm8939.h22 23properties:24  compatible:25    enum:26      - qcom,gcc-msm891627      - qcom,gcc-msm893928 29  clocks:30    items:31      - description: XO source32      - description: Sleep clock source33      - description: DSI phy instance 0 dsi clock34      - description: DSI phy instance 0 byte clock35      - description: External MCLK clock36      - description: External Primary I2S clock37      - description: External Secondary I2S clock38 39  clock-names:40    items:41      - const: xo42      - const: sleep_clk43      - const: dsi0pll44      - const: dsi0pllbyte45      - const: ext_mclk46      - const: ext_pri_i2s47      - const: ext_sec_i2s48 49required:50  - compatible51  - '#power-domain-cells'52 53allOf:54  - $ref: qcom,gcc.yaml#55 56unevaluatedProperties: false57 58examples:59  - |60    clock-controller@300000 {61      compatible = "qcom,gcc-msm8916";62      #clock-cells = <1>;63      #reset-cells = <1>;64      #power-domain-cells = <1>;65      reg = <0x300000 0x90000>;66    };67...68