|
@@ -10,6 +10,7 @@
|
|
|
#include <linux/init.h>
|
|
|
#include <linux/platform_device.h>
|
|
|
#include <linux/interrupt.h>
|
|
|
+#include <linux/mfd/sh_mobile_sdhi.h>
|
|
|
#include <linux/mtd/physmap.h>
|
|
|
#include <linux/mtd/onenand.h>
|
|
|
#include <linux/delay.h>
|
|
@@ -356,10 +357,18 @@ static struct resource kfr2r09_sh_sdhi0_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 kfr2r09_sh_sdhi0_device = {
|
|
|
.name = "sh_mobile_sdhi",
|
|
|
.num_resources = ARRAY_SIZE(kfr2r09_sh_sdhi0_resources),
|
|
|
.resource = kfr2r09_sh_sdhi0_resources,
|
|
|
+ .dev = {
|
|
|
+ .platform_data = &sh7724_sdhi0_data,
|
|
|
+ },
|
|
|
.archdata = {
|
|
|
.hwblk_id = HWBLK_SDHI0,
|
|
|
},
|