qcom,aoss-reset.yaml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. # SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
  2. %YAML 1.2
  3. ---
  4. $id: http://devicetree.org/schemas/reset/qcom,aoss-reset.yaml#
  5. $schema: http://devicetree.org/meta-schemas/core.yaml#
  6. title: Qualcomm AOSS Reset Controller
  7. maintainers:
  8. - Sibi Sankar <quic_sibis@quicinc.com>
  9. description:
  10. The bindings describe the reset-controller found on AOSS-CC (always on
  11. subsystem) for Qualcomm Technologies Inc SoCs.
  12. properties:
  13. compatible:
  14. oneOf:
  15. - description: on SC7180 SoCs the following compatibles must be specified
  16. items:
  17. - const: qcom,sc7180-aoss-cc
  18. - const: qcom,sdm845-aoss-cc
  19. - description: on SC7280 SoCs the following compatibles must be specified
  20. items:
  21. - const: qcom,sc7280-aoss-cc
  22. - const: qcom,sdm845-aoss-cc
  23. - description: on SDM845 SoCs the following compatibles must be specified
  24. items:
  25. - const: qcom,sdm845-aoss-cc
  26. reg:
  27. maxItems: 1
  28. '#reset-cells':
  29. const: 1
  30. required:
  31. - compatible
  32. - reg
  33. - '#reset-cells'
  34. additionalProperties: false
  35. examples:
  36. - |
  37. aoss_reset: reset-controller@c2a0000 {
  38. compatible = "qcom,sdm845-aoss-cc";
  39. reg = <0xc2a0000 0x31000>;
  40. #reset-cells = <1>;
  41. };