1 /**
2 * SDHCI Controller driver for TI's OMAP SoCs
3 *
4 * Copyright (C) 2017 Texas Instruments
5 * Author: Kishon Vijay Abraham I <kishon@ti.com>
6 *
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 of
9 * the License as published by the Free Software Foundation.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <http://www.gnu.org/licenses/>.
18 */
19
20 #include <linux/delay.h>
21 #include <linux/mmc/slot-gpio.h>
22 #include <linux/module.h>
23 #include <linux/of.h>
24 #include <linux/of_device.h>
25 #include <linux/platform_device.h>
26 #include <linux/pm_runtime.h>
27 #include <linux/regulator/consumer.h>
28 #include <linux/pinctrl/consumer.h>
29 #include <linux/sys_soc.h>
30 #include <linux/thermal.h>
31
32 #include "sdhci-pltfm.h"
33
34 #define SDHCI_OMAP_CON 0x12c
35 #define CON_DW8 BIT(5)
36 #define CON_DMA_MASTER BIT(20)
37 #define CON_DDR BIT(19)
38 #define CON_CLKEXTFREE BIT(16)
39 #define CON_PADEN BIT(15)
40 #define CON_CTPL BIT(11)
41 #define CON_INIT BIT(1)
42 #define CON_OD BIT(0)
43
44 #define SDHCI_OMAP_DLL 0x0134
45 #define DLL_SWT BIT(20)
46 #define DLL_FORCE_SR_C_SHIFT 13
47 #define DLL_FORCE_SR_C_MASK (0x7f << DLL_FORCE_SR_C_SHIFT)
48 #define DLL_FORCE_VALUE BIT(12)
49 #define DLL_CALIB BIT(1)
50
51 #define SDHCI_OMAP_CMD 0x20c
52
53 #define SDHCI_OMAP_PSTATE 0x0224
54 #define PSTATE_DLEV_DAT0 BIT(20)
55 #define PSTATE_DATI BIT(1)
56
57 #define SDHCI_OMAP_HCTL 0x228
58 #define HCTL_SDBP BIT(8)
59 #define HCTL_SDVS_SHIFT 9
60 #define HCTL_SDVS_MASK (0x7 << HCTL_SDVS_SHIFT)
61 #define HCTL_SDVS_33 (0x7 << HCTL_SDVS_SHIFT)
62 #define HCTL_SDVS_30 (0x6 << HCTL_SDVS_SHIFT)
63 #define HCTL_SDVS_18 (0x5 << HCTL_SDVS_SHIFT)
64
65 #define SDHCI_OMAP_SYSCTL 0x22c
66 #define SYSCTL_CEN BIT(2)
67 #define SYSCTL_CLKD_SHIFT 6
68 #define SYSCTL_CLKD_MASK 0x3ff
69
70 #define SDHCI_OMAP_STAT 0x230
71
72 #define SDHCI_OMAP_IE 0x234
73 #define INT_CC_EN BIT(0)
74
75 #define SDHCI_OMAP_AC12 0x23c
76 #define AC12_V1V8_SIGEN BIT(19)
77 #define AC12_SCLK_SEL BIT(23)
78
79 #define SDHCI_OMAP_CAPA 0x240
80 #define CAPA_VS33 BIT(24)
81 #define CAPA_VS30 BIT(25)
82 #define CAPA_VS18 BIT(26)
83
84 #define SDHCI_OMAP_CAPA2 0x0244
85 #define CAPA2_TSDR50 BIT(13)
86
87 #define SDHCI_OMAP_TIMEOUT 1 /* 1 msec */
88
89 #define SYSCTL_CLKD_MAX 0x3FF
90
91 #define IOV_1V8 1800000 /* 180000 uV */
92 #define IOV_3V0 3000000 /* 300000 uV */
93 #define IOV_3V3 3300000 /* 330000 uV */
94
95 #define MAX_PHASE_DELAY 0x7C
96
97 /* sdhci-omap controller flags */
98 #define SDHCI_OMAP_REQUIRE_IODELAY BIT(0)
99
100 struct sdhci_omap_data {
101 u32 offset;
102 u8 flags;
103 };
104
105 struct sdhci_omap_host {
106 char *version;
107 void __iomem *base;
108 struct device *dev;
109 struct regulator *pbias;
110 bool pbias_enabled;
111 struct sdhci_host *host;
112 u8 bus_mode;
113 u8 power_mode;
114 u8 timing;
115 u8 flags;
116
117 struct pinctrl *pinctrl;
118 struct pinctrl_state **pinctrl_state;
119 bool is_tuning;
120 };
121
122 static void sdhci_omap_start_clock(struct sdhci_omap_host *omap_host);
123 static void sdhci_omap_stop_clock(struct sdhci_omap_host *omap_host);
124
sdhci_omap_readl(struct sdhci_omap_host * host,unsigned int offset)125 static inline u32 sdhci_omap_readl(struct sdhci_omap_host *host,
126 unsigned int offset)
127 {
128 return readl(host->base + offset);
129 }
130
sdhci_omap_writel(struct sdhci_omap_host * host,unsigned int offset,u32 data)131 static inline void sdhci_omap_writel(struct sdhci_omap_host *host,
132 unsigned int offset, u32 data)
133 {
134 writel(data, host->base + offset);
135 }
136
sdhci_omap_set_pbias(struct sdhci_omap_host * omap_host,bool power_on,unsigned int iov)137 static int sdhci_omap_set_pbias(struct sdhci_omap_host *omap_host,
138 bool power_on, unsigned int iov)
139 {
140 int ret;
141 struct device *dev = omap_host->dev;
142
143 if (IS_ERR(omap_host->pbias))
144 return 0;
145
146 if (power_on) {
147 ret = regulator_set_voltage(omap_host->pbias, iov, iov);
148 if (ret) {
149 dev_err(dev, "pbias set voltage failed\n");
150 return ret;
151 }
152
153 if (omap_host->pbias_enabled)
154 return 0;
155
156 ret = regulator_enable(omap_host->pbias);
157 if (ret) {
158 dev_err(dev, "pbias reg enable fail\n");
159 return ret;
160 }
161
162 omap_host->pbias_enabled = true;
163 } else {
164 if (!omap_host->pbias_enabled)
165 return 0;
166
167 ret = regulator_disable(omap_host->pbias);
168 if (ret) {
169 dev_err(dev, "pbias reg disable fail\n");
170 return ret;
171 }
172 omap_host->pbias_enabled = false;
173 }
174
175 return 0;
176 }
177
sdhci_omap_enable_iov(struct sdhci_omap_host * omap_host,unsigned int iov)178 static int sdhci_omap_enable_iov(struct sdhci_omap_host *omap_host,
179 unsigned int iov)
180 {
181 int ret;
182 struct sdhci_host *host = omap_host->host;
183 struct mmc_host *mmc = host->mmc;
184
185 ret = sdhci_omap_set_pbias(omap_host, false, 0);
186 if (ret)
187 return ret;
188
189 if (!IS_ERR(mmc->supply.vqmmc)) {
190 ret = regulator_set_voltage(mmc->supply.vqmmc, iov, iov);
191 if (ret) {
192 dev_err(mmc_dev(mmc), "vqmmc set voltage failed\n");
193 return ret;
194 }
195 }
196
197 ret = sdhci_omap_set_pbias(omap_host, true, iov);
198 if (ret)
199 return ret;
200
201 return 0;
202 }
203
sdhci_omap_conf_bus_power(struct sdhci_omap_host * omap_host,unsigned char signal_voltage)204 static void sdhci_omap_conf_bus_power(struct sdhci_omap_host *omap_host,
205 unsigned char signal_voltage)
206 {
207 u32 reg;
208 ktime_t timeout;
209
210 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_HCTL);
211 reg &= ~HCTL_SDVS_MASK;
212
213 if (signal_voltage == MMC_SIGNAL_VOLTAGE_330)
214 reg |= HCTL_SDVS_33;
215 else
216 reg |= HCTL_SDVS_18;
217
218 sdhci_omap_writel(omap_host, SDHCI_OMAP_HCTL, reg);
219
220 reg |= HCTL_SDBP;
221 sdhci_omap_writel(omap_host, SDHCI_OMAP_HCTL, reg);
222
223 /* wait 1ms */
224 timeout = ktime_add_ms(ktime_get(), SDHCI_OMAP_TIMEOUT);
225 while (1) {
226 bool timedout = ktime_after(ktime_get(), timeout);
227
228 if (sdhci_omap_readl(omap_host, SDHCI_OMAP_HCTL) & HCTL_SDBP)
229 break;
230 if (WARN_ON(timedout))
231 return;
232 usleep_range(5, 10);
233 }
234 }
235
sdhci_omap_enable_sdio_irq(struct mmc_host * mmc,int enable)236 static void sdhci_omap_enable_sdio_irq(struct mmc_host *mmc, int enable)
237 {
238 struct sdhci_host *host = mmc_priv(mmc);
239 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
240 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
241 u32 reg;
242
243 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
244 if (enable)
245 reg |= (CON_CTPL | CON_CLKEXTFREE);
246 else
247 reg &= ~(CON_CTPL | CON_CLKEXTFREE);
248 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
249
250 sdhci_enable_sdio_irq(mmc, enable);
251 }
252
sdhci_omap_set_dll(struct sdhci_omap_host * omap_host,int count)253 static inline void sdhci_omap_set_dll(struct sdhci_omap_host *omap_host,
254 int count)
255 {
256 int i;
257 u32 reg;
258
259 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_DLL);
260 reg |= DLL_FORCE_VALUE;
261 reg &= ~DLL_FORCE_SR_C_MASK;
262 reg |= (count << DLL_FORCE_SR_C_SHIFT);
263 sdhci_omap_writel(omap_host, SDHCI_OMAP_DLL, reg);
264
265 reg |= DLL_CALIB;
266 sdhci_omap_writel(omap_host, SDHCI_OMAP_DLL, reg);
267 for (i = 0; i < 1000; i++) {
268 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_DLL);
269 if (reg & DLL_CALIB)
270 break;
271 }
272 reg &= ~DLL_CALIB;
273 sdhci_omap_writel(omap_host, SDHCI_OMAP_DLL, reg);
274 }
275
sdhci_omap_disable_tuning(struct sdhci_omap_host * omap_host)276 static void sdhci_omap_disable_tuning(struct sdhci_omap_host *omap_host)
277 {
278 u32 reg;
279
280 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_AC12);
281 reg &= ~AC12_SCLK_SEL;
282 sdhci_omap_writel(omap_host, SDHCI_OMAP_AC12, reg);
283
284 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_DLL);
285 reg &= ~(DLL_FORCE_VALUE | DLL_SWT);
286 sdhci_omap_writel(omap_host, SDHCI_OMAP_DLL, reg);
287 }
288
sdhci_omap_execute_tuning(struct mmc_host * mmc,u32 opcode)289 static int sdhci_omap_execute_tuning(struct mmc_host *mmc, u32 opcode)
290 {
291 struct sdhci_host *host = mmc_priv(mmc);
292 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
293 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
294 struct thermal_zone_device *thermal_dev;
295 struct device *dev = omap_host->dev;
296 struct mmc_ios *ios = &mmc->ios;
297 u32 start_window = 0, max_window = 0;
298 bool single_point_failure = false;
299 bool dcrc_was_enabled = false;
300 u8 cur_match, prev_match = 0;
301 u32 length = 0, max_len = 0;
302 u32 phase_delay = 0;
303 int temperature;
304 int ret = 0;
305 u32 reg;
306 int i;
307
308 pltfm_host = sdhci_priv(host);
309 omap_host = sdhci_pltfm_priv(pltfm_host);
310 dev = omap_host->dev;
311
312 /* clock tuning is not needed for upto 52MHz */
313 if (ios->clock <= 52000000)
314 return 0;
315
316 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CAPA2);
317 if (ios->timing == MMC_TIMING_UHS_SDR50 && !(reg & CAPA2_TSDR50))
318 return 0;
319
320 thermal_dev = thermal_zone_get_zone_by_name("cpu_thermal");
321 if (IS_ERR(thermal_dev)) {
322 dev_err(dev, "Unable to get thermal zone for tuning\n");
323 return PTR_ERR(thermal_dev);
324 }
325
326 ret = thermal_zone_get_temp(thermal_dev, &temperature);
327 if (ret)
328 return ret;
329
330 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_DLL);
331 reg |= DLL_SWT;
332 sdhci_omap_writel(omap_host, SDHCI_OMAP_DLL, reg);
333
334 /*
335 * OMAP5/DRA74X/DRA72x Errata i802:
336 * DCRC error interrupts (MMCHS_STAT[21] DCRC=0x1) can occur
337 * during the tuning procedure. So disable it during the
338 * tuning procedure.
339 */
340 if (host->ier & SDHCI_INT_DATA_CRC) {
341 host->ier &= ~SDHCI_INT_DATA_CRC;
342 dcrc_was_enabled = true;
343 }
344
345 omap_host->is_tuning = true;
346
347 /*
348 * Stage 1: Search for a maximum pass window ignoring any
349 * any single point failures. If the tuning value ends up
350 * near it, move away from it in stage 2 below
351 */
352 while (phase_delay <= MAX_PHASE_DELAY) {
353 sdhci_omap_set_dll(omap_host, phase_delay);
354
355 cur_match = !mmc_send_tuning(mmc, opcode, NULL);
356 if (cur_match) {
357 if (prev_match) {
358 length++;
359 } else if (single_point_failure) {
360 /* ignore single point failure */
361 length++;
362 } else {
363 start_window = phase_delay;
364 length = 1;
365 }
366 } else {
367 single_point_failure = prev_match;
368 }
369
370 if (length > max_len) {
371 max_window = start_window;
372 max_len = length;
373 }
374
375 prev_match = cur_match;
376 phase_delay += 4;
377 }
378
379 if (!max_len) {
380 dev_err(dev, "Unable to find match\n");
381 ret = -EIO;
382 goto tuning_error;
383 }
384
385 /*
386 * Assign tuning value as a ratio of maximum pass window based
387 * on temperature
388 */
389 if (temperature < -20000)
390 phase_delay = min(max_window + 4 * (max_len - 1) - 24,
391 max_window +
392 DIV_ROUND_UP(13 * max_len, 16) * 4);
393 else if (temperature < 20000)
394 phase_delay = max_window + DIV_ROUND_UP(9 * max_len, 16) * 4;
395 else if (temperature < 40000)
396 phase_delay = max_window + DIV_ROUND_UP(8 * max_len, 16) * 4;
397 else if (temperature < 70000)
398 phase_delay = max_window + DIV_ROUND_UP(7 * max_len, 16) * 4;
399 else if (temperature < 90000)
400 phase_delay = max_window + DIV_ROUND_UP(5 * max_len, 16) * 4;
401 else if (temperature < 120000)
402 phase_delay = max_window + DIV_ROUND_UP(4 * max_len, 16) * 4;
403 else
404 phase_delay = max_window + DIV_ROUND_UP(3 * max_len, 16) * 4;
405
406 /*
407 * Stage 2: Search for a single point failure near the chosen tuning
408 * value in two steps. First in the +3 to +10 range and then in the
409 * +2 to -10 range. If found, move away from it in the appropriate
410 * direction by the appropriate amount depending on the temperature.
411 */
412 for (i = 3; i <= 10; i++) {
413 sdhci_omap_set_dll(omap_host, phase_delay + i);
414
415 if (mmc_send_tuning(mmc, opcode, NULL)) {
416 if (temperature < 10000)
417 phase_delay += i + 6;
418 else if (temperature < 20000)
419 phase_delay += i - 12;
420 else if (temperature < 70000)
421 phase_delay += i - 8;
422 else
423 phase_delay += i - 6;
424
425 goto single_failure_found;
426 }
427 }
428
429 for (i = 2; i >= -10; i--) {
430 sdhci_omap_set_dll(omap_host, phase_delay + i);
431
432 if (mmc_send_tuning(mmc, opcode, NULL)) {
433 if (temperature < 10000)
434 phase_delay += i + 12;
435 else if (temperature < 20000)
436 phase_delay += i + 8;
437 else if (temperature < 70000)
438 phase_delay += i + 8;
439 else if (temperature < 90000)
440 phase_delay += i + 10;
441 else
442 phase_delay += i + 12;
443
444 goto single_failure_found;
445 }
446 }
447
448 single_failure_found:
449 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_AC12);
450 if (!(reg & AC12_SCLK_SEL)) {
451 ret = -EIO;
452 goto tuning_error;
453 }
454
455 sdhci_omap_set_dll(omap_host, phase_delay);
456
457 omap_host->is_tuning = false;
458
459 goto ret;
460
461 tuning_error:
462 omap_host->is_tuning = false;
463 dev_err(dev, "Tuning failed\n");
464 sdhci_omap_disable_tuning(omap_host);
465
466 ret:
467 sdhci_reset(host, SDHCI_RESET_CMD | SDHCI_RESET_DATA);
468 /* Reenable forbidden interrupt */
469 if (dcrc_was_enabled)
470 host->ier |= SDHCI_INT_DATA_CRC;
471 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
472 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
473 return ret;
474 }
475
sdhci_omap_card_busy(struct mmc_host * mmc)476 static int sdhci_omap_card_busy(struct mmc_host *mmc)
477 {
478 u32 reg, ac12;
479 int ret = false;
480 struct sdhci_host *host = mmc_priv(mmc);
481 struct sdhci_pltfm_host *pltfm_host;
482 struct sdhci_omap_host *omap_host;
483 u32 ier = host->ier;
484
485 pltfm_host = sdhci_priv(host);
486 omap_host = sdhci_pltfm_priv(pltfm_host);
487
488 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
489 ac12 = sdhci_omap_readl(omap_host, SDHCI_OMAP_AC12);
490 reg &= ~CON_CLKEXTFREE;
491 if (ac12 & AC12_V1V8_SIGEN)
492 reg |= CON_CLKEXTFREE;
493 reg |= CON_PADEN;
494 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
495
496 disable_irq(host->irq);
497 ier |= SDHCI_INT_CARD_INT;
498 sdhci_writel(host, ier, SDHCI_INT_ENABLE);
499 sdhci_writel(host, ier, SDHCI_SIGNAL_ENABLE);
500
501 /*
502 * Delay is required for PSTATE to correctly reflect
503 * DLEV/CLEV values after PADEN is set.
504 */
505 usleep_range(50, 100);
506 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_PSTATE);
507 if ((reg & PSTATE_DATI) || !(reg & PSTATE_DLEV_DAT0))
508 ret = true;
509
510 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
511 reg &= ~(CON_CLKEXTFREE | CON_PADEN);
512 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
513
514 sdhci_writel(host, host->ier, SDHCI_INT_ENABLE);
515 sdhci_writel(host, host->ier, SDHCI_SIGNAL_ENABLE);
516 enable_irq(host->irq);
517
518 return ret;
519 }
520
sdhci_omap_start_signal_voltage_switch(struct mmc_host * mmc,struct mmc_ios * ios)521 static int sdhci_omap_start_signal_voltage_switch(struct mmc_host *mmc,
522 struct mmc_ios *ios)
523 {
524 u32 reg;
525 int ret;
526 unsigned int iov;
527 struct sdhci_host *host = mmc_priv(mmc);
528 struct sdhci_pltfm_host *pltfm_host;
529 struct sdhci_omap_host *omap_host;
530 struct device *dev;
531
532 pltfm_host = sdhci_priv(host);
533 omap_host = sdhci_pltfm_priv(pltfm_host);
534 dev = omap_host->dev;
535
536 if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) {
537 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CAPA);
538 if (!(reg & CAPA_VS33))
539 return -EOPNOTSUPP;
540
541 sdhci_omap_conf_bus_power(omap_host, ios->signal_voltage);
542
543 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_AC12);
544 reg &= ~AC12_V1V8_SIGEN;
545 sdhci_omap_writel(omap_host, SDHCI_OMAP_AC12, reg);
546
547 iov = IOV_3V3;
548 } else if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_180) {
549 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CAPA);
550 if (!(reg & CAPA_VS18))
551 return -EOPNOTSUPP;
552
553 sdhci_omap_conf_bus_power(omap_host, ios->signal_voltage);
554
555 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_AC12);
556 reg |= AC12_V1V8_SIGEN;
557 sdhci_omap_writel(omap_host, SDHCI_OMAP_AC12, reg);
558
559 iov = IOV_1V8;
560 } else {
561 return -EOPNOTSUPP;
562 }
563
564 ret = sdhci_omap_enable_iov(omap_host, iov);
565 if (ret) {
566 dev_err(dev, "failed to switch IO voltage to %dmV\n", iov);
567 return ret;
568 }
569
570 dev_dbg(dev, "IO voltage switched to %dmV\n", iov);
571 return 0;
572 }
573
sdhci_omap_set_timing(struct sdhci_omap_host * omap_host,u8 timing)574 static void sdhci_omap_set_timing(struct sdhci_omap_host *omap_host, u8 timing)
575 {
576 int ret;
577 struct pinctrl_state *pinctrl_state;
578 struct device *dev = omap_host->dev;
579
580 if (!(omap_host->flags & SDHCI_OMAP_REQUIRE_IODELAY))
581 return;
582
583 if (omap_host->timing == timing)
584 return;
585
586 sdhci_omap_stop_clock(omap_host);
587
588 pinctrl_state = omap_host->pinctrl_state[timing];
589 ret = pinctrl_select_state(omap_host->pinctrl, pinctrl_state);
590 if (ret) {
591 dev_err(dev, "failed to select pinctrl state\n");
592 return;
593 }
594
595 sdhci_omap_start_clock(omap_host);
596 omap_host->timing = timing;
597 }
598
sdhci_omap_set_power_mode(struct sdhci_omap_host * omap_host,u8 power_mode)599 static void sdhci_omap_set_power_mode(struct sdhci_omap_host *omap_host,
600 u8 power_mode)
601 {
602 if (omap_host->bus_mode == MMC_POWER_OFF)
603 sdhci_omap_disable_tuning(omap_host);
604 omap_host->power_mode = power_mode;
605 }
606
sdhci_omap_set_bus_mode(struct sdhci_omap_host * omap_host,unsigned int mode)607 static void sdhci_omap_set_bus_mode(struct sdhci_omap_host *omap_host,
608 unsigned int mode)
609 {
610 u32 reg;
611
612 if (omap_host->bus_mode == mode)
613 return;
614
615 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
616 if (mode == MMC_BUSMODE_OPENDRAIN)
617 reg |= CON_OD;
618 else
619 reg &= ~CON_OD;
620 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
621
622 omap_host->bus_mode = mode;
623 }
624
sdhci_omap_set_ios(struct mmc_host * mmc,struct mmc_ios * ios)625 static void sdhci_omap_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
626 {
627 struct sdhci_host *host = mmc_priv(mmc);
628 struct sdhci_pltfm_host *pltfm_host;
629 struct sdhci_omap_host *omap_host;
630
631 pltfm_host = sdhci_priv(host);
632 omap_host = sdhci_pltfm_priv(pltfm_host);
633
634 sdhci_omap_set_bus_mode(omap_host, ios->bus_mode);
635 sdhci_omap_set_timing(omap_host, ios->timing);
636 sdhci_set_ios(mmc, ios);
637 sdhci_omap_set_power_mode(omap_host, ios->power_mode);
638 }
639
sdhci_omap_calc_divisor(struct sdhci_pltfm_host * host,unsigned int clock)640 static u16 sdhci_omap_calc_divisor(struct sdhci_pltfm_host *host,
641 unsigned int clock)
642 {
643 u16 dsor;
644
645 dsor = DIV_ROUND_UP(clk_get_rate(host->clk), clock);
646 if (dsor > SYSCTL_CLKD_MAX)
647 dsor = SYSCTL_CLKD_MAX;
648
649 return dsor;
650 }
651
sdhci_omap_start_clock(struct sdhci_omap_host * omap_host)652 static void sdhci_omap_start_clock(struct sdhci_omap_host *omap_host)
653 {
654 u32 reg;
655
656 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_SYSCTL);
657 reg |= SYSCTL_CEN;
658 sdhci_omap_writel(omap_host, SDHCI_OMAP_SYSCTL, reg);
659 }
660
sdhci_omap_stop_clock(struct sdhci_omap_host * omap_host)661 static void sdhci_omap_stop_clock(struct sdhci_omap_host *omap_host)
662 {
663 u32 reg;
664
665 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_SYSCTL);
666 reg &= ~SYSCTL_CEN;
667 sdhci_omap_writel(omap_host, SDHCI_OMAP_SYSCTL, reg);
668 }
669
sdhci_omap_set_clock(struct sdhci_host * host,unsigned int clock)670 static void sdhci_omap_set_clock(struct sdhci_host *host, unsigned int clock)
671 {
672 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
673 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
674 unsigned long clkdiv;
675
676 sdhci_omap_stop_clock(omap_host);
677
678 if (!clock)
679 return;
680
681 clkdiv = sdhci_omap_calc_divisor(pltfm_host, clock);
682 clkdiv = (clkdiv & SYSCTL_CLKD_MASK) << SYSCTL_CLKD_SHIFT;
683 sdhci_enable_clk(host, clkdiv);
684
685 sdhci_omap_start_clock(omap_host);
686 }
687
sdhci_omap_set_power(struct sdhci_host * host,unsigned char mode,unsigned short vdd)688 static void sdhci_omap_set_power(struct sdhci_host *host, unsigned char mode,
689 unsigned short vdd)
690 {
691 struct mmc_host *mmc = host->mmc;
692
693 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
694 }
695
sdhci_omap_enable_dma(struct sdhci_host * host)696 static int sdhci_omap_enable_dma(struct sdhci_host *host)
697 {
698 u32 reg;
699 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
700 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
701
702 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
703 reg |= CON_DMA_MASTER;
704 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
705
706 return 0;
707 }
708
sdhci_omap_get_min_clock(struct sdhci_host * host)709 static unsigned int sdhci_omap_get_min_clock(struct sdhci_host *host)
710 {
711 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
712
713 return clk_get_rate(pltfm_host->clk) / SYSCTL_CLKD_MAX;
714 }
715
sdhci_omap_set_bus_width(struct sdhci_host * host,int width)716 static void sdhci_omap_set_bus_width(struct sdhci_host *host, int width)
717 {
718 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
719 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
720 u32 reg;
721
722 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
723 if (width == MMC_BUS_WIDTH_8)
724 reg |= CON_DW8;
725 else
726 reg &= ~CON_DW8;
727 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
728
729 sdhci_set_bus_width(host, width);
730 }
731
sdhci_omap_init_74_clocks(struct sdhci_host * host,u8 power_mode)732 static void sdhci_omap_init_74_clocks(struct sdhci_host *host, u8 power_mode)
733 {
734 u32 reg;
735 ktime_t timeout;
736 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
737 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
738
739 if (omap_host->power_mode == power_mode)
740 return;
741
742 if (power_mode != MMC_POWER_ON)
743 return;
744
745 disable_irq(host->irq);
746
747 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
748 reg |= CON_INIT;
749 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
750 sdhci_omap_writel(omap_host, SDHCI_OMAP_CMD, 0x0);
751
752 /* wait 1ms */
753 timeout = ktime_add_ms(ktime_get(), SDHCI_OMAP_TIMEOUT);
754 while (1) {
755 bool timedout = ktime_after(ktime_get(), timeout);
756
757 if (sdhci_omap_readl(omap_host, SDHCI_OMAP_STAT) & INT_CC_EN)
758 break;
759 if (WARN_ON(timedout))
760 return;
761 usleep_range(5, 10);
762 }
763
764 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
765 reg &= ~CON_INIT;
766 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
767 sdhci_omap_writel(omap_host, SDHCI_OMAP_STAT, INT_CC_EN);
768
769 enable_irq(host->irq);
770 }
771
sdhci_omap_set_uhs_signaling(struct sdhci_host * host,unsigned int timing)772 static void sdhci_omap_set_uhs_signaling(struct sdhci_host *host,
773 unsigned int timing)
774 {
775 u32 reg;
776 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
777 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
778
779 sdhci_omap_stop_clock(omap_host);
780
781 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CON);
782 if (timing == MMC_TIMING_UHS_DDR50 || timing == MMC_TIMING_MMC_DDR52)
783 reg |= CON_DDR;
784 else
785 reg &= ~CON_DDR;
786 sdhci_omap_writel(omap_host, SDHCI_OMAP_CON, reg);
787
788 sdhci_set_uhs_signaling(host, timing);
789 sdhci_omap_start_clock(omap_host);
790 }
791
sdhci_omap_reset(struct sdhci_host * host,u8 mask)792 void sdhci_omap_reset(struct sdhci_host *host, u8 mask)
793 {
794 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
795 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
796
797 /* Don't reset data lines during tuning operation */
798 if (omap_host->is_tuning)
799 mask &= ~SDHCI_RESET_DATA;
800
801 sdhci_reset(host, mask);
802 }
803
804 #define CMD_ERR_MASK (SDHCI_INT_CRC | SDHCI_INT_END_BIT | SDHCI_INT_INDEX |\
805 SDHCI_INT_TIMEOUT)
806 #define CMD_MASK (CMD_ERR_MASK | SDHCI_INT_RESPONSE)
807
sdhci_omap_irq(struct sdhci_host * host,u32 intmask)808 static u32 sdhci_omap_irq(struct sdhci_host *host, u32 intmask)
809 {
810 struct sdhci_pltfm_host *pltfm_host = sdhci_priv(host);
811 struct sdhci_omap_host *omap_host = sdhci_pltfm_priv(pltfm_host);
812
813 if (omap_host->is_tuning && host->cmd && !host->data_early &&
814 (intmask & CMD_ERR_MASK)) {
815
816 /*
817 * Since we are not resetting data lines during tuning
818 * operation, data error or data complete interrupts
819 * might still arrive. Mark this request as a failure
820 * but still wait for the data interrupt
821 */
822 if (intmask & SDHCI_INT_TIMEOUT)
823 host->cmd->error = -ETIMEDOUT;
824 else
825 host->cmd->error = -EILSEQ;
826
827 host->cmd = NULL;
828
829 /*
830 * Sometimes command error interrupts and command complete
831 * interrupt will arrive together. Clear all command related
832 * interrupts here.
833 */
834 sdhci_writel(host, intmask & CMD_MASK, SDHCI_INT_STATUS);
835 intmask &= ~CMD_MASK;
836 }
837
838 return intmask;
839 }
840
841 static struct sdhci_ops sdhci_omap_ops = {
842 .set_clock = sdhci_omap_set_clock,
843 .set_power = sdhci_omap_set_power,
844 .enable_dma = sdhci_omap_enable_dma,
845 .get_max_clock = sdhci_pltfm_clk_get_max_clock,
846 .get_min_clock = sdhci_omap_get_min_clock,
847 .set_bus_width = sdhci_omap_set_bus_width,
848 .platform_send_init_74_clocks = sdhci_omap_init_74_clocks,
849 .reset = sdhci_omap_reset,
850 .set_uhs_signaling = sdhci_omap_set_uhs_signaling,
851 .irq = sdhci_omap_irq,
852 };
853
sdhci_omap_set_capabilities(struct sdhci_omap_host * omap_host)854 static int sdhci_omap_set_capabilities(struct sdhci_omap_host *omap_host)
855 {
856 u32 reg;
857 int ret = 0;
858 struct device *dev = omap_host->dev;
859 struct regulator *vqmmc;
860
861 vqmmc = regulator_get(dev, "vqmmc");
862 if (IS_ERR(vqmmc)) {
863 ret = PTR_ERR(vqmmc);
864 goto reg_put;
865 }
866
867 /* voltage capabilities might be set by boot loader, clear it */
868 reg = sdhci_omap_readl(omap_host, SDHCI_OMAP_CAPA);
869 reg &= ~(CAPA_VS18 | CAPA_VS30 | CAPA_VS33);
870
871 if (regulator_is_supported_voltage(vqmmc, IOV_3V3, IOV_3V3))
872 reg |= CAPA_VS33;
873 if (regulator_is_supported_voltage(vqmmc, IOV_1V8, IOV_1V8))
874 reg |= CAPA_VS18;
875
876 sdhci_omap_writel(omap_host, SDHCI_OMAP_CAPA, reg);
877
878 reg_put:
879 regulator_put(vqmmc);
880
881 return ret;
882 }
883
884 static const struct sdhci_pltfm_data sdhci_omap_pdata = {
885 .quirks = SDHCI_QUIRK_BROKEN_CARD_DETECTION |
886 SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK |
887 SDHCI_QUIRK_CAP_CLOCK_BASE_BROKEN |
888 SDHCI_QUIRK_NO_HISPD_BIT |
889 SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC,
890 .quirks2 = SDHCI_QUIRK2_ACMD23_BROKEN |
891 SDHCI_QUIRK2_PRESET_VALUE_BROKEN |
892 SDHCI_QUIRK2_RSP_136_HAS_CRC |
893 SDHCI_QUIRK2_DISABLE_HW_TIMEOUT,
894 .ops = &sdhci_omap_ops,
895 };
896
897 static const struct sdhci_omap_data k2g_data = {
898 .offset = 0x200,
899 };
900
901 static const struct sdhci_omap_data dra7_data = {
902 .offset = 0x200,
903 .flags = SDHCI_OMAP_REQUIRE_IODELAY,
904 };
905
906 static const struct of_device_id omap_sdhci_match[] = {
907 { .compatible = "ti,dra7-sdhci", .data = &dra7_data },
908 { .compatible = "ti,k2g-sdhci", .data = &k2g_data },
909 {},
910 };
911 MODULE_DEVICE_TABLE(of, omap_sdhci_match);
912
913 static struct pinctrl_state
sdhci_omap_iodelay_pinctrl_state(struct sdhci_omap_host * omap_host,char * mode,u32 * caps,u32 capmask)914 *sdhci_omap_iodelay_pinctrl_state(struct sdhci_omap_host *omap_host, char *mode,
915 u32 *caps, u32 capmask)
916 {
917 struct device *dev = omap_host->dev;
918 char *version = omap_host->version;
919 struct pinctrl_state *pinctrl_state = ERR_PTR(-ENODEV);
920 char str[20];
921
922 if (!(*caps & capmask))
923 goto ret;
924
925 if (version) {
926 snprintf(str, 20, "%s-%s", mode, version);
927 pinctrl_state = pinctrl_lookup_state(omap_host->pinctrl, str);
928 }
929
930 if (IS_ERR(pinctrl_state))
931 pinctrl_state = pinctrl_lookup_state(omap_host->pinctrl, mode);
932
933 if (IS_ERR(pinctrl_state)) {
934 dev_err(dev, "no pinctrl state for %s mode", mode);
935 *caps &= ~capmask;
936 }
937
938 ret:
939 return pinctrl_state;
940 }
941
sdhci_omap_config_iodelay_pinctrl_state(struct sdhci_omap_host * omap_host)942 static int sdhci_omap_config_iodelay_pinctrl_state(struct sdhci_omap_host
943 *omap_host)
944 {
945 struct device *dev = omap_host->dev;
946 struct sdhci_host *host = omap_host->host;
947 struct mmc_host *mmc = host->mmc;
948 u32 *caps = &mmc->caps;
949 u32 *caps2 = &mmc->caps2;
950 struct pinctrl_state *state;
951 struct pinctrl_state **pinctrl_state;
952
953 if (!(omap_host->flags & SDHCI_OMAP_REQUIRE_IODELAY))
954 return 0;
955
956 pinctrl_state = devm_kcalloc(dev,
957 MMC_TIMING_MMC_HS200 + 1,
958 sizeof(*pinctrl_state),
959 GFP_KERNEL);
960 if (!pinctrl_state)
961 return -ENOMEM;
962
963 omap_host->pinctrl = devm_pinctrl_get(omap_host->dev);
964 if (IS_ERR(omap_host->pinctrl)) {
965 dev_err(dev, "Cannot get pinctrl\n");
966 return PTR_ERR(omap_host->pinctrl);
967 }
968
969 state = pinctrl_lookup_state(omap_host->pinctrl, "default");
970 if (IS_ERR(state)) {
971 dev_err(dev, "no pinctrl state for default mode\n");
972 return PTR_ERR(state);
973 }
974 pinctrl_state[MMC_TIMING_LEGACY] = state;
975
976 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "sdr104", caps,
977 MMC_CAP_UHS_SDR104);
978 if (!IS_ERR(state))
979 pinctrl_state[MMC_TIMING_UHS_SDR104] = state;
980
981 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "ddr50", caps,
982 MMC_CAP_UHS_DDR50);
983 if (!IS_ERR(state))
984 pinctrl_state[MMC_TIMING_UHS_DDR50] = state;
985
986 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "sdr50", caps,
987 MMC_CAP_UHS_SDR50);
988 if (!IS_ERR(state))
989 pinctrl_state[MMC_TIMING_UHS_SDR50] = state;
990
991 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "sdr25", caps,
992 MMC_CAP_UHS_SDR25);
993 if (!IS_ERR(state))
994 pinctrl_state[MMC_TIMING_UHS_SDR25] = state;
995
996 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "sdr12", caps,
997 MMC_CAP_UHS_SDR12);
998 if (!IS_ERR(state))
999 pinctrl_state[MMC_TIMING_UHS_SDR12] = state;
1000
1001 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "ddr_1_8v", caps,
1002 MMC_CAP_1_8V_DDR);
1003 if (!IS_ERR(state)) {
1004 pinctrl_state[MMC_TIMING_MMC_DDR52] = state;
1005 } else {
1006 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "ddr_3_3v",
1007 caps,
1008 MMC_CAP_3_3V_DDR);
1009 if (!IS_ERR(state))
1010 pinctrl_state[MMC_TIMING_MMC_DDR52] = state;
1011 }
1012
1013 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "hs", caps,
1014 MMC_CAP_SD_HIGHSPEED);
1015 if (!IS_ERR(state))
1016 pinctrl_state[MMC_TIMING_SD_HS] = state;
1017
1018 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "hs", caps,
1019 MMC_CAP_MMC_HIGHSPEED);
1020 if (!IS_ERR(state))
1021 pinctrl_state[MMC_TIMING_MMC_HS] = state;
1022
1023 state = sdhci_omap_iodelay_pinctrl_state(omap_host, "hs200_1_8v", caps2,
1024 MMC_CAP2_HS200_1_8V_SDR);
1025 if (!IS_ERR(state))
1026 pinctrl_state[MMC_TIMING_MMC_HS200] = state;
1027
1028 omap_host->pinctrl_state = pinctrl_state;
1029
1030 return 0;
1031 }
1032
1033 static const struct soc_device_attribute sdhci_omap_soc_devices[] = {
1034 {
1035 .machine = "DRA7[45]*",
1036 .revision = "ES1.[01]",
1037 },
1038 {
1039 /* sentinel */
1040 }
1041 };
1042
sdhci_omap_probe(struct platform_device * pdev)1043 static int sdhci_omap_probe(struct platform_device *pdev)
1044 {
1045 int ret;
1046 u32 offset;
1047 struct device *dev = &pdev->dev;
1048 struct sdhci_host *host;
1049 struct sdhci_pltfm_host *pltfm_host;
1050 struct sdhci_omap_host *omap_host;
1051 struct mmc_host *mmc;
1052 const struct of_device_id *match;
1053 struct sdhci_omap_data *data;
1054 const struct soc_device_attribute *soc;
1055
1056 match = of_match_device(omap_sdhci_match, dev);
1057 if (!match)
1058 return -EINVAL;
1059
1060 data = (struct sdhci_omap_data *)match->data;
1061 if (!data) {
1062 dev_err(dev, "no sdhci omap data\n");
1063 return -EINVAL;
1064 }
1065 offset = data->offset;
1066
1067 host = sdhci_pltfm_init(pdev, &sdhci_omap_pdata,
1068 sizeof(*omap_host));
1069 if (IS_ERR(host)) {
1070 dev_err(dev, "Failed sdhci_pltfm_init\n");
1071 return PTR_ERR(host);
1072 }
1073
1074 pltfm_host = sdhci_priv(host);
1075 omap_host = sdhci_pltfm_priv(pltfm_host);
1076 omap_host->host = host;
1077 omap_host->base = host->ioaddr;
1078 omap_host->dev = dev;
1079 omap_host->power_mode = MMC_POWER_UNDEFINED;
1080 omap_host->timing = MMC_TIMING_LEGACY;
1081 omap_host->flags = data->flags;
1082 host->ioaddr += offset;
1083
1084 mmc = host->mmc;
1085 sdhci_get_of_property(pdev);
1086 ret = mmc_of_parse(mmc);
1087 if (ret)
1088 goto err_pltfm_free;
1089
1090 soc = soc_device_match(sdhci_omap_soc_devices);
1091 if (soc) {
1092 omap_host->version = "rev11";
1093 if (!strcmp(dev_name(dev), "4809c000.mmc"))
1094 mmc->f_max = 96000000;
1095 if (!strcmp(dev_name(dev), "480b4000.mmc"))
1096 mmc->f_max = 48000000;
1097 if (!strcmp(dev_name(dev), "480ad000.mmc"))
1098 mmc->f_max = 48000000;
1099 }
1100
1101 pltfm_host->clk = devm_clk_get(dev, "fck");
1102 if (IS_ERR(pltfm_host->clk)) {
1103 ret = PTR_ERR(pltfm_host->clk);
1104 goto err_pltfm_free;
1105 }
1106
1107 ret = clk_set_rate(pltfm_host->clk, mmc->f_max);
1108 if (ret) {
1109 dev_err(dev, "failed to set clock to %d\n", mmc->f_max);
1110 goto err_pltfm_free;
1111 }
1112
1113 omap_host->pbias = devm_regulator_get_optional(dev, "pbias");
1114 if (IS_ERR(omap_host->pbias)) {
1115 ret = PTR_ERR(omap_host->pbias);
1116 if (ret != -ENODEV)
1117 goto err_pltfm_free;
1118 dev_dbg(dev, "unable to get pbias regulator %d\n", ret);
1119 }
1120 omap_host->pbias_enabled = false;
1121
1122 /*
1123 * omap_device_pm_domain has callbacks to enable the main
1124 * functional clock, interface clock and also configure the
1125 * SYSCONFIG register of omap devices. The callback will be invoked
1126 * as part of pm_runtime_get_sync.
1127 */
1128 pm_runtime_enable(dev);
1129 ret = pm_runtime_get_sync(dev);
1130 if (ret < 0) {
1131 dev_err(dev, "pm_runtime_get_sync failed\n");
1132 pm_runtime_put_noidle(dev);
1133 goto err_rpm_disable;
1134 }
1135
1136 ret = sdhci_omap_set_capabilities(omap_host);
1137 if (ret) {
1138 dev_err(dev, "failed to set system capabilities\n");
1139 goto err_put_sync;
1140 }
1141
1142 host->mmc_host_ops.get_ro = mmc_gpio_get_ro;
1143 host->mmc_host_ops.start_signal_voltage_switch =
1144 sdhci_omap_start_signal_voltage_switch;
1145 host->mmc_host_ops.set_ios = sdhci_omap_set_ios;
1146 host->mmc_host_ops.card_busy = sdhci_omap_card_busy;
1147 host->mmc_host_ops.execute_tuning = sdhci_omap_execute_tuning;
1148 host->mmc_host_ops.enable_sdio_irq = sdhci_omap_enable_sdio_irq;
1149
1150 /* R1B responses is required to properly manage HW busy detection. */
1151 mmc->caps |= MMC_CAP_NEED_RSP_BUSY;
1152
1153 ret = sdhci_setup_host(host);
1154 if (ret)
1155 goto err_put_sync;
1156
1157 ret = sdhci_omap_config_iodelay_pinctrl_state(omap_host);
1158 if (ret)
1159 goto err_cleanup_host;
1160
1161 ret = __sdhci_add_host(host);
1162 if (ret)
1163 goto err_cleanup_host;
1164
1165 return 0;
1166
1167 err_cleanup_host:
1168 sdhci_cleanup_host(host);
1169
1170 err_put_sync:
1171 pm_runtime_put_sync(dev);
1172
1173 err_rpm_disable:
1174 pm_runtime_disable(dev);
1175
1176 err_pltfm_free:
1177 sdhci_pltfm_free(pdev);
1178 return ret;
1179 }
1180
sdhci_omap_remove(struct platform_device * pdev)1181 static int sdhci_omap_remove(struct platform_device *pdev)
1182 {
1183 struct device *dev = &pdev->dev;
1184 struct sdhci_host *host = platform_get_drvdata(pdev);
1185
1186 sdhci_remove_host(host, true);
1187 pm_runtime_put_sync(dev);
1188 pm_runtime_disable(dev);
1189 sdhci_pltfm_free(pdev);
1190
1191 return 0;
1192 }
1193
1194 static struct platform_driver sdhci_omap_driver = {
1195 .probe = sdhci_omap_probe,
1196 .remove = sdhci_omap_remove,
1197 .driver = {
1198 .name = "sdhci-omap",
1199 .of_match_table = omap_sdhci_match,
1200 },
1201 };
1202
1203 module_platform_driver(sdhci_omap_driver);
1204
1205 MODULE_DESCRIPTION("SDHCI driver for OMAP SoCs");
1206 MODULE_AUTHOR("Texas Instruments Inc.");
1207 MODULE_LICENSE("GPL v2");
1208 MODULE_ALIAS("platform:sdhci_omap");
1209