56 lines · yaml
1# SPDX-License-Identifier: GPL-2.0-only2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/qcom,gcc-msm8660.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm Global Clock & Reset Controller on MSM86608 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 and resets on15 MSM866016 17 See also::18 include/dt-bindings/clock/qcom,gcc-msm8660.h19 include/dt-bindings/reset/qcom,gcc-msm8660.h20 21allOf:22 - $ref: qcom,gcc.yaml#23 24properties:25 compatible:26 enum:27 - qcom,gcc-msm866028 29 clocks:30 maxItems: 231 32 clock-names:33 items:34 - const: pxo35 - const: cxo36 37 '#power-domain-cells': false38 39required:40 - compatible41 42unevaluatedProperties: false43 44examples:45 # Example for GCC for MSM8974:46 - |47 clock-controller@900000 {48 compatible = "qcom,gcc-msm8660";49 reg = <0x900000 0x4000>;50 #clock-cells = <1>;51 #reset-cells = <1>;52 clocks = <&pxo_board>, <&cxo_board>;53 clock-names = "pxo", "cxo";54 };55...56