2 * Portions copyright (C) 2003 Russell King, PXA MMCI Driver
3 * Portions copyright (C) 2004-2005 Pierre Ossman, W83L51xD SD/MMC driver
5 * Copyright 2008 Embedded Alley Solutions, Inc.
6 * Copyright 2009-2011 Freescale Semiconductor, Inc.
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
23 #include <linux/kernel.h>
24 #include <linux/init.h>
25 #include <linux/ioport.h>
26 #include <linux/platform_device.h>
27 #include <linux/delay.h>
28 #include <linux/interrupt.h>
29 #include <linux/dma-mapping.h>
30 #include <linux/dmaengine.h>
31 #include <linux/highmem.h>
32 #include <linux/clk.h>
33 #include <linux/err.h>
34 #include <linux/completion.h>
35 #include <linux/mmc/host.h>
36 #include <linux/mmc/mmc.h>
37 #include <linux/mmc/sdio.h>
38 #include <linux/gpio.h>
39 #include <linux/regulator/consumer.h>
42 #include <mach/common.h>
46 #define DRIVER_NAME "mxs-mmc"
48 /* card detect polling timeout */
49 #define MXS_MMC_DETECT_TIMEOUT (HZ/2)
51 #define SSP_VERSION_LATEST 4
52 #define ssp_is_old() (host->version < SSP_VERSION_LATEST)
55 #define HW_SSP_CTRL0 0x000
56 #define BM_SSP_CTRL0_RUN (1 << 29)
57 #define BM_SSP_CTRL0_SDIO_IRQ_CHECK (1 << 28)
58 #define BM_SSP_CTRL0_IGNORE_CRC (1 << 26)
59 #define BM_SSP_CTRL0_READ (1 << 25)
60 #define BM_SSP_CTRL0_DATA_XFER (1 << 24)
61 #define BP_SSP_CTRL0_BUS_WIDTH (22)
62 #define BM_SSP_CTRL0_BUS_WIDTH (0x3 << 22)
63 #define BM_SSP_CTRL0_WAIT_FOR_IRQ (1 << 21)
64 #define BM_SSP_CTRL0_LONG_RESP (1 << 19)
65 #define BM_SSP_CTRL0_GET_RESP (1 << 17)
66 #define BM_SSP_CTRL0_ENABLE (1 << 16)
67 #define BP_SSP_CTRL0_XFER_COUNT (0)
68 #define BM_SSP_CTRL0_XFER_COUNT (0xffff)
69 #define HW_SSP_CMD0 0x010
70 #define BM_SSP_CMD0_DBL_DATA_RATE_EN (1 << 25)
71 #define BM_SSP_CMD0_SLOW_CLKING_EN (1 << 22)
72 #define BM_SSP_CMD0_CONT_CLKING_EN (1 << 21)
73 #define BM_SSP_CMD0_APPEND_8CYC (1 << 20)
74 #define BP_SSP_CMD0_BLOCK_SIZE (16)
75 #define BM_SSP_CMD0_BLOCK_SIZE (0xf << 16)
76 #define BP_SSP_CMD0_BLOCK_COUNT (8)
77 #define BM_SSP_CMD0_BLOCK_COUNT (0xff << 8)
78 #define BP_SSP_CMD0_CMD (0)
79 #define BM_SSP_CMD0_CMD (0xff)
80 #define HW_SSP_CMD1 0x020
81 #define HW_SSP_XFER_SIZE 0x030
82 #define HW_SSP_BLOCK_SIZE 0x040
83 #define BP_SSP_BLOCK_SIZE_BLOCK_COUNT (4)
84 #define BM_SSP_BLOCK_SIZE_BLOCK_COUNT (0xffffff << 4)
85 #define BP_SSP_BLOCK_SIZE_BLOCK_SIZE (0)
86 #define BM_SSP_BLOCK_SIZE_BLOCK_SIZE (0xf)
87 #define HW_SSP_TIMING (ssp_is_old() ? 0x050 : 0x070)
88 #define BP_SSP_TIMING_TIMEOUT (16)
89 #define BM_SSP_TIMING_TIMEOUT (0xffff << 16)
90 #define BP_SSP_TIMING_CLOCK_DIVIDE (8)
91 #define BM_SSP_TIMING_CLOCK_DIVIDE (0xff << 8)
92 #define BP_SSP_TIMING_CLOCK_RATE (0)
93 #define BM_SSP_TIMING_CLOCK_RATE (0xff)
94 #define HW_SSP_CTRL1 (ssp_is_old() ? 0x060 : 0x080)
95 #define BM_SSP_CTRL1_SDIO_IRQ (1 << 31)
96 #define BM_SSP_CTRL1_SDIO_IRQ_EN (1 << 30)
97 #define BM_SSP_CTRL1_RESP_ERR_IRQ (1 << 29)
98 #define BM_SSP_CTRL1_RESP_ERR_IRQ_EN (1 << 28)
99 #define BM_SSP_CTRL1_RESP_TIMEOUT_IRQ (1 << 27)
100 #define BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN (1 << 26)
101 #define BM_SSP_CTRL1_DATA_TIMEOUT_IRQ (1 << 25)
102 #define BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN (1 << 24)
103 #define BM_SSP_CTRL1_DATA_CRC_IRQ (1 << 23)
104 #define BM_SSP_CTRL1_DATA_CRC_IRQ_EN (1 << 22)
105 #define BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ (1 << 21)
106 #define BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ_EN (1 << 20)
107 #define BM_SSP_CTRL1_RECV_TIMEOUT_IRQ (1 << 17)
108 #define BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN (1 << 16)
109 #define BM_SSP_CTRL1_FIFO_OVERRUN_IRQ (1 << 15)
110 #define BM_SSP_CTRL1_FIFO_OVERRUN_IRQ_EN (1 << 14)
111 #define BM_SSP_CTRL1_DMA_ENABLE (1 << 13)
112 #define BM_SSP_CTRL1_POLARITY (1 << 9)
113 #define BP_SSP_CTRL1_WORD_LENGTH (4)
114 #define BM_SSP_CTRL1_WORD_LENGTH (0xf << 4)
115 #define BP_SSP_CTRL1_SSP_MODE (0)
116 #define BM_SSP_CTRL1_SSP_MODE (0xf)
117 #define HW_SSP_SDRESP0 (ssp_is_old() ? 0x080 : 0x0a0)
118 #define HW_SSP_SDRESP1 (ssp_is_old() ? 0x090 : 0x0b0)
119 #define HW_SSP_SDRESP2 (ssp_is_old() ? 0x0a0 : 0x0c0)
120 #define HW_SSP_SDRESP3 (ssp_is_old() ? 0x0b0 : 0x0d0)
121 #define HW_SSP_STATUS (ssp_is_old() ? 0x0c0 : 0x100)
122 #define BM_SSP_STATUS_CARD_DETECT (1 << 28)
123 #define BM_SSP_STATUS_SDIO_IRQ (1 << 17)
124 #define HW_SSP_VERSION (cpu_is_mx23() ? 0x110 : 0x130)
125 #define BP_SSP_VERSION_MAJOR (24)
127 #define BF_SSP(value, field) (((value) << BP_SSP_##field) & BM_SSP_##field)
129 #define MXS_MMC_IRQ_BITS (BM_SSP_CTRL1_SDIO_IRQ | \
130 BM_SSP_CTRL1_RESP_ERR_IRQ | \
131 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ | \
132 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ | \
133 BM_SSP_CTRL1_DATA_CRC_IRQ | \
134 BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ | \
135 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ | \
136 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ)
138 #define SSP_PIO_NUM 3
140 struct mxs_mmc_host
{
141 struct mmc_host
*mmc
;
142 struct mmc_request
*mrq
;
143 struct mmc_command
*cmd
;
144 struct mmc_data
*data
;
148 struct resource
*res
;
149 struct resource
*dma_res
;
151 unsigned int clk_rate
;
153 struct dma_chan
*dmach
;
154 struct mxs_dma_data dma_data
;
155 unsigned int dma_dir
;
156 u32 ssp_pio_words
[SSP_PIO_NUM
];
158 unsigned int version
;
159 unsigned char bus_width
;
164 static int mxs_mmc_get_ro(struct mmc_host
*mmc
)
166 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
167 struct mxs_mmc_platform_data
*pdata
=
168 mmc_dev(host
->mmc
)->platform_data
;
173 if (!gpio_is_valid(pdata
->wp_gpio
))
176 return gpio_get_value(pdata
->wp_gpio
);
179 static int mxs_mmc_get_cd(struct mmc_host
*mmc
)
181 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
183 return !(readl(host
->base
+ HW_SSP_STATUS
) &
184 BM_SSP_STATUS_CARD_DETECT
);
187 static void mxs_mmc_reset(struct mxs_mmc_host
*host
)
191 mxs_reset_block(host
->base
);
193 ctrl0
= BM_SSP_CTRL0_IGNORE_CRC
;
194 ctrl1
= BF_SSP(0x3, CTRL1_SSP_MODE
) |
195 BF_SSP(0x7, CTRL1_WORD_LENGTH
) |
196 BM_SSP_CTRL1_DMA_ENABLE
|
197 BM_SSP_CTRL1_POLARITY
|
198 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN
|
199 BM_SSP_CTRL1_DATA_CRC_IRQ_EN
|
200 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN
|
201 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN
|
202 BM_SSP_CTRL1_RESP_ERR_IRQ_EN
;
204 writel(BF_SSP(0xffff, TIMING_TIMEOUT
) |
205 BF_SSP(2, TIMING_CLOCK_DIVIDE
) |
206 BF_SSP(0, TIMING_CLOCK_RATE
),
207 host
->base
+ HW_SSP_TIMING
);
209 if (host
->sdio_irq_en
) {
210 ctrl0
|= BM_SSP_CTRL0_SDIO_IRQ_CHECK
;
211 ctrl1
|= BM_SSP_CTRL1_SDIO_IRQ_EN
;
214 writel(ctrl0
, host
->base
+ HW_SSP_CTRL0
);
215 writel(ctrl1
, host
->base
+ HW_SSP_CTRL1
);
218 static void mxs_mmc_start_cmd(struct mxs_mmc_host
*host
,
219 struct mmc_command
*cmd
);
221 static void mxs_mmc_request_done(struct mxs_mmc_host
*host
)
223 struct mmc_command
*cmd
= host
->cmd
;
224 struct mmc_data
*data
= host
->data
;
225 struct mmc_request
*mrq
= host
->mrq
;
227 if (mmc_resp_type(cmd
) & MMC_RSP_PRESENT
) {
228 if (mmc_resp_type(cmd
) & MMC_RSP_136
) {
229 cmd
->resp
[3] = readl(host
->base
+ HW_SSP_SDRESP0
);
230 cmd
->resp
[2] = readl(host
->base
+ HW_SSP_SDRESP1
);
231 cmd
->resp
[1] = readl(host
->base
+ HW_SSP_SDRESP2
);
232 cmd
->resp
[0] = readl(host
->base
+ HW_SSP_SDRESP3
);
234 cmd
->resp
[0] = readl(host
->base
+ HW_SSP_SDRESP0
);
239 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
,
240 data
->sg_len
, host
->dma_dir
);
242 * If there was an error on any block, we mark all
243 * data blocks as being in error.
246 data
->bytes_xfered
= data
->blocks
* data
->blksz
;
248 data
->bytes_xfered
= 0;
252 mxs_mmc_start_cmd(host
, mrq
->stop
);
258 mmc_request_done(host
->mmc
, mrq
);
261 static void mxs_mmc_dma_irq_callback(void *param
)
263 struct mxs_mmc_host
*host
= param
;
265 mxs_mmc_request_done(host
);
268 static irqreturn_t
mxs_mmc_irq_handler(int irq
, void *dev_id
)
270 struct mxs_mmc_host
*host
= dev_id
;
271 struct mmc_command
*cmd
= host
->cmd
;
272 struct mmc_data
*data
= host
->data
;
275 spin_lock(&host
->lock
);
277 stat
= readl(host
->base
+ HW_SSP_CTRL1
);
278 writel(stat
& MXS_MMC_IRQ_BITS
,
279 host
->base
+ HW_SSP_CTRL1
+ MXS_CLR_ADDR
);
281 if ((stat
& BM_SSP_CTRL1_SDIO_IRQ
) && (stat
& BM_SSP_CTRL1_SDIO_IRQ_EN
))
282 mmc_signal_sdio_irq(host
->mmc
);
284 spin_unlock(&host
->lock
);
286 if (stat
& BM_SSP_CTRL1_RESP_TIMEOUT_IRQ
)
287 cmd
->error
= -ETIMEDOUT
;
288 else if (stat
& BM_SSP_CTRL1_RESP_ERR_IRQ
)
292 if (stat
& (BM_SSP_CTRL1_DATA_TIMEOUT_IRQ
|
293 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ
))
294 data
->error
= -ETIMEDOUT
;
295 else if (stat
& BM_SSP_CTRL1_DATA_CRC_IRQ
)
296 data
->error
= -EILSEQ
;
297 else if (stat
& (BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ
|
298 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ
))
305 static struct dma_async_tx_descriptor
*mxs_mmc_prep_dma(
306 struct mxs_mmc_host
*host
, unsigned int append
)
308 struct dma_async_tx_descriptor
*desc
;
309 struct mmc_data
*data
= host
->data
;
310 struct scatterlist
* sgl
;
315 dma_map_sg(mmc_dev(host
->mmc
), data
->sg
,
316 data
->sg_len
, host
->dma_dir
);
318 sg_len
= data
->sg_len
;
321 sgl
= (struct scatterlist
*) host
->ssp_pio_words
;
322 sg_len
= SSP_PIO_NUM
;
325 desc
= host
->dmach
->device
->device_prep_slave_sg(host
->dmach
,
326 sgl
, sg_len
, host
->dma_dir
, append
);
328 desc
->callback
= mxs_mmc_dma_irq_callback
;
329 desc
->callback_param
= host
;
332 dma_unmap_sg(mmc_dev(host
->mmc
), data
->sg
,
333 data
->sg_len
, host
->dma_dir
);
339 static void mxs_mmc_bc(struct mxs_mmc_host
*host
)
341 struct mmc_command
*cmd
= host
->cmd
;
342 struct dma_async_tx_descriptor
*desc
;
343 u32 ctrl0
, cmd0
, cmd1
;
345 ctrl0
= BM_SSP_CTRL0_ENABLE
| BM_SSP_CTRL0_IGNORE_CRC
;
346 cmd0
= BF_SSP(cmd
->opcode
, CMD0_CMD
) | BM_SSP_CMD0_APPEND_8CYC
;
349 if (host
->sdio_irq_en
) {
350 ctrl0
|= BM_SSP_CTRL0_SDIO_IRQ_CHECK
;
351 cmd0
|= BM_SSP_CMD0_CONT_CLKING_EN
| BM_SSP_CMD0_SLOW_CLKING_EN
;
354 host
->ssp_pio_words
[0] = ctrl0
;
355 host
->ssp_pio_words
[1] = cmd0
;
356 host
->ssp_pio_words
[2] = cmd1
;
357 host
->dma_dir
= DMA_NONE
;
358 desc
= mxs_mmc_prep_dma(host
, 0);
362 dmaengine_submit(desc
);
366 dev_warn(mmc_dev(host
->mmc
),
367 "%s: failed to prep dma\n", __func__
);
370 static void mxs_mmc_ac(struct mxs_mmc_host
*host
)
372 struct mmc_command
*cmd
= host
->cmd
;
373 struct dma_async_tx_descriptor
*desc
;
374 u32 ignore_crc
, get_resp
, long_resp
;
375 u32 ctrl0
, cmd0
, cmd1
;
377 ignore_crc
= (mmc_resp_type(cmd
) & MMC_RSP_CRC
) ?
378 0 : BM_SSP_CTRL0_IGNORE_CRC
;
379 get_resp
= (mmc_resp_type(cmd
) & MMC_RSP_PRESENT
) ?
380 BM_SSP_CTRL0_GET_RESP
: 0;
381 long_resp
= (mmc_resp_type(cmd
) & MMC_RSP_136
) ?
382 BM_SSP_CTRL0_LONG_RESP
: 0;
384 ctrl0
= BM_SSP_CTRL0_ENABLE
| ignore_crc
| get_resp
| long_resp
;
385 cmd0
= BF_SSP(cmd
->opcode
, CMD0_CMD
);
388 if (host
->sdio_irq_en
) {
389 ctrl0
|= BM_SSP_CTRL0_SDIO_IRQ_CHECK
;
390 cmd0
|= BM_SSP_CMD0_CONT_CLKING_EN
| BM_SSP_CMD0_SLOW_CLKING_EN
;
393 host
->ssp_pio_words
[0] = ctrl0
;
394 host
->ssp_pio_words
[1] = cmd0
;
395 host
->ssp_pio_words
[2] = cmd1
;
396 host
->dma_dir
= DMA_NONE
;
397 desc
= mxs_mmc_prep_dma(host
, 0);
401 dmaengine_submit(desc
);
405 dev_warn(mmc_dev(host
->mmc
),
406 "%s: failed to prep dma\n", __func__
);
409 static unsigned short mxs_ns_to_ssp_ticks(unsigned clock_rate
, unsigned ns
)
411 const unsigned int ssp_timeout_mul
= 4096;
413 * Calculate ticks in ms since ns are large numbers
416 const unsigned int clock_per_ms
= clock_rate
/ 1000;
417 const unsigned int ms
= ns
/ 1000;
418 const unsigned int ticks
= ms
* clock_per_ms
;
419 const unsigned int ssp_ticks
= ticks
/ ssp_timeout_mul
;
421 WARN_ON(ssp_ticks
== 0);
425 static void mxs_mmc_adtc(struct mxs_mmc_host
*host
)
427 struct mmc_command
*cmd
= host
->cmd
;
428 struct mmc_data
*data
= cmd
->data
;
429 struct dma_async_tx_descriptor
*desc
;
430 struct scatterlist
*sgl
= data
->sg
, *sg
;
431 unsigned int sg_len
= data
->sg_len
;
434 unsigned short dma_data_dir
, timeout
;
435 unsigned int data_size
= 0, log2_blksz
;
436 unsigned int blocks
= data
->blocks
;
438 u32 ignore_crc
, get_resp
, long_resp
, read
;
439 u32 ctrl0
, cmd0
, cmd1
, val
;
441 ignore_crc
= (mmc_resp_type(cmd
) & MMC_RSP_CRC
) ?
442 0 : BM_SSP_CTRL0_IGNORE_CRC
;
443 get_resp
= (mmc_resp_type(cmd
) & MMC_RSP_PRESENT
) ?
444 BM_SSP_CTRL0_GET_RESP
: 0;
445 long_resp
= (mmc_resp_type(cmd
) & MMC_RSP_136
) ?
446 BM_SSP_CTRL0_LONG_RESP
: 0;
448 if (data
->flags
& MMC_DATA_WRITE
) {
449 dma_data_dir
= DMA_TO_DEVICE
;
452 dma_data_dir
= DMA_FROM_DEVICE
;
453 read
= BM_SSP_CTRL0_READ
;
456 ctrl0
= BF_SSP(host
->bus_width
, CTRL0_BUS_WIDTH
) |
457 ignore_crc
| get_resp
| long_resp
|
458 BM_SSP_CTRL0_DATA_XFER
| read
|
459 BM_SSP_CTRL0_WAIT_FOR_IRQ
|
462 cmd0
= BF_SSP(cmd
->opcode
, CMD0_CMD
);
464 /* get logarithm to base 2 of block size for setting register */
465 log2_blksz
= ilog2(data
->blksz
);
468 * take special care of the case that data size from data->sg
469 * is not equal to blocks x blksz
471 for_each_sg(sgl
, sg
, sg_len
, i
)
472 data_size
+= sg
->length
;
474 if (data_size
!= data
->blocks
* data
->blksz
)
477 /* xfer count, block size and count need to be set differently */
479 ctrl0
|= BF_SSP(data_size
, CTRL0_XFER_COUNT
);
480 cmd0
|= BF_SSP(log2_blksz
, CMD0_BLOCK_SIZE
) |
481 BF_SSP(blocks
- 1, CMD0_BLOCK_COUNT
);
483 writel(data_size
, host
->base
+ HW_SSP_XFER_SIZE
);
484 writel(BF_SSP(log2_blksz
, BLOCK_SIZE_BLOCK_SIZE
) |
485 BF_SSP(blocks
- 1, BLOCK_SIZE_BLOCK_COUNT
),
486 host
->base
+ HW_SSP_BLOCK_SIZE
);
489 if ((cmd
->opcode
== MMC_STOP_TRANSMISSION
) ||
490 (cmd
->opcode
== SD_IO_RW_EXTENDED
))
491 cmd0
|= BM_SSP_CMD0_APPEND_8CYC
;
495 if (host
->sdio_irq_en
) {
496 ctrl0
|= BM_SSP_CTRL0_SDIO_IRQ_CHECK
;
497 cmd0
|= BM_SSP_CMD0_CONT_CLKING_EN
| BM_SSP_CMD0_SLOW_CLKING_EN
;
500 /* set the timeout count */
501 timeout
= mxs_ns_to_ssp_ticks(host
->clk_rate
, data
->timeout_ns
);
502 val
= readl(host
->base
+ HW_SSP_TIMING
);
503 val
&= ~(BM_SSP_TIMING_TIMEOUT
);
504 val
|= BF_SSP(timeout
, TIMING_TIMEOUT
);
505 writel(val
, host
->base
+ HW_SSP_TIMING
);
508 host
->ssp_pio_words
[0] = ctrl0
;
509 host
->ssp_pio_words
[1] = cmd0
;
510 host
->ssp_pio_words
[2] = cmd1
;
511 host
->dma_dir
= DMA_NONE
;
512 desc
= mxs_mmc_prep_dma(host
, 0);
517 WARN_ON(host
->data
!= NULL
);
519 host
->dma_dir
= dma_data_dir
;
520 desc
= mxs_mmc_prep_dma(host
, 1);
524 dmaengine_submit(desc
);
527 dev_warn(mmc_dev(host
->mmc
),
528 "%s: failed to prep dma\n", __func__
);
531 static void mxs_mmc_start_cmd(struct mxs_mmc_host
*host
,
532 struct mmc_command
*cmd
)
536 switch (mmc_cmd_type(cmd
)) {
550 dev_warn(mmc_dev(host
->mmc
),
551 "%s: unknown MMC command\n", __func__
);
556 static void mxs_mmc_request(struct mmc_host
*mmc
, struct mmc_request
*mrq
)
558 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
560 WARN_ON(host
->mrq
!= NULL
);
562 mxs_mmc_start_cmd(host
, mrq
->cmd
);
565 static void mxs_mmc_set_clk_rate(struct mxs_mmc_host
*host
, unsigned int rate
)
567 unsigned int ssp_rate
, bit_rate
;
571 ssp_rate
= clk_get_rate(host
->clk
);
573 for (div1
= 2; div1
< 254; div1
+= 2) {
574 div2
= ssp_rate
/ rate
/ div1
;
580 dev_err(mmc_dev(host
->mmc
),
581 "%s: cannot set clock to %d\n", __func__
, rate
);
586 bit_rate
= ssp_rate
/ div1
;
588 bit_rate
= ssp_rate
/ div1
/ div2
;
590 val
= readl(host
->base
+ HW_SSP_TIMING
);
591 val
&= ~(BM_SSP_TIMING_CLOCK_DIVIDE
| BM_SSP_TIMING_CLOCK_RATE
);
592 val
|= BF_SSP(div1
, TIMING_CLOCK_DIVIDE
);
593 val
|= BF_SSP(div2
- 1, TIMING_CLOCK_RATE
);
594 writel(val
, host
->base
+ HW_SSP_TIMING
);
596 host
->clk_rate
= bit_rate
;
598 dev_dbg(mmc_dev(host
->mmc
),
599 "%s: div1 %d, div2 %d, ssp %d, bit %d, rate %d\n",
600 __func__
, div1
, div2
, ssp_rate
, bit_rate
, rate
);
603 static void mxs_mmc_set_ios(struct mmc_host
*mmc
, struct mmc_ios
*ios
)
605 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
607 if (ios
->bus_width
== MMC_BUS_WIDTH_8
)
609 else if (ios
->bus_width
== MMC_BUS_WIDTH_4
)
615 mxs_mmc_set_clk_rate(host
, ios
->clock
);
618 static void mxs_mmc_enable_sdio_irq(struct mmc_host
*mmc
, int enable
)
620 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
623 spin_lock_irqsave(&host
->lock
, flags
);
625 host
->sdio_irq_en
= enable
;
628 writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK
,
629 host
->base
+ HW_SSP_CTRL0
+ MXS_SET_ADDR
);
630 writel(BM_SSP_CTRL1_SDIO_IRQ_EN
,
631 host
->base
+ HW_SSP_CTRL1
+ MXS_SET_ADDR
);
633 if (readl(host
->base
+ HW_SSP_STATUS
) & BM_SSP_STATUS_SDIO_IRQ
)
634 mmc_signal_sdio_irq(host
->mmc
);
637 writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK
,
638 host
->base
+ HW_SSP_CTRL0
+ MXS_CLR_ADDR
);
639 writel(BM_SSP_CTRL1_SDIO_IRQ_EN
,
640 host
->base
+ HW_SSP_CTRL1
+ MXS_CLR_ADDR
);
643 spin_unlock_irqrestore(&host
->lock
, flags
);
646 static const struct mmc_host_ops mxs_mmc_ops
= {
647 .request
= mxs_mmc_request
,
648 .get_ro
= mxs_mmc_get_ro
,
649 .get_cd
= mxs_mmc_get_cd
,
650 .set_ios
= mxs_mmc_set_ios
,
651 .enable_sdio_irq
= mxs_mmc_enable_sdio_irq
,
654 static bool mxs_mmc_dma_filter(struct dma_chan
*chan
, void *param
)
656 struct mxs_mmc_host
*host
= param
;
658 if (!mxs_dma_is_apbh(chan
))
661 if (chan
->chan_id
!= host
->dma_res
->start
)
664 chan
->private = &host
->dma_data
;
669 static int mxs_mmc_probe(struct platform_device
*pdev
)
671 struct mxs_mmc_host
*host
;
672 struct mmc_host
*mmc
;
673 struct resource
*iores
, *dmares
, *r
;
674 struct mxs_mmc_platform_data
*pdata
;
675 int ret
= 0, irq_err
, irq_dma
;
678 iores
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
679 dmares
= platform_get_resource(pdev
, IORESOURCE_DMA
, 0);
680 irq_err
= platform_get_irq(pdev
, 0);
681 irq_dma
= platform_get_irq(pdev
, 1);
682 if (!iores
|| !dmares
|| irq_err
< 0 || irq_dma
< 0)
685 r
= request_mem_region(iores
->start
, resource_size(iores
), pdev
->name
);
689 mmc
= mmc_alloc_host(sizeof(struct mxs_mmc_host
), &pdev
->dev
);
692 goto out_release_mem
;
695 host
= mmc_priv(mmc
);
696 host
->base
= ioremap(r
->start
, resource_size(r
));
702 /* only major verion does matter */
703 host
->version
= readl(host
->base
+ HW_SSP_VERSION
) >>
704 BP_SSP_VERSION_MAJOR
;
708 host
->dma_res
= dmares
;
710 host
->sdio_irq_en
= 0;
712 host
->clk
= clk_get(&pdev
->dev
, NULL
);
713 if (IS_ERR(host
->clk
)) {
714 ret
= PTR_ERR(host
->clk
);
717 clk_enable(host
->clk
);
722 dma_cap_set(DMA_SLAVE
, mask
);
723 host
->dma_data
.chan_irq
= irq_dma
;
724 host
->dmach
= dma_request_channel(mask
, mxs_mmc_dma_filter
, host
);
726 dev_err(mmc_dev(host
->mmc
),
727 "%s: failed to request dma\n", __func__
);
731 /* set mmc core parameters */
732 mmc
->ops
= &mxs_mmc_ops
;
733 mmc
->caps
= MMC_CAP_SD_HIGHSPEED
| MMC_CAP_MMC_HIGHSPEED
|
734 MMC_CAP_SDIO_IRQ
| MMC_CAP_NEEDS_POLL
;
736 pdata
= mmc_dev(host
->mmc
)->platform_data
;
738 if (pdata
->flags
& SLOTF_8_BIT_CAPABLE
)
739 mmc
->caps
|= MMC_CAP_4_BIT_DATA
| MMC_CAP_8_BIT_DATA
;
740 if (pdata
->flags
& SLOTF_4_BIT_CAPABLE
)
741 mmc
->caps
|= MMC_CAP_4_BIT_DATA
;
745 mmc
->f_max
= 288000000;
746 mmc
->ocr_avail
= MMC_VDD_32_33
| MMC_VDD_33_34
;
749 mmc
->max_blk_size
= 1 << 0xf;
750 mmc
->max_blk_count
= (ssp_is_old()) ? 0xff : 0xffffff;
751 mmc
->max_req_size
= (ssp_is_old()) ? 0xffff : 0xffffffff;
752 mmc
->max_seg_size
= dma_get_max_seg_size(host
->dmach
->device
->dev
);
754 platform_set_drvdata(pdev
, mmc
);
756 ret
= request_irq(host
->irq
, mxs_mmc_irq_handler
, 0, DRIVER_NAME
, host
);
760 spin_lock_init(&host
->lock
);
762 ret
= mmc_add_host(mmc
);
766 dev_info(mmc_dev(host
->mmc
), "initialized\n");
771 free_irq(host
->irq
, host
);
774 dma_release_channel(host
->dmach
);
776 clk_disable(host
->clk
);
783 release_mem_region(iores
->start
, resource_size(iores
));
787 static int mxs_mmc_remove(struct platform_device
*pdev
)
789 struct mmc_host
*mmc
= platform_get_drvdata(pdev
);
790 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
791 struct resource
*res
= host
->res
;
793 mmc_remove_host(mmc
);
795 free_irq(host
->irq
, host
);
797 platform_set_drvdata(pdev
, NULL
);
800 dma_release_channel(host
->dmach
);
802 clk_disable(host
->clk
);
809 release_mem_region(res
->start
, resource_size(res
));
815 static int mxs_mmc_suspend(struct device
*dev
)
817 struct mmc_host
*mmc
= dev_get_drvdata(dev
);
818 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
821 ret
= mmc_suspend_host(mmc
);
823 clk_disable(host
->clk
);
828 static int mxs_mmc_resume(struct device
*dev
)
830 struct mmc_host
*mmc
= dev_get_drvdata(dev
);
831 struct mxs_mmc_host
*host
= mmc_priv(mmc
);
834 clk_enable(host
->clk
);
836 ret
= mmc_resume_host(mmc
);
841 static const struct dev_pm_ops mxs_mmc_pm_ops
= {
842 .suspend
= mxs_mmc_suspend
,
843 .resume
= mxs_mmc_resume
,
847 static struct platform_driver mxs_mmc_driver
= {
848 .probe
= mxs_mmc_probe
,
849 .remove
= mxs_mmc_remove
,
852 .owner
= THIS_MODULE
,
854 .pm
= &mxs_mmc_pm_ops
,
859 static int __init
mxs_mmc_init(void)
861 return platform_driver_register(&mxs_mmc_driver
);
864 static void __exit
mxs_mmc_exit(void)
866 platform_driver_unregister(&mxs_mmc_driver
);
869 module_init(mxs_mmc_init
);
870 module_exit(mxs_mmc_exit
);
872 MODULE_DESCRIPTION("FREESCALE MXS MMC peripheral");
873 MODULE_AUTHOR("Freescale Semiconductor");
874 MODULE_LICENSE("GPL");