blob: 79c2a2b7428a841d4c9332f7da24c7631f7fda29 [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>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050023#include <linux/mmc/card.h>
24#include <linux/mmc/host.h>
Lucas Stachc3c23842015-12-22 19:41:02 +010025#include <linux/mmc/mmc.h>
Joseph Lo0aacd232013-03-11 14:44:11 -060026#include <linux/mmc/slot-gpio.h>
Mylene JOSSERAND2391b342015-03-30 23:39:25 +020027#include <linux/gpio/consumer.h>
Olof Johansson03d2bfc2011-01-01 23:52:56 -050028
Olof Johansson03d2bfc2011-01-01 23:52:56 -050029#include "sdhci-pltfm.h"
30
Pavan Kunapulica5879d2012-04-18 18:48:02 +053031/* Tegra SDHOST controller vendor register definitions */
Lucas Stach74cd42b2015-12-22 19:41:01 +010032#define SDHCI_TEGRA_VENDOR_CLOCK_CTRL 0x100
Lucas Stachc3c23842015-12-22 19:41:02 +010033#define SDHCI_CLOCK_CTRL_TAP_MASK 0x00ff0000
34#define SDHCI_CLOCK_CTRL_TAP_SHIFT 16
35#define SDHCI_CLOCK_CTRL_SDR50_TUNING_OVERRIDE BIT(5)
Lucas Stach74cd42b2015-12-22 19:41:01 +010036#define SDHCI_CLOCK_CTRL_PADPIPE_CLKEN_OVERRIDE BIT(3)
37#define SDHCI_CLOCK_CTRL_SPI_MODE_CLKEN_OVERRIDE BIT(2)
38
Pavan Kunapulica5879d2012-04-18 18:48:02 +053039#define SDHCI_TEGRA_VENDOR_MISC_CTRL 0x120
Andrew Bresticker31453512014-05-22 08:55:35 -070040#define SDHCI_MISC_CTRL_ENABLE_SDR104 0x8
41#define SDHCI_MISC_CTRL_ENABLE_SDR50 0x10
Pavan Kunapulica5879d2012-04-18 18:48:02 +053042#define SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300 0x20
Andrew Bresticker31453512014-05-22 08:55:35 -070043#define SDHCI_MISC_CTRL_ENABLE_DDR50 0x200
Pavan Kunapulica5879d2012-04-18 18:48:02 +053044
Stephen Warren3e44a1a2012-02-01 16:30:55 -070045#define NVQUIRK_FORCE_SDHCI_SPEC_200 BIT(0)
46#define NVQUIRK_ENABLE_BLOCK_GAP_DET BIT(1)
Pavan Kunapulica5879d2012-04-18 18:48:02 +053047#define NVQUIRK_ENABLE_SDHCI_SPEC_300 BIT(2)
Lucas Stach7ad2ed12015-12-22 19:41:03 +010048#define NVQUIRK_ENABLE_SDR50 BIT(3)
49#define NVQUIRK_ENABLE_SDR104 BIT(4)
50#define NVQUIRK_ENABLE_DDR50 BIT(5)
Stephen Warren3e44a1a2012-02-01 16:30:55 -070051
52struct sdhci_tegra_soc_data {
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +010053 const struct sdhci_pltfm_data *pdata;
Stephen Warren3e44a1a2012-02-01 16:30:55 -070054 u32 nvquirks;
55};
56
57struct sdhci_tegra {
Stephen Warren3e44a1a2012-02-01 16:30:55 -070058 const struct sdhci_tegra_soc_data *soc_data;
Mylene JOSSERAND2391b342015-03-30 23:39:25 +020059 struct gpio_desc *power_gpio;
Lucas Stacha8e326a2015-12-22 19:41:00 +010060 bool ddr_signaling;
Stephen Warren3e44a1a2012-02-01 16:30:55 -070061};
62
Olof Johansson03d2bfc2011-01-01 23:52:56 -050063static u16 tegra_sdhci_readw(struct sdhci_host *host, int reg)
64{
Stephen Warren3e44a1a2012-02-01 16:30:55 -070065 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang0734e792016-02-16 21:08:29 +080066 struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host);
Stephen Warren3e44a1a2012-02-01 16:30:55 -070067 const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
68
69 if (unlikely((soc_data->nvquirks & NVQUIRK_FORCE_SDHCI_SPEC_200) &&
70 (reg == SDHCI_HOST_VERSION))) {
Olof Johansson03d2bfc2011-01-01 23:52:56 -050071 /* Erratum: Version register is invalid in HW. */
72 return SDHCI_SPEC_200;
73 }
74
75 return readw(host->ioaddr + reg);
76}
77
Pavan Kunapuli352ee862015-01-28 11:45:16 -050078static void tegra_sdhci_writew(struct sdhci_host *host, u16 val, int reg)
79{
80 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Pavan Kunapuli352ee862015-01-28 11:45:16 -050081
Rhyland Klein01df7ec2015-02-11 12:55:51 -050082 switch (reg) {
83 case SDHCI_TRANSFER_MODE:
84 /*
85 * Postpone this write, we must do it together with a
86 * command write that is down below.
87 */
88 pltfm_host->xfer_mode_shadow = val;
89 return;
90 case SDHCI_COMMAND:
91 writel((val << 16) | pltfm_host->xfer_mode_shadow,
92 host->ioaddr + SDHCI_TRANSFER_MODE);
93 return;
Pavan Kunapuli352ee862015-01-28 11:45:16 -050094 }
95
96 writew(val, host->ioaddr + reg);
97}
98
Olof Johansson03d2bfc2011-01-01 23:52:56 -050099static void tegra_sdhci_writel(struct sdhci_host *host, u32 val, int reg)
100{
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700101 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang0734e792016-02-16 21:08:29 +0800102 struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host);
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700103 const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
104
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500105 /* Seems like we're getting spurious timeout and crc errors, so
106 * disable signalling of them. In case of real errors software
107 * timers should take care of eventually detecting them.
108 */
109 if (unlikely(reg == SDHCI_SIGNAL_ENABLE))
110 val &= ~(SDHCI_INT_TIMEOUT|SDHCI_INT_CRC);
111
112 writel(val, host->ioaddr + reg);
113
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700114 if (unlikely((soc_data->nvquirks & NVQUIRK_ENABLE_BLOCK_GAP_DET) &&
115 (reg == SDHCI_INT_ENABLE))) {
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500116 /* Erratum: Must enable block gap interrupt detection */
117 u8 gap_ctrl = readb(host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
118 if (val & SDHCI_INT_CARD_INT)
119 gap_ctrl |= 0x8;
120 else
121 gap_ctrl &= ~0x8;
122 writeb(gap_ctrl, host->ioaddr + SDHCI_BLOCK_GAP_CONTROL);
123 }
124}
125
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700126static unsigned int tegra_sdhci_get_ro(struct sdhci_host *host)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500127{
Joseph Lo0aacd232013-03-11 14:44:11 -0600128 return mmc_gpio_get_ro(host->mmc);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500129}
130
Russell King03231f92014-04-25 12:57:12 +0100131static void tegra_sdhci_reset(struct sdhci_host *host, u8 mask)
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530132{
133 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang0734e792016-02-16 21:08:29 +0800134 struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host);
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530135 const struct sdhci_tegra_soc_data *soc_data = tegra_host->soc_data;
Lucas Stach74cd42b2015-12-22 19:41:01 +0100136 u32 misc_ctrl, clk_ctrl;
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530137
Russell King03231f92014-04-25 12:57:12 +0100138 sdhci_reset(host, mask);
139
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530140 if (!(mask & SDHCI_RESET_ALL))
141 return;
142
Lucas Stach1b84def2015-12-22 19:41:04 +0100143 misc_ctrl = sdhci_readl(host, SDHCI_TEGRA_VENDOR_MISC_CTRL);
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530144 /* Erratum: Enable SDHCI spec v3.00 support */
Andrew Bresticker31453512014-05-22 08:55:35 -0700145 if (soc_data->nvquirks & NVQUIRK_ENABLE_SDHCI_SPEC_300)
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530146 misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300;
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100147 /* Advertise UHS modes as supported by host */
148 if (soc_data->nvquirks & NVQUIRK_ENABLE_SDR50)
149 misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDR50;
Jon Hunter7bf037d2016-02-26 09:34:17 +0000150 else
151 misc_ctrl &= ~SDHCI_MISC_CTRL_ENABLE_SDR50;
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100152 if (soc_data->nvquirks & NVQUIRK_ENABLE_DDR50)
153 misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_DDR50;
Jon Hunter7bf037d2016-02-26 09:34:17 +0000154 else
155 misc_ctrl &= ~SDHCI_MISC_CTRL_ENABLE_DDR50;
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100156 if (soc_data->nvquirks & NVQUIRK_ENABLE_SDR104)
157 misc_ctrl |= SDHCI_MISC_CTRL_ENABLE_SDR104;
Jon Hunter7bf037d2016-02-26 09:34:17 +0000158 else
159 misc_ctrl &= ~SDHCI_MISC_CTRL_ENABLE_SDR104;
Lucas Stach1b84def2015-12-22 19:41:04 +0100160 sdhci_writel(host, misc_ctrl, SDHCI_TEGRA_VENDOR_MISC_CTRL);
Lucas Stacha8e326a2015-12-22 19:41:00 +0100161
Lucas Stach74cd42b2015-12-22 19:41:01 +0100162 clk_ctrl = sdhci_readl(host, SDHCI_TEGRA_VENDOR_CLOCK_CTRL);
163 clk_ctrl &= ~SDHCI_CLOCK_CTRL_SPI_MODE_CLKEN_OVERRIDE;
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100164 if (soc_data->nvquirks & SDHCI_MISC_CTRL_ENABLE_SDR50)
Lucas Stachc3c23842015-12-22 19:41:02 +0100165 clk_ctrl |= SDHCI_CLOCK_CTRL_SDR50_TUNING_OVERRIDE;
Lucas Stach74cd42b2015-12-22 19:41:01 +0100166 sdhci_writel(host, clk_ctrl, SDHCI_TEGRA_VENDOR_CLOCK_CTRL);
167
Lucas Stacha8e326a2015-12-22 19:41:00 +0100168 tegra_host->ddr_signaling = false;
Pavan Kunapulica5879d2012-04-18 18:48:02 +0530169}
170
Russell King2317f562014-04-25 12:57:07 +0100171static void tegra_sdhci_set_bus_width(struct sdhci_host *host, int bus_width)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500172{
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500173 u32 ctrl;
174
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500175 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
Joseph Lo0aacd232013-03-11 14:44:11 -0600176 if ((host->mmc->caps & MMC_CAP_8_BIT_DATA) &&
177 (bus_width == MMC_BUS_WIDTH_8)) {
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500178 ctrl &= ~SDHCI_CTRL_4BITBUS;
179 ctrl |= SDHCI_CTRL_8BITBUS;
180 } else {
181 ctrl &= ~SDHCI_CTRL_8BITBUS;
182 if (bus_width == MMC_BUS_WIDTH_4)
183 ctrl |= SDHCI_CTRL_4BITBUS;
184 else
185 ctrl &= ~SDHCI_CTRL_4BITBUS;
186 }
187 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500188}
189
Lucas Stacha8e326a2015-12-22 19:41:00 +0100190static void tegra_sdhci_set_clock(struct sdhci_host *host, unsigned int clock)
191{
192 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang0734e792016-02-16 21:08:29 +0800193 struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host);
Lucas Stacha8e326a2015-12-22 19:41:00 +0100194 unsigned long host_clk;
195
196 if (!clock)
Lucas Stach3491b692016-02-29 21:56:24 +0100197 return sdhci_set_clock(host, clock);
Lucas Stacha8e326a2015-12-22 19:41:00 +0100198
199 host_clk = tegra_host->ddr_signaling ? clock * 2 : clock;
200 clk_set_rate(pltfm_host->clk, host_clk);
201 host->max_clk = clk_get_rate(pltfm_host->clk);
202
203 return sdhci_set_clock(host, clock);
204}
205
206static void tegra_sdhci_set_uhs_signaling(struct sdhci_host *host,
207 unsigned timing)
208{
209 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
Jisheng Zhang0734e792016-02-16 21:08:29 +0800210 struct sdhci_tegra *tegra_host = sdhci_pltfm_priv(pltfm_host);
Lucas Stacha8e326a2015-12-22 19:41:00 +0100211
212 if (timing == MMC_TIMING_UHS_DDR50)
213 tegra_host->ddr_signaling = true;
214
215 return sdhci_set_uhs_signaling(host, timing);
216}
217
218static unsigned int tegra_sdhci_get_max_clock(struct sdhci_host *host)
219{
220 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
221
222 /*
223 * DDR modes require the host to run at double the card frequency, so
224 * the maximum rate we can support is half of the module input clock.
225 */
226 return clk_round_rate(pltfm_host->clk, UINT_MAX) / 2;
227}
228
Lucas Stachc3c23842015-12-22 19:41:02 +0100229static void tegra_sdhci_set_tap(struct sdhci_host *host, unsigned int tap)
230{
231 u32 reg;
232
233 reg = sdhci_readl(host, SDHCI_TEGRA_VENDOR_CLOCK_CTRL);
234 reg &= ~SDHCI_CLOCK_CTRL_TAP_MASK;
235 reg |= tap << SDHCI_CLOCK_CTRL_TAP_SHIFT;
236 sdhci_writel(host, reg, SDHCI_TEGRA_VENDOR_CLOCK_CTRL);
237}
238
239static int tegra_sdhci_execute_tuning(struct sdhci_host *host, u32 opcode)
240{
241 unsigned int min, max;
242
243 /*
244 * Start search for minimum tap value at 10, as smaller values are
245 * may wrongly be reported as working but fail at higher speeds,
246 * according to the TRM.
247 */
248 min = 10;
249 while (min < 255) {
250 tegra_sdhci_set_tap(host, min);
251 if (!mmc_send_tuning(host->mmc, opcode, NULL))
252 break;
253 min++;
254 }
255
256 /* Find the maximum tap value that still passes. */
257 max = min + 1;
258 while (max < 255) {
259 tegra_sdhci_set_tap(host, max);
260 if (mmc_send_tuning(host->mmc, opcode, NULL)) {
261 max--;
262 break;
263 }
264 max++;
265 }
266
267 /* The TRM states the ideal tap value is at 75% in the passing range. */
268 tegra_sdhci_set_tap(host, min + ((max - min) * 3 / 4));
269
270 return mmc_send_tuning(host->mmc, opcode, NULL);
271}
272
Lars-Peter Clausenc9155682013-03-13 19:26:05 +0100273static const struct sdhci_ops tegra_sdhci_ops = {
Shawn Guo85d65092011-05-27 23:48:12 +0800274 .get_ro = tegra_sdhci_get_ro,
Shawn Guo85d65092011-05-27 23:48:12 +0800275 .read_w = tegra_sdhci_readw,
276 .write_l = tegra_sdhci_writel,
Lucas Stacha8e326a2015-12-22 19:41:00 +0100277 .set_clock = tegra_sdhci_set_clock,
Russell King2317f562014-04-25 12:57:07 +0100278 .set_bus_width = tegra_sdhci_set_bus_width,
Russell King03231f92014-04-25 12:57:12 +0100279 .reset = tegra_sdhci_reset,
Lucas Stachc3c23842015-12-22 19:41:02 +0100280 .platform_execute_tuning = tegra_sdhci_execute_tuning,
Lucas Stacha8e326a2015-12-22 19:41:00 +0100281 .set_uhs_signaling = tegra_sdhci_set_uhs_signaling,
282 .get_max_clock = tegra_sdhci_get_max_clock,
Shawn Guo85d65092011-05-27 23:48:12 +0800283};
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500284
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100285static const struct sdhci_pltfm_data sdhci_tegra20_pdata = {
Shawn Guo85d65092011-05-27 23:48:12 +0800286 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
287 SDHCI_QUIRK_SINGLE_POWER_WRITE |
288 SDHCI_QUIRK_NO_HISPD_BIT |
Andrew Brestickerf9260352014-05-22 08:55:36 -0700289 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
290 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
Shawn Guo85d65092011-05-27 23:48:12 +0800291 .ops = &tegra_sdhci_ops,
292};
293
Thierry Redingd49d19c22015-11-16 10:27:14 +0100294static const struct sdhci_tegra_soc_data soc_data_tegra20 = {
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700295 .pdata = &sdhci_tegra20_pdata,
296 .nvquirks = NVQUIRK_FORCE_SDHCI_SPEC_200 |
297 NVQUIRK_ENABLE_BLOCK_GAP_DET,
298};
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700299
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100300static const struct sdhci_pltfm_data sdhci_tegra30_pdata = {
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700301 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
302 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
303 SDHCI_QUIRK_SINGLE_POWER_WRITE |
304 SDHCI_QUIRK_NO_HISPD_BIT |
Andrew Brestickerf9260352014-05-22 08:55:36 -0700305 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
306 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
Lucas Stacha8e326a2015-12-22 19:41:00 +0100307 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700308 .ops = &tegra_sdhci_ops,
309};
310
Thierry Redingd49d19c22015-11-16 10:27:14 +0100311static const struct sdhci_tegra_soc_data soc_data_tegra30 = {
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700312 .pdata = &sdhci_tegra30_pdata,
Andrew Bresticker31453512014-05-22 08:55:35 -0700313 .nvquirks = NVQUIRK_ENABLE_SDHCI_SPEC_300 |
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100314 NVQUIRK_ENABLE_SDR50 |
315 NVQUIRK_ENABLE_SDR104,
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700316};
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700317
Rhyland Klein01df7ec2015-02-11 12:55:51 -0500318static const struct sdhci_ops tegra114_sdhci_ops = {
319 .get_ro = tegra_sdhci_get_ro,
320 .read_w = tegra_sdhci_readw,
321 .write_w = tegra_sdhci_writew,
322 .write_l = tegra_sdhci_writel,
Lucas Stacha8e326a2015-12-22 19:41:00 +0100323 .set_clock = tegra_sdhci_set_clock,
Rhyland Klein01df7ec2015-02-11 12:55:51 -0500324 .set_bus_width = tegra_sdhci_set_bus_width,
325 .reset = tegra_sdhci_reset,
Lucas Stachc3c23842015-12-22 19:41:02 +0100326 .platform_execute_tuning = tegra_sdhci_execute_tuning,
Lucas Stacha8e326a2015-12-22 19:41:00 +0100327 .set_uhs_signaling = tegra_sdhci_set_uhs_signaling,
328 .get_max_clock = tegra_sdhci_get_max_clock,
Rhyland Klein01df7ec2015-02-11 12:55:51 -0500329};
330
Lars-Peter Clausen1db5eeb2013-03-13 19:26:03 +0100331static const struct sdhci_pltfm_data sdhci_tegra114_pdata = {
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500332 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
333 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
334 SDHCI_QUIRK_SINGLE_POWER_WRITE |
335 SDHCI_QUIRK_NO_HISPD_BIT |
Andrew Brestickerf9260352014-05-22 08:55:36 -0700336 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
337 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
Lucas Stacha8e326a2015-12-22 19:41:00 +0100338 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Rhyland Klein01df7ec2015-02-11 12:55:51 -0500339 .ops = &tegra114_sdhci_ops,
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500340};
341
Thierry Redingd49d19c22015-11-16 10:27:14 +0100342static const struct sdhci_tegra_soc_data soc_data_tegra114 = {
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500343 .pdata = &sdhci_tegra114_pdata,
Jon Hunter7bf037d2016-02-26 09:34:17 +0000344};
345
346static const struct sdhci_tegra_soc_data soc_data_tegra124 = {
347 .pdata = &sdhci_tegra114_pdata,
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100348 .nvquirks = NVQUIRK_ENABLE_SDR50 |
349 NVQUIRK_ENABLE_DDR50 |
350 NVQUIRK_ENABLE_SDR104,
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500351};
352
Thierry Redingb5a84ec2015-11-16 10:27:15 +0100353static const struct sdhci_pltfm_data sdhci_tegra210_pdata = {
354 .quirks = SDHCI_QUIRK_BROKEN_TIMEOUT_VAL |
355 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
356 SDHCI_QUIRK_SINGLE_POWER_WRITE |
357 SDHCI_QUIRK_NO_HISPD_BIT |
Lucas Stacha8e326a2015-12-22 19:41:00 +0100358 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC |
359 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN,
360 .quirks2 = SDHCI_QUIRK2_PRESET_VALUE_BROKEN,
Thierry Redingb5a84ec2015-11-16 10:27:15 +0100361 .ops = &tegra114_sdhci_ops,
362};
363
364static const struct sdhci_tegra_soc_data soc_data_tegra210 = {
365 .pdata = &sdhci_tegra210_pdata,
Thierry Redingb5a84ec2015-11-16 10:27:15 +0100366};
367
Bill Pemberton498d83e2012-11-19 13:24:22 -0500368static const struct of_device_id sdhci_tegra_dt_match[] = {
Thierry Redingb5a84ec2015-11-16 10:27:15 +0100369 { .compatible = "nvidia,tegra210-sdhci", .data = &soc_data_tegra210 },
Jon Hunter7bf037d2016-02-26 09:34:17 +0000370 { .compatible = "nvidia,tegra124-sdhci", .data = &soc_data_tegra124 },
Rhyland Klein5ebf2552013-02-20 13:35:17 -0500371 { .compatible = "nvidia,tegra114-sdhci", .data = &soc_data_tegra114 },
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700372 { .compatible = "nvidia,tegra30-sdhci", .data = &soc_data_tegra30 },
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700373 { .compatible = "nvidia,tegra20-sdhci", .data = &soc_data_tegra20 },
Grant Likely275173b2011-08-23 12:15:33 -0600374 {}
375};
Arnd Bergmanne4404fa2013-04-23 15:05:57 -0400376MODULE_DEVICE_TABLE(of, sdhci_tegra_dt_match);
Grant Likely275173b2011-08-23 12:15:33 -0600377
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500378static int sdhci_tegra_probe(struct platform_device *pdev)
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500379{
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700380 const struct of_device_id *match;
381 const struct sdhci_tegra_soc_data *soc_data;
382 struct sdhci_host *host;
Shawn Guo85d65092011-05-27 23:48:12 +0800383 struct sdhci_pltfm_host *pltfm_host;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700384 struct sdhci_tegra *tegra_host;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500385 struct clk *clk;
386 int rc;
387
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700388 match = of_match_device(sdhci_tegra_dt_match, &pdev->dev);
Joseph Lob37f9d92012-08-17 15:04:31 +0800389 if (!match)
390 return -EINVAL;
391 soc_data = match->data;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700392
Jisheng Zhang0734e792016-02-16 21:08:29 +0800393 host = sdhci_pltfm_init(pdev, soc_data->pdata, sizeof(*tegra_host));
Shawn Guo85d65092011-05-27 23:48:12 +0800394 if (IS_ERR(host))
395 return PTR_ERR(host);
Shawn Guo85d65092011-05-27 23:48:12 +0800396 pltfm_host = sdhci_priv(host);
397
Jisheng Zhang0734e792016-02-16 21:08:29 +0800398 tegra_host = sdhci_pltfm_priv(pltfm_host);
Lucas Stacha8e326a2015-12-22 19:41:00 +0100399 tegra_host->ddr_signaling = false;
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700400 tegra_host->soc_data = soc_data;
Grant Likely275173b2011-08-23 12:15:33 -0600401
Mylene JOSSERAND2391b342015-03-30 23:39:25 +0200402 rc = mmc_of_parse(host->mmc);
Simon Baatz47caa842013-06-09 22:14:16 +0200403 if (rc)
404 goto err_parse_dt;
Stephen Warren0e786102013-02-15 15:07:19 -0700405
Lucas Stach7ad2ed12015-12-22 19:41:03 +0100406 if (tegra_host->soc_data->nvquirks & NVQUIRK_ENABLE_DDR50)
Lucas Stachc3c23842015-12-22 19:41:02 +0100407 host->mmc->caps |= MMC_CAP_1_8V_DDR;
408
Mylene JOSSERAND2391b342015-03-30 23:39:25 +0200409 tegra_host->power_gpio = devm_gpiod_get_optional(&pdev->dev, "power",
410 GPIOD_OUT_HIGH);
411 if (IS_ERR(tegra_host->power_gpio)) {
412 rc = PTR_ERR(tegra_host->power_gpio);
413 goto err_power_req;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500414 }
415
Kevin Haoe4f79d92015-02-27 15:47:27 +0800416 clk = devm_clk_get(mmc_dev(host->mmc), NULL);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500417 if (IS_ERR(clk)) {
418 dev_err(mmc_dev(host->mmc), "clk err\n");
419 rc = PTR_ERR(clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800420 goto err_clk_get;
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500421 }
Prashant Gaikwad1e674bc2012-06-05 09:59:37 +0530422 clk_prepare_enable(clk);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500423 pltfm_host->clk = clk;
424
Shawn Guo85d65092011-05-27 23:48:12 +0800425 rc = sdhci_add_host(host);
426 if (rc)
427 goto err_add_host;
428
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500429 return 0;
430
Shawn Guo85d65092011-05-27 23:48:12 +0800431err_add_host:
Prashant Gaikwad1e674bc2012-06-05 09:59:37 +0530432 clk_disable_unprepare(pltfm_host->clk);
Shawn Guo85d65092011-05-27 23:48:12 +0800433err_clk_get:
Shawn Guo85d65092011-05-27 23:48:12 +0800434err_power_req:
Simon Baatz47caa842013-06-09 22:14:16 +0200435err_parse_dt:
Shawn Guo85d65092011-05-27 23:48:12 +0800436 sdhci_pltfm_free(pdev);
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500437 return rc;
438}
439
Shawn Guo85d65092011-05-27 23:48:12 +0800440static struct platform_driver sdhci_tegra_driver = {
441 .driver = {
442 .name = "sdhci-tegra",
Grant Likely275173b2011-08-23 12:15:33 -0600443 .of_match_table = sdhci_tegra_dt_match,
Manuel Lauss29495aa2011-11-03 11:09:45 +0100444 .pm = SDHCI_PLTFM_PMOPS,
Shawn Guo85d65092011-05-27 23:48:12 +0800445 },
446 .probe = sdhci_tegra_probe,
Kevin Haocaebcae2015-02-27 15:47:31 +0800447 .remove = sdhci_pltfm_unregister,
Olof Johansson03d2bfc2011-01-01 23:52:56 -0500448};
449
Axel Lind1f81a62011-11-26 12:55:43 +0800450module_platform_driver(sdhci_tegra_driver);
Shawn Guo85d65092011-05-27 23:48:12 +0800451
452MODULE_DESCRIPTION("SDHCI driver for Tegra");
Stephen Warren3e44a1a2012-02-01 16:30:55 -0700453MODULE_AUTHOR("Google, Inc.");
Shawn Guo85d65092011-05-27 23:48:12 +0800454MODULE_LICENSE("GPL v2");