From: Benoit Cousson <bcousson@baylibre.com>
To: Joel Fernandes <joelf@ti.com>
Cc: Tony Lindgren <tony@atomide.com>, Arnd Bergmann <arnd@arndb.de>,
Olof Johansson <olof@lixom.net>,
Grant Likely <grant.likely@secretlab.ca>,
Jason Kridner <jkridner@beagleboard.org>,
Koen Kooi <koen@beagleboard.org>,
Devicetree Discuss <devicetree@vger.kernel.org>,
Linux OMAP List <linux-omap@vger.kernel.org>,
Linux ARM Kernel List <linux-arm-kernel@lists.infradead.org>
Subject: Re: [PATCH 1/9] omap4: dts: Add node for AES
Date: Thu, 26 Sep 2013 11:41:31 +0200 [thread overview]
Message-ID: <5244014B.1090502@baylibre.com> (raw)
In-Reply-To: <1380146469-29496-2-git-send-email-joelf@ti.com>
On 26/09/2013 00:01, Joel Fernandes wrote:
> OMAP4 has an AES module that uses the omap-aes crypto driver.
> Add DT entries for the same.
>
> Signed-off-by: Joel Fernandes <joelf@ti.com>
> ---
> arch/arm/boot/dts/omap4.dtsi | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi
> index 45708e1..4267a74 100644
> --- a/arch/arm/boot/dts/omap4.dtsi
> +++ b/arch/arm/boot/dts/omap4.dtsi
> @@ -663,5 +663,15 @@
> ram-bits = <12>;
> ti,has-mailbox;
> };
> +
> + aes: aes@4B501000 {
> + compatible = "ti,omap4-aes";
> + ti,hwmods = "aes";
> + reg = <0x4B501000 0xa0>;
Nit: Please use lower case for hexa value.
> + interrupt-parent = <&gic>;
You don't have to add the interrupt-parent, it is already set by default
at the root of the tree.
We did not add it for most nodes. Some are still there becasue I missed
them during the review :-)
> + interrupts = <0 85 0x4>;
For interrupt, you should use the macros now for better readability.
+ interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
Regards,
Benoit
> + dmas = <&sdma 111>, <&sdma 110>;
> + dma-names = "tx", "rx";
> + };
> };
> };
>
WARNING: multiple messages have this Message-ID (diff)
From: bcousson@baylibre.com (Benoit Cousson)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/9] omap4: dts: Add node for AES
Date: Thu, 26 Sep 2013 11:41:31 +0200 [thread overview]
Message-ID: <5244014B.1090502@baylibre.com> (raw)
In-Reply-To: <1380146469-29496-2-git-send-email-joelf@ti.com>
On 26/09/2013 00:01, Joel Fernandes wrote:
> OMAP4 has an AES module that uses the omap-aes crypto driver.
> Add DT entries for the same.
>
> Signed-off-by: Joel Fernandes <joelf@ti.com>
> ---
> arch/arm/boot/dts/omap4.dtsi | 10 ++++++++++
> 1 file changed, 10 insertions(+)
>
> diff --git a/arch/arm/boot/dts/omap4.dtsi b/arch/arm/boot/dts/omap4.dtsi
> index 45708e1..4267a74 100644
> --- a/arch/arm/boot/dts/omap4.dtsi
> +++ b/arch/arm/boot/dts/omap4.dtsi
> @@ -663,5 +663,15 @@
> ram-bits = <12>;
> ti,has-mailbox;
> };
> +
> + aes: aes at 4B501000 {
> + compatible = "ti,omap4-aes";
> + ti,hwmods = "aes";
> + reg = <0x4B501000 0xa0>;
Nit: Please use lower case for hexa value.
> + interrupt-parent = <&gic>;
You don't have to add the interrupt-parent, it is already set by default
at the root of the tree.
We did not add it for most nodes. Some are still there becasue I missed
them during the review :-)
> + interrupts = <0 85 0x4>;
For interrupt, you should use the macros now for better readability.
+ interrupts = <GIC_SPI 85 IRQ_TYPE_LEVEL_HIGH>;
Regards,
Benoit
> + dmas = <&sdma 111>, <&sdma 110>;
> + dma-names = "tx", "rx";
> + };
> };
> };
>
next prev parent reply other threads:[~2013-09-26 9:41 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-09-25 22:01 [PATCH 0/9] ARM: dts: DT data for OMAP platforms for v3.13 Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 1/9] omap4: dts: Add node for AES Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-26 9:41 ` Benoit Cousson [this message]
2013-09-26 9:41 ` Benoit Cousson
2013-09-25 22:01 ` [PATCH 2/9] omap4: dts: Add node for DES3DES module Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 6/9] ARM: am437x: dts: Add AES node for am437x Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 8/9] ARM: dts: AM33XX: Add LCDC info into am335x-evm Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
[not found] ` <1380146469-29496-1-git-send-email-joelf-l0cyMroinI0@public.gmane.org>
2013-09-25 22:01 ` [PATCH 3/9] ARM: dts: Add SHAM data and documentation for AM33XX Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 4/9] ARM: dts: Add AES " Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 5/9] am33xx: dts: Fix AES interrupt number Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 7/9] ARM: am437x: dts: Add DES node for am437x Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-25 22:01 ` [PATCH 9/9] dts: boneblack: add pinmux and hdmi node to enable display Joel Fernandes
2013-09-25 22:01 ` Joel Fernandes
2013-09-26 9:36 ` [PATCH 0/9] ARM: dts: DT data for OMAP platforms for v3.13 Benoit Cousson
2013-09-26 9:36 ` Benoit Cousson
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5244014B.1090502@baylibre.com \
--to=bcousson@baylibre.com \
--cc=arnd@arndb.de \
--cc=devicetree@vger.kernel.org \
--cc=grant.likely@secretlab.ca \
--cc=jkridner@beagleboard.org \
--cc=joelf@ti.com \
--cc=koen@beagleboard.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-omap@vger.kernel.org \
--cc=olof@lixom.net \
--cc=tony@atomide.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.