[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <5883e4a323ff4a23a786e39b947980bb@hyperstone.com>
Date: Thu, 30 Sep 2021 06:53:49 +0000
From: Christian Löhle <CLoehle@...erstone.com>
To: "linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"linux-mmc@...r.kernel.org" <linux-mmc@...r.kernel.org>
CC: "marten.lindahl@...s.com" <marten.lindahl@...s.com>,
"jh80.chung@...sung.com" <jh80.chung@...sung.com>,
"ulf.hansson@...aro.org" <ulf.hansson@...aro.org>
Subject: [PATCHv2] mmc: dw_mmc: avoid long timeout if register invalid
Set the limit to 1s if the register is at reset value.
Signed-off-by: Christian Loehle <cloehle@...erstone.com>
---
drivers/mmc/host/dw_mmc.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/drivers/mmc/host/dw_mmc.c b/drivers/mmc/host/dw_mmc.c
index 6578cc64ae9e..96b620a9fd52 100644
--- a/drivers/mmc/host/dw_mmc.c
+++ b/drivers/mmc/host/dw_mmc.c
@@ -1983,6 +1983,13 @@ static void dw_mci_set_drto(struct dw_mci *host)
/* add a bit spare time */
drto_ms += 10;
+ /*
+ * If TMOUT register still holds the reset value the above calculation
+ * would yield a timeout of over 167 seconds, limit it to 1000ms.
+ */
+ if (drto_clks == 0xFFFFFF)
+ drto_ms = 1000;
+
spin_lock_irqsave(&host->irq_lock, irqflags);
if (!test_bit(EVENT_DATA_COMPLETE, &host->pending_events))
mod_timer(&host->dto_timer,
--
2.32.0
Hyperstone GmbH | Line-Eid-Strasse 3 | 78467 Konstanz
Managing Directors: Dr. Jan Peter Berns.
Commercial register of local courts: Freiburg HRB381782
Powered by blists - more mailing lists