common: Drop linux/delay.h from common header
[oweals/u-boot.git] / drivers / mmc / arm_pl180_mmci.c
index e6467a2d186f3a86cf3f4baec0db5dfcf7905645..846622892a971c8c0a8aa04077e74d32d28d5a39 100644 (file)
@@ -1,3 +1,4 @@
+// SPDX-License-Identifier: GPL-2.0+
 /*
  * ARM PrimeCell MultiMedia Card Interface - PL180
  *
@@ -6,40 +7,39 @@
  * Author: Ulf Hansson <ulf.hansson@stericsson.com>
  * Author: Martin Lundholm <martin.xa.lundholm@stericsson.com>
  * Ported to drivers/mmc/ by: Matt Waddel <matt.waddel@linaro.org>
- *
- * This program is free software; you can redistribute it and/or
- * modify it under the terms of the GNU General Public License as
- * published by the Free Software Foundation; either version 2 of
- * the License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
- * MA 02111-1307 USA
  */
 
 /* #define DEBUG */
 
-#include <asm/io.h>
 #include "common.h"
+#include <clk.h>
 #include <errno.h>
+#include <log.h>
+#include <malloc.h>
 #include <mmc.h>
+#include <dm/device_compat.h>
+
+#include <asm/io.h>
+#include <asm-generic/gpio.h>
+
 #include "arm_pl180_mmci.h"
-#include <malloc.h>
+#include <linux/delay.h>
+
+#ifdef CONFIG_DM_MMC
+#include <dm.h>
+#define MMC_CLOCK_MAX  48000000
+#define MMC_CLOCK_MIN  400000
 
