qcom,sm7150-rpmh.yaml 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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,sm7150-rpmh.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Qualcomm RPMh Network-On-Chip Interconnect on SM7150
  7. maintainers:
  8. - Danila Tikhonov <danila@jiaxyga.com>
  9. description: |
  10. RPMh interconnect providers support system bandwidth requirements through
  11. RPMh hardware accelerators known as Bus Clock Manager (BCM).
  12. See also:: include/dt-bindings/interconnect/qcom,sm7150-rpmh.h
  13. allOf:
  14. - $ref: qcom,rpmh-common.yaml#
  15. properties:
  16. compatible:
  17. enum:
  18. - qcom,sm7150-aggre1-noc
  19. - qcom,sm7150-aggre2-noc
  20. - qcom,sm7150-compute-noc
  21. - qcom,sm7150-config-noc
  22. - qcom,sm7150-dc-noc
  23. - qcom,sm7150-gem-noc
  24. - qcom,sm7150-mc-virt
  25. - qcom,sm7150-mmss-noc
  26. - qcom,sm7150-system-noc
  27. reg:
  28. maxItems: 1
  29. # Child node's properties
  30. patternProperties:
  31. '^interconnect-[0-9]+$':
  32. type: object
  33. description:
  34. The interconnect providers do not have a separate QoS register space,
  35. but share parent's space.
  36. allOf:
  37. - $ref: qcom,rpmh-common.yaml#
  38. properties:
  39. compatible:
  40. enum:
  41. - qcom,sm7150-camnoc-virt
  42. required:
  43. - compatible
  44. unevaluatedProperties: false
  45. required:
  46. - compatible
  47. - reg
  48. unevaluatedProperties: false
  49. examples:
  50. - |
  51. mc_virt: interconnect@1380000 {
  52. compatible = "qcom,sm7150-mc-virt";
  53. reg = <0x01380000 0x40000>;
  54. #interconnect-cells = <2>;
  55. qcom,bcm-voters = <&apps_bcm_voter>;
  56. };
  57. system_noc: interconnect@1620000 {
  58. compatible = "qcom,sm7150-system-noc";
  59. reg = <0x01620000 0x40000>;
  60. #interconnect-cells = <2>;
  61. qcom,bcm-voters = <&apps_bcm_voter>;
  62. camnoc_virt: interconnect-0 {
  63. compatible = "qcom,sm7150-camnoc-virt";
  64. #interconnect-cells = <2>;
  65. qcom,bcm-voters = <&apps_bcm_voter>;
  66. };
  67. };