linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Horia Geantă" <horia.geanta@freescale.com>
To: Victoria Milhoan <vicki.milhoan@freescale.com>,
	<linux-crypto@vger.kernel.org>
Cc: <herbert@gondor.apana.org.au>, <ruchika.gupta@freescale.com>,
	<shawnguo@kernel.org>, <kernel@pengutronix.de>,
	<linux@arm.linux.org.uk>, <robh+dt@kernel.org>
Subject: Re: [PATCH v2 11/14] ARM: dts: mx6sx: Add CAAM device node
Date: Thu, 6 Aug 2015 11:59:34 +0300	[thread overview]
Message-ID: <55C321F6.1040801@freescale.com> (raw)
In-Reply-To: <1438799328-10757-12-git-send-email-vicki.milhoan@freescale.com>

On 8/5/2015 9:28 PM, Victoria Milhoan wrote:
> Add CAAM device node to the i.MX6SX device tree.
> 
> Signed-off-by: Victoria Milhoan <vicki.milhoan@freescale.com>
> ---
>  arch/arm/boot/dts/imx6sx.dtsi | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx6sx.dtsi b/arch/arm/boot/dts/imx6sx.dtsi
> index 708175d..20851cb 100644
> --- a/arch/arm/boot/dts/imx6sx.dtsi
> +++ b/arch/arm/boot/dts/imx6sx.dtsi
> @@ -738,6 +738,34 @@
>  			reg = <0x02100000 0x100000>;
>  			ranges;
>  
> +			crypto: caam@2100000 {
> +				compatible = "fsl,sec-v4.0";
> +				fsl,sec-era = <4>;
> +				#address-cells = <1>;
> +				#size-cells = <1>;
> +				reg = <0x2100000 0x10000>;
> +				ranges = <0 0x2100000 0x10000>;
> +				interrupt-parent = <&intc>;
> +				clocks = <&clks IMX6SX_CLK_CAAM_MEM>,
> +					 <&clks IMX6SX_CLK_CAAM_ACLK>,
> +					 <&clks IMX6SX_CLK_CAAM_IPG>,
> +					 <&clks IMX6SX_CLK_EIM_SLOW>;
> +				clock-names = "mem", "aclk", "ipg", "emi_slow";
> +
> +				sec_jr0: jr0@1000 {
> +					compatible = "fsl,sec-v4.0-job-ring";
> +					reg = <0x1000 0x1000>;
> +					interrupts = <GIC_SPI 105 IRQ_TYPE_LEVEL_HIGH>;
> +				};
> +
> +				sec_jr1: jr1@2000 {
> +					compatible = "fsl,sec-v4.0-job-ring";
> +					reg = <0x2000 0x1000>;
> +					interrupts = <0 106 0x4>;
> +					interrupts = <GIC_SPI 106 IRQ_TYPE_LEVEL_HIGH>;

Typo - duplicate property. Remove the first one.

Horia

  reply	other threads:[~2015-08-06  8:59 UTC|newest]

Thread overview: 41+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-07-30  3:58 [PATCH 00/12] crypto: caam - Add i.MX6 support to the Freescale CAAM driver Victoria Milhoan
2015-07-30  3:58 ` [PATCH 01/12] crypto: caam - Add cache coherency support Victoria Milhoan
2015-07-30  3:58 ` [PATCH 02/12] crypto: caam - Add setbits32/clrbits32/clrsetbits primitives for ARM compatibility Victoria Milhoan
2015-07-30  3:58 ` [PATCH 03/12] crypto: caam - Enable and disable clocks on Freescale i.MX platforms Victoria Milhoan
2015-07-30  6:02   ` Sascha Hauer
2015-07-31  6:32     ` Victoria Milhoan
2015-07-31  6:40       ` Sascha Hauer
2015-07-30  3:58 ` [PATCH 04/12] crypto: caam - Modify Freescale CAAM driver Scatter Gather entry definition Victoria Milhoan
2015-07-30  3:58 ` [PATCH 05/12] crypto: caam - Change kmalloc to kzalloc to avoid residual data Victoria Milhoan
2015-07-30  3:58 ` [PATCH 06/12] crypto: caam - Correct DMA unmap size in ahash_update_ctx() Victoria Milhoan
2015-07-30  3:58 ` [PATCH 07/12] crypto: caam - Use local sg pointers to walk the scatterlist Victoria Milhoan
2015-07-30  3:58 ` [PATCH 08/12] ARM: clk-imx6q: Add CAAM clock support Victoria Milhoan
2015-07-30  6:14   ` Sascha Hauer
2015-07-31  6:38     ` Victoria Milhoan
2015-07-30  3:58 ` [PATCH 09/12] ARM: dts: mx6qdl: Add CAAM device node Victoria Milhoan
2015-07-30  6:12   ` Sascha Hauer
2015-07-30  3:58 ` [PATCH 10/12] ARM: dts: mx6sx: " Victoria Milhoan
2015-07-30  3:58 ` [PATCH 11/12] crypto: caam - Enable MXC devices to select CAAM driver in Kconfig Victoria Milhoan
2015-07-30  3:58 ` [PATCH 12/12] ARM: imx_v6_v7_defconfig: Select CAAM Victoria Milhoan
2015-07-30 17:53 ` [PATCH 00/12] crypto: caam - Add i.MX6 support to the Freescale CAAM driver Horia Geantă
2015-08-05 18:28 ` [PATCH v2 00/14] " Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 01/14] crypto: caam - Add cache coherency support Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 02/14] crypto: caam - Add setbits32/clrbits32/clrsetbits primitives for ARM compatibility Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 03/14] crypto: caam - Enable and disable clocks on Freescale i.MX platforms Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 04/14] crypto: caam - Modify Freescale CAAM driver Scatter Gather entry definition Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 05/14] crypto: caam - Change kmalloc to kzalloc to avoid residual data Victoria Milhoan
2015-08-07  9:59     ` Herbert Xu
2015-08-05 18:28   ` [PATCH v2 06/14] crypto: caam - Correct DMA unmap size in ahash_update_ctx() Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 07/14] crypto: caam - Use local sg pointers to walk the scatterlist Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 08/14] crypto: caam - Added clocks and clock-names properties to SEC4.0 device tree binding Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 09/14] ARM: clk-imx6q: Add CAAM clock support Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 10/14] ARM: dts: mx6qdl: Add CAAM device node Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 11/14] ARM: dts: mx6sx: " Victoria Milhoan
2015-08-06  8:59     ` Horia Geantă [this message]
2015-08-06 18:37       ` Victoria Milhoan
2015-08-06 18:42       ` [PATCH v3 " Victoria Milhoan
2015-08-07  6:58         ` Horia Geantă
2015-08-05 18:28   ` [PATCH v2 12/14] crypto: caam - Enable MXC devices to select CAAM driver in Kconfig Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 13/14] ARM: imx_v6_v7_defconfig: Select CAAM Victoria Milhoan
2015-08-05 18:28   ` [PATCH v2 14/14] crypto: caam - Detect hardware features during algorithm registration Victoria Milhoan
2015-08-10 15:40   ` [PATCH v2 00/14] crypto: caam - Add i.MX6 support to the Freescale CAAM driver Herbert Xu

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=55C321F6.1040801@freescale.com \
    --to=horia.geanta@freescale.com \
    --cc=herbert@gondor.apana.org.au \
    --cc=kernel@pengutronix.de \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --cc=robh+dt@kernel.org \
    --cc=ruchika.gupta@freescale.com \
    --cc=shawnguo@kernel.org \
    --cc=vicki.milhoan@freescale.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).