drivers: power: report battery voltage in AOSP compatible format
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / mmc / host / omap_hsmmc.c
CommitLineData
a45c6cb8
MC
1/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
ac330f44 20#include <linux/kernel.h>
d900f712 21#include <linux/debugfs.h>
c5c98927 22#include <linux/dmaengine.h>
d900f712 23#include <linux/seq_file.h>
a45c6cb8
MC
24#include <linux/interrupt.h>
25#include <linux/delay.h>
26#include <linux/dma-mapping.h>
27#include <linux/platform_device.h>
a45c6cb8
MC
28#include <linux/timer.h>
29#include <linux/clk.h>
46856a68
RN
30#include <linux/of.h>
31#include <linux/of_gpio.h>
32#include <linux/of_device.h>
3451c067 33#include <linux/omap-dma.h>
a45c6cb8 34#include <linux/mmc/host.h>
13189e78 35#include <linux/mmc/core.h>
93caf8e6 36#include <linux/mmc/mmc.h>
a45c6cb8 37#include <linux/io.h>
db0fefc5
AH
38#include <linux/gpio.h>
39#include <linux/regulator/consumer.h>
46b76035 40#include <linux/pinctrl/consumer.h>
fa4aa2d4 41#include <linux/pm_runtime.h>
68f39e74 42#include <linux/platform_data/mmc-omap.h>
a45c6cb8
MC
43
44/* OMAP HSMMC Host Controller Registers */
11dd62a7 45#define OMAP_HSMMC_SYSSTATUS 0x0014
a45c6cb8
MC
46#define OMAP_HSMMC_CON 0x002C
47#define OMAP_HSMMC_BLK 0x0104
48#define OMAP_HSMMC_ARG 0x0108
49#define OMAP_HSMMC_CMD 0x010C
50#define OMAP_HSMMC_RSP10 0x0110
51#define OMAP_HSMMC_RSP32 0x0114
52#define OMAP_HSMMC_RSP54 0x0118
53#define OMAP_HSMMC_RSP76 0x011C
54#define OMAP_HSMMC_DATA 0x0120
55#define OMAP_HSMMC_HCTL 0x0128
56#define OMAP_HSMMC_SYSCTL 0x012C
57#define OMAP_HSMMC_STAT 0x0130
58#define OMAP_HSMMC_IE 0x0134
59#define OMAP_HSMMC_ISE 0x0138
60#define OMAP_HSMMC_CAPA 0x0140
61
62#define VS18 (1 << 26)
63#define VS30 (1 << 25)
cd587096 64#define HSS (1 << 21)
a45c6cb8
MC
65#define SDVS18 (0x5 << 9)
66#define SDVS30 (0x6 << 9)
eb250826 67#define SDVS33 (0x7 << 9)
1b331e69 68#define SDVS_MASK 0x00000E00
a45c6cb8
MC
69#define SDVSCLR 0xFFFFF1FF
70#define SDVSDET 0x00000400
71#define AUTOIDLE 0x1
72#define SDBP (1 << 8)
73#define DTO 0xe
74#define ICE 0x1
75#define ICS 0x2
76#define CEN (1 << 2)
77#define CLKD_MASK 0x0000FFC0
78#define CLKD_SHIFT 6
79#define DTO_MASK 0x000F0000
80#define DTO_SHIFT 16
a45c6cb8
MC
81#define INIT_STREAM (1 << 1)
82#define DP_SELECT (1 << 21)
83#define DDIR (1 << 4)
a7e96879 84#define DMAE 0x1
a45c6cb8
MC
85#define MSBS (1 << 5)
86#define BCE (1 << 1)
87#define FOUR_BIT (1 << 1)
cd587096 88#define HSPE (1 << 2)
03b5d924 89#define DDR (1 << 19)
73153010 90#define DW8 (1 << 5)
a45c6cb8 91#define OD 0x1
a45c6cb8
MC
92#define STAT_CLEAR 0xFFFFFFFF
93#define INIT_STREAM_CMD 0x00000000
94#define DUAL_VOLT_OCR_BIT 7
95#define SRC (1 << 25)
96#define SRD (1 << 26)
11dd62a7
DK
97#define SOFTRESET (1 << 1)
98#define RESETDONE (1 << 0)
a45c6cb8 99
a7e96879
V
100/* Interrupt masks for IE and ISE register */
101#define CC_EN (1 << 0)
102#define TC_EN (1 << 1)
103#define BWR_EN (1 << 4)
104#define BRR_EN (1 << 5)
105#define ERR_EN (1 << 15)
106#define CTO_EN (1 << 16)
107#define CCRC_EN (1 << 17)
108#define CEB_EN (1 << 18)
109#define CIE_EN (1 << 19)
110#define DTO_EN (1 << 20)
111#define DCRC_EN (1 << 21)
112#define DEB_EN (1 << 22)
113#define CERR_EN (1 << 28)
114#define BADA_EN (1 << 29)
115
116#define INT_EN_MASK (BADA_EN | CERR_EN | DEB_EN | DCRC_EN |\
117 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
118 BRR_EN | BWR_EN | TC_EN | CC_EN)
119
fa4aa2d4 120#define MMC_AUTOSUSPEND_DELAY 100
a45c6cb8 121#define MMC_TIMEOUT_MS 20
6b206efe
AS
122#define OMAP_MMC_MIN_CLOCK 400000
123#define OMAP_MMC_MAX_CLOCK 52000000
0005ae73 124#define DRIVER_NAME "omap_hsmmc"
a45c6cb8
MC
125
126/*
127 * One controller can have multiple slots, like on some omap boards using
128 * omap.c controller driver. Luckily this is not currently done on any known
129 * omap_hsmmc.c device.
130 */
131#define mmc_slot(host) (host->pdata->slots[host->slot_id])
132
133/*
134 * MMC Host controller read/write API's
135 */
136#define OMAP_HSMMC_READ(base, reg) \
137 __raw_readl((base) + OMAP_HSMMC_##reg)
138
139#define OMAP_HSMMC_WRITE(base, reg, val) \
140 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
141
9782aff8
PF
142struct omap_hsmmc_next {
143 unsigned int dma_len;
144 s32 cookie;
145};
146
70a3341a 147struct omap_hsmmc_host {
a45c6cb8
MC
148 struct device *dev;
149 struct mmc_host *mmc;
150 struct mmc_request *mrq;
151 struct mmc_command *cmd;
152 struct mmc_data *data;
153 struct clk *fclk;
a45c6cb8 154 struct clk *dbclk;
db0fefc5
AH
155 /*
156 * vcc == configured supply
157 * vcc_aux == optional
158 * - MMC1, supply for DAT4..DAT7
159 * - MMC2/MMC2, external level shifter voltage supply, for
160 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
161 */
162 struct regulator *vcc;
163 struct regulator *vcc_aux;
cf5ae40b 164 int pbias_disable;
a45c6cb8
MC
165 void __iomem *base;
166 resource_size_t mapbase;
4dffd7a2 167 spinlock_t irq_lock; /* Prevent races with irq handler */
a45c6cb8 168 unsigned int dma_len;
0ccd76d4 169 unsigned int dma_sg_idx;
a45c6cb8 170 unsigned char bus_mode;
a3621465 171 unsigned char power_mode;
a45c6cb8
MC
172 int suspended;
173 int irq;
a45c6cb8 174 int use_dma, dma_ch;
c5c98927
RK
175 struct dma_chan *tx_chan;
176 struct dma_chan *rx_chan;
a45c6cb8 177 int slot_id;
4a694dc9 178 int response_busy;
11dd62a7 179 int context_loss;
b62f6228
AH
180 int protect_card;
181 int reqs_blocked;
db0fefc5 182 int use_reg;
b417577d 183 int req_in_progress;
9782aff8 184 struct omap_hsmmc_next next_data;
11dd62a7 185
a45c6cb8
MC
186 struct omap_mmc_platform_data *pdata;
187};
188
db0fefc5
AH
189static int omap_hsmmc_card_detect(struct device *dev, int slot)
190{
9ea28ecb
B
191 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
192 struct omap_mmc_platform_data *mmc = host->pdata;
db0fefc5
AH
193
194 /* NOTE: assumes card detect signal is active-low */
195 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
196}
197
198static int omap_hsmmc_get_wp(struct device *dev, int slot)
199{
9ea28ecb
B
200 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
201 struct omap_mmc_platform_data *mmc = host->pdata;
db0fefc5
AH
202
203 /* NOTE: assumes write protect signal is active-high */
204 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
205}
206
207static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
208{
9ea28ecb
B
209 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
210 struct omap_mmc_platform_data *mmc = host->pdata;
db0fefc5
AH
211
212 /* NOTE: assumes card detect signal is active-low */
213 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
214}
215
216#ifdef CONFIG_PM
217
218static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
219{
9ea28ecb
B
220 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
221 struct omap_mmc_platform_data *mmc = host->pdata;
db0fefc5
AH
222
223 disable_irq(mmc->slots[0].card_detect_irq);
224 return 0;
225}
226
227static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
228{
9ea28ecb
B
229 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
230 struct omap_mmc_platform_data *mmc = host->pdata;
db0fefc5
AH
231
232 enable_irq(mmc->slots[0].card_detect_irq);
233 return 0;
234}
235
236#else
237
238#define omap_hsmmc_suspend_cdirq NULL
239#define omap_hsmmc_resume_cdirq NULL
240
241#endif
242
b702b106
AH
243#ifdef CONFIG_REGULATOR
244
69b07ece 245static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
db0fefc5
AH
246 int vdd)
247{
248 struct omap_hsmmc_host *host =
249 platform_get_drvdata(to_platform_device(dev));
250 int ret = 0;
251
252 /*
253 * If we don't see a Vcc regulator, assume it's a fixed
254 * voltage always-on regulator.
255 */
256 if (!host->vcc)
257 return 0;
1f84b71b 258 /*
cf5ae40b 259 * With DT, never turn OFF the regulator for MMC1. This is because
1f84b71b
RN
260 * the pbias cell programming support is still missing when
261 * booting with Device tree
262 */
cf5ae40b 263 if (host->pbias_disable && !vdd)
1f84b71b 264 return 0;
db0fefc5
AH
265
266 if (mmc_slot(host).before_set_reg)
267 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
268
269 /*
270 * Assume Vcc regulator is used only to power the card ... OMAP
271 * VDDS is used to power the pins, optionally with a transceiver to
272 * support cards using voltages other than VDDS (1.8V nominal). When a
273 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
274 *
275 * In some cases this regulator won't support enable/disable;
276 * e.g. it's a fixed rail for a WLAN chip.
277 *
278 * In other cases vcc_aux switches interface power. Example, for
279 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
280 * chips/cards need an interface voltage rail too.
281 */
282 if (power_on) {
99fc5131 283 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
db0fefc5
AH
284 /* Enable interface voltage rail, if needed */
285 if (ret == 0 && host->vcc_aux) {
286 ret = regulator_enable(host->vcc_aux);
287 if (ret < 0)
99fc5131
LW
288 ret = mmc_regulator_set_ocr(host->mmc,
289 host->vcc, 0);
db0fefc5
AH
290 }
291 } else {
99fc5131 292 /* Shut down the rail */
6da20c89
AH
293 if (host->vcc_aux)
294 ret = regulator_disable(host->vcc_aux);
99fc5131
LW
295 if (!ret) {
296 /* Then proceed to shut down the local regulator */
297 ret = mmc_regulator_set_ocr(host->mmc,
298 host->vcc, 0);
299 }
db0fefc5
AH
300 }
301
302 if (mmc_slot(host).after_set_reg)
303 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
304
305 return ret;
306}
307
db0fefc5
AH
308static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
309{
310 struct regulator *reg;
64be9782 311 int ocr_value = 0;
db0fefc5 312
db0fefc5
AH
313 reg = regulator_get(host->dev, "vmmc");
314 if (IS_ERR(reg)) {
b1e056ae 315 dev_err(host->dev, "vmmc regulator missing\n");
1fdc90fb 316 return PTR_ERR(reg);
db0fefc5 317 } else {
1fdc90fb 318 mmc_slot(host).set_power = omap_hsmmc_set_power;
db0fefc5 319 host->vcc = reg;
64be9782 320 ocr_value = mmc_regulator_get_ocrmask(reg);
321 if (!mmc_slot(host).ocr_mask) {
322 mmc_slot(host).ocr_mask = ocr_value;
323 } else {
324 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
2cecdf00 325 dev_err(host->dev, "ocrmask %x is not supported\n",
e3f1adb6 326 mmc_slot(host).ocr_mask);
64be9782 327 mmc_slot(host).ocr_mask = 0;
328 return -EINVAL;
329 }
330 }
db0fefc5
AH
331
332 /* Allow an aux regulator */
333 reg = regulator_get(host->dev, "vmmc_aux");
334 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
335
b1c1df7a
B
336 /* For eMMC do not power off when not in sleep state */
337 if (mmc_slot(host).no_regulator_off_init)
338 return 0;
db0fefc5
AH
339 /*
340 * UGLY HACK: workaround regulator framework bugs.
341 * When the bootloader leaves a supply active, it's
342 * initialized with zero usecount ... and we can't
343 * disable it without first enabling it. Until the
344 * framework is fixed, we need a workaround like this
345 * (which is safe for MMC, but not in general).
346 */
e840ce13
AH
347 if (regulator_is_enabled(host->vcc) > 0 ||
348 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
349 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
350
351 mmc_slot(host).set_power(host->dev, host->slot_id,
352 1, vdd);
353 mmc_slot(host).set_power(host->dev, host->slot_id,
354 0, 0);
db0fefc5
AH
355 }
356 }
357
358 return 0;
db0fefc5
AH
359}
360
361static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
362{
363 regulator_put(host->vcc);
364 regulator_put(host->vcc_aux);
365 mmc_slot(host).set_power = NULL;
db0fefc5
AH
366}
367
b702b106
AH
368static inline int omap_hsmmc_have_reg(void)
369{
370 return 1;
371}
372
373#else
374
375static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
376{
377 return -EINVAL;
378}
379
380static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
381{
382}
383
384static inline int omap_hsmmc_have_reg(void)
385{
386 return 0;
387}
388
389#endif
390
391static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
392{
393 int ret;
394
395 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
b702b106
AH
396 if (pdata->slots[0].cover)
397 pdata->slots[0].get_cover_state =
398 omap_hsmmc_get_cover_state;
399 else
400 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
401 pdata->slots[0].card_detect_irq =
402 gpio_to_irq(pdata->slots[0].switch_pin);
403 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
404 if (ret)
405 return ret;
406 ret = gpio_direction_input(pdata->slots[0].switch_pin);
407 if (ret)
408 goto err_free_sp;
409 } else
410 pdata->slots[0].switch_pin = -EINVAL;
411
412 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
413 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
414 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
415 if (ret)
416 goto err_free_cd;
417 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
418 if (ret)
419 goto err_free_wp;
420 } else
421 pdata->slots[0].gpio_wp = -EINVAL;
422
423 return 0;
424
425err_free_wp:
426 gpio_free(pdata->slots[0].gpio_wp);
427err_free_cd:
428 if (gpio_is_valid(pdata->slots[0].switch_pin))
429err_free_sp:
430 gpio_free(pdata->slots[0].switch_pin);
431 return ret;
432}
433
434static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
435{
436 if (gpio_is_valid(pdata->slots[0].gpio_wp))
437 gpio_free(pdata->slots[0].gpio_wp);
438 if (gpio_is_valid(pdata->slots[0].switch_pin))
439 gpio_free(pdata->slots[0].switch_pin);
440}
441
e0c7f99b
AS
442/*
443 * Start clock to the card
444 */
445static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
446{
447 OMAP_HSMMC_WRITE(host->base, SYSCTL,
448 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
449}
450
a45c6cb8
MC
451/*
452 * Stop clock to the card
453 */
70a3341a 454static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
a45c6cb8
MC
455{
456 OMAP_HSMMC_WRITE(host->base, SYSCTL,
457 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
458 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
7122bbb0 459 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
a45c6cb8
MC
460}
461
93caf8e6
AH
462static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
463 struct mmc_command *cmd)
b417577d
AH
464{
465 unsigned int irq_mask;
466
467 if (host->use_dma)
a7e96879 468 irq_mask = INT_EN_MASK & ~(BRR_EN | BWR_EN);
b417577d
AH
469 else
470 irq_mask = INT_EN_MASK;
471
93caf8e6
AH
472 /* Disable timeout for erases */
473 if (cmd->opcode == MMC_ERASE)
a7e96879 474 irq_mask &= ~DTO_EN;
93caf8e6 475
b417577d
AH
476 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
477 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
478 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
479}
480
481static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
482{
483 OMAP_HSMMC_WRITE(host->base, ISE, 0);
484 OMAP_HSMMC_WRITE(host->base, IE, 0);
485 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
486}
487
ac330f44 488/* Calculate divisor for the given clock frequency */
d83b6e03 489static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
ac330f44
AS
490{
491 u16 dsor = 0;
492
493 if (ios->clock) {
d83b6e03 494 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
ac330f44
AS
495 if (dsor > 250)
496 dsor = 250;
497 }
498
499 return dsor;
500}
501
5934df2f
AS
502static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
503{
504 struct mmc_ios *ios = &host->mmc->ios;
505 unsigned long regval;
506 unsigned long timeout;
cd587096 507 unsigned long clkdiv;
5934df2f 508
8986d31b 509 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
5934df2f
AS
510
511 omap_hsmmc_stop_clock(host);
512
513 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
514 regval = regval & ~(CLKD_MASK | DTO_MASK);
cd587096
HG
515 clkdiv = calc_divisor(host, ios);
516 regval = regval | (clkdiv << 6) | (DTO << 16);
5934df2f
AS
517 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
518 OMAP_HSMMC_WRITE(host->base, SYSCTL,
519 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
520
521 /* Wait till the ICS bit is set */
522 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
523 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
524 && time_before(jiffies, timeout))
525 cpu_relax();
526
cd587096
HG
527 /*
528 * Enable High-Speed Support
529 * Pre-Requisites
530 * - Controller should support High-Speed-Enable Bit
531 * - Controller should not be using DDR Mode
532 * - Controller should advertise that it supports High Speed
533 * in capabilities register
534 * - MMC/SD clock coming out of controller > 25MHz
535 */
536 if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) &&
537 (ios->timing != MMC_TIMING_UHS_DDR50) &&
538 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
539 regval = OMAP_HSMMC_READ(host->base, HCTL);
540 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
541 regval |= HSPE;
542 else
543 regval &= ~HSPE;
544
545 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
546 }
547
5934df2f
AS
548 omap_hsmmc_start_clock(host);
549}
550
3796fb8a
AS
551static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
552{
553 struct mmc_ios *ios = &host->mmc->ios;
554 u32 con;
555
556 con = OMAP_HSMMC_READ(host->base, CON);
03b5d924
B
557 if (ios->timing == MMC_TIMING_UHS_DDR50)
558 con |= DDR; /* configure in DDR mode */
559 else
560 con &= ~DDR;
3796fb8a
AS
561 switch (ios->bus_width) {
562 case MMC_BUS_WIDTH_8:
563 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
564 break;
565 case MMC_BUS_WIDTH_4:
566 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
567 OMAP_HSMMC_WRITE(host->base, HCTL,
568 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
569 break;
570 case MMC_BUS_WIDTH_1:
571 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
572 OMAP_HSMMC_WRITE(host->base, HCTL,
573 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
574 break;
575 }
576}
577
578static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
579{
580 struct mmc_ios *ios = &host->mmc->ios;
581 u32 con;
582
583 con = OMAP_HSMMC_READ(host->base, CON);
584 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
585 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
586 else
587 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
588}
589
11dd62a7
DK
590#ifdef CONFIG_PM
591
592/*
593 * Restore the MMC host context, if it was lost as result of a
594 * power state change.
595 */
70a3341a 596static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
11dd62a7
DK
597{
598 struct mmc_ios *ios = &host->mmc->ios;
599 struct omap_mmc_platform_data *pdata = host->pdata;
600 int context_loss = 0;
3796fb8a 601 u32 hctl, capa;
11dd62a7
DK
602 unsigned long timeout;
603
604 if (pdata->get_context_loss_count) {
605 context_loss = pdata->get_context_loss_count(host->dev);
606 if (context_loss < 0)
607 return 1;
608 }
609
610 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
611 context_loss == host->context_loss ? "not " : "");
612 if (host->context_loss == context_loss)
613 return 1;
614
6c31b215
V
615 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
616 return 1;
11dd62a7 617
c2200efb 618 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
11dd62a7
DK
619 if (host->power_mode != MMC_POWER_OFF &&
620 (1 << ios->vdd) <= MMC_VDD_23_24)
621 hctl = SDVS18;
622 else
623 hctl = SDVS30;
624 capa = VS30 | VS18;
625 } else {
626 hctl = SDVS18;
627 capa = VS18;
628 }
629
630 OMAP_HSMMC_WRITE(host->base, HCTL,
631 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
632
633 OMAP_HSMMC_WRITE(host->base, CAPA,
634 OMAP_HSMMC_READ(host->base, CAPA) | capa);
635
636 OMAP_HSMMC_WRITE(host->base, HCTL,
637 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
638
639 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
640 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
641 && time_before(jiffies, timeout))
642 ;
643
b417577d 644 omap_hsmmc_disable_irq(host);
11dd62a7
DK
645
646 /* Do not initialize card-specific things if the power is off */
647 if (host->power_mode == MMC_POWER_OFF)
648 goto out;
649
3796fb8a 650 omap_hsmmc_set_bus_width(host);
11dd62a7 651
5934df2f 652 omap_hsmmc_set_clock(host);
11dd62a7 653
3796fb8a
AS
654 omap_hsmmc_set_bus_mode(host);
655
11dd62a7
DK
656out:
657 host->context_loss = context_loss;
658
659 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
660 return 0;
661}
662
663/*
664 * Save the MMC host context (store the number of power state changes so far).
665 */
70a3341a 666static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
11dd62a7
DK
667{
668 struct omap_mmc_platform_data *pdata = host->pdata;
669 int context_loss;
670
671 if (pdata->get_context_loss_count) {
672 context_loss = pdata->get_context_loss_count(host->dev);
673 if (context_loss < 0)
674 return;
675 host->context_loss = context_loss;
676 }
677}
678
679#else
680
70a3341a 681static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
11dd62a7
DK
682{
683 return 0;
684}
685
70a3341a 686static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
11dd62a7
DK
687{
688}
689
690#endif
691
a45c6cb8
MC
692/*
693 * Send init stream sequence to card
694 * before sending IDLE command
695 */
70a3341a 696static void send_init_stream(struct omap_hsmmc_host *host)
a45c6cb8
MC
697{
698 int reg = 0;
699 unsigned long timeout;
700
b62f6228
AH
701 if (host->protect_card)
702 return;
703
a45c6cb8 704 disable_irq(host->irq);
b417577d
AH
705
706 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
a45c6cb8
MC
707 OMAP_HSMMC_WRITE(host->base, CON,
708 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
709 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
710
711 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
a7e96879
V
712 while ((reg != CC_EN) && time_before(jiffies, timeout))
713 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
a45c6cb8
MC
714
715 OMAP_HSMMC_WRITE(host->base, CON,
716 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
c653a6d4
AH
717
718 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
719 OMAP_HSMMC_READ(host->base, STAT);
720
a45c6cb8
MC
721 enable_irq(host->irq);
722}
723
724static inline
70a3341a 725int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
a45c6cb8
MC
726{
727 int r = 1;
728
191d1f1d
DK
729 if (mmc_slot(host).get_cover_state)
730 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
a45c6cb8
MC
731 return r;
732}
733
734static ssize_t
70a3341a 735omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
a45c6cb8
MC
736 char *buf)
737{
738 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
70a3341a 739 struct omap_hsmmc_host *host = mmc_priv(mmc);
a45c6cb8 740
70a3341a
DK
741 return sprintf(buf, "%s\n",
742 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
a45c6cb8
MC
743}
744
70a3341a 745static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
a45c6cb8
MC
746
747static ssize_t
70a3341a 748omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
a45c6cb8
MC
749 char *buf)
750{
751 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
70a3341a 752 struct omap_hsmmc_host *host = mmc_priv(mmc);
a45c6cb8 753
191d1f1d 754 return sprintf(buf, "%s\n", mmc_slot(host).name);
a45c6cb8
MC
755}
756
70a3341a 757static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
a45c6cb8
MC
758
759/*
760 * Configure the response type and send the cmd.
761 */
762static void
70a3341a 763omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
a45c6cb8
MC
764 struct mmc_data *data)
765{
766 int cmdreg = 0, resptype = 0, cmdtype = 0;
767
8986d31b 768 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
a45c6cb8
MC
769 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
770 host->cmd = cmd;
771
93caf8e6 772 omap_hsmmc_enable_irq(host, cmd);
a45c6cb8 773
4a694dc9 774 host->response_busy = 0;
a45c6cb8
MC
775 if (cmd->flags & MMC_RSP_PRESENT) {
776 if (cmd->flags & MMC_RSP_136)
777 resptype = 1;
4a694dc9
AH
778 else if (cmd->flags & MMC_RSP_BUSY) {
779 resptype = 3;
780 host->response_busy = 1;
781 } else
a45c6cb8
MC
782 resptype = 2;
783 }
784
785 /*
786 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
787 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
788 * a val of 0x3, rest 0x0.
789 */
790 if (cmd == host->mrq->stop)
791 cmdtype = 0x3;
792
793 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
794
795 if (data) {
796 cmdreg |= DP_SELECT | MSBS | BCE;
797 if (data->flags & MMC_DATA_READ)
798 cmdreg |= DDIR;
799 else
800 cmdreg &= ~(DDIR);
801 }
802
803 if (host->use_dma)
a7e96879 804 cmdreg |= DMAE;
a45c6cb8 805
b417577d 806 host->req_in_progress = 1;
4dffd7a2 807
a45c6cb8
MC
808 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
809 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
810}
811
0ccd76d4 812static int
70a3341a 813omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
0ccd76d4
JY
814{
815 if (data->flags & MMC_DATA_WRITE)
816 return DMA_TO_DEVICE;
817 else
818 return DMA_FROM_DEVICE;
819}
820
c5c98927
RK
821static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
822 struct mmc_data *data)
823{
824 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
825}
826
b417577d
AH
827static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
828{
829 int dma_ch;
31463b14 830 unsigned long flags;
b417577d 831
31463b14 832 spin_lock_irqsave(&host->irq_lock, flags);
b417577d
AH
833 host->req_in_progress = 0;
834 dma_ch = host->dma_ch;
31463b14 835 spin_unlock_irqrestore(&host->irq_lock, flags);
b417577d
AH
836
837 omap_hsmmc_disable_irq(host);
838 /* Do not complete the request if DMA is still in progress */
839 if (mrq->data && host->use_dma && dma_ch != -1)
840 return;
841 host->mrq = NULL;
842 mmc_request_done(host->mmc, mrq);
843}
844
a45c6cb8
MC
845/*
846 * Notify the transfer complete to MMC core
847 */
848static void
70a3341a 849omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
a45c6cb8 850{
4a694dc9
AH
851 if (!data) {
852 struct mmc_request *mrq = host->mrq;
853
23050103
AH
854 /* TC before CC from CMD6 - don't know why, but it happens */
855 if (host->cmd && host->cmd->opcode == 6 &&
856 host->response_busy) {
857 host->response_busy = 0;
858 return;
859 }
860
b417577d 861 omap_hsmmc_request_done(host, mrq);
4a694dc9
AH
862 return;
863 }
864
a45c6cb8
MC
865 host->data = NULL;
866
a45c6cb8
MC
867 if (!data->error)
868 data->bytes_xfered += data->blocks * (data->blksz);
869 else
870 data->bytes_xfered = 0;
871
fe852273 872 if (!data->stop) {
b417577d 873 omap_hsmmc_request_done(host, data->mrq);
fe852273 874 return;
a45c6cb8 875 }
fe852273 876 omap_hsmmc_start_command(host, data->stop, NULL);
a45c6cb8
MC
877}
878
879/*
880 * Notify the core about command completion
881 */
882static void
70a3341a 883omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
a45c6cb8
MC
884{
885 host->cmd = NULL;
886
887 if (cmd->flags & MMC_RSP_PRESENT) {
888 if (cmd->flags & MMC_RSP_136) {
889 /* response type 2 */
890 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
891 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
892 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
893 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
894 } else {
895 /* response types 1, 1b, 3, 4, 5, 6 */
896 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
897 }
898 }
b417577d
AH
899 if ((host->data == NULL && !host->response_busy) || cmd->error)
900 omap_hsmmc_request_done(host, cmd->mrq);
a45c6cb8
MC
901}
902
903/*
904 * DMA clean up for command errors
905 */
70a3341a 906static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
a45c6cb8 907{
b417577d 908 int dma_ch;
31463b14 909 unsigned long flags;
b417577d 910
82788ff5 911 host->data->error = errno;
a45c6cb8 912
31463b14 913 spin_lock_irqsave(&host->irq_lock, flags);
b417577d
AH
914 dma_ch = host->dma_ch;
915 host->dma_ch = -1;
31463b14 916 spin_unlock_irqrestore(&host->irq_lock, flags);
b417577d
AH
917
918 if (host->use_dma && dma_ch != -1) {
c5c98927
RK
919 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
920
921 dmaengine_terminate_all(chan);
922 dma_unmap_sg(chan->device->dev,
923 host->data->sg, host->data->sg_len,
70a3341a 924 omap_hsmmc_get_dma_dir(host, host->data));
c5c98927 925
053bf34f 926 host->data->host_cookie = 0;
a45c6cb8
MC
927 }
928 host->data = NULL;
a45c6cb8
MC
929}
930
931/*
932 * Readable error output
933 */
934#ifdef CONFIG_MMC_DEBUG
699b958b 935static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
a45c6cb8
MC
936{
937 /* --- means reserved bit without definition at documentation */
70a3341a 938 static const char *omap_hsmmc_status_bits[] = {
699b958b
AH
939 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
940 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
941 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
942 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
a45c6cb8
MC
943 };
944 char res[256];
945 char *buf = res;
946 int len, i;
947
948 len = sprintf(buf, "MMC IRQ 0x%x :", status);
949 buf += len;
950
70a3341a 951 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
a45c6cb8 952 if (status & (1 << i)) {
70a3341a 953 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
a45c6cb8
MC
954 buf += len;
955 }
956
8986d31b 957 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
a45c6cb8 958}
699b958b
AH
959#else
960static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
961 u32 status)
962{
963}
a45c6cb8
MC
964#endif /* CONFIG_MMC_DEBUG */
965
3ebf74b1
JP
966/*
967 * MMC controller internal state machines reset
968 *
969 * Used to reset command or data internal state machines, using respectively
970 * SRC or SRD bit of SYSCTL register
971 * Can be called from interrupt context
972 */
70a3341a
DK
973static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
974 unsigned long bit)
3ebf74b1
JP
975{
976 unsigned long i = 0;
977 unsigned long limit = (loops_per_jiffy *
978 msecs_to_jiffies(MMC_TIMEOUT_MS));
979
980 OMAP_HSMMC_WRITE(host->base, SYSCTL,
981 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
982
07ad64b6
MC
983 /*
984 * OMAP4 ES2 and greater has an updated reset logic.
985 * Monitor a 0->1 transition first
986 */
987 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
b432b4b3 988 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
07ad64b6
MC
989 && (i++ < limit))
990 cpu_relax();
991 }
992 i = 0;
993
3ebf74b1
JP
994 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
995 (i++ < limit))
996 cpu_relax();
997
998 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
999 dev_err(mmc_dev(host->mmc),
1000 "Timeout waiting on controller reset in %s\n",
1001 __func__);
1002}
a45c6cb8 1003
25e1897b
B
1004static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1005 int err, int end_cmd)
ae4bf788 1006{
25e1897b 1007 if (end_cmd) {
94d4f272 1008 omap_hsmmc_reset_controller_fsm(host, SRC);
25e1897b
B
1009 if (host->cmd)
1010 host->cmd->error = err;
1011 }
ae4bf788
V
1012
1013 if (host->data) {
1014 omap_hsmmc_reset_controller_fsm(host, SRD);
1015 omap_hsmmc_dma_cleanup(host, err);
dc7745bd
B
1016 } else if (host->mrq && host->mrq->cmd)
1017 host->mrq->cmd->error = err;
ae4bf788
V
1018}
1019
b417577d 1020static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
a45c6cb8 1021{
a45c6cb8 1022 struct mmc_data *data;
b417577d
AH
1023 int end_cmd = 0, end_trans = 0;
1024
a45c6cb8 1025 data = host->data;
8986d31b 1026 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
a45c6cb8 1027
a7e96879 1028 if (status & ERR_EN) {
699b958b 1029 omap_hsmmc_dbg_report_irq(host, status);
25e1897b 1030
a7e96879 1031 if (status & (CTO_EN | CCRC_EN))
25e1897b 1032 end_cmd = 1;
a7e96879 1033 if (status & (CTO_EN | DTO_EN))
25e1897b 1034 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
a7e96879 1035 else if (status & (CCRC_EN | DCRC_EN))
25e1897b 1036 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
ae4bf788 1037
ae4bf788 1038 if (host->data || host->response_busy) {
25e1897b 1039 end_trans = !end_cmd;
ae4bf788 1040 host->response_busy = 0;
a45c6cb8
MC
1041 }
1042 }
1043
a7e96879 1044 if (end_cmd || ((status & CC_EN) && host->cmd))
70a3341a 1045 omap_hsmmc_cmd_done(host, host->cmd);
a7e96879 1046 if ((end_trans || (status & TC_EN)) && host->mrq)
70a3341a 1047 omap_hsmmc_xfer_done(host, data);
b417577d 1048}
a45c6cb8 1049
b417577d
AH
1050/*
1051 * MMC controller IRQ handler
1052 */
1053static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1054{
1055 struct omap_hsmmc_host *host = dev_id;
1056 int status;
1057
1058 status = OMAP_HSMMC_READ(host->base, STAT);
1f6b9fa4 1059 while (status & INT_EN_MASK && host->req_in_progress) {
b417577d 1060 omap_hsmmc_do_irq(host, status);
1f6b9fa4 1061
b417577d 1062 /* Flush posted write */
1f6b9fa4 1063 OMAP_HSMMC_WRITE(host->base, STAT, status);
b417577d 1064 status = OMAP_HSMMC_READ(host->base, STAT);
1f6b9fa4 1065 }
4dffd7a2 1066
a45c6cb8
MC
1067 return IRQ_HANDLED;
1068}
1069
70a3341a 1070static void set_sd_bus_power(struct omap_hsmmc_host *host)
e13bb300
AH
1071{
1072 unsigned long i;
1073
1074 OMAP_HSMMC_WRITE(host->base, HCTL,
1075 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1076 for (i = 0; i < loops_per_jiffy; i++) {
1077 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1078 break;
1079 cpu_relax();
1080 }
1081}
1082
a45c6cb8 1083/*
eb250826
DB
1084 * Switch MMC interface voltage ... only relevant for MMC1.
1085 *
1086 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1087 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1088 * Some chips, like eMMC ones, use internal transceivers.
a45c6cb8 1089 */
70a3341a 1090static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
a45c6cb8
MC
1091{
1092 u32 reg_val = 0;
1093 int ret;
1094
1095 /* Disable the clocks */
fa4aa2d4 1096 pm_runtime_put_sync(host->dev);
cd03d9a8 1097 if (host->dbclk)
94c18149 1098 clk_disable_unprepare(host->dbclk);
a45c6cb8
MC
1099
1100 /* Turn the power off */
1101 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
a45c6cb8
MC
1102
1103 /* Turn the power ON with given VDD 1.8 or 3.0v */
2bec0893
AH
1104 if (!ret)
1105 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1106 vdd);
fa4aa2d4 1107 pm_runtime_get_sync(host->dev);
cd03d9a8 1108 if (host->dbclk)
94c18149 1109 clk_prepare_enable(host->dbclk);
2bec0893 1110
a45c6cb8
MC
1111 if (ret != 0)
1112 goto err;
1113
a45c6cb8
MC
1114 OMAP_HSMMC_WRITE(host->base, HCTL,
1115 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1116 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
eb250826 1117
a45c6cb8
MC
1118 /*
1119 * If a MMC dual voltage card is detected, the set_ios fn calls
1120 * this fn with VDD bit set for 1.8V. Upon card removal from the
70a3341a 1121 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
a45c6cb8 1122 *
eb250826
DB
1123 * Cope with a bit of slop in the range ... per data sheets:
1124 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1125 * but recommended values are 1.71V to 1.89V
1126 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1127 * but recommended values are 2.7V to 3.3V
1128 *
1129 * Board setup code shouldn't permit anything very out-of-range.
1130 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1131 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
a45c6cb8 1132 */
eb250826 1133 if ((1 << vdd) <= MMC_VDD_23_24)
a45c6cb8 1134 reg_val |= SDVS18;
eb250826
DB
1135 else
1136 reg_val |= SDVS30;
a45c6cb8
MC
1137
1138 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
e13bb300 1139 set_sd_bus_power(host);
a45c6cb8
MC
1140
1141 return 0;
1142err:
b1e056ae 1143 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
a45c6cb8
MC
1144 return ret;
1145}
1146
b62f6228
AH
1147/* Protect the card while the cover is open */
1148static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1149{
1150 if (!mmc_slot(host).get_cover_state)
1151 return;
1152
1153 host->reqs_blocked = 0;
1154 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1155 if (host->protect_card) {
2cecdf00 1156 dev_info(host->dev, "%s: cover is closed, "
b62f6228
AH
1157 "card is now accessible\n",
1158 mmc_hostname(host->mmc));
1159 host->protect_card = 0;
1160 }
1161 } else {
1162 if (!host->protect_card) {
2cecdf00 1163 dev_info(host->dev, "%s: cover is open, "
b62f6228
AH
1164 "card is now inaccessible\n",
1165 mmc_hostname(host->mmc));
1166 host->protect_card = 1;
1167 }
1168 }
1169}
1170
a45c6cb8 1171/*
7efab4f3 1172 * irq handler to notify the core about card insertion/removal
a45c6cb8 1173 */
7efab4f3 1174static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
a45c6cb8 1175{
7efab4f3 1176 struct omap_hsmmc_host *host = dev_id;
249d0fa9 1177 struct omap_mmc_slot_data *slot = &mmc_slot(host);
a6b2240d
AH
1178 int carddetect;
1179
1180 if (host->suspended)
7efab4f3 1181 return IRQ_HANDLED;
a6b2240d
AH
1182
1183 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
249d0fa9 1184
191d1f1d 1185 if (slot->card_detect)
db0fefc5 1186 carddetect = slot->card_detect(host->dev, host->slot_id);
b62f6228
AH
1187 else {
1188 omap_hsmmc_protect_card(host);
a6b2240d 1189 carddetect = -ENOSYS;
b62f6228 1190 }
a45c6cb8 1191
cdeebadd 1192 if (carddetect)
a45c6cb8 1193 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
cdeebadd 1194 else
a45c6cb8 1195 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
a45c6cb8
MC
1196 return IRQ_HANDLED;
1197}
1198
c5c98927 1199static void omap_hsmmc_dma_callback(void *param)
a45c6cb8 1200{
c5c98927
RK
1201 struct omap_hsmmc_host *host = param;
1202 struct dma_chan *chan;
770d7432 1203 struct mmc_data *data;
c5c98927 1204 int req_in_progress;
a45c6cb8 1205
c5c98927 1206 spin_lock_irq(&host->irq_lock);
b417577d 1207 if (host->dma_ch < 0) {
c5c98927 1208 spin_unlock_irq(&host->irq_lock);
a45c6cb8 1209 return;
b417577d 1210 }
a45c6cb8 1211
770d7432 1212 data = host->mrq->data;
c5c98927 1213 chan = omap_hsmmc_get_dma_chan(host, data);
9782aff8 1214 if (!data->host_cookie)
c5c98927
RK
1215 dma_unmap_sg(chan->device->dev,
1216 data->sg, data->sg_len,
9782aff8 1217 omap_hsmmc_get_dma_dir(host, data));
b417577d
AH
1218
1219 req_in_progress = host->req_in_progress;
a45c6cb8 1220 host->dma_ch = -1;
c5c98927 1221 spin_unlock_irq(&host->irq_lock);
b417577d
AH
1222
1223 /* If DMA has finished after TC, complete the request */
1224 if (!req_in_progress) {
1225 struct mmc_request *mrq = host->mrq;
1226
1227 host->mrq = NULL;
1228 mmc_request_done(host->mmc, mrq);
1229 }
a45c6cb8
MC
1230}
1231
9782aff8
PF
1232static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1233 struct mmc_data *data,
c5c98927 1234 struct omap_hsmmc_next *next,
26b88520 1235 struct dma_chan *chan)
9782aff8
PF
1236{
1237 int dma_len;
1238
1239 if (!next && data->host_cookie &&
1240 data->host_cookie != host->next_data.cookie) {
2cecdf00 1241 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
9782aff8
PF
1242 " host->next_data.cookie %d\n",
1243 __func__, data->host_cookie, host->next_data.cookie);
1244 data->host_cookie = 0;
1245 }
1246
1247 /* Check if next job is already prepared */
1248 if (next ||
1249 (!next && data->host_cookie != host->next_data.cookie)) {
26b88520 1250 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
9782aff8
PF
1251 omap_hsmmc_get_dma_dir(host, data));
1252
1253 } else {
1254 dma_len = host->next_data.dma_len;
1255 host->next_data.dma_len = 0;
1256 }
1257
1258
1259 if (dma_len == 0)
1260 return -EINVAL;
1261
1262 if (next) {
1263 next->dma_len = dma_len;
1264 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1265 } else
1266 host->dma_len = dma_len;
1267
1268 return 0;
1269}
1270
a45c6cb8
MC
1271/*
1272 * Routine to configure and start DMA for the MMC card
1273 */
70a3341a
DK
1274static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1275 struct mmc_request *req)
a45c6cb8 1276{
26b88520
RK
1277 struct dma_slave_config cfg;
1278 struct dma_async_tx_descriptor *tx;
1279 int ret = 0, i;
a45c6cb8 1280 struct mmc_data *data = req->data;
c5c98927 1281 struct dma_chan *chan;
a45c6cb8 1282
0ccd76d4 1283 /* Sanity check: all the SG entries must be aligned by block size. */
a3f406f8 1284 for (i = 0; i < data->sg_len; i++) {
0ccd76d4
JY
1285 struct scatterlist *sgl;
1286
1287 sgl = data->sg + i;
1288 if (sgl->length % data->blksz)
1289 return -EINVAL;
1290 }
1291 if ((data->blksz % 4) != 0)
1292 /* REVISIT: The MMC buffer increments only when MSB is written.
1293 * Return error for blksz which is non multiple of four.
1294 */
1295 return -EINVAL;
1296
b417577d 1297 BUG_ON(host->dma_ch != -1);
a45c6cb8 1298
c5c98927 1299 chan = omap_hsmmc_get_dma_chan(host, data);
c5c98927 1300
26b88520
RK
1301 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1302 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1303 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1304 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1305 cfg.src_maxburst = data->blksz / 4;
1306 cfg.dst_maxburst = data->blksz / 4;
c5c98927 1307
26b88520
RK
1308 ret = dmaengine_slave_config(chan, &cfg);
1309 if (ret)
a45c6cb8 1310 return ret;
c5c98927 1311
26b88520 1312 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
9782aff8
PF
1313 if (ret)
1314 return ret;
a45c6cb8 1315
26b88520
RK
1316 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1317 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1318 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1319 if (!tx) {
1320 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1321 /* FIXME: cleanup */
1322 return -1;
1323 }
a45c6cb8 1324
26b88520
RK
1325 tx->callback = omap_hsmmc_dma_callback;
1326 tx->callback_param = host;
a45c6cb8 1327
26b88520
RK
1328 /* Does not fail */
1329 dmaengine_submit(tx);
c5c98927 1330
26b88520 1331 host->dma_ch = 1;
c5c98927 1332
26b88520 1333 dma_async_issue_pending(chan);
a45c6cb8 1334
a45c6cb8
MC
1335 return 0;
1336}
1337
70a3341a 1338static void set_data_timeout(struct omap_hsmmc_host *host,
e2bf08d6
AH
1339 unsigned int timeout_ns,
1340 unsigned int timeout_clks)
a45c6cb8
MC
1341{
1342 unsigned int timeout, cycle_ns;
1343 uint32_t reg, clkd, dto = 0;
1344
1345 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1346 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1347 if (clkd == 0)
1348 clkd = 1;
1349
1350 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
e2bf08d6
AH
1351 timeout = timeout_ns / cycle_ns;
1352 timeout += timeout_clks;
a45c6cb8
MC
1353 if (timeout) {
1354 while ((timeout & 0x80000000) == 0) {
1355 dto += 1;
1356 timeout <<= 1;
1357 }
1358 dto = 31 - dto;
1359 timeout <<= 1;
1360 if (timeout && dto)
1361 dto += 1;
1362 if (dto >= 13)
1363 dto -= 13;
1364 else
1365 dto = 0;
1366 if (dto > 14)
1367 dto = 14;
1368 }
1369
1370 reg &= ~DTO_MASK;
1371 reg |= dto << DTO_SHIFT;
1372 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1373}
1374
1375/*
1376 * Configure block length for MMC/SD cards and initiate the transfer.
1377 */
1378static int
70a3341a 1379omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
a45c6cb8
MC
1380{
1381 int ret;
1382 host->data = req->data;
1383
1384 if (req->data == NULL) {
a45c6cb8 1385 OMAP_HSMMC_WRITE(host->base, BLK, 0);
e2bf08d6
AH
1386 /*
1387 * Set an arbitrary 100ms data timeout for commands with
1388 * busy signal.
1389 */
1390 if (req->cmd->flags & MMC_RSP_BUSY)
1391 set_data_timeout(host, 100000000U, 0);
a45c6cb8
MC
1392 return 0;
1393 }
1394
1395 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1396 | (req->data->blocks << 16));
e2bf08d6 1397 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
a45c6cb8 1398
a45c6cb8 1399 if (host->use_dma) {
70a3341a 1400 ret = omap_hsmmc_start_dma_transfer(host, req);
a45c6cb8 1401 if (ret != 0) {
b1e056ae 1402 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
a45c6cb8
MC
1403 return ret;
1404 }
1405 }
1406 return 0;
1407}
1408
9782aff8
PF
1409static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1410 int err)
1411{
1412 struct omap_hsmmc_host *host = mmc_priv(mmc);
1413 struct mmc_data *data = mrq->data;
1414
26b88520 1415 if (host->use_dma && data->host_cookie) {
c5c98927 1416 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
c5c98927 1417
26b88520
RK
1418 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1419 omap_hsmmc_get_dma_dir(host, data));
9782aff8
PF
1420 data->host_cookie = 0;
1421 }
1422}
1423
1424static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1425 bool is_first_req)
1426{
1427 struct omap_hsmmc_host *host = mmc_priv(mmc);
1428
1429 if (mrq->data->host_cookie) {
1430 mrq->data->host_cookie = 0;
1431 return ;
1432 }
1433
c5c98927
RK
1434 if (host->use_dma) {
1435 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
c5c98927 1436
9782aff8 1437 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
26b88520 1438 &host->next_data, c))
9782aff8 1439 mrq->data->host_cookie = 0;
c5c98927 1440 }
9782aff8
PF
1441}
1442
a45c6cb8
MC
1443/*
1444 * Request function. for read/write operation
1445 */
70a3341a 1446static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
a45c6cb8 1447{
70a3341a 1448 struct omap_hsmmc_host *host = mmc_priv(mmc);
a3f406f8 1449 int err;
a45c6cb8 1450
b417577d
AH
1451 BUG_ON(host->req_in_progress);
1452 BUG_ON(host->dma_ch != -1);
1453 if (host->protect_card) {
1454 if (host->reqs_blocked < 3) {
1455 /*
1456 * Ensure the controller is left in a consistent
1457 * state by resetting the command and data state
1458 * machines.
1459 */
1460 omap_hsmmc_reset_controller_fsm(host, SRD);
1461 omap_hsmmc_reset_controller_fsm(host, SRC);
1462 host->reqs_blocked += 1;
1463 }
1464 req->cmd->error = -EBADF;
1465 if (req->data)
1466 req->data->error = -EBADF;
1467 req->cmd->retries = 0;
1468 mmc_request_done(mmc, req);
1469 return;
1470 } else if (host->reqs_blocked)
1471 host->reqs_blocked = 0;
a45c6cb8
MC
1472 WARN_ON(host->mrq != NULL);
1473 host->mrq = req;
70a3341a 1474 err = omap_hsmmc_prepare_data(host, req);
a3f406f8
JL
1475 if (err) {
1476 req->cmd->error = err;
1477 if (req->data)
1478 req->data->error = err;
1479 host->mrq = NULL;
1480 mmc_request_done(mmc, req);
1481 return;
1482 }
1483
70a3341a 1484 omap_hsmmc_start_command(host, req->cmd, req->data);
a45c6cb8
MC
1485}
1486
a45c6cb8 1487/* Routine to configure clock values. Exposed API to core */
70a3341a 1488static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
a45c6cb8 1489{
70a3341a 1490 struct omap_hsmmc_host *host = mmc_priv(mmc);
a3621465 1491 int do_send_init_stream = 0;
a45c6cb8 1492
fa4aa2d4 1493 pm_runtime_get_sync(host->dev);
5e2ea617 1494
a3621465
AH
1495 if (ios->power_mode != host->power_mode) {
1496 switch (ios->power_mode) {
1497 case MMC_POWER_OFF:
1498 mmc_slot(host).set_power(host->dev, host->slot_id,
1499 0, 0);
1500 break;
1501 case MMC_POWER_UP:
1502 mmc_slot(host).set_power(host->dev, host->slot_id,
1503 1, ios->vdd);
1504 break;
1505 case MMC_POWER_ON:
1506 do_send_init_stream = 1;
1507 break;
1508 }
1509 host->power_mode = ios->power_mode;
a45c6cb8
MC
1510 }
1511
dd498eff
DK
1512 /* FIXME: set registers based only on changes to ios */
1513
3796fb8a 1514 omap_hsmmc_set_bus_width(host);
a45c6cb8 1515
4621d5f8 1516 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
eb250826
DB
1517 /* Only MMC1 can interface at 3V without some flavor
1518 * of external transceiver; but they all handle 1.8V.
1519 */
a45c6cb8 1520 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1f84b71b
RN
1521 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1522 /*
1523 * With pbias cell programming missing, this
cf5ae40b 1524 * can't be allowed on MMC1 when booting with device
1f84b71b
RN
1525 * tree.
1526 */
cf5ae40b 1527 !host->pbias_disable) {
a45c6cb8
MC
1528 /*
1529 * The mmc_select_voltage fn of the core does
1530 * not seem to set the power_mode to
1531 * MMC_POWER_UP upon recalculating the voltage.
1532 * vdd 1.8v.
1533 */
70a3341a
DK
1534 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1535 dev_dbg(mmc_dev(host->mmc),
a45c6cb8
MC
1536 "Switch operation failed\n");
1537 }
1538 }
1539
5934df2f 1540 omap_hsmmc_set_clock(host);
a45c6cb8 1541
a3621465 1542 if (do_send_init_stream)
a45c6cb8
MC
1543 send_init_stream(host);
1544
3796fb8a 1545 omap_hsmmc_set_bus_mode(host);
5e2ea617 1546
fa4aa2d4 1547 pm_runtime_put_autosuspend(host->dev);
a45c6cb8
MC
1548}
1549
1550static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1551{
70a3341a 1552 struct omap_hsmmc_host *host = mmc_priv(mmc);
a45c6cb8 1553
191d1f1d 1554 if (!mmc_slot(host).card_detect)
a45c6cb8 1555 return -ENOSYS;
db0fefc5 1556 return mmc_slot(host).card_detect(host->dev, host->slot_id);
a45c6cb8
MC
1557}
1558
1559static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1560{
70a3341a 1561 struct omap_hsmmc_host *host = mmc_priv(mmc);
a45c6cb8 1562
191d1f1d 1563 if (!mmc_slot(host).get_ro)
a45c6cb8 1564 return -ENOSYS;
191d1f1d 1565 return mmc_slot(host).get_ro(host->dev, 0);
a45c6cb8
MC
1566}
1567
4816858c
GI
1568static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1569{
1570 struct omap_hsmmc_host *host = mmc_priv(mmc);
1571
1572 if (mmc_slot(host).init_card)
1573 mmc_slot(host).init_card(card);
1574}
1575
70a3341a 1576static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
1b331e69
KK
1577{
1578 u32 hctl, capa, value;
1579
1580 /* Only MMC1 supports 3.0V */
4621d5f8 1581 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
1b331e69
KK
1582 hctl = SDVS30;
1583 capa = VS30 | VS18;
1584 } else {
1585 hctl = SDVS18;
1586 capa = VS18;
1587 }
1588
1589 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1590 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1591
1592 value = OMAP_HSMMC_READ(host->base, CAPA);
1593 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1594
1b331e69 1595 /* Set SD bus power bit */
e13bb300 1596 set_sd_bus_power(host);
1b331e69
KK
1597}
1598
70a3341a 1599static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
dd498eff 1600{
70a3341a 1601 struct omap_hsmmc_host *host = mmc_priv(mmc);
dd498eff 1602
fa4aa2d4
B
1603 pm_runtime_get_sync(host->dev);
1604
dd498eff
DK
1605 return 0;
1606}
1607
907d2e7c 1608static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
dd498eff 1609{
70a3341a 1610 struct omap_hsmmc_host *host = mmc_priv(mmc);
dd498eff 1611
fa4aa2d4
B
1612 pm_runtime_mark_last_busy(host->dev);
1613 pm_runtime_put_autosuspend(host->dev);
1614
dd498eff
DK
1615 return 0;
1616}
1617
70a3341a
DK
1618static const struct mmc_host_ops omap_hsmmc_ops = {
1619 .enable = omap_hsmmc_enable_fclk,
1620 .disable = omap_hsmmc_disable_fclk,
9782aff8
PF
1621 .post_req = omap_hsmmc_post_req,
1622 .pre_req = omap_hsmmc_pre_req,
70a3341a
DK
1623 .request = omap_hsmmc_request,
1624 .set_ios = omap_hsmmc_set_ios,
dd498eff
DK
1625 .get_cd = omap_hsmmc_get_cd,
1626 .get_ro = omap_hsmmc_get_ro,
4816858c 1627 .init_card = omap_hsmmc_init_card,
dd498eff
DK
1628 /* NYET -- enable_sdio_irq */
1629};
1630
d900f712
DK
1631#ifdef CONFIG_DEBUG_FS
1632
70a3341a 1633static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
d900f712
DK
1634{
1635 struct mmc_host *mmc = s->private;
70a3341a 1636 struct omap_hsmmc_host *host = mmc_priv(mmc);
11dd62a7
DK
1637 int context_loss = 0;
1638
70a3341a
DK
1639 if (host->pdata->get_context_loss_count)
1640 context_loss = host->pdata->get_context_loss_count(host->dev);
d900f712 1641
907d2e7c
AH
1642 seq_printf(s, "mmc%d:\n ctx_loss:\t%d:%d\n\nregs:\n",
1643 mmc->index, host->context_loss, context_loss);
5e2ea617 1644
7a8c2cef 1645 if (host->suspended) {
dd498eff
DK
1646 seq_printf(s, "host suspended, can't read registers\n");
1647 return 0;
1648 }
1649
fa4aa2d4 1650 pm_runtime_get_sync(host->dev);
d900f712 1651
d900f712
DK
1652 seq_printf(s, "CON:\t\t0x%08x\n",
1653 OMAP_HSMMC_READ(host->base, CON));
1654 seq_printf(s, "HCTL:\t\t0x%08x\n",
1655 OMAP_HSMMC_READ(host->base, HCTL));
1656 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1657 OMAP_HSMMC_READ(host->base, SYSCTL));
1658 seq_printf(s, "IE:\t\t0x%08x\n",
1659 OMAP_HSMMC_READ(host->base, IE));
1660 seq_printf(s, "ISE:\t\t0x%08x\n",
1661 OMAP_HSMMC_READ(host->base, ISE));
1662 seq_printf(s, "CAPA:\t\t0x%08x\n",
1663 OMAP_HSMMC_READ(host->base, CAPA));
5e2ea617 1664
fa4aa2d4
B
1665 pm_runtime_mark_last_busy(host->dev);
1666 pm_runtime_put_autosuspend(host->dev);
dd498eff 1667
d900f712
DK
1668 return 0;
1669}
1670
70a3341a 1671static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
d900f712 1672{
70a3341a 1673 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
d900f712
DK
1674}
1675
1676static const struct file_operations mmc_regs_fops = {
70a3341a 1677 .open = omap_hsmmc_regs_open,
d900f712
DK
1678 .read = seq_read,
1679 .llseek = seq_lseek,
1680 .release = single_release,
1681};
1682
70a3341a 1683static void omap_hsmmc_debugfs(struct mmc_host *mmc)
d900f712
DK
1684{
1685 if (mmc->debugfs_root)
1686 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1687 mmc, &mmc_regs_fops);
1688}
1689
1690#else
1691
70a3341a 1692static void omap_hsmmc_debugfs(struct mmc_host *mmc)
d900f712
DK
1693{
1694}
1695
1696#endif
1697
46856a68
RN
1698#ifdef CONFIG_OF
1699static u16 omap4_reg_offset = 0x100;
1700
1701static const struct of_device_id omap_mmc_of_match[] = {
1702 {
1703 .compatible = "ti,omap2-hsmmc",
1704 },
1705 {
1706 .compatible = "ti,omap3-hsmmc",
1707 },
1708 {
1709 .compatible = "ti,omap4-hsmmc",
1710 .data = &omap4_reg_offset,
1711 },
1712 {},
b6d085f6 1713};
46856a68
RN
1714MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1715
1716static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1717{
1718 struct omap_mmc_platform_data *pdata;
1719 struct device_node *np = dev->of_node;
d8714e87 1720 u32 bus_width, max_freq;
dc642c28
JL
1721 int cd_gpio, wp_gpio;
1722
1723 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1724 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1725 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1726 return ERR_PTR(-EPROBE_DEFER);
46856a68
RN
1727
1728 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1729 if (!pdata)
1730 return NULL; /* out of memory */
1731
1732 if (of_find_property(np, "ti,dual-volt", NULL))
1733 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1734
1735 /* This driver only supports 1 slot */
1736 pdata->nr_slots = 1;
dc642c28
JL
1737 pdata->slots[0].switch_pin = cd_gpio;
1738 pdata->slots[0].gpio_wp = wp_gpio;
46856a68
RN
1739
1740 if (of_find_property(np, "ti,non-removable", NULL)) {
1741 pdata->slots[0].nonremovable = true;
1742 pdata->slots[0].no_regulator_off_init = true;
1743 }
7f217794 1744 of_property_read_u32(np, "bus-width", &bus_width);
46856a68
RN
1745 if (bus_width == 4)
1746 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1747 else if (bus_width == 8)
1748 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1749
1750 if (of_find_property(np, "ti,needs-special-reset", NULL))
1751 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1752
d8714e87
DM
1753 if (!of_property_read_u32(np, "max-frequency", &max_freq))
1754 pdata->max_freq = max_freq;
1755
cd587096
HG
1756 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
1757 pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
1758
46856a68
RN
1759 return pdata;
1760}
1761#else
1762static inline struct omap_mmc_platform_data
1763 *of_get_hsmmc_pdata(struct device *dev)
1764{
1765 return NULL;
1766}
1767#endif
1768
c3be1efd 1769static int omap_hsmmc_probe(struct platform_device *pdev)
a45c6cb8
MC
1770{
1771 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1772 struct mmc_host *mmc;
70a3341a 1773 struct omap_hsmmc_host *host = NULL;
a45c6cb8 1774 struct resource *res;
db0fefc5 1775 int ret, irq;
46856a68 1776 const struct of_device_id *match;
26b88520
RK
1777 dma_cap_mask_t mask;
1778 unsigned tx_req, rx_req;
46b76035 1779 struct pinctrl *pinctrl;
46856a68
RN
1780
1781 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1782 if (match) {
1783 pdata = of_get_hsmmc_pdata(&pdev->dev);
dc642c28
JL
1784
1785 if (IS_ERR(pdata))
1786 return PTR_ERR(pdata);
1787
46856a68 1788 if (match->data) {
efc9b736 1789 const u16 *offsetp = match->data;
46856a68
RN
1790 pdata->reg_offset = *offsetp;
1791 }
1792 }
a45c6cb8
MC
1793
1794 if (pdata == NULL) {
1795 dev_err(&pdev->dev, "Platform Data is missing\n");
1796 return -ENXIO;
1797 }
1798
1799 if (pdata->nr_slots == 0) {
1800 dev_err(&pdev->dev, "No Slots\n");
1801 return -ENXIO;
1802 }
1803
1804 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1805 irq = platform_get_irq(pdev, 0);
1806 if (res == NULL || irq < 0)
1807 return -ENXIO;
1808
984b203a 1809 res = request_mem_region(res->start, resource_size(res), pdev->name);
a45c6cb8
MC
1810 if (res == NULL)
1811 return -EBUSY;
1812
db0fefc5
AH
1813 ret = omap_hsmmc_gpio_init(pdata);
1814 if (ret)
1815 goto err;
1816
70a3341a 1817 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
a45c6cb8
MC
1818 if (!mmc) {
1819 ret = -ENOMEM;
db0fefc5 1820 goto err_alloc;
a45c6cb8
MC
1821 }
1822
1823 host = mmc_priv(mmc);
1824 host->mmc = mmc;
1825 host->pdata = pdata;
1826 host->dev = &pdev->dev;
1827 host->use_dma = 1;
a45c6cb8
MC
1828 host->dma_ch = -1;
1829 host->irq = irq;
a45c6cb8 1830 host->slot_id = 0;
fc307df8 1831 host->mapbase = res->start + pdata->reg_offset;
a45c6cb8 1832 host->base = ioremap(host->mapbase, SZ_4K);
6da20c89 1833 host->power_mode = MMC_POWER_OFF;
9782aff8 1834 host->next_data.cookie = 1;
a45c6cb8
MC
1835
1836 platform_set_drvdata(pdev, host);
a45c6cb8 1837
7a8c2cef 1838 mmc->ops = &omap_hsmmc_ops;
dd498eff 1839
e0eb2424
AH
1840 /*
1841 * If regulator_disable can only put vcc_aux to sleep then there is
1842 * no off state.
1843 */
1844 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1845 mmc_slot(host).no_off = 1;
1846
d418ed87
DM
1847 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1848
1849 if (pdata->max_freq > 0)
1850 mmc->f_max = pdata->max_freq;
1851 else
1852 mmc->f_max = OMAP_MMC_MAX_CLOCK;
a45c6cb8 1853
4dffd7a2 1854 spin_lock_init(&host->irq_lock);
a45c6cb8 1855
6f7607cc 1856 host->fclk = clk_get(&pdev->dev, "fck");
a45c6cb8
MC
1857 if (IS_ERR(host->fclk)) {
1858 ret = PTR_ERR(host->fclk);
1859 host->fclk = NULL;
a45c6cb8
MC
1860 goto err1;
1861 }
1862
9b68256c
PW
1863 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1864 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1865 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1866 }
dd498eff 1867
fa4aa2d4
B
1868 pm_runtime_enable(host->dev);
1869 pm_runtime_get_sync(host->dev);
1870 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1871 pm_runtime_use_autosuspend(host->dev);
a45c6cb8 1872
92a3aebf
B
1873 omap_hsmmc_context_save(host);
1874
cf5ae40b
TL
1875 /* This can be removed once we support PBIAS with DT */
1876 if (host->dev->of_node && host->mapbase == 0x4809c000)
1877 host->pbias_disable = 1;
1878
cd03d9a8
RN
1879 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1880 /*
1881 * MMC can still work without debounce clock.
1882 */
1883 if (IS_ERR(host->dbclk)) {
cd03d9a8 1884 host->dbclk = NULL;
94c18149 1885 } else if (clk_prepare_enable(host->dbclk) != 0) {
cd03d9a8
RN
1886 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1887 clk_put(host->dbclk);
1888 host->dbclk = NULL;
2bec0893 1889 }
a45c6cb8 1890
0ccd76d4
JY
1891 /* Since we do only SG emulation, we can have as many segs
1892 * as we want. */
a36274e0 1893 mmc->max_segs = 1024;
0ccd76d4 1894
a45c6cb8
MC
1895 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1896 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1897 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1898 mmc->max_seg_size = mmc->max_req_size;
1899
13189e78 1900 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
93caf8e6 1901 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
a45c6cb8 1902
3a63833e
SG
1903 mmc->caps |= mmc_slot(host).caps;
1904 if (mmc->caps & MMC_CAP_8_BIT_DATA)
a45c6cb8
MC
1905 mmc->caps |= MMC_CAP_4_BIT_DATA;
1906
191d1f1d 1907 if (mmc_slot(host).nonremovable)
23d99bb9
AH
1908 mmc->caps |= MMC_CAP_NONREMOVABLE;
1909
6fdc75de
EP
1910 mmc->pm_caps = mmc_slot(host).pm_caps;
1911
70a3341a 1912 omap_hsmmc_conf_bus_power(host);
a45c6cb8 1913
4a29b559
SS
1914 if (!pdev->dev.of_node) {
1915 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1916 if (!res) {
1917 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
1918 ret = -ENXIO;
1919 goto err_irq;
1920 }
1921 tx_req = res->start;
b7bf773b 1922
4a29b559
SS
1923 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1924 if (!res) {
1925 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1926 ret = -ENXIO;
1927 goto err_irq;
1928 }
1929 rx_req = res->start;
f3e2f1dd 1930 }
a45c6cb8 1931
26b88520
RK
1932 dma_cap_zero(mask);
1933 dma_cap_set(DMA_SLAVE, mask);
1934
d272fbf0
MP
1935 host->rx_chan =
1936 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1937 &rx_req, &pdev->dev, "rx");
1938
26b88520
RK
1939 if (!host->rx_chan) {
1940 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
04e8c7bc 1941 ret = -ENXIO;
26b88520
RK
1942 goto err_irq;
1943 }
1944
d272fbf0
MP
1945 host->tx_chan =
1946 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1947 &tx_req, &pdev->dev, "tx");
1948
26b88520
RK
1949 if (!host->tx_chan) {
1950 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
04e8c7bc 1951 ret = -ENXIO;
26b88520 1952 goto err_irq;
c5c98927 1953 }
a45c6cb8
MC
1954
1955 /* Request IRQ for MMC operations */
d9618e9f 1956 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
a45c6cb8
MC
1957 mmc_hostname(mmc), host);
1958 if (ret) {
b1e056ae 1959 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
a45c6cb8
MC
1960 goto err_irq;
1961 }
1962
1963 if (pdata->init != NULL) {
1964 if (pdata->init(&pdev->dev) != 0) {
b1e056ae 1965 dev_err(mmc_dev(host->mmc),
70a3341a 1966 "Unable to configure MMC IRQs\n");
a45c6cb8
MC
1967 goto err_irq_cd_init;
1968 }
1969 }
db0fefc5 1970
b702b106 1971 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
db0fefc5
AH
1972 ret = omap_hsmmc_reg_get(host);
1973 if (ret)
1974 goto err_reg;
1975 host->use_reg = 1;
1976 }
1977
b583f26d 1978 mmc->ocr_avail = mmc_slot(host).ocr_mask;
a45c6cb8
MC
1979
1980 /* Request IRQ for card detect */
e1a55f5e 1981 if ((mmc_slot(host).card_detect_irq)) {
7efab4f3
N
1982 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1983 NULL,
1984 omap_hsmmc_detect,
db35f83e 1985 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
7efab4f3 1986 mmc_hostname(mmc), host);
a45c6cb8 1987 if (ret) {
b1e056ae 1988 dev_err(mmc_dev(host->mmc),
a45c6cb8
MC
1989 "Unable to grab MMC CD IRQ\n");
1990 goto err_irq_cd;
1991 }
72f2e2c7 1992 pdata->suspend = omap_hsmmc_suspend_cdirq;
1993 pdata->resume = omap_hsmmc_resume_cdirq;
a45c6cb8
MC
1994 }
1995
b417577d 1996 omap_hsmmc_disable_irq(host);
a45c6cb8 1997
46b76035
DM
1998 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1999 if (IS_ERR(pinctrl))
2000 dev_warn(&pdev->dev,
2001 "pins are not configured from the driver\n");
2002
b62f6228
AH
2003 omap_hsmmc_protect_card(host);
2004
a45c6cb8
MC
2005 mmc_add_host(mmc);
2006
191d1f1d 2007 if (mmc_slot(host).name != NULL) {
a45c6cb8
MC
2008 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2009 if (ret < 0)
2010 goto err_slot_name;
2011 }
191d1f1d 2012 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
a45c6cb8
MC
2013 ret = device_create_file(&mmc->class_dev,
2014 &dev_attr_cover_switch);
2015 if (ret < 0)
db0fefc5 2016 goto err_slot_name;
a45c6cb8
MC
2017 }
2018
70a3341a 2019 omap_hsmmc_debugfs(mmc);
fa4aa2d4
B
2020 pm_runtime_mark_last_busy(host->dev);
2021 pm_runtime_put_autosuspend(host->dev);
d900f712 2022
a45c6cb8
MC
2023 return 0;
2024
a45c6cb8
MC
2025err_slot_name:
2026 mmc_remove_host(mmc);
a45c6cb8 2027 free_irq(mmc_slot(host).card_detect_irq, host);
db0fefc5
AH
2028err_irq_cd:
2029 if (host->use_reg)
2030 omap_hsmmc_reg_put(host);
2031err_reg:
2032 if (host->pdata->cleanup)
2033 host->pdata->cleanup(&pdev->dev);
a45c6cb8
MC
2034err_irq_cd_init:
2035 free_irq(host->irq, host);
2036err_irq:
c5c98927
RK
2037 if (host->tx_chan)
2038 dma_release_channel(host->tx_chan);
2039 if (host->rx_chan)
2040 dma_release_channel(host->rx_chan);
d59d77ed 2041 pm_runtime_put_sync(host->dev);
37f6190d 2042 pm_runtime_disable(host->dev);
a45c6cb8 2043 clk_put(host->fclk);
cd03d9a8 2044 if (host->dbclk) {
94c18149 2045 clk_disable_unprepare(host->dbclk);
a45c6cb8
MC
2046 clk_put(host->dbclk);
2047 }
a45c6cb8
MC
2048err1:
2049 iounmap(host->base);
db0fefc5
AH
2050 platform_set_drvdata(pdev, NULL);
2051 mmc_free_host(mmc);
2052err_alloc:
2053 omap_hsmmc_gpio_free(pdata);
a45c6cb8 2054err:
48b332f9
RK
2055 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2056 if (res)
2057 release_mem_region(res->start, resource_size(res));
a45c6cb8
MC
2058 return ret;
2059}
2060
6e0ee714 2061static int omap_hsmmc_remove(struct platform_device *pdev)
a45c6cb8 2062{
70a3341a 2063 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
a45c6cb8
MC
2064 struct resource *res;
2065
927ce944
FB
2066 pm_runtime_get_sync(host->dev);
2067 mmc_remove_host(host->mmc);
2068 if (host->use_reg)
2069 omap_hsmmc_reg_put(host);
2070 if (host->pdata->cleanup)
2071 host->pdata->cleanup(&pdev->dev);
2072 free_irq(host->irq, host);
2073 if (mmc_slot(host).card_detect_irq)
2074 free_irq(mmc_slot(host).card_detect_irq, host);
a45c6cb8 2075
c5c98927
RK
2076 if (host->tx_chan)
2077 dma_release_channel(host->tx_chan);
2078 if (host->rx_chan)
2079 dma_release_channel(host->rx_chan);
2080
927ce944
FB
2081 pm_runtime_put_sync(host->dev);
2082 pm_runtime_disable(host->dev);
2083 clk_put(host->fclk);
cd03d9a8 2084 if (host->dbclk) {
94c18149 2085 clk_disable_unprepare(host->dbclk);
927ce944 2086 clk_put(host->dbclk);
a45c6cb8
MC
2087 }
2088
9ea28ecb 2089 omap_hsmmc_gpio_free(host->pdata);
927ce944 2090 iounmap(host->base);
9d1f0286 2091 mmc_free_host(host->mmc);
927ce944 2092
a45c6cb8
MC
2093 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2094 if (res)
984b203a 2095 release_mem_region(res->start, resource_size(res));
a45c6cb8
MC
2096 platform_set_drvdata(pdev, NULL);
2097
2098 return 0;
2099}
2100
2101#ifdef CONFIG_PM
a48ce884
FB
2102static int omap_hsmmc_prepare(struct device *dev)
2103{
2104 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2105
2106 if (host->pdata->suspend)
2107 return host->pdata->suspend(dev, host->slot_id);
2108
2109 return 0;
2110}
2111
2112static void omap_hsmmc_complete(struct device *dev)
2113{
2114 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2115
2116 if (host->pdata->resume)
2117 host->pdata->resume(dev, host->slot_id);
2118
2119}
2120
a791daa1 2121static int omap_hsmmc_suspend(struct device *dev)
a45c6cb8
MC
2122{
2123 int ret = 0;
927ce944 2124 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
a45c6cb8 2125
927ce944 2126 if (!host)
a45c6cb8
MC
2127 return 0;
2128
927ce944
FB
2129 if (host && host->suspended)
2130 return 0;
fa4aa2d4 2131
927ce944
FB
2132 pm_runtime_get_sync(host->dev);
2133 host->suspended = 1;
927ce944 2134 ret = mmc_suspend_host(host->mmc);
31f9d463 2135
927ce944
FB
2136 if (ret) {
2137 host->suspended = 0;
927ce944
FB
2138 goto err;
2139 }
31f9d463 2140
927ce944
FB
2141 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2142 omap_hsmmc_disable_irq(host);
2143 OMAP_HSMMC_WRITE(host->base, HCTL,
2144 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
a45c6cb8 2145 }
927ce944 2146
cd03d9a8 2147 if (host->dbclk)
94c18149 2148 clk_disable_unprepare(host->dbclk);
31f9d463
EP
2149err:
2150 pm_runtime_put_sync(host->dev);
a45c6cb8
MC
2151 return ret;
2152}
2153
2154/* Routine to resume the MMC device */
a791daa1 2155static int omap_hsmmc_resume(struct device *dev)
a45c6cb8
MC
2156{
2157 int ret = 0;
927ce944
FB
2158 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2159
2160 if (!host)
2161 return 0;
a45c6cb8
MC
2162
2163 if (host && !host->suspended)
2164 return 0;
2165
927ce944 2166 pm_runtime_get_sync(host->dev);
11dd62a7 2167
cd03d9a8 2168 if (host->dbclk)
94c18149 2169 clk_prepare_enable(host->dbclk);
2bec0893 2170
927ce944
FB
2171 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2172 omap_hsmmc_conf_bus_power(host);
1b331e69 2173
927ce944 2174 omap_hsmmc_protect_card(host);
b62f6228 2175
927ce944
FB
2176 /* Notify the core to resume the host */
2177 ret = mmc_resume_host(host->mmc);
2178 if (ret == 0)
2179 host->suspended = 0;
fa4aa2d4 2180
927ce944
FB
2181 pm_runtime_mark_last_busy(host->dev);
2182 pm_runtime_put_autosuspend(host->dev);
a45c6cb8
MC
2183
2184 return ret;
2185
a45c6cb8
MC
2186}
2187
2188#else
a48ce884
FB
2189#define omap_hsmmc_prepare NULL
2190#define omap_hsmmc_complete NULL
70a3341a 2191#define omap_hsmmc_suspend NULL
a48ce884 2192#define omap_hsmmc_resume NULL
a45c6cb8
MC
2193#endif
2194
fa4aa2d4
B
2195static int omap_hsmmc_runtime_suspend(struct device *dev)
2196{
2197 struct omap_hsmmc_host *host;
2198
2199 host = platform_get_drvdata(to_platform_device(dev));
2200 omap_hsmmc_context_save(host);
927ce944 2201 dev_dbg(dev, "disabled\n");
fa4aa2d4
B
2202
2203 return 0;
2204}
2205
2206static int omap_hsmmc_runtime_resume(struct device *dev)
2207{
2208 struct omap_hsmmc_host *host;
2209
2210 host = platform_get_drvdata(to_platform_device(dev));
2211 omap_hsmmc_context_restore(host);
927ce944 2212 dev_dbg(dev, "enabled\n");
fa4aa2d4
B
2213
2214 return 0;
2215}
2216
a791daa1 2217static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
70a3341a
DK
2218 .suspend = omap_hsmmc_suspend,
2219 .resume = omap_hsmmc_resume,
a48ce884
FB
2220 .prepare = omap_hsmmc_prepare,
2221 .complete = omap_hsmmc_complete,
fa4aa2d4
B
2222 .runtime_suspend = omap_hsmmc_runtime_suspend,
2223 .runtime_resume = omap_hsmmc_runtime_resume,
a791daa1
KH
2224};
2225
2226static struct platform_driver omap_hsmmc_driver = {
efa25fd3 2227 .probe = omap_hsmmc_probe,
0433c143 2228 .remove = omap_hsmmc_remove,
a45c6cb8
MC
2229 .driver = {
2230 .name = DRIVER_NAME,
2231 .owner = THIS_MODULE,
a791daa1 2232 .pm = &omap_hsmmc_dev_pm_ops,
46856a68 2233 .of_match_table = of_match_ptr(omap_mmc_of_match),
a45c6cb8
MC
2234 },
2235};
2236
b796450b 2237module_platform_driver(omap_hsmmc_driver);
a45c6cb8
MC
2238MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2239MODULE_LICENSE("GPL");
2240MODULE_ALIAS("platform:" DRIVER_NAME);
2241MODULE_AUTHOR("Texas Instruments Inc");