blob: a0a8b5cc3b0cdaa5886ff8b1504bb8dd9990261d [file] [log] [blame]
Olof Johansson03d2bfc2011-01-01 23:52:56 -05001/*
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>
Paul Gortmaker96547f52011-07-03 15:15:51 -040016#include <linux/module.h>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050017#include <linux/init.h>
18#include <linux/platform_device.h>
19#include <linux/clk.h>
20#include <linux/io.h>
Stephen Warren55cd65e2011-08-30 13:17:16 -060021#include <linux/of.h>
Stephen Warren3e44a1a2012-02-01 16:30:55 -070022#include <linux/of_device.h>
Grant Likely275173b2011-08-23 12:15:33 -060023#include <linux/of_gpio.h>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050024#include <linux/gpio.h>
25#include <linux/mmc/card.h>
26#include <linux/mmc/host.h>
Joseph Lo0aacd232013-03-11 14:44:11 -060027#include <linux/mmc/slot-gpio.h>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050028
Russell Kinge6b750d2011-07-26 10:59:32 +010029#include <asm/gpio.h>
Stephen Warrenea5abbd2011-09-26 19:00:02 +010030
Olof Johansson03d2bfc2011-01-01 23:52:56 -050031#include "sdhci-pltfm.h"
32
Pavan Kunapulica5879d2012-04-18 18:48:02 +053033/* Tegra SDHOST controller vendor register definitions */
34#define SDHCI_TEGRA_VENDOR_MISC_CTRL 0x120
35#define SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300 0x20
36
Stephen Warren3e44a1a2012-02-01 16:30:55 -070037#define NVQUIRK_FORCE_SDHCI_SPEC_200 BIT(0)
38#define NVQUIRK_ENABLE_BLOCK_GAP_DET BIT(1)
Pavan Kunapulica5879d2012-04-18 18:48:02 +053039#define NVQUIRK_ENABLE_SDHCI_SPEC_300 BIT(2)
Stephen Warren3e44a1a2012-02-01 16:30:55 -070040
41struct sdhci_tegra_soc_data {
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +010042 const struct sdhci_pltfm_data *pdata;
Stephen Warren3e44a1a2012-02-01 16:30:55 -070043 u32 nvquirks;
44};
45
46struct sdhci_tegra {
Stephen Warren3e44a1a2012-02-01 16:30:55 -070047 const struct sdhci_tegra_soc_data *soc_data;
Stephen Warren0e786102013-02-15 15:07:19 -070048 int power_gpio;
Stephen Warren3e44a1a2012-02-01 16:30:55 -070049};
50
Olof Johansson03d2bfc2011-01-01 23:52:56 -050051static u32 tegra_sdhci_readl(struct sdhci_host *host, int reg)
52{
53 u32 val;
54
55 if (unlikely(reg == SDHCI_PRESENT_STATE)) {
56 /* Use wp_gpio here instead? */
57 val = readl(host->ioaddr + reg);
58 return val | SDHCI_WRITE_PROTECT;
59 }
60
61 return readl(host->ioaddr + reg);
62}
63
64static u16 tegra_sdhci_readw(struct sdhci_host *host, int reg)
65{
Stephen Warren3e44a1a2012-02-01 16:30:55 -070066 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
67 struct sdhci_tegra *tegra_host = pltfm_host->priv;
68 const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
69
70 if (unlikely((soc_data->nvquirks & NVQUIRK_FORCE_SDHCI_SPEC_200) &&
71 (reg == SDHCI_HOST_VERSION))) {
Olof Johansson03d2bfc2011-01-01 23:52:56 -050072 /* Erratum: Version register is invalid in HW. */
73 return SDHCI_SPEC_200;
74 }
75
76 return readw(host->ioaddr + reg);
77}
78
79static void tegra_sdhci_writel(struct sdhci_host *host, u32 val, int reg)
80{
Stephen Warren3e44a1a2012-02-01 16:30:55 -070081 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
82 struct sdhci_tegra *tegra_host = pltfm_host->priv;
83 const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
84
Olof Johansson03d2bfc2011-01-01 23:52:56 -050085 /* Seems like we're getting spurious timeout and crc errors, so
86 * disable signalling of them. In case of real errors software
87 * timers should take care of eventually detecting them.
88 */
89 if (unlikely(reg == SDHCI_SIGNAL_ENABLE))
90 val &= ~(SDHCI_INT_TIMEOUT|SDHCI_INT_CRC);
91
92 writel(val, host->ioaddr + reg);
93
Stephen Warren3e44a1a2012-02-01 16:30:55 -070094 if (unlikely((soc_data->nvquirks & NVQUIRK_ENABLE_BLOCK_GAP_DET) &&
95 (reg == SDHCI_INT_ENABLE))) {
Olof Johansson03d2bfc2011-01-01 23:52:56 -050096 /* Erratum: Must enable block gap interrupt detection */
97 u8 gap_ctrl = readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
98 if (val & SDHCI_INT_CARD_INT)
99 gap_ctrl |= 0x8;
100 else
101 gap_ctrl &= ~0x8;
102 writeb(gap_ctrl, host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
103 }
104}
105
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700106static unsigned int tegra_sdhci_get_ro(struct sdhci_host *host)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500107{
Joseph Lo0aacd232013-03-11 14:44:11 -0600108 return mmc_gpio_get_ro(host->mmc);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500109}
110
Russell King03231f92014-04-25 12:57:12 +0100111static void tegra_sdhci_reset(struct sdhci_host *host, u8 mask)
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530112{
113 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
114 struct sdhci_tegra *tegra_host = pltfm_host->priv;
115 const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
116
Russell King03231f92014-04-25 12:57:12 +0100117 sdhci_reset(host, mask);
118
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530119 if (!(mask & SDHCI_RESET_ALL))
120 return;
121
122 /* Erratum: Enable SDHCI spec v3.00 support */
123 if (soc_data->nvquirks & NVQUIRK_ENABLE_SDHCI_SPEC_300) {
124 u32 misc_ctrl;
125
126 misc_ctrl = sdhci_readb(host, SDHCI_TEGRA_VENDOR_MISC_CTRL);
127 misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300;
128 sdhci_writeb(host, misc_ctrl, SDHCI_TEGRA_VENDOR_MISC_CTRL);
129 }
130}
131
Russell King2317f562014-04-25 12:57:07 +0100132static void tegra_sdhci_set_bus_width(struct sdhci_host *host, int bus_width)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500133{
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500134 u32 ctrl;
135
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500136 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Joseph Lo0aacd232013-03-11 14:44:11 -0600137 if ((host->mmc->caps & MMC_CAP_8_BIT_DATA) &&
138 (bus_width == MMC_BUS_WIDTH_8)) {
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500139 ctrl &= ~SDHCI_CTRL_4BITBUS;
140 ctrl |= SDHCI_CTRL_8BITBUS;
141 } else {
142 ctrl &= ~SDHCI_CTRL_8BITBUS;
143 if (bus_width == MMC_BUS_WIDTH_4)
144 ctrl |= SDHCI_CTRL_4BITBUS;
145 else
146 ctrl &= ~SDHCI_CTRL_4BITBUS;
147 }
148 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500149}
150
Lars-Peter Clausenc9155682013-03-13 19:26:05 +0100151static const struct sdhci_ops tegra_sdhci_ops = {
Shawn Guo85d65092011-05-27 23:48:12 +0800152 .get_ro = tegra_sdhci_get_ro,
153 .read_l = tegra_sdhci_readl,
154 .read_w = tegra_sdhci_readw,
155 .write_l = tegra_sdhci_writel,
Russell King17710592014-04-25 12:58:55 +0100156 .set_clock = sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100157 .set_bus_width = tegra_sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100158 .reset = tegra_sdhci_reset,
Shawn Guo85d65092011-05-27 23:48:12 +0800159};
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500160
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100161static const struct sdhci_pltfm_data sdhci_tegra20_pdata = {
Shawn Guo85d65092011-05-27 23:48:12 +0800162 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
163 SDHCI_QUIRK_SINGLE_POWER_WRITE |
164 SDHCI_QUIRK_NO_HISPD_BIT |
165 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC,
166 .ops = &tegra_sdhci_ops,
167};
168
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700169static struct sdhci_tegra_soc_data soc_data_tegra20 = {
170 .pdata = &sdhci_tegra20_pdata,
171 .nvquirks = NVQUIRK_FORCE_SDHCI_SPEC_200 |
172 NVQUIRK_ENABLE_BLOCK_GAP_DET,
173};
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700174
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100175static const struct sdhci_pltfm_data sdhci_tegra30_pdata = {
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700176 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
177 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
178 SDHCI_QUIRK_SINGLE_POWER_WRITE |
179 SDHCI_QUIRK_NO_HISPD_BIT |
180 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC,
181 .ops = &tegra_sdhci_ops,
182};
183
184static struct sdhci_tegra_soc_data soc_data_tegra30 = {
185 .pdata = &sdhci_tegra30_pdata,
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530186 .nvquirks = NVQUIRK_ENABLE_SDHCI_SPEC_300,
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700187};
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700188
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100189static const struct sdhci_pltfm_data sdhci_tegra114_pdata = {
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500190 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
191 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
192 SDHCI_QUIRK_SINGLE_POWER_WRITE |
193 SDHCI_QUIRK_NO_HISPD_BIT |
194 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC,
195 .ops = &tegra_sdhci_ops,
196};
197
198static struct sdhci_tegra_soc_data soc_data_tegra114 = {
199 .pdata = &sdhci_tegra114_pdata,
200};
201
Bill Pemberton498d83e2012-11-19 13:24:22 -0500202static const struct of_device_id sdhci_tegra_dt_match[] = {
Stephen Warren67debea2014-01-06 11:17:47 -0700203 { .compatible = "nvidia,tegra124-sdhci", .data = &soc_data_tegra114 },
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500204 { .compatible = "nvidia,tegra114-sdhci", .data = &soc_data_tegra114 },
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700205 { .compatible = "nvidia,tegra30-sdhci", .data = &soc_data_tegra30 },
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700206 { .compatible = "nvidia,tegra20-sdhci", .data = &soc_data_tegra20 },
Grant Likely275173b2011-08-23 12:15:33 -0600207 {}
208};
Arnd Bergmanne4404fa2013-04-23 15:05:57 -0400209MODULE_DEVICE_TABLE(of, sdhci_tegra_dt_match);
Grant Likely275173b2011-08-23 12:15:33 -0600210
Simon Baatz47caa842013-06-09 22:14:16 +0200211static int sdhci_tegra_parse_dt(struct device *dev)
Grant Likely275173b2011-08-23 12:15:33 -0600212{
Stephen Warren0e786102013-02-15 15:07:19 -0700213 struct device_node *np = dev->of_node;
Joseph Lo0aacd232013-03-11 14:44:11 -0600214 struct sdhci_host *host = dev_get_drvdata(dev);
215 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
216 struct sdhci_tegra *tegra_host = pltfm_host->priv;
Grant Likely275173b2011-08-23 12:15:33 -0600217
Stephen Warren0e786102013-02-15 15:07:19 -0700218 tegra_host->power_gpio = of_get_named_gpio(np, "power-gpios", 0);
Simon Baatz47caa842013-06-09 22:14:16 +0200219 return mmc_of_parse(host->mmc);
Grant Likely275173b2011-08-23 12:15:33 -0600220}
221
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500222static int sdhci_tegra_probe(struct platform_device *pdev)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500223{
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700224 const struct of_device_id *match;
225 const struct sdhci_tegra_soc_data *soc_data;
226 struct sdhci_host *host;
Shawn Guo85d65092011-05-27 23:48:12 +0800227 struct sdhci_pltfm_host *pltfm_host;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700228 struct sdhci_tegra *tegra_host;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500229 struct clk *clk;
230 int rc;
231
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700232 match = of_match_device(sdhci_tegra_dt_match, &pdev->dev);
Joseph Lob37f9d92012-08-17 15:04:31 +0800233 if (!match)
234 return -EINVAL;
235 soc_data = match->data;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700236
Christian Daudt0e748232013-05-29 13:50:05 -0700237 host = sdhci_pltfm_init(pdev, soc_data->pdata, 0);
Shawn Guo85d65092011-05-27 23:48:12 +0800238 if (IS_ERR(host))
239 return PTR_ERR(host);
Shawn Guo85d65092011-05-27 23:48:12 +0800240 pltfm_host = sdhci_priv(host);
241
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700242 tegra_host = devm_kzalloc(&pdev->dev, sizeof(*tegra_host), GFP_KERNEL);
243 if (!tegra_host) {
244 dev_err(mmc_dev(host->mmc), "failed to allocate tegra_host\n");
245 rc = -ENOMEM;
Stephen Warren0e786102013-02-15 15:07:19 -0700246 goto err_alloc_tegra_host;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700247 }
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700248 tegra_host->soc_data = soc_data;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700249 pltfm_host->priv = tegra_host;
Grant Likely275173b2011-08-23 12:15:33 -0600250
Simon Baatz47caa842013-06-09 22:14:16 +0200251 rc = sdhci_tegra_parse_dt(&pdev->dev);
252 if (rc)
253 goto err_parse_dt;
Stephen Warren0e786102013-02-15 15:07:19 -0700254
255 if (gpio_is_valid(tegra_host->power_gpio)) {
256 rc = gpio_request(tegra_host->power_gpio, "sdhci_power");
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500257 if (rc) {
258 dev_err(mmc_dev(host->mmc),
259 "failed to allocate power gpio\n");
Shawn Guo85d65092011-05-27 23:48:12 +0800260 goto err_power_req;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500261 }
Stephen Warren0e786102013-02-15 15:07:19 -0700262 gpio_direction_output(tegra_host->power_gpio, 1);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500263 }
264
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500265 clk = clk_get(mmc_dev(host->mmc), NULL);
266 if (IS_ERR(clk)) {
267 dev_err(mmc_dev(host->mmc), "clk err\n");
268 rc = PTR_ERR(clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800269 goto err_clk_get;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500270 }
Prashant Gaikwad1e674bc2012-06-05 09:59:37 +0530271 clk_prepare_enable(clk);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500272 pltfm_host->clk = clk;
273
Shawn Guo85d65092011-05-27 23:48:12 +0800274 rc = sdhci_add_host(host);
275 if (rc)
276 goto err_add_host;
277
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500278 return 0;
279
Shawn Guo85d65092011-05-27 23:48:12 +0800280err_add_host:
Prashant Gaikwad1e674bc2012-06-05 09:59:37 +0530281 clk_disable_unprepare(pltfm_host->clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800282 clk_put(pltfm_host->clk);
283err_clk_get:
Stephen Warren0e786102013-02-15 15:07:19 -0700284 if (gpio_is_valid(tegra_host->power_gpio))
285 gpio_free(tegra_host->power_gpio);
Shawn Guo85d65092011-05-27 23:48:12 +0800286err_power_req:
Simon Baatz47caa842013-06-09 22:14:16 +0200287err_parse_dt:
Stephen Warren0e786102013-02-15 15:07:19 -0700288err_alloc_tegra_host:
Shawn Guo85d65092011-05-27 23:48:12 +0800289 sdhci_pltfm_free(pdev);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500290 return rc;
291}
292
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500293static int sdhci_tegra_remove(struct platform_device *pdev)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500294{
Shawn Guo85d65092011-05-27 23:48:12 +0800295 struct sdhci_host *host = platform_get_drvdata(pdev);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500296 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700297 struct sdhci_tegra *tegra_host = pltfm_host->priv;
Shawn Guo85d65092011-05-27 23:48:12 +0800298 int dead = (readl(host->ioaddr + SDHCI_INT_STATUS) == 0xffffffff);
299
300 sdhci_remove_host(host, dead);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500301
Stephen Warren0e786102013-02-15 15:07:19 -0700302 if (gpio_is_valid(tegra_host->power_gpio))
303 gpio_free(tegra_host->power_gpio);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500304
Prashant Gaikwad1e674bc2012-06-05 09:59:37 +0530305 clk_disable_unprepare(pltfm_host->clk);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500306 clk_put(pltfm_host->clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800307
308 sdhci_pltfm_free(pdev);
309
310 return 0;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500311}
312
Shawn Guo85d65092011-05-27 23:48:12 +0800313static struct platform_driver sdhci_tegra_driver = {
314 .driver = {
315 .name = "sdhci-tegra",
316 .owner = THIS_MODULE,
Grant Likely275173b2011-08-23 12:15:33 -0600317 .of_match_table = sdhci_tegra_dt_match,
Manuel Lauss29495aa2011-11-03 11:09:45 +0100318 .pm = SDHCI_PLTFM_PMOPS,
Shawn Guo85d65092011-05-27 23:48:12 +0800319 },
320 .probe = sdhci_tegra_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -0500321 .remove = sdhci_tegra_remove,
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500322};
323
Axel Lind1f81a62011-11-26 12:55:43 +0800324module_platform_driver(sdhci_tegra_driver);
Shawn Guo85d65092011-05-27 23:48:12 +0800325
326MODULE_DESCRIPTION("SDHCI driver for Tegra");
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700327MODULE_AUTHOR("Google, Inc.");
Shawn Guo85d65092011-05-27 23:48:12 +0800328MODULE_LICENSE("GPL v2");