diff options
author | Lubomir Rintel <[email protected]> | 2015-05-05 13:27:44 -0700 |
---|---|---|
committer | Jassi Brar <[email protected]> | 2015-06-09 16:05:29 +0530 |
commit | d4b5c782b9f4ef5b3c34cb369989cc2fc68f7391 (patch) | |
tree | ad5aacb48cd0958a7f2a222fcdbdff384c4f3635 | |
parent | 2d805fc1c6b2ec09f27bcd951c2aee3da919f81a (diff) |
dt/bindings: Add binding for the BCM2835 mailbox driver
This patch was split out of Lubomir's original mailbox patch by Eric
Anholt, and the required properties documentation and examples have
been filled out more completely and updated for the driver being
changed to expose a single channel.
Signed-off-by: Lubomir Rintel <[email protected]>
Signed-off-by: Craig McGeachie <[email protected]>
Signed-off-by: Eric Anholt <[email protected]>
Acked-by: Lee Jones <[email protected]>
Acked-by: Stephen Warren <[email protected]>
Signed-off-by: Jassi Brar <[email protected]>
-rw-r--r-- | Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt b/Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt new file mode 100644 index 000000000000..e893615ef635 --- /dev/null +++ b/Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt @@ -0,0 +1,26 @@ +Broadcom BCM2835 VideoCore mailbox IPC + +Required properties: + +- compatible: Should be "brcm,bcm2835-mbox" +- reg: Specifies base physical address and size of the registers +- interrupts: The interrupt number + See bindings/interrupt-controller/brcm,bcm2835-armctrl-ic.txt +- #mbox-cells: Specifies the number of cells needed to encode a mailbox + channel. The value shall be 0, since there is only one + mailbox channel implemented by the device. + +Example: + +mailbox: mailbox@7e00b800 { + compatible = "brcm,bcm2835-mbox"; + reg = <0x7e00b880 0x40>; + interrupts = <0 1>; + #mbox-cells = <0>; +}; + +firmware: firmware { + compatible = "raspberrypi,firmware"; + mboxes = <&mailbox>; + #power-domain-cells = <1>; +}; |