qcom,aoss-reset.txt 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. Qualcomm AOSS Reset Controller
  2. ======================================
  3. This binding describes a reset-controller found on AOSS-CC (always on subsystem)
  4. for Qualcomm SDM845 SoCs.
  5. Required properties:
  6. - compatible:
  7. Usage: required
  8. Value type: <string>
  9. Definition: must be:
  10. "qcom,sdm845-aoss-cc"
  11. - reg:
  12. Usage: required
  13. Value type: <prop-encoded-array>
  14. Definition: must specify the base address and size of the register
  15. space.
  16. - #reset-cells:
  17. Usage: required
  18. Value type: <uint>
  19. Definition: must be 1; cell entry represents the reset index.
  20. Example:
  21. aoss_reset: reset-controller@c2a0000 {
  22. compatible = "qcom,sdm845-aoss-cc";
  23. reg = <0xc2a0000 0x31000>;
  24. #reset-cells = <1>;
  25. };
  26. Specifying reset lines connected to IP modules
  27. ==============================================
  28. Device nodes that need access to reset lines should
  29. specify them as a reset phandle in their corresponding node as
  30. specified in reset.txt.
  31. For list of all valid reset indicies see
  32. <dt-bindings/reset/qcom,sdm845-aoss.h>
  33. Example:
  34. modem-pil@4080000 {
  35. ...
  36. resets = <&aoss_reset AOSS_CC_MSS_RESTART>;
  37. reset-names = "mss_restart";
  38. ...
  39. };