dt/bindings: Add binding for the BCM2835 mailbox driver
authorLubomir Rintel <lkundrak@v3.sk>
Tue, 5 May 2015 20:27:44 +0000 (13:27 -0700)
committerJassi Brar <jaswinder.singh@linaro.org>
Tue, 9 Jun 2015 10:35:29 +0000 (16:05 +0530)
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 <lkundrak@v3.sk>
Signed-off-by: Craig McGeachie <slapdau@yahoo.com.au>
Signed-off-by: Eric Anholt <eric@anholt.net>
Acked-by: Lee Jones <lee.jones@linaro.org>
Acked-by: Stephen Warren <swarren@wwwdotorg.org>
Signed-off-by: Jassi Brar <jaswinder.singh@linaro.org>
Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt b/Documentation/devicetree/bindings/mailbox/brcm,bcm2835-mbox.txt
new file mode 100644 (file)
index 0000000..e893615
--- /dev/null
@@ -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>;
+};
This page took 0.038864 seconds and 5 git commands to generate.