From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonathan Richardson Subject: [PATCH v4 1/3] dt-bindings: Document Broadcom iProc mailbox controller driver Date: Thu, 26 Jan 2017 12:38:00 -0800 Message-ID: <1485463082-27067-2-git-send-email-jonathan.richardson@broadcom.com> References: <1485463082-27067-1-git-send-email-jonathan.richardson@broadcom.com> Return-path: In-Reply-To: <1485463082-27067-1-git-send-email-jonathan.richardson-dY08KVG/lbpWk0Htik3J/w@public.gmane.org> Sender: devicetree-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org To: Jassi Brar Cc: Rob Herring , Mark Rutland , Ray Jui , Scott Branden , Jon Mason , Russell King , Jonathan Richardson , Vikram Prakash , devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, BCM Kernel Feedback List-Id: devicetree@vger.kernel.org Add binding document for brcm,iproc-mailbox. Reviewed-by: Jonathan Richardson Tested-by: Jonathan Richardson Reviewed-by: Vikram Prakash Reviewed-by: Ray Jui Reviewed-by: Shreesha Rajashekar Reviewed-by: Scott Branden Signed-off-by: Jonathan Richardson --- .../devicetree/bindings/mailbox/brcm,iproc-mailbox.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt diff --git a/Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt b/Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt new file mode 100644 index 0000000..a832feb --- /dev/null +++ b/Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt @@ -0,0 +1,18 @@ +* Broadcom's iProc Mailbox Controller + +Broadcom iProc architected SoC's have an always on Cortex-M0 MCU processor that +handles support for power, clock, and reset management. The iProc mailbox +controller handles all communication with this processor. + +Required properties: +- compatible: Must be "brcm,iproc-mailbox" +- reg: Defines the base address of the mailbox controller. +- #mbox-cells: Must be 1. + +Example: + + mailbox: mailbox@3024024 { + compatible = "brcm,iproc-mailbox"; + reg = <0x03024024 0x8>; + #mbox-cells = <1>; + }; -- 1.9.1 -- 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: jonathan.richardson@broadcom.com (Jonathan Richardson) Date: Thu, 26 Jan 2017 12:38:00 -0800 Subject: [PATCH v4 1/3] dt-bindings: Document Broadcom iProc mailbox controller driver In-Reply-To: <1485463082-27067-1-git-send-email-jonathan.richardson@broadcom.com> References: <1485463082-27067-1-git-send-email-jonathan.richardson@broadcom.com> Message-ID: <1485463082-27067-2-git-send-email-jonathan.richardson@broadcom.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org Add binding document for brcm,iproc-mailbox. Reviewed-by: Jonathan Richardson Tested-by: Jonathan Richardson Reviewed-by: Vikram Prakash Reviewed-by: Ray Jui Reviewed-by: Shreesha Rajashekar Reviewed-by: Scott Branden Signed-off-by: Jonathan Richardson --- .../devicetree/bindings/mailbox/brcm,iproc-mailbox.txt | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt diff --git a/Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt b/Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt new file mode 100644 index 0000000..a832feb --- /dev/null +++ b/Documentation/devicetree/bindings/mailbox/brcm,iproc-mailbox.txt @@ -0,0 +1,18 @@ +* Broadcom's iProc Mailbox Controller + +Broadcom iProc architected SoC's have an always on Cortex-M0 MCU processor that +handles support for power, clock, and reset management. The iProc mailbox +controller handles all communication with this processor. + +Required properties: +- compatible: Must be "brcm,iproc-mailbox" +- reg: Defines the base address of the mailbox controller. +- #mbox-cells: Must be 1. + +Example: + + mailbox: mailbox at 3024024 { + compatible = "brcm,iproc-mailbox"; + reg = <0x03024024 0x8>; + #mbox-cells = <1>; + }; -- 1.9.1