2018-04-18 02:07:27 +00:00
|
|
|
From c61716be1470b9857b573e9e3779766aa495239e Mon Sep 17 00:00:00 2001
|
2018-02-27 01:43:53 +00:00
|
|
|
From: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
Date: Sun, 25 Feb 2018 16:38:04 -0700
|
|
|
|
Subject: [PATCH 7/9] Fix mvsdio SD card detection
|
|
|
|
|
|
|
|
Helps SD card detection on PPv4.
|
|
|
|
|
|
|
|
Signed-off-by: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
---
|
|
|
|
drivers/mmc/core/core.c | 2 +-
|
|
|
|
drivers/mmc/core/sd.c | 9 +++++++++
|
|
|
|
drivers/mmc/host/mvsdio.c | 2 ++
|
|
|
|
3 files changed, 12 insertions(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/drivers/mmc/core/core.c b/drivers/mmc/core/core.c
|
2018-04-18 02:07:27 +00:00
|
|
|
index 121ce50b6d5e..4236a5e8043b 100644
|
2018-02-27 01:43:53 +00:00
|
|
|
--- a/drivers/mmc/core/core.c
|
|
|
|
+++ b/drivers/mmc/core/core.c
|
|
|
|
@@ -717,7 +717,7 @@ void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
|
|
|
|
*/
|
|
|
|
limit_us = 3000000;
|
|
|
|
else
|
|
|
|
- limit_us = 100000;
|
|
|
|
+ limit_us = 200000;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* SDHC cards always use these fixed values.
|
|
|
|
diff --git a/drivers/mmc/core/sd.c b/drivers/mmc/core/sd.c
|
2018-04-18 02:07:27 +00:00
|
|
|
index baf3d5da4ccb..f7f1f4f0d2c9 100644
|
2018-02-27 01:43:53 +00:00
|
|
|
--- a/drivers/mmc/core/sd.c
|
|
|
|
+++ b/drivers/mmc/core/sd.c
|
2018-04-18 02:07:27 +00:00
|
|
|
@@ -356,6 +356,15 @@ int mmc_sd_switch_hs(struct mmc_card *card)
|
2018-02-27 01:43:53 +00:00
|
|
|
if (!status)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
+ /*
|
|
|
|
+ * Some SDHC cards, notably those with a Sandisk SD controller
|
|
|
|
+ * (also found in Kingston products) need a bit of slack
|
|
|
|
+ * before successfully handling the SWITCH command. So far,
|
|
|
|
+ * cards identifying themselves as "SD04G" and "SD08G" are
|
|
|
|
+ * affected
|
|
|
|
+ */
|
|
|
|
+ udelay(100);
|
|
|
|
+
|
|
|
|
err = mmc_sd_switch(card, 1, 0, 1, status);
|
|
|
|
if (err)
|
|
|
|
goto out;
|
|
|
|
diff --git a/drivers/mmc/host/mvsdio.c b/drivers/mmc/host/mvsdio.c
|
|
|
|
index 210247b3d11a..05029d5bd72a 100644
|
|
|
|
--- a/drivers/mmc/host/mvsdio.c
|
|
|
|
+++ b/drivers/mmc/host/mvsdio.c
|
|
|
|
@@ -23,6 +23,7 @@
|
|
|
|
#include <linux/of_irq.h>
|
|
|
|
#include <linux/mmc/host.h>
|
|
|
|
#include <linux/mmc/slot-gpio.h>
|
|
|
|
+#include <linux/mmc/sd.h>
|
|
|
|
|
|
|
|
#include <asm/sizes.h>
|
|
|
|
#include <asm/unaligned.h>
|
|
|
|
@@ -149,6 +150,7 @@ static void mvsd_request(struct mmc_host *mmc, struct mmc_request *mrq)
|
|
|
|
|
|
|
|
dev_dbg(host->dev, "cmd %d (hw state 0x%04x)\n",
|
|
|
|
cmd->opcode, mvsd_read(MVSD_HW_STATE));
|
|
|
|
+ if (cmd->opcode == SD_SWITCH) mdelay(1); /* Voodoo */
|
|
|
|
|
|
|
|
cmdreg = MVSD_CMD_INDEX(cmd->opcode);
|
|
|
|
|
|
|
|
--
|
2018-04-18 02:07:27 +00:00
|
|
|
2.17.0
|
2018-02-27 01:43:53 +00:00
|
|
|
|