From fd7cc8b4b4cb96e4bcde9686f03bb68d8950c681 Mon Sep 17 00:00:00 2001 From: Ondrej Jirman Date: Fri, 16 Mar 2018 20:31:55 +0100 Subject: [PATCH 020/446] mmc: add delay after power class selection This seems to fix issue with sporadic ETIMEOUT in eMMC cache initialization on second generation TBS A711 tablet. Signed-off-by: Ondrej Jirman --- drivers/mmc/core/mmc.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/drivers/mmc/core/mmc.c b/drivers/mmc/core/mmc.c index b1c1716da..2131868f2 100644 --- a/drivers/mmc/core/mmc.c +++ b/drivers/mmc/core/mmc.c @@ -1806,6 +1806,8 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr, */ mmc_select_powerclass(card); + msleep(20); + /* * Enable HPI feature (if supported) */ @@ -1824,6 +1826,8 @@ static int mmc_init_card(struct mmc_host *host, u32 ocr, } } + msleep(20); + /* * If cache size is higher than 0, this indicates the existence of cache * and it can be turned on. Note that some eMMCs from Micron has been -- 2.31.1