Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-bindings: interconnect: split SC8280XP to own schema

SC8280XP comes with interconnects without IO address space, so split it
from common file for easier maintenance and to fix warnings like:

sc8280xp-lenovo-thinkpad-x13s.dtb: interconnect-mc-virt: 'reg' is a required property

Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Rob Herring <robh@kernel.org>
Link: https://lore.kernel.org/r/20230111092637.17946-2-krzysztof.kozlowski@linaro.org
Signed-off-by: Georgi Djakov <djakov@kernel.org>

authored by

Krzysztof Kozlowski and committed by
Georgi Djakov
45e68388 f8a363c4

+49 -12
-12
Documentation/devicetree/bindings/interconnect/qcom,rpmh.yaml
··· 51 51 - qcom,sc8180x-mmss-noc 52 52 - qcom,sc8180x-qup-virt 53 53 - qcom,sc8180x-system-noc 54 - - qcom,sc8280xp-aggre1-noc 55 - - qcom,sc8280xp-aggre2-noc 56 - - qcom,sc8280xp-clk-virt 57 - - qcom,sc8280xp-config-noc 58 - - qcom,sc8280xp-dc-noc 59 - - qcom,sc8280xp-gem-noc 60 - - qcom,sc8280xp-lpass-ag-noc 61 - - qcom,sc8280xp-mc-virt 62 - - qcom,sc8280xp-mmss-noc 63 - - qcom,sc8280xp-nspa-noc 64 - - qcom,sc8280xp-nspb-noc 65 - - qcom,sc8280xp-system-noc 66 54 - qcom,sdm845-aggre1-noc 67 55 - qcom,sdm845-aggre2-noc 68 56 - qcom,sdm845-config-noc
+49
Documentation/devicetree/bindings/interconnect/qcom,sc8280xp-rpmh.yaml
··· 1 + # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause 2 + %YAML 1.2 3 + --- 4 + $id: http://devicetree.org/schemas/interconnect/qcom,sc8280xp-rpmh.yaml# 5 + $schema: http://devicetree.org/meta-schemas/core.yaml# 6 + 7 + title: Qualcomm RPMh Network-On-Chip Interconnect on SC8280XP 8 + 9 + maintainers: 10 + - Bjorn Andersson <andersson@kernel.org> 11 + - Konrad Dybcio <konrad.dybcio@linaro.org> 12 + 13 + description: | 14 + RPMh interconnect providers support system bandwidth requirements through 15 + RPMh hardware accelerators known as Bus Clock Manager (BCM). 16 + 17 + See also:: include/dt-bindings/interconnect/qcom,sc8280xp.h 18 + 19 + properties: 20 + compatible: 21 + enum: 22 + - qcom,sc8280xp-aggre1-noc 23 + - qcom,sc8280xp-aggre2-noc 24 + - qcom,sc8280xp-clk-virt 25 + - qcom,sc8280xp-config-noc 26 + - qcom,sc8280xp-dc-noc 27 + - qcom,sc8280xp-gem-noc 28 + - qcom,sc8280xp-lpass-ag-noc 29 + - qcom,sc8280xp-mc-virt 30 + - qcom,sc8280xp-mmss-noc 31 + - qcom,sc8280xp-nspa-noc 32 + - qcom,sc8280xp-nspb-noc 33 + - qcom,sc8280xp-system-noc 34 + 35 + required: 36 + - compatible 37 + 38 + allOf: 39 + - $ref: qcom,rpmh-common.yaml# 40 + 41 + unevaluatedProperties: false 42 + 43 + examples: 44 + - | 45 + interconnect-0 { 46 + compatible = "qcom,sc8280xp-aggre1-noc"; 47 + #interconnect-cells = <2>; 48 + qcom,bcm-voters = <&apps_bcm_voter>; 49 + };