xref: /freebsd/sys/contrib/device-tree/Bindings/interconnect/qcom,qcs615-rpmh.yaml (revision 5f62a964e9f8abc6a05d8338273fadd154f0a206)
1*5f62a964SEmmanuel Vadot# SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
2*5f62a964SEmmanuel Vadot%YAML 1.2
3*5f62a964SEmmanuel Vadot---
4*5f62a964SEmmanuel Vadot$id: http://devicetree.org/schemas/interconnect/qcom,qcs615-rpmh.yaml#
5*5f62a964SEmmanuel Vadot$schema: http://devicetree.org/meta-schemas/core.yaml#
6*5f62a964SEmmanuel Vadot
7*5f62a964SEmmanuel Vadottitle: Qualcomm RPMh Network-On-Chip Interconnect on QCS615
8*5f62a964SEmmanuel Vadot
9*5f62a964SEmmanuel Vadotmaintainers:
10*5f62a964SEmmanuel Vadot  - Raviteja Laggyshetty <quic_rlaggysh@quicinc.com>
11*5f62a964SEmmanuel Vadot
12*5f62a964SEmmanuel Vadotdescription: |
13*5f62a964SEmmanuel Vadot  RPMh interconnect providers support system bandwidth requirements through
14*5f62a964SEmmanuel Vadot  RPMh hardware accelerators known as Bus Clock Manager (BCM). The provider is
15*5f62a964SEmmanuel Vadot  able to communicate with the BCM through the Resource State Coordinator (RSC)
16*5f62a964SEmmanuel Vadot  associated with each execution environment. Provider nodes must point to at
17*5f62a964SEmmanuel Vadot  least one RPMh device child node pertaining to their RSC and each provider
18*5f62a964SEmmanuel Vadot  can map to multiple RPMh resources.
19*5f62a964SEmmanuel Vadot
20*5f62a964SEmmanuel Vadot  See also: include/dt-bindings/interconnect/qcom,qcs615-rpmh.h
21*5f62a964SEmmanuel Vadot
22*5f62a964SEmmanuel Vadotproperties:
23*5f62a964SEmmanuel Vadot  compatible:
24*5f62a964SEmmanuel Vadot    enum:
25*5f62a964SEmmanuel Vadot      - qcom,qcs615-aggre1-noc
26*5f62a964SEmmanuel Vadot      - qcom,qcs615-camnoc-virt
27*5f62a964SEmmanuel Vadot      - qcom,qcs615-config-noc
28*5f62a964SEmmanuel Vadot      - qcom,qcs615-dc-noc
29*5f62a964SEmmanuel Vadot      - qcom,qcs615-gem-noc
30*5f62a964SEmmanuel Vadot      - qcom,qcs615-ipa-virt
31*5f62a964SEmmanuel Vadot      - qcom,qcs615-mc-virt
32*5f62a964SEmmanuel Vadot      - qcom,qcs615-mmss-noc
33*5f62a964SEmmanuel Vadot      - qcom,qcs615-system-noc
34*5f62a964SEmmanuel Vadot
35*5f62a964SEmmanuel Vadot  reg:
36*5f62a964SEmmanuel Vadot    maxItems: 1
37*5f62a964SEmmanuel Vadot
38*5f62a964SEmmanuel Vadotrequired:
39*5f62a964SEmmanuel Vadot  - compatible
40*5f62a964SEmmanuel Vadot
41*5f62a964SEmmanuel VadotallOf:
42*5f62a964SEmmanuel Vadot  - $ref: qcom,rpmh-common.yaml#
43*5f62a964SEmmanuel Vadot  - if:
44*5f62a964SEmmanuel Vadot      properties:
45*5f62a964SEmmanuel Vadot        compatible:
46*5f62a964SEmmanuel Vadot          contains:
47*5f62a964SEmmanuel Vadot            enum:
48*5f62a964SEmmanuel Vadot              - qcom,qcs615-camnoc-virt
49*5f62a964SEmmanuel Vadot              - qcom,qcs615-ipa-virt
50*5f62a964SEmmanuel Vadot              - qcom,qcs615-mc-virt
51*5f62a964SEmmanuel Vadot    then:
52*5f62a964SEmmanuel Vadot      properties:
53*5f62a964SEmmanuel Vadot        reg: false
54*5f62a964SEmmanuel Vadot    else:
55*5f62a964SEmmanuel Vadot      required:
56*5f62a964SEmmanuel Vadot        - reg
57*5f62a964SEmmanuel Vadot
58*5f62a964SEmmanuel VadotunevaluatedProperties: false
59*5f62a964SEmmanuel Vadot
60*5f62a964SEmmanuel Vadotexamples:
61*5f62a964SEmmanuel Vadot  - |
62*5f62a964SEmmanuel Vadot    gem_noc: interconnect@9680000 {
63*5f62a964SEmmanuel Vadot        compatible = "qcom,qcs615-gem-noc";
64*5f62a964SEmmanuel Vadot        reg = <0x9680000 0x3e200>;
65*5f62a964SEmmanuel Vadot        #interconnect-cells = <2>;
66*5f62a964SEmmanuel Vadot        qcom,bcm-voters = <&apps_bcm_voter>;
67*5f62a964SEmmanuel Vadot    };
68*5f62a964SEmmanuel Vadot
69*5f62a964SEmmanuel Vadot    mc_virt: interconnect-2 {
70*5f62a964SEmmanuel Vadot        compatible = "qcom,qcs615-mc-virt";
71*5f62a964SEmmanuel Vadot        #interconnect-cells = <2>;
72*5f62a964SEmmanuel Vadot        qcom,bcm-voters = <&apps_bcm_voter>;
73*5f62a964SEmmanuel Vadot    };
74