summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-09-03 10:30:08 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-09-11 12:20:02 +0200
commitc6c3afb3ebd37ab36926f660c081f3d5ee16ff81 (patch)
tree7e3edbb4699772b54a852be038b4446f136bb2db /include
parente3ab3078dca6f84c40ed39830ff351015e6b3914 (diff)
downloadbarebox-c6c3afb3ebd37ab36926f660c081f3d5ee16ff81.tar.gz
barebox-c6c3afb3ebd37ab36926f660c081f3d5ee16ff81.tar.xz
mci: add designware mmc controller support
Based on the U-Boot driver. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include')
-rw-r--r--include/platform_data/dw_mmc.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/include/platform_data/dw_mmc.h b/include/platform_data/dw_mmc.h
new file mode 100644
index 0000000000..48faa76c63
--- /dev/null
+++ b/include/platform_data/dw_mmc.h
@@ -0,0 +1,9 @@
+#ifndef __INCLUDE_PLATFORM_DATA_DW_MMC_H
+#define __INCLUDE_PLATFORM_DATA_DW_MMC_H
+
+struct dw_mmc_platform_data {
+ char *devname;
+ int ciu_div;
+};
+
+#endif /* __INCLUDE_PLATFORM_DATA_DW_MMC_H */