Commit 65a1b034 authored by Guennadi Liakhovetski's avatar Guennadi Liakhovetski Committed by Paul Mundt

sh: Add SDHI DMA support to migor

Signed-off-by: default avatarGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent 9e526bc7
...@@ -12,6 +12,7 @@ ...@@ -12,6 +12,7 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/input.h> #include <linux/input.h>
#include <linux/input/sh_keysc.h> #include <linux/input/sh_keysc.h>
#include <linux/mfd/sh_mobile_sdhi.h>
#include <linux/mtd/physmap.h> #include <linux/mtd/physmap.h>
#include <linux/mtd/nand.h> #include <linux/mtd/nand.h>
#include <linux/i2c.h> #include <linux/i2c.h>
...@@ -402,10 +403,18 @@ static struct resource sdhi_cn9_resources[] = { ...@@ -402,10 +403,18 @@ static struct resource sdhi_cn9_resources[] = {
}, },
}; };
static struct sh_mobile_sdhi_info sh7724_sdhi_data = {
.dma_slave_tx = SHDMA_SLAVE_SDHI0_TX,
.dma_slave_rx = SHDMA_SLAVE_SDHI0_RX,
};
static struct platform_device sdhi_cn9_device = { static struct platform_device sdhi_cn9_device = {
.name = "sh_mobile_sdhi", .name = "sh_mobile_sdhi",
.num_resources = ARRAY_SIZE(sdhi_cn9_resources), .num_resources = ARRAY_SIZE(sdhi_cn9_resources),
.resource = sdhi_cn9_resources, .resource = sdhi_cn9_resources,
.dev = {
.platform_data = &sh7724_sdhi_data,
},
.archdata = { .archdata = {
.hwblk_id = HWBLK_SDHI, .hwblk_id = HWBLK_SDHI,
}, },
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment