Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel...
[deliverable/linux.git] / Documentation / devicetree / bindings / mailbox / mailbox.txt
CommitLineData
9f3e3cac
JB
1* Generic Mailbox Controller and client driver bindings
2
3Generic binding to provide a way for Mailbox controller drivers to
4assign appropriate mailbox channel to client drivers.
5
6* Mailbox Controller
7
8Required property:
9- #mbox-cells: Must be at least 1. Number of cells in a mailbox
10 specifier.
11
12Example:
13 mailbox: mailbox {
14 ...
15 #mbox-cells = <1>;
16 };
17
18
19* Mailbox Client
20
21Required property:
22- mboxes: List of phandle and mailbox channel specifiers.
23
24Optional property:
07a7dba1 25- mbox-names: List of identifier strings for each mailbox channel.
9f3e3cac
JB
26
27Example:
28 pwr_cntrl: power {
29 ...
30 mbox-names = "pwr-ctrl", "rpc";
07a7dba1 31 mboxes = <&mailbox 0 &mailbox 1>;
9f3e3cac 32 };
This page took 0.090487 seconds and 5 git commands to generate.