2 * Copyright (C) 2010 Google, Inc.
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.
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.
15 #include <linux/delay.h>
16 #include <linux/err.h>
17 #include <linux/module.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/clk.h>
23 #include <linux/of_device.h>
24 #include <linux/mmc/card.h>
25 #include <linux/mmc/host.h>
26 #include <linux/mmc/mmc.h>
27 #include <linux/mmc/slot-gpio.h>
28 #include <linux/gpio/consumer.h>
30 #include "sdhci-pltfm.h"
32 /* Tegra SDHOST controller vendor register definitions */
33 #define SDHCI_TEGRA_VENDOR_CLOCK_CTRL 0x100
34 #define SDHCI_CLOCK_CTRL_TAP_MASK 0x00ff0000
35 #define SDHCI_CLOCK_CTRL_TAP_SHIFT 16
36 #define SDHCI_CLOCK_CTRL_SDR50_TUNING_OVERRIDE BIT(5)
37 #define SDHCI_CLOCK_CTRL_PADPIPE_CLKEN_OVERRIDE BIT(3)
38 #define SDHCI_CLOCK_CTRL_SPI_MODE_CLKEN_OVERRIDE BIT(2)
40 #define SDHCI_TEGRA_VENDOR_MISC_CTRL 0x120
41 #define SDHCI_MISC_CTRL_ENABLE_SDR104 0x8
42 #define SDHCI_MISC_CTRL_ENABLE_SDR50 0x10
43 #define SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300 0x20
44 #define SDHCI_MISC_CTRL_ENABLE_DDR50 0x200
46 #define SDHCI_TEGRA_AUTO_CAL_CONFIG 0x1e4
47 #define SDHCI_AUTO_CAL_START BIT(31)
48 #define SDHCI_AUTO_CAL_ENABLE BIT(29)
50 #define NVQUIRK_FORCE_SDHCI_SPEC_200 BIT(0)
51 #define NVQUIRK_ENABLE_BLOCK_GAP_DET BIT(1)
52 #define NVQUIRK_ENABLE_SDHCI_SPEC_300 BIT(2)
53 #define NVQUIRK_ENABLE_SDR50 BIT(3)
54 #define NVQUIRK_ENABLE_SDR104 BIT(4)
55 #define NVQUIRK_ENABLE_DDR50 BIT(5)
56 #define NVQUIRK_HAS_PADCALIB BIT(6)
58 struct sdhci_tegra_soc_data
{
59 const struct sdhci_pltfm_data
*pdata
;
64 const struct sdhci_tegra_soc_data
*soc_data
;
65 struct gpio_desc
*power_gpio
;
67 bool pad_calib_required
;
70 static u16
tegra_sdhci_readw(struct sdhci_host
*host
, int reg
)
72 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
73 struct sdhci_tegra
*tegra_host
= sdhci_pltfm_priv(pltfm_host
);
74 const struct sdhci_tegra_soc_data
*soc_data
= tegra_host
->soc_data
;
76 if (unlikely((soc_data
->nvquirks
& NVQUIRK_FORCE_SDHCI_SPEC_200
) &&
77 (reg
== SDHCI_HOST_VERSION
))) {
78 /* Erratum: Version register is invalid in HW. */
79 return SDHCI_SPEC_200
;
82 return readw(host
->ioaddr
+ reg
);
85 static void tegra_sdhci_writew(struct sdhci_host
*host
, u16 val
, int reg
)
87 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
90 case SDHCI_TRANSFER_MODE
:
92 * Postpone this write, we must do it together with a
93 * command write that is down below.
95 pltfm_host
->xfer_mode_shadow
= val
;
98 writel((val
<< 16) | pltfm_host
->xfer_mode_shadow
,
99 host
->ioaddr
+ SDHCI_TRANSFER_MODE
);
103 writew(val
, host
->ioaddr
+ reg
);
106 static void tegra_sdhci_writel(struct sdhci_host
*host
, u32 val
, int reg
)
108 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
109 struct sdhci_tegra
*tegra_host
= sdhci_pltfm_priv(pltfm_host
);
110 const struct sdhci_tegra_soc_data
*soc_data
= tegra_host
->soc_data
;
112 /* Seems like we're getting spurious timeout and crc errors, so
113 * disable signalling of them. In case of real errors software
114 * timers should take care of eventually detecting them.
116 if (unlikely(reg
== SDHCI_SIGNAL_ENABLE
))
117 val
&= ~(SDHCI_INT_TIMEOUT
|SDHCI_INT_CRC
);
119 writel(val
, host
->ioaddr
+ reg
);
121 if (unlikely((soc_data
->nvquirks
& NVQUIRK_ENABLE_BLOCK_GAP_DET
) &&
122 (reg
== SDHCI_INT_ENABLE
))) {
123 /* Erratum: Must enable block gap interrupt detection */
124 u8 gap_ctrl
= readb(host
->ioaddr
+ SDHCI_BLOCK_GAP_CONTROL
);
125 if (val
& SDHCI_INT_CARD_INT
)
129 writeb(gap_ctrl
, host
->ioaddr
+ SDHCI_BLOCK_GAP_CONTROL
);
133 static unsigned int tegra_sdhci_get_ro(struct sdhci_host
*host
)
135 return mmc_gpio_get_ro(host
->mmc
);
138 static void tegra_sdhci_reset(struct sdhci_host
*host
, u8 mask
)
140 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
141 struct sdhci_tegra
*tegra_host
= sdhci_pltfm_priv(pltfm_host
);
142 const struct sdhci_tegra_soc_data
*soc_data
= tegra_host
->soc_data
;
143 u32 misc_ctrl
, clk_ctrl
;
145 sdhci_reset(host
, mask
);
147 if (!(mask
& SDHCI_RESET_ALL
))
150 misc_ctrl
= sdhci_readl(host
, SDHCI_TEGRA_VENDOR_MISC_CTRL
);
151 /* Erratum: Enable SDHCI spec v3.00 support */
152 if (soc_data
->nvquirks
& NVQUIRK_ENABLE_SDHCI_SPEC_300
)
153 misc_ctrl
|= SDHCI_MISC_CTRL_ENABLE_SDHCI_SPEC_300
;
154 /* Advertise UHS modes as supported by host */
155 if (soc_data
->nvquirks
& NVQUIRK_ENABLE_SDR50
)
156 misc_ctrl
|= SDHCI_MISC_CTRL_ENABLE_SDR50
;
158 misc_ctrl
&= ~SDHCI_MISC_CTRL_ENABLE_SDR50
;
159 if (soc_data
->nvquirks
& NVQUIRK_ENABLE_DDR50
)
160 misc_ctrl
|= SDHCI_MISC_CTRL_ENABLE_DDR50
;
162 misc_ctrl
&= ~SDHCI_MISC_CTRL_ENABLE_DDR50
;
163 if (soc_data
->nvquirks
& NVQUIRK_ENABLE_SDR104
)
164 misc_ctrl
|= SDHCI_MISC_CTRL_ENABLE_SDR104
;
166 misc_ctrl
&= ~SDHCI_MISC_CTRL_ENABLE_SDR104
;
167 sdhci_writel(host
, misc_ctrl
, SDHCI_TEGRA_VENDOR_MISC_CTRL
);
169 clk_ctrl
= sdhci_readl(host
, SDHCI_TEGRA_VENDOR_CLOCK_CTRL
);
170 clk_ctrl
&= ~SDHCI_CLOCK_CTRL_SPI_MODE_CLKEN_OVERRIDE
;
171 if (soc_data
->nvquirks
& SDHCI_MISC_CTRL_ENABLE_SDR50
)
172 clk_ctrl
|= SDHCI_CLOCK_CTRL_SDR50_TUNING_OVERRIDE
;
173 sdhci_writel(host
, clk_ctrl
, SDHCI_TEGRA_VENDOR_CLOCK_CTRL
);
175 if (soc_data
->nvquirks
& NVQUIRK_HAS_PADCALIB
)
176 tegra_host
->pad_calib_required
= true;
178 tegra_host
->ddr_signaling
= false;
181 static void tegra_sdhci_set_bus_width(struct sdhci_host
*host
, int bus_width
)
185 ctrl
= sdhci_readb(host
, SDHCI_HOST_CONTROL
);
186 if ((host
->mmc
->caps
& MMC_CAP_8_BIT_DATA
) &&
187 (bus_width
== MMC_BUS_WIDTH_8
)) {
188 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
189 ctrl
|= SDHCI_CTRL_8BITBUS
;
191 ctrl
&= ~SDHCI_CTRL_8BITBUS
;
192 if (bus_width
== MMC_BUS_WIDTH_4
)
193 ctrl
|= SDHCI_CTRL_4BITBUS
;
195 ctrl
&= ~SDHCI_CTRL_4BITBUS
;
197 sdhci_writeb(host
, ctrl
, SDHCI_HOST_CONTROL
);
200 static void tegra_sdhci_pad_autocalib(struct sdhci_host
*host
)
206 val
= sdhci_readl(host
, SDHCI_TEGRA_AUTO_CAL_CONFIG
);
207 val
|= SDHCI_AUTO_CAL_ENABLE
| SDHCI_AUTO_CAL_START
;
208 sdhci_writel(host
,val
, SDHCI_TEGRA_AUTO_CAL_CONFIG
);
211 static void tegra_sdhci_set_clock(struct sdhci_host
*host
, unsigned int clock
)
213 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
214 struct sdhci_tegra
*tegra_host
= sdhci_pltfm_priv(pltfm_host
);
215 unsigned long host_clk
;
218 return sdhci_set_clock(host
, clock
);
220 host_clk
= tegra_host
->ddr_signaling
? clock
* 2 : clock
;
221 clk_set_rate(pltfm_host
->clk
, host_clk
);
222 host
->max_clk
= clk_get_rate(pltfm_host
->clk
);
224 sdhci_set_clock(host
, clock
);
226 if (tegra_host
->pad_calib_required
) {
227 tegra_sdhci_pad_autocalib(host
);
228 tegra_host
->pad_calib_required
= false;
232 static void tegra_sdhci_set_uhs_signaling(struct sdhci_host
*host
,
235 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
236 struct sdhci_tegra
*tegra_host
= sdhci_pltfm_priv(pltfm_host
);
238 if (timing
== MMC_TIMING_UHS_DDR50
)
239 tegra_host
->ddr_signaling
= true;
241 return sdhci_set_uhs_signaling(host
, timing
);
244 static unsigned int tegra_sdhci_get_max_clock(struct sdhci_host
*host
)
246 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
249 * DDR modes require the host to run at double the card frequency, so
250 * the maximum rate we can support is half of the module input clock.
252 return clk_round_rate(pltfm_host
->clk
, UINT_MAX
) / 2;
255 static void tegra_sdhci_set_tap(struct sdhci_host
*host
, unsigned int tap
)
259 reg
= sdhci_readl(host
, SDHCI_TEGRA_VENDOR_CLOCK_CTRL
);
260 reg
&= ~SDHCI_CLOCK_CTRL_TAP_MASK
;
261 reg
|= tap
<< SDHCI_CLOCK_CTRL_TAP_SHIFT
;
262 sdhci_writel(host
, reg
, SDHCI_TEGRA_VENDOR_CLOCK_CTRL
);
265 static int tegra_sdhci_execute_tuning(struct sdhci_host
*host
, u32 opcode
)
267 unsigned int min
, max
;
270 * Start search for minimum tap value at 10, as smaller values are
271 * may wrongly be reported as working but fail at higher speeds,
272 * according to the TRM.
276 tegra_sdhci_set_tap(host
, min
);
277 if (!mmc_send_tuning(host
->mmc
, opcode
, NULL
))
282 /* Find the maximum tap value that still passes. */
285 tegra_sdhci_set_tap(host
, max
);
286 if (mmc_send_tuning(host
->mmc
, opcode
, NULL
)) {
293 /* The TRM states the ideal tap value is at 75% in the passing range. */
294 tegra_sdhci_set_tap(host
, min
+ ((max
- min
) * 3 / 4));
296 return mmc_send_tuning(host
->mmc
, opcode
, NULL
);
299 static void tegra_sdhci_voltage_switch(struct sdhci_host
*host
)
301 struct sdhci_pltfm_host
*pltfm_host
= sdhci_priv(host
);
302 struct sdhci_tegra
*tegra_host
= sdhci_pltfm_priv(pltfm_host
);
303 const struct sdhci_tegra_soc_data
*soc_data
= tegra_host
->soc_data
;
305 if (soc_data
->nvquirks
& NVQUIRK_HAS_PADCALIB
)
306 tegra_host
->pad_calib_required
= true;
309 static const struct sdhci_ops tegra_sdhci_ops
= {
310 .get_ro
= tegra_sdhci_get_ro
,
311 .read_w
= tegra_sdhci_readw
,
312 .write_l
= tegra_sdhci_writel
,
313 .set_clock
= tegra_sdhci_set_clock
,
314 .set_bus_width
= tegra_sdhci_set_bus_width
,
315 .reset
= tegra_sdhci_reset
,
316 .platform_execute_tuning
= tegra_sdhci_execute_tuning
,
317 .set_uhs_signaling
= tegra_sdhci_set_uhs_signaling
,
318 .voltage_switch
= tegra_sdhci_voltage_switch
,
319 .get_max_clock
= tegra_sdhci_get_max_clock
,
322 static const struct sdhci_pltfm_data sdhci_tegra20_pdata
= {
323 .quirks
= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
|
324 SDHCI_QUIRK_SINGLE_POWER_WRITE
|
325 SDHCI_QUIRK_NO_HISPD_BIT
|
326 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
|
327 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
,
328 .ops
= &tegra_sdhci_ops
,
331 static const struct sdhci_tegra_soc_data soc_data_tegra20
= {
332 .pdata
= &sdhci_tegra20_pdata
,
333 .nvquirks
= NVQUIRK_FORCE_SDHCI_SPEC_200
|
334 NVQUIRK_ENABLE_BLOCK_GAP_DET
,
337 static const struct sdhci_pltfm_data sdhci_tegra30_pdata
= {
338 .quirks
= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
|
339 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
|
340 SDHCI_QUIRK_SINGLE_POWER_WRITE
|
341 SDHCI_QUIRK_NO_HISPD_BIT
|
342 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
|
343 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
,
344 .quirks2
= SDHCI_QUIRK2_PRESET_VALUE_BROKEN
,
345 .ops
= &tegra_sdhci_ops
,
348 static const struct sdhci_tegra_soc_data soc_data_tegra30
= {
349 .pdata
= &sdhci_tegra30_pdata
,
350 .nvquirks
= NVQUIRK_ENABLE_SDHCI_SPEC_300
|
351 NVQUIRK_ENABLE_SDR50
|
352 NVQUIRK_ENABLE_SDR104
|
353 NVQUIRK_HAS_PADCALIB
,
356 static const struct sdhci_ops tegra114_sdhci_ops
= {
357 .get_ro
= tegra_sdhci_get_ro
,
358 .read_w
= tegra_sdhci_readw
,
359 .write_w
= tegra_sdhci_writew
,
360 .write_l
= tegra_sdhci_writel
,
361 .set_clock
= tegra_sdhci_set_clock
,
362 .set_bus_width
= tegra_sdhci_set_bus_width
,
363 .reset
= tegra_sdhci_reset
,
364 .platform_execute_tuning
= tegra_sdhci_execute_tuning
,
365 .set_uhs_signaling
= tegra_sdhci_set_uhs_signaling
,
366 .voltage_switch
= tegra_sdhci_voltage_switch
,
367 .get_max_clock
= tegra_sdhci_get_max_clock
,
370 static const struct sdhci_pltfm_data sdhci_tegra114_pdata
= {
371 .quirks
= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
|
372 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
|
373 SDHCI_QUIRK_SINGLE_POWER_WRITE
|
374 SDHCI_QUIRK_NO_HISPD_BIT
|
375 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
|
376 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
,
377 .quirks2
= SDHCI_QUIRK2_PRESET_VALUE_BROKEN
,
378 .ops
= &tegra114_sdhci_ops
,
381 static const struct sdhci_tegra_soc_data soc_data_tegra114
= {
382 .pdata
= &sdhci_tegra114_pdata
,
385 static const struct sdhci_tegra_soc_data soc_data_tegra124
= {
386 .pdata
= &sdhci_tegra114_pdata
,
387 .nvquirks
= NVQUIRK_ENABLE_SDR50
|
388 NVQUIRK_ENABLE_DDR50
|
389 NVQUIRK_ENABLE_SDR104
|
390 NVQUIRK_HAS_PADCALIB
,
393 static const struct sdhci_pltfm_data sdhci_tegra210_pdata
= {
394 .quirks
= SDHCI_QUIRK_BROKEN_TIMEOUT_VAL
|
395 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK
|
396 SDHCI_QUIRK_SINGLE_POWER_WRITE
|
397 SDHCI_QUIRK_NO_HISPD_BIT
|
398 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC
|
399 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN
,
400 .quirks2
= SDHCI_QUIRK2_PRESET_VALUE_BROKEN
,
401 .ops
= &tegra114_sdhci_ops
,
404 static const struct sdhci_tegra_soc_data soc_data_tegra210
= {
405 .pdata
= &sdhci_tegra210_pdata
,
408 static const struct of_device_id sdhci_tegra_dt_match
[] = {
409 { .compatible
= "nvidia,tegra210-sdhci", .data
= &soc_data_tegra210
},
410 { .compatible
= "nvidia,tegra124-sdhci", .data
= &soc_data_tegra124
},
411 { .compatible
= "nvidia,tegra114-sdhci", .data
= &soc_data_tegra114
},
412 { .compatible
= "nvidia,tegra30-sdhci", .data
= &soc_data_tegra30
},
413 { .compatible
= "nvidia,tegra20-sdhci", .data
= &soc_data_tegra20
},
416 MODULE_DEVICE_TABLE(of
, sdhci_tegra_dt_match
);
418 static int sdhci_tegra_probe(struct platform_device
*pdev
)
420 const struct of_device_id
*match
;
421 const struct sdhci_tegra_soc_data
*soc_data
;
422 struct sdhci_host
*host
;
423 struct sdhci_pltfm_host
*pltfm_host
;
424 struct sdhci_tegra
*tegra_host
;
428 match
= of_match_device(sdhci_tegra_dt_match
, &pdev
->dev
);
431 soc_data
= match
->data
;
433 host
= sdhci_pltfm_init(pdev
, soc_data
->pdata
, sizeof(*tegra_host
));
435 return PTR_ERR(host
);
436 pltfm_host
= sdhci_priv(host
);
438 tegra_host
= sdhci_pltfm_priv(pltfm_host
);
439 tegra_host
->ddr_signaling
= false;
440 tegra_host
->pad_calib_required
= false;
441 tegra_host
->soc_data
= soc_data
;
443 rc
= mmc_of_parse(host
->mmc
);
447 if (tegra_host
->soc_data
->nvquirks
& NVQUIRK_ENABLE_DDR50
)
448 host
->mmc
->caps
|= MMC_CAP_1_8V_DDR
;
450 tegra_host
->power_gpio
= devm_gpiod_get_optional(&pdev
->dev
, "power",
452 if (IS_ERR(tegra_host
->power_gpio
)) {
453 rc
= PTR_ERR(tegra_host
->power_gpio
);
457 clk
= devm_clk_get(mmc_dev(host
->mmc
), NULL
);
459 dev_err(mmc_dev(host
->mmc
), "clk err\n");
463 clk_prepare_enable(clk
);
464 pltfm_host
->clk
= clk
;
466 rc
= sdhci_add_host(host
);
473 clk_disable_unprepare(pltfm_host
->clk
);
477 sdhci_pltfm_free(pdev
);
481 static struct platform_driver sdhci_tegra_driver
= {
483 .name
= "sdhci-tegra",
484 .of_match_table
= sdhci_tegra_dt_match
,
485 .pm
= SDHCI_PLTFM_PMOPS
,
487 .probe
= sdhci_tegra_probe
,
488 .remove
= sdhci_pltfm_unregister
,
491 module_platform_driver(sdhci_tegra_driver
);
493 MODULE_DESCRIPTION("SDHCI driver for Tegra");
494 MODULE_AUTHOR("Google, Inc.");
495 MODULE_LICENSE("GPL v2");