linux-crypto.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Victoria Milhoan <vicki.milhoan@freescale.com>
Cc: linux-crypto@vger.kernel.org, linux@arm.linux.org.uk,
	herbert@gondor.apana.org.au, ruchika.gupta@freescale.com,
	kernel@pengutronix.de, shawnguo@kernel.org,
	horia.geanta@freescale.com
Subject: Re: [PATCH 08/12] ARM: clk-imx6q: Add CAAM clock support
Date: Thu, 30 Jul 2015 08:14:11 +0200	[thread overview]
Message-ID: <20150730061411.GK18700@pengutronix.de> (raw)
In-Reply-To: <1438228709-27650-9-git-send-email-vicki.milhoan@freescale.com>

On Wed, Jul 29, 2015 at 08:58:25PM -0700, Victoria Milhoan wrote:
> Add CAAM clock support to the i.MX6 clocking infrastructure.
> 
> Signed-off-by: Victoria Milhoan <vicki.milhoan@freescale.com>
> ---
>  drivers/clk/imx/clk-imx6q.c               | 3 +++
>  include/dt-bindings/clock/imx6qdl-clock.h | 5 ++++-
>  2 files changed, 7 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/imx/clk-imx6q.c b/drivers/clk/imx/clk-imx6q.c
> index d046f8e..4de4943 100644
> --- a/drivers/clk/imx/clk-imx6q.c
> +++ b/drivers/clk/imx/clk-imx6q.c
> @@ -381,6 +381,9 @@ static void __init imx6q_clocks_init(struct device_node *ccm_node)
>  	clk[IMX6QDL_CLK_ASRC]         = imx_clk_gate2_shared("asrc",         "asrc_podf",   base + 0x68, 6, &share_count_asrc);
>  	clk[IMX6QDL_CLK_ASRC_IPG]     = imx_clk_gate2_shared("asrc_ipg",     "ahb",         base + 0x68, 6, &share_count_asrc);
>  	clk[IMX6QDL_CLK_ASRC_MEM]     = imx_clk_gate2_shared("asrc_mem",     "ahb",         base + 0x68, 6, &share_count_asrc);
> +	clk[IMX6QDL_CAAM_MEM]         = imx_clk_gate2("caam_mem",      "ahb",               base + 0x68, 8);
> +	clk[IMX6QDL_CAAM_ACLK]        = imx_clk_gate2("caam_aclk",     "ahb",               base + 0x68, 10);
> +	clk[IMX6QDL_CAAM_IPG]         = imx_clk_gate2("caam_ipg",      "ipg",               base + 0x68, 12);
>  	clk[IMX6QDL_CLK_CAN1_IPG]     = imx_clk_gate2("can1_ipg",      "ipg",               base + 0x68, 14);
>  	clk[IMX6QDL_CLK_CAN1_SERIAL]  = imx_clk_gate2("can1_serial",   "can_root",          base + 0x68, 16);
>  	clk[IMX6QDL_CLK_CAN2_IPG]     = imx_clk_gate2("can2_ipg",      "ipg",               base + 0x68, 18);
> diff --git a/include/dt-bindings/clock/imx6qdl-clock.h b/include/dt-bindings/clock/imx6qdl-clock.h
> index 8780868..f68e925 100644
> --- a/include/dt-bindings/clock/imx6qdl-clock.h
> +++ b/include/dt-bindings/clock/imx6qdl-clock.h
> @@ -251,6 +251,9 @@
>  #define IMX6QDL_CLK_VIDEO_27M			238
>  #define IMX6QDL_CLK_MIPI_CORE_CFG		239
>  #define IMX6QDL_CLK_MIPI_IPG			240
> -#define IMX6QDL_CLK_END				241
> +#define IMX6QDL_CAAM_MEM			241
> +#define IMX6QDL_CAAM_ACLK			242
> +#define IMX6QDL_CAAM_IPG			243

IMX6QDL_CLK_* please.

Sascha

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

  reply	other threads:[~2015-07-30  6:14 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 [this message]
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ă
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=20150730061411.GK18700@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=herbert@gondor.apana.org.au \
    --cc=horia.geanta@freescale.com \
    --cc=kernel@pengutronix.de \
    --cc=linux-crypto@vger.kernel.org \
    --cc=linux@arm.linux.org.uk \
    --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).