aboutsummaryrefslogtreecommitdiff
path: root/Documentation/devicetree/bindings/mailbox/mailbox.txt
blob: 3f009555f392359ef5166e5ed5d8d1ace6ea480f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
* Generic Mailbox Controller and client driver bindings

Generic binding to provide a way for Mailbox controller drivers to
assign appropriate mailbox channel to client drivers.

* Mailbox Controller

Required property:
- #mbox-cells: Must be at least 1. Number of cells in a mailbox
		specifier.

Example:
	mailbox: mailbox {
		...
		#mbox-cells = <1>;
	};


* Mailbox Client

Required property:
- mbox: List of phandle and mailbox channel specifier.

- mbox-names: List of identifier strings for each mailbox channel
		required by the client.

Example:
	pwr_cntrl: power {
		...
		mbox-names = "pwr-ctrl", "rpc";
		mbox = <&mailbox 0
			&mailbox 1>;
	};