linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] mmc: Add delay between CMD6 and CMD13 for Sandisk eMMC cards
@ 2014-09-09 12:26 Jean-Michel Hautbois
  2014-09-11  2:38 ` Jaehoon Chung
  0 siblings, 1 reply; 10+ messages in thread
From: Jean-Michel Hautbois @ 2014-09-09 12:26 UTC (permalink / raw)
  To: linux-kernel, linux-mmc
  Cc: tgih.jun, ulf.hansson, chris, Jean-Michel Hautbois

Tested on a i.MX6 board, with Sandisk SDIN5D1-2G.
Without this patch, I/O errors occur.
This eMMC seems to have a different Manufacturer ID as it reads 0x45
and not 0x2 as specified in datasheet.

Signed-off-by: Jean-Michel Hautbois <jean-michel.hautbois@vodalys.com>
---
 drivers/mmc/core/mmc_ops.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/drivers/mmc/core/mmc_ops.c b/drivers/mmc/core/mmc_ops.c
index f51b5ba..91babaa 100644
--- a/drivers/mmc/core/mmc_ops.c
+++ b/drivers/mmc/core/mmc_ops.c
@@ -458,6 +458,15 @@ int __mmc_switch(struct mmc_card *card, u8 set, u8 index, u8 value,
 	if (!use_busy_signal)
 		return 0;
 
+	/* WORKAROUND: for Sandisk eMMC cards, it might need certain delay
+	 * before sending CMD13 after CMD6
+	 * On SDIN5D1-2G MANFID is 0x45 and not 0x2 as specified in datasheet
+	 */
+	if (card->cid.manfid == CID_MANFID_SANDISK ||
+		card->cid.manfid == 0x45) {
+		msleep(1);
+	}
+
 	/*
 	 * CRC errors shall only be ignored in cases were CMD13 is used to poll
 	 * to detect busy completion.
-- 
2.0.4


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2014-09-22  7:23 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2014-09-09 12:26 [PATCH] mmc: Add delay between CMD6 and CMD13 for Sandisk eMMC cards Jean-Michel Hautbois
2014-09-11  2:38 ` Jaehoon Chung
2014-09-15 10:08   ` Jean-Michel Hautbois
2014-09-15 10:44     ` Jaehoon Chung
2014-09-15 10:53       ` Jean-Michel Hautbois
2014-09-15 11:29         ` Jean-Michel Hautbois
2014-09-16  0:53           ` hisanao.kinkawa
2014-09-21 17:48       ` Pavel Machek
2014-09-22  2:59         ` Jaehoon Chung
2014-09-22  7:23         ` Jean-Michel Hautbois

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).