drivers: ufs: Extend the delay after reset to wait for some slower chips
authorJohn Stultz <john.stultz@linaro.org>
Mon, 13 May 2019 23:56:19 +0000 (16:56 -0700)
committerJohn Stultz <john.stultz@linaro.org>
Tue, 14 May 2019 00:11:07 +0000 (17:11 -0700)
We've seen issues with some THG based UFS chips, where
after reset the LUNs don't always enumerate properly.

After some debugging, we found that extending the mdelay
here seems to resolve the issue by giving the chips enough
time to complete reset.

Change-Id: I848f810b2438ed6ad3d33db614c61d2cef9ac400
Signed-off-by: John Stultz <john.stultz@linaro.org>
drivers/ufs/ufs.c

index b2c1046123f103951eb1d2e92b24053e38907db1..6dbf3723610e33d28093bcf2c4a07e6e7e31e4e4 100644 (file)
@@ -704,7 +704,7 @@ static void ufs_enum(void)
        ufs_verify_ready();
 
        ufs_set_flag(FLAG_DEVICE_INIT);
-       mdelay(100);
+       mdelay(200);
        /* dump available LUNs */
        for (i = 0; i < UFS_MAX_LUNS; i++) {
                ufs_read_capacity(i, &blk_num, &blk_size);