From: vinod.koul@intel.com (Vinod Koul)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v4 3/4] ARM: dts: Add STM32 DMA support for STM32F429 MCU
Date: Mon, 16 Nov 2015 08:57:58 +0530 [thread overview]
Message-ID: <20151116032758.GS25173@localhost> (raw)
In-Reply-To: <1445003956-9150-4-git-send-email-cedric.madianga@gmail.com>
On Fri, Oct 16, 2015 at 03:59:15PM +0200, M'boumba Cedric Madianga wrote:
> This patch adds STM32 DMA bindings for STM32F429.
I need an ACK from ARM folks on this one, and I suspect this might need
rebase on 4.4-rc1
>
> Signed-off-by: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
> ---
> arch/arm/boot/dts/stm32f429.dtsi | 31 +++++++++++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/arch/arm/boot/dts/stm32f429.dtsi b/arch/arm/boot/dts/stm32f429.dtsi
> index d78a481..037eb29 100644
> --- a/arch/arm/boot/dts/stm32f429.dtsi
> +++ b/arch/arm/boot/dts/stm32f429.dtsi
> @@ -174,6 +174,37 @@
> reg = <0x40023800 0x400>;
> clocks = <&clk_hse>;
> };
> +
> + dma1: dma-controller at 40026000 {
> + compatible = "st,stm32-dma";
> + reg = <0x40026000 0x400>;
> + interrupts = <11>,
> + <12>,
> + <13>,
> + <14>,
> + <15>,
> + <16>,
> + <17>,
> + <47>;
> + clocks = <&rcc 0 21>;
> + #dma-cells = <4>;
> + };
> +
> + dma2: dma-controller at 40026400 {
> + compatible = "st,stm32-dma";
> + reg = <0x40026400 0x400>;
> + interrupts = <56>,
> + <57>,
> + <58>,
> + <59>,
> + <60>,
> + <68>,
> + <69>,
> + <70>;
> + clocks = <&rcc 0 22>;
> + #dma-cells = <4>;
> + st,mem2mem;
> + };
> };
> };
>
> --
> 1.9.1
>
--
~Vinod
WARNING: multiple messages have this Message-ID (diff)
From: Vinod Koul <vinod.koul@intel.com>
To: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
Cc: mcoquelin.stm32@gmail.com, robh+dt@kernel.org,
pawel.moll@arm.com, mark.rutland@arm.com,
ijc+devicetree@hellion.org.uk, galak@codeaurora.org,
linux@arm.linux.org.uk, linux-arm-kernel@lists.infradead.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
dmaengine@vger.kernel.org
Subject: Re: [PATCH v4 3/4] ARM: dts: Add STM32 DMA support for STM32F429 MCU
Date: Mon, 16 Nov 2015 08:57:58 +0530 [thread overview]
Message-ID: <20151116032758.GS25173@localhost> (raw)
In-Reply-To: <1445003956-9150-4-git-send-email-cedric.madianga@gmail.com>
On Fri, Oct 16, 2015 at 03:59:15PM +0200, M'boumba Cedric Madianga wrote:
> This patch adds STM32 DMA bindings for STM32F429.
I need an ACK from ARM folks on this one, and I suspect this might need
rebase on 4.4-rc1
>
> Signed-off-by: M'boumba Cedric Madianga <cedric.madianga@gmail.com>
> ---
> arch/arm/boot/dts/stm32f429.dtsi | 31 +++++++++++++++++++++++++++++++
> 1 file changed, 31 insertions(+)
>
> diff --git a/arch/arm/boot/dts/stm32f429.dtsi b/arch/arm/boot/dts/stm32f429.dtsi
> index d78a481..037eb29 100644
> --- a/arch/arm/boot/dts/stm32f429.dtsi
> +++ b/arch/arm/boot/dts/stm32f429.dtsi
> @@ -174,6 +174,37 @@
> reg = <0x40023800 0x400>;
> clocks = <&clk_hse>;
> };
> +
> + dma1: dma-controller@40026000 {
> + compatible = "st,stm32-dma";
> + reg = <0x40026000 0x400>;
> + interrupts = <11>,
> + <12>,
> + <13>,
> + <14>,
> + <15>,
> + <16>,
> + <17>,
> + <47>;
> + clocks = <&rcc 0 21>;
> + #dma-cells = <4>;
> + };
> +
> + dma2: dma-controller@40026400 {
> + compatible = "st,stm32-dma";
> + reg = <0x40026400 0x400>;
> + interrupts = <56>,
> + <57>,
> + <58>,
> + <59>,
> + <60>,
> + <68>,
> + <69>,
> + <70>;
> + clocks = <&rcc 0 22>;
> + #dma-cells = <4>;
> + st,mem2mem;
> + };
> };
> };
>
> --
> 1.9.1
>
--
~Vinod
next prev parent reply other threads:[~2015-11-16 3:27 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-16 13:59 [PATCH v4 0/4] Add support for STM32 DMA M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-10-16 13:59 ` [PATCH v4 1/4] dt-bindings: Document the STM32 DMA bindings M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-10-21 1:01 ` Rob Herring
2015-10-21 1:01 ` Rob Herring
2015-11-16 3:26 ` Vinod Koul
2015-11-16 3:26 ` Vinod Koul
2015-10-16 13:59 ` [PATCH v4 2/4] dmaengine: Add STM32 DMA driver M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-11-16 3:27 ` Vinod Koul
2015-11-16 3:27 ` Vinod Koul
2015-10-16 13:59 ` [PATCH v4 3/4] ARM: dts: Add STM32 DMA support for STM32F429 MCU M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-11-16 3:27 ` Vinod Koul [this message]
2015-11-16 3:27 ` Vinod Koul
2015-11-16 12:16 ` M'boumba Cedric Madianga
2015-12-01 10:40 ` Maxime Coquelin
2015-12-01 10:40 ` Maxime Coquelin
2015-12-01 10:40 ` Maxime Coquelin
2015-10-16 13:59 ` [PATCH v4 4/4] ARM: configs: Add STM32 DMA support in STM32 defconfig M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-10-16 13:59 ` M'boumba Cedric Madianga
2015-11-16 3:28 ` Vinod Koul
2015-11-16 3:28 ` Vinod Koul
2015-11-16 3:28 ` Vinod Koul
2015-11-02 8:25 ` [PATCH v4 0/4] Add support for STM32 DMA M'boumba Cedric Madianga
2015-11-02 8:25 ` M'boumba Cedric Madianga
2015-11-02 8:25 ` M'boumba Cedric Madianga
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=20151116032758.GS25173@localhost \
--to=vinod.koul@intel.com \
--cc=linux-arm-kernel@lists.infradead.org \
/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.