diff mbox

sh: Add support DMA Engine to SH7780

Message ID 49B8BA61.4000608@renesas.com (mailing list archive)
State Accepted
Delegated to: Paul Mundt
Headers show

Commit Message

Nobuhiro Iwamatsu March 12, 2009, 7:31 a.m. UTC
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
---
 arch/sh/kernel/cpu/sh4a/setup-sh7780.c |   15 +++++++++++++++
 1 files changed, 15 insertions(+), 0 deletions(-)
diff mbox

Patch

diff --git a/arch/sh/kernel/cpu/sh4a/setup-sh7780.c b/arch/sh/kernel/cpu/sh4a/setup-sh7780.c
index 6f7227c..272c3c3 100644
--- a/arch/sh/kernel/cpu/sh4a/setup-sh7780.c
+++ b/arch/sh/kernel/cpu/sh4a/setup-sh7780.c
@@ -12,6 +12,7 @@ 
 #include <linux/serial.h>
 #include <linux/io.h>
 #include <linux/serial_sci.h>
+#include <asm/dma-sh.h>

 static struct resource rtc_resources[] = {
 	[0] = {
@@ -57,9 +58,23 @@  static struct platform_device sci_device = {
 	},
 };

+static struct sh_dmae_pdata dma_platform_data = {
+        .mode = (SHDMA_MIX_IRQ|SHDMA_DMAOR1),
+};
+
+static struct platform_device dma_device = {
+        .name           = "sh-dma-engine",
+        .id             = -1,
+        .dev            = {
+                .platform_data  = &dma_platform_data,
+        },
+};
+
+
 static struct platform_device *sh7780_devices[] __initdata = {
 	&rtc_device,
 	&sci_device,
+	&dma_device,
 };

 static int __init sh7780_devices_setup(void)