diff options
author | Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com> | 2014-11-12 13:03:54 +0900 |
---|---|---|
committer | Nobuhiro Iwamatsu <iwamatsu@nigauri.org> | 2015-02-25 13:13:43 +0900 |
commit | 11e329106bc92765f8fa68ff9777f79a69d98721 (patch) | |
tree | 6c916774da93a49e13b2397da935d8b93802366b /include/configs/koelsch.h | |
parent | 25f9613fcfdf0857bff7207e50cc65201ad69ed8 (diff) | |
download | u-boot-11e329106bc92765f8fa68ff9777f79a69d98721.tar.gz |
arm: rmobile: koelsch: Add support SDHI
Koelsch board has three SDHI port.
This adds GPIO configuration and initialization function of SDHI, and
enables MMC command.
Signed-off-by: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.yj@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Diffstat (limited to 'include/configs/koelsch.h')
-rw-r--r-- | include/configs/koelsch.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/configs/koelsch.h b/include/configs/koelsch.h index f7c7b2a7e1..1dffab1374 100644 --- a/include/configs/koelsch.h +++ b/include/configs/koelsch.h @@ -89,7 +89,6 @@ #define CONFIG_USB_MAX_CONTROLLER_COUNT 2 #define CONFIG_USB_STORAGE - /* Module stop status bits */ /* INTC-RT */ #define CONFIG_SMSTP0_ENA 0x00400000 @@ -100,4 +99,10 @@ /* SCIF0 */ #define CONFIG_SMSTP7_ENA 0x00200000 +/* SD */ +#define CONFIG_MMC +#define CONFIG_CMD_MMC +#define CONFIG_GENERIC_MMC +#define CONFIG_SH_SDHI_FREQ 97500000 + #endif /* __KOELSCH_H */ |