ti,sci-sysreset.txt 958 B

1234567891011121314151617181920212223242526272829
  1. Texas Instruments TI SCI System Reset Controller
  2. ================================================
  3. Some TI SoCs contain a system controller (like the SYSFW, etc...) that is
  4. responsible for controlling the state of the IPs that are present.
  5. Communication between the host processor running an OS and the system
  6. controller happens through a protocol known as TI SCI [1].
  7. [1] http://processors.wiki.ti.com/index.php/TISCI
  8. System Reset Controller Node
  9. ============================
  10. The sysreset controller node represents the reset for the overall SoC
  11. which is managed by the SYSFW. Because this relies on the TI SCI protocol
  12. to communicate with the SYSFW it must be a child of the sysfw node.
  13. Required Properties:
  14. --------------------
  15. - compatible: Must be "ti,sci-sysreset"
  16. Example (AM65x):
  17. ----------------
  18. sysfw: sysfw {
  19. compatible = "ti,am654-system-controller";
  20. ...
  21. k3_sysreset: sysreset-controller {
  22. compatible = "ti,sci-sysreset";
  23. };
  24. };