FROMLIST: mmc: sdhci: Do not allow tuning procedure to be interrupted
authorChristopher Freeman <cfreeman@nvidia.com>
Tue, 16 Aug 2016 02:37:12 +0000 (10:37 +0800)
committerHuang, Tao <huangtao@rock-chips.com>
Thu, 18 Aug 2016 10:22:00 +0000 (18:22 +0800)
wait_event_interruptible_timeout() will return early if the blocked
process receives a signal, causing the driver to abort the tuning
procedure and possibly leaving the controller in a bad state.  Since the
tuning command is expected to complete quickly (<50ms) and we've set a
timeout, use wait_event_timeout() instead.

Change-Id: Ibd1c5e8076c5fde4b4e9c4ebb0a2733c8d2d4eda
Signed-off-by: Christopher Freeman <cfreeman@nvidia.com>
Tested-by: Robert Foss <robert.foss@collabora.com>
Signed-off-by: Robert Foss <robert.foss@collabora.com>
Reviewed-by: Benson Leung <bleung@chromium.org>
Signed-off-by: Shawn Lin <shawn.lin@rock-chips.com>
drivers/mmc/host/sdhci.c

index 6ffff1651438239dbd50fdf20f8e1b998c8cd1be..8de66ef259880133ea89d7e9658e0adb99701e17 100644 (file)
@@ -2023,9 +2023,9 @@ static int sdhci_execute_tuning(struct mmc_host *mmc, u32 opcode)
 
                spin_unlock_irqrestore(&host->lock, flags);
                /* Wait for Buffer Read Ready interrupt */
-               wait_event_interruptible_timeout(host->buf_ready_int,
-                                       (host->tuning_done == 1),
-                                       msecs_to_jiffies(50));
+               wait_event_timeout(host->buf_ready_int,
+                                  (host->tuning_done == 1),
+                                  msecs_to_jiffies(50));
                spin_lock_irqsave(&host->lock, flags);
 
                if (!host->tuning_done) {