summaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/clock/qcom,msm8996-cbf.yaml
blob: 0dfbd8c4d465dbfdbb0c63723863386d284ee0d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
%YAML 1.2
---
$id: http://devicetree.org/schemas/clock/qcom,msm8996-cbf.yaml#
$schema: http://devicetree.org/meta-schemas/core.yaml#

title: Qualcomm MSM8996 Core Bus Fabric (CBF) clock controller

maintainers:
  - Dmitry Baryshkov <dmitry.baryshkov@linaro.org>

description: >
  The clock controller for the Qualcomm MSM8996 CBF clock, which drives the
  interconnect between two CPU clusters.

properties:
  compatible:
    enum:
      - qcom,msm8996-cbf
      - qcom,msm8996pro-cbf

  reg:
    maxItems: 1

  clocks:
    items:
      - description: XO source
      - description: SYS APCS AUX clock

  '#clock-cells':
    const: 0

  '#interconnect-cells':
    const: 1

required:
  - compatible
  - reg
  - clocks
  - '#clock-cells'
  - '#interconnect-cells'

additionalProperties: false

examples:
  - |
    #include <dt-bindings/clock/qcom,rpmcc.h>
    clock-controller@9a11000 {
        compatible = "qcom,msm8996-cbf";
        reg = <0x09a11000 0x10000>;
        clocks = <&rpmcc RPM_SMD_BB_CLK1>, <&apcs_glb>;
        #clock-cells = <0>;
        #interconnect-cells = <1>;
    };
...