* [PATCH 2/3] dt-bindings: mailbox: Add Amlogic Meson MHU Bindings [not found] <1470732737-18391-1-git-send-email-narmstrong@baylibre.com> @ 2016-08-09 8:52 ` Neil Armstrong 2016-08-10 20:44 ` Rob Herring [not found] ` <1470732737-18391-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> 1 sibling, 1 reply; 3+ messages in thread From: Neil Armstrong @ 2016-08-09 8:52 UTC (permalink / raw) To: linux-kernel, linux-amlogic, linux-arm-kernel, jassisinghbrar, devicetree Cc: Neil Armstrong Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- .../devicetree/bindings/mailbox/meson-mhu.txt | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 Documentation/devicetree/bindings/mailbox/meson-mhu.txt diff --git a/Documentation/devicetree/bindings/mailbox/meson-mhu.txt b/Documentation/devicetree/bindings/mailbox/meson-mhu.txt new file mode 100644 index 0000000..4a80b44 --- /dev/null +++ b/Documentation/devicetree/bindings/mailbox/meson-mhu.txt @@ -0,0 +1,33 @@ +Amlogic Meson MHU Mailbox Driver +================================ + +The Amlogic's Meson SoCs Message-Handling-Unit (MHU) is a mailbox controller +that has 2 independent channels/links to communicate with remote processor(s). +MHU links are hardwired on a platform. A link raises interrupt for any +received data. However, there is no specified way of knowing if the sent +data has been read by the remote. This driver assumes the sender polls +STAT register and the remote clears it after having read the data. + +Mailbox Device Node: +==================== + +Required properties: +-------------------- +- compatible: Shall be "amlogic,meson-gxbb-mhu" +- reg: Contains the mailbox register address range (base + address and length) +- #mbox-cells Shall be 1 - the index of the channel needed. +- interrupts: Contains the interrupt information corresponding to + each of the 2 links of MHU. + +Example: +-------- + + mailbox: mailbox@c883c400 { + #mbox-cells = <1>; + compatible = "amlogic,meson-gxbb-mhu"; + reg = <0 0xc883c400 0 0x4c>; + interrupts = <0 209 IRQ_TYPE_EDGE_RISING>, + <0 210 IRQ_TYPE_EDGE_RISING>; + #mbox-cells = <1>; + }; -- 2.7.0 ^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 2/3] dt-bindings: mailbox: Add Amlogic Meson MHU Bindings 2016-08-09 8:52 ` [PATCH 2/3] dt-bindings: mailbox: Add Amlogic Meson MHU Bindings Neil Armstrong @ 2016-08-10 20:44 ` Rob Herring 0 siblings, 0 replies; 3+ messages in thread From: Rob Herring @ 2016-08-10 20:44 UTC (permalink / raw) To: Neil Armstrong Cc: linux-kernel, linux-amlogic, linux-arm-kernel, jassisinghbrar, devicetree On Tue, Aug 09, 2016 at 10:52:16AM +0200, Neil Armstrong wrote: > Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> > --- > .../devicetree/bindings/mailbox/meson-mhu.txt | 33 ++++++++++++++++++++++ > 1 file changed, 33 insertions(+) > create mode 100644 Documentation/devicetree/bindings/mailbox/meson-mhu.txt Acked-by: Rob Herring <robh@kernel.org> ^ permalink raw reply [flat|nested] 3+ messages in thread
[parent not found: <1470732737-18391-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>]
* [PATCH 3/3] ARM64: dts: meson-gxbb: Add Meson MHU Node [not found] ` <1470732737-18391-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> @ 2016-08-09 8:52 ` Neil Armstrong 0 siblings, 0 replies; 3+ messages in thread From: Neil Armstrong @ 2016-08-09 8:52 UTC (permalink / raw) To: linux-kernel-u79uwXL29TY76Z2rM5mHXA, linux-amlogic-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, jassisinghbrar-Re5JQEeQqe8AvxtiuMwx3w, devicetree-u79uwXL29TY76Z2rM5mHXA Cc: Neil Armstrong Signed-off-by: Neil Armstrong <narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org> --- arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi index e502c24..dfd2ff7 100644 --- a/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi +++ b/arch/arm64/boot/dts/amlogic/meson-gxbb.dtsi @@ -321,6 +321,14 @@ #clock-cells = <1>; reg = <0x0 0x0 0x0 0x3db>; }; + + mailbox: mailbox@400 { + compatible = "amlogic,meson-gxbb-mhu"; + reg = <0 0x400 0 0x4c>; + interrupts = <0 209 IRQ_TYPE_EDGE_RISING>, + <0 210 IRQ_TYPE_EDGE_RISING>; + #mbox-cells = <1>; + }; }; apb: apb@d0000000 { -- 2.7.0 -- To unsubscribe from this list: send the line "unsubscribe devicetree" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html ^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-08-10 20:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1470732737-18391-1-git-send-email-narmstrong@baylibre.com>
2016-08-09 8:52 ` [PATCH 2/3] dt-bindings: mailbox: Add Amlogic Meson MHU Bindings Neil Armstrong
2016-08-10 20:44 ` Rob Herring
[not found] ` <1470732737-18391-1-git-send-email-narmstrong-rdvid1DuHRBWk0Htik3J/w@public.gmane.org>
2016-08-09 8:52 ` [PATCH 3/3] ARM64: dts: meson-gxbb: Add Meson MHU Node Neil Armstrong
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox