From ce4b59b8d57a4ccf8eebe18d17e330cddb3e050e Mon Sep 17 00:00:00 2001 From: Philippe Langlais Date: Thu, 19 Jan 2012 14:50:19 +0100 Subject: mach-ux500: sdi: Fixing sdi0 access on snowball This patch fix the SD/MMC boot problem on 3.2 (Bug #912302) MMC_CAP_SD_HIGHSPEED is not supported on snowball resulting on initialisation errors. There is no sdi2 on Snowball too. Signed-off-by: Mathieu Poirier Signed-off-by: Fredrik Soderstedt Signed-off-by: Philippe Langlais --- arch/arm/mach-ux500/board-mop500-sdi.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/arch/arm/mach-ux500/board-mop500-sdi.c b/arch/arm/mach-ux500/board-mop500-sdi.c index 1c47f60c588..a4c11f494a1 100644 --- a/arch/arm/mach-ux500/board-mop500-sdi.c +++ b/arch/arm/mach-ux500/board-mop500-sdi.c @@ -279,7 +279,8 @@ void __init snowball_sdi_init(void) { u32 periphid = 0x10480180; - mop500_sdi2_data.capabilities |= MMC_CAP_MMC_HIGHSPEED; + /* On Snowball MMC_CAP_SD_HIGHSPEED isn't supported (Hardware issue?) */ + mop500_sdi0_data.capabilities &= ~MMC_CAP_SD_HIGHSPEED; /* On-board eMMC */ db8500_add_sdi4(&mop500_sdi4_data, periphid); -- cgit v1.2.3