]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
sh: Add SDHI DMA support to ms7724se
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Wed, 19 May 2010 18:34:32 +0000 (18:34 +0000)
committerPaul Mundt <lethal@linux-sh.org>
Sat, 22 May 2010 07:51:18 +0000 (16:51 +0900)
Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
arch/sh/boards/mach-se/7724/setup.c

index 60f0387a69d1a53d65bd0da20d0080a3f6201ea8..f9b82546c2df9c1fc2216011244ba6edf67da1ee 100644 (file)
@@ -14,6 +14,7 @@
 #include <linux/device.h>
 #include <linux/interrupt.h>
 #include <linux/platform_device.h>
+#include <linux/mfd/sh_mobile_sdhi.h>
 #include <linux/mtd/physmap.h>
 #include <linux/delay.h>
 #include <linux/smc91x.h>
@@ -462,11 +463,19 @@ static struct resource sdhi0_cn7_resources[] = {
        },
 };
 
+static struct sh_mobile_sdhi_info sh7724_sdhi0_data = {
+       .dma_slave_tx   = SHDMA_SLAVE_SDHI0_TX,
+       .dma_slave_rx   = SHDMA_SLAVE_SDHI0_RX,
+};
+
 static struct platform_device sdhi0_cn7_device = {
        .name           = "sh_mobile_sdhi",
        .id             = 0,
        .num_resources  = ARRAY_SIZE(sdhi0_cn7_resources),
        .resource       = sdhi0_cn7_resources,
+       .dev = {
+               .platform_data  = &sh7724_sdhi0_data,
+       },
        .archdata = {
                .hwblk_id = HWBLK_SDHI0,
        },
@@ -485,11 +494,19 @@ static struct resource sdhi1_cn8_resources[] = {
        },
 };
 
+static struct sh_mobile_sdhi_info sh7724_sdhi1_data = {
+       .dma_slave_tx   = SHDMA_SLAVE_SDHI1_TX,
+       .dma_slave_rx   = SHDMA_SLAVE_SDHI1_RX,
+};
+
 static struct platform_device sdhi1_cn8_device = {
        .name           = "sh_mobile_sdhi",
        .id             = 1,
        .num_resources  = ARRAY_SIZE(sdhi1_cn8_resources),
        .resource       = sdhi1_cn8_resources,
+       .dev = {
+               .platform_data  = &sh7724_sdhi1_data,
+       },
        .archdata = {
                .hwblk_id = HWBLK_SDHI1,
        },