diff mbox

[v5,3/3] ARM: dt: mmp-dma: add binding file

Message ID 1346641427-5002-4-git-send-email-zhangfei.gao@marvell.com (mailing list archive)
State New, archived
Headers show

Commit Message

Zhangfei Gao Sept. 3, 2012, 3:03 a.m. UTC
Signed-off-by: Zhangfei Gao <zhangfei.gao@marvell.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
---
 Documentation/devicetree/bindings/dma/mmp-dma.txt |   75 +++++++++++++++++++++
 1 files changed, 75 insertions(+), 0 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/dma/mmp-dma.txt

Comments

Vinod Koul Sept. 14, 2012, 2:45 a.m. UTC | #1
On Mon, 2012-09-03 at 11:03 +0800, Zhangfei Gao wrote:
> Signed-off-by: Zhangfei Gao <zhangfei.gao@marvell.com>
> Acked-by: Arnd Bergmann <arnd@arndb.de>
Acked-by: Vinod Koul <vinod.koul@linux.intel.com>

I think this patch should be merged in tree having this file, possibly
arm tree?

> ---
>  Documentation/devicetree/bindings/dma/mmp-dma.txt |   75 +++++++++++++++++++++
>  1 files changed, 75 insertions(+), 0 deletions(-)
>  create mode 100644 Documentation/devicetree/bindings/dma/mmp-dma.txt
> 
> diff --git a/Documentation/devicetree/bindings/dma/mmp-dma.txt b/Documentation/devicetree/bindings/dma/mmp-dma.txt
> new file mode 100644
> index 0000000..36254c4
> --- /dev/null
> +++ b/Documentation/devicetree/bindings/dma/mmp-dma.txt
> @@ -0,0 +1,75 @@
> +* MARVELL MMP DMA controller
> +
> +Marvell Peripheral DMA Controller
> +Used platfroms: pxa688, pxa910, pxa3xx, etc
> +
> +Required properties:
> +- compatible: Should be "marvell,pdma-1.0"
> +- reg: Should contain DMA registers location and length.
> +- interrupts: Either contain all of the per-channel DMA interrupts
> +		or one irq for pdma device
> +- #dma-channels: Number of DMA channels supported by the controller.
> +
> +"marvell,pdma-1.0"
> +Used platfroms: pxa25x, pxa27x, pxa3xx, pxa93x, pxa168, pxa910, pxa688.
> +
> +Examples:
> +
> +/*
> + * Each channel has specific irq
> + * ICU parse out irq channel from ICU register,
> + * while DMA controller may not able to distinguish the irq channel
> + * Using this method, interrupt-parent is required as demuxer
> + * For example, pxa688 icu register 0x128, bit 0~15 is PDMA channel irq,
> + * 18~21 is ADMA irq
> + */
> +pdma: dma-controller@d4000000 {
> +	      compatible = "marvell,pdma-1.0";
> +	      reg = <0xd4000000 0x10000>;
> +	      interrupts = <0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15>;
> +	      interrupt-parent = <&intcmux32>;
> +	      #dma-channels = <16>;
> +      };
> +
> +/*
> + * One irq for all channels
> + * Dmaengine driver (DMA controller) distinguish irq channel via
> + * parsing internal register
> + */
> +pdma: dma-controller@d4000000 {
> +	      compatible = "marvell,pdma-1.0";
> +	      reg = <0xd4000000 0x10000>;
> +	      interrupts = <47>;
> +	      #dma-channels = <16>;
> +      };
> +
> +
> +Marvell Two Channel DMA Controller used specifically for audio
> +Used platfroms: pxa688, pxa910
> +
> +Required properties:
> +- compatible: Should be "marvell,adma-1.0" or "marvell,pxa910-squ"
> +- reg: Should contain DMA registers location and length.
> +- interrupts: Either contain all of the per-channel DMA interrupts
> +		or one irq for dma device
> +
> +"marvell,adma-1.0" used on pxa688
> +"marvell,pxa910-squ" used on pxa910
> +
> +Examples:
> +
> +/* each channel has specific irq */
> +adma0: dma-controller@d42a0800 {
> +	      compatible = "marvell,adma-1.0";
> +	      reg = <0xd42a0800 0x100>;
> +	      interrupts = <18 19>;
> +	      interrupt-parent = <&intcmux32>;
> +      };
> +
> +/* One irq for all channels */
> +squ: dma-controller@d42a0800 {
> +	      compatible = "marvell,pxa910-squ";
> +	      reg = <0xd42a0800 0x100>;
> +	      interrupts = <46>;
> +      };
> +
Haojian Zhuang Sept. 14, 2012, 2:58 a.m. UTC | #2
On Fri, Sep 14, 2012 at 10:45 AM, Vinod Koul <vinod.koul@linux.intel.com> wrote:
> On Mon, 2012-09-03 at 11:03 +0800, Zhangfei Gao wrote:
>> Signed-off-by: Zhangfei Gao <zhangfei.gao@marvell.com>
>> Acked-by: Arnd Bergmann <arnd@arndb.de>
> Acked-by: Vinod Koul <vinod.koul@linux.intel.com>
>
> I think this patch should be merged in tree having this file, possibly
> arm tree?
>

