2 * linux/drivers/mmc/host/omap.c
4 * Copyright (C) 2004 Nokia Corporation
5 * Written by Tuukka Tikkanen and Juha Yrjölä<juha.yrjola@nokia.com>
6 * Misc hacks here and there by Tony Lindgren <tony@atomide.com>
7 * Other hacks (DMA, SD, etc) by David Brownell
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License version 2 as
11 * published by the Free Software Foundation.
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/init.h>
17 #include <linux/ioport.h>
18 #include <linux/platform_device.h>
19 #include <linux/interrupt.h>
20 #include <linux/dmaengine.h>
21 #include <linux/dma-mapping.h>
22 #include <linux/delay.h>
23 #include <linux/spinlock.h>
24 #include <linux/timer.h>
26 #include <linux/mmc/host.h>
27 #include <linux/mmc/card.h>
28 #include <linux/mmc/mmc.h>
29 #include <linux/clk.h>
30 #include <linux/scatterlist.h>
31 #include <linux/slab.h>
32 #include <linux/platform_data/mmc-omap.h>
35 #define OMAP_MMC_REG_CMD 0x00
36 #define OMAP_MMC_REG_ARGL 0x01
37 #define OMAP_MMC_REG_ARGH 0x02
38 #define OMAP_MMC_REG_CON 0x03
39 #define OMAP_MMC_REG_STAT 0x04
40 #define OMAP_MMC_REG_IE 0x05
41 #define OMAP_MMC_REG_CTO 0x06
42 #define OMAP_MMC_REG_DTO 0x07
43 #define OMAP_MMC_REG_DATA 0x08
44 #define OMAP_MMC_REG_BLEN 0x09
45 #define OMAP_MMC_REG_NBLK 0x0a
46 #define OMAP_MMC_REG_BUF 0x0b
47 #define OMAP_MMC_REG_SDIO 0x0d
48 #define OMAP_MMC_REG_REV 0x0f
49 #define OMAP_MMC_REG_RSP0 0x10
50 #define OMAP_MMC_REG_RSP1 0x11
51 #define OMAP_MMC_REG_RSP2 0x12
52 #define OMAP_MMC_REG_RSP3 0x13
53 #define OMAP_MMC_REG_RSP4 0x14
54 #define OMAP_MMC_REG_RSP5 0x15
55 #define OMAP_MMC_REG_RSP6 0x16
56 #define OMAP_MMC_REG_RSP7 0x17
57 #define OMAP_MMC_REG_IOSR 0x18
58 #define OMAP_MMC_REG_SYSC 0x19
59 #define OMAP_MMC_REG_SYSS 0x1a
61 #define OMAP_MMC_STAT_CARD_ERR (1 << 14)
62 #define OMAP_MMC_STAT_CARD_IRQ (1 << 13)
63 #define OMAP_MMC_STAT_OCR_BUSY (1 << 12)
64 #define OMAP_MMC_STAT_A_EMPTY (1 << 11)
65 #define OMAP_MMC_STAT_A_FULL (1 << 10)
66 #define OMAP_MMC_STAT_CMD_CRC (1 << 8)
67 #define OMAP_MMC_STAT_CMD_TOUT (1 << 7)
68 #define OMAP_MMC_STAT_DATA_CRC (1 << 6)
69 #define OMAP_MMC_STAT_DATA_TOUT (1 << 5)
70 #define OMAP_MMC_STAT_END_BUSY (1 << 4)
71 #define OMAP_MMC_STAT_END_OF_DATA (1 << 3)
72 #define OMAP_MMC_STAT_CARD_BUSY (1 << 2)
73 #define OMAP_MMC_STAT_END_OF_CMD (1 << 0)
75 #define mmc_omap7xx() (host->features & MMC_OMAP7XX)
76 #define mmc_omap15xx() (host->features & MMC_OMAP15XX)
77 #define mmc_omap16xx() (host->features & MMC_OMAP16XX)
78 #define MMC_OMAP1_MASK (MMC_OMAP7XX | MMC_OMAP15XX | MMC_OMAP16XX)
79 #define mmc_omap1() (host->features & MMC_OMAP1_MASK)
80 #define mmc_omap2() (!mmc_omap1())
82 #define OMAP_MMC_REG(host, reg) (OMAP_MMC_REG_##reg << (host)->reg_shift)
83 #define OMAP_MMC_READ(host, reg) __raw_readw((host)->virt_base + OMAP_MMC_REG(host, reg))
84 #define OMAP_MMC_WRITE(host, reg, val) __raw_writew((val), (host)->virt_base + OMAP_MMC_REG(host, reg))
89 #define OMAP_MMC_CMDTYPE_BC 0
90 #define OMAP_MMC_CMDTYPE_BCR 1
91 #define OMAP_MMC_CMDTYPE_AC 2
92 #define OMAP_MMC_CMDTYPE_ADTC 3
94 #define DRIVER_NAME "mmci-omap"
96 /* Specifies how often in millisecs to poll for card status changes
97 * when the cover switch is open */
98 #define OMAP_MMC_COVER_POLL_DELAY 500
100 struct mmc_omap_host
;
102 struct mmc_omap_slot
{
108 unsigned int fclk_freq
;
110 struct tasklet_struct cover_tasklet
;
111 struct timer_list cover_timer
;
114 struct mmc_request
*mrq
;
115 struct mmc_omap_host
*host
;
116 struct mmc_host
*mmc
;
117 struct omap_mmc_slot_data
*pdata
;
120 struct mmc_omap_host
{
122 struct mmc_request
* mrq
;
123 struct mmc_command
* cmd
;
124 struct mmc_data
* data
;
125 struct mmc_host
* mmc
;
127 unsigned char id
; /* 16xx chips have 2 MMC blocks */
130 struct dma_chan
*dma_rx
;
132 struct dma_chan
*dma_tx
;
134 void __iomem
*virt_base
;
135 unsigned int phys_base
;
137 unsigned char bus_mode
;
138 unsigned int reg_shift
;
140 struct work_struct cmd_abort_work
;
142 struct timer_list cmd_abort_timer
;
144 struct work_struct slot_release_work
;
145 struct mmc_omap_slot
*next_slot
;
146 struct work_struct send_stop_work
;
147 struct mmc_data
*stop_data
;
152 u32 buffer_bytes_left
;
153 u32 total_bytes_left
;
156 unsigned brs_received
:1, dma_done
:1;
157 unsigned dma_in_use
:1;
160 struct mmc_omap_slot
*slots
[OMAP_MMC_MAX_SLOTS
];
161 struct mmc_omap_slot
*current_slot
;
162 spinlock_t slot_lock
;
163 wait_queue_head_t slot_wq
;
166 struct timer_list clk_timer
;
167 spinlock_t clk_lock
; /* for changing enabled state */
168 unsigned int fclk_enabled
:1;
169 struct workqueue_struct
*mmc_omap_wq
;
171 struct omap_mmc_platform_data
*pdata
;
175 static void mmc_omap_fclk_offdelay(struct mmc_omap_slot
*slot
)
177 unsigned long tick_ns
;
179 if (slot
!= NULL
&& slot
->host
->fclk_enabled
&& slot
->fclk_freq
> 0) {
180 tick_ns
= DIV_ROUND_UP(NSEC_PER_SEC
, slot
->fclk_freq
);
185 static void mmc_omap_fclk_enable(struct mmc_omap_host
*host
, unsigned int enable
)
189 spin_lock_irqsave(&host
->clk_lock
, flags
);
190 if (host
->fclk_enabled
!= enable
) {
191 host
->fclk_enabled
= enable
;
193 clk_enable(host
->fclk
);
195 clk_disable(host
->fclk
);
197 spin_unlock_irqrestore(&host
->clk_lock
, flags
);
200 static void mmc_omap_select_slot(struct mmc_omap_slot
*slot
, int claimed
)
202 struct mmc_omap_host
*host
= slot
->host
;
207 spin_lock_irqsave(&host
->slot_lock
, flags
);
208 while (host
->mmc
!= NULL
) {
209 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
210 wait_event(host
->slot_wq
, host
->mmc
== NULL
);
211 spin_lock_irqsave(&host
->slot_lock
, flags
);
213 host
->mmc
= slot
->mmc
;
214 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
216 del_timer(&host
->clk_timer
);
217 if (host
->current_slot
!= slot
|| !claimed
)
218 mmc_omap_fclk_offdelay(host
->current_slot
);
220 if (host
->current_slot
!= slot
) {
221 OMAP_MMC_WRITE(host
, CON
, slot
->saved_con
& 0xFC00);
222 if (host
->pdata
->switch_slot
!= NULL
)
223 host
->pdata
->switch_slot(mmc_dev(slot
->mmc
), slot
->id
);
224 host
->current_slot
= slot
;
228 mmc_omap_fclk_enable(host
, 1);
230 /* Doing the dummy read here seems to work around some bug
231 * at least in OMAP24xx silicon where the command would not
232 * start after writing the CMD register. Sigh. */
233 OMAP_MMC_READ(host
, CON
);
235 OMAP_MMC_WRITE(host
, CON
, slot
->saved_con
);
237 mmc_omap_fclk_enable(host
, 0);
240 static void mmc_omap_start_request(struct mmc_omap_host
*host
,
241 struct mmc_request
*req
);
243 static void mmc_omap_slot_release_work(struct work_struct
*work
)
245 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
247 struct mmc_omap_slot
*next_slot
= host
->next_slot
;
248 struct mmc_request
*rq
;
250 host
->next_slot
= NULL
;
251 mmc_omap_select_slot(next_slot
, 1);
254 next_slot
->mrq
= NULL
;
255 mmc_omap_start_request(host
, rq
);
258 static void mmc_omap_release_slot(struct mmc_omap_slot
*slot
, int clk_enabled
)
260 struct mmc_omap_host
*host
= slot
->host
;
264 BUG_ON(slot
== NULL
|| host
->mmc
== NULL
);
267 /* Keeps clock running for at least 8 cycles on valid freq */
268 mod_timer(&host
->clk_timer
, jiffies
+ HZ
/10);
270 del_timer(&host
->clk_timer
);
271 mmc_omap_fclk_offdelay(slot
);
272 mmc_omap_fclk_enable(host
, 0);
275 spin_lock_irqsave(&host
->slot_lock
, flags
);
276 /* Check for any pending requests */
277 for (i
= 0; i
< host
->nr_slots
; i
++) {
278 struct mmc_omap_slot
*new_slot
;
280 if (host
->slots
[i
] == NULL
|| host
->slots
[i
]->mrq
== NULL
)
283 BUG_ON(host
->next_slot
!= NULL
);
284 new_slot
= host
->slots
[i
];
285 /* The current slot should not have a request in queue */
286 BUG_ON(new_slot
== host
->current_slot
);
288 host
->next_slot
= new_slot
;
289 host
->mmc
= new_slot
->mmc
;
290 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
291 queue_work(host
->mmc_omap_wq
, &host
->slot_release_work
);
296 wake_up(&host
->slot_wq
);
297 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
301 int mmc_omap_cover_is_open(struct mmc_omap_slot
*slot
)
303 if (slot
->pdata
->get_cover_state
)
304 return slot
->pdata
->get_cover_state(mmc_dev(slot
->mmc
),
310 mmc_omap_show_cover_switch(struct device
*dev
, struct device_attribute
*attr
,
313 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
314 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
316 return sprintf(buf
, "%s\n", mmc_omap_cover_is_open(slot
) ? "open" :
320 static DEVICE_ATTR(cover_switch
, S_IRUGO
, mmc_omap_show_cover_switch
, NULL
);
323 mmc_omap_show_slot_name(struct device
*dev
, struct device_attribute
*attr
,
326 struct mmc_host
*mmc
= container_of(dev
, struct mmc_host
, class_dev
);
327 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
329 return sprintf(buf
, "%s\n", slot
->pdata
->name
);
332 static DEVICE_ATTR(slot_name
, S_IRUGO
, mmc_omap_show_slot_name
, NULL
);
335 mmc_omap_start_command(struct mmc_omap_host
*host
, struct mmc_command
*cmd
)
347 /* Our hardware needs to know exact type */
348 switch (mmc_resp_type(cmd
)) {
353 /* resp 1, 1b, 6, 7 */
363 dev_err(mmc_dev(host
->mmc
), "Invalid response type: %04x\n", mmc_resp_type(cmd
));
367 if (mmc_cmd_type(cmd
) == MMC_CMD_ADTC
) {
368 cmdtype
= OMAP_MMC_CMDTYPE_ADTC
;
369 } else if (mmc_cmd_type(cmd
) == MMC_CMD_BC
) {
370 cmdtype
= OMAP_MMC_CMDTYPE_BC
;
371 } else if (mmc_cmd_type(cmd
) == MMC_CMD_BCR
) {
372 cmdtype
= OMAP_MMC_CMDTYPE_BCR
;
374 cmdtype
= OMAP_MMC_CMDTYPE_AC
;
377 cmdreg
= cmd
->opcode
| (resptype
<< 8) | (cmdtype
<< 12);
379 if (host
->current_slot
->bus_mode
== MMC_BUSMODE_OPENDRAIN
)
382 if (cmd
->flags
& MMC_RSP_BUSY
)
385 if (host
->data
&& !(host
->data
->flags
& MMC_DATA_WRITE
))
388 mod_timer(&host
->cmd_abort_timer
, jiffies
+ HZ
/2);
390 OMAP_MMC_WRITE(host
, CTO
, 200);
391 OMAP_MMC_WRITE(host
, ARGL
, cmd
->arg
& 0xffff);
392 OMAP_MMC_WRITE(host
, ARGH
, cmd
->arg
>> 16);
393 irq_mask
= OMAP_MMC_STAT_A_EMPTY
| OMAP_MMC_STAT_A_FULL
|
394 OMAP_MMC_STAT_CMD_CRC
| OMAP_MMC_STAT_CMD_TOUT
|
395 OMAP_MMC_STAT_DATA_CRC
| OMAP_MMC_STAT_DATA_TOUT
|
396 OMAP_MMC_STAT_END_OF_CMD
| OMAP_MMC_STAT_CARD_ERR
|
397 OMAP_MMC_STAT_END_OF_DATA
;
398 if (cmd
->opcode
== MMC_ERASE
)
399 irq_mask
&= ~OMAP_MMC_STAT_DATA_TOUT
;
400 OMAP_MMC_WRITE(host
, IE
, irq_mask
);
401 OMAP_MMC_WRITE(host
, CMD
, cmdreg
);
405 mmc_omap_release_dma(struct mmc_omap_host
*host
, struct mmc_data
*data
,
408 enum dma_data_direction dma_data_dir
;
409 struct device
*dev
= mmc_dev(host
->mmc
);
412 if (data
->flags
& MMC_DATA_WRITE
) {
413 dma_data_dir
= DMA_TO_DEVICE
;
416 dma_data_dir
= DMA_FROM_DEVICE
;
421 dmaengine_terminate_all(c
);
422 /* Claim nothing transferred on error... */
423 data
->bytes_xfered
= 0;
425 dev
= c
->device
->dev
;
427 dma_unmap_sg(dev
, data
->sg
, host
->sg_len
, dma_data_dir
);
430 static void mmc_omap_send_stop_work(struct work_struct
*work
)
432 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
434 struct mmc_omap_slot
*slot
= host
->current_slot
;
435 struct mmc_data
*data
= host
->stop_data
;
436 unsigned long tick_ns
;
438 tick_ns
= DIV_ROUND_UP(NSEC_PER_SEC
, slot
->fclk_freq
);
441 mmc_omap_start_command(host
, data
->stop
);
445 mmc_omap_xfer_done(struct mmc_omap_host
*host
, struct mmc_data
*data
)
447 if (host
->dma_in_use
)
448 mmc_omap_release_dma(host
, data
, data
->error
);
453 /* NOTE: MMC layer will sometimes poll-wait CMD13 next, issuing
454 * dozens of requests until the card finishes writing data.
455 * It'd be cheaper to just wait till an EOFB interrupt arrives...
459 struct mmc_host
*mmc
;
463 mmc_omap_release_slot(host
->current_slot
, 1);
464 mmc_request_done(mmc
, data
->mrq
);
468 host
->stop_data
= data
;
469 queue_work(host
->mmc_omap_wq
, &host
->send_stop_work
);
473 mmc_omap_send_abort(struct mmc_omap_host
*host
, int maxloops
)
475 struct mmc_omap_slot
*slot
= host
->current_slot
;
476 unsigned int restarts
, passes
, timeout
;
479 /* Sending abort takes 80 clocks. Have some extra and round up */
480 timeout
= DIV_ROUND_UP(120 * USEC_PER_SEC
, slot
->fclk_freq
);
482 while (restarts
< maxloops
) {
483 OMAP_MMC_WRITE(host
, STAT
, 0xFFFF);
484 OMAP_MMC_WRITE(host
, CMD
, (3 << 12) | (1 << 7));
487 while (passes
< timeout
) {
488 stat
= OMAP_MMC_READ(host
, STAT
);
489 if (stat
& OMAP_MMC_STAT_END_OF_CMD
)
498 OMAP_MMC_WRITE(host
, STAT
, stat
);
502 mmc_omap_abort_xfer(struct mmc_omap_host
*host
, struct mmc_data
*data
)
504 if (host
->dma_in_use
)
505 mmc_omap_release_dma(host
, data
, 1);
510 mmc_omap_send_abort(host
, 10000);
514 mmc_omap_end_of_data(struct mmc_omap_host
*host
, struct mmc_data
*data
)
519 if (!host
->dma_in_use
) {
520 mmc_omap_xfer_done(host
, data
);
524 spin_lock_irqsave(&host
->dma_lock
, flags
);
528 host
->brs_received
= 1;
529 spin_unlock_irqrestore(&host
->dma_lock
, flags
);
531 mmc_omap_xfer_done(host
, data
);
535 mmc_omap_dma_done(struct mmc_omap_host
*host
, struct mmc_data
*data
)
541 spin_lock_irqsave(&host
->dma_lock
, flags
);
542 if (host
->brs_received
)
546 spin_unlock_irqrestore(&host
->dma_lock
, flags
);
548 mmc_omap_xfer_done(host
, data
);
552 mmc_omap_cmd_done(struct mmc_omap_host
*host
, struct mmc_command
*cmd
)
556 del_timer(&host
->cmd_abort_timer
);
558 if (cmd
->flags
& MMC_RSP_PRESENT
) {
559 if (cmd
->flags
& MMC_RSP_136
) {
560 /* response type 2 */
562 OMAP_MMC_READ(host
, RSP0
) |
563 (OMAP_MMC_READ(host
, RSP1
) << 16);
565 OMAP_MMC_READ(host
, RSP2
) |
566 (OMAP_MMC_READ(host
, RSP3
) << 16);
568 OMAP_MMC_READ(host
, RSP4
) |
569 (OMAP_MMC_READ(host
, RSP5
) << 16);
571 OMAP_MMC_READ(host
, RSP6
) |
572 (OMAP_MMC_READ(host
, RSP7
) << 16);
574 /* response types 1, 1b, 3, 4, 5, 6 */
576 OMAP_MMC_READ(host
, RSP6
) |
577 (OMAP_MMC_READ(host
, RSP7
) << 16);
581 if (host
->data
== NULL
|| cmd
->error
) {
582 struct mmc_host
*mmc
;
584 if (host
->data
!= NULL
)
585 mmc_omap_abort_xfer(host
, host
->data
);
588 mmc_omap_release_slot(host
->current_slot
, 1);
589 mmc_request_done(mmc
, cmd
->mrq
);
594 * Abort stuck command. Can occur when card is removed while it is being
597 static void mmc_omap_abort_command(struct work_struct
*work
)
599 struct mmc_omap_host
*host
= container_of(work
, struct mmc_omap_host
,
603 dev_dbg(mmc_dev(host
->mmc
), "Aborting stuck command CMD%d\n",
606 if (host
->cmd
->error
== 0)
607 host
->cmd
->error
= -ETIMEDOUT
;
609 if (host
->data
== NULL
) {
610 struct mmc_command
*cmd
;
611 struct mmc_host
*mmc
;
615 mmc_omap_send_abort(host
, 10000);
619 mmc_omap_release_slot(host
->current_slot
, 1);
620 mmc_request_done(mmc
, cmd
->mrq
);
622 mmc_omap_cmd_done(host
, host
->cmd
);
625 enable_irq(host
->irq
);
629 mmc_omap_cmd_timer(struct timer_list
*t
)
631 struct mmc_omap_host
*host
= from_timer(host
, t
, cmd_abort_timer
);
634 spin_lock_irqsave(&host
->slot_lock
, flags
);
635 if (host
->cmd
!= NULL
&& !host
->abort
) {
636 OMAP_MMC_WRITE(host
, IE
, 0);
637 disable_irq(host
->irq
);
639 queue_work(host
->mmc_omap_wq
, &host
->cmd_abort_work
);
641 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
646 mmc_omap_sg_to_buf(struct mmc_omap_host
*host
)
648 struct scatterlist
*sg
;
650 sg
= host
->data
->sg
+ host
->sg_idx
;
651 host
->buffer_bytes_left
= sg
->length
;
652 host
->buffer
= sg_virt(sg
);
653 if (host
->buffer_bytes_left
> host
->total_bytes_left
)
654 host
->buffer_bytes_left
= host
->total_bytes_left
;
658 mmc_omap_clk_timer(struct timer_list
*t
)
660 struct mmc_omap_host
*host
= from_timer(host
, t
, clk_timer
);
662 mmc_omap_fclk_enable(host
, 0);
667 mmc_omap_xfer_data(struct mmc_omap_host
*host
, int write
)
671 if (host
->buffer_bytes_left
== 0) {
673 BUG_ON(host
->sg_idx
== host
->sg_len
);
674 mmc_omap_sg_to_buf(host
);
677 if (n
> host
->buffer_bytes_left
)
678 n
= host
->buffer_bytes_left
;
680 /* Round up to handle odd number of bytes to transfer */
681 nwords
= DIV_ROUND_UP(n
, 2);
683 host
->buffer_bytes_left
-= n
;
684 host
->total_bytes_left
-= n
;
685 host
->data
->bytes_xfered
+= n
;
688 __raw_writesw(host
->virt_base
+ OMAP_MMC_REG(host
, DATA
),
689 host
->buffer
, nwords
);
691 __raw_readsw(host
->virt_base
+ OMAP_MMC_REG(host
, DATA
),
692 host
->buffer
, nwords
);
695 host
->buffer
+= nwords
;
698 #ifdef CONFIG_MMC_DEBUG
699 static void mmc_omap_report_irq(struct mmc_omap_host
*host
, u16 status
)
701 static const char *mmc_omap_status_bits
[] = {
702 "EOC", "CD", "CB", "BRS", "EOFB", "DTO", "DCRC", "CTO",
703 "CCRC", "CRW", "AF", "AE", "OCRB", "CIRQ", "CERR"
706 char res
[64], *buf
= res
;
708 buf
+= sprintf(buf
, "MMC IRQ 0x%x:", status
);
710 for (i
= 0; i
< ARRAY_SIZE(mmc_omap_status_bits
); i
++)
711 if (status
& (1 << i
))
712 buf
+= sprintf(buf
, " %s", mmc_omap_status_bits
[i
]);
713 dev_vdbg(mmc_dev(host
->mmc
), "%s\n", res
);
716 static void mmc_omap_report_irq(struct mmc_omap_host
*host
, u16 status
)
722 static irqreturn_t
mmc_omap_irq(int irq
, void *dev_id
)
724 struct mmc_omap_host
* host
= (struct mmc_omap_host
*)dev_id
;
728 int transfer_error
, cmd_error
;
730 if (host
->cmd
== NULL
&& host
->data
== NULL
) {
731 status
= OMAP_MMC_READ(host
, STAT
);
732 dev_info(mmc_dev(host
->slots
[0]->mmc
),
733 "Spurious IRQ 0x%04x\n", status
);
735 OMAP_MMC_WRITE(host
, STAT
, status
);
736 OMAP_MMC_WRITE(host
, IE
, 0);
746 while ((status
= OMAP_MMC_READ(host
, STAT
)) != 0) {
749 OMAP_MMC_WRITE(host
, STAT
, status
);
750 if (host
->cmd
!= NULL
)
751 cmd
= host
->cmd
->opcode
;
754 dev_dbg(mmc_dev(host
->mmc
), "MMC IRQ %04x (CMD %d): ",
756 mmc_omap_report_irq(host
, status
);
758 if (host
->total_bytes_left
) {
759 if ((status
& OMAP_MMC_STAT_A_FULL
) ||
760 (status
& OMAP_MMC_STAT_END_OF_DATA
))
761 mmc_omap_xfer_data(host
, 0);
762 if (status
& OMAP_MMC_STAT_A_EMPTY
)
763 mmc_omap_xfer_data(host
, 1);
766 if (status
& OMAP_MMC_STAT_END_OF_DATA
)
769 if (status
& OMAP_MMC_STAT_DATA_TOUT
) {
770 dev_dbg(mmc_dev(host
->mmc
), "data timeout (CMD%d)\n",
773 host
->data
->error
= -ETIMEDOUT
;
778 if (status
& OMAP_MMC_STAT_DATA_CRC
) {
780 host
->data
->error
= -EILSEQ
;
781 dev_dbg(mmc_dev(host
->mmc
),
782 "data CRC error, bytes left %d\n",
783 host
->total_bytes_left
);
786 dev_dbg(mmc_dev(host
->mmc
), "data CRC error\n");
790 if (status
& OMAP_MMC_STAT_CMD_TOUT
) {
791 /* Timeouts are routine with some commands */
793 struct mmc_omap_slot
*slot
=
796 !mmc_omap_cover_is_open(slot
))
797 dev_err(mmc_dev(host
->mmc
),
798 "command timeout (CMD%d)\n",
800 host
->cmd
->error
= -ETIMEDOUT
;
806 if (status
& OMAP_MMC_STAT_CMD_CRC
) {
808 dev_err(mmc_dev(host
->mmc
),
809 "command CRC error (CMD%d, arg 0x%08x)\n",
810 cmd
, host
->cmd
->arg
);
811 host
->cmd
->error
= -EILSEQ
;
815 dev_err(mmc_dev(host
->mmc
),
816 "command CRC error without cmd?\n");
819 if (status
& OMAP_MMC_STAT_CARD_ERR
) {
820 dev_dbg(mmc_dev(host
->mmc
),
821 "ignoring card status error (CMD%d)\n",
827 * NOTE: On 1610 the END_OF_CMD may come too early when
830 if ((status
& OMAP_MMC_STAT_END_OF_CMD
) &&
831 (!(status
& OMAP_MMC_STAT_A_EMPTY
))) {
836 if (cmd_error
&& host
->data
) {
837 del_timer(&host
->cmd_abort_timer
);
839 OMAP_MMC_WRITE(host
, IE
, 0);
840 disable_irq_nosync(host
->irq
);
841 queue_work(host
->mmc_omap_wq
, &host
->cmd_abort_work
);
845 if (end_command
&& host
->cmd
)
846 mmc_omap_cmd_done(host
, host
->cmd
);
847 if (host
->data
!= NULL
) {
849 mmc_omap_xfer_done(host
, host
->data
);
850 else if (end_transfer
)
851 mmc_omap_end_of_data(host
, host
->data
);
857 void omap_mmc_notify_cover_event(struct device
*dev
, int num
, int is_closed
)
860 struct mmc_omap_host
*host
= dev_get_drvdata(dev
);
861 struct mmc_omap_slot
*slot
= host
->slots
[num
];
863 BUG_ON(num
>= host
->nr_slots
);
865 /* Other subsystems can call in here before we're initialised. */
866 if (host
->nr_slots
== 0 || !host
->slots
[num
])
869 cover_open
= mmc_omap_cover_is_open(slot
);
870 if (cover_open
!= slot
->cover_open
) {
871 slot
->cover_open
= cover_open
;
872 sysfs_notify(&slot
->mmc
->class_dev
.kobj
, NULL
, "cover_switch");
875 tasklet_hi_schedule(&slot
->cover_tasklet
);
878 static void mmc_omap_cover_timer(struct timer_list
*t
)
880 struct mmc_omap_slot
*slot
= from_timer(slot
, t
, cover_timer
);
881 tasklet_schedule(&slot
->cover_tasklet
);
884 static void mmc_omap_cover_handler(unsigned long param
)
886 struct mmc_omap_slot
*slot
= (struct mmc_omap_slot
*)param
;
887 int cover_open
= mmc_omap_cover_is_open(slot
);
889 mmc_detect_change(slot
->mmc
, 0);
894 * If no card is inserted, we postpone polling until
895 * the cover has been closed.
897 if (slot
->mmc
->card
== NULL
)
900 mod_timer(&slot
->cover_timer
,
901 jiffies
+ msecs_to_jiffies(OMAP_MMC_COVER_POLL_DELAY
));
904 static void mmc_omap_dma_callback(void *priv
)
906 struct mmc_omap_host
*host
= priv
;
907 struct mmc_data
*data
= host
->data
;
909 /* If we got to the end of DMA, assume everything went well */
910 data
->bytes_xfered
+= data
->blocks
* data
->blksz
;
912 mmc_omap_dma_done(host
, data
);
915 static inline void set_cmd_timeout(struct mmc_omap_host
*host
, struct mmc_request
*req
)
919 reg
= OMAP_MMC_READ(host
, SDIO
);
921 OMAP_MMC_WRITE(host
, SDIO
, reg
);
922 /* Set maximum timeout */
923 OMAP_MMC_WRITE(host
, CTO
, 0xfd);
926 static inline void set_data_timeout(struct mmc_omap_host
*host
, struct mmc_request
*req
)
928 unsigned int timeout
, cycle_ns
;
931 cycle_ns
= 1000000000 / host
->current_slot
->fclk_freq
;
932 timeout
= req
->data
->timeout_ns
/ cycle_ns
;
933 timeout
+= req
->data
->timeout_clks
;
935 /* Check if we need to use timeout multiplier register */
936 reg
= OMAP_MMC_READ(host
, SDIO
);
937 if (timeout
> 0xffff) {
942 OMAP_MMC_WRITE(host
, SDIO
, reg
);
943 OMAP_MMC_WRITE(host
, DTO
, timeout
);
947 mmc_omap_prepare_data(struct mmc_omap_host
*host
, struct mmc_request
*req
)
949 struct mmc_data
*data
= req
->data
;
950 int i
, use_dma
= 1, block_size
;
951 struct scatterlist
*sg
;
956 OMAP_MMC_WRITE(host
, BLEN
, 0);
957 OMAP_MMC_WRITE(host
, NBLK
, 0);
958 OMAP_MMC_WRITE(host
, BUF
, 0);
959 host
->dma_in_use
= 0;
960 set_cmd_timeout(host
, req
);
964 block_size
= data
->blksz
;
966 OMAP_MMC_WRITE(host
, NBLK
, data
->blocks
- 1);
967 OMAP_MMC_WRITE(host
, BLEN
, block_size
- 1);
968 set_data_timeout(host
, req
);
970 /* cope with calling layer confusion; it issues "single
971 * block" writes using multi-block scatterlists.
973 sg_len
= (data
->blocks
== 1) ? 1 : data
->sg_len
;
975 /* Only do DMA for entire blocks */
976 for_each_sg(data
->sg
, sg
, sg_len
, i
) {
977 if ((sg
->length
% block_size
) != 0) {
985 enum dma_data_direction dma_data_dir
;
986 struct dma_async_tx_descriptor
*tx
;
992 * FIFO is 16x2 bytes on 15xx, and 32x2 bytes on 16xx
993 * and 24xx. Use 16 or 32 word frames when the
994 * blocksize is at least that large. Blocksize is
995 * usually 512 bytes; but not for some SD reads.
997 burst
= mmc_omap15xx() ? 32 : 64;
998 if (burst
> data
->blksz
)
1003 if (data
->flags
& MMC_DATA_WRITE
) {
1005 bp
= &host
->dma_tx_burst
;
1006 buf
= 0x0f80 | (burst
- 1) << 0;
1007 dma_data_dir
= DMA_TO_DEVICE
;
1010 bp
= &host
->dma_rx_burst
;
1011 buf
= 0x800f | (burst
- 1) << 8;
1012 dma_data_dir
= DMA_FROM_DEVICE
;
1018 /* Only reconfigure if we have a different burst size */
1020 struct dma_slave_config cfg
= {
1021 .src_addr
= host
->phys_base
+
1022 OMAP_MMC_REG(host
, DATA
),
1023 .dst_addr
= host
->phys_base
+
1024 OMAP_MMC_REG(host
, DATA
),
1025 .src_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
1026 .dst_addr_width
= DMA_SLAVE_BUSWIDTH_2_BYTES
,
1027 .src_maxburst
= burst
,
1028 .dst_maxburst
= burst
,
1031 if (dmaengine_slave_config(c
, &cfg
))
1037 host
->sg_len
= dma_map_sg(c
->device
->dev
, data
->sg
, sg_len
,
1039 if (host
->sg_len
== 0)
1042 tx
= dmaengine_prep_slave_sg(c
, data
->sg
, host
->sg_len
,
1043 data
->flags
& MMC_DATA_WRITE
? DMA_MEM_TO_DEV
: DMA_DEV_TO_MEM
,
1044 DMA_PREP_INTERRUPT
| DMA_CTRL_ACK
);
1048 OMAP_MMC_WRITE(host
, BUF
, buf
);
1050 tx
->callback
= mmc_omap_dma_callback
;
1051 tx
->callback_param
= host
;
1052 dmaengine_submit(tx
);
1053 host
->brs_received
= 0;
1055 host
->dma_in_use
= 1;
1060 /* Revert to PIO? */
1061 OMAP_MMC_WRITE(host
, BUF
, 0x1f1f);
1062 host
->total_bytes_left
= data
->blocks
* block_size
;
1063 host
->sg_len
= sg_len
;
1064 mmc_omap_sg_to_buf(host
);
1065 host
->dma_in_use
= 0;
1068 static void mmc_omap_start_request(struct mmc_omap_host
*host
,
1069 struct mmc_request
*req
)
1071 BUG_ON(host
->mrq
!= NULL
);
1075 /* only touch fifo AFTER the controller readies it */
1076 mmc_omap_prepare_data(host
, req
);
1077 mmc_omap_start_command(host
, req
->cmd
);
1078 if (host
->dma_in_use
) {
1079 struct dma_chan
*c
= host
->data
->flags
& MMC_DATA_WRITE
?
1080 host
->dma_tx
: host
->dma_rx
;
1082 dma_async_issue_pending(c
);
1086 static void mmc_omap_request(struct mmc_host
*mmc
, struct mmc_request
*req
)
1088 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1089 struct mmc_omap_host
*host
= slot
->host
;
1090 unsigned long flags
;
1092 spin_lock_irqsave(&host
->slot_lock
, flags
);
1093 if (host
->mmc
!= NULL
) {
1094 BUG_ON(slot
->mrq
!= NULL
);
1096 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
1100 spin_unlock_irqrestore(&host
->slot_lock
, flags
);
1101 mmc_omap_select_slot(slot
, 1);
1102 mmc_omap_start_request(host
, req
);
1105 static void mmc_omap_set_power(struct mmc_omap_slot
*slot
, int power_on
,
1108 struct mmc_omap_host
*host
;
1112 if (slot
->pdata
->set_power
!= NULL
)
1113 slot
->pdata
->set_power(mmc_dev(slot
->mmc
), slot
->id
, power_on
,
1119 w
= OMAP_MMC_READ(host
, CON
);
1120 OMAP_MMC_WRITE(host
, CON
, w
| (1 << 11));
1122 w
= OMAP_MMC_READ(host
, CON
);
1123 OMAP_MMC_WRITE(host
, CON
, w
& ~(1 << 11));
1128 static int mmc_omap_calc_divisor(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1130 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1131 struct mmc_omap_host
*host
= slot
->host
;
1132 int func_clk_rate
= clk_get_rate(host
->fclk
);
1135 if (ios
->clock
== 0)
1138 dsor
= func_clk_rate
/ ios
->clock
;
1142 if (func_clk_rate
/ dsor
> ios
->clock
)
1148 slot
->fclk_freq
= func_clk_rate
/ dsor
;
1150 if (ios
->bus_width
== MMC_BUS_WIDTH_4
)
1156 static void mmc_omap_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
1158 struct mmc_omap_slot
*slot
= mmc_priv(mmc
);
1159 struct mmc_omap_host
*host
= slot
->host
;
1161 int clk_enabled
, init_stream
;
1163 mmc_omap_select_slot(slot
, 0);
1165 dsor
= mmc_omap_calc_divisor(mmc
, ios
);
1167 if (ios
->vdd
!= slot
->vdd
)
1168 slot
->vdd
= ios
->vdd
;
1172 switch (ios
->power_mode
) {
1174 mmc_omap_set_power(slot
, 0, ios
->vdd
);
1177 /* Cannot touch dsor yet, just power up MMC */
1178 mmc_omap_set_power(slot
, 1, ios
->vdd
);
1179 slot
->power_mode
= ios
->power_mode
;
1182 mmc_omap_fclk_enable(host
, 1);
1185 if (slot
->power_mode
!= MMC_POWER_ON
)
1189 slot
->power_mode
= ios
->power_mode
;
1191 if (slot
->bus_mode
!= ios
->bus_mode
) {
1192 if (slot
->pdata
->set_bus_mode
!= NULL
)
1193 slot
->pdata
->set_bus_mode(mmc_dev(mmc
), slot
->id
,
1195 slot
->bus_mode
= ios
->bus_mode
;
1198 /* On insanely high arm_per frequencies something sometimes
1199 * goes somehow out of sync, and the POW bit is not being set,
1200 * which results in the while loop below getting stuck.
1201 * Writing to the CON register twice seems to do the trick. */
1202 for (i
= 0; i
< 2; i
++)
1203 OMAP_MMC_WRITE(host
, CON
, dsor
);
1204 slot
->saved_con
= dsor
;
1206 /* worst case at 400kHz, 80 cycles makes 200 microsecs */
1209 /* Send clock cycles, poll completion */
1210 OMAP_MMC_WRITE(host
, IE
, 0);
1211 OMAP_MMC_WRITE(host
, STAT
, 0xffff);
1212 OMAP_MMC_WRITE(host
, CMD
, 1 << 7);
1213 while (usecs
> 0 && (OMAP_MMC_READ(host
, STAT
) & 1) == 0) {
1217 OMAP_MMC_WRITE(host
, STAT
, 1);
1221 mmc_omap_release_slot(slot
, clk_enabled
);
1224 static const struct mmc_host_ops mmc_omap_ops
= {
1225 .request
= mmc_omap_request
,
1226 .set_ios
= mmc_omap_set_ios
,
1229 static int mmc_omap_new_slot(struct mmc_omap_host
*host
, int id
)
1231 struct mmc_omap_slot
*slot
= NULL
;
1232 struct mmc_host
*mmc
;
1235 mmc
= mmc_alloc_host(sizeof(struct mmc_omap_slot
), host
->dev
);
1239 slot
= mmc_priv(mmc
);
1243 slot
->power_mode
= MMC_POWER_UNDEFINED
;
1244 slot
->pdata
= &host
->pdata
->slots
[id
];
1246 host
->slots
[id
] = slot
;
1249 if (host
->pdata
->slots
[id
].wires
>= 4)
1250 mmc
->caps
|= MMC_CAP_4_BIT_DATA
| MMC_CAP_ERASE
;
1252 mmc
->ops
= &mmc_omap_ops
;
1253 mmc
->f_min
= 400000;
1256 mmc
->f_max
= 48000000;
1258 mmc
->f_max
= 24000000;
1259 if (host
->pdata
->max_freq
)
1260 mmc
->f_max
= min(host
->pdata
->max_freq
, mmc
->f_max
);
1261 mmc
->ocr_avail
= slot
->pdata
->ocr_mask
;
1263 /* Use scatterlist DMA to reduce per-transfer costs.
1264 * NOTE max_seg_size assumption that small blocks aren't
1265 * normally used (except e.g. for reading SD registers).
1268 mmc
->max_blk_size
= 2048; /* BLEN is 11 bits (+1) */
1269 mmc
->max_blk_count
= 2048; /* NBLK is 11 bits (+1) */
1270 mmc
->max_req_size
= mmc
->max_blk_size
* mmc
->max_blk_count
;
1271 mmc
->max_seg_size
= mmc
->max_req_size
;
1273 if (slot
->pdata
->get_cover_state
!= NULL
) {
1274 timer_setup(&slot
->cover_timer
, mmc_omap_cover_timer
, 0);
1275 tasklet_init(&slot
->cover_tasklet
, mmc_omap_cover_handler
,
1276 (unsigned long)slot
);
1279 r
= mmc_add_host(mmc
);
1281 goto err_remove_host
;
1283 if (slot
->pdata
->name
!= NULL
) {
1284 r
= device_create_file(&mmc
->class_dev
,
1285 &dev_attr_slot_name
);
1287 goto err_remove_host
;
1290 if (slot
->pdata
->get_cover_state
!= NULL
) {
1291 r
= device_create_file(&mmc
->class_dev
,
1292 &dev_attr_cover_switch
);
1294 goto err_remove_slot_name
;
1295 tasklet_schedule(&slot
->cover_tasklet
);
1300 err_remove_slot_name
:
1301 if (slot
->pdata
->name
!= NULL
)
1302 device_remove_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1304 mmc_remove_host(mmc
);
1309 static void mmc_omap_remove_slot(struct mmc_omap_slot
*slot
)
1311 struct mmc_host
*mmc
= slot
->mmc
;
1313 if (slot
->pdata
->name
!= NULL
)
1314 device_remove_file(&mmc
->class_dev
, &dev_attr_slot_name
);
1315 if (slot
->pdata
->get_cover_state
!= NULL
)
1316 device_remove_file(&mmc
->class_dev
, &dev_attr_cover_switch
);
1318 tasklet_kill(&slot
->cover_tasklet
);
1319 del_timer_sync(&slot
->cover_timer
);
1320 flush_workqueue(slot
->host
->mmc_omap_wq
);
1322 mmc_remove_host(mmc
);
1326 static int mmc_omap_probe(struct platform_device
*pdev
)
1328 struct omap_mmc_platform_data
*pdata
= pdev
->dev
.platform_data
;
1329 struct mmc_omap_host
*host
= NULL
;
1330 struct resource
*res
;
1334 if (pdata
== NULL
) {
1335 dev_err(&pdev
->dev
, "platform data missing\n");
1338 if (pdata
->nr_slots
== 0) {
1339 dev_err(&pdev
->dev
, "no slots\n");
1340 return -EPROBE_DEFER
;
1343 host
= devm_kzalloc(&pdev
->dev
, sizeof(struct mmc_omap_host
),
1348 irq
= platform_get_irq(pdev
, 0);
1352 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1353 host
->virt_base
= devm_ioremap_resource(&pdev
->dev
, res
);
1354 if (IS_ERR(host
->virt_base
))
1355 return PTR_ERR(host
->virt_base
);
1357 INIT_WORK(&host
->slot_release_work
, mmc_omap_slot_release_work
);
1358 INIT_WORK(&host
->send_stop_work
, mmc_omap_send_stop_work
);
1360 INIT_WORK(&host
->cmd_abort_work
, mmc_omap_abort_command
);
1361 timer_setup(&host
->cmd_abort_timer
, mmc_omap_cmd_timer
, 0);
1363 spin_lock_init(&host
->clk_lock
);
1364 timer_setup(&host
->clk_timer
, mmc_omap_clk_timer
, 0);
1366 spin_lock_init(&host
->dma_lock
);
1367 spin_lock_init(&host
->slot_lock
);
1368 init_waitqueue_head(&host
->slot_wq
);
1370 host
->pdata
= pdata
;
1371 host
->features
= host
->pdata
->slots
[0].features
;
1372 host
->dev
= &pdev
->dev
;
1373 platform_set_drvdata(pdev
, host
);
1375 host
->id
= pdev
->id
;
1377 host
->phys_base
= res
->start
;
1378 host
->iclk
= clk_get(&pdev
->dev
, "ick");
1379 if (IS_ERR(host
->iclk
))
1380 return PTR_ERR(host
->iclk
);
1381 clk_enable(host
->iclk
);
1383 host
->fclk
= clk_get(&pdev
->dev
, "fck");
1384 if (IS_ERR(host
->fclk
)) {
1385 ret
= PTR_ERR(host
->fclk
);
1389 host
->dma_tx_burst
= -1;
1390 host
->dma_rx_burst
= -1;
1392 host
->dma_tx
= dma_request_chan(&pdev
->dev
, "tx");
1393 if (IS_ERR(host
->dma_tx
)) {
1394 ret
= PTR_ERR(host
->dma_tx
);
1395 if (ret
== -EPROBE_DEFER
) {
1396 clk_put(host
->fclk
);
1400 host
->dma_tx
= NULL
;
1401 dev_warn(host
->dev
, "TX DMA channel request failed\n");
1404 host
->dma_rx
= dma_request_chan(&pdev
->dev
, "rx");
1405 if (IS_ERR(host
->dma_rx
)) {
1406 ret
= PTR_ERR(host
->dma_rx
);
1407 if (ret
== -EPROBE_DEFER
) {
1409 dma_release_channel(host
->dma_tx
);
1410 clk_put(host
->fclk
);
1414 host
->dma_rx
= NULL
;
1415 dev_warn(host
->dev
, "RX DMA channel request failed\n");
1418 ret
= request_irq(host
->irq
, mmc_omap_irq
, 0, DRIVER_NAME
, host
);
1422 if (pdata
->init
!= NULL
) {
1423 ret
= pdata
->init(&pdev
->dev
);
1428 host
->nr_slots
= pdata
->nr_slots
;
1429 host
->reg_shift
= (mmc_omap7xx() ? 1 : 2);
1431 host
->mmc_omap_wq
= alloc_workqueue("mmc_omap", 0, 0);
1432 if (!host
->mmc_omap_wq
) {
1434 goto err_plat_cleanup
;
1437 for (i
= 0; i
< pdata
->nr_slots
; i
++) {
1438 ret
= mmc_omap_new_slot(host
, i
);
1441 mmc_omap_remove_slot(host
->slots
[i
]);
1443 goto err_destroy_wq
;
1450 destroy_workqueue(host
->mmc_omap_wq
);
1453 pdata
->cleanup(&pdev
->dev
);
1455 free_irq(host
->irq
, host
);
1458 dma_release_channel(host
->dma_tx
);
1460 dma_release_channel(host
->dma_rx
);
1461 clk_put(host
->fclk
);
1463 clk_disable(host
->iclk
);
1464 clk_put(host
->iclk
);
1468 static int mmc_omap_remove(struct platform_device
*pdev
)
1470 struct mmc_omap_host
*host
= platform_get_drvdata(pdev
);
1473 BUG_ON(host
== NULL
);
1475 for (i
= 0; i
< host
->nr_slots
; i
++)
1476 mmc_omap_remove_slot(host
->slots
[i
]);
1478 if (host
->pdata
->cleanup
)
1479 host
->pdata
->cleanup(&pdev
->dev
);
1481 mmc_omap_fclk_enable(host
, 0);
1482 free_irq(host
->irq
, host
);
1483 clk_put(host
->fclk
);
1484 clk_disable(host
->iclk
);
1485 clk_put(host
->iclk
);
1488 dma_release_channel(host
->dma_tx
);
1490 dma_release_channel(host
->dma_rx
);
1492 destroy_workqueue(host
->mmc_omap_wq
);
1497 #if IS_BUILTIN(CONFIG_OF)
1498 static const struct of_device_id mmc_omap_match
[] = {
1499 { .compatible
= "ti,omap2420-mmc", },
1502 MODULE_DEVICE_TABLE(of
, mmc_omap_match
);
1505 static struct platform_driver mmc_omap_driver
= {
1506 .probe
= mmc_omap_probe
,
1507 .remove
= mmc_omap_remove
,
1509 .name
= DRIVER_NAME
,
1510 .of_match_table
= of_match_ptr(mmc_omap_match
),
1514 module_platform_driver(mmc_omap_driver
);
1515 MODULE_DESCRIPTION("OMAP Multimedia Card driver");
1516 MODULE_LICENSE("GPL");
1517 MODULE_ALIAS("platform:" DRIVER_NAME
);
1518 MODULE_AUTHOR("Juha Yrjölä");