common: Move ARM cache operations out of common.h
[platform/kernel/u-boot.git] / drivers / mmc / tmio-common.c
index 6e656e5..669410d 100644 (file)
@@ -6,6 +6,7 @@
 
 #include <common.h>
 #include <clk.h>
+#include <cpu_func.h>
 #include <fdtdec.h>
 #include <mmc.h>
 #include <dm.h>
@@ -707,7 +708,7 @@ static void tmio_sd_host_init(struct tmio_sd_priv *priv)
         */
        if (priv->version >= 0x10) {
                if (priv->caps & TMIO_SD_CAP_64BIT)
-                       tmio_sd_writel(priv, 0x100, TMIO_SD_HOST_MODE);
+                       tmio_sd_writel(priv, 0x000, TMIO_SD_HOST_MODE);
                else
                        tmio_sd_writel(priv, 0x101, TMIO_SD_HOST_MODE);
        } else {
@@ -783,7 +784,10 @@ int tmio_sd_probe(struct udevice *dev, u32 quirks)
        plat->cfg.f_min = mclk /
                        (priv->caps & TMIO_SD_CAP_DIV1024 ? 1024 : 512);
        plat->cfg.f_max = mclk;
-       plat->cfg.b_max = U32_MAX; /* max value of TMIO_SD_SECCNT */
+       if (quirks & TMIO_SD_CAP_16BIT)
+               plat->cfg.b_max = U16_MAX; /* max value of TMIO_SD_SECCNT */
+       else
+               plat->cfg.b_max = U32_MAX; /* max value of TMIO_SD_SECCNT */
 
        upriv->mmc = &plat->mmc;