linux/drivers/mmc/host/sdhci-tegra.c
<<
>>
Prefs
   1/*
   2 * Copyright (C) 2010 Google, Inc.
   3 *
   4 * This software is licensed under the terms of the GNU General Public
   5 * License version 2, as published by the Free Software Foundation, and
   6 * may be copied, distributed, and modified under those terms.
   7 *
   8 * This program is distributed in the hope that it will be useful,
   9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11 * GNU General Public License for more details.
  12 *
  13 */
  14
  15#include <linux/err.h>
  16#include <linux/module.h>
  17#include <linux/init.h>
  18#include <linux/platform_device.h>
  19#include <linux/clk.h>
  20#include <linux/io.h>
  21#include <linux/of.h>
  22#include <linux/of_device.h>
  23#include <linux/mmc/card.h>
  24#include <linux/mmc/host.h>
  25#include <linux/mmc/slot-gpio.h>
  26#include <linux/gpio/consumer.h>
  27
  28#include "sdhci-pltfm.h"
  29
  30/* Tegra SDHOST controller vendor register definitions */
  31#define SDHCI_TEGRA_VENDOR_MISC_CTRL            0x120
  32#define SDHCI_MISC_CTRL_ENABLE_SDR104           0x8
  33#define SDHCI_MISC_CTRL_ENABLE_SDR50            0x10
  34#define SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300   0x20
  35#define SDHCI_MISC_CTRL_ENABLE_DDR50            0x200
  36
  37#define NVQUIRK_FORCE_SDHCI_SPEC_200    BIT(0)
  38#define NVQUIRK_ENABLE_BLOCK_GAP_DET    BIT(1)
  39#define NVQUIRK_ENABLE_SDHCI_SPEC_300   BIT(2)
  40#define NVQUIRK_DISABLE_SDR50           BIT(3)
  41#define NVQUIRK_DISABLE_SDR104          BIT(4)
  42#define NVQUIRK_DISABLE_DDR50           BIT(5)
  43
  44struct sdhci_tegra_soc_data {
  45        const struct sdhci_pltfm_data *pdata;
  46        u32 nvquirks;
  47};
  48
  49struct sdhci_tegra {
  50        const struct sdhci_tegra_soc_data *soc_data;
  51        struct gpio_desc *power_gpio;
  52};
  53
  54static u16 tegra_sdhci_readw(struct sdhci_host *host, int reg)
  55{
  56        struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
  57        struct sdhci_tegra *tegra_host = pltfm_host->priv;
  58        const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
  59
  60        if (unlikely((soc_data->nvquirks & NVQUIRK_FORCE_SDHCI_SPEC_200) &&
  61                        (reg == SDHCI_HOST_VERSION))) {
  62                /* Erratum: Version register is invalid in HW. */
  63                return SDHCI_SPEC_200;
  64        }
  65
  66        return readw(host->ioaddr + reg);
  67}
  68
  69static void tegra_sdhci_writew(struct sdhci_host *host, u16 val, int reg)
  70{
  71        struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
  72
  73        switch (reg) {
  74        case SDHCI_TRANSFER_MODE:
  75                /*
  76                 * Postpone this write, we must do it together with a
  77                 * command write that is down below.
  78                 */
  79                pltfm_host->xfer_mode_shadow = val;
  80                return;
  81        case SDHCI_COMMAND:
  82                writel((val << 16) | pltfm_host->xfer_mode_shadow,
  83                        host->ioaddr + SDHCI_TRANSFER_MODE);
  84                return;
  85        }
  86
  87        writew(val, host->ioaddr + reg);
  88}
  89
  90static void tegra_sdhci_writel(struct sdhci_host *host, u32 val, int reg)
  91{
  92        struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
  93        struct sdhci_tegra *tegra_host = pltfm_host->priv;
  94        const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
  95
  96        /* Seems like we're getting spurious timeout and crc errors, so
  97         * disable signalling of them. In case of real errors software
  98         * timers should take care of eventually detecting them.
  99         */
 100        if (unlikely(reg == SDHCI_SIGNAL_ENABLE))
 101                val &= ~(SDHCI_INT_TIMEOUT|SDHCI_INT_CRC);
 102
 103        writel(val, host->ioaddr + reg);
 104
 105        if (unlikely((soc_data->nvquirks & NVQUIRK_ENABLE_BLOCK_GAP_DET) &&
 106                        (reg == SDHCI_INT_ENABLE))) {
 107                /* Erratum: Must enable block gap interrupt detection */
 108                u8 gap_ctrl = readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
 109                if (val & SDHCI_INT_CARD_INT)
 110                        gap_ctrl |= 0x8;
 111                else
 112                        gap_ctrl &= ~0x8;
 113                writeb(gap_ctrl, host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
 114        }
 115}
 116
 117static unsigned int tegra_sdhci_get_ro(struct sdhci_host *host)
 118{
 119        return mmc_gpio_get_ro(host->mmc);
 120}
 121
 122static void tegra_sdhci_reset(struct sdhci_host *host, u8 mask)
 123{
 124        struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
 125        struct sdhci_tegra *tegra_host = pltfm_host->priv;
 126        const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
 127        u32 misc_ctrl;
 128
 129        sdhci_reset(host, mask);
 130
 131        if (!(mask & SDHCI_RESET_ALL))
 132                return;
 133
 134        misc_ctrl = sdhci_readw(host, SDHCI_TEGRA_VENDOR_MISC_CTRL);
 135        /* Erratum: Enable SDHCI spec v3.00 support */
 136        if (soc_data->nvquirks & NVQUIRK_ENABLE_SDHCI_SPEC_300)
 137                misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300;
 138        /* Don't advertise UHS modes which aren't supported yet */
 139        if (soc_data->nvquirks & NVQUIRK_DISABLE_SDR50)
 140                misc_ctrl &= ~SDHCI_MISC_CTRL_ENABLE_SDR50;
 141        if (soc_data->nvquirks & NVQUIRK_DISABLE_DDR50)
 142                misc_ctrl &= ~SDHCI_MISC_CTRL_ENABLE_DDR50;
 143        if (soc_data->nvquirks & NVQUIRK_DISABLE_SDR104)
 144                misc_ctrl &= ~SDHCI_MISC_CTRL_ENABLE_SDR104;
 145        sdhci_writew(host, misc_ctrl, SDHCI_TEGRA_VENDOR_MISC_CTRL);
 146}
 147
 148static void tegra_sdhci_set_bus_width(struct sdhci_host *host, int bus_width)
 149{
 150        u32 ctrl;
 151
 152        ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
 153        if ((host->mmc->caps & MMC_CAP_8_BIT_DATA) &&
 154            (bus_width == MMC_BUS_WIDTH_8)) {
 155                ctrl &= ~SDHCI_CTRL_4BITBUS;
 156                ctrl |= SDHCI_CTRL_8BITBUS;
 157        } else {
 158                ctrl &= ~SDHCI_CTRL_8BITBUS;
 159                if (bus_width == MMC_BUS_WIDTH_4)
 160                        ctrl |= SDHCI_CTRL_4BITBUS;
 161                else
 162                        ctrl &= ~SDHCI_CTRL_4BITBUS;
 163        }
 164        sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
 165}
 166
 167static const struct sdhci_ops tegra_sdhci_ops = {
 168        .get_ro     = tegra_sdhci_get_ro,
 169        .read_w     = tegra_sdhci_readw,
 170        .write_l    = tegra_sdhci_writel,
 171        .set_clock  = sdhci_set_clock,
 172        .set_bus_width = tegra_sdhci_set_bus_width,
 173        .reset      = tegra_sdhci_reset,
 174        .set_uhs_signaling = sdhci_set_uhs_signaling,
 175        .get_max_clock = sdhci_pltfm_clk_get_max_clock,
 176};
 177
 178static const struct sdhci_pltfm_data sdhci_tegra20_pdata = {
 179        .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
 180                  SDHCI_QUIRK_SINGLE_POWER_WRITE |
 181                  SDHCI_QUIRK_NO_HISPD_BIT |
 182                  SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
 183                  SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
 184        .ops  = &tegra_sdhci_ops,
 185};
 186
 187static struct sdhci_tegra_soc_data soc_data_tegra20 = {
 188        .pdata = &sdhci_tegra20_pdata,
 189        .nvquirks = NVQUIRK_FORCE_SDHCI_SPEC_200 |
 190                    NVQUIRK_ENABLE_BLOCK_GAP_DET,
 191};
 192
 193static const struct sdhci_pltfm_data sdhci_tegra30_pdata = {
 194        .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
 195                  SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
 196                  SDHCI_QUIRK_SINGLE_POWER_WRITE |
 197                  SDHCI_QUIRK_NO_HISPD_BIT |
 198                  SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
 199                  SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
 200        .ops  = &tegra_sdhci_ops,
 201};
 202
 203static struct sdhci_tegra_soc_data soc_data_tegra30 = {
 204        .pdata = &sdhci_tegra30_pdata,
 205        .nvquirks = NVQUIRK_ENABLE_SDHCI_SPEC_300 |
 206                    NVQUIRK_DISABLE_SDR50 |
 207                    NVQUIRK_DISABLE_SDR104,
 208};
 209
 210static const struct sdhci_ops tegra114_sdhci_ops = {
 211        .get_ro     = tegra_sdhci_get_ro,
 212        .read_w     = tegra_sdhci_readw,
 213        .write_w    = tegra_sdhci_writew,
 214        .write_l    = tegra_sdhci_writel,
 215        .set_clock  = sdhci_set_clock,
 216        .set_bus_width = tegra_sdhci_set_bus_width,
 217        .reset      = tegra_sdhci_reset,
 218        .set_uhs_signaling = sdhci_set_uhs_signaling,
 219        .get_max_clock = sdhci_pltfm_clk_get_max_clock,
 220};
 221
 222static const struct sdhci_pltfm_data sdhci_tegra114_pdata = {
 223        .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
 224                  SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
 225                  SDHCI_QUIRK_SINGLE_POWER_WRITE |
 226                  SDHCI_QUIRK_NO_HISPD_BIT |
 227                  SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
 228                  SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
 229        .ops  = &tegra114_sdhci_ops,
 230};
 231
 232static struct sdhci_tegra_soc_data soc_data_tegra114 = {
 233        .pdata = &sdhci_tegra114_pdata,
 234        .nvquirks = NVQUIRK_DISABLE_SDR50 |
 235                    NVQUIRK_DISABLE_DDR50 |
 236                    NVQUIRK_DISABLE_SDR104,
 237};
 238
 239static const struct of_device_id sdhci_tegra_dt_match[] = {
 240        { .compatible = "nvidia,tegra124-sdhci", .data = &soc_data_tegra114 },
 241        { .compatible = "nvidia,tegra114-sdhci", .data = &soc_data_tegra114 },
 242        { .compatible = "nvidia,tegra30-sdhci", .data = &soc_data_tegra30 },
 243        { .compatible = "nvidia,tegra20-sdhci", .data = &soc_data_tegra20 },
 244        {}
 245};
 246MODULE_DEVICE_TABLE(of, sdhci_tegra_dt_match);
 247
 248static int sdhci_tegra_probe(struct platform_device *pdev)
 249{
 250        const struct of_device_id *match;
 251        const struct sdhci_tegra_soc_data *soc_data;
 252        struct sdhci_host *host;
 253        struct sdhci_pltfm_host *pltfm_host;
 254        struct sdhci_tegra *tegra_host;
 255        struct clk *clk;
 256        int rc;
 257
 258        match = of_match_device(sdhci_tegra_dt_match, &pdev->dev);
 259        if (!match)
 260                return -EINVAL;
 261        soc_data = match->data;
 262
 263        host = sdhci_pltfm_init(pdev, soc_data->pdata, 0);
 264        if (IS_ERR(host))
 265                return PTR_ERR(host);
 266        pltfm_host = sdhci_priv(host);
 267
 268        tegra_host = devm_kzalloc(&pdev->dev, sizeof(*tegra_host), GFP_KERNEL);
 269        if (!tegra_host) {
 270                dev_err(mmc_dev(host->mmc), "failed to allocate tegra_host\n");
 271                rc = -ENOMEM;
 272                goto err_alloc_tegra_host;
 273        }
 274        tegra_host->soc_data = soc_data;
 275        pltfm_host->priv = tegra_host;
 276
 277        rc = mmc_of_parse(host->mmc);
 278        if (rc)
 279                goto err_parse_dt;
 280
 281        tegra_host->power_gpio = devm_gpiod_get_optional(&pdev->dev, "power",
 282                                                         GPIOD_OUT_HIGH);
 283        if (IS_ERR(tegra_host->power_gpio)) {
 284                rc = PTR_ERR(tegra_host->power_gpio);
 285                goto err_power_req;
 286        }
 287
 288        clk = devm_clk_get(mmc_dev(host->mmc), NULL);
 289        if (IS_ERR(clk)) {
 290                dev_err(mmc_dev(host->mmc), "clk err\n");
 291                rc = PTR_ERR(clk);
 292                goto err_clk_get;
 293        }
 294        clk_prepare_enable(clk);
 295        pltfm_host->clk = clk;
 296
 297        rc = sdhci_add_host(host);
 298        if (rc)
 299                goto err_add_host;
 300
 301        return 0;
 302
 303err_add_host:
 304        clk_disable_unprepare(pltfm_host->clk);
 305err_clk_get:
 306err_power_req:
 307err_parse_dt:
 308err_alloc_tegra_host:
 309        sdhci_pltfm_free(pdev);
 310        return rc;
 311}
 312
 313static struct platform_driver sdhci_tegra_driver = {
 314        .driver         = {
 315                .name   = "sdhci-tegra",
 316                .of_match_table = sdhci_tegra_dt_match,
 317                .pm     = SDHCI_PLTFM_PMOPS,
 318        },
 319        .probe          = sdhci_tegra_probe,
 320        .remove         = sdhci_pltfm_unregister,
 321};
 322
 323module_platform_driver(sdhci_tegra_driver);
 324
 325MODULE_DESCRIPTION("SDHCI driver for Tegra");
 326MODULE_AUTHOR("Google, Inc.");
 327MODULE_LICENSE("GPL v2");
 328