summaryrefslogtreecommitdiff
path: root/drivers/mmc
diff options
context:
space:
mode:
authorDong Aisheng <b29396@freescale.com>2012-09-21 18:33:06 +0800
committerDong Aisheng <b29396@freescale.com>2012-09-24 11:01:57 +0800
commit6ea3d5526686641ecbfed1b7bd3a184d12db5a47 (patch)
treef4c0c222b620036b4aa5c1a6c3213ee802438f23 /drivers/mmc
parente926cd3e11782e105993a5ae5421b39c3588551b (diff)
ENGR00225534-2 mmc: sdhci: using cancel_work_sync instread of cancel_delayed_work
We recently met an rarely happened sychronization issue which can cause mmc timeout during transfer as follows: [ OK ]onfiguring network interfaces... [ OK ]ctivating swap... mmc0: Timeout waiting for hardware interrupt. mmc0: Timeout waiting for hardware interrupt. mmc0: Timeout waiting for hardware interrupt. mmcblk0: error -110 sending status command, retrying mmcblk0: error -110 sending stop command, original cmd response 0x900, card status 0xd00 mmcblk0: error -110 transferring data, sector 9981952, nr 16, cmd response 0x900, card status 0xc00 end_request: I/O error, dev mmcblk0, sector 9981952 The root cause is that host uses cancel_delayed_work to cancel the delayed clock disable work to avoid clock to be disabled if a new cmd transfer request happens. However, the work callback may already be running during the excution of cancel_delayed_work which can not be cancelled and causes the clock probably still to be disabled during cmd transfer, then cmd timeout happens. Using cancel_work_sync instead to wait for the completion of clock disable first then we can make sure the clock can not be disabled during the cmd transfer. BTW, although the original code checks if in interrupt context, however, it's still not interrupt context safe due to the unsafe platform_clk_ctrl, so it's ok to directly use cancel_work_sync here and sdhci_enable_clk is simply not allowed to be called in irq context. Acked-by: Ryan QIAN <b32804@freescale.com> Signed-off-by: Dong Aisheng <b29396@freescale.com>
Diffstat (limited to 'drivers/mmc')
-rwxr-xr-xdrivers/mmc/host/sdhci.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c
index d642020810b1..3b8340e60cd6 100755
--- a/drivers/mmc/host/sdhci.c
+++ b/drivers/mmc/host/sdhci.c
@@ -30,7 +30,7 @@
#include "sdhci.h"
#define DRIVER_NAME "sdhci"
-#define CLK_TIMEOUT (10 * HZ)
+#define CLK_TIMEOUT (10 * HZ)
#define DBG(f, x...) \
pr_debug(DRIVER_NAME " [%s()]: " f, __func__,## x)
@@ -76,11 +76,7 @@ static inline bool sdhci_is_sdio_attached(struct sdhci_host *host)
static void sdhci_enable_clk(struct sdhci_host *host)
{
if (host->clk_mgr_en) {
- if (!in_interrupt())
- cancel_delayed_work(&host->clk_worker);
- else
- __cancel_delayed_work(&host->clk_worker);
-
+ cancel_delayed_work_sync(&host->clk_worker);
if (!host->clk_status && host->ops->platform_clk_ctrl)
host->ops->platform_clk_ctrl(host, true);
}