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