@@ -2155,6 +2155,9 @@ static void sdhci_tasklet_finish(unsigned long param)
controllers do not like that. */
sdhci_reset(host, SDHCI_RESET_CMD);
sdhci_reset(host, SDHCI_RESET_DATA);
+ } else {
+ if (host->quirks2 & SDHCI_QUIRK2_RDWR_TX_ACTIVE_EOT)
+ sdhci_reset(host, SDHCI_RESET_DATA);
}
host->mrq = NULL;
@@ -98,6 +98,8 @@ struct sdhci_host {
#define SDHCI_QUIRK2_CARD_ON_NEEDS_BUS_ON (1<<4)
/* Controller has a non-standard host control register */
#define SDHCI_QUIRK2_BROKEN_HOST_CONTROL (1<<5)
+/* Controller cannot de-assert Read/Write Transfer Active after transaction */
+#define SDHCI_QUIRK2_RDWR_TX_ACTIVE_EOT (1<<6)
int irq; /* Device IRQ */
void __iomem *ioaddr; /* Mapped address */
Initial version of Qualcomm SDHC has a hardware issue. This patch adds a quirk SDHCI_QUIRK2_RDWR_TX_ACTIVE_EOT to enable a workaround. Hardware issue: Read Transfer Active/ Write Transfer Active may be not de-asserted after end of transaction. Software workaround: Set Software Reset for DAT line in Software Reset Register (Bit 2). CC: Venkat Gopalakrishnan <venkatg@codeaurora.org> CC: Asutosh Das <asutoshd@codeaurora.org> CC: Sahitya Tummala <stummala@codeaurora.org> Signed-off-by: Georgi Djakov <gdjakov@mm-sol.com> --- drivers/mmc/host/sdhci.c | 3 +++ include/linux/mmc/sdhci.h | 2 ++ 2 files changed, 5 insertions(+)