2 * drivers/mmc/host/omap_hsmmc.c
4 * Driver for OMAP2430/3430 MMC controller.
6 * Copyright (C) 2007 Texas Instruments.
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
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.
18 #include <linux/module.h>
19 #include <linux/init.h>
20 #include <linux/debugfs.h>
21 #include <linux/seq_file.h>
22 #include <linux/interrupt.h>
23 #include <linux/delay.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/platform_device.h>
26 #include <linux/workqueue.h>
27 #include <linux/timer.h>
28 #include <linux/clk.h>
29 #include <linux/mmc/host.h>
30 #include <linux/mmc/core.h>
32 #include <linux/semaphore.h>
33 #include <linux/gpio.h>
34 #include <linux/regulator/consumer.h>
36 #include <mach/hardware.h>
37 #include <plat/board.h>
41 /* OMAP HSMMC Host Controller Registers */
42 #define OMAP_HSMMC_SYSCONFIG 0x0010
43 #define OMAP_HSMMC_SYSSTATUS 0x0014
44 #define OMAP_HSMMC_CON 0x002C
45 #define OMAP_HSMMC_BLK 0x0104
46 #define OMAP_HSMMC_ARG 0x0108
47 #define OMAP_HSMMC_CMD 0x010C
48 #define OMAP_HSMMC_RSP10 0x0110
49 #define OMAP_HSMMC_RSP32 0x0114
50 #define OMAP_HSMMC_RSP54 0x0118
51 #define OMAP_HSMMC_RSP76 0x011C
52 #define OMAP_HSMMC_DATA 0x0120
53 #define OMAP_HSMMC_HCTL 0x0128
54 #define OMAP_HSMMC_SYSCTL 0x012C
55 #define OMAP_HSMMC_STAT 0x0130
56 #define OMAP_HSMMC_IE 0x0134
57 #define OMAP_HSMMC_ISE 0x0138
58 #define OMAP_HSMMC_CAPA 0x0140
60 #define VS18 (1 << 26)
61 #define VS30 (1 << 25)
62 #define SDVS18 (0x5 << 9)
63 #define SDVS30 (0x6 << 9)
64 #define SDVS33 (0x7 << 9)
65 #define SDVS_MASK 0x00000E00
66 #define SDVSCLR 0xFFFFF1FF
67 #define SDVSDET 0x00000400
74 #define CLKD_MASK 0x0000FFC0
76 #define DTO_MASK 0x000F0000
78 #define INT_EN_MASK 0x307F0033
79 #define BWR_ENABLE (1 << 4)
80 #define BRR_ENABLE (1 << 5)
81 #define INIT_STREAM (1 << 1)
82 #define DP_SELECT (1 << 21)
87 #define FOUR_BIT (1 << 1)
93 #define CMD_TIMEOUT (1 << 16)
94 #define DATA_TIMEOUT (1 << 20)
95 #define CMD_CRC (1 << 17)
96 #define DATA_CRC (1 << 21)
97 #define CARD_ERR (1 << 28)
98 #define STAT_CLEAR 0xFFFFFFFF
99 #define INIT_STREAM_CMD 0x00000000
100 #define DUAL_VOLT_OCR_BIT 7
101 #define SRC (1 << 25)
102 #define SRD (1 << 26)
103 #define SOFTRESET (1 << 1)
104 #define RESETDONE (1 << 0)
107 * FIXME: Most likely all the data using these _DEVID defines should come
108 * from the platform_data, or implemented in controller and slot specific
111 #define OMAP_MMC1_DEVID 0
112 #define OMAP_MMC2_DEVID 1
113 #define OMAP_MMC3_DEVID 2
114 #define OMAP_MMC4_DEVID 3
115 #define OMAP_MMC5_DEVID 4
117 #define MMC_TIMEOUT_MS 20
118 #define OMAP_MMC_MASTER_CLOCK 96000000
119 #define DRIVER_NAME "mmci-omap-hs"
121 /* Timeouts for entering power saving states on inactivity, msec */
122 #define OMAP_MMC_DISABLED_TIMEOUT 100
123 #define OMAP_MMC_SLEEP_TIMEOUT 1000
124 #define OMAP_MMC_OFF_TIMEOUT 8000
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.
131 #define mmc_slot(host) (host->pdata->slots[host->slot_id])
134 * MMC Host controller read/write API's
136 #define OMAP_HSMMC_READ(base, reg) \
137 __raw_readl((base) + OMAP_HSMMC_##reg)
139 #define OMAP_HSMMC_WRITE(base, reg, val) \
140 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
142 struct omap_hsmmc_host
{
144 struct mmc_host
*mmc
;
145 struct mmc_request
*mrq
;
146 struct mmc_command
*cmd
;
147 struct mmc_data
*data
;
152 * vcc == configured supply
153 * vcc_aux == optional
154 * - MMC1, supply for DAT4..DAT7
155 * - MMC2/MMC2, external level shifter voltage supply, for
156 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
158 struct regulator
*vcc
;
159 struct regulator
*vcc_aux
;
160 struct work_struct mmc_carddetect_work
;
162 resource_size_t mapbase
;
163 spinlock_t irq_lock
; /* Prevent races with irq handler */
165 unsigned int dma_len
;
166 unsigned int dma_sg_idx
;
167 unsigned char bus_mode
;
168 unsigned char power_mode
;
174 int dma_line_tx
, dma_line_rx
;
186 struct omap_mmc_platform_data
*pdata
;
189 static int omap_hsmmc_card_detect(struct device
*dev
, int slot
)
191 struct omap_mmc_platform_data
*mmc
= dev
->platform_data
;
193 /* NOTE: assumes card detect signal is active-low */
194 return !gpio_get_value_cansleep(mmc
->slots
[0].switch_pin
);
197 static int omap_hsmmc_get_wp(struct device
*dev
, int slot
)
199 struct omap_mmc_platform_data
*mmc
= dev
->platform_data
;
201 /* NOTE: assumes write protect signal is active-high */
202 return gpio_get_value_cansleep(mmc
->slots
[0].gpio_wp
);
205 static int omap_hsmmc_get_cover_state(struct device
*dev
, int slot
)
207 struct omap_mmc_platform_data
*mmc
= dev
->platform_data
;
209 /* NOTE: assumes card detect signal is active-low */
210 return !gpio_get_value_cansleep(mmc
->slots
[0].switch_pin
);
215 static int omap_hsmmc_suspend_cdirq(struct device
*dev
, int slot
)
217 struct omap_mmc_platform_data
*mmc
= dev
->platform_data
;
219 disable_irq(mmc
->slots
[0].card_detect_irq
);
223 static int omap_hsmmc_resume_cdirq(struct device
*dev
, int slot
)
225 struct omap_mmc_platform_data
*mmc
= dev
->platform_data
;
227 enable_irq(mmc
->slots
[0].card_detect_irq
);
233 #define omap_hsmmc_suspend_cdirq NULL
234 #define omap_hsmmc_resume_cdirq NULL
238 #ifdef CONFIG_REGULATOR
240 static int omap_hsmmc_1_set_power(struct device
*dev
, int slot
, int power_on
,
243 struct omap_hsmmc_host
*host
=
244 platform_get_drvdata(to_platform_device(dev
));
247 if (mmc_slot(host
).before_set_reg
)
248 mmc_slot(host
).before_set_reg(dev
, slot
, power_on
, vdd
);
251 ret
= mmc_regulator_set_ocr(host
->vcc
, vdd
);
253 ret
= mmc_regulator_set_ocr(host
->vcc
, 0);
255 if (mmc_slot(host
).after_set_reg
)
256 mmc_slot(host
).after_set_reg(dev
, slot
, power_on
, vdd
);
261 static int omap_hsmmc_23_set_power(struct device
*dev
, int slot
, int power_on
,
264 struct omap_hsmmc_host
*host
=
265 platform_get_drvdata(to_platform_device(dev
));
269 * If we don't see a Vcc regulator, assume it's a fixed
270 * voltage always-on regulator.
275 if (mmc_slot(host
).before_set_reg
)
276 mmc_slot(host
).before_set_reg(dev
, slot
, power_on
, vdd
);
279 * Assume Vcc regulator is used only to power the card ... OMAP
280 * VDDS is used to power the pins, optionally with a transceiver to
281 * support cards using voltages other than VDDS (1.8V nominal). When a
282 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
284 * In some cases this regulator won't support enable/disable;
285 * e.g. it's a fixed rail for a WLAN chip.
287 * In other cases vcc_aux switches interface power. Example, for
288 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
289 * chips/cards need an interface voltage rail too.
292 ret
= mmc_regulator_set_ocr(host
->vcc
, vdd
);
293 /* Enable interface voltage rail, if needed */
294 if (ret
== 0 && host
->vcc_aux
) {
295 ret
= regulator_enable(host
->vcc_aux
);
297 ret
= mmc_regulator_set_ocr(host
->vcc
, 0);
301 ret
= regulator_disable(host
->vcc_aux
);
303 ret
= mmc_regulator_set_ocr(host
->vcc
, 0);
306 if (mmc_slot(host
).after_set_reg
)
307 mmc_slot(host
).after_set_reg(dev
, slot
, power_on
, vdd
);
312 static int omap_hsmmc_1_set_sleep(struct device
*dev
, int slot
, int sleep
,
313 int vdd
, int cardsleep
)
315 struct omap_hsmmc_host
*host
=
316 platform_get_drvdata(to_platform_device(dev
));
317 int mode
= sleep
? REGULATOR_MODE_STANDBY
: REGULATOR_MODE_NORMAL
;
319 return regulator_set_mode(host
->vcc
, mode
);
322 static int omap_hsmmc_23_set_sleep(struct device
*dev
, int slot
, int sleep
,
323 int vdd
, int cardsleep
)
325 struct omap_hsmmc_host
*host
=
326 platform_get_drvdata(to_platform_device(dev
));
330 * If we don't see a Vcc regulator, assume it's a fixed
331 * voltage always-on regulator.
336 mode
= sleep
? REGULATOR_MODE_STANDBY
: REGULATOR_MODE_NORMAL
;
339 return regulator_set_mode(host
->vcc
, mode
);
342 /* VCC can be turned off if card is asleep */
344 err
= mmc_regulator_set_ocr(host
->vcc
, 0);
346 err
= mmc_regulator_set_ocr(host
->vcc
, vdd
);
348 err
= regulator_set_mode(host
->vcc
, mode
);
352 if (!mmc_slot(host
).vcc_aux_disable_is_sleep
)
353 return regulator_set_mode(host
->vcc_aux
, mode
);
356 return regulator_disable(host
->vcc_aux
);
358 return regulator_enable(host
->vcc_aux
);
361 static int omap_hsmmc_reg_get(struct omap_hsmmc_host
*host
)
363 struct regulator
*reg
;
367 case OMAP_MMC1_DEVID
:
368 /* On-chip level shifting via PBIAS0/PBIAS1 */
369 mmc_slot(host
).set_power
= omap_hsmmc_1_set_power
;
370 mmc_slot(host
).set_sleep
= omap_hsmmc_1_set_sleep
;
372 case OMAP_MMC2_DEVID
:
373 case OMAP_MMC3_DEVID
:
374 /* Off-chip level shifting, or none */
375 mmc_slot(host
).set_power
= omap_hsmmc_23_set_power
;
376 mmc_slot(host
).set_sleep
= omap_hsmmc_23_set_sleep
;
379 pr_err("MMC%d configuration not supported!\n", host
->id
);
383 reg
= regulator_get(host
->dev
, "vmmc");
385 dev_dbg(host
->dev
, "vmmc regulator missing\n");
387 * HACK: until fixed.c regulator is usable,
388 * we don't require a main regulator
391 if (host
->id
== OMAP_MMC1_DEVID
) {
397 mmc_slot(host
).ocr_mask
= mmc_regulator_get_ocrmask(reg
);
399 /* Allow an aux regulator */
400 reg
= regulator_get(host
->dev
, "vmmc_aux");
401 host
->vcc_aux
= IS_ERR(reg
) ? NULL
: reg
;
404 * UGLY HACK: workaround regulator framework bugs.
405 * When the bootloader leaves a supply active, it's
406 * initialized with zero usecount ... and we can't
407 * disable it without first enabling it. Until the
408 * framework is fixed, we need a workaround like this
409 * (which is safe for MMC, but not in general).
411 if (regulator_is_enabled(host
->vcc
) > 0) {
412 regulator_enable(host
->vcc
);
413 regulator_disable(host
->vcc
);
416 if (regulator_is_enabled(reg
) > 0) {
417 regulator_enable(reg
);
418 regulator_disable(reg
);
426 mmc_slot(host
).set_power
= NULL
;
427 mmc_slot(host
).set_sleep
= NULL
;
431 static void omap_hsmmc_reg_put(struct omap_hsmmc_host
*host
)
433 regulator_put(host
->vcc
);
434 regulator_put(host
->vcc_aux
);
435 mmc_slot(host
).set_power
= NULL
;
436 mmc_slot(host
).set_sleep
= NULL
;
439 static inline int omap_hsmmc_have_reg(void)
446 static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host
*host
)
451 static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host
*host
)
455 static inline int omap_hsmmc_have_reg(void)
462 static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data
*pdata
)
466 if (gpio_is_valid(pdata
->slots
[0].switch_pin
)) {
467 pdata
->suspend
= omap_hsmmc_suspend_cdirq
;
468 pdata
->resume
= omap_hsmmc_resume_cdirq
;
469 if (pdata
->slots
[0].cover
)
470 pdata
->slots
[0].get_cover_state
=
471 omap_hsmmc_get_cover_state
;
473 pdata
->slots
[0].card_detect
= omap_hsmmc_card_detect
;
474 pdata
->slots
[0].card_detect_irq
=
475 gpio_to_irq(pdata
->slots
[0].switch_pin
);
476 ret
= gpio_request(pdata
->slots
[0].switch_pin
, "mmc_cd");
479 ret
= gpio_direction_input(pdata
->slots
[0].switch_pin
);
483 pdata
->slots
[0].switch_pin
= -EINVAL
;
485 if (gpio_is_valid(pdata
->slots
[0].gpio_wp
)) {
486 pdata
->slots
[0].get_ro
= omap_hsmmc_get_wp
;
487 ret
= gpio_request(pdata
->slots
[0].gpio_wp
, "mmc_wp");
490 ret
= gpio_direction_input(pdata
->slots
[0].gpio_wp
);
494 pdata
->slots
[0].gpio_wp
= -EINVAL
;
499 gpio_free(pdata
->slots
[0].gpio_wp
);
501 if (gpio_is_valid(pdata
->slots
[0].switch_pin
))
503 gpio_free(pdata
->slots
[0].switch_pin
);
507 static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data
*pdata
)
509 if (gpio_is_valid(pdata
->slots
[0].gpio_wp
))
510 gpio_free(pdata
->slots
[0].gpio_wp
);
511 if (gpio_is_valid(pdata
->slots
[0].switch_pin
))
512 gpio_free(pdata
->slots
[0].switch_pin
);
516 * Stop clock to the card
518 static void omap_hsmmc_stop_clock(struct omap_hsmmc_host
*host
)
520 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
521 OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ~CEN
);
522 if ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & CEN
) != 0x0)
523 dev_dbg(mmc_dev(host
->mmc
), "MMC Clock is not stoped\n");
526 static void omap_hsmmc_enable_irq(struct omap_hsmmc_host
*host
)
528 unsigned int irq_mask
;
531 irq_mask
= INT_EN_MASK
& ~(BRR_ENABLE
| BWR_ENABLE
);
533 irq_mask
= INT_EN_MASK
;
535 OMAP_HSMMC_WRITE(host
->base
, STAT
, STAT_CLEAR
);
536 OMAP_HSMMC_WRITE(host
->base
, ISE
, irq_mask
);
537 OMAP_HSMMC_WRITE(host
->base
, IE
, irq_mask
);
540 static void omap_hsmmc_disable_irq(struct omap_hsmmc_host
*host
)
542 OMAP_HSMMC_WRITE(host
->base
, ISE
, 0);
543 OMAP_HSMMC_WRITE(host
->base
, IE
, 0);
544 OMAP_HSMMC_WRITE(host
->base
, STAT
, STAT_CLEAR
);
550 * Restore the MMC host context, if it was lost as result of a
551 * power state change.
553 static int omap_hsmmc_context_restore(struct omap_hsmmc_host
*host
)
555 struct mmc_ios
*ios
= &host
->mmc
->ios
;
556 struct omap_mmc_platform_data
*pdata
= host
->pdata
;
557 int context_loss
= 0;
560 unsigned long timeout
;
562 if (pdata
->get_context_loss_count
) {
563 context_loss
= pdata
->get_context_loss_count(host
->dev
);
564 if (context_loss
< 0)
568 dev_dbg(mmc_dev(host
->mmc
), "context was %slost\n",
569 context_loss
== host
->context_loss
? "not " : "");
570 if (host
->context_loss
== context_loss
)
573 /* Wait for hardware reset */
574 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
575 while ((OMAP_HSMMC_READ(host
->base
, SYSSTATUS
) & RESETDONE
) != RESETDONE
576 && time_before(jiffies
, timeout
))
579 /* Do software reset */
580 OMAP_HSMMC_WRITE(host
->base
, SYSCONFIG
, SOFTRESET
);
581 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
582 while ((OMAP_HSMMC_READ(host
->base
, SYSSTATUS
) & RESETDONE
) != RESETDONE
583 && time_before(jiffies
, timeout
))
586 OMAP_HSMMC_WRITE(host
->base
, SYSCONFIG
,
587 OMAP_HSMMC_READ(host
->base
, SYSCONFIG
) | AUTOIDLE
);
589 if (host
->id
== OMAP_MMC1_DEVID
) {
590 if (host
->power_mode
!= MMC_POWER_OFF
&&
591 (1 << ios
->vdd
) <= MMC_VDD_23_24
)
601 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
602 OMAP_HSMMC_READ(host
->base
, HCTL
) | hctl
);
604 OMAP_HSMMC_WRITE(host
->base
, CAPA
,
605 OMAP_HSMMC_READ(host
->base
, CAPA
) | capa
);
607 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
608 OMAP_HSMMC_READ(host
->base
, HCTL
) | SDBP
);
610 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
611 while ((OMAP_HSMMC_READ(host
->base
, HCTL
) & SDBP
) != SDBP
612 && time_before(jiffies
, timeout
))
615 omap_hsmmc_disable_irq(host
);
617 /* Do not initialize card-specific things if the power is off */
618 if (host
->power_mode
== MMC_POWER_OFF
)
621 con
= OMAP_HSMMC_READ(host
->base
, CON
);
622 switch (ios
->bus_width
) {
623 case MMC_BUS_WIDTH_8
:
624 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| DW8
);
626 case MMC_BUS_WIDTH_4
:
627 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
628 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
629 OMAP_HSMMC_READ(host
->base
, HCTL
) | FOUR_BIT
);
631 case MMC_BUS_WIDTH_1
:
632 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
633 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
634 OMAP_HSMMC_READ(host
->base
, HCTL
) & ~FOUR_BIT
);
639 dsor
= OMAP_MMC_MASTER_CLOCK
/ ios
->clock
;
643 if (OMAP_MMC_MASTER_CLOCK
/ dsor
> ios
->clock
)
650 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
651 OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ~CEN
);
652 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
, (dsor
<< 6) | (DTO
<< 16));
653 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
654 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | ICE
);
656 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
657 while ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ICS
) != ICS
658 && time_before(jiffies
, timeout
))
661 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
662 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | CEN
);
664 con
= OMAP_HSMMC_READ(host
->base
, CON
);
665 if (ios
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
666 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| OD
);
668 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~OD
);
670 host
->context_loss
= context_loss
;
672 dev_dbg(mmc_dev(host
->mmc
), "context is restored\n");
677 * Save the MMC host context (store the number of power state changes so far).
679 static void omap_hsmmc_context_save(struct omap_hsmmc_host
*host
)
681 struct omap_mmc_platform_data
*pdata
= host
->pdata
;
684 if (pdata
->get_context_loss_count
) {
685 context_loss
= pdata
->get_context_loss_count(host
->dev
);
686 if (context_loss
< 0)
688 host
->context_loss
= context_loss
;
694 static int omap_hsmmc_context_restore(struct omap_hsmmc_host
*host
)
699 static void omap_hsmmc_context_save(struct omap_hsmmc_host
*host
)
706 * Send init stream sequence to card
707 * before sending IDLE command
709 static void send_init_stream(struct omap_hsmmc_host
*host
)
712 unsigned long timeout
;
714 if (host
->protect_card
)
717 disable_irq(host
->irq
);
719 OMAP_HSMMC_WRITE(host
->base
, IE
, INT_EN_MASK
);
720 OMAP_HSMMC_WRITE(host
->base
, CON
,
721 OMAP_HSMMC_READ(host
->base
, CON
) | INIT_STREAM
);
722 OMAP_HSMMC_WRITE(host
->base
, CMD
, INIT_STREAM_CMD
);
724 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
725 while ((reg
!= CC
) && time_before(jiffies
, timeout
))
726 reg
= OMAP_HSMMC_READ(host
->base
, STAT
) & CC
;
728 OMAP_HSMMC_WRITE(host
->base
, CON
,
729 OMAP_HSMMC_READ(host
->base
, CON
) & ~INIT_STREAM
);
731 OMAP_HSMMC_WRITE(host
->base
, STAT
, STAT_CLEAR
);
732 OMAP_HSMMC_READ(host
->base
, STAT
);
734 enable_irq(host
->irq
);
738 int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host
*host
)
742 if (mmc_slot(host
).get_cover_state
)
743 r
= mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
);
748 omap_hsmmc_show_cover_switch(struct device
*dev
, struct device_attribute
*attr
,
751 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
752 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
754 return sprintf(buf
, "%s\n",
755 omap_hsmmc_cover_is_closed(host
) ? "closed" : "open");
758 static DEVICE_ATTR(cover_switch
, S_IRUGO
, omap_hsmmc_show_cover_switch
, NULL
);
761 omap_hsmmc_show_slot_name(struct device
*dev
, struct device_attribute
*attr
,
764 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
765 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
767 return sprintf(buf
, "%s\n", mmc_slot(host
).name
);
770 static DEVICE_ATTR(slot_name
, S_IRUGO
, omap_hsmmc_show_slot_name
, NULL
);
773 * Configure the response type and send the cmd.
776 omap_hsmmc_start_command(struct omap_hsmmc_host
*host
, struct mmc_command
*cmd
,
777 struct mmc_data
*data
)
779 int cmdreg
= 0, resptype
= 0, cmdtype
= 0;
781 dev_dbg(mmc_dev(host
->mmc
), "%s: CMD%d, argument 0x%08x\n",
782 mmc_hostname(host
->mmc
), cmd
->opcode
, cmd
->arg
);
785 omap_hsmmc_enable_irq(host
);
787 host
->response_busy
= 0;
788 if (cmd
->flags
& MMC_RSP_PRESENT
) {
789 if (cmd
->flags
& MMC_RSP_136
)
791 else if (cmd
->flags
& MMC_RSP_BUSY
) {
793 host
->response_busy
= 1;
799 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
800 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
801 * a val of 0x3, rest 0x0.
803 if (cmd
== host
->mrq
->stop
)
806 cmdreg
= (cmd
->opcode
<< 24) | (resptype
<< 16) | (cmdtype
<< 22);
809 cmdreg
|= DP_SELECT
| MSBS
| BCE
;
810 if (data
->flags
& MMC_DATA_READ
)
819 host
->req_in_progress
= 1;
821 OMAP_HSMMC_WRITE(host
->base
, ARG
, cmd
->arg
);
822 OMAP_HSMMC_WRITE(host
->base
, CMD
, cmdreg
);
826 omap_hsmmc_get_dma_dir(struct omap_hsmmc_host
*host
, struct mmc_data
*data
)
828 if (data
->flags
& MMC_DATA_WRITE
)
829 return DMA_TO_DEVICE
;
831 return DMA_FROM_DEVICE
;
834 static void omap_hsmmc_request_done(struct omap_hsmmc_host
*host
, struct mmc_request
*mrq
)
838 spin_lock(&host
->irq_lock
);
839 host
->req_in_progress
= 0;
840 dma_ch
= host
->dma_ch
;
841 spin_unlock(&host
->irq_lock
);
843 omap_hsmmc_disable_irq(host
);
844 /* Do not complete the request if DMA is still in progress */
845 if (mrq
->data
&& host
->use_dma
&& dma_ch
!= -1)
848 mmc_request_done(host
->mmc
, mrq
);
852 * Notify the transfer complete to MMC core
855 omap_hsmmc_xfer_done(struct omap_hsmmc_host
*host
, struct mmc_data
*data
)
858 struct mmc_request
*mrq
= host
->mrq
;
860 /* TC before CC from CMD6 - don't know why, but it happens */
861 if (host
->cmd
&& host
->cmd
->opcode
== 6 &&
862 host
->response_busy
) {
863 host
->response_busy
= 0;
867 omap_hsmmc_request_done(host
, mrq
);
874 data
->bytes_xfered
+= data
->blocks
* (data
->blksz
);
876 data
->bytes_xfered
= 0;
879 omap_hsmmc_request_done(host
, data
->mrq
);
882 omap_hsmmc_start_command(host
, data
->stop
, NULL
);
886 * Notify the core about command completion
889 omap_hsmmc_cmd_done(struct omap_hsmmc_host
*host
, struct mmc_command
*cmd
)
893 if (cmd
->flags
& MMC_RSP_PRESENT
) {
894 if (cmd
->flags
& MMC_RSP_136
) {
895 /* response type 2 */
896 cmd
->resp
[3] = OMAP_HSMMC_READ(host
->base
, RSP10
);
897 cmd
->resp
[2] = OMAP_HSMMC_READ(host
->base
, RSP32
);
898 cmd
->resp
[1] = OMAP_HSMMC_READ(host
->base
, RSP54
);
899 cmd
->resp
[0] = OMAP_HSMMC_READ(host
->base
, RSP76
);
901 /* response types 1, 1b, 3, 4, 5, 6 */
902 cmd
->resp
[0] = OMAP_HSMMC_READ(host
->base
, RSP10
);
905 if ((host
->data
== NULL
&& !host
->response_busy
) || cmd
->error
)
906 omap_hsmmc_request_done(host
, cmd
->mrq
);
910 * DMA clean up for command errors
912 static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host
*host
, int errno
)
916 host
->data
->error
= errno
;
918 spin_lock(&host
->irq_lock
);
919 dma_ch
= host
->dma_ch
;
921 spin_unlock(&host
->irq_lock
);
923 if (host
->use_dma
&& dma_ch
!= -1) {
924 dma_unmap_sg(mmc_dev(host
->mmc
), host
->data
->sg
, host
->dma_len
,
925 omap_hsmmc_get_dma_dir(host
, host
->data
));
926 omap_free_dma(dma_ch
);
932 * Readable error output
934 #ifdef CONFIG_MMC_DEBUG
935 static void omap_hsmmc_report_irq(struct omap_hsmmc_host
*host
, u32 status
)
937 /* --- means reserved bit without definition at documentation */
938 static const char *omap_hsmmc_status_bits
[] = {
939 "CC", "TC", "BGE", "---", "BWR", "BRR", "---", "---", "CIRQ",
940 "OBI", "---", "---", "---", "---", "---", "ERRI", "CTO", "CCRC",
941 "CEB", "CIE", "DTO", "DCRC", "DEB", "---", "ACE", "---",
942 "---", "---", "---", "CERR", "CERR", "BADA", "---", "---", "---"
948 len
= sprintf(buf
, "MMC IRQ 0x%x :", status
);
951 for (i
= 0; i
< ARRAY_SIZE(omap_hsmmc_status_bits
); i
++)
952 if (status
& (1 << i
)) {
953 len
= sprintf(buf
, " %s", omap_hsmmc_status_bits
[i
]);
957 dev_dbg(mmc_dev(host
->mmc
), "%s\n", res
);
959 #endif /* CONFIG_MMC_DEBUG */
962 * MMC controller internal state machines reset
964 * Used to reset command or data internal state machines, using respectively
965 * SRC or SRD bit of SYSCTL register
966 * Can be called from interrupt context
968 static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host
*host
,
972 unsigned long limit
= (loops_per_jiffy
*
973 msecs_to_jiffies(MMC_TIMEOUT_MS
));
975 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
976 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | bit
);
978 while ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & bit
) &&
982 if (OMAP_HSMMC_READ(host
->base
, SYSCTL
) & bit
)
983 dev_err(mmc_dev(host
->mmc
),
984 "Timeout waiting on controller reset in %s\n",
988 static void omap_hsmmc_do_irq(struct omap_hsmmc_host
*host
, int status
)
990 struct mmc_data
*data
;
991 int end_cmd
= 0, end_trans
= 0;
993 if (!host
->req_in_progress
) {
995 OMAP_HSMMC_WRITE(host
->base
, STAT
, status
);
996 /* Flush posted write */
997 status
= OMAP_HSMMC_READ(host
->base
, STAT
);
998 } while (status
& INT_EN_MASK
);
1003 dev_dbg(mmc_dev(host
->mmc
), "IRQ Status is %x\n", status
);
1006 #ifdef CONFIG_MMC_DEBUG
1007 omap_hsmmc_report_irq(host
, status
);
1009 if ((status
& CMD_TIMEOUT
) ||
1010 (status
& CMD_CRC
)) {
1012 if (status
& CMD_TIMEOUT
) {
1013 omap_hsmmc_reset_controller_fsm(host
,
1015 host
->cmd
->error
= -ETIMEDOUT
;
1017 host
->cmd
->error
= -EILSEQ
;
1021 if (host
->data
|| host
->response_busy
) {
1023 omap_hsmmc_dma_cleanup(host
,
1025 host
->response_busy
= 0;
1026 omap_hsmmc_reset_controller_fsm(host
, SRD
);
1029 if ((status
& DATA_TIMEOUT
) ||
1030 (status
& DATA_CRC
)) {
1031 if (host
->data
|| host
->response_busy
) {
1032 int err
= (status
& DATA_TIMEOUT
) ?
1033 -ETIMEDOUT
: -EILSEQ
;
1036 omap_hsmmc_dma_cleanup(host
, err
);
1038 host
->mrq
->cmd
->error
= err
;
1039 host
->response_busy
= 0;
1040 omap_hsmmc_reset_controller_fsm(host
, SRD
);
1044 if (status
& CARD_ERR
) {
1045 dev_dbg(mmc_dev(host
->mmc
),
1046 "Ignoring card err CMD%d\n", host
->cmd
->opcode
);
1054 OMAP_HSMMC_WRITE(host
->base
, STAT
, status
);
1056 if (end_cmd
|| ((status
& CC
) && host
->cmd
))
1057 omap_hsmmc_cmd_done(host
, host
->cmd
);
1058 if ((end_trans
|| (status
& TC
)) && host
->mrq
)
1059 omap_hsmmc_xfer_done(host
, data
);
1063 * MMC controller IRQ handler
1065 static irqreturn_t
omap_hsmmc_irq(int irq
, void *dev_id
)
1067 struct omap_hsmmc_host
*host
= dev_id
;
1070 status
= OMAP_HSMMC_READ(host
->base
, STAT
);
1072 omap_hsmmc_do_irq(host
, status
);
1073 /* Flush posted write */
1074 status
= OMAP_HSMMC_READ(host
->base
, STAT
);
1075 } while (status
& INT_EN_MASK
);
1080 static void set_sd_bus_power(struct omap_hsmmc_host
*host
)
1084 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1085 OMAP_HSMMC_READ(host
->base
, HCTL
) | SDBP
);
1086 for (i
= 0; i
< loops_per_jiffy
; i
++) {
1087 if (OMAP_HSMMC_READ(host
->base
, HCTL
) & SDBP
)
1094 * Switch MMC interface voltage ... only relevant for MMC1.
1096 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1097 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1098 * Some chips, like eMMC ones, use internal transceivers.
1100 static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host
*host
, int vdd
)
1105 /* Disable the clocks */
1106 clk_disable(host
->fclk
);
1107 clk_disable(host
->iclk
);
1108 if (host
->got_dbclk
)
1109 clk_disable(host
->dbclk
);
1111 /* Turn the power off */
1112 ret
= mmc_slot(host
).set_power(host
->dev
, host
->slot_id
, 0, 0);
1114 /* Turn the power ON with given VDD 1.8 or 3.0v */
1116 ret
= mmc_slot(host
).set_power(host
->dev
, host
->slot_id
, 1,
1118 clk_enable(host
->iclk
);
1119 clk_enable(host
->fclk
);
1120 if (host
->got_dbclk
)
1121 clk_enable(host
->dbclk
);
1126 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1127 OMAP_HSMMC_READ(host
->base
, HCTL
) & SDVSCLR
);
1128 reg_val
= OMAP_HSMMC_READ(host
->base
, HCTL
);
1131 * If a MMC dual voltage card is detected, the set_ios fn calls
1132 * this fn with VDD bit set for 1.8V. Upon card removal from the
1133 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
1135 * Cope with a bit of slop in the range ... per data sheets:
1136 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1137 * but recommended values are 1.71V to 1.89V
1138 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1139 * but recommended values are 2.7V to 3.3V
1141 * Board setup code shouldn't permit anything very out-of-range.
1142 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1143 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
1145 if ((1 << vdd
) <= MMC_VDD_23_24
)
1150 OMAP_HSMMC_WRITE(host
->base
, HCTL
, reg_val
);
1151 set_sd_bus_power(host
);
1155 dev_dbg(mmc_dev(host
->mmc
), "Unable to switch operating voltage\n");
1159 /* Protect the card while the cover is open */
1160 static void omap_hsmmc_protect_card(struct omap_hsmmc_host
*host
)
1162 if (!mmc_slot(host
).get_cover_state
)
1165 host
->reqs_blocked
= 0;
1166 if (mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
)) {
1167 if (host
->protect_card
) {
1168 printk(KERN_INFO
"%s: cover is closed, "
1169 "card is now accessible\n",
1170 mmc_hostname(host
->mmc
));
1171 host
->protect_card
= 0;
1174 if (!host
->protect_card
) {
1175 printk(KERN_INFO
"%s: cover is open, "
1176 "card is now inaccessible\n",
1177 mmc_hostname(host
->mmc
));
1178 host
->protect_card
= 1;
1184 * Work Item to notify the core about card insertion/removal
1186 static void omap_hsmmc_detect(struct work_struct
*work
)
1188 struct omap_hsmmc_host
*host
=
1189 container_of(work
, struct omap_hsmmc_host
, mmc_carddetect_work
);
1190 struct omap_mmc_slot_data
*slot
= &mmc_slot(host
);
1193 if (host
->suspended
)
1196 sysfs_notify(&host
->mmc
->class_dev
.kobj
, NULL
, "cover_switch");
1198 if (slot
->card_detect
)
1199 carddetect
= slot
->card_detect(host
->dev
, host
->slot_id
);
1201 omap_hsmmc_protect_card(host
);
1202 carddetect
= -ENOSYS
;
1206 mmc_detect_change(host
->mmc
, (HZ
* 200) / 1000);
1208 mmc_detect_change(host
->mmc
, (HZ
* 50) / 1000);
1212 * ISR for handling card insertion and removal
1214 static irqreturn_t
omap_hsmmc_cd_handler(int irq
, void *dev_id
)
1216 struct omap_hsmmc_host
*host
= (struct omap_hsmmc_host
*)dev_id
;
1218 if (host
->suspended
)
1220 schedule_work(&host
->mmc_carddetect_work
);
1225 static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host
*host
,
1226 struct mmc_data
*data
)
1230 if (data
->flags
& MMC_DATA_WRITE
)
1231 sync_dev
= host
->dma_line_tx
;
1233 sync_dev
= host
->dma_line_rx
;
1237 static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host
*host
,
1238 struct mmc_data
*data
,
1239 struct scatterlist
*sgl
)
1241 int blksz
, nblk
, dma_ch
;
1243 dma_ch
= host
->dma_ch
;
1244 if (data
->flags
& MMC_DATA_WRITE
) {
1245 omap_set_dma_dest_params(dma_ch
, 0, OMAP_DMA_AMODE_CONSTANT
,
1246 (host
->mapbase
+ OMAP_HSMMC_DATA
), 0, 0);
1247 omap_set_dma_src_params(dma_ch
, 0, OMAP_DMA_AMODE_POST_INC
,
1248 sg_dma_address(sgl
), 0, 0);
1250 omap_set_dma_src_params(dma_ch
, 0, OMAP_DMA_AMODE_CONSTANT
,
1251 (host
->mapbase
+ OMAP_HSMMC_DATA
), 0, 0);
1252 omap_set_dma_dest_params(dma_ch
, 0, OMAP_DMA_AMODE_POST_INC
,
1253 sg_dma_address(sgl
), 0, 0);
1256 blksz
= host
->data
->blksz
;
1257 nblk
= sg_dma_len(sgl
) / blksz
;
1259 omap_set_dma_transfer_params(dma_ch
, OMAP_DMA_DATA_TYPE_S32
,
1260 blksz
/ 4, nblk
, OMAP_DMA_SYNC_FRAME
,
1261 omap_hsmmc_get_dma_sync_dev(host
, data
),
1262 !(data
->flags
& MMC_DATA_WRITE
));
1264 omap_start_dma(dma_ch
);
1268 * DMA call back function
1270 static void omap_hsmmc_dma_cb(int lch
, u16 ch_status
, void *cb_data
)
1272 struct omap_hsmmc_host
*host
= cb_data
;
1273 struct mmc_data
*data
= host
->mrq
->data
;
1274 int dma_ch
, req_in_progress
;
1276 if (ch_status
& OMAP2_DMA_MISALIGNED_ERR_IRQ
)
1277 dev_dbg(mmc_dev(host
->mmc
), "MISALIGNED_ADRS_ERR\n");
1279 spin_lock(&host
->irq_lock
);
1280 if (host
->dma_ch
< 0) {
1281 spin_unlock(&host
->irq_lock
);
1286 if (host
->dma_sg_idx
< host
->dma_len
) {
1287 /* Fire up the next transfer. */
1288 omap_hsmmc_config_dma_params(host
, data
,
1289 data
->sg
+ host
->dma_sg_idx
);
1290 spin_unlock(&host
->irq_lock
);
1294 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
, host
->dma_len
,
1295 omap_hsmmc_get_dma_dir(host
, data
));
1297 req_in_progress
= host
->req_in_progress
;
1298 dma_ch
= host
->dma_ch
;
1300 spin_unlock(&host
->irq_lock
);
1302 omap_free_dma(dma_ch
);
1304 /* If DMA has finished after TC, complete the request */
1305 if (!req_in_progress
) {
1306 struct mmc_request
*mrq
= host
->mrq
;
1309 mmc_request_done(host
->mmc
, mrq
);
1314 * Routine to configure and start DMA for the MMC card
1316 static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host
*host
,
1317 struct mmc_request
*req
)
1319 int dma_ch
= 0, ret
= 0, i
;
1320 struct mmc_data
*data
= req
->data
;
1322 /* Sanity check: all the SG entries must be aligned by block size. */
1323 for (i
= 0; i
< data
->sg_len
; i
++) {
1324 struct scatterlist
*sgl
;
1327 if (sgl
->length
% data
->blksz
)
1330 if ((data
->blksz
% 4) != 0)
1331 /* REVISIT: The MMC buffer increments only when MSB is written.
1332 * Return error for blksz which is non multiple of four.
1336 BUG_ON(host
->dma_ch
!= -1);
1338 ret
= omap_request_dma(omap_hsmmc_get_dma_sync_dev(host
, data
),
1339 "MMC/SD", omap_hsmmc_dma_cb
, host
, &dma_ch
);
1341 dev_err(mmc_dev(host
->mmc
),
1342 "%s: omap_request_dma() failed with %d\n",
1343 mmc_hostname(host
->mmc
), ret
);
1347 host
->dma_len
= dma_map_sg(mmc_dev(host
->mmc
), data
->sg
,
1348 data
->sg_len
, omap_hsmmc_get_dma_dir(host
, data
));
1349 host
->dma_ch
= dma_ch
;
1350 host
->dma_sg_idx
= 0;
1352 omap_hsmmc_config_dma_params(host
, data
, data
->sg
);
1357 static void set_data_timeout(struct omap_hsmmc_host
*host
,
1358 unsigned int timeout_ns
,
1359 unsigned int timeout_clks
)
1361 unsigned int timeout
, cycle_ns
;
1362 uint32_t reg
, clkd
, dto
= 0;
1364 reg
= OMAP_HSMMC_READ(host
->base
, SYSCTL
);
1365 clkd
= (reg
& CLKD_MASK
) >> CLKD_SHIFT
;
1369 cycle_ns
= 1000000000 / (clk_get_rate(host
->fclk
) / clkd
);
1370 timeout
= timeout_ns
/ cycle_ns
;
1371 timeout
+= timeout_clks
;
1373 while ((timeout
& 0x80000000) == 0) {
1390 reg
|= dto
<< DTO_SHIFT
;
1391 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
, reg
);
1395 * Configure block length for MMC/SD cards and initiate the transfer.
1398 omap_hsmmc_prepare_data(struct omap_hsmmc_host
*host
, struct mmc_request
*req
)
1401 host
->data
= req
->data
;
1403 if (req
->data
== NULL
) {
1404 OMAP_HSMMC_WRITE(host
->base
, BLK
, 0);
1406 * Set an arbitrary 100ms data timeout for commands with
1409 if (req
->cmd
->flags
& MMC_RSP_BUSY
)
1410 set_data_timeout(host
, 100000000U, 0);
1414 OMAP_HSMMC_WRITE(host
->base
, BLK
, (req
->data
->blksz
)
1415 | (req
->data
->blocks
<< 16));
1416 set_data_timeout(host
, req
->data
->timeout_ns
, req
->data
->timeout_clks
);
1418 if (host
->use_dma
) {
1419 ret
= omap_hsmmc_start_dma_transfer(host
, req
);
1421 dev_dbg(mmc_dev(host
->mmc
), "MMC start dma failure\n");
1429 * Request function. for read/write operation
1431 static void omap_hsmmc_request(struct mmc_host
*mmc
, struct mmc_request
*req
)
1433 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1436 BUG_ON(host
->req_in_progress
);
1437 BUG_ON(host
->dma_ch
!= -1);
1438 if (host
->protect_card
) {
1439 if (host
->reqs_blocked
< 3) {
1441 * Ensure the controller is left in a consistent
1442 * state by resetting the command and data state
1445 omap_hsmmc_reset_controller_fsm(host
, SRD
);
1446 omap_hsmmc_reset_controller_fsm(host
, SRC
);
1447 host
->reqs_blocked
+= 1;
1449 req
->cmd
->error
= -EBADF
;
1451 req
->data
->error
= -EBADF
;
1452 req
->cmd
->retries
= 0;
1453 mmc_request_done(mmc
, req
);
1455 } else if (host
->reqs_blocked
)
1456 host
->reqs_blocked
= 0;
1457 WARN_ON(host
->mrq
!= NULL
);
1459 err
= omap_hsmmc_prepare_data(host
, req
);
1461 req
->cmd
->error
= err
;
1463 req
->data
->error
= err
;
1465 mmc_request_done(mmc
, req
);
1469 omap_hsmmc_start_command(host
, req
->cmd
, req
->data
);
1472 /* Routine to configure clock values. Exposed API to core */
1473 static void omap_hsmmc_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1475 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1477 unsigned long regval
;
1478 unsigned long timeout
;
1480 int do_send_init_stream
= 0;
1482 mmc_host_enable(host
->mmc
);
1484 if (ios
->power_mode
!= host
->power_mode
) {
1485 switch (ios
->power_mode
) {
1487 mmc_slot(host
).set_power(host
->dev
, host
->slot_id
,
1492 mmc_slot(host
).set_power(host
->dev
, host
->slot_id
,
1494 host
->vdd
= ios
->vdd
;
1497 do_send_init_stream
= 1;
1500 host
->power_mode
= ios
->power_mode
;
1503 /* FIXME: set registers based only on changes to ios */
1505 con
= OMAP_HSMMC_READ(host
->base
, CON
);
1506 switch (mmc
->ios
.bus_width
) {
1507 case MMC_BUS_WIDTH_8
:
1508 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| DW8
);
1510 case MMC_BUS_WIDTH_4
:
1511 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
1512 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1513 OMAP_HSMMC_READ(host
->base
, HCTL
) | FOUR_BIT
);
1515 case MMC_BUS_WIDTH_1
:
1516 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
1517 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1518 OMAP_HSMMC_READ(host
->base
, HCTL
) & ~FOUR_BIT
);
1522 if (host
->id
== OMAP_MMC1_DEVID
) {
1523 /* Only MMC1 can interface at 3V without some flavor
1524 * of external transceiver; but they all handle 1.8V.
1526 if ((OMAP_HSMMC_READ(host
->base
, HCTL
) & SDVSDET
) &&
1527 (ios
->vdd
== DUAL_VOLT_OCR_BIT
)) {
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.
1534 if (omap_hsmmc_switch_opcond(host
, ios
->vdd
) != 0)
1535 dev_dbg(mmc_dev(host
->mmc
),
1536 "Switch operation failed\n");
1541 dsor
= OMAP_MMC_MASTER_CLOCK
/ ios
->clock
;
1545 if (OMAP_MMC_MASTER_CLOCK
/ dsor
> ios
->clock
)
1551 omap_hsmmc_stop_clock(host
);
1552 regval
= OMAP_HSMMC_READ(host
->base
, SYSCTL
);
1553 regval
= regval
& ~(CLKD_MASK
);
1554 regval
= regval
| (dsor
<< 6) | (DTO
<< 16);
1555 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
, regval
);
1556 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
1557 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | ICE
);
1559 /* Wait till the ICS bit is set */
1560 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
1561 while ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ICS
) != ICS
1562 && time_before(jiffies
, timeout
))
1565 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
1566 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | CEN
);
1568 if (do_send_init_stream
)
1569 send_init_stream(host
);
1571 con
= OMAP_HSMMC_READ(host
->base
, CON
);
1572 if (ios
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
1573 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| OD
);
1575 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~OD
);
1577 if (host
->power_mode
== MMC_POWER_OFF
)
1578 mmc_host_disable(host
->mmc
);
1580 mmc_host_lazy_disable(host
->mmc
);
1583 static int omap_hsmmc_get_cd(struct mmc_host
*mmc
)
1585 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1587 if (!mmc_slot(host
).card_detect
)
1589 return mmc_slot(host
).card_detect(host
->dev
, host
->slot_id
);
1592 static int omap_hsmmc_get_ro(struct mmc_host
*mmc
)
1594 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1596 if (!mmc_slot(host
).get_ro
)
1598 return mmc_slot(host
).get_ro(host
->dev
, 0);
1601 static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host
*host
)
1603 u32 hctl
, capa
, value
;
1605 /* Only MMC1 supports 3.0V */
1606 if (host
->id
== OMAP_MMC1_DEVID
) {
1614 value
= OMAP_HSMMC_READ(host
->base
, HCTL
) & ~SDVS_MASK
;
1615 OMAP_HSMMC_WRITE(host
->base
, HCTL
, value
| hctl
);
1617 value
= OMAP_HSMMC_READ(host
->base
, CAPA
);
1618 OMAP_HSMMC_WRITE(host
->base
, CAPA
, value
| capa
);
1620 /* Set the controller to AUTO IDLE mode */
1621 value
= OMAP_HSMMC_READ(host
->base
, SYSCONFIG
);
1622 OMAP_HSMMC_WRITE(host
->base
, SYSCONFIG
, value
| AUTOIDLE
);
1624 /* Set SD bus power bit */
1625 set_sd_bus_power(host
);
1629 * Dynamic power saving handling, FSM:
1630 * ENABLED -> DISABLED -> CARDSLEEP / REGSLEEP -> OFF
1632 * |______________________|______________________|
1634 * ENABLED: mmc host is fully functional
1635 * DISABLED: fclk is off
1636 * CARDSLEEP: fclk is off, card is asleep, voltage regulator is asleep
1637 * REGSLEEP: fclk is off, voltage regulator is asleep
1638 * OFF: fclk is off, voltage regulator is off
1640 * Transition handlers return the timeout for the next state transition
1641 * or negative error.
1644 enum {ENABLED
= 0, DISABLED
, CARDSLEEP
, REGSLEEP
, OFF
};
1646 /* Handler for [ENABLED -> DISABLED] transition */
1647 static int omap_hsmmc_enabled_to_disabled(struct omap_hsmmc_host
*host
)
1649 omap_hsmmc_context_save(host
);
1650 clk_disable(host
->fclk
);
1651 host
->dpm_state
= DISABLED
;
1653 dev_dbg(mmc_dev(host
->mmc
), "ENABLED -> DISABLED\n");
1655 if (host
->power_mode
== MMC_POWER_OFF
)
1658 return OMAP_MMC_SLEEP_TIMEOUT
;
1661 /* Handler for [DISABLED -> REGSLEEP / CARDSLEEP] transition */
1662 static int omap_hsmmc_disabled_to_sleep(struct omap_hsmmc_host
*host
)
1666 if (!mmc_try_claim_host(host
->mmc
))
1669 clk_enable(host
->fclk
);
1670 omap_hsmmc_context_restore(host
);
1671 if (mmc_card_can_sleep(host
->mmc
)) {
1672 err
= mmc_card_sleep(host
->mmc
);
1674 clk_disable(host
->fclk
);
1675 mmc_release_host(host
->mmc
);
1678 new_state
= CARDSLEEP
;
1680 new_state
= REGSLEEP
;
1682 if (mmc_slot(host
).set_sleep
)
1683 mmc_slot(host
).set_sleep(host
->dev
, host
->slot_id
, 1, 0,
1684 new_state
== CARDSLEEP
);
1685 /* FIXME: turn off bus power and perhaps interrupts too */
1686 clk_disable(host
->fclk
);
1687 host
->dpm_state
= new_state
;
1689 mmc_release_host(host
->mmc
);
1691 dev_dbg(mmc_dev(host
->mmc
), "DISABLED -> %s\n",
1692 host
->dpm_state
== CARDSLEEP
? "CARDSLEEP" : "REGSLEEP");
1694 if (mmc_slot(host
).no_off
)
1697 if ((host
->mmc
->caps
& MMC_CAP_NONREMOVABLE
) ||
1698 mmc_slot(host
).card_detect
||
1699 (mmc_slot(host
).get_cover_state
&&
1700 mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
)))
1701 return OMAP_MMC_OFF_TIMEOUT
;
1706 /* Handler for [REGSLEEP / CARDSLEEP -> OFF] transition */
1707 static int omap_hsmmc_sleep_to_off(struct omap_hsmmc_host
*host
)
1709 if (!mmc_try_claim_host(host
->mmc
))
1712 if (mmc_slot(host
).no_off
)
1715 if (!((host
->mmc
->caps
& MMC_CAP_NONREMOVABLE
) ||
1716 mmc_slot(host
).card_detect
||
1717 (mmc_slot(host
).get_cover_state
&&
1718 mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
)))) {
1719 mmc_release_host(host
->mmc
);
1723 mmc_slot(host
).set_power(host
->dev
, host
->slot_id
, 0, 0);
1725 host
->power_mode
= MMC_POWER_OFF
;
1727 dev_dbg(mmc_dev(host
->mmc
), "%s -> OFF\n",
1728 host
->dpm_state
== CARDSLEEP
? "CARDSLEEP" : "REGSLEEP");
1730 host
->dpm_state
= OFF
;
1732 mmc_release_host(host
->mmc
);
1737 /* Handler for [DISABLED -> ENABLED] transition */
1738 static int omap_hsmmc_disabled_to_enabled(struct omap_hsmmc_host
*host
)
1742 err
= clk_enable(host
->fclk
);
1746 omap_hsmmc_context_restore(host
);
1747 host
->dpm_state
= ENABLED
;
1749 dev_dbg(mmc_dev(host
->mmc
), "DISABLED -> ENABLED\n");
1754 /* Handler for [SLEEP -> ENABLED] transition */
1755 static int omap_hsmmc_sleep_to_enabled(struct omap_hsmmc_host
*host
)
1757 if (!mmc_try_claim_host(host
->mmc
))
1760 clk_enable(host
->fclk
);
1761 omap_hsmmc_context_restore(host
);
1762 if (mmc_slot(host
).set_sleep
)
1763 mmc_slot(host
).set_sleep(host
->dev
, host
->slot_id
, 0,
1764 host
->vdd
, host
->dpm_state
== CARDSLEEP
);
1765 if (mmc_card_can_sleep(host
->mmc
))
1766 mmc_card_awake(host
->mmc
);
1768 dev_dbg(mmc_dev(host
->mmc
), "%s -> ENABLED\n",
1769 host
->dpm_state
== CARDSLEEP
? "CARDSLEEP" : "REGSLEEP");
1771 host
->dpm_state
= ENABLED
;
1773 mmc_release_host(host
->mmc
);
1778 /* Handler for [OFF -> ENABLED] transition */
1779 static int omap_hsmmc_off_to_enabled(struct omap_hsmmc_host
*host
)
1781 clk_enable(host
->fclk
);
1783 omap_hsmmc_context_restore(host
);
1784 omap_hsmmc_conf_bus_power(host
);
1785 mmc_power_restore_host(host
->mmc
);
1787 host
->dpm_state
= ENABLED
;
1789 dev_dbg(mmc_dev(host
->mmc
), "OFF -> ENABLED\n");
1795 * Bring MMC host to ENABLED from any other PM state.
1797 static int omap_hsmmc_enable(struct mmc_host
*mmc
)
1799 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1801 switch (host
->dpm_state
) {
1803 return omap_hsmmc_disabled_to_enabled(host
);
1806 return omap_hsmmc_sleep_to_enabled(host
);
1808 return omap_hsmmc_off_to_enabled(host
);
1810 dev_dbg(mmc_dev(host
->mmc
), "UNKNOWN state\n");
1816 * Bring MMC host in PM state (one level deeper).
1818 static int omap_hsmmc_disable(struct mmc_host
*mmc
, int lazy
)
1820 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1822 switch (host
->dpm_state
) {
1826 delay
= omap_hsmmc_enabled_to_disabled(host
);
1827 if (lazy
|| delay
< 0)
1832 return omap_hsmmc_disabled_to_sleep(host
);
1835 return omap_hsmmc_sleep_to_off(host
);
1837 dev_dbg(mmc_dev(host
->mmc
), "UNKNOWN state\n");
1842 static int omap_hsmmc_enable_fclk(struct mmc_host
*mmc
)
1844 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1847 err
= clk_enable(host
->fclk
);
1850 dev_dbg(mmc_dev(host
->mmc
), "mmc_fclk: enabled\n");
1851 omap_hsmmc_context_restore(host
);
1855 static int omap_hsmmc_disable_fclk(struct mmc_host
*mmc
, int lazy
)
1857 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1859 omap_hsmmc_context_save(host
);
1860 clk_disable(host
->fclk
);
1861 dev_dbg(mmc_dev(host
->mmc
), "mmc_fclk: disabled\n");
1865 static const struct mmc_host_ops omap_hsmmc_ops
= {
1866 .enable
= omap_hsmmc_enable_fclk
,
1867 .disable
= omap_hsmmc_disable_fclk
,
1868 .request
= omap_hsmmc_request
,
1869 .set_ios
= omap_hsmmc_set_ios
,
1870 .get_cd
= omap_hsmmc_get_cd
,
1871 .get_ro
= omap_hsmmc_get_ro
,
1872 /* NYET -- enable_sdio_irq */
1875 static const struct mmc_host_ops omap_hsmmc_ps_ops
= {
1876 .enable
= omap_hsmmc_enable
,
1877 .disable
= omap_hsmmc_disable
,
1878 .request
= omap_hsmmc_request
,
1879 .set_ios
= omap_hsmmc_set_ios
,
1880 .get_cd
= omap_hsmmc_get_cd
,
1881 .get_ro
= omap_hsmmc_get_ro
,
1882 /* NYET -- enable_sdio_irq */
1885 #ifdef CONFIG_DEBUG_FS
1887 static int omap_hsmmc_regs_show(struct seq_file
*s
, void *data
)
1889 struct mmc_host
*mmc
= s
->private;
1890 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1891 int context_loss
= 0;
1893 if (host
->pdata
->get_context_loss_count
)
1894 context_loss
= host
->pdata
->get_context_loss_count(host
->dev
);
1896 seq_printf(s
, "mmc%d:\n"
1899 " nesting_cnt:\t%d\n"
1900 " ctx_loss:\t%d:%d\n"
1902 mmc
->index
, mmc
->enabled
? 1 : 0,
1903 host
->dpm_state
, mmc
->nesting_cnt
,
1904 host
->context_loss
, context_loss
);
1906 if (host
->suspended
|| host
->dpm_state
== OFF
) {
1907 seq_printf(s
, "host suspended, can't read registers\n");
1911 if (clk_enable(host
->fclk
) != 0) {
1912 seq_printf(s
, "can't read the regs\n");
1916 seq_printf(s
, "SYSCONFIG:\t0x%08x\n",
1917 OMAP_HSMMC_READ(host
->base
, SYSCONFIG
));
1918 seq_printf(s
, "CON:\t\t0x%08x\n",
1919 OMAP_HSMMC_READ(host
->base
, CON
));
1920 seq_printf(s
, "HCTL:\t\t0x%08x\n",
1921 OMAP_HSMMC_READ(host
->base
, HCTL
));
1922 seq_printf(s
, "SYSCTL:\t\t0x%08x\n",
1923 OMAP_HSMMC_READ(host
->base
, SYSCTL
));
1924 seq_printf(s
, "IE:\t\t0x%08x\n",
1925 OMAP_HSMMC_READ(host
->base
, IE
));
1926 seq_printf(s
, "ISE:\t\t0x%08x\n",
1927 OMAP_HSMMC_READ(host
->base
, ISE
));
1928 seq_printf(s
, "CAPA:\t\t0x%08x\n",
1929 OMAP_HSMMC_READ(host
->base
, CAPA
));
1931 clk_disable(host
->fclk
);
1936 static int omap_hsmmc_regs_open(struct inode
*inode
, struct file
*file
)
1938 return single_open(file
, omap_hsmmc_regs_show
, inode
->i_private
);
1941 static const struct file_operations mmc_regs_fops
= {
1942 .open
= omap_hsmmc_regs_open
,
1944 .llseek
= seq_lseek
,
1945 .release
= single_release
,
1948 static void omap_hsmmc_debugfs(struct mmc_host
*mmc
)
1950 if (mmc
->debugfs_root
)
1951 debugfs_create_file("regs", S_IRUSR
, mmc
->debugfs_root
,
1952 mmc
, &mmc_regs_fops
);
1957 static void omap_hsmmc_debugfs(struct mmc_host
*mmc
)
1963 static int __init
omap_hsmmc_probe(struct platform_device
*pdev
)
1965 struct omap_mmc_platform_data
*pdata
= pdev
->dev
.platform_data
;
1966 struct mmc_host
*mmc
;
1967 struct omap_hsmmc_host
*host
= NULL
;
1968 struct resource
*res
;
1971 if (pdata
== NULL
) {
1972 dev_err(&pdev
->dev
, "Platform Data is missing\n");
1976 if (pdata
->nr_slots
== 0) {
1977 dev_err(&pdev
->dev
, "No Slots\n");
1981 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1982 irq
= platform_get_irq(pdev
, 0);
1983 if (res
== NULL
|| irq
< 0)
1986 res
= request_mem_region(res
->start
, res
->end
- res
->start
+ 1,
1991 ret
= omap_hsmmc_gpio_init(pdata
);
1995 mmc
= mmc_alloc_host(sizeof(struct omap_hsmmc_host
), &pdev
->dev
);
2001 host
= mmc_priv(mmc
);
2003 host
->pdata
= pdata
;
2004 host
->dev
= &pdev
->dev
;
2006 host
->dev
->dma_mask
= &pdata
->dma_mask
;
2009 host
->id
= pdev
->id
;
2011 host
->mapbase
= res
->start
;
2012 host
->base
= ioremap(host
->mapbase
, SZ_4K
);
2013 host
->power_mode
= MMC_POWER_OFF
;
2015 platform_set_drvdata(pdev
, host
);
2016 INIT_WORK(&host
->mmc_carddetect_work
, omap_hsmmc_detect
);
2018 if (mmc_slot(host
).power_saving
)
2019 mmc
->ops
= &omap_hsmmc_ps_ops
;
2021 mmc
->ops
= &omap_hsmmc_ops
;
2024 * If regulator_disable can only put vcc_aux to sleep then there is
2027 if (mmc_slot(host
).vcc_aux_disable_is_sleep
)
2028 mmc_slot(host
).no_off
= 1;
2030 mmc
->f_min
= 400000;
2031 mmc
->f_max
= 52000000;
2033 spin_lock_init(&host
->irq_lock
);
2035 host
->iclk
= clk_get(&pdev
->dev
, "ick");
2036 if (IS_ERR(host
->iclk
)) {
2037 ret
= PTR_ERR(host
->iclk
);
2041 host
->fclk
= clk_get(&pdev
->dev
, "fck");
2042 if (IS_ERR(host
->fclk
)) {
2043 ret
= PTR_ERR(host
->fclk
);
2045 clk_put(host
->iclk
);
2049 omap_hsmmc_context_save(host
);
2051 mmc
->caps
|= MMC_CAP_DISABLE
;
2052 mmc_set_disable_delay(mmc
, OMAP_MMC_DISABLED_TIMEOUT
);
2053 /* we start off in DISABLED state */
2054 host
->dpm_state
= DISABLED
;
2056 if (mmc_host_enable(host
->mmc
) != 0) {
2057 clk_put(host
->iclk
);
2058 clk_put(host
->fclk
);
2062 if (clk_enable(host
->iclk
) != 0) {
2063 mmc_host_disable(host
->mmc
);
2064 clk_put(host
->iclk
);
2065 clk_put(host
->fclk
);
2069 if (cpu_is_omap2430()) {
2070 host
->dbclk
= clk_get(&pdev
->dev
, "mmchsdb_fck");
2072 * MMC can still work without debounce clock.
2074 if (IS_ERR(host
->dbclk
))
2075 dev_warn(mmc_dev(host
->mmc
),
2076 "Failed to get debounce clock\n");
2078 host
->got_dbclk
= 1;
2080 if (host
->got_dbclk
)
2081 if (clk_enable(host
->dbclk
) != 0)
2082 dev_dbg(mmc_dev(host
->mmc
), "Enabling debounce"
2086 /* Since we do only SG emulation, we can have as many segs
2088 mmc
->max_phys_segs
= 1024;
2089 mmc
->max_hw_segs
= 1024;
2091 mmc
->max_blk_size
= 512; /* Block Length at max can be 1024 */
2092 mmc
->max_blk_count
= 0xFFFF; /* No. of Blocks is 16 bits */
2093 mmc
->max_req_size
= mmc
->max_blk_size
* mmc
->max_blk_count
;
2094 mmc
->max_seg_size
= mmc
->max_req_size
;
2096 mmc
->caps
|= MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
|
2097 MMC_CAP_WAIT_WHILE_BUSY
;
2099 if (mmc_slot(host
).wires
>= 8)
2100 mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
2101 else if (mmc_slot(host
).wires
>= 4)
2102 mmc
->caps
|= MMC_CAP_4_BIT_DATA
;
2104 if (mmc_slot(host
).nonremovable
)
2105 mmc
->caps
|= MMC_CAP_NONREMOVABLE
;
2107 omap_hsmmc_conf_bus_power(host
);
2109 /* Select DMA lines */
2111 case OMAP_MMC1_DEVID
:
2112 host
->dma_line_tx
= OMAP24XX_DMA_MMC1_TX
;
2113 host
->dma_line_rx
= OMAP24XX_DMA_MMC1_RX
;
2115 case OMAP_MMC2_DEVID
:
2116 host
->dma_line_tx
= OMAP24XX_DMA_MMC2_TX
;
2117 host
->dma_line_rx
= OMAP24XX_DMA_MMC2_RX
;
2119 case OMAP_MMC3_DEVID
:
2120 host
->dma_line_tx
= OMAP34XX_DMA_MMC3_TX
;
2121 host
->dma_line_rx
= OMAP34XX_DMA_MMC3_RX
;
2123 case OMAP_MMC4_DEVID
:
2124 host
->dma_line_tx
= OMAP44XX_DMA_MMC4_TX
;
2125 host
->dma_line_rx
= OMAP44XX_DMA_MMC4_RX
;
2127 case OMAP_MMC5_DEVID
:
2128 host
->dma_line_tx
= OMAP44XX_DMA_MMC5_TX
;
2129 host
->dma_line_rx
= OMAP44XX_DMA_MMC5_RX
;
2132 dev_err(mmc_dev(host
->mmc
), "Invalid MMC id\n");
2136 /* Request IRQ for MMC operations */
2137 ret
= request_irq(host
->irq
, omap_hsmmc_irq
, IRQF_DISABLED
,
2138 mmc_hostname(mmc
), host
);
2140 dev_dbg(mmc_dev(host
->mmc
), "Unable to grab HSMMC IRQ\n");
2144 if (pdata
->init
!= NULL
) {
2145 if (pdata
->init(&pdev
->dev
) != 0) {
2146 dev_dbg(mmc_dev(host
->mmc
),
2147 "Unable to configure MMC IRQs\n");
2148 goto err_irq_cd_init
;
2152 if (omap_hsmmc_have_reg() && !mmc_slot(host
).set_power
) {
2153 ret
= omap_hsmmc_reg_get(host
);
2159 mmc
->ocr_avail
= mmc_slot(host
).ocr_mask
;
2161 /* Request IRQ for card detect */
2162 if ((mmc_slot(host
).card_detect_irq
)) {
2163 ret
= request_irq(mmc_slot(host
).card_detect_irq
,
2164 omap_hsmmc_cd_handler
,
2165 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
2167 mmc_hostname(mmc
), host
);
2169 dev_dbg(mmc_dev(host
->mmc
),
2170 "Unable to grab MMC CD IRQ\n");
2175 omap_hsmmc_disable_irq(host
);
2177 mmc_host_lazy_disable(host
->mmc
);
2179 omap_hsmmc_protect_card(host
);
2183 if (mmc_slot(host
).name
!= NULL
) {
2184 ret
= device_create_file(&mmc
->class_dev
, &dev_attr_slot_name
);
2188 if (mmc_slot(host
).card_detect_irq
&& mmc_slot(host
).get_cover_state
) {
2189 ret
= device_create_file(&mmc
->class_dev
,
2190 &dev_attr_cover_switch
);
2195 omap_hsmmc_debugfs(mmc
);
2200 mmc_remove_host(mmc
);
2201 free_irq(mmc_slot(host
).card_detect_irq
, host
);
2204 omap_hsmmc_reg_put(host
);
2206 if (host
->pdata
->cleanup
)
2207 host
->pdata
->cleanup(&pdev
->dev
);
2209 free_irq(host
->irq
, host
);
2211 mmc_host_disable(host
->mmc
);
2212 clk_disable(host
->iclk
);
2213 clk_put(host
->fclk
);
2214 clk_put(host
->iclk
);
2215 if (host
->got_dbclk
) {
2216 clk_disable(host
->dbclk
);
2217 clk_put(host
->dbclk
);
2220 iounmap(host
->base
);
2221 platform_set_drvdata(pdev
, NULL
);
2224 omap_hsmmc_gpio_free(pdata
);
2226 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2230 static int omap_hsmmc_remove(struct platform_device
*pdev
)
2232 struct omap_hsmmc_host
*host
= platform_get_drvdata(pdev
);
2233 struct resource
*res
;
2236 mmc_host_enable(host
->mmc
);
2237 mmc_remove_host(host
->mmc
);
2239 omap_hsmmc_reg_put(host
);
2240 if (host
->pdata
->cleanup
)
2241 host
->pdata
->cleanup(&pdev
->dev
);
2242 free_irq(host
->irq
, host
);
2243 if (mmc_slot(host
).card_detect_irq
)
2244 free_irq(mmc_slot(host
).card_detect_irq
, host
);
2245 flush_scheduled_work();
2247 mmc_host_disable(host
->mmc
);
2248 clk_disable(host
->iclk
);
2249 clk_put(host
->fclk
);
2250 clk_put(host
->iclk
);
2251 if (host
->got_dbclk
) {
2252 clk_disable(host
->dbclk
);
2253 clk_put(host
->dbclk
);
2256 mmc_free_host(host
->mmc
);
2257 iounmap(host
->base
);
2258 omap_hsmmc_gpio_free(pdev
->dev
.platform_data
);
2261 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
2263 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
2264 platform_set_drvdata(pdev
, NULL
);
2270 static int omap_hsmmc_suspend(struct device
*dev
)
2273 struct platform_device
*pdev
= to_platform_device(dev
);
2274 struct omap_hsmmc_host
*host
= platform_get_drvdata(pdev
);
2275 pm_message_t state
= PMSG_SUSPEND
; /* unused by MMC core */
2277 if (host
&& host
->suspended
)
2281 host
->suspended
= 1;
2282 if (host
->pdata
->suspend
) {
2283 ret
= host
->pdata
->suspend(&pdev
->dev
,
2286 dev_dbg(mmc_dev(host
->mmc
),
2287 "Unable to handle MMC board"
2288 " level suspend\n");
2289 host
->suspended
= 0;
2293 cancel_work_sync(&host
->mmc_carddetect_work
);
2294 mmc_host_enable(host
->mmc
);
2295 ret
= mmc_suspend_host(host
->mmc
);
2297 omap_hsmmc_disable_irq(host
);
2298 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
2299 OMAP_HSMMC_READ(host
->base
, HCTL
) & ~SDBP
);
2300 mmc_host_disable(host
->mmc
);
2301 clk_disable(host
->iclk
);
2302 if (host
->got_dbclk
)
2303 clk_disable(host
->dbclk
);
2305 host
->suspended
= 0;
2306 if (host
->pdata
->resume
) {
2307 ret
= host
->pdata
->resume(&pdev
->dev
,
2310 dev_dbg(mmc_dev(host
->mmc
),
2311 "Unmask interrupt failed\n");
2313 mmc_host_disable(host
->mmc
);
2320 /* Routine to resume the MMC device */
2321 static int omap_hsmmc_resume(struct device
*dev
)
2324 struct platform_device
*pdev
= to_platform_device(dev
);
2325 struct omap_hsmmc_host
*host
= platform_get_drvdata(pdev
);
2327 if (host
&& !host
->suspended
)
2331 ret
= clk_enable(host
->iclk
);
2335 if (mmc_host_enable(host
->mmc
) != 0) {
2336 clk_disable(host
->iclk
);
2340 if (host
->got_dbclk
)
2341 clk_enable(host
->dbclk
);
2343 omap_hsmmc_conf_bus_power(host
);
2345 if (host
->pdata
->resume
) {
2346 ret
= host
->pdata
->resume(&pdev
->dev
, host
->slot_id
);
2348 dev_dbg(mmc_dev(host
->mmc
),
2349 "Unmask interrupt failed\n");
2352 omap_hsmmc_protect_card(host
);
2354 /* Notify the core to resume the host */
2355 ret
= mmc_resume_host(host
->mmc
);
2357 host
->suspended
= 0;
2359 mmc_host_lazy_disable(host
->mmc
);
2365 dev_dbg(mmc_dev(host
->mmc
),
2366 "Failed to enable MMC clocks during resume\n");
2371 #define omap_hsmmc_suspend NULL
2372 #define omap_hsmmc_resume NULL
2375 static struct dev_pm_ops omap_hsmmc_dev_pm_ops
= {
2376 .suspend
= omap_hsmmc_suspend
,
2377 .resume
= omap_hsmmc_resume
,
2380 static struct platform_driver omap_hsmmc_driver
= {
2381 .remove
= omap_hsmmc_remove
,
2383 .name
= DRIVER_NAME
,
2384 .owner
= THIS_MODULE
,
2385 .pm
= &omap_hsmmc_dev_pm_ops
,
2389 static int __init
omap_hsmmc_init(void)
2391 /* Register the MMC driver */
2392 return platform_driver_probe(&omap_hsmmc_driver
, omap_hsmmc_probe
);
2395 static void __exit
omap_hsmmc_cleanup(void)
2397 /* Unregister MMC driver */
2398 platform_driver_unregister(&omap_hsmmc_driver
);
2401 module_init(omap_hsmmc_init
);
2402 module_exit(omap_hsmmc_cleanup
);
2404 MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2405 MODULE_LICENSE("GPL");
2406 MODULE_ALIAS("platform:" DRIVER_NAME
);
2407 MODULE_AUTHOR("Texas Instruments Inc");