-struct mmc_host {
-       struct sdi_registers *base;
+struct arm_pl180_mmc_plat {
+       struct mmc_config cfg;
+       struct mmc mmc;
 };
+#endif
 
 static int wait_for_command_end(struct mmc *dev, struct mmc_cmd *cmd)
 {
        u32 hoststatus, statusmask;
-       struct mmc_host *host = dev->priv;
+       struct pl180_mmc_host *host = dev->priv;
 
        statusmask = SDI_STA_CTIMEOUT | SDI_STA_CCRCFAIL;
        if ((cmd->resp_type & MMC_RSP_PRESENT))
@@ -53,10 +53,10 @@ static int wait_for_command_end(struct mmc *dev, struct mmc_cmd *cmd)
 
        writel(statusmask, &host->base->status_clear);
        if (hoststatus & SDI_STA_CTIMEOUT) {
-               printf("CMD%d time out\n", cmd->cmdidx);
+               debug("CMD%d time out\n", cmd->cmdidx);
                return -ETIMEDOUT;
        } else if ((hoststatus & SDI_STA_CCRCFAIL) &&
-                  (cmd->flags & MMC_RSP_CRC)) {
+                  (cmd->resp_type & MMC_RSP_CRC)) {
                printf("CMD%d CRC error\n", cmd->cmdidx);
                return -EILSEQ;
        }
@@ -80,7 +80,7 @@ static int do_command(struct mmc *dev, struct mmc_cmd *cmd)
 {
        int result;
        u32 sdi_cmd = 0;
-       struct mmc_host *host = dev->priv;
+       struct pl180_mmc_host *host = dev->priv;
 
        sdi_cmd = ((cmd->cmdidx & SDI_CMD_CMDINDEX_MASK) | SDI_CMD_CPSMEN);
 
@@ -112,7 +112,7 @@ static int read_bytes(struct mmc *dev, u32 *dest, u32 blkcount, u32 blksize)
 {
        u32 *tempbuff = dest;
        u64 xfercount = blkcount * blksize;
-       struct mmc_host *host = dev->priv;
+       struct pl180_mmc_host *host = dev->priv;
        u32 status, status_err;
 
        debug("read_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
@@ -168,7 +168,7 @@ static int write_bytes(struct mmc *dev, u32 *src, u32 blkcount, u32 blksize)
        u32 *tempbuff = src;
        int i;
        u64 xfercount = blkcount * blksize;
-       struct mmc_host *host = dev->priv;
+       struct pl180_mmc_host *host = dev->priv;
        u32 status, status_err;
 
        debug("write_bytes: blkcount=%u blksize=%u\n", blkcount, blksize);
@@ -227,14 +227,19 @@ static int do_data_transfer(struct mmc *dev,
                            struct mmc_data *data)
 {
        int error = -ETIMEDOUT;
-       struct mmc_host *host = dev->priv;
+       struct pl180_mmc_host *host = dev->priv;
        u32 blksz = 0;
        u32 data_ctrl = 0;
        u32 data_len = (u32) (data->blocks * data->blocksize);
 
-       blksz = (ffs(data->blocksize) - 1);
-       data_ctrl |= ((blksz << 4) & SDI_DCTRL_DBLKSIZE_MASK);
-       data_ctrl |= SDI_DCTRL_DTEN;
+       if (!host->version2) {
+               blksz = (ffs(data->blocksize) - 1);
+               data_ctrl |= ((blksz << 4) & SDI_DCTRL_DBLKSIZE_MASK);
+       } else {
+               blksz = data->blocksize;
+               data_ctrl |= (blksz << SDI_DCTRL_DBLOCKSIZE_V2_SHIFT);
+       }
+       data_ctrl |= SDI_DCTRL_DTEN | SDI_DCTRL_BUSYMODE;
 
        writel(SDI_DTIMER_DEFAULT, &host->base->datatimer);
        writel(data_len, &host->base->datalength);
@@ -257,7 +262,7 @@ static int do_data_transfer(struct mmc *dev,
 
                writel(data_ctrl, &host->base->datactrl);
                error = write_bytes(dev, (u32 *)data->src, (u32)data->blocks,
-                                   (u32)data->blocksize);
+                                                       (u32)data->blocksize);
        }
 
        return error;
@@ -277,20 +282,9 @@ static int host_request(struct mmc *dev,
        return result;
 }
 
-/* MMC uses open drain drivers in the enumeration phase */
-static int mmc_host_reset(struct mmc *dev)
-{
-       struct mmc_host *host = dev->priv;
-       u32 sdi_u32 = SDI_PWR_OPD | SDI_PWR_PWRCTRL_ON;
-
-       writel(sdi_u32, &host->base->power);
-
-       return 0;
-}
-
-static void host_set_ios(struct mmc *dev)
+static int  host_set_ios(struct mmc *dev)
 {
-       struct mmc_host *host = dev->priv;
+       struct pl180_mmc_host *host = dev->priv;
        u32 sdi_clkcr;
 
        sdi_clkcr = readl(&host->base->clock);
@@ -298,15 +292,26 @@ static void host_set_ios(struct mmc *dev)
        /* Ramp up the clock rate */
        if (dev->clock) {
                u32 clkdiv = 0;
+               u32 tmp_clock;
 
-               if (dev->clock >= dev->f_max)
-                       dev->clock = dev->f_max;
+               if (dev->clock >= dev->cfg->f_max) {
+                       clkdiv = 0;
+                       dev->clock = dev->cfg->f_max;
+               } else {
+                       clkdiv = (host->clock_in / dev->clock) - 2;
+               }
 
-               clkdiv = ((ARM_MCLK / dev->clock) / 2) - 1;
+               tmp_clock = host->clock_in / (clkdiv + 2);
+               while (tmp_clock > dev->clock) {
+                       clkdiv++;
+                       tmp_clock = host->clock_in / (clkdiv + 2);
+               }
 
                if (clkdiv > SDI_CLKCR_CLKDIV_MASK)
                        clkdiv = SDI_CLKCR_CLKDIV_MASK;
 
+               tmp_clock = host->clock_in / (clkdiv + 2);
+               dev->clock = tmp_clock;
                sdi_clkcr &= ~(SDI_CLKCR_CLKDIV_MASK);
                sdi_clkcr |= clkdiv;
        }
@@ -322,8 +327,11 @@ static void host_set_ios(struct mmc *dev)
                case 4:
                        buswidth |= SDI_CLKCR_WIDBUS_4;
                        break;
+               case 8:
+                       buswidth |= SDI_CLKCR_WIDBUS_8;
+                       break;
                default:
-                       printf("Invalid bus width\n");
+                       printf("Invalid bus width: %d\n", dev->bus_width);
                        break;
                }
                sdi_clkcr &= ~(SDI_CLKCR_WIDBUS_MASK);
@@ -332,86 +340,218 @@ static void host_set_ios(struct mmc *dev)
 
        writel(sdi_clkcr, &host->base->clock);
        udelay(CLK_CHANGE_DELAY);
+
+       return 0;
 }
 
-struct mmc *alloc_mmc_struct(void)
+#ifndef CONFIG_DM_MMC
+/* MMC uses open drain drivers in the enumeration phase */
+static int mmc_host_reset(struct mmc *dev)
 {
-       struct mmc_host *host = NULL;
-       struct mmc *mmc_device = NULL;
-
-       host = malloc(sizeof(struct mmc_host));
-       if (!host)
-               return NULL;
-
-       mmc_device = malloc(sizeof(struct mmc));
-       if (!mmc_device)
-               goto err;
+       struct pl180_mmc_host *host = dev->priv;
 
-       mmc_device->priv = host;
-       return mmc_device;
+       writel(host->pwr_init, &host->base->power);
 
-err:
-       free(host);
-       return NULL;
+       return 0;
 }
 
+static const struct mmc_ops arm_pl180_mmci_ops = {
+       .send_cmd = host_request,
+       .set_ios = host_set_ios,
+       .init = mmc_host_reset,
+};
+
 /*
  * mmc_host_init - initialize the mmc controller.
  * Set initial clock and power for mmc slot.
  * Initialize mmc struct and register with mmc framework.
  */
-static int arm_pl180_mmci_host_init(struct mmc *dev)
+
+int arm_pl180_mmci_init(struct pl180_mmc_host *host, struct mmc **mmc)
 {
-       struct mmc_host *host = dev->priv;
        u32 sdi_u32;
 
-       host->base = (struct sdi_registers *)CONFIG_ARM_PL180_MMCI_BASE;
+       writel(host->pwr_init, &host->base->power);
+       writel(host->clkdiv_init, &host->base->clock);
+       udelay(CLK_CHANGE_DELAY);
+
+       /* Disable mmc interrupts */
+       sdi_u32 = readl(&host->base->mask0) & ~SDI_MASK0_MASK;
+       writel(sdi_u32, &host->base->mask0);
+
+       host->cfg.name = host->name;
+       host->cfg.ops = &arm_pl180_mmci_ops;
 
-       /* Initially set power-on, full voltage & MMCI read */
-       sdi_u32 = INIT_PWR;
-       writel(sdi_u32, &host->base->power);
+       /* TODO remove the duplicates */
+       host->cfg.host_caps = host->caps;
+       host->cfg.voltages = host->voltages;
+       host->cfg.f_min = host->clock_min;
+       host->cfg.f_max = host->clock_max;
+       if (host->b_max != 0)
+               host->cfg.b_max = host->b_max;
+       else
+               host->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
 
-       /* setting clk freq 505KHz */
-       sdi_u32 = SDI_CLKCR_CLKDIV_INIT | SDI_CLKCR_CLKEN;
-       writel(sdi_u32, &host->base->clock);
+       *mmc = mmc_create(&host->cfg, host);
+       if (!*mmc)
+               return -1;
+       debug("registered mmc interface number is:%d\n",
+             (*mmc)->block_dev.devnum);
+
+       return 0;
+}
+#endif
+
+#ifdef CONFIG_DM_MMC
+static void arm_pl180_mmc_init(struct pl180_mmc_host *host)
+{
+       u32 sdi_u32;
+
+       writel(host->pwr_init, &host->base->power);
+       writel(host->clkdiv_init, &host->base->clock);
        udelay(CLK_CHANGE_DELAY);
 
        /* Disable mmc interrupts */
        sdi_u32 = readl(&host->base->mask0) & ~SDI_MASK0_MASK;
        writel(sdi_u32, &host->base->mask0);
+}
+
+static int arm_pl180_mmc_probe(struct udevice *dev)
+{
+       struct arm_pl180_mmc_plat *pdata = dev_get_platdata(dev);
+       struct mmc_uclass_priv *upriv = dev_get_uclass_priv(dev);
+       struct mmc *mmc = &pdata->mmc;
+       struct pl180_mmc_host *host = dev->priv;
+       struct mmc_config *cfg = &pdata->cfg;
+       struct clk clk;
+       u32 bus_width;
+       u32 periphid;
+       int ret;
+
+       ret = clk_get_by_index(dev, 0, &clk);
+       if (ret < 0)
+               return ret;
+
+       ret = clk_enable(&clk);
+       if (ret) {
+               clk_free(&clk);
+               dev_err(dev, "failed to enable clock\n");
+               return ret;
+       }
+
+       host->pwr_init = INIT_PWR;
+       host->clkdiv_init = SDI_CLKCR_CLKDIV_INIT_V1 | SDI_CLKCR_CLKEN |
+                           SDI_CLKCR_HWFC_EN;
+       host->clock_in = clk_get_rate(&clk);
+
+       periphid = dev_read_u32_default(dev, "arm,primecell-periphid", 0);
+       switch (periphid) {
+       case STM32_MMCI_ID: /* stm32 variant */
+               host->version2 = false;
+               break;
+       default:
+               host->version2 = true;
+       }
+
+       cfg->name = dev->name;
+       cfg->voltages = VOLTAGE_WINDOW_SD;
+       cfg->host_caps = 0;
+       cfg->f_min = host->clock_in / (2 * (SDI_CLKCR_CLKDIV_INIT_V1 + 1));
+       cfg->f_max = dev_read_u32_default(dev, "max-frequency", MMC_CLOCK_MAX);
+       cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT;
+
+       gpio_request_by_name(dev, "cd-gpios", 0, &host->cd_gpio, GPIOD_IS_IN);
+
+       bus_width = dev_read_u32_default(dev, "bus-width", 1);
+       switch (bus_width) {
+       case 8:
+               cfg->host_caps |= MMC_MODE_8BIT;
+               /* Hosts capable of 8-bit transfers can also do 4 bits */
+       case 4:
+               cfg->host_caps |= MMC_MODE_4BIT;
+               break;
+       case 1:
+               break;
+       default:
+               dev_err(dev, "Invalid bus-width value %u\n", bus_width);
+       }
 
-       sprintf(dev->name, "MMC");
-       dev->clock = ARM_MCLK / (2 * (SDI_CLKCR_CLKDIV_INIT + 1));
-       dev->send_cmd = host_request;
-       dev->set_ios = host_set_ios;
-       dev->init = mmc_host_reset;
-       dev->host_caps = 0;
-       dev->voltages = VOLTAGE_WINDOW_MMC;
-       dev->f_min = dev->clock;
-       dev->f_max = CONFIG_ARM_PL180_MMCI_CLOCK_FREQ;
+       arm_pl180_mmc_init(host);
+       mmc->priv = host;
+       mmc->dev = dev;
+       upriv->mmc = mmc;
 
        return 0;
 }
 
-int arm_pl180_mmci_init(void)
+int arm_pl180_mmc_bind(struct udevice *dev)
 {
-       int error;
-       struct mmc *dev;
+       struct arm_pl180_mmc_plat *plat = dev_get_platdata(dev);
 
-       dev = alloc_mmc_struct();
-       if (!dev)
-               return -1;
+       return mmc_bind(dev, &plat->mmc, &plat->cfg);
+}
 
-       error = arm_pl180_mmci_host_init(dev);
-       if (error) {
-               printf("mmci_host_init error - %d\n", error);
-               return -1;
-       }
+static int dm_host_request(struct udevice *dev, struct mmc_cmd *cmd,
+                          struct mmc_data *data)
+{
+       struct mmc *mmc = mmc_get_mmc_dev(dev);
 
-       dev->b_max = 0;
+       return host_request(mmc, cmd, data);
+}
+
+static int dm_host_set_ios(struct udevice *dev)
+{
+       struct mmc *mmc = mmc_get_mmc_dev(dev);
+
+       return host_set_ios(mmc);
+}
 
-       mmc_register(dev);
-       debug("registered mmc interface number is:%d\n", dev->block_dev.dev);
+static int dm_mmc_getcd(struct udevice *dev)
+{
+       struct pl180_mmc_host *host = dev->priv;
+       int value = 1;
+
+       if (dm_gpio_is_valid(&host->cd_gpio))
+               value = dm_gpio_get_value(&host->cd_gpio);
+
+       return value;
+}
+
+static const struct dm_mmc_ops arm_pl180_dm_mmc_ops = {
+       .send_cmd = dm_host_request,
+       .set_ios = dm_host_set_ios,
+       .get_cd = dm_mmc_getcd,
+};
+
+static int arm_pl180_mmc_ofdata_to_platdata(struct udevice *dev)
+{
+       struct pl180_mmc_host *host = dev->priv;
+       fdt_addr_t addr;
+
+       addr = dev_read_addr(dev);
+       if (addr == FDT_ADDR_T_NONE)
+               return -EINVAL;
+
+       host->base = (void *)addr;
 
        return 0;
 }
+
+static const struct udevice_id arm_pl180_mmc_match[] = {
+       { .compatible = "arm,pl180" },
+       { .compatible = "arm,primecell" },
+       { /* sentinel */ }
+};
+
+U_BOOT_DRIVER(arm_pl180_mmc) = {
+       .name = "arm_pl180_mmc",
+       .id = UCLASS_MMC,
+       .of_match = arm_pl180_mmc_match,
+       .ops = &arm_pl180_dm_mmc_ops,
+       .probe = arm_pl180_mmc_probe,
+       .ofdata_to_platdata = arm_pl180_mmc_ofdata_to_platdata,
+       .bind = arm_pl180_mmc_bind,
+       .priv_auto_alloc_size = sizeof(struct pl180_mmc_host),
+       .platdata_auto_alloc_size = sizeof(struct arm_pl180_mmc_plat),
+};
+#endif