You can merge this patch into your tree since it only appends a new file.

Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>

Regards
Haojian
>> ---
>>  Documentation/devicetree/bindings/dma/mmp-dma.txt |   75 +++++++++++++++++++++
>>  1 files changed, 75 insertions(+), 0 deletions(-)
>>  create mode 100644 Documentation/devicetree/bindings/dma/mmp-dma.txt
>>
Vinod Koul Sept. 14, 2012, 2:58 a.m. UTC | #3
On Fri, 2012-09-14 at 10:58 +0800, Haojian Zhuang wrote:
> On Fri, Sep 14, 2012 at 10:45 AM, Vinod Koul <vinod.koul@linux.intel.com> wrote:
> > On Mon, 2012-09-03 at 11:03 +0800, Zhangfei Gao wrote:
> >> Signed-off-by: Zhangfei Gao <zhangfei.gao@marvell.com>
> >> Acked-by: Arnd Bergmann <arnd@arndb.de>
> > Acked-by: Vinod Koul <vinod.koul@linux.intel.com>
> >
> > I think this patch should be merged in tree having this file, possibly
> > arm tree?
> >
> 
> You can merge this patch into your tree since it only appends a new file.
And as I have said previously my tree or linus's tree doesn't have this
file. SO this needs to go to a tree where thsi file exists

> 
> Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
> 
> Regards
> Haojian
> >> ---
> >>  Documentation/devicetree/bindings/dma/mmp-dma.txt |   75 +++++++++++++++++++++
> >>  1 files changed, 75 insertions(+), 0 deletions(-)
> >>  create mode 100644 Documentation/devicetree/bindings/dma/mmp-dma.txt
> >>
Zhangfei Gao Sept. 14, 2012, 3:32 a.m. UTC | #4
On Thu, 2012-09-13 at 19:58 -0700, Vinod Koul wrote:
> On Fri, 2012-09-14 at 10:58 +0800, Haojian Zhuang wrote:
> > On Fri, Sep 14, 2012 at 10:45 AM, Vinod Koul <vinod.koul@linux.intel.com> wrote:
> > > On Mon, 2012-09-03 at 11:03 +0800, Zhangfei Gao wrote:
> > >> Signed-off-by: Zhangfei Gao <zhangfei.gao@marvell.com>
> > >> Acked-by: Arnd Bergmann <arnd@arndb.de>
> > > Acked-by: Vinod Koul <vinod.koul@linux.intel.com>
> > >
> > > I think this patch should be merged in tree having this file, possibly
> > > arm tree?
> > >
> > 
> > You can merge this patch into your tree since it only appends a new file.
> And as I have said previously my tree or linus's tree doesn't have this
> file. SO this needs to go to a tree where thsi file exists
> 
> > 
> > Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
> > >>  Documentation/devicetree/bindings/dma/mmp-dma.txt |   75 +++++++++++++++++++++
> > >>  1 files changed, 75 insertions(+), 0 deletions(-)
> > >>  create mode 100644 Documentation/devicetree/bindings/dma/mmp-dma.txt
> > >>
> 
> 
Thanks Vinod for the BIG help.

Arnd

Which tree you think is suitable to take this new file?
Documentation/devicetree/bindings/dma/mmp-dma.txt

Thanks
Haojian Zhuang Sept. 21, 2012, 7:48 a.m. UTC | #5
On Fri, Sep 14, 2012 at 11:32 AM, Zhangfei Gao <zgao6@marvell.com> wrote:
> On Thu, 2012-09-13 at 19:58 -0700, Vinod Koul wrote:
>> On Fri, 2012-09-14 at 10:58 +0800, Haojian Zhuang wrote:
>> > On Fri, Sep 14, 2012 at 10:45 AM, Vinod Koul <vinod.koul@linux.intel.com> wrote:
>> > > On Mon, 2012-09-03 at 11:03 +0800, Zhangfei Gao wrote:
>> > >> Signed-off-by: Zhangfei Gao <zhangfei.gao@marvell.com>
>> > >> Acked-by: Arnd Bergmann <arnd@arndb.de>
>> > > Acked-by: Vinod Koul <vinod.koul@linux.intel.com>
>> > >
>> > > I think this patch should be merged in tree having this file, possibly
>> > > arm tree?
>> > >
>> >
>> > You can merge this patch into your tree since it only appends a new file.
>> And as I have said previously my tree or linus's tree doesn't have this
>> file. SO this needs to go to a tree where thsi file exists
>>
>> >
>> > Acked-by: Haojian Zhuang <haojian.zhuang@gmail.com>
>> > >>  Documentation/devicetree/bindings/dma/mmp-dma.txt |   75 +++++++++++++++++++++
>> > >>  1 files changed, 75 insertions(+), 0 deletions(-)
>> > >>  create mode 100644 Documentation/devicetree/bindings/dma/mmp-dma.txt
>> > >>
>>
>>
> Thanks Vinod for the BIG help.
>
> Arnd
>
> Which tree you think is suitable to take this new file?
> Documentation/devicetree/bindings/dma/mmp-dma.txt
>
> Thanks
>
Applied in arch-pxa tree.
diff mbox

Patch

diff --git a/Documentation/devicetree/bindings/dma/mmp-dma.txt b/Documentation/devicetree/bindings/dma/mmp-dma.txt
new file mode 100644
index 0000000..36254c4
--- /dev/null
+++ b/Documentation/devicetree/bindings/dma/mmp-dma.txt
@@ -0,0 +1,75 @@ 
+* MARVELL MMP DMA controller
+
+Marvell Peripheral DMA Controller
+Used platfroms: pxa688, pxa910, pxa3xx, etc
+
+Required properties:
+- compatible: Should be "marvell,pdma-1.0"
+- reg: Should contain DMA registers location and length.
+- interrupts: Either contain all of the per-channel DMA interrupts
+		or one irq for pdma device
+- #dma-channels: Number of DMA channels supported by the controller.
+
+"marvell,pdma-1.0"
+Used platfroms: pxa25x, pxa27x, pxa3xx, pxa93x, pxa168, pxa910, pxa688.
+
+Examples:
+
+/*
+ * Each channel has specific irq
+ * ICU parse out irq channel from ICU register,
+ * while DMA controller may not able to distinguish the irq channel
+ * Using this method, interrupt-parent is required as demuxer
+ * For example, pxa688 icu register 0x128, bit 0~15 is PDMA channel irq,
+ * 18~21 is ADMA irq
+ */
+pdma: dma-controller@d4000000 {
+	      compatible = "marvell,pdma-1.0";
+	      reg = <0xd4000000 0x10000>;
+	      interrupts = <0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15>;
+	      interrupt-parent = <&intcmux32>;
+	      #dma-channels = <16>;
+      };
+
+/*
+ * One irq for all channels
+ * Dmaengine driver (DMA controller) distinguish irq channel via
+ * parsing internal register
+ */
+pdma: dma-controller@d4000000 {
+	      compatible = "marvell,pdma-1.0";
+	      reg = <0xd4000000 0x10000>;
+	      interrupts = <47>;
+	      #dma-channels = <16>;
+      };
+
+
+Marvell Two Channel DMA Controller used specifically for audio
+Used platfroms: pxa688, pxa910
+
+Required properties:
+- compatible: Should be "marvell,adma-1.0" or "marvell,pxa910-squ"
+- reg: Should contain DMA registers location and length.
+- interrupts: Either contain all of the per-channel DMA interrupts
+		or one irq for dma device
+
+"marvell,adma-1.0" used on pxa688
+"marvell,pxa910-squ" used on pxa910
+
+Examples:
+
+/* each channel has specific irq */
+adma0: dma-controller@d42a0800 {
+	      compatible = "marvell,adma-1.0";
+	      reg = <0xd42a0800 0x100>;
+	      interrupts = <18 19>;
+	      interrupt-parent = <&intcmux32>;
+      };
+
+/* One irq for all channels */
+squ: dma-controller@d42a0800 {
+	      compatible = "marvell,pxa910-squ";
+	      reg = <0xd42a0800 0x100>;
+	      interrupts = <46>;
+      };
+