1 * Generic Mailbox Controller and client driver bindings
3 Generic binding to provide a way for Mailbox controller drivers to
4 assign appropriate mailbox channel to client drivers.
9 - #mbox-cells: Must be at least 1. Number of cells in a mailbox
22 - mboxes: List of phandle and mailbox channel specifiers.
25 - mbox-names: List of identifier strings for each mailbox channel.
26 - shmem : List of phandle pointing to the shared memory(SHM) area between the
27 users of these mailboxes for IPC, one for each mailbox. This shared
28 memory can be part of any memory reserved for the purpose of this
29 communication between the mailbox client and the remote.
35 mbox-names = "pwr-ctrl", "rpc";
36 mboxes = <&mailbox 0 &mailbox 1>;
39 Example with shared memory(shmem):
42 compatible = "mmio-sram";
43 reg = <0x50000000 0x10000>;
47 ranges = <0 0x50000000 0x10000>;
50 compatible = "client-shmem";
57 mboxes = <&mailbox 0>;