Merge branch '2020-06-15-misc-bugfixes'
[oweals/u-boot.git] / drivers / mmc / dw_mmc.c
index 22f6c7eefdf0519b6ce9dfa5e17652080225167e..7702f4be3f8913965971f16806d739f53c690526 100644 (file)
@@ -7,12 +7,16 @@
 
 #include <bouncebuf.h>
 #include <common.h>
+#include <cpu_func.h>
 #include <errno.h>
+#include <log.h>
 #include <malloc.h>
 #include <memalign.h>
 #include <mmc.h>
 #include <dwmmc.h>
 #include <wait_bit.h>
+#include <asm/cache.h>
+#include <linux/delay.h>
 #include <power/regulator.h>
 
 #define PAGE_SIZE 4096
@@ -119,11 +123,12 @@ static unsigned int dwmci_get_timeout(struct mmc *mmc, const unsigned int size)
 {
        unsigned int timeout;
 
-       timeout = size * 8 * 1000;      /* counting in bits and msec */
-       timeout *= 2;                   /* wait twice as long */
+       timeout = size * 8;     /* counting in bits */
+       timeout *= 10;          /* wait 10 times as long */
        timeout /= mmc->clock;
        timeout /= mmc->bus_width;
        timeout /= mmc->ddr_mode ? 2 : 1;
+       timeout *= 1000;        /* counting in msec */
        timeout = (timeout < 1000) ? 1000 : timeout;
 
        return timeout;