brintos

brintos / linux-shallow public Read only

0
0
Text · 1.1 KiB · 0dfbd8c Raw
56 lines · yaml
1# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)2%YAML 1.23---4$id: http://devicetree.org/schemas/clock/qcom,msm8996-cbf.yaml#5$schema: http://devicetree.org/meta-schemas/core.yaml#6 7title: Qualcomm MSM8996 Core Bus Fabric (CBF) clock controller8 9maintainers:10  - Dmitry Baryshkov <dmitry.baryshkov@linaro.org>11 12description: >13  The clock controller for the Qualcomm MSM8996 CBF clock, which drives the14  interconnect between two CPU clusters.15 16properties:17  compatible:18    enum:19      - qcom,msm8996-cbf20      - qcom,msm8996pro-cbf21 22  reg:23    maxItems: 124 25  clocks:26    items:27      - description: XO source28      - description: SYS APCS AUX clock29 30  '#clock-cells':31    const: 032 33  '#interconnect-cells':34    const: 135 36required:37  - compatible38  - reg39  - clocks40  - '#clock-cells'41  - '#interconnect-cells'42 43additionalProperties: false44 45examples:46  - |47    #include <dt-bindings/clock/qcom,rpmcc.h>48    clock-controller@9a11000 {49        compatible = "qcom,msm8996-cbf";50        reg = <0x09a11000 0x10000>;51        clocks = <&rpmcc RPM_SMD_BB_CLK1>, <&apcs_glb>;52        #clock-cells = <0>;53        #interconnect-cells = <1>;54    };55...56