ti,j721e-dm-sci.txt 969 B

1234567891011121314151617181920212223242526272829303132
  1. Bindings for Texas Instruments System Control Interface (TI-SCI) Message
  2. Protocol for Device Manager(DM) to TI Foundational Security(TIFS)
  3. Firmware communication
  4. Required properties:
  5. --------------------
  6. - compatible: should be "ti,j721e-dm-sci"
  7. - mbox-names:
  8. "rx" - Mailbox corresponding to receive path
  9. "tx" - Mailbox corresponding to transmit path
  10. - mboxes: Mailboxes corresponding to the mbox-names. Each value of the mboxes
  11. property should contain a phandle to the mailbox controller device
  12. node and an args specifier that will be the phandle to the intended
  13. sub-mailbox child node to be used for communication.
  14. - ti,host-id: Host ID to use for communication.
  15. Optional Properties:
  16. --------------------
  17. - ti,secure-host: If the host is defined as secure.
  18. Example:
  19. --------
  20. dm_tifs: dm-tifs {
  21. compatible = "ti,j721e-dm-sci";
  22. ti,host-id = <3>;
  23. ti,secure-host;
  24. mbox-names = "rx", "tx";
  25. mboxes= <&mcu_secproxy 21>,
  26. <&mcu_secproxy 23>;
  27. };