]> Git Repo - J-u-boot.git/blobdiff - drivers/mmc/sunxi_mmc.c
sunxi: Clean up inclusions of asm/arch/gpio.h
[J-u-boot.git] / drivers / mmc / sunxi_mmc.c
index 147eb9b4d5f9c3c49f92a414b85c7ee4442da5c3..c170c16d5ab73d19b64e7efca94589390ea4e1e5 100644 (file)
 #include <common.h>
 #include <dm.h>
 #include <errno.h>
+#include <log.h>
 #include <malloc.h>
 #include <mmc.h>
+#include <clk.h>
+#include <reset.h>
+#include <asm/gpio.h>
 #include <asm/io.h>
 #include <asm/arch/clock.h>
 #include <asm/arch/cpu.h>
-#include <asm/arch/gpio.h>
 #include <asm/arch/mmc.h>
-#include <asm-generic/gpio.h>
+#include <linux/delay.h>
+
+#ifndef CCM_MMC_CTRL_MODE_SEL_NEW
+#define CCM_MMC_CTRL_MODE_SEL_NEW      0
+#endif
 
 struct sunxi_mmc_plat {
        struct mmc_config cfg;
@@ -29,7 +36,6 @@ struct sunxi_mmc_priv {
        uint32_t *mclkreg;
        unsigned fatal_err;
        struct gpio_desc cd_gpio;       /* Change Detect GPIO */
-       int cd_inverted;                /* Inverted Card Detect */
        struct sunxi_mmc *reg;
        struct mmc_config cfg;
 };
@@ -95,26 +101,28 @@ static int mmc_resource_init(int sdc_no)
 }
 #endif
 
+/*
+ * All A64 and later MMC controllers feature auto-calibration. This would
+ * normally be detected via the compatible string, but we need something
+ * which works in the SPL as well.
+ */
+static bool sunxi_mmc_can_calibrate(void)
+{
+       return IS_ENABLED(CONFIG_MACH_SUN50I) ||
+              IS_ENABLED(CONFIG_MACH_SUN50I_H5) ||
+              IS_ENABLED(CONFIG_SUN50I_GEN_H6) ||
+              IS_ENABLED(CONFIG_MACH_SUN8I_R40);
+}
+
 static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
 {
        unsigned int pll, pll_hz, div, n, oclk_dly, sclk_dly;
-       bool new_mode = false;
-       bool calibrate = false;
+       bool new_mode = IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE);
        u32 val = 0;
 
-       if (IS_ENABLED(CONFIG_MMC_SUNXI_HAS_NEW_MODE) && (priv->mmc_no == 2))
-               new_mode = true;
-
-#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
-       calibrate = true;
-#endif
-
-       /*
-        * The MMC clock has an extra /2 post-divider when operating in the new
-        * mode.
-        */
-       if (new_mode)
-               hz = hz * 2;
+       /* A83T support new mode only on eMMC */
+       if (IS_ENABLED(CONFIG_MACH_SUN8I_A83T) && priv->mmc_no != 2)
+               new_mode = false;
 
        if (hz <= 24000000) {
                pll = CCM_MMC_CTRL_OSCM24;
@@ -123,10 +131,14 @@ static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
 #ifdef CONFIG_MACH_SUN9I
                pll = CCM_MMC_CTRL_PLL_PERIPH0;
                pll_hz = clock_get_pll4_periph0();
-#elif defined(CONFIG_MACH_SUN50I_H6)
-               pll = CCM_MMC_CTRL_PLL6X2;
-               pll_hz = clock_get_pll6() * 2;
 #else
+               /*
+                * SoCs since the A64 (H5, H6, H616) actually use the doubled
+                * rate of PLL6/PERIPH0 as an input clock, but compensate for
+                * that with a fixed post-divider of 2 in the mod clock.
+                * This cancels each other out, so for simplicity we just
+                * pretend it's always PLL6 without a post divider here.
+                */
                pll = CCM_MMC_CTRL_PLL6;
                pll_hz = clock_get_pll6();
 #endif
@@ -155,31 +167,27 @@ static int mmc_set_mod_clk(struct sunxi_mmc_priv *priv, unsigned int hz)
        } else if (hz <= 25000000) {
                oclk_dly = 0;
                sclk_dly = 5;
-#ifdef CONFIG_MACH_SUN9I
-       } else if (hz <= 52000000) {
-               oclk_dly = 5;
-               sclk_dly = 4;
        } else {
-               /* hz > 52000000 */
-               oclk_dly = 2;
-               sclk_dly = 4;
-#else
-       } else if (hz <= 52000000) {
-               oclk_dly = 3;
-               sclk_dly = 4;
-       } else {
-               /* hz > 52000000 */
-               oclk_dly = 1;
+               if (IS_ENABLED(CONFIG_MACH_SUN9I)) {
+                       if (hz <= 52000000)
+                               oclk_dly = 5;
+                       else
+                               oclk_dly = 2;
+               } else {
+                       if (hz <= 52000000)
+                               oclk_dly = 3;
+                       else
+                               oclk_dly = 1;
+               }
                sclk_dly = 4;
-#endif
        }
 
        if (new_mode) {
-#ifdef CONFIG_MMC_SUNXI_HAS_NEW_MODE
-               val = CCM_MMC_CTRL_MODE_SEL_NEW;
+               val |= CCM_MMC_CTRL_MODE_SEL_NEW;
                setbits_le32(&priv->reg->ntsr, SUNXI_MMC_NTSR_MODE_SEL_NEW);
-#endif
-       } else if (!calibrate) {
+       }
+
+       if (!sunxi_mmc_can_calibrate()) {
                /*
                 * Use hardcoded delay values if controller doesn't support
                 * calibration
@@ -237,14 +245,15 @@ static int mmc_config_clock(struct sunxi_mmc_priv *priv, struct mmc *mmc)
        rval &= ~SUNXI_MMC_CLK_DIVIDER_MASK;
        writel(rval, &priv->reg->clkcr);
 
-#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN50I_H6)
+#if defined(CONFIG_SUNXI_GEN_SUN6I) || defined(CONFIG_SUN50I_GEN_H6)
        /* A64 supports calibration of delays on MMC controller and we
         * have to set delay of zero before starting calibration.
         * Allwinner BSP driver sets a delay only in the case of
         * using HS400 which is not supported by mainline U-Boot or
         * Linux at the moment
         */
-       writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
+       if (sunxi_mmc_can_calibrate())
+               writel(SUNXI_MMC_CAL_DL_SW_EN, &priv->reg->samp_dl);
 #endif
 
        /* Re-enable Clock */
@@ -300,8 +309,9 @@ static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
                                              SUNXI_MMC_STATUS_FIFO_FULL;
        unsigned i;
        unsigned *buff = (unsigned int *)(reading ? data->dest : data->src);
-       unsigned byte_cnt = data->blocksize * data->blocks;
-       unsigned timeout_msecs = byte_cnt >> 8;
+       unsigned word_cnt = (data->blocksize * data->blocks) >> 2;
+       unsigned timeout_msecs = word_cnt >> 6;
+       uint32_t status;
        unsigned long  start;
 
        if (timeout_msecs < 2000)
@@ -312,16 +322,42 @@ static int mmc_trans_data_by_cpu(struct sunxi_mmc_priv *priv, struct mmc *mmc,
 
        start = get_timer(0);
 
-       for (i = 0; i < (byte_cnt >> 2); i++) {
-               while (readl(&priv->reg->status) & status_bit) {
+       for (i = 0; i < word_cnt;) {
+               unsigned int in_fifo;
+
+               while ((status = readl(&priv->reg->status)) & status_bit) {
                        if (get_timer(start) > timeout_msecs)
                                return -1;
                }
 
-               if (reading)
-                       buff[i] = readl(&priv->reg->fifo);
-               else
-                       writel(buff[i], &priv->reg->fifo);
+               /*
+                * For writing we do not easily know the FIFO size, so have
+                * to check the FIFO status after every word written.
+                * TODO: For optimisation we could work out a minimum FIFO
+                * size across all SoCs, and use that together with the current
+                * fill level to write chunks of words.
+                */
+               if (!reading) {
+                       writel(buff[i++], &priv->reg->fifo);
+                       continue;
+               }
+
+               /*
+                * The status register holds the current FIFO level, so we
+                * can be sure to collect as many words from the FIFO
+                * register without checking the status register after every
+                * read. That saves half of the costly MMIO reads, effectively
+                * doubling the read performance.
+                * Some SoCs (A20) report a level of 0 if the FIFO is
+                * completely full (value masked out?). Use a safe minimal
+                * FIFO size in this case.
+                */
+               in_fifo = SUNXI_MMC_STATUS_FIFO_LEVEL(status);
+               if (in_fifo == 0 && (status & SUNXI_MMC_STATUS_FIFO_FULL))
+                       in_fifo = 32;
+               for (; in_fifo > 0; in_fifo--)
+                       buff[i++] = readl_relaxed(&priv->reg->fifo);
+               dmb();
        }
 
        return 0;
@@ -518,10 +554,11 @@ struct mmc *sunxi_mmc_init(int sdc_no)
 
        cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
        cfg->host_caps = MMC_MODE_4BIT;
-#if defined(CONFIG_MACH_SUN50I) || defined(CONFIG_MACH_SUN8I) || defined(CONFIG_MACH_SUN50I_H6)
-       if (sdc_no == 2)
+
+       if ((IS_ENABLED(CONFIG_MACH_SUN50I) || IS_ENABLED(CONFIG_MACH_SUN8I) ||
+           IS_ENABLED(CONFIG_SUN50I_GEN_H6)) && (sdc_no == 2))
                cfg->host_caps = MMC_MODE_8BIT;
-#endif
+
        cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
        cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
 
@@ -533,7 +570,7 @@ struct mmc *sunxi_mmc_init(int sdc_no)
 
        /* config ahb clock */
        debug("init mmc %d clock and io\n", sdc_no);
-#if !defined(CONFIG_MACH_SUN50I_H6)
+#if !defined(CONFIG_SUN50I_GEN_H6)
        setbits_le32(&ccm->ahb_gate0, 1 << AHB_GATE_OFFSET_MMC(sdc_no));
 
 #ifdef CONFIG_SUNXI_GEN_SUN6I
@@ -545,7 +582,7 @@ struct mmc *sunxi_mmc_init(int sdc_no)
        writel(SUNXI_MMC_COMMON_CLK_GATE | SUNXI_MMC_COMMON_RESET,
               SUNXI_MMC_COMMON_BASE + 4 * sdc_no);
 #endif
-#else /* CONFIG_MACH_SUN50I_H6 */
+#else /* CONFIG_SUN50I_GEN_H6 */
        setbits_le32(&ccm->sd_gate_reset, 1 << sdc_no);
        /* unassert reset */
        setbits_le32(&ccm->sd_gate_reset, 1 << (RESET_SHIFT + sdc_no));
@@ -560,7 +597,7 @@ struct mmc *sunxi_mmc_init(int sdc_no)
 
 static int sunxi_mmc_set_ios(struct udevice *dev)
 {
-       struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
+       struct sunxi_mmc_plat *plat = dev_get_plat(dev);
        struct sunxi_mmc_priv *priv = dev_get_priv(dev);
 
        return sunxi_mmc_set_ios_common(priv, &plat->mmc);
@@ -569,7 +606,7 @@ static int sunxi_mmc_set_ios(struct udevice *dev)
 static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
                              struct mmc_data *data)
 {
-       struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
+       struct sunxi_mmc_plat *plat = dev_get_plat(dev);
        struct sunxi_mmc_priv *priv = dev_get_priv(dev);
 
        return sunxi_mmc_send_cmd_common(priv, &plat->mmc, cmd, data);
@@ -577,12 +614,21 @@ static int sunxi_mmc_send_cmd(struct udevice *dev, struct mmc_cmd *cmd,
 
 static int sunxi_mmc_getcd(struct udevice *dev)
 {
+       struct mmc *mmc = mmc_get_mmc_dev(dev);
        struct sunxi_mmc_priv *priv = dev_get_priv(dev);
 
+       /* If polling, assume that the card is always present. */
+       if ((mmc->cfg->host_caps & MMC_CAP_NONREMOVABLE) ||
+           (mmc->cfg->host_caps & MMC_CAP_NEEDS_POLL))
+               return 1;
+
        if (dm_gpio_is_valid(&priv->cd_gpio)) {
                int cd_state = dm_gpio_get_value(&priv->cd_gpio);
 
-               return cd_state ^ priv->cd_inverted;
+               if (mmc->cfg->host_caps & MMC_CAP_CD_ACTIVE_HIGH)
+                       return !cd_state;
+               else
+                       return cd_state;
        }
        return 1;
 }
@@ -593,47 +639,61 @@ static const struct dm_mmc_ops sunxi_mmc_ops = {
        .get_cd         = sunxi_mmc_getcd,
 };
 
+static unsigned get_mclk_offset(void)
+{
+       if (IS_ENABLED(CONFIG_MACH_SUN9I_A80))
+               return 0x410;
+
+       if (IS_ENABLED(CONFIG_SUN50I_GEN_H6))
+               return 0x830;
+
+       return 0x88;
+};
+
 static int sunxi_mmc_probe(struct udevice *dev)
 {
        struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
-       struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
+       struct sunxi_mmc_plat *plat = dev_get_plat(dev);
        struct sunxi_mmc_priv *priv = dev_get_priv(dev);
+       struct reset_ctl_bulk reset_bulk;
+       struct clk gate_clk;
        struct mmc_config *cfg = &plat->cfg;
        struct ofnode_phandle_args args;
-       u32 *gate_reg;
-       int bus_width, ret;
+       u32 *ccu_reg;
+       int ret;
 
        cfg->name = dev->name;
-       bus_width = dev_read_u32_default(dev, "bus-width", 1);
 
        cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34;
-       cfg->host_caps = 0;
-       if (bus_width == 8)
-               cfg->host_caps |= MMC_MODE_8BIT;
-       if (bus_width >= 4)
-               cfg->host_caps |= MMC_MODE_4BIT;
-       cfg->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS;
+       cfg->host_caps = MMC_MODE_HS_52MHz | MMC_MODE_HS;
        cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
 
        cfg->f_min = 400000;
        cfg->f_max = 52000000;
 
-       priv->reg = (void *)dev_read_addr(dev);
+       ret = mmc_of_parse(dev, cfg);
+       if (ret)
+               return ret;
+
+       priv->reg = dev_read_addr_ptr(dev);
 
        /* We don't have a sunxi clock driver so find the clock address here */
        ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
                                          1, &args);
        if (ret)
                return ret;
-       priv->mclkreg = (u32 *)ofnode_get_addr(args.node);
+       ccu_reg = (u32 *)(uintptr_t)ofnode_get_addr(args.node);
 
-       ret = dev_read_phandle_with_args(dev, "clocks", "#clock-cells", 0,
-                                         0, &args);
-       if (ret)
-               return ret;
-       gate_reg = (u32 *)ofnode_get_addr(args.node);
-       setbits_le32(gate_reg, 1 << args.args[0]);
-       priv->mmc_no = args.args[0] - 8;
+       priv->mmc_no = ((uintptr_t)priv->reg - SUNXI_MMC0_BASE) / 0x1000;
+       priv->mclkreg = (void *)ccu_reg + get_mclk_offset() + priv->mmc_no * 4;
+
+       ret = clk_get_by_name(dev, "ahb", &gate_clk);
+       if (!ret)
+               clk_enable(&gate_clk);
+
+       ret = reset_get_bulk(dev, &reset_bulk);
+       if (!ret)
+               reset_deassert_bulk(&reset_bulk);
 
        ret = mmc_set_mod_clk(priv, 24000000);
        if (ret)
@@ -647,9 +707,6 @@ static int sunxi_mmc_probe(struct udevice *dev)
                sunxi_gpio_set_pull(cd_pin, SUNXI_GPIO_PULL_UP);
        }
 
-       /* Check if card detect is inverted */
-       priv->cd_inverted = dev_read_bool(dev, "cd-inverted");
-
        upriv->mmc = &plat->mmc;
 
        /* Reset controller */
@@ -661,7 +718,7 @@ static int sunxi_mmc_probe(struct udevice *dev)
 
 static int sunxi_mmc_bind(struct udevice *dev)
 {
-       struct sunxi_mmc_plat *plat = dev_get_platdata(dev);
+       struct sunxi_mmc_plat *plat = dev_get_plat(dev);
 
        return mmc_bind(dev, &plat->mmc, &plat->cfg);
 }
@@ -670,7 +727,15 @@ static const struct udevice_id sunxi_mmc_ids[] = {
        { .compatible = "allwinner,sun4i-a10-mmc" },
        { .compatible = "allwinner,sun5i-a13-mmc" },
        { .compatible = "allwinner,sun7i-a20-mmc" },
-       { }
+       { .compatible = "allwinner,sun8i-a83t-emmc" },
+       { .compatible = "allwinner,sun9i-a80-mmc" },
+       { .compatible = "allwinner,sun50i-a64-mmc" },
+       { .compatible = "allwinner,sun50i-a64-emmc" },
+       { .compatible = "allwinner,sun50i-h6-mmc" },
+       { .compatible = "allwinner,sun50i-h6-emmc" },
+       { .compatible = "allwinner,sun50i-a100-mmc" },
+       { .compatible = "allwinner,sun50i-a100-emmc" },
+       { /* sentinel */ }
 };
 
 U_BOOT_DRIVER(sunxi_mmc_drv) = {
@@ -680,7 +745,7 @@ U_BOOT_DRIVER(sunxi_mmc_drv) = {
        .bind           = sunxi_mmc_bind,
        .probe          = sunxi_mmc_probe,
        .ops            = &sunxi_mmc_ops,
-       .platdata_auto_alloc_size = sizeof(struct sunxi_mmc_plat),
-       .priv_auto_alloc_size = sizeof(struct sunxi_mmc_priv),
+       .plat_auto      = sizeof(struct sunxi_mmc_plat),
+       .priv_auto      = sizeof(struct sunxi_mmc_priv),
 };
 #endif
This page took 0.039968 seconds and 4 git commands to generate.