lkml.org 
[lkml]   [2006]   [Nov]   [23]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
DateThu, 23 Nov 2006 18:46:06 +0300
FromVitaly Wool <>
Subject[PATCH] fix random SD/MMC card recognition failures on ARM Versatile
Hello Pierre,

currently sometimes the SD/MMC card inserted results in recognition failure on ARM Versatile board:

   <<<Plug in MMC card>>>

root@versatile:~# mmcblk0: mmc0:0001 SDMB-32 31360KiB
 mmcblk0:<3>mmcblk0: error 3 transferring data
end_request: I/O error, dev mmcblk0, sector 0
Buffer I/O error on device mmcblk0, logical block 0
mmcblk0: error 3 transferring data
end_request: I/O error, dev mmcblk0, sector 0
Buffer I/O error on device mmcblk0, logical block 0
 unable to read partition table

This patch fixes the problem.

 drivers/mmc/mmci.c |    2 ++
 1 file changed, 2 insertions(+)
Signed-off-by: Vitaly Wool <vitalywool@gmail.com>

Index: linux-2.6.18/drivers/mmc/mmci.c
===================================================================
--- linux-2.6.18.orig/drivers/mmc/mmci.c
+++ linux-2.6.18/drivers/mmc/mmci.c
@@ -41,6 +41,8 @@ static void
 mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
 {
 	writel(0, host->base + MMCICOMMAND);
+	writel(0, host->base + MMCIDATACTRL);
+	writel(0, host->base + MMCIMASK1);
 
 	host->mrq = NULL;
 	host->cmd = NULL;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/
\
 
 \ /
  Last update: 2006-11-23 15:49    [from the cache]
©2003-2008