From: Yangbo Lu Date: Wed, 15 Apr 2015 02:13:12 +0000 (+0800) Subject: mmc: fsl_esdhc: update eMMC44 adapter card erase timeout X-Git-Tag: KARO-TX6-2015-09-18~2240 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=d59016d3d9708e24a938572fed791bfd5ff5a7f7;p=karo-tx-uboot.git mmc: fsl_esdhc: update eMMC44 adapter card erase timeout Freescale eMMC44 adapter card uses Micron N2M400FDB311A3CF eMMC memory. According to the silicon datasheet, secure erase timeout is 600ms. So increase erase timeout value from 250ms to 600ms. Signed-off-by: Yangbo Lu Cc: York Sun --- diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index ce57bf4c92..ebbe913058 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -419,9 +419,9 @@ esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) /* Workaround for ESDHC errata ENGcm03648 */ if (!data && (cmd->resp_type & MMC_RSP_BUSY)) { - int timeout = 2500; + int timeout = 6000; - /* Poll on DATA0 line for cmd with busy signal for 250 ms */ + /* Poll on DATA0 line for cmd with busy signal for 600 ms */ while (timeout > 0 && !(esdhc_read32(®s->prsstat) & PRSSTAT_DAT0)) { udelay(100);