From: Nicolas Ferre <nicolas.ferre@atmel.com>
To: ludovic.desroches@atmel.com
Cc: linux-arm-kernel@lists.infradead.org, linux-mmc@vger.kernel.org,
linux-i2c@vger.kernel.org, plagnioj@jcrosoft.com
Subject: Re: [PATCH v3 6/6] ARM: at91: dts: add MCI DMA support
Date: Fri, 19 Apr 2013 11:43:32 +0200 [thread overview]
Message-ID: <517111C4.3090808@atmel.com> (raw)
In-Reply-To: <1366362683-14496-7-git-send-email-ludovic.desroches@atmel.com>
On 04/19/2013 11:11 AM, ludovic.desroches@atmel.com :
> From: Ludovic Desroches <ludovic.desroches@atmel.com>
>
> Add DMA resources to MCI nodes.
>
> Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
I have made little corrections, but do not bother, it is already in my tree:
[nicolas.ferre@atmel.com: correct 9g45, 9n12 dma phandle name]
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
And stacked in at91-3.10-soc.
thanks,
> ---
> arch/arm/boot/dts/at91sam9g45.dtsi | 4 ++++
> arch/arm/boot/dts/at91sam9n12.dtsi | 2 ++
> arch/arm/boot/dts/at91sam9x5.dtsi | 4 ++++
> arch/arm/boot/dts/sama5d3.dtsi | 6 ++++++
> 4 files changed, 16 insertions(+)
>
> diff --git a/arch/arm/boot/dts/at91sam9g45.dtsi b/arch/arm/boot/dts/at91sam9g45.dtsi
> index 275e768..de2abc0 100644
> --- a/arch/arm/boot/dts/at91sam9g45.dtsi
> +++ b/arch/arm/boot/dts/at91sam9g45.dtsi
> @@ -513,6 +513,8 @@
> compatible = "atmel,hsmci";
> reg = <0xfff80000 0x600>;
> interrupts = <11 4 0>;
> + dmas = <&dma0 1 0>;
single dma controller in 9g45:
s/dma0/dma/
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> @@ -522,6 +524,8 @@
> compatible = "atmel,hsmci";
> reg = <0xfffd0000 0x600>;
> interrupts = <29 4 0>;
> + dmas = <&dma0 1 13>;
Ditto
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/at91sam9n12.dtsi b/arch/arm/boot/dts/at91sam9n12.dtsi
> index f912124..0b61c41 100644
> --- a/arch/arm/boot/dts/at91sam9n12.dtsi
> +++ b/arch/arm/boot/dts/at91sam9n12.dtsi
> @@ -89,6 +89,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf0008000 0x600>;
> interrupts = <12 4 0>;
> + dmas = <&dma0 1 0>
single dma controller in 9n12:
s/dma0/dma/
+ do not forget the tailing ";"
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi
> index 16c9b81..5f42e7a 100644
> --- a/arch/arm/boot/dts/at91sam9x5.dtsi
> +++ b/arch/arm/boot/dts/at91sam9x5.dtsi
> @@ -449,6 +449,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf0008000 0x600>;
> interrupts = <12 4 0>;
> + dmas = <&dma0 1 0>;
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> @@ -458,6 +460,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf000c000 0x600>;
> interrupts = <26 4 0>;
> + dmas = <&dma1 1 0>;
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/sama5d3.dtsi b/arch/arm/boot/dts/sama5d3.dtsi
> index 8e87277..2e643ea 100644
> --- a/arch/arm/boot/dts/sama5d3.dtsi
> +++ b/arch/arm/boot/dts/sama5d3.dtsi
> @@ -60,6 +60,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf0000000 0x600>;
> interrupts = <21 4 0>;
> + dmas = <&dma0 2 0>;
> + dma-names = "rxtx";
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_mmc0_clk_cmd_dat0 &pinctrl_mmc0_dat1_3 &pinctrl_mmc0_dat4_7>;
> status = "disabled";
> @@ -173,6 +175,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf8000000 0x600>;
> interrupts = <22 4 0>;
> + dmas = <&dma1 2 0>;
> + dma-names = "rxtx";
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_mmc1_clk_cmd_dat0 &pinctrl_mmc1_dat1_3>;
> status = "disabled";
> @@ -184,6 +188,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf8004000 0x600>;
> interrupts = <23 4 0>;
> + dmas = <&dma1 2 1>;
> + dma-names = "rxtx";
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_mmc2_clk_cmd_dat0 &pinctrl_mmc2_dat1_3>;
> status = "disabled";
>
--
Nicolas Ferre
WARNING: multiple messages have this Message-ID (diff)
From: nicolas.ferre@atmel.com (Nicolas Ferre)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 6/6] ARM: at91: dts: add MCI DMA support
Date: Fri, 19 Apr 2013 11:43:32 +0200 [thread overview]
Message-ID: <517111C4.3090808@atmel.com> (raw)
In-Reply-To: <1366362683-14496-7-git-send-email-ludovic.desroches@atmel.com>
On 04/19/2013 11:11 AM, ludovic.desroches at atmel.com :
> From: Ludovic Desroches <ludovic.desroches@atmel.com>
>
> Add DMA resources to MCI nodes.
>
> Signed-off-by: Ludovic Desroches <ludovic.desroches@atmel.com>
I have made little corrections, but do not bother, it is already in my tree:
[nicolas.ferre at atmel.com: correct 9g45, 9n12 dma phandle name]
Acked-by: Nicolas Ferre <nicolas.ferre@atmel.com>
And stacked in at91-3.10-soc.
thanks,
> ---
> arch/arm/boot/dts/at91sam9g45.dtsi | 4 ++++
> arch/arm/boot/dts/at91sam9n12.dtsi | 2 ++
> arch/arm/boot/dts/at91sam9x5.dtsi | 4 ++++
> arch/arm/boot/dts/sama5d3.dtsi | 6 ++++++
> 4 files changed, 16 insertions(+)
>
> diff --git a/arch/arm/boot/dts/at91sam9g45.dtsi b/arch/arm/boot/dts/at91sam9g45.dtsi
> index 275e768..de2abc0 100644
> --- a/arch/arm/boot/dts/at91sam9g45.dtsi
> +++ b/arch/arm/boot/dts/at91sam9g45.dtsi
> @@ -513,6 +513,8 @@
> compatible = "atmel,hsmci";
> reg = <0xfff80000 0x600>;
> interrupts = <11 4 0>;
> + dmas = <&dma0 1 0>;
single dma controller in 9g45:
s/dma0/dma/
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> @@ -522,6 +524,8 @@
> compatible = "atmel,hsmci";
> reg = <0xfffd0000 0x600>;
> interrupts = <29 4 0>;
> + dmas = <&dma0 1 13>;
Ditto
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/at91sam9n12.dtsi b/arch/arm/boot/dts/at91sam9n12.dtsi
> index f912124..0b61c41 100644
> --- a/arch/arm/boot/dts/at91sam9n12.dtsi
> +++ b/arch/arm/boot/dts/at91sam9n12.dtsi
> @@ -89,6 +89,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf0008000 0x600>;
> interrupts = <12 4 0>;
> + dmas = <&dma0 1 0>
single dma controller in 9n12:
s/dma0/dma/
+ do not forget the tailing ";"
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi
> index 16c9b81..5f42e7a 100644
> --- a/arch/arm/boot/dts/at91sam9x5.dtsi
> +++ b/arch/arm/boot/dts/at91sam9x5.dtsi
> @@ -449,6 +449,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf0008000 0x600>;
> interrupts = <12 4 0>;
> + dmas = <&dma0 1 0>;
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> @@ -458,6 +460,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf000c000 0x600>;
> interrupts = <26 4 0>;
> + dmas = <&dma1 1 0>;
> + dma-names = "rxtx";
> #address-cells = <1>;
> #size-cells = <0>;
> status = "disabled";
> diff --git a/arch/arm/boot/dts/sama5d3.dtsi b/arch/arm/boot/dts/sama5d3.dtsi
> index 8e87277..2e643ea 100644
> --- a/arch/arm/boot/dts/sama5d3.dtsi
> +++ b/arch/arm/boot/dts/sama5d3.dtsi
> @@ -60,6 +60,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf0000000 0x600>;
> interrupts = <21 4 0>;
> + dmas = <&dma0 2 0>;
> + dma-names = "rxtx";
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_mmc0_clk_cmd_dat0 &pinctrl_mmc0_dat1_3 &pinctrl_mmc0_dat4_7>;
> status = "disabled";
> @@ -173,6 +175,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf8000000 0x600>;
> interrupts = <22 4 0>;
> + dmas = <&dma1 2 0>;
> + dma-names = "rxtx";
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_mmc1_clk_cmd_dat0 &pinctrl_mmc1_dat1_3>;
> status = "disabled";
> @@ -184,6 +188,8 @@
> compatible = "atmel,hsmci";
> reg = <0xf8004000 0x600>;
> interrupts = <23 4 0>;
> + dmas = <&dma1 2 1>;
> + dma-names = "rxtx";
> pinctrl-names = "default";
> pinctrl-0 = <&pinctrl_mmc2_clk_cmd_dat0 &pinctrl_mmc2_dat1_3>;
> status = "disabled";
>
--
Nicolas Ferre
next prev parent reply other threads:[~2013-04-19 9:43 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-04-19 9:11 [PATCH v3 0/6] ARM: at91: move to generic DMA device tree binding ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
[not found] ` <1366362683-14496-1-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-19 9:11 ` [PATCH v3 1/6] at_hdmac: move to generic DMA binding ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
[not found] ` <1366362683-14496-2-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-22 10:22 ` Nicolas Ferre
2013-04-22 10:22 ` Nicolas Ferre
2013-04-22 10:22 ` Nicolas Ferre
[not found] ` <51750F68.4040701-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-23 3:44 ` Vinod Koul
2013-04-23 3:44 ` Vinod Koul
2013-04-23 3:44 ` Vinod Koul
2013-04-29 13:28 ` Nicolas Ferre
2013-04-29 13:28 ` Nicolas Ferre
2013-04-29 13:28 ` Nicolas Ferre
2013-04-30 8:48 ` Vinod Koul
2013-04-30 8:48 ` Vinod Koul
2013-04-19 9:11 ` [PATCH v3 2/6] ARM: at91: dts: set #dma-cells to the correct value ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
2013-04-19 9:39 ` Nicolas Ferre
2013-04-19 9:39 ` Nicolas Ferre
2013-04-19 9:11 ` [PATCH v3 3/6] i2c: at91: convert to dma_request_slave_channel_compat() ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
2013-04-19 9:11 ` [PATCH v3 4/6] ARM: at91: dts: add i2c dma support ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
[not found] ` <1366362683-14496-5-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-19 9:43 ` Nicolas Ferre
2013-04-19 9:43 ` Nicolas Ferre
2013-04-19 9:11 ` [PATCH v3 5/6] mci: at91: convert to dma_request_slave_channel_compat() ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
[not found] ` <1366362683-14496-6-git-send-email-ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w@public.gmane.org>
2013-04-30 8:06 ` Nicolas Ferre
2013-04-30 8:06 ` Nicolas Ferre
2013-05-10 10:05 ` [PATCH] mmc: atmel-mci: " Nicolas Ferre
2013-05-10 10:05 ` Nicolas Ferre
2013-05-10 10:05 ` Nicolas Ferre
2013-05-26 17:34 ` Chris Ball
2013-05-26 17:34 ` Chris Ball
2013-05-26 17:34 ` Chris Ball
2013-04-19 9:11 ` [PATCH v3 6/6] ARM: at91: dts: add MCI DMA support ludovic.desroches-AIFe0yeh4nAAvxtiuMwx3w
2013-04-19 9:11 ` ludovic.desroches at atmel.com
2013-04-19 9:43 ` Nicolas Ferre [this message]
2013-04-19 9:43 ` Nicolas Ferre
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=517111C4.3090808@atmel.com \
--to=nicolas.ferre@atmel.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-i2c@vger.kernel.org \
--cc=linux-mmc@vger.kernel.org \
--cc=ludovic.desroches@atmel.com \
--cc=plagnioj@jcrosoft.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.