PKGBUILDs/core/linux-armv5-rc/0007-Fix-mvsdio-SD-card-detection.patch

71 lines
2.1 KiB
Diff
Raw Normal View History

2020-07-06 00:20:15 +00:00
From 666ffd0147c2c4cd4c96a4d3629a19cea077ac17 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
2020-07-06 00:20:15 +00:00
index 8d2b808e9b58..1afe0301bf4c 100644
2018-02-27 01:43:53 +00:00
--- a/drivers/mmc/core/core.c
+++ b/drivers/mmc/core/core.c
2020-07-06 00:20:15 +00:00
@@ -695,7 +695,7 @@ void mmc_set_data_timeout(struct mmc_data *data, const struct mmc_card *card)
2018-02-27 01:43:53 +00:00
*/
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
2020-07-06 00:20:15 +00:00
index 5a2210c25aa7..50ef9a2c6ee5 100644
2018-02-27 01:43:53 +00:00
--- a/drivers/mmc/core/sd.c
+++ b/drivers/mmc/core/sd.c
2019-10-07 00:55:36 +00:00
@@ -376,6 +376,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);
+
2020-07-06 00:20:15 +00:00
err = mmc_sd_switch(card, 1, 0, HIGH_SPEED_BUS_SPEED, status);
2018-02-27 01:43:53 +00:00
if (err)
goto out;
diff --git a/drivers/mmc/host/mvsdio.c b/drivers/mmc/host/mvsdio.c
2020-07-06 00:20:15 +00:00
index cc0752a9df6d..9f64b11292f7 100644
2018-02-27 01:43:53 +00:00
--- a/drivers/mmc/host/mvsdio.c
+++ b/drivers/mmc/host/mvsdio.c
2019-10-07 00:55:36 +00:00
@@ -20,6 +20,7 @@
2018-02-27 01:43:53 +00:00
#include <linux/of_irq.h>
#include <linux/mmc/host.h>
#include <linux/mmc/slot-gpio.h>
+#include <linux/mmc/sd.h>
2019-05-23 00:11:38 +00:00
#include <linux/sizes.h>
2018-02-27 01:43:53 +00:00
#include <asm/unaligned.h>
2019-10-07 00:55:36 +00:00
@@ -147,6 +148,7 @@ static void mvsd_request(struct mmc_host *mmc, struct mmc_request *mrq)
2018-02-27 01:43:53 +00:00
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);
--
2020-07-06 00:20:15 +00:00
2.26.1
2018-02-27 01:43:53 +00:00