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,qcs8300-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 QCS8300 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). 15*5f62a964SEmmanuel Vadot 16*5f62a964SEmmanuel Vadot See also: include/dt-bindings/interconnect/qcom,qcs8300-rpmh.h 17*5f62a964SEmmanuel Vadot 18*5f62a964SEmmanuel Vadotproperties: 19*5f62a964SEmmanuel Vadot compatible: 20*5f62a964SEmmanuel Vadot enum: 21*5f62a964SEmmanuel Vadot - qcom,qcs8300-aggre1-noc 22*5f62a964SEmmanuel Vadot - qcom,qcs8300-aggre2-noc 23*5f62a964SEmmanuel Vadot - qcom,qcs8300-clk-virt 24*5f62a964SEmmanuel Vadot - qcom,qcs8300-config-noc 25*5f62a964SEmmanuel Vadot - qcom,qcs8300-dc-noc 26*5f62a964SEmmanuel Vadot - qcom,qcs8300-gem-noc 27*5f62a964SEmmanuel Vadot - qcom,qcs8300-gpdsp-anoc 28*5f62a964SEmmanuel Vadot - qcom,qcs8300-lpass-ag-noc 29*5f62a964SEmmanuel Vadot - qcom,qcs8300-mc-virt 30*5f62a964SEmmanuel Vadot - qcom,qcs8300-mmss-noc 31*5f62a964SEmmanuel Vadot - qcom,qcs8300-nspa-noc 32*5f62a964SEmmanuel Vadot - qcom,qcs8300-pcie-anoc 33*5f62a964SEmmanuel Vadot - qcom,qcs8300-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,qcs8300-clk-virt 49*5f62a964SEmmanuel Vadot - qcom,qcs8300-mc-virt 50*5f62a964SEmmanuel Vadot then: 51*5f62a964SEmmanuel Vadot properties: 52*5f62a964SEmmanuel Vadot reg: false 53*5f62a964SEmmanuel Vadot else: 54*5f62a964SEmmanuel Vadot required: 55*5f62a964SEmmanuel Vadot - reg 56*5f62a964SEmmanuel Vadot 57*5f62a964SEmmanuel VadotunevaluatedProperties: false 58*5f62a964SEmmanuel Vadot 59*5f62a964SEmmanuel Vadotexamples: 60*5f62a964SEmmanuel Vadot - | 61*5f62a964SEmmanuel Vadot gem_noc: interconnect@9100000 { 62*5f62a964SEmmanuel Vadot compatible = "qcom,qcs8300-gem-noc"; 63*5f62a964SEmmanuel Vadot reg = <0x9100000 0xf7080>; 64*5f62a964SEmmanuel Vadot #interconnect-cells = <2>; 65*5f62a964SEmmanuel Vadot qcom,bcm-voters = <&apps_bcm_voter>; 66*5f62a964SEmmanuel Vadot }; 67*5f62a964SEmmanuel Vadot 68*5f62a964SEmmanuel Vadot clk_virt: interconnect-0 { 69*5f62a964SEmmanuel Vadot compatible = "qcom,qcs8300-clk-virt"; 70*5f62a964SEmmanuel Vadot #interconnect-cells = <2>; 71*5f62a964SEmmanuel Vadot qcom,bcm-voters = <&apps_bcm_voter>; 72*5f62a964SEmmanuel Vadot }; 73