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>
34 #include <mach/hardware.h>
35 #include <mach/board.h>
39 /* OMAP HSMMC Host Controller Registers */
40 #define OMAP_HSMMC_SYSCONFIG 0x0010
41 #define OMAP_HSMMC_SYSSTATUS 0x0014
42 #define OMAP_HSMMC_CON 0x002C
43 #define OMAP_HSMMC_BLK 0x0104
44 #define OMAP_HSMMC_ARG 0x0108
45 #define OMAP_HSMMC_CMD 0x010C
46 #define OMAP_HSMMC_RSP10 0x0110
47 #define OMAP_HSMMC_RSP32 0x0114
48 #define OMAP_HSMMC_RSP54 0x0118
49 #define OMAP_HSMMC_RSP76 0x011C
50 #define OMAP_HSMMC_DATA 0x0120
51 #define OMAP_HSMMC_HCTL 0x0128
52 #define OMAP_HSMMC_SYSCTL 0x012C
53 #define OMAP_HSMMC_STAT 0x0130
54 #define OMAP_HSMMC_IE 0x0134
55 #define OMAP_HSMMC_ISE 0x0138
56 #define OMAP_HSMMC_CAPA 0x0140
58 #define VS18 (1 << 26)
59 #define VS30 (1 << 25)
60 #define SDVS18 (0x5 << 9)
61 #define SDVS30 (0x6 << 9)
62 #define SDVS33 (0x7 << 9)
63 #define SDVS_MASK 0x00000E00
64 #define SDVSCLR 0xFFFFF1FF
65 #define SDVSDET 0x00000400
72 #define CLKD_MASK 0x0000FFC0
74 #define DTO_MASK 0x000F0000
76 #define INT_EN_MASK 0x307F0033
77 #define BWR_ENABLE (1 << 4)
78 #define BRR_ENABLE (1 << 5)
79 #define INIT_STREAM (1 << 1)
80 #define DP_SELECT (1 << 21)
85 #define FOUR_BIT (1 << 1)
91 #define CMD_TIMEOUT (1 << 16)
92 #define DATA_TIMEOUT (1 << 20)
93 #define CMD_CRC (1 << 17)
94 #define DATA_CRC (1 << 21)
95 #define CARD_ERR (1 << 28)
96 #define STAT_CLEAR 0xFFFFFFFF
97 #define INIT_STREAM_CMD 0x00000000
98 #define DUAL_VOLT_OCR_BIT 7
100 #define SRD (1 << 26)
101 #define SOFTRESET (1 << 1)
102 #define RESETDONE (1 << 0)
105 * FIXME: Most likely all the data using these _DEVID defines should come
106 * from the platform_data, or implemented in controller and slot specific
109 #define OMAP_MMC1_DEVID 0
110 #define OMAP_MMC2_DEVID 1
111 #define OMAP_MMC3_DEVID 2
112 #define OMAP_MMC4_DEVID 3
113 #define OMAP_MMC5_DEVID 4
115 #define MMC_TIMEOUT_MS 20
116 #define OMAP_MMC_MASTER_CLOCK 96000000
117 #define DRIVER_NAME "mmci-omap-hs"
119 /* Timeouts for entering power saving states on inactivity, msec */
120 #define OMAP_MMC_DISABLED_TIMEOUT 100
121 #define OMAP_MMC_SLEEP_TIMEOUT 1000
122 #define OMAP_MMC_OFF_TIMEOUT 8000
125 * One controller can have multiple slots, like on some omap boards using
126 * omap.c controller driver. Luckily this is not currently done on any known
127 * omap_hsmmc.c device.
129 #define mmc_slot(host) (host->pdata->slots[host->slot_id])
132 * MMC Host controller read/write API's
134 #define OMAP_HSMMC_READ(base, reg) \
135 __raw_readl((base) + OMAP_HSMMC_##reg)
137 #define OMAP_HSMMC_WRITE(base, reg, val) \
138 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
140 struct omap_hsmmc_host
{
142 struct mmc_host
*mmc
;
143 struct mmc_request
*mrq
;
144 struct mmc_command
*cmd
;
145 struct mmc_data
*data
;
149 struct semaphore sem
;
150 struct work_struct mmc_carddetect_work
;
152 resource_size_t mapbase
;
153 spinlock_t irq_lock
; /* Prevent races with irq handler */
156 unsigned int dma_len
;
157 unsigned int dma_sg_idx
;
158 unsigned char bus_mode
;
159 unsigned char power_mode
;
165 int dma_line_tx
, dma_line_rx
;
175 struct omap_mmc_platform_data
*pdata
;
179 * Stop clock to the card
181 static void omap_hsmmc_stop_clock(struct omap_hsmmc_host
*host
)
183 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
184 OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ~CEN
);
185 if ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & CEN
) != 0x0)
186 dev_dbg(mmc_dev(host
->mmc
), "MMC Clock is not stoped\n");
192 * Restore the MMC host context, if it was lost as result of a
193 * power state change.
195 static int omap_hsmmc_context_restore(struct omap_hsmmc_host
*host
)
197 struct mmc_ios
*ios
= &host
->mmc
->ios
;
198 struct omap_mmc_platform_data
*pdata
= host
->pdata
;
199 int context_loss
= 0;
202 unsigned long timeout
;
204 if (pdata
->get_context_loss_count
) {
205 context_loss
= pdata
->get_context_loss_count(host
->dev
);
206 if (context_loss
< 0)
210 dev_dbg(mmc_dev(host
->mmc
), "context was %slost\n",
211 context_loss
== host
->context_loss
? "not " : "");
212 if (host
->context_loss
== context_loss
)
215 /* Wait for hardware reset */
216 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
217 while ((OMAP_HSMMC_READ(host
->base
, SYSSTATUS
) & RESETDONE
) != RESETDONE
218 && time_before(jiffies
, timeout
))
221 /* Do software reset */
222 OMAP_HSMMC_WRITE(host
->base
, SYSCONFIG
, SOFTRESET
);
223 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
224 while ((OMAP_HSMMC_READ(host
->base
, SYSSTATUS
) & RESETDONE
) != RESETDONE
225 && time_before(jiffies
, timeout
))
228 OMAP_HSMMC_WRITE(host
->base
, SYSCONFIG
,
229 OMAP_HSMMC_READ(host
->base
, SYSCONFIG
) | AUTOIDLE
);
231 if (host
->id
== OMAP_MMC1_DEVID
) {
232 if (host
->power_mode
!= MMC_POWER_OFF
&&
233 (1 << ios
->vdd
) <= MMC_VDD_23_24
)
243 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
244 OMAP_HSMMC_READ(host
->base
, HCTL
) | hctl
);
246 OMAP_HSMMC_WRITE(host
->base
, CAPA
,
247 OMAP_HSMMC_READ(host
->base
, CAPA
) | capa
);
249 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
250 OMAP_HSMMC_READ(host
->base
, HCTL
) | SDBP
);
252 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
253 while ((OMAP_HSMMC_READ(host
->base
, HCTL
) & SDBP
) != SDBP
254 && time_before(jiffies
, timeout
))
257 OMAP_HSMMC_WRITE(host
->base
, STAT
, STAT_CLEAR
);
258 OMAP_HSMMC_WRITE(host
->base
, ISE
, INT_EN_MASK
);
259 OMAP_HSMMC_WRITE(host
->base
, IE
, INT_EN_MASK
);
261 /* Do not initialize card-specific things if the power is off */
262 if (host
->power_mode
== MMC_POWER_OFF
)
265 con
= OMAP_HSMMC_READ(host
->base
, CON
);
266 switch (ios
->bus_width
) {
267 case MMC_BUS_WIDTH_8
:
268 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| DW8
);
270 case MMC_BUS_WIDTH_4
:
271 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
272 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
273 OMAP_HSMMC_READ(host
->base
, HCTL
) | FOUR_BIT
);
275 case MMC_BUS_WIDTH_1
:
276 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
277 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
278 OMAP_HSMMC_READ(host
->base
, HCTL
) & ~FOUR_BIT
);
283 dsor
= OMAP_MMC_MASTER_CLOCK
/ ios
->clock
;
287 if (OMAP_MMC_MASTER_CLOCK
/ dsor
> ios
->clock
)
294 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
295 OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ~CEN
);
296 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
, (dsor
<< 6) | (DTO
<< 16));
297 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
298 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | ICE
);
300 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
301 while ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ICS
) != ICS
302 && time_before(jiffies
, timeout
))
305 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
306 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | CEN
);
308 con
= OMAP_HSMMC_READ(host
->base
, CON
);
309 if (ios
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
310 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| OD
);
312 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~OD
);
314 host
->context_loss
= context_loss
;
316 dev_dbg(mmc_dev(host
->mmc
), "context is restored\n");
321 * Save the MMC host context (store the number of power state changes so far).
323 static void omap_hsmmc_context_save(struct omap_hsmmc_host
*host
)
325 struct omap_mmc_platform_data
*pdata
= host
->pdata
;
328 if (pdata
->get_context_loss_count
) {
329 context_loss
= pdata
->get_context_loss_count(host
->dev
);
330 if (context_loss
< 0)
332 host
->context_loss
= context_loss
;
338 static int omap_hsmmc_context_restore(struct omap_hsmmc_host
*host
)
343 static void omap_hsmmc_context_save(struct omap_hsmmc_host
*host
)
350 * Send init stream sequence to card
351 * before sending IDLE command
353 static void send_init_stream(struct omap_hsmmc_host
*host
)
356 unsigned long timeout
;
358 if (host
->protect_card
)
361 disable_irq(host
->irq
);
362 OMAP_HSMMC_WRITE(host
->base
, CON
,
363 OMAP_HSMMC_READ(host
->base
, CON
) | INIT_STREAM
);
364 OMAP_HSMMC_WRITE(host
->base
, CMD
, INIT_STREAM_CMD
);
366 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
367 while ((reg
!= CC
) && time_before(jiffies
, timeout
))
368 reg
= OMAP_HSMMC_READ(host
->base
, STAT
) & CC
;
370 OMAP_HSMMC_WRITE(host
->base
, CON
,
371 OMAP_HSMMC_READ(host
->base
, CON
) & ~INIT_STREAM
);
373 OMAP_HSMMC_WRITE(host
->base
, STAT
, STAT_CLEAR
);
374 OMAP_HSMMC_READ(host
->base
, STAT
);
376 enable_irq(host
->irq
);
380 int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host
*host
)
384 if (mmc_slot(host
).get_cover_state
)
385 r
= mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
);
390 omap_hsmmc_show_cover_switch(struct device
*dev
, struct device_attribute
*attr
,
393 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
394 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
396 return sprintf(buf
, "%s\n",
397 omap_hsmmc_cover_is_closed(host
) ? "closed" : "open");
400 static DEVICE_ATTR(cover_switch
, S_IRUGO
, omap_hsmmc_show_cover_switch
, NULL
);
403 omap_hsmmc_show_slot_name(struct device
*dev
, struct device_attribute
*attr
,
406 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
407 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
409 return sprintf(buf
, "%s\n", mmc_slot(host
).name
);
412 static DEVICE_ATTR(slot_name
, S_IRUGO
, omap_hsmmc_show_slot_name
, NULL
);
415 * Configure the response type and send the cmd.
418 omap_hsmmc_start_command(struct omap_hsmmc_host
*host
, struct mmc_command
*cmd
,
419 struct mmc_data
*data
)
421 int cmdreg
= 0, resptype
= 0, cmdtype
= 0;
423 dev_dbg(mmc_dev(host
->mmc
), "%s: CMD%d, argument 0x%08x\n",
424 mmc_hostname(host
->mmc
), cmd
->opcode
, cmd
->arg
);
428 * Clear status bits and enable interrupts
430 OMAP_HSMMC_WRITE(host
->base
, STAT
, STAT_CLEAR
);
431 OMAP_HSMMC_WRITE(host
->base
, ISE
, INT_EN_MASK
);
434 OMAP_HSMMC_WRITE(host
->base
, IE
,
435 INT_EN_MASK
& ~(BRR_ENABLE
| BWR_ENABLE
));
437 OMAP_HSMMC_WRITE(host
->base
, IE
, INT_EN_MASK
);
439 host
->response_busy
= 0;
440 if (cmd
->flags
& MMC_RSP_PRESENT
) {
441 if (cmd
->flags
& MMC_RSP_136
)
443 else if (cmd
->flags
& MMC_RSP_BUSY
) {
445 host
->response_busy
= 1;
451 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
452 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
453 * a val of 0x3, rest 0x0.
455 if (cmd
== host
->mrq
->stop
)
458 cmdreg
= (cmd
->opcode
<< 24) | (resptype
<< 16) | (cmdtype
<< 22);
461 cmdreg
|= DP_SELECT
| MSBS
| BCE
;
462 if (data
->flags
& MMC_DATA_READ
)
472 * In an interrupt context (i.e. STOP command), the spinlock is unlocked
473 * by the interrupt handler, otherwise (i.e. for a new request) it is
477 spin_unlock_irqrestore(&host
->irq_lock
, host
->flags
);
479 OMAP_HSMMC_WRITE(host
->base
, ARG
, cmd
->arg
);
480 OMAP_HSMMC_WRITE(host
->base
, CMD
, cmdreg
);
484 omap_hsmmc_get_dma_dir(struct omap_hsmmc_host
*host
, struct mmc_data
*data
)
486 if (data
->flags
& MMC_DATA_WRITE
)
487 return DMA_TO_DEVICE
;
489 return DMA_FROM_DEVICE
;
493 * Notify the transfer complete to MMC core
496 omap_hsmmc_xfer_done(struct omap_hsmmc_host
*host
, struct mmc_data
*data
)
499 struct mmc_request
*mrq
= host
->mrq
;
501 /* TC before CC from CMD6 - don't know why, but it happens */
502 if (host
->cmd
&& host
->cmd
->opcode
== 6 &&
503 host
->response_busy
) {
504 host
->response_busy
= 0;
509 mmc_request_done(host
->mmc
, mrq
);
515 if (host
->use_dma
&& host
->dma_ch
!= -1)
516 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
, host
->dma_len
,
517 omap_hsmmc_get_dma_dir(host
, data
));
520 data
->bytes_xfered
+= data
->blocks
* (data
->blksz
);
522 data
->bytes_xfered
= 0;
526 mmc_request_done(host
->mmc
, data
->mrq
);
529 omap_hsmmc_start_command(host
, data
->stop
, NULL
);
533 * Notify the core about command completion
536 omap_hsmmc_cmd_done(struct omap_hsmmc_host
*host
, struct mmc_command
*cmd
)
540 if (cmd
->flags
& MMC_RSP_PRESENT
) {
541 if (cmd
->flags
& MMC_RSP_136
) {
542 /* response type 2 */
543 cmd
->resp
[3] = OMAP_HSMMC_READ(host
->base
, RSP10
);
544 cmd
->resp
[2] = OMAP_HSMMC_READ(host
->base
, RSP32
);
545 cmd
->resp
[1] = OMAP_HSMMC_READ(host
->base
, RSP54
);
546 cmd
->resp
[0] = OMAP_HSMMC_READ(host
->base
, RSP76
);
548 /* response types 1, 1b, 3, 4, 5, 6 */
549 cmd
->resp
[0] = OMAP_HSMMC_READ(host
->base
, RSP10
);
552 if ((host
->data
== NULL
&& !host
->response_busy
) || cmd
->error
) {
554 mmc_request_done(host
->mmc
, cmd
->mrq
);
559 * DMA clean up for command errors
561 static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host
*host
, int errno
)
563 host
->data
->error
= errno
;
565 if (host
->use_dma
&& host
->dma_ch
!= -1) {
566 dma_unmap_sg(mmc_dev(host
->mmc
), host
->data
->sg
, host
->dma_len
,
567 omap_hsmmc_get_dma_dir(host
, host
->data
));
568 omap_free_dma(host
->dma_ch
);
576 * Readable error output
578 #ifdef CONFIG_MMC_DEBUG
579 static void omap_hsmmc_report_irq(struct omap_hsmmc_host
*host
, u32 status
)
581 /* --- means reserved bit without definition at documentation */
582 static const char *omap_hsmmc_status_bits
[] = {
583 "CC", "TC", "BGE", "---", "BWR", "BRR", "---", "---", "CIRQ",
584 "OBI", "---", "---", "---", "---", "---", "ERRI", "CTO", "CCRC",
585 "CEB", "CIE", "DTO", "DCRC", "DEB", "---", "ACE", "---",
586 "---", "---", "---", "CERR", "CERR", "BADA", "---", "---", "---"
592 len
= sprintf(buf
, "MMC IRQ 0x%x :", status
);
595 for (i
= 0; i
< ARRAY_SIZE(omap_hsmmc_status_bits
); i
++)
596 if (status
& (1 << i
)) {
597 len
= sprintf(buf
, " %s", omap_hsmmc_status_bits
[i
]);
601 dev_dbg(mmc_dev(host
->mmc
), "%s\n", res
);
603 #endif /* CONFIG_MMC_DEBUG */
606 * MMC controller internal state machines reset
608 * Used to reset command or data internal state machines, using respectively
609 * SRC or SRD bit of SYSCTL register
610 * Can be called from interrupt context
612 static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host
*host
,
616 unsigned long limit
= (loops_per_jiffy
*
617 msecs_to_jiffies(MMC_TIMEOUT_MS
));
619 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
620 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | bit
);
622 while ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & bit
) &&
626 if (OMAP_HSMMC_READ(host
->base
, SYSCTL
) & bit
)
627 dev_err(mmc_dev(host
->mmc
),
628 "Timeout waiting on controller reset in %s\n",
633 * MMC controller IRQ handler
635 static irqreturn_t
omap_hsmmc_irq(int irq
, void *dev_id
)
637 struct omap_hsmmc_host
*host
= dev_id
;
638 struct mmc_data
*data
;
639 int end_cmd
= 0, end_trans
= 0, status
;
641 spin_lock(&host
->irq_lock
);
643 if (host
->mrq
== NULL
) {
644 OMAP_HSMMC_WRITE(host
->base
, STAT
,
645 OMAP_HSMMC_READ(host
->base
, STAT
));
646 /* Flush posted write */
647 OMAP_HSMMC_READ(host
->base
, STAT
);
648 spin_unlock(&host
->irq_lock
);
653 status
= OMAP_HSMMC_READ(host
->base
, STAT
);
654 dev_dbg(mmc_dev(host
->mmc
), "IRQ Status is %x\n", status
);
657 #ifdef CONFIG_MMC_DEBUG
658 omap_hsmmc_report_irq(host
, status
);
660 if ((status
& CMD_TIMEOUT
) ||
661 (status
& CMD_CRC
)) {
663 if (status
& CMD_TIMEOUT
) {
664 omap_hsmmc_reset_controller_fsm(host
,
666 host
->cmd
->error
= -ETIMEDOUT
;
668 host
->cmd
->error
= -EILSEQ
;
672 if (host
->data
|| host
->response_busy
) {
674 omap_hsmmc_dma_cleanup(host
,
676 host
->response_busy
= 0;
677 omap_hsmmc_reset_controller_fsm(host
, SRD
);
680 if ((status
& DATA_TIMEOUT
) ||
681 (status
& DATA_CRC
)) {
682 if (host
->data
|| host
->response_busy
) {
683 int err
= (status
& DATA_TIMEOUT
) ?
684 -ETIMEDOUT
: -EILSEQ
;
687 omap_hsmmc_dma_cleanup(host
, err
);
689 host
->mrq
->cmd
->error
= err
;
690 host
->response_busy
= 0;
691 omap_hsmmc_reset_controller_fsm(host
, SRD
);
695 if (status
& CARD_ERR
) {
696 dev_dbg(mmc_dev(host
->mmc
),
697 "Ignoring card err CMD%d\n", host
->cmd
->opcode
);
705 OMAP_HSMMC_WRITE(host
->base
, STAT
, status
);
706 /* Flush posted write */
707 OMAP_HSMMC_READ(host
->base
, STAT
);
709 if (end_cmd
|| ((status
& CC
) && host
->cmd
))
710 omap_hsmmc_cmd_done(host
, host
->cmd
);
711 if ((end_trans
|| (status
& TC
)) && host
->mrq
)
712 omap_hsmmc_xfer_done(host
, data
);
714 spin_unlock(&host
->irq_lock
);
719 static void set_sd_bus_power(struct omap_hsmmc_host
*host
)
723 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
724 OMAP_HSMMC_READ(host
->base
, HCTL
) | SDBP
);
725 for (i
= 0; i
< loops_per_jiffy
; i
++) {
726 if (OMAP_HSMMC_READ(host
->base
, HCTL
) & SDBP
)
733 * Switch MMC interface voltage ... only relevant for MMC1.
735 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
736 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
737 * Some chips, like eMMC ones, use internal transceivers.
739 static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host
*host
, int vdd
)
744 /* Disable the clocks */
745 clk_disable(host
->fclk
);
746 clk_disable(host
->iclk
);
748 clk_disable(host
->dbclk
);
750 /* Turn the power off */
751 ret
= mmc_slot(host
).set_power(host
->dev
, host
->slot_id
, 0, 0);
753 /* Turn the power ON with given VDD 1.8 or 3.0v */
755 ret
= mmc_slot(host
).set_power(host
->dev
, host
->slot_id
, 1,
757 clk_enable(host
->iclk
);
758 clk_enable(host
->fclk
);
760 clk_enable(host
->dbclk
);
765 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
766 OMAP_HSMMC_READ(host
->base
, HCTL
) & SDVSCLR
);
767 reg_val
= OMAP_HSMMC_READ(host
->base
, HCTL
);
770 * If a MMC dual voltage card is detected, the set_ios fn calls
771 * this fn with VDD bit set for 1.8V. Upon card removal from the
772 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
774 * Cope with a bit of slop in the range ... per data sheets:
775 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
776 * but recommended values are 1.71V to 1.89V
777 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
778 * but recommended values are 2.7V to 3.3V
780 * Board setup code shouldn't permit anything very out-of-range.
781 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
782 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
784 if ((1 << vdd
) <= MMC_VDD_23_24
)
789 OMAP_HSMMC_WRITE(host
->base
, HCTL
, reg_val
);
790 set_sd_bus_power(host
);
794 dev_dbg(mmc_dev(host
->mmc
), "Unable to switch operating voltage\n");
798 /* Protect the card while the cover is open */
799 static void omap_hsmmc_protect_card(struct omap_hsmmc_host
*host
)
801 if (!mmc_slot(host
).get_cover_state
)
804 host
->reqs_blocked
= 0;
805 if (mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
)) {
806 if (host
->protect_card
) {
807 printk(KERN_INFO
"%s: cover is closed, "
808 "card is now accessible\n",
809 mmc_hostname(host
->mmc
));
810 host
->protect_card
= 0;
813 if (!host
->protect_card
) {
814 printk(KERN_INFO
"%s: cover is open, "
815 "card is now inaccessible\n",
816 mmc_hostname(host
->mmc
));
817 host
->protect_card
= 1;
823 * Work Item to notify the core about card insertion/removal
825 static void omap_hsmmc_detect(struct work_struct
*work
)
827 struct omap_hsmmc_host
*host
=
828 container_of(work
, struct omap_hsmmc_host
, mmc_carddetect_work
);
829 struct omap_mmc_slot_data
*slot
= &mmc_slot(host
);
835 sysfs_notify(&host
->mmc
->class_dev
.kobj
, NULL
, "cover_switch");
837 if (slot
->card_detect
)
838 carddetect
= slot
->card_detect(slot
->card_detect_irq
);
840 omap_hsmmc_protect_card(host
);
841 carddetect
= -ENOSYS
;
845 mmc_detect_change(host
->mmc
, (HZ
* 200) / 1000);
847 mmc_host_enable(host
->mmc
);
848 omap_hsmmc_reset_controller_fsm(host
, SRD
);
849 mmc_host_lazy_disable(host
->mmc
);
851 mmc_detect_change(host
->mmc
, (HZ
* 50) / 1000);
856 * ISR for handling card insertion and removal
858 static irqreturn_t
omap_hsmmc_cd_handler(int irq
, void *dev_id
)
860 struct omap_hsmmc_host
*host
= (struct omap_hsmmc_host
*)dev_id
;
864 schedule_work(&host
->mmc_carddetect_work
);
869 static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host
*host
,
870 struct mmc_data
*data
)
874 if (data
->flags
& MMC_DATA_WRITE
)
875 sync_dev
= host
->dma_line_tx
;
877 sync_dev
= host
->dma_line_rx
;
881 static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host
*host
,
882 struct mmc_data
*data
,
883 struct scatterlist
*sgl
)
885 int blksz
, nblk
, dma_ch
;
887 dma_ch
= host
->dma_ch
;
888 if (data
->flags
& MMC_DATA_WRITE
) {
889 omap_set_dma_dest_params(dma_ch
, 0, OMAP_DMA_AMODE_CONSTANT
,
890 (host
->mapbase
+ OMAP_HSMMC_DATA
), 0, 0);
891 omap_set_dma_src_params(dma_ch
, 0, OMAP_DMA_AMODE_POST_INC
,
892 sg_dma_address(sgl
), 0, 0);
894 omap_set_dma_src_params(dma_ch
, 0, OMAP_DMA_AMODE_CONSTANT
,
895 (host
->mapbase
+ OMAP_HSMMC_DATA
), 0, 0);
896 omap_set_dma_dest_params(dma_ch
, 0, OMAP_DMA_AMODE_POST_INC
,
897 sg_dma_address(sgl
), 0, 0);
900 blksz
= host
->data
->blksz
;
901 nblk
= sg_dma_len(sgl
) / blksz
;
903 omap_set_dma_transfer_params(dma_ch
, OMAP_DMA_DATA_TYPE_S32
,
904 blksz
/ 4, nblk
, OMAP_DMA_SYNC_FRAME
,
905 omap_hsmmc_get_dma_sync_dev(host
, data
),
906 !(data
->flags
& MMC_DATA_WRITE
));
908 omap_start_dma(dma_ch
);
912 * DMA call back function
914 static void omap_hsmmc_dma_cb(int lch
, u16 ch_status
, void *data
)
916 struct omap_hsmmc_host
*host
= data
;
918 if (ch_status
& OMAP2_DMA_MISALIGNED_ERR_IRQ
)
919 dev_dbg(mmc_dev(host
->mmc
), "MISALIGNED_ADRS_ERR\n");
921 if (host
->dma_ch
< 0)
925 if (host
->dma_sg_idx
< host
->dma_len
) {
926 /* Fire up the next transfer. */
927 omap_hsmmc_config_dma_params(host
, host
->data
,
928 host
->data
->sg
+ host
->dma_sg_idx
);
932 omap_free_dma(host
->dma_ch
);
935 * DMA Callback: run in interrupt context.
936 * mutex_unlock will throw a kernel warning if used.
942 * Routine to configure and start DMA for the MMC card
944 static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host
*host
,
945 struct mmc_request
*req
)
947 int dma_ch
= 0, ret
= 0, err
= 1, i
;
948 struct mmc_data
*data
= req
->data
;
950 /* Sanity check: all the SG entries must be aligned by block size. */
951 for (i
= 0; i
< data
->sg_len
; i
++) {
952 struct scatterlist
*sgl
;
955 if (sgl
->length
% data
->blksz
)
958 if ((data
->blksz
% 4) != 0)
959 /* REVISIT: The MMC buffer increments only when MSB is written.
960 * Return error for blksz which is non multiple of four.
965 * If for some reason the DMA transfer is still active,
966 * we wait for timeout period and free the dma
968 if (host
->dma_ch
!= -1) {
969 set_current_state(TASK_UNINTERRUPTIBLE
);
970 schedule_timeout(100);
971 if (down_trylock(&host
->sem
)) {
972 omap_free_dma(host
->dma_ch
);
978 if (down_trylock(&host
->sem
))
982 ret
= omap_request_dma(omap_hsmmc_get_dma_sync_dev(host
, data
),
983 "MMC/SD", omap_hsmmc_dma_cb
, host
, &dma_ch
);
985 dev_err(mmc_dev(host
->mmc
),
986 "%s: omap_request_dma() failed with %d\n",
987 mmc_hostname(host
->mmc
), ret
);
991 host
->dma_len
= dma_map_sg(mmc_dev(host
->mmc
), data
->sg
,
992 data
->sg_len
, omap_hsmmc_get_dma_dir(host
, data
));
993 host
->dma_ch
= dma_ch
;
994 host
->dma_sg_idx
= 0;
996 omap_hsmmc_config_dma_params(host
, data
, data
->sg
);
1001 static void set_data_timeout(struct omap_hsmmc_host
*host
,
1002 unsigned int timeout_ns
,
1003 unsigned int timeout_clks
)
1005 unsigned int timeout
, cycle_ns
;
1006 uint32_t reg
, clkd
, dto
= 0;
1008 reg
= OMAP_HSMMC_READ(host
->base
, SYSCTL
);
1009 clkd
= (reg
& CLKD_MASK
) >> CLKD_SHIFT
;
1013 cycle_ns
= 1000000000 / (clk_get_rate(host
->fclk
) / clkd
);
1014 timeout
= timeout_ns
/ cycle_ns
;
1015 timeout
+= timeout_clks
;
1017 while ((timeout
& 0x80000000) == 0) {
1034 reg
|= dto
<< DTO_SHIFT
;
1035 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
, reg
);
1039 * Configure block length for MMC/SD cards and initiate the transfer.
1042 omap_hsmmc_prepare_data(struct omap_hsmmc_host
*host
, struct mmc_request
*req
)
1045 host
->data
= req
->data
;
1047 if (req
->data
== NULL
) {
1048 OMAP_HSMMC_WRITE(host
->base
, BLK
, 0);
1050 * Set an arbitrary 100ms data timeout for commands with
1053 if (req
->cmd
->flags
& MMC_RSP_BUSY
)
1054 set_data_timeout(host
, 100000000U, 0);
1058 OMAP_HSMMC_WRITE(host
->base
, BLK
, (req
->data
->blksz
)
1059 | (req
->data
->blocks
<< 16));
1060 set_data_timeout(host
, req
->data
->timeout_ns
, req
->data
->timeout_clks
);
1062 if (host
->use_dma
) {
1063 ret
= omap_hsmmc_start_dma_transfer(host
, req
);
1065 dev_dbg(mmc_dev(host
->mmc
), "MMC start dma failure\n");
1073 * Request function. for read/write operation
1075 static void omap_hsmmc_request(struct mmc_host
*mmc
, struct mmc_request
*req
)
1077 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1081 * Prevent races with the interrupt handler because of unexpected
1082 * interrupts, but not if we are already in interrupt context i.e.
1085 if (!in_interrupt()) {
1086 spin_lock_irqsave(&host
->irq_lock
, host
->flags
);
1088 * Protect the card from I/O if there is a possibility
1089 * it can be removed.
1091 if (host
->protect_card
) {
1092 if (host
->reqs_blocked
< 3) {
1094 * Ensure the controller is left in a consistent
1095 * state by resetting the command and data state
1098 omap_hsmmc_reset_controller_fsm(host
, SRD
);
1099 omap_hsmmc_reset_controller_fsm(host
, SRC
);
1100 host
->reqs_blocked
+= 1;
1102 req
->cmd
->error
= -EBADF
;
1104 req
->data
->error
= -EBADF
;
1105 spin_unlock_irqrestore(&host
->irq_lock
, host
->flags
);
1106 mmc_request_done(mmc
, req
);
1108 } else if (host
->reqs_blocked
)
1109 host
->reqs_blocked
= 0;
1111 WARN_ON(host
->mrq
!= NULL
);
1113 err
= omap_hsmmc_prepare_data(host
, req
);
1115 req
->cmd
->error
= err
;
1117 req
->data
->error
= err
;
1119 if (!in_interrupt())
1120 spin_unlock_irqrestore(&host
->irq_lock
, host
->flags
);
1121 mmc_request_done(mmc
, req
);
1125 omap_hsmmc_start_command(host
, req
->cmd
, req
->data
);
1128 /* Routine to configure clock values. Exposed API to core */
1129 static void omap_hsmmc_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1131 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1133 unsigned long regval
;
1134 unsigned long timeout
;
1136 int do_send_init_stream
= 0;
1138 mmc_host_enable(host
->mmc
);
1140 if (ios
->power_mode
!= host
->power_mode
) {
1141 switch (ios
->power_mode
) {
1143 mmc_slot(host
).set_power(host
->dev
, host
->slot_id
,
1148 mmc_slot(host
).set_power(host
->dev
, host
->slot_id
,
1150 host
->vdd
= ios
->vdd
;
1153 do_send_init_stream
= 1;
1156 host
->power_mode
= ios
->power_mode
;
1159 /* FIXME: set registers based only on changes to ios */
1161 con
= OMAP_HSMMC_READ(host
->base
, CON
);
1162 switch (mmc
->ios
.bus_width
) {
1163 case MMC_BUS_WIDTH_8
:
1164 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| DW8
);
1166 case MMC_BUS_WIDTH_4
:
1167 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
1168 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1169 OMAP_HSMMC_READ(host
->base
, HCTL
) | FOUR_BIT
);
1171 case MMC_BUS_WIDTH_1
:
1172 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~DW8
);
1173 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1174 OMAP_HSMMC_READ(host
->base
, HCTL
) & ~FOUR_BIT
);
1178 if (host
->id
== OMAP_MMC1_DEVID
) {
1179 /* Only MMC1 can interface at 3V without some flavor
1180 * of external transceiver; but they all handle 1.8V.
1182 if ((OMAP_HSMMC_READ(host
->base
, HCTL
) & SDVSDET
) &&
1183 (ios
->vdd
== DUAL_VOLT_OCR_BIT
)) {
1185 * The mmc_select_voltage fn of the core does
1186 * not seem to set the power_mode to
1187 * MMC_POWER_UP upon recalculating the voltage.
1190 if (omap_hsmmc_switch_opcond(host
, ios
->vdd
) != 0)
1191 dev_dbg(mmc_dev(host
->mmc
),
1192 "Switch operation failed\n");
1197 dsor
= OMAP_MMC_MASTER_CLOCK
/ ios
->clock
;
1201 if (OMAP_MMC_MASTER_CLOCK
/ dsor
> ios
->clock
)
1207 omap_hsmmc_stop_clock(host
);
1208 regval
= OMAP_HSMMC_READ(host
->base
, SYSCTL
);
1209 regval
= regval
& ~(CLKD_MASK
);
1210 regval
= regval
| (dsor
<< 6) | (DTO
<< 16);
1211 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
, regval
);
1212 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
1213 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | ICE
);
1215 /* Wait till the ICS bit is set */
1216 timeout
= jiffies
+ msecs_to_jiffies(MMC_TIMEOUT_MS
);
1217 while ((OMAP_HSMMC_READ(host
->base
, SYSCTL
) & ICS
) != ICS
1218 && time_before(jiffies
, timeout
))
1221 OMAP_HSMMC_WRITE(host
->base
, SYSCTL
,
1222 OMAP_HSMMC_READ(host
->base
, SYSCTL
) | CEN
);
1224 if (do_send_init_stream
)
1225 send_init_stream(host
);
1227 con
= OMAP_HSMMC_READ(host
->base
, CON
);
1228 if (ios
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
1229 OMAP_HSMMC_WRITE(host
->base
, CON
, con
| OD
);
1231 OMAP_HSMMC_WRITE(host
->base
, CON
, con
& ~OD
);
1233 if (host
->power_mode
== MMC_POWER_OFF
)
1234 mmc_host_disable(host
->mmc
);
1236 mmc_host_lazy_disable(host
->mmc
);
1239 static int omap_hsmmc_get_cd(struct mmc_host
*mmc
)
1241 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1243 if (!mmc_slot(host
).card_detect
)
1245 return mmc_slot(host
).card_detect(mmc_slot(host
).card_detect_irq
);
1248 static int omap_hsmmc_get_ro(struct mmc_host
*mmc
)
1250 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1252 if (!mmc_slot(host
).get_ro
)
1254 return mmc_slot(host
).get_ro(host
->dev
, 0);
1257 static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host
*host
)
1259 u32 hctl
, capa
, value
;
1261 /* Only MMC1 supports 3.0V */
1262 if (host
->id
== OMAP_MMC1_DEVID
) {
1270 value
= OMAP_HSMMC_READ(host
->base
, HCTL
) & ~SDVS_MASK
;
1271 OMAP_HSMMC_WRITE(host
->base
, HCTL
, value
| hctl
);
1273 value
= OMAP_HSMMC_READ(host
->base
, CAPA
);
1274 OMAP_HSMMC_WRITE(host
->base
, CAPA
, value
| capa
);
1276 /* Set the controller to AUTO IDLE mode */
1277 value
= OMAP_HSMMC_READ(host
->base
, SYSCONFIG
);
1278 OMAP_HSMMC_WRITE(host
->base
, SYSCONFIG
, value
| AUTOIDLE
);
1280 /* Set SD bus power bit */
1281 set_sd_bus_power(host
);
1285 * Dynamic power saving handling, FSM:
1286 * ENABLED -> DISABLED -> CARDSLEEP / REGSLEEP -> OFF
1288 * |______________________|______________________|
1290 * ENABLED: mmc host is fully functional
1291 * DISABLED: fclk is off
1292 * CARDSLEEP: fclk is off, card is asleep, voltage regulator is asleep
1293 * REGSLEEP: fclk is off, voltage regulator is asleep
1294 * OFF: fclk is off, voltage regulator is off
1296 * Transition handlers return the timeout for the next state transition
1297 * or negative error.
1300 enum {ENABLED
= 0, DISABLED
, CARDSLEEP
, REGSLEEP
, OFF
};
1302 /* Handler for [ENABLED -> DISABLED] transition */
1303 static int omap_hsmmc_enabled_to_disabled(struct omap_hsmmc_host
*host
)
1305 omap_hsmmc_context_save(host
);
1306 clk_disable(host
->fclk
);
1307 host
->dpm_state
= DISABLED
;
1309 dev_dbg(mmc_dev(host
->mmc
), "ENABLED -> DISABLED\n");
1311 if (host
->power_mode
== MMC_POWER_OFF
)
1314 return msecs_to_jiffies(OMAP_MMC_SLEEP_TIMEOUT
);
1317 /* Handler for [DISABLED -> REGSLEEP / CARDSLEEP] transition */
1318 static int omap_hsmmc_disabled_to_sleep(struct omap_hsmmc_host
*host
)
1322 if (!mmc_try_claim_host(host
->mmc
))
1325 clk_enable(host
->fclk
);
1326 omap_hsmmc_context_restore(host
);
1327 if (mmc_card_can_sleep(host
->mmc
)) {
1328 err
= mmc_card_sleep(host
->mmc
);
1330 clk_disable(host
->fclk
);
1331 mmc_release_host(host
->mmc
);
1334 new_state
= CARDSLEEP
;
1336 new_state
= REGSLEEP
;
1338 if (mmc_slot(host
).set_sleep
)
1339 mmc_slot(host
).set_sleep(host
->dev
, host
->slot_id
, 1, 0,
1340 new_state
== CARDSLEEP
);
1341 /* FIXME: turn off bus power and perhaps interrupts too */
1342 clk_disable(host
->fclk
);
1343 host
->dpm_state
= new_state
;
1345 mmc_release_host(host
->mmc
);
1347 dev_dbg(mmc_dev(host
->mmc
), "DISABLED -> %s\n",
1348 host
->dpm_state
== CARDSLEEP
? "CARDSLEEP" : "REGSLEEP");
1350 if ((host
->mmc
->caps
& MMC_CAP_NONREMOVABLE
) ||
1351 mmc_slot(host
).card_detect
||
1352 (mmc_slot(host
).get_cover_state
&&
1353 mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
)))
1354 return msecs_to_jiffies(OMAP_MMC_OFF_TIMEOUT
);
1359 /* Handler for [REGSLEEP / CARDSLEEP -> OFF] transition */
1360 static int omap_hsmmc_sleep_to_off(struct omap_hsmmc_host
*host
)
1362 if (!mmc_try_claim_host(host
->mmc
))
1365 if (!((host
->mmc
->caps
& MMC_CAP_NONREMOVABLE
) ||
1366 mmc_slot(host
).card_detect
||
1367 (mmc_slot(host
).get_cover_state
&&
1368 mmc_slot(host
).get_cover_state(host
->dev
, host
->slot_id
)))) {
1369 mmc_release_host(host
->mmc
);
1373 mmc_slot(host
).set_power(host
->dev
, host
->slot_id
, 0, 0);
1375 host
->power_mode
= MMC_POWER_OFF
;
1377 dev_dbg(mmc_dev(host
->mmc
), "%s -> OFF\n",
1378 host
->dpm_state
== CARDSLEEP
? "CARDSLEEP" : "REGSLEEP");
1380 host
->dpm_state
= OFF
;
1382 mmc_release_host(host
->mmc
);
1387 /* Handler for [DISABLED -> ENABLED] transition */
1388 static int omap_hsmmc_disabled_to_enabled(struct omap_hsmmc_host
*host
)
1392 err
= clk_enable(host
->fclk
);
1396 omap_hsmmc_context_restore(host
);
1397 host
->dpm_state
= ENABLED
;
1399 dev_dbg(mmc_dev(host
->mmc
), "DISABLED -> ENABLED\n");
1404 /* Handler for [SLEEP -> ENABLED] transition */
1405 static int omap_hsmmc_sleep_to_enabled(struct omap_hsmmc_host
*host
)
1407 if (!mmc_try_claim_host(host
->mmc
))
1410 clk_enable(host
->fclk
);
1411 omap_hsmmc_context_restore(host
);
1412 if (mmc_slot(host
).set_sleep
)
1413 mmc_slot(host
).set_sleep(host
->dev
, host
->slot_id
, 0,
1414 host
->vdd
, host
->dpm_state
== CARDSLEEP
);
1415 if (mmc_card_can_sleep(host
->mmc
))
1416 mmc_card_awake(host
->mmc
);
1418 dev_dbg(mmc_dev(host
->mmc
), "%s -> ENABLED\n",
1419 host
->dpm_state
== CARDSLEEP
? "CARDSLEEP" : "REGSLEEP");
1421 host
->dpm_state
= ENABLED
;
1423 mmc_release_host(host
->mmc
);
1428 /* Handler for [OFF -> ENABLED] transition */
1429 static int omap_hsmmc_off_to_enabled(struct omap_hsmmc_host
*host
)
1431 clk_enable(host
->fclk
);
1433 omap_hsmmc_context_restore(host
);
1434 omap_hsmmc_conf_bus_power(host
);
1435 mmc_power_restore_host(host
->mmc
);
1437 host
->dpm_state
= ENABLED
;
1439 dev_dbg(mmc_dev(host
->mmc
), "OFF -> ENABLED\n");
1445 * Bring MMC host to ENABLED from any other PM state.
1447 static int omap_hsmmc_enable(struct mmc_host
*mmc
)
1449 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1451 switch (host
->dpm_state
) {
1453 return omap_hsmmc_disabled_to_enabled(host
);
1456 return omap_hsmmc_sleep_to_enabled(host
);
1458 return omap_hsmmc_off_to_enabled(host
);
1460 dev_dbg(mmc_dev(host
->mmc
), "UNKNOWN state\n");
1466 * Bring MMC host in PM state (one level deeper).
1468 static int omap_hsmmc_disable(struct mmc_host
*mmc
, int lazy
)
1470 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1472 switch (host
->dpm_state
) {
1476 delay
= omap_hsmmc_enabled_to_disabled(host
);
1477 if (lazy
|| delay
< 0)
1482 return omap_hsmmc_disabled_to_sleep(host
);
1485 return omap_hsmmc_sleep_to_off(host
);
1487 dev_dbg(mmc_dev(host
->mmc
), "UNKNOWN state\n");
1492 static int omap_hsmmc_enable_fclk(struct mmc_host
*mmc
)
1494 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1497 err
= clk_enable(host
->fclk
);
1500 dev_dbg(mmc_dev(host
->mmc
), "mmc_fclk: enabled\n");
1501 omap_hsmmc_context_restore(host
);
1505 static int omap_hsmmc_disable_fclk(struct mmc_host
*mmc
, int lazy
)
1507 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1509 omap_hsmmc_context_save(host
);
1510 clk_disable(host
->fclk
);
1511 dev_dbg(mmc_dev(host
->mmc
), "mmc_fclk: disabled\n");
1515 static const struct mmc_host_ops omap_hsmmc_ops
= {
1516 .enable
= omap_hsmmc_enable_fclk
,
1517 .disable
= omap_hsmmc_disable_fclk
,
1518 .request
= omap_hsmmc_request
,
1519 .set_ios
= omap_hsmmc_set_ios
,
1520 .get_cd
= omap_hsmmc_get_cd
,
1521 .get_ro
= omap_hsmmc_get_ro
,
1522 /* NYET -- enable_sdio_irq */
1525 static const struct mmc_host_ops omap_hsmmc_ps_ops
= {
1526 .enable
= omap_hsmmc_enable
,
1527 .disable
= omap_hsmmc_disable
,
1528 .request
= omap_hsmmc_request
,
1529 .set_ios
= omap_hsmmc_set_ios
,
1530 .get_cd
= omap_hsmmc_get_cd
,
1531 .get_ro
= omap_hsmmc_get_ro
,
1532 /* NYET -- enable_sdio_irq */
1535 #ifdef CONFIG_DEBUG_FS
1537 static int omap_hsmmc_regs_show(struct seq_file
*s
, void *data
)
1539 struct mmc_host
*mmc
= s
->private;
1540 struct omap_hsmmc_host
*host
= mmc_priv(mmc
);
1541 int context_loss
= 0;
1543 if (host
->pdata
->get_context_loss_count
)
1544 context_loss
= host
->pdata
->get_context_loss_count(host
->dev
);
1546 seq_printf(s
, "mmc%d:\n"
1549 " nesting_cnt:\t%d\n"
1550 " ctx_loss:\t%d:%d\n"
1552 mmc
->index
, mmc
->enabled
? 1 : 0,
1553 host
->dpm_state
, mmc
->nesting_cnt
,
1554 host
->context_loss
, context_loss
);
1556 if (host
->suspended
|| host
->dpm_state
== OFF
) {
1557 seq_printf(s
, "host suspended, can't read registers\n");
1561 if (clk_enable(host
->fclk
) != 0) {
1562 seq_printf(s
, "can't read the regs\n");
1566 seq_printf(s
, "SYSCONFIG:\t0x%08x\n",
1567 OMAP_HSMMC_READ(host
->base
, SYSCONFIG
));
1568 seq_printf(s
, "CON:\t\t0x%08x\n",
1569 OMAP_HSMMC_READ(host
->base
, CON
));
1570 seq_printf(s
, "HCTL:\t\t0x%08x\n",
1571 OMAP_HSMMC_READ(host
->base
, HCTL
));
1572 seq_printf(s
, "SYSCTL:\t\t0x%08x\n",
1573 OMAP_HSMMC_READ(host
->base
, SYSCTL
));
1574 seq_printf(s
, "IE:\t\t0x%08x\n",
1575 OMAP_HSMMC_READ(host
->base
, IE
));
1576 seq_printf(s
, "ISE:\t\t0x%08x\n",
1577 OMAP_HSMMC_READ(host
->base
, ISE
));
1578 seq_printf(s
, "CAPA:\t\t0x%08x\n",
1579 OMAP_HSMMC_READ(host
->base
, CAPA
));
1581 clk_disable(host
->fclk
);
1586 static int omap_hsmmc_regs_open(struct inode
*inode
, struct file
*file
)
1588 return single_open(file
, omap_hsmmc_regs_show
, inode
->i_private
);
1591 static const struct file_operations mmc_regs_fops
= {
1592 .open
= omap_hsmmc_regs_open
,
1594 .llseek
= seq_lseek
,
1595 .release
= single_release
,
1598 static void omap_hsmmc_debugfs(struct mmc_host
*mmc
)
1600 if (mmc
->debugfs_root
)
1601 debugfs_create_file("regs", S_IRUSR
, mmc
->debugfs_root
,
1602 mmc
, &mmc_regs_fops
);
1607 static void omap_hsmmc_debugfs(struct mmc_host
*mmc
)
1613 static int __init
omap_hsmmc_probe(struct platform_device
*pdev
)
1615 struct omap_mmc_platform_data
*pdata
= pdev
->dev
.platform_data
;
1616 struct mmc_host
*mmc
;
1617 struct omap_hsmmc_host
*host
= NULL
;
1618 struct resource
*res
;
1621 if (pdata
== NULL
) {
1622 dev_err(&pdev
->dev
, "Platform Data is missing\n");
1626 if (pdata
->nr_slots
== 0) {
1627 dev_err(&pdev
->dev
, "No Slots\n");
1631 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1632 irq
= platform_get_irq(pdev
, 0);
1633 if (res
== NULL
|| irq
< 0)
1636 res
= request_mem_region(res
->start
, res
->end
- res
->start
+ 1,
1641 mmc
= mmc_alloc_host(sizeof(struct omap_hsmmc_host
), &pdev
->dev
);
1647 host
= mmc_priv(mmc
);
1649 host
->pdata
= pdata
;
1650 host
->dev
= &pdev
->dev
;
1652 host
->dev
->dma_mask
= &pdata
->dma_mask
;
1655 host
->id
= pdev
->id
;
1657 host
->mapbase
= res
->start
;
1658 host
->base
= ioremap(host
->mapbase
, SZ_4K
);
1659 host
->power_mode
= -1;
1661 platform_set_drvdata(pdev
, host
);
1662 INIT_WORK(&host
->mmc_carddetect_work
, omap_hsmmc_detect
);
1664 if (mmc_slot(host
).power_saving
)
1665 mmc
->ops
= &omap_hsmmc_ps_ops
;
1667 mmc
->ops
= &omap_hsmmc_ops
;
1669 mmc
->f_min
= 400000;
1670 mmc
->f_max
= 52000000;
1672 sema_init(&host
->sem
, 1);
1673 spin_lock_init(&host
->irq_lock
);
1675 host
->iclk
= clk_get(&pdev
->dev
, "ick");
1676 if (IS_ERR(host
->iclk
)) {
1677 ret
= PTR_ERR(host
->iclk
);
1681 host
->fclk
= clk_get(&pdev
->dev
, "fck");
1682 if (IS_ERR(host
->fclk
)) {
1683 ret
= PTR_ERR(host
->fclk
);
1685 clk_put(host
->iclk
);
1689 omap_hsmmc_context_save(host
);
1691 mmc
->caps
|= MMC_CAP_DISABLE
;
1692 mmc_set_disable_delay(mmc
, OMAP_MMC_DISABLED_TIMEOUT
);
1693 /* we start off in DISABLED state */
1694 host
->dpm_state
= DISABLED
;
1696 if (mmc_host_enable(host
->mmc
) != 0) {
1697 clk_put(host
->iclk
);
1698 clk_put(host
->fclk
);
1702 if (clk_enable(host
->iclk
) != 0) {
1703 mmc_host_disable(host
->mmc
);
1704 clk_put(host
->iclk
);
1705 clk_put(host
->fclk
);
1709 if (cpu_is_omap2430()) {
1710 host
->dbclk
= clk_get(&pdev
->dev
, "mmchsdb_fck");
1712 * MMC can still work without debounce clock.
1714 if (IS_ERR(host
->dbclk
))
1715 dev_warn(mmc_dev(host
->mmc
),
1716 "Failed to get debounce clock\n");
1718 host
->got_dbclk
= 1;
1720 if (host
->got_dbclk
)
1721 if (clk_enable(host
->dbclk
) != 0)
1722 dev_dbg(mmc_dev(host
->mmc
), "Enabling debounce"
1726 /* Since we do only SG emulation, we can have as many segs
1728 mmc
->max_phys_segs
= 1024;
1729 mmc
->max_hw_segs
= 1024;
1731 mmc
->max_blk_size
= 512; /* Block Length at max can be 1024 */
1732 mmc
->max_blk_count
= 0xFFFF; /* No. of Blocks is 16 bits */
1733 mmc
->max_req_size
= mmc
->max_blk_size
* mmc
->max_blk_count
;
1734 mmc
->max_seg_size
= mmc
->max_req_size
;
1736 mmc
->caps
|= MMC_CAP_MMC_HIGHSPEED
| MMC_CAP_SD_HIGHSPEED
|
1737 MMC_CAP_WAIT_WHILE_BUSY
;
1739 if (mmc_slot(host
).wires
>= 8)
1740 mmc
->caps
|= MMC_CAP_8_BIT_DATA
;
1741 else if (mmc_slot(host
).wires
>= 4)
1742 mmc
->caps
|= MMC_CAP_4_BIT_DATA
;
1744 if (mmc_slot(host
).nonremovable
)
1745 mmc
->caps
|= MMC_CAP_NONREMOVABLE
;
1747 omap_hsmmc_conf_bus_power(host
);
1749 /* Select DMA lines */
1751 case OMAP_MMC1_DEVID
:
1752 host
->dma_line_tx
= OMAP24XX_DMA_MMC1_TX
;
1753 host
->dma_line_rx
= OMAP24XX_DMA_MMC1_RX
;
1755 case OMAP_MMC2_DEVID
:
1756 host
->dma_line_tx
= OMAP24XX_DMA_MMC2_TX
;
1757 host
->dma_line_rx
= OMAP24XX_DMA_MMC2_RX
;
1759 case OMAP_MMC3_DEVID
:
1760 host
->dma_line_tx
= OMAP34XX_DMA_MMC3_TX
;
1761 host
->dma_line_rx
= OMAP34XX_DMA_MMC3_RX
;
1763 case OMAP_MMC4_DEVID
:
1764 host
->dma_line_tx
= OMAP44XX_DMA_MMC4_TX
;
1765 host
->dma_line_rx
= OMAP44XX_DMA_MMC4_RX
;
1767 case OMAP_MMC5_DEVID
:
1768 host
->dma_line_tx
= OMAP44XX_DMA_MMC5_TX
;
1769 host
->dma_line_rx
= OMAP44XX_DMA_MMC5_RX
;
1772 dev_err(mmc_dev(host
->mmc
), "Invalid MMC id\n");
1776 /* Request IRQ for MMC operations */
1777 ret
= request_irq(host
->irq
, omap_hsmmc_irq
, IRQF_DISABLED
,
1778 mmc_hostname(mmc
), host
);
1780 dev_dbg(mmc_dev(host
->mmc
), "Unable to grab HSMMC IRQ\n");
1784 /* initialize power supplies, gpios, etc */
1785 if (pdata
->init
!= NULL
) {
1786 if (pdata
->init(&pdev
->dev
) != 0) {
1787 dev_dbg(mmc_dev(host
->mmc
),
1788 "Unable to configure MMC IRQs\n");
1789 goto err_irq_cd_init
;
1792 mmc
->ocr_avail
= mmc_slot(host
).ocr_mask
;
1794 /* Request IRQ for card detect */
1795 if ((mmc_slot(host
).card_detect_irq
)) {
1796 ret
= request_irq(mmc_slot(host
).card_detect_irq
,
1797 omap_hsmmc_cd_handler
,
1798 IRQF_TRIGGER_RISING
| IRQF_TRIGGER_FALLING
1800 mmc_hostname(mmc
), host
);
1802 dev_dbg(mmc_dev(host
->mmc
),
1803 "Unable to grab MMC CD IRQ\n");
1808 OMAP_HSMMC_WRITE(host
->base
, ISE
, INT_EN_MASK
);
1809 OMAP_HSMMC_WRITE(host
->base
, IE
, INT_EN_MASK
);
1811 mmc_host_lazy_disable(host
->mmc
);
1813 omap_hsmmc_protect_card(host
);
1817 if (mmc_slot(host
).name
!= NULL
) {
1818 ret
= device_create_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1822 if (mmc_slot(host
).card_detect_irq
&& mmc_slot(host
).get_cover_state
) {
1823 ret
= device_create_file(&mmc
->class_dev
,
1824 &dev_attr_cover_switch
);
1826 goto err_cover_switch
;
1829 omap_hsmmc_debugfs(mmc
);
1834 device_remove_file(&mmc
->class_dev
, &dev_attr_cover_switch
);
1836 mmc_remove_host(mmc
);
1838 free_irq(mmc_slot(host
).card_detect_irq
, host
);
1840 free_irq(host
->irq
, host
);
1842 mmc_host_disable(host
->mmc
);
1843 clk_disable(host
->iclk
);
1844 clk_put(host
->fclk
);
1845 clk_put(host
->iclk
);
1846 if (host
->got_dbclk
) {
1847 clk_disable(host
->dbclk
);
1848 clk_put(host
->dbclk
);
1852 iounmap(host
->base
);
1854 dev_dbg(mmc_dev(host
->mmc
), "Probe Failed\n");
1855 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
1861 static int omap_hsmmc_remove(struct platform_device
*pdev
)
1863 struct omap_hsmmc_host
*host
= platform_get_drvdata(pdev
);
1864 struct resource
*res
;
1867 mmc_host_enable(host
->mmc
);
1868 mmc_remove_host(host
->mmc
);
1869 if (host
->pdata
->cleanup
)
1870 host
->pdata
->cleanup(&pdev
->dev
);
1871 free_irq(host
->irq
, host
);
1872 if (mmc_slot(host
).card_detect_irq
)
1873 free_irq(mmc_slot(host
).card_detect_irq
, host
);
1874 flush_scheduled_work();
1876 mmc_host_disable(host
->mmc
);
1877 clk_disable(host
->iclk
);
1878 clk_put(host
->fclk
);
1879 clk_put(host
->iclk
);
1880 if (host
->got_dbclk
) {
1881 clk_disable(host
->dbclk
);
1882 clk_put(host
->dbclk
);
1885 mmc_free_host(host
->mmc
);
1886 iounmap(host
->base
);
1889 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1891 release_mem_region(res
->start
, res
->end
- res
->start
+ 1);
1892 platform_set_drvdata(pdev
, NULL
);
1898 static int omap_hsmmc_suspend(struct platform_device
*pdev
, pm_message_t state
)
1901 struct omap_hsmmc_host
*host
= platform_get_drvdata(pdev
);
1903 if (host
&& host
->suspended
)
1907 host
->suspended
= 1;
1908 if (host
->pdata
->suspend
) {
1909 ret
= host
->pdata
->suspend(&pdev
->dev
,
1912 dev_dbg(mmc_dev(host
->mmc
),
1913 "Unable to handle MMC board"
1914 " level suspend\n");
1915 host
->suspended
= 0;
1919 cancel_work_sync(&host
->mmc_carddetect_work
);
1920 mmc_host_enable(host
->mmc
);
1921 ret
= mmc_suspend_host(host
->mmc
, state
);
1923 OMAP_HSMMC_WRITE(host
->base
, ISE
, 0);
1924 OMAP_HSMMC_WRITE(host
->base
, IE
, 0);
1927 OMAP_HSMMC_WRITE(host
->base
, HCTL
,
1928 OMAP_HSMMC_READ(host
->base
, HCTL
) & ~SDBP
);
1929 mmc_host_disable(host
->mmc
);
1930 clk_disable(host
->iclk
);
1931 if (host
->got_dbclk
)
1932 clk_disable(host
->dbclk
);
1934 host
->suspended
= 0;
1935 if (host
->pdata
->resume
) {
1936 ret
= host
->pdata
->resume(&pdev
->dev
,
1939 dev_dbg(mmc_dev(host
->mmc
),
1940 "Unmask interrupt failed\n");
1942 mmc_host_disable(host
->mmc
);
1949 /* Routine to resume the MMC device */
1950 static int omap_hsmmc_resume(struct platform_device
*pdev
)
1953 struct omap_hsmmc_host
*host
= platform_get_drvdata(pdev
);
1955 if (host
&& !host
->suspended
)
1959 ret
= clk_enable(host
->iclk
);
1963 if (mmc_host_enable(host
->mmc
) != 0) {
1964 clk_disable(host
->iclk
);
1968 if (host
->got_dbclk
)
1969 clk_enable(host
->dbclk
);
1971 omap_hsmmc_conf_bus_power(host
);
1973 if (host
->pdata
->resume
) {
1974 ret
= host
->pdata
->resume(&pdev
->dev
, host
->slot_id
);
1976 dev_dbg(mmc_dev(host
->mmc
),
1977 "Unmask interrupt failed\n");
1980 omap_hsmmc_protect_card(host
);
1982 /* Notify the core to resume the host */
1983 ret
= mmc_resume_host(host
->mmc
);
1985 host
->suspended
= 0;
1987 mmc_host_lazy_disable(host
->mmc
);
1993 dev_dbg(mmc_dev(host
->mmc
),
1994 "Failed to enable MMC clocks during resume\n");
1999 #define omap_hsmmc_suspend NULL
2000 #define omap_hsmmc_resume NULL
2003 static struct platform_driver omap_hsmmc_driver
= {
2004 .remove
= omap_hsmmc_remove
,
2005 .suspend
= omap_hsmmc_suspend
,
2006 .resume
= omap_hsmmc_resume
,
2008 .name
= DRIVER_NAME
,
2009 .owner
= THIS_MODULE
,
2013 static int __init
omap_hsmmc_init(void)
2015 /* Register the MMC driver */
2016 return platform_driver_register(&omap_hsmmc_driver
);
2019 static void __exit
omap_hsmmc_cleanup(void)
2021 /* Unregister MMC driver */
2022 platform_driver_unregister(&omap_hsmmc_driver
);
2025 module_init(omap_hsmmc_init
);
2026 module_exit(omap_hsmmc_cleanup
);
2028 MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2029 MODULE_LICENSE("GPL");
2030 MODULE_ALIAS("platform:" DRIVER_NAME
);
2031 MODULE_AUTHOR("Texas Instruments Inc");