From mboxrd@z Thu Jan 1 00:00:00 1970 From: Mark Rutland Subject: Re: [PATCH 2/2] arm64: dts: exynos: added mailbox node Date: Mon, 17 Mar 2014 14:06:25 +0000 Message-ID: <20140317140625.GJ8070@e106331-lin.cambridge.arm.com> References: <1395057839-23871-1-git-send-email-ks.giri@samsung.com> <1395057839-23871-3-git-send-email-ks.giri@samsung.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1395057839-23871-3-git-send-email-ks.giri@samsung.com> Content-Language: en-US List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Girish K S Cc: "devicetree@vger.kernel.org" , "jassisinghbrar@gmail.com" , "linux-kernel@vger.kernel.org" , "ilho215.lee@samsung.com" , "s-anna@ti.com" , "linux-arm-kernel@lists.infradead.org" List-Id: devicetree@vger.kernel.org On Mon, Mar 17, 2014 at 12:03:59PM +0000, Girish K S wrote: > This patch adds the dt node for the mailbox IP > > Signed-off-by: Girish K S > > Change-Id: I35e45e9a62592887a84a909aee54f259a2f731fa > --- > .../bindings/mailbox/samsung-mailbox.txt | 24 +++++++ > arch/arm64/boot/dts/samsung-gh7.dtsi | 66 ++++++++++++++++++++ > arch/arm64/boot/dts/samsung-ssdk-gh7.dts | 3 + > 3 files changed, 93 insertions(+) > create mode 100644 Documentation/devicetree/bindings/mailbox/samsung-mailbox.txt > > diff --git a/Documentation/devicetree/bindings/mailbox/samsung-mailbox.txt b/Documentation/devicetree/bindings/mailbox/samsung-mailbox.txt > new file mode 100644 > index 0000000..1908d71 > --- /dev/null > +++ b/Documentation/devicetree/bindings/mailbox/samsung-mailbox.txt > @@ -0,0 +1,24 @@ > + > +Samsung Mailbox Driver > + > +Required properties: > +- compatible: Should be one of the following, > + "samsung,gh7-mailbox" for > + Samsung GH7 SoC series > + "samsung,exynos-mailbox" for > + exynosx SoC series > +- reg: Contains the mailbox register address range (base address > + and length) > +- interrupts: Contains the interrupt information for the mailbox > + device. How many interrupts? What are they for? > +- samsung,mbox-names: Array of the names of the mailboxes Juding by the code there is one name per reg entry, but the description above implies a single entry (as all the dt fragments have). What values are expected? What is the consumer of these values? What are they used for? > + > +Example: > + > +/* Samsung GH7 SoC */ > +mailbox@100a0000 { > + compatible = "samsung,gh7-mailbox"; > + reg = <0x0 0x100a0000 0x0 0x1000>; > + interrupts = <0 310 0>; > + samsung,mbox-names = "a7q-scp"; > +}; > diff --git a/arch/arm64/boot/dts/samsung-gh7.dtsi b/arch/arm64/boot/dts/samsung-gh7.dtsi > index c3610bd..be4cce9 100644 > --- a/arch/arm64/boot/dts/samsung-gh7.dtsi > +++ b/arch/arm64/boot/dts/samsung-gh7.dtsi > @@ -107,5 +107,71 @@ > interrupts = <0 420 0>; > arm,primecell-periphid = <0x341011>; /* HACK */ This looks odd. What tree is this against? Cheers, Mark.