mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 17:12:55 +00:00
07a7dba171
A new API call has been introduced which allows channels to be requested by name. This new call uses the 'mbox-names' property, so users need no further discouragement from supplying it. Signed-off-by: Lee Jones <lee.jones@linaro.org> Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
33 lines
652 B
Plaintext
33 lines
652 B
Plaintext
* 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:
|
|
- mboxes: List of phandle and mailbox channel specifiers.
|
|
|
|
Optional property:
|
|
- mbox-names: List of identifier strings for each mailbox channel.
|
|
|
|
Example:
|
|
pwr_cntrl: power {
|
|
...
|
|
mbox-names = "pwr-ctrl", "rpc";
|
|
mboxes = <&mailbox 0 &mailbox 1>;
|
|
};
|