xref: /openbmc/linux/drivers/mmc/host/mxs-mmc.c (revision 921de864)
1e4243f13SShawn Guo /*
2e4243f13SShawn Guo  * Portions copyright (C) 2003 Russell King, PXA MMCI Driver
3e4243f13SShawn Guo  * Portions copyright (C) 2004-2005 Pierre Ossman, W83L51xD SD/MMC driver
4e4243f13SShawn Guo  *
5e4243f13SShawn Guo  * Copyright 2008 Embedded Alley Solutions, Inc.
6e4243f13SShawn Guo  * Copyright 2009-2011 Freescale Semiconductor, Inc.
7e4243f13SShawn Guo  *
8e4243f13SShawn Guo  * This program is free software; you can redistribute it and/or modify
9e4243f13SShawn Guo  * it under the terms of the GNU General Public License as published by
10e4243f13SShawn Guo  * the Free Software Foundation; either version 2 of the License, or
11e4243f13SShawn Guo  * (at your option) any later version.
12e4243f13SShawn Guo  *
13e4243f13SShawn Guo  * This program is distributed in the hope that it will be useful,
14e4243f13SShawn Guo  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15e4243f13SShawn Guo  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16e4243f13SShawn Guo  * GNU General Public License for more details.
17e4243f13SShawn Guo  *
18e4243f13SShawn Guo  * You should have received a copy of the GNU General Public License along
19e4243f13SShawn Guo  * with this program; if not, write to the Free Software Foundation, Inc.,
20e4243f13SShawn Guo  * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21e4243f13SShawn Guo  */
22e4243f13SShawn Guo 
23e4243f13SShawn Guo #include <linux/kernel.h>
24e4243f13SShawn Guo #include <linux/init.h>
25e4243f13SShawn Guo #include <linux/ioport.h>
26e4243f13SShawn Guo #include <linux/platform_device.h>
27e4243f13SShawn Guo #include <linux/delay.h>
28e4243f13SShawn Guo #include <linux/interrupt.h>
29e4243f13SShawn Guo #include <linux/dma-mapping.h>
30e4243f13SShawn Guo #include <linux/dmaengine.h>
31e4243f13SShawn Guo #include <linux/highmem.h>
32e4243f13SShawn Guo #include <linux/clk.h>
33e4243f13SShawn Guo #include <linux/err.h>
34e4243f13SShawn Guo #include <linux/completion.h>
35e4243f13SShawn Guo #include <linux/mmc/host.h>
36e4243f13SShawn Guo #include <linux/mmc/mmc.h>
37e4243f13SShawn Guo #include <linux/mmc/sdio.h>
38e4243f13SShawn Guo #include <linux/gpio.h>
39e4243f13SShawn Guo #include <linux/regulator/consumer.h>
4088b47679SPaul Gortmaker #include <linux/module.h>
4139468604SHuang Shijie #include <linux/fsl/mxs-dma.h>
42e4243f13SShawn Guo 
43e4243f13SShawn Guo #include <mach/mxs.h>
44e4243f13SShawn Guo #include <mach/common.h>
45e4243f13SShawn Guo #include <mach/mmc.h>
46e4243f13SShawn Guo 
47e4243f13SShawn Guo #define DRIVER_NAME	"mxs-mmc"
48e4243f13SShawn Guo 
49e4243f13SShawn Guo /* card detect polling timeout */
50e4243f13SShawn Guo #define MXS_MMC_DETECT_TIMEOUT			(HZ/2)
51e4243f13SShawn Guo 
52e4243f13SShawn Guo #define SSP_VERSION_LATEST	4
53e4243f13SShawn Guo #define ssp_is_old()		(host->version < SSP_VERSION_LATEST)
54e4243f13SShawn Guo 
55e4243f13SShawn Guo /* SSP registers */
56e4243f13SShawn Guo #define HW_SSP_CTRL0				0x000
57e4243f13SShawn Guo #define  BM_SSP_CTRL0_RUN			(1 << 29)
58e4243f13SShawn Guo #define  BM_SSP_CTRL0_SDIO_IRQ_CHECK		(1 << 28)
59e4243f13SShawn Guo #define  BM_SSP_CTRL0_IGNORE_CRC		(1 << 26)
60e4243f13SShawn Guo #define  BM_SSP_CTRL0_READ			(1 << 25)
61e4243f13SShawn Guo #define  BM_SSP_CTRL0_DATA_XFER			(1 << 24)
62e4243f13SShawn Guo #define  BP_SSP_CTRL0_BUS_WIDTH			(22)
63e4243f13SShawn Guo #define  BM_SSP_CTRL0_BUS_WIDTH			(0x3 << 22)
64e4243f13SShawn Guo #define  BM_SSP_CTRL0_WAIT_FOR_IRQ		(1 << 21)
65e4243f13SShawn Guo #define  BM_SSP_CTRL0_LONG_RESP			(1 << 19)
66e4243f13SShawn Guo #define  BM_SSP_CTRL0_GET_RESP			(1 << 17)
67e4243f13SShawn Guo #define  BM_SSP_CTRL0_ENABLE			(1 << 16)
68e4243f13SShawn Guo #define  BP_SSP_CTRL0_XFER_COUNT		(0)
69e4243f13SShawn Guo #define  BM_SSP_CTRL0_XFER_COUNT		(0xffff)
70e4243f13SShawn Guo #define HW_SSP_CMD0				0x010
71e4243f13SShawn Guo #define  BM_SSP_CMD0_DBL_DATA_RATE_EN		(1 << 25)
72e4243f13SShawn Guo #define  BM_SSP_CMD0_SLOW_CLKING_EN		(1 << 22)
73e4243f13SShawn Guo #define  BM_SSP_CMD0_CONT_CLKING_EN		(1 << 21)
74e4243f13SShawn Guo #define  BM_SSP_CMD0_APPEND_8CYC		(1 << 20)
75e4243f13SShawn Guo #define  BP_SSP_CMD0_BLOCK_SIZE			(16)
76e4243f13SShawn Guo #define  BM_SSP_CMD0_BLOCK_SIZE			(0xf << 16)
77e4243f13SShawn Guo #define  BP_SSP_CMD0_BLOCK_COUNT		(8)
78e4243f13SShawn Guo #define  BM_SSP_CMD0_BLOCK_COUNT		(0xff << 8)
79e4243f13SShawn Guo #define  BP_SSP_CMD0_CMD			(0)
80e4243f13SShawn Guo #define  BM_SSP_CMD0_CMD			(0xff)
81e4243f13SShawn Guo #define HW_SSP_CMD1				0x020
82e4243f13SShawn Guo #define HW_SSP_XFER_SIZE			0x030
83e4243f13SShawn Guo #define HW_SSP_BLOCK_SIZE			0x040
84e4243f13SShawn Guo #define  BP_SSP_BLOCK_SIZE_BLOCK_COUNT		(4)
85e4243f13SShawn Guo #define  BM_SSP_BLOCK_SIZE_BLOCK_COUNT		(0xffffff << 4)
86e4243f13SShawn Guo #define  BP_SSP_BLOCK_SIZE_BLOCK_SIZE		(0)
87e4243f13SShawn Guo #define  BM_SSP_BLOCK_SIZE_BLOCK_SIZE		(0xf)
88e4243f13SShawn Guo #define HW_SSP_TIMING				(ssp_is_old() ? 0x050 : 0x070)
89e4243f13SShawn Guo #define  BP_SSP_TIMING_TIMEOUT			(16)
90e4243f13SShawn Guo #define  BM_SSP_TIMING_TIMEOUT			(0xffff << 16)
91e4243f13SShawn Guo #define  BP_SSP_TIMING_CLOCK_DIVIDE		(8)
92e4243f13SShawn Guo #define  BM_SSP_TIMING_CLOCK_DIVIDE		(0xff << 8)
93e4243f13SShawn Guo #define  BP_SSP_TIMING_CLOCK_RATE		(0)
94e4243f13SShawn Guo #define  BM_SSP_TIMING_CLOCK_RATE		(0xff)
95e4243f13SShawn Guo #define HW_SSP_CTRL1				(ssp_is_old() ? 0x060 : 0x080)
96e4243f13SShawn Guo #define  BM_SSP_CTRL1_SDIO_IRQ			(1 << 31)
97e4243f13SShawn Guo #define  BM_SSP_CTRL1_SDIO_IRQ_EN		(1 << 30)
98e4243f13SShawn Guo #define  BM_SSP_CTRL1_RESP_ERR_IRQ		(1 << 29)
99e4243f13SShawn Guo #define  BM_SSP_CTRL1_RESP_ERR_IRQ_EN		(1 << 28)
100e4243f13SShawn Guo #define  BM_SSP_CTRL1_RESP_TIMEOUT_IRQ		(1 << 27)
101e4243f13SShawn Guo #define  BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN	(1 << 26)
102e4243f13SShawn Guo #define  BM_SSP_CTRL1_DATA_TIMEOUT_IRQ		(1 << 25)
103e4243f13SShawn Guo #define  BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN	(1 << 24)
104e4243f13SShawn Guo #define  BM_SSP_CTRL1_DATA_CRC_IRQ		(1 << 23)
105e4243f13SShawn Guo #define  BM_SSP_CTRL1_DATA_CRC_IRQ_EN		(1 << 22)
106e4243f13SShawn Guo #define  BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ		(1 << 21)
107e4243f13SShawn Guo #define  BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ_EN	(1 << 20)
108e4243f13SShawn Guo #define  BM_SSP_CTRL1_RECV_TIMEOUT_IRQ		(1 << 17)
109e4243f13SShawn Guo #define  BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN	(1 << 16)
110e4243f13SShawn Guo #define  BM_SSP_CTRL1_FIFO_OVERRUN_IRQ		(1 << 15)
111e4243f13SShawn Guo #define  BM_SSP_CTRL1_FIFO_OVERRUN_IRQ_EN	(1 << 14)
112e4243f13SShawn Guo #define  BM_SSP_CTRL1_DMA_ENABLE		(1 << 13)
113e4243f13SShawn Guo #define  BM_SSP_CTRL1_POLARITY			(1 << 9)
114e4243f13SShawn Guo #define  BP_SSP_CTRL1_WORD_LENGTH		(4)
115e4243f13SShawn Guo #define  BM_SSP_CTRL1_WORD_LENGTH		(0xf << 4)
116e4243f13SShawn Guo #define  BP_SSP_CTRL1_SSP_MODE			(0)
117e4243f13SShawn Guo #define  BM_SSP_CTRL1_SSP_MODE			(0xf)
118e4243f13SShawn Guo #define HW_SSP_SDRESP0				(ssp_is_old() ? 0x080 : 0x0a0)
119e4243f13SShawn Guo #define HW_SSP_SDRESP1				(ssp_is_old() ? 0x090 : 0x0b0)
120e4243f13SShawn Guo #define HW_SSP_SDRESP2				(ssp_is_old() ? 0x0a0 : 0x0c0)
121e4243f13SShawn Guo #define HW_SSP_SDRESP3				(ssp_is_old() ? 0x0b0 : 0x0d0)
122e4243f13SShawn Guo #define HW_SSP_STATUS				(ssp_is_old() ? 0x0c0 : 0x100)
123e4243f13SShawn Guo #define  BM_SSP_STATUS_CARD_DETECT		(1 << 28)
124e4243f13SShawn Guo #define  BM_SSP_STATUS_SDIO_IRQ			(1 << 17)
125e4243f13SShawn Guo #define HW_SSP_VERSION				(cpu_is_mx23() ? 0x110 : 0x130)
126e4243f13SShawn Guo #define  BP_SSP_VERSION_MAJOR			(24)
127e4243f13SShawn Guo 
128e4243f13SShawn Guo #define BF_SSP(value, field)	(((value) << BP_SSP_##field) & BM_SSP_##field)
129e4243f13SShawn Guo 
130e4243f13SShawn Guo #define MXS_MMC_IRQ_BITS	(BM_SSP_CTRL1_SDIO_IRQ		| \
131e4243f13SShawn Guo 				 BM_SSP_CTRL1_RESP_ERR_IRQ	| \
132e4243f13SShawn Guo 				 BM_SSP_CTRL1_RESP_TIMEOUT_IRQ	| \
133e4243f13SShawn Guo 				 BM_SSP_CTRL1_DATA_TIMEOUT_IRQ	| \
134e4243f13SShawn Guo 				 BM_SSP_CTRL1_DATA_CRC_IRQ	| \
135e4243f13SShawn Guo 				 BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ	| \
136e4243f13SShawn Guo 				 BM_SSP_CTRL1_RECV_TIMEOUT_IRQ  | \
137e4243f13SShawn Guo 				 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ)
138e4243f13SShawn Guo 
139e4243f13SShawn Guo #define SSP_PIO_NUM	3
140e4243f13SShawn Guo 
141e4243f13SShawn Guo struct mxs_mmc_host {
142e4243f13SShawn Guo 	struct mmc_host			*mmc;
143e4243f13SShawn Guo 	struct mmc_request		*mrq;
144e4243f13SShawn Guo 	struct mmc_command		*cmd;
145e4243f13SShawn Guo 	struct mmc_data			*data;
146e4243f13SShawn Guo 
147e4243f13SShawn Guo 	void __iomem			*base;
148e4243f13SShawn Guo 	int				irq;
149e4243f13SShawn Guo 	struct resource			*res;
150e4243f13SShawn Guo 	struct resource			*dma_res;
151e4243f13SShawn Guo 	struct clk			*clk;
152e4243f13SShawn Guo 	unsigned int			clk_rate;
153e4243f13SShawn Guo 
154e4243f13SShawn Guo 	struct dma_chan         	*dmach;
155e4243f13SShawn Guo 	struct mxs_dma_data		dma_data;
156e4243f13SShawn Guo 	unsigned int			dma_dir;
15705f5799cSVinod Koul 	enum dma_transfer_direction	slave_dirn;
158e4243f13SShawn Guo 	u32				ssp_pio_words[SSP_PIO_NUM];
159e4243f13SShawn Guo 
160e4243f13SShawn Guo 	unsigned int			version;
161e4243f13SShawn Guo 	unsigned char			bus_width;
162e4243f13SShawn Guo 	spinlock_t			lock;
163e4243f13SShawn Guo 	int				sdio_irq_en;
164e4243f13SShawn Guo };
165e4243f13SShawn Guo 
166e4243f13SShawn Guo static int mxs_mmc_get_ro(struct mmc_host *mmc)
167e4243f13SShawn Guo {
168e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
169e4243f13SShawn Guo 	struct mxs_mmc_platform_data *pdata =
170e4243f13SShawn Guo 		mmc_dev(host->mmc)->platform_data;
171e4243f13SShawn Guo 
172e4243f13SShawn Guo 	if (!pdata)
173e4243f13SShawn Guo 		return -EFAULT;
174e4243f13SShawn Guo 
175e4243f13SShawn Guo 	if (!gpio_is_valid(pdata->wp_gpio))
176e4243f13SShawn Guo 		return -EINVAL;
177e4243f13SShawn Guo 
178e4243f13SShawn Guo 	return gpio_get_value(pdata->wp_gpio);
179e4243f13SShawn Guo }
180e4243f13SShawn Guo 
181e4243f13SShawn Guo static int mxs_mmc_get_cd(struct mmc_host *mmc)
182e4243f13SShawn Guo {
183e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
184e4243f13SShawn Guo 
185e4243f13SShawn Guo 	return !(readl(host->base + HW_SSP_STATUS) &
186e4243f13SShawn Guo 		 BM_SSP_STATUS_CARD_DETECT);
187e4243f13SShawn Guo }
188e4243f13SShawn Guo 
189e4243f13SShawn Guo static void mxs_mmc_reset(struct mxs_mmc_host *host)
190e4243f13SShawn Guo {
191e4243f13SShawn Guo 	u32 ctrl0, ctrl1;
192e4243f13SShawn Guo 
193e4243f13SShawn Guo 	mxs_reset_block(host->base);
194e4243f13SShawn Guo 
195e4243f13SShawn Guo 	ctrl0 = BM_SSP_CTRL0_IGNORE_CRC;
196e4243f13SShawn Guo 	ctrl1 = BF_SSP(0x3, CTRL1_SSP_MODE) |
197e4243f13SShawn Guo 		BF_SSP(0x7, CTRL1_WORD_LENGTH) |
198e4243f13SShawn Guo 		BM_SSP_CTRL1_DMA_ENABLE |
199e4243f13SShawn Guo 		BM_SSP_CTRL1_POLARITY |
200e4243f13SShawn Guo 		BM_SSP_CTRL1_RECV_TIMEOUT_IRQ_EN |
201e4243f13SShawn Guo 		BM_SSP_CTRL1_DATA_CRC_IRQ_EN |
202e4243f13SShawn Guo 		BM_SSP_CTRL1_DATA_TIMEOUT_IRQ_EN |
203e4243f13SShawn Guo 		BM_SSP_CTRL1_RESP_TIMEOUT_IRQ_EN |
204e4243f13SShawn Guo 		BM_SSP_CTRL1_RESP_ERR_IRQ_EN;
205e4243f13SShawn Guo 
206e4243f13SShawn Guo 	writel(BF_SSP(0xffff, TIMING_TIMEOUT) |
207e4243f13SShawn Guo 	       BF_SSP(2, TIMING_CLOCK_DIVIDE) |
208e4243f13SShawn Guo 	       BF_SSP(0, TIMING_CLOCK_RATE),
209e4243f13SShawn Guo 	       host->base + HW_SSP_TIMING);
210e4243f13SShawn Guo 
211e4243f13SShawn Guo 	if (host->sdio_irq_en) {
212e4243f13SShawn Guo 		ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
213e4243f13SShawn Guo 		ctrl1 |= BM_SSP_CTRL1_SDIO_IRQ_EN;
214e4243f13SShawn Guo 	}
215e4243f13SShawn Guo 
216e4243f13SShawn Guo 	writel(ctrl0, host->base + HW_SSP_CTRL0);
217e4243f13SShawn Guo 	writel(ctrl1, host->base + HW_SSP_CTRL1);
218e4243f13SShawn Guo }
219e4243f13SShawn Guo 
220e4243f13SShawn Guo static void mxs_mmc_start_cmd(struct mxs_mmc_host *host,
221e4243f13SShawn Guo 			      struct mmc_command *cmd);
222e4243f13SShawn Guo 
223e4243f13SShawn Guo static void mxs_mmc_request_done(struct mxs_mmc_host *host)
224e4243f13SShawn Guo {
225e4243f13SShawn Guo 	struct mmc_command *cmd = host->cmd;
226e4243f13SShawn Guo 	struct mmc_data *data = host->data;
227e4243f13SShawn Guo 	struct mmc_request *mrq = host->mrq;
228e4243f13SShawn Guo 
229e4243f13SShawn Guo 	if (mmc_resp_type(cmd) & MMC_RSP_PRESENT) {
230e4243f13SShawn Guo 		if (mmc_resp_type(cmd) & MMC_RSP_136) {
231e4243f13SShawn Guo 			cmd->resp[3] = readl(host->base + HW_SSP_SDRESP0);
232e4243f13SShawn Guo 			cmd->resp[2] = readl(host->base + HW_SSP_SDRESP1);
233e4243f13SShawn Guo 			cmd->resp[1] = readl(host->base + HW_SSP_SDRESP2);
234e4243f13SShawn Guo 			cmd->resp[0] = readl(host->base + HW_SSP_SDRESP3);
235e4243f13SShawn Guo 		} else {
236e4243f13SShawn Guo 			cmd->resp[0] = readl(host->base + HW_SSP_SDRESP0);
237e4243f13SShawn Guo 		}
238e4243f13SShawn Guo 	}
239e4243f13SShawn Guo 
240e4243f13SShawn Guo 	if (data) {
241e4243f13SShawn Guo 		dma_unmap_sg(mmc_dev(host->mmc), data->sg,
242e4243f13SShawn Guo 			     data->sg_len, host->dma_dir);
243e4243f13SShawn Guo 		/*
244e4243f13SShawn Guo 		 * If there was an error on any block, we mark all
245e4243f13SShawn Guo 		 * data blocks as being in error.
246e4243f13SShawn Guo 		 */
247e4243f13SShawn Guo 		if (!data->error)
248e4243f13SShawn Guo 			data->bytes_xfered = data->blocks * data->blksz;
249e4243f13SShawn Guo 		else
250e4243f13SShawn Guo 			data->bytes_xfered = 0;
251e4243f13SShawn Guo 
252e4243f13SShawn Guo 		host->data = NULL;
253e4243f13SShawn Guo 		if (mrq->stop) {
254e4243f13SShawn Guo 			mxs_mmc_start_cmd(host, mrq->stop);
255e4243f13SShawn Guo 			return;
256e4243f13SShawn Guo 		}
257e4243f13SShawn Guo 	}
258e4243f13SShawn Guo 
259e4243f13SShawn Guo 	host->mrq = NULL;
260e4243f13SShawn Guo 	mmc_request_done(host->mmc, mrq);
261e4243f13SShawn Guo }
262e4243f13SShawn Guo 
263e4243f13SShawn Guo static void mxs_mmc_dma_irq_callback(void *param)
264e4243f13SShawn Guo {
265e4243f13SShawn Guo 	struct mxs_mmc_host *host = param;
266e4243f13SShawn Guo 
267e4243f13SShawn Guo 	mxs_mmc_request_done(host);
268e4243f13SShawn Guo }
269e4243f13SShawn Guo 
270e4243f13SShawn Guo static irqreturn_t mxs_mmc_irq_handler(int irq, void *dev_id)
271e4243f13SShawn Guo {
272e4243f13SShawn Guo 	struct mxs_mmc_host *host = dev_id;
273e4243f13SShawn Guo 	struct mmc_command *cmd = host->cmd;
274e4243f13SShawn Guo 	struct mmc_data *data = host->data;
275e4243f13SShawn Guo 	u32 stat;
276e4243f13SShawn Guo 
277e4243f13SShawn Guo 	spin_lock(&host->lock);
278e4243f13SShawn Guo 
279e4243f13SShawn Guo 	stat = readl(host->base + HW_SSP_CTRL1);
280e4243f13SShawn Guo 	writel(stat & MXS_MMC_IRQ_BITS,
281e4243f13SShawn Guo 	       host->base + HW_SSP_CTRL1 + MXS_CLR_ADDR);
282e4243f13SShawn Guo 
283e4243f13SShawn Guo 	if ((stat & BM_SSP_CTRL1_SDIO_IRQ) && (stat & BM_SSP_CTRL1_SDIO_IRQ_EN))
284e4243f13SShawn Guo 		mmc_signal_sdio_irq(host->mmc);
285e4243f13SShawn Guo 
286e4243f13SShawn Guo 	spin_unlock(&host->lock);
287e4243f13SShawn Guo 
288e4243f13SShawn Guo 	if (stat & BM_SSP_CTRL1_RESP_TIMEOUT_IRQ)
289e4243f13SShawn Guo 		cmd->error = -ETIMEDOUT;
290e4243f13SShawn Guo 	else if (stat & BM_SSP_CTRL1_RESP_ERR_IRQ)
291e4243f13SShawn Guo 		cmd->error = -EIO;
292e4243f13SShawn Guo 
293e4243f13SShawn Guo 	if (data) {
294e4243f13SShawn Guo 		if (stat & (BM_SSP_CTRL1_DATA_TIMEOUT_IRQ |
295e4243f13SShawn Guo 			    BM_SSP_CTRL1_RECV_TIMEOUT_IRQ))
296e4243f13SShawn Guo 			data->error = -ETIMEDOUT;
297e4243f13SShawn Guo 		else if (stat & BM_SSP_CTRL1_DATA_CRC_IRQ)
298e4243f13SShawn Guo 			data->error = -EILSEQ;
299e4243f13SShawn Guo 		else if (stat & (BM_SSP_CTRL1_FIFO_UNDERRUN_IRQ |
300e4243f13SShawn Guo 				 BM_SSP_CTRL1_FIFO_OVERRUN_IRQ))
301e4243f13SShawn Guo 			data->error = -EIO;
302e4243f13SShawn Guo 	}
303e4243f13SShawn Guo 
304e4243f13SShawn Guo 	return IRQ_HANDLED;
305e4243f13SShawn Guo }
306e4243f13SShawn Guo 
307e4243f13SShawn Guo static struct dma_async_tx_descriptor *mxs_mmc_prep_dma(
308921de864SHuang Shijie 	struct mxs_mmc_host *host, unsigned long flags)
309e4243f13SShawn Guo {
310e4243f13SShawn Guo 	struct dma_async_tx_descriptor *desc;
311e4243f13SShawn Guo 	struct mmc_data *data = host->data;
312e4243f13SShawn Guo 	struct scatterlist * sgl;
313e4243f13SShawn Guo 	unsigned int sg_len;
314e4243f13SShawn Guo 
315e4243f13SShawn Guo 	if (data) {
316e4243f13SShawn Guo 		/* data */
317e4243f13SShawn Guo 		dma_map_sg(mmc_dev(host->mmc), data->sg,
318e4243f13SShawn Guo 			   data->sg_len, host->dma_dir);
319e4243f13SShawn Guo 		sgl = data->sg;
320e4243f13SShawn Guo 		sg_len = data->sg_len;
321e4243f13SShawn Guo 	} else {
322e4243f13SShawn Guo 		/* pio */
323e4243f13SShawn Guo 		sgl = (struct scatterlist *) host->ssp_pio_words;
324e4243f13SShawn Guo 		sg_len = SSP_PIO_NUM;
325e4243f13SShawn Guo 	}
326e4243f13SShawn Guo 
327e4243f13SShawn Guo 	desc = host->dmach->device->device_prep_slave_sg(host->dmach,
328921de864SHuang Shijie 				sgl, sg_len, host->slave_dirn, flags);
329e4243f13SShawn Guo 	if (desc) {
330e4243f13SShawn Guo 		desc->callback = mxs_mmc_dma_irq_callback;
331e4243f13SShawn Guo 		desc->callback_param = host;
332e4243f13SShawn Guo 	} else {
333e4243f13SShawn Guo 		if (data)
334e4243f13SShawn Guo 			dma_unmap_sg(mmc_dev(host->mmc), data->sg,
335e4243f13SShawn Guo 				     data->sg_len, host->dma_dir);
336e4243f13SShawn Guo 	}
337e4243f13SShawn Guo 
338e4243f13SShawn Guo 	return desc;
339e4243f13SShawn Guo }
340e4243f13SShawn Guo 
341e4243f13SShawn Guo static void mxs_mmc_bc(struct mxs_mmc_host *host)
342e4243f13SShawn Guo {
343e4243f13SShawn Guo 	struct mmc_command *cmd = host->cmd;
344e4243f13SShawn Guo 	struct dma_async_tx_descriptor *desc;
345e4243f13SShawn Guo 	u32 ctrl0, cmd0, cmd1;
346e4243f13SShawn Guo 
347e4243f13SShawn Guo 	ctrl0 = BM_SSP_CTRL0_ENABLE | BM_SSP_CTRL0_IGNORE_CRC;
348e4243f13SShawn Guo 	cmd0 = BF_SSP(cmd->opcode, CMD0_CMD) | BM_SSP_CMD0_APPEND_8CYC;
349e4243f13SShawn Guo 	cmd1 = cmd->arg;
350e4243f13SShawn Guo 
351e4243f13SShawn Guo 	if (host->sdio_irq_en) {
352e4243f13SShawn Guo 		ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
353e4243f13SShawn Guo 		cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
354e4243f13SShawn Guo 	}
355e4243f13SShawn Guo 
356e4243f13SShawn Guo 	host->ssp_pio_words[0] = ctrl0;
357e4243f13SShawn Guo 	host->ssp_pio_words[1] = cmd0;
358e4243f13SShawn Guo 	host->ssp_pio_words[2] = cmd1;
359e4243f13SShawn Guo 	host->dma_dir = DMA_NONE;
360a4e3e86dSShawn Guo 	host->slave_dirn = DMA_TRANS_NONE;
361921de864SHuang Shijie 	desc = mxs_mmc_prep_dma(host, DMA_CTRL_ACK);
362e4243f13SShawn Guo 	if (!desc)
363e4243f13SShawn Guo 		goto out;
364e4243f13SShawn Guo 
365e4243f13SShawn Guo 	dmaengine_submit(desc);
366e4243f13SShawn Guo 	return;
367e4243f13SShawn Guo 
368e4243f13SShawn Guo out:
369e4243f13SShawn Guo 	dev_warn(mmc_dev(host->mmc),
370e4243f13SShawn Guo 		 "%s: failed to prep dma\n", __func__);
371e4243f13SShawn Guo }
372e4243f13SShawn Guo 
373e4243f13SShawn Guo static void mxs_mmc_ac(struct mxs_mmc_host *host)
374e4243f13SShawn Guo {
375e4243f13SShawn Guo 	struct mmc_command *cmd = host->cmd;
376e4243f13SShawn Guo 	struct dma_async_tx_descriptor *desc;
377e4243f13SShawn Guo 	u32 ignore_crc, get_resp, long_resp;
378e4243f13SShawn Guo 	u32 ctrl0, cmd0, cmd1;
379e4243f13SShawn Guo 
380e4243f13SShawn Guo 	ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ?
381e4243f13SShawn Guo 			0 : BM_SSP_CTRL0_IGNORE_CRC;
382e4243f13SShawn Guo 	get_resp = (mmc_resp_type(cmd) & MMC_RSP_PRESENT) ?
383e4243f13SShawn Guo 			BM_SSP_CTRL0_GET_RESP : 0;
384e4243f13SShawn Guo 	long_resp = (mmc_resp_type(cmd) & MMC_RSP_136) ?
385e4243f13SShawn Guo 			BM_SSP_CTRL0_LONG_RESP : 0;
386e4243f13SShawn Guo 
387e4243f13SShawn Guo 	ctrl0 = BM_SSP_CTRL0_ENABLE | ignore_crc | get_resp | long_resp;
388e4243f13SShawn Guo 	cmd0 = BF_SSP(cmd->opcode, CMD0_CMD);
389e4243f13SShawn Guo 	cmd1 = cmd->arg;
390e4243f13SShawn Guo 
391e4243f13SShawn Guo 	if (host->sdio_irq_en) {
392e4243f13SShawn Guo 		ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
393e4243f13SShawn Guo 		cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
394e4243f13SShawn Guo 	}
395e4243f13SShawn Guo 
396e4243f13SShawn Guo 	host->ssp_pio_words[0] = ctrl0;
397e4243f13SShawn Guo 	host->ssp_pio_words[1] = cmd0;
398e4243f13SShawn Guo 	host->ssp_pio_words[2] = cmd1;
399e4243f13SShawn Guo 	host->dma_dir = DMA_NONE;
400a4e3e86dSShawn Guo 	host->slave_dirn = DMA_TRANS_NONE;
401921de864SHuang Shijie 	desc = mxs_mmc_prep_dma(host, DMA_CTRL_ACK);
402e4243f13SShawn Guo 	if (!desc)
403e4243f13SShawn Guo 		goto out;
404e4243f13SShawn Guo 
405e4243f13SShawn Guo 	dmaengine_submit(desc);
406e4243f13SShawn Guo 	return;
407e4243f13SShawn Guo 
408e4243f13SShawn Guo out:
409e4243f13SShawn Guo 	dev_warn(mmc_dev(host->mmc),
410e4243f13SShawn Guo 		 "%s: failed to prep dma\n", __func__);
411e4243f13SShawn Guo }
412e4243f13SShawn Guo 
413e4243f13SShawn Guo static unsigned short mxs_ns_to_ssp_ticks(unsigned clock_rate, unsigned ns)
414e4243f13SShawn Guo {
415e4243f13SShawn Guo 	const unsigned int ssp_timeout_mul = 4096;
416e4243f13SShawn Guo 	/*
417e4243f13SShawn Guo 	 * Calculate ticks in ms since ns are large numbers
418e4243f13SShawn Guo 	 * and might overflow
419e4243f13SShawn Guo 	 */
420e4243f13SShawn Guo 	const unsigned int clock_per_ms = clock_rate / 1000;
421e4243f13SShawn Guo 	const unsigned int ms = ns / 1000;
422e4243f13SShawn Guo 	const unsigned int ticks = ms * clock_per_ms;
423e4243f13SShawn Guo 	const unsigned int ssp_ticks = ticks / ssp_timeout_mul;
424e4243f13SShawn Guo 
425e4243f13SShawn Guo 	WARN_ON(ssp_ticks == 0);
426e4243f13SShawn Guo 	return ssp_ticks;
427e4243f13SShawn Guo }
428e4243f13SShawn Guo 
429e4243f13SShawn Guo static void mxs_mmc_adtc(struct mxs_mmc_host *host)
430e4243f13SShawn Guo {
431e4243f13SShawn Guo 	struct mmc_command *cmd = host->cmd;
432e4243f13SShawn Guo 	struct mmc_data *data = cmd->data;
433e4243f13SShawn Guo 	struct dma_async_tx_descriptor *desc;
434e4243f13SShawn Guo 	struct scatterlist *sgl = data->sg, *sg;
435e4243f13SShawn Guo 	unsigned int sg_len = data->sg_len;
436e4243f13SShawn Guo 	int i;
437e4243f13SShawn Guo 
438e4243f13SShawn Guo 	unsigned short dma_data_dir, timeout;
43905f5799cSVinod Koul 	enum dma_transfer_direction slave_dirn;
440e4243f13SShawn Guo 	unsigned int data_size = 0, log2_blksz;
441e4243f13SShawn Guo 	unsigned int blocks = data->blocks;
442e4243f13SShawn Guo 
443e4243f13SShawn Guo 	u32 ignore_crc, get_resp, long_resp, read;
444e4243f13SShawn Guo 	u32 ctrl0, cmd0, cmd1, val;
445e4243f13SShawn Guo 
446e4243f13SShawn Guo 	ignore_crc = (mmc_resp_type(cmd) & MMC_RSP_CRC) ?
447e4243f13SShawn Guo 			0 : BM_SSP_CTRL0_IGNORE_CRC;
448e4243f13SShawn Guo 	get_resp = (mmc_resp_type(cmd) & MMC_RSP_PRESENT) ?
449e4243f13SShawn Guo 			BM_SSP_CTRL0_GET_RESP : 0;
450e4243f13SShawn Guo 	long_resp = (mmc_resp_type(cmd) & MMC_RSP_136) ?
451e4243f13SShawn Guo 			BM_SSP_CTRL0_LONG_RESP : 0;
452e4243f13SShawn Guo 
453e4243f13SShawn Guo 	if (data->flags & MMC_DATA_WRITE) {
454e4243f13SShawn Guo 		dma_data_dir = DMA_TO_DEVICE;
45505f5799cSVinod Koul 		slave_dirn = DMA_MEM_TO_DEV;
456e4243f13SShawn Guo 		read = 0;
457e4243f13SShawn Guo 	} else {
458e4243f13SShawn Guo 		dma_data_dir = DMA_FROM_DEVICE;
45905f5799cSVinod Koul 		slave_dirn = DMA_DEV_TO_MEM;
460e4243f13SShawn Guo 		read = BM_SSP_CTRL0_READ;
461e4243f13SShawn Guo 	}
462e4243f13SShawn Guo 
463e4243f13SShawn Guo 	ctrl0 = BF_SSP(host->bus_width, CTRL0_BUS_WIDTH) |
464e4243f13SShawn Guo 		ignore_crc | get_resp | long_resp |
465e4243f13SShawn Guo 		BM_SSP_CTRL0_DATA_XFER | read |
466e4243f13SShawn Guo 		BM_SSP_CTRL0_WAIT_FOR_IRQ |
467e4243f13SShawn Guo 		BM_SSP_CTRL0_ENABLE;
468e4243f13SShawn Guo 
469e4243f13SShawn Guo 	cmd0 = BF_SSP(cmd->opcode, CMD0_CMD);
470e4243f13SShawn Guo 
471e4243f13SShawn Guo 	/* get logarithm to base 2 of block size for setting register */
472e4243f13SShawn Guo 	log2_blksz = ilog2(data->blksz);
473e4243f13SShawn Guo 
474e4243f13SShawn Guo 	/*
475e4243f13SShawn Guo 	 * take special care of the case that data size from data->sg
476e4243f13SShawn Guo 	 * is not equal to blocks x blksz
477e4243f13SShawn Guo 	 */
478e4243f13SShawn Guo 	for_each_sg(sgl, sg, sg_len, i)
479e4243f13SShawn Guo 		data_size += sg->length;
480e4243f13SShawn Guo 
481e4243f13SShawn Guo 	if (data_size != data->blocks * data->blksz)
482e4243f13SShawn Guo 		blocks = 1;
483e4243f13SShawn Guo 
484e4243f13SShawn Guo 	/* xfer count, block size and count need to be set differently */
485e4243f13SShawn Guo 	if (ssp_is_old()) {
486e4243f13SShawn Guo 		ctrl0 |= BF_SSP(data_size, CTRL0_XFER_COUNT);
487e4243f13SShawn Guo 		cmd0 |= BF_SSP(log2_blksz, CMD0_BLOCK_SIZE) |
488e4243f13SShawn Guo 			BF_SSP(blocks - 1, CMD0_BLOCK_COUNT);
489e4243f13SShawn Guo 	} else {
490e4243f13SShawn Guo 		writel(data_size, host->base + HW_SSP_XFER_SIZE);
491e4243f13SShawn Guo 		writel(BF_SSP(log2_blksz, BLOCK_SIZE_BLOCK_SIZE) |
492e4243f13SShawn Guo 		       BF_SSP(blocks - 1, BLOCK_SIZE_BLOCK_COUNT),
493e4243f13SShawn Guo 		       host->base + HW_SSP_BLOCK_SIZE);
494e4243f13SShawn Guo 	}
495e4243f13SShawn Guo 
496e4243f13SShawn Guo 	if ((cmd->opcode == MMC_STOP_TRANSMISSION) ||
497e4243f13SShawn Guo 	    (cmd->opcode == SD_IO_RW_EXTENDED))
498e4243f13SShawn Guo 		cmd0 |= BM_SSP_CMD0_APPEND_8CYC;
499e4243f13SShawn Guo 
500e4243f13SShawn Guo 	cmd1 = cmd->arg;
501e4243f13SShawn Guo 
502e4243f13SShawn Guo 	if (host->sdio_irq_en) {
503e4243f13SShawn Guo 		ctrl0 |= BM_SSP_CTRL0_SDIO_IRQ_CHECK;
504e4243f13SShawn Guo 		cmd0 |= BM_SSP_CMD0_CONT_CLKING_EN | BM_SSP_CMD0_SLOW_CLKING_EN;
505e4243f13SShawn Guo 	}
506e4243f13SShawn Guo 
507e4243f13SShawn Guo 	/* set the timeout count */
508e4243f13SShawn Guo 	timeout = mxs_ns_to_ssp_ticks(host->clk_rate, data->timeout_ns);
509e4243f13SShawn Guo 	val = readl(host->base + HW_SSP_TIMING);
510e4243f13SShawn Guo 	val &= ~(BM_SSP_TIMING_TIMEOUT);
511e4243f13SShawn Guo 	val |= BF_SSP(timeout, TIMING_TIMEOUT);
512e4243f13SShawn Guo 	writel(val, host->base + HW_SSP_TIMING);
513e4243f13SShawn Guo 
514e4243f13SShawn Guo 	/* pio */
515e4243f13SShawn Guo 	host->ssp_pio_words[0] = ctrl0;
516e4243f13SShawn Guo 	host->ssp_pio_words[1] = cmd0;
517e4243f13SShawn Guo 	host->ssp_pio_words[2] = cmd1;
518e4243f13SShawn Guo 	host->dma_dir = DMA_NONE;
519a4e3e86dSShawn Guo 	host->slave_dirn = DMA_TRANS_NONE;
520e4243f13SShawn Guo 	desc = mxs_mmc_prep_dma(host, 0);
521e4243f13SShawn Guo 	if (!desc)
522e4243f13SShawn Guo 		goto out;
523e4243f13SShawn Guo 
524e4243f13SShawn Guo 	/* append data sg */
525e4243f13SShawn Guo 	WARN_ON(host->data != NULL);
526e4243f13SShawn Guo 	host->data = data;
527e4243f13SShawn Guo 	host->dma_dir = dma_data_dir;
52805f5799cSVinod Koul 	host->slave_dirn = slave_dirn;
529921de864SHuang Shijie 	desc = mxs_mmc_prep_dma(host, DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
530e4243f13SShawn Guo 	if (!desc)
531e4243f13SShawn Guo 		goto out;
532e4243f13SShawn Guo 
533e4243f13SShawn Guo 	dmaengine_submit(desc);
534e4243f13SShawn Guo 	return;
535e4243f13SShawn Guo out:
536e4243f13SShawn Guo 	dev_warn(mmc_dev(host->mmc),
537e4243f13SShawn Guo 		 "%s: failed to prep dma\n", __func__);
538e4243f13SShawn Guo }
539e4243f13SShawn Guo 
540e4243f13SShawn Guo static void mxs_mmc_start_cmd(struct mxs_mmc_host *host,
541e4243f13SShawn Guo 			      struct mmc_command *cmd)
542e4243f13SShawn Guo {
543e4243f13SShawn Guo 	host->cmd = cmd;
544e4243f13SShawn Guo 
545e4243f13SShawn Guo 	switch (mmc_cmd_type(cmd)) {
546e4243f13SShawn Guo 	case MMC_CMD_BC:
547e4243f13SShawn Guo 		mxs_mmc_bc(host);
548e4243f13SShawn Guo 		break;
549e4243f13SShawn Guo 	case MMC_CMD_BCR:
550e4243f13SShawn Guo 		mxs_mmc_ac(host);
551e4243f13SShawn Guo 		break;
552e4243f13SShawn Guo 	case MMC_CMD_AC:
553e4243f13SShawn Guo 		mxs_mmc_ac(host);
554e4243f13SShawn Guo 		break;
555e4243f13SShawn Guo 	case MMC_CMD_ADTC:
556e4243f13SShawn Guo 		mxs_mmc_adtc(host);
557e4243f13SShawn Guo 		break;
558e4243f13SShawn Guo 	default:
559e4243f13SShawn Guo 		dev_warn(mmc_dev(host->mmc),
560e4243f13SShawn Guo 			 "%s: unknown MMC command\n", __func__);
561e4243f13SShawn Guo 		break;
562e4243f13SShawn Guo 	}
563e4243f13SShawn Guo }
564e4243f13SShawn Guo 
565e4243f13SShawn Guo static void mxs_mmc_request(struct mmc_host *mmc, struct mmc_request *mrq)
566e4243f13SShawn Guo {
567e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
568e4243f13SShawn Guo 
569e4243f13SShawn Guo 	WARN_ON(host->mrq != NULL);
570e4243f13SShawn Guo 	host->mrq = mrq;
571e4243f13SShawn Guo 	mxs_mmc_start_cmd(host, mrq->cmd);
572e4243f13SShawn Guo }
573e4243f13SShawn Guo 
574e4243f13SShawn Guo static void mxs_mmc_set_clk_rate(struct mxs_mmc_host *host, unsigned int rate)
575e4243f13SShawn Guo {
576d982dcdcSKoen Beel 	unsigned int ssp_clk, ssp_sck;
577d982dcdcSKoen Beel 	u32 clock_divide, clock_rate;
578e4243f13SShawn Guo 	u32 val;
579e4243f13SShawn Guo 
580d982dcdcSKoen Beel 	ssp_clk = clk_get_rate(host->clk);
581e4243f13SShawn Guo 
582d982dcdcSKoen Beel 	for (clock_divide = 2; clock_divide <= 254; clock_divide += 2) {
583d982dcdcSKoen Beel 		clock_rate = DIV_ROUND_UP(ssp_clk, rate * clock_divide);
584d982dcdcSKoen Beel 		clock_rate = (clock_rate > 0) ? clock_rate - 1 : 0;
585d982dcdcSKoen Beel 		if (clock_rate <= 255)
586e4243f13SShawn Guo 			break;
587e4243f13SShawn Guo 	}
588e4243f13SShawn Guo 
589d982dcdcSKoen Beel 	if (clock_divide > 254) {
590e4243f13SShawn Guo 		dev_err(mmc_dev(host->mmc),
591e4243f13SShawn Guo 			"%s: cannot set clock to %d\n", __func__, rate);
592e4243f13SShawn Guo 		return;
593e4243f13SShawn Guo 	}
594e4243f13SShawn Guo 
595d982dcdcSKoen Beel 	ssp_sck = ssp_clk / clock_divide / (1 + clock_rate);
596e4243f13SShawn Guo 
597e4243f13SShawn Guo 	val = readl(host->base + HW_SSP_TIMING);
598e4243f13SShawn Guo 	val &= ~(BM_SSP_TIMING_CLOCK_DIVIDE | BM_SSP_TIMING_CLOCK_RATE);
599d982dcdcSKoen Beel 	val |= BF_SSP(clock_divide, TIMING_CLOCK_DIVIDE);
600d982dcdcSKoen Beel 	val |= BF_SSP(clock_rate, TIMING_CLOCK_RATE);
601e4243f13SShawn Guo 	writel(val, host->base + HW_SSP_TIMING);
602e4243f13SShawn Guo 
603d982dcdcSKoen Beel 	host->clk_rate = ssp_sck;
604e4243f13SShawn Guo 
605e4243f13SShawn Guo 	dev_dbg(mmc_dev(host->mmc),
606d982dcdcSKoen Beel 		"%s: clock_divide %d, clock_rate %d, ssp_clk %d, rate_actual %d, rate_requested %d\n",
607d982dcdcSKoen Beel 		__func__, clock_divide, clock_rate, ssp_clk, ssp_sck, rate);
608e4243f13SShawn Guo }
609e4243f13SShawn Guo 
610e4243f13SShawn Guo static void mxs_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
611e4243f13SShawn Guo {
612e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
613e4243f13SShawn Guo 
614e4243f13SShawn Guo 	if (ios->bus_width == MMC_BUS_WIDTH_8)
615e4243f13SShawn Guo 		host->bus_width = 2;
616e4243f13SShawn Guo 	else if (ios->bus_width == MMC_BUS_WIDTH_4)
617e4243f13SShawn Guo 		host->bus_width = 1;
618e4243f13SShawn Guo 	else
619e4243f13SShawn Guo 		host->bus_width = 0;
620e4243f13SShawn Guo 
621e4243f13SShawn Guo 	if (ios->clock)
622e4243f13SShawn Guo 		mxs_mmc_set_clk_rate(host, ios->clock);
623e4243f13SShawn Guo }
624e4243f13SShawn Guo 
625e4243f13SShawn Guo static void mxs_mmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
626e4243f13SShawn Guo {
627e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
628e4243f13SShawn Guo 	unsigned long flags;
629e4243f13SShawn Guo 
630e4243f13SShawn Guo 	spin_lock_irqsave(&host->lock, flags);
631e4243f13SShawn Guo 
632e4243f13SShawn Guo 	host->sdio_irq_en = enable;
633e4243f13SShawn Guo 
634e4243f13SShawn Guo 	if (enable) {
635e4243f13SShawn Guo 		writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,
636e4243f13SShawn Guo 		       host->base + HW_SSP_CTRL0 + MXS_SET_ADDR);
637e4243f13SShawn Guo 		writel(BM_SSP_CTRL1_SDIO_IRQ_EN,
638e4243f13SShawn Guo 		       host->base + HW_SSP_CTRL1 + MXS_SET_ADDR);
639e4243f13SShawn Guo 
640e4243f13SShawn Guo 		if (readl(host->base + HW_SSP_STATUS) & BM_SSP_STATUS_SDIO_IRQ)
641e4243f13SShawn Guo 			mmc_signal_sdio_irq(host->mmc);
642e4243f13SShawn Guo 
643e4243f13SShawn Guo 	} else {
644e4243f13SShawn Guo 		writel(BM_SSP_CTRL0_SDIO_IRQ_CHECK,
645e4243f13SShawn Guo 		       host->base + HW_SSP_CTRL0 + MXS_CLR_ADDR);
646e4243f13SShawn Guo 		writel(BM_SSP_CTRL1_SDIO_IRQ_EN,
647e4243f13SShawn Guo 		       host->base + HW_SSP_CTRL1 + MXS_CLR_ADDR);
648e4243f13SShawn Guo 	}
649e4243f13SShawn Guo 
650e4243f13SShawn Guo 	spin_unlock_irqrestore(&host->lock, flags);
651e4243f13SShawn Guo }
652e4243f13SShawn Guo 
653e4243f13SShawn Guo static const struct mmc_host_ops mxs_mmc_ops = {
654e4243f13SShawn Guo 	.request = mxs_mmc_request,
655e4243f13SShawn Guo 	.get_ro = mxs_mmc_get_ro,
656e4243f13SShawn Guo 	.get_cd = mxs_mmc_get_cd,
657e4243f13SShawn Guo 	.set_ios = mxs_mmc_set_ios,
658e4243f13SShawn Guo 	.enable_sdio_irq = mxs_mmc_enable_sdio_irq,
659e4243f13SShawn Guo };
660e4243f13SShawn Guo 
661e4243f13SShawn Guo static bool mxs_mmc_dma_filter(struct dma_chan *chan, void *param)
662e4243f13SShawn Guo {
663e4243f13SShawn Guo 	struct mxs_mmc_host *host = param;
664e4243f13SShawn Guo 
665e4243f13SShawn Guo 	if (!mxs_dma_is_apbh(chan))
666e4243f13SShawn Guo 		return false;
667e4243f13SShawn Guo 
668e4243f13SShawn Guo 	if (chan->chan_id != host->dma_res->start)
669e4243f13SShawn Guo 		return false;
670e4243f13SShawn Guo 
671e4243f13SShawn Guo 	chan->private = &host->dma_data;
672e4243f13SShawn Guo 
673e4243f13SShawn Guo 	return true;
674e4243f13SShawn Guo }
675e4243f13SShawn Guo 
676e4243f13SShawn Guo static int mxs_mmc_probe(struct platform_device *pdev)
677e4243f13SShawn Guo {
678e4243f13SShawn Guo 	struct mxs_mmc_host *host;
679e4243f13SShawn Guo 	struct mmc_host *mmc;
680e4243f13SShawn Guo 	struct resource *iores, *dmares, *r;
681e4243f13SShawn Guo 	struct mxs_mmc_platform_data *pdata;
682e4243f13SShawn Guo 	int ret = 0, irq_err, irq_dma;
683e4243f13SShawn Guo 	dma_cap_mask_t mask;
684e4243f13SShawn Guo 
685e4243f13SShawn Guo 	iores = platform_get_resource(pdev, IORESOURCE_MEM, 0);
686e4243f13SShawn Guo 	dmares = platform_get_resource(pdev, IORESOURCE_DMA, 0);
687e4243f13SShawn Guo 	irq_err = platform_get_irq(pdev, 0);
688e4243f13SShawn Guo 	irq_dma = platform_get_irq(pdev, 1);
689e4243f13SShawn Guo 	if (!iores || !dmares || irq_err < 0 || irq_dma < 0)
690e4243f13SShawn Guo 		return -EINVAL;
691e4243f13SShawn Guo 
692e4243f13SShawn Guo 	r = request_mem_region(iores->start, resource_size(iores), pdev->name);
693e4243f13SShawn Guo 	if (!r)
694e4243f13SShawn Guo 		return -EBUSY;
695e4243f13SShawn Guo 
696e4243f13SShawn Guo 	mmc = mmc_alloc_host(sizeof(struct mxs_mmc_host), &pdev->dev);
697e4243f13SShawn Guo 	if (!mmc) {
698e4243f13SShawn Guo 		ret = -ENOMEM;
699e4243f13SShawn Guo 		goto out_release_mem;
700e4243f13SShawn Guo 	}
701e4243f13SShawn Guo 
702e4243f13SShawn Guo 	host = mmc_priv(mmc);
703e4243f13SShawn Guo 	host->base = ioremap(r->start, resource_size(r));
704e4243f13SShawn Guo 	if (!host->base) {
705e4243f13SShawn Guo 		ret = -ENOMEM;
706e4243f13SShawn Guo 		goto out_mmc_free;
707e4243f13SShawn Guo 	}
708e4243f13SShawn Guo 
709e4243f13SShawn Guo 	/* only major verion does matter */
710e4243f13SShawn Guo 	host->version = readl(host->base + HW_SSP_VERSION) >>
711e4243f13SShawn Guo 			BP_SSP_VERSION_MAJOR;
712e4243f13SShawn Guo 
713e4243f13SShawn Guo 	host->mmc = mmc;
714e4243f13SShawn Guo 	host->res = r;
715e4243f13SShawn Guo 	host->dma_res = dmares;
716e4243f13SShawn Guo 	host->irq = irq_err;
717e4243f13SShawn Guo 	host->sdio_irq_en = 0;
718e4243f13SShawn Guo 
719e4243f13SShawn Guo 	host->clk = clk_get(&pdev->dev, NULL);
720e4243f13SShawn Guo 	if (IS_ERR(host->clk)) {
721e4243f13SShawn Guo 		ret = PTR_ERR(host->clk);
722e4243f13SShawn Guo 		goto out_iounmap;
723e4243f13SShawn Guo 	}
724efdfc52cSShawn Guo 	clk_prepare_enable(host->clk);
725e4243f13SShawn Guo 
726e4243f13SShawn Guo 	mxs_mmc_reset(host);
727e4243f13SShawn Guo 
728e4243f13SShawn Guo 	dma_cap_zero(mask);
729e4243f13SShawn Guo 	dma_cap_set(DMA_SLAVE, mask);
730e4243f13SShawn Guo 	host->dma_data.chan_irq = irq_dma;
731e4243f13SShawn Guo 	host->dmach = dma_request_channel(mask, mxs_mmc_dma_filter, host);
732e4243f13SShawn Guo 	if (!host->dmach) {
733e4243f13SShawn Guo 		dev_err(mmc_dev(host->mmc),
734e4243f13SShawn Guo 			"%s: failed to request dma\n", __func__);
735e4243f13SShawn Guo 		goto out_clk_put;
736e4243f13SShawn Guo 	}
737e4243f13SShawn Guo 
738e4243f13SShawn Guo 	/* set mmc core parameters */
739e4243f13SShawn Guo 	mmc->ops = &mxs_mmc_ops;
740e4243f13SShawn Guo 	mmc->caps = MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED |
741e4243f13SShawn Guo 		    MMC_CAP_SDIO_IRQ | MMC_CAP_NEEDS_POLL;
742e4243f13SShawn Guo 
743e4243f13SShawn Guo 	pdata =	mmc_dev(host->mmc)->platform_data;
744e4243f13SShawn Guo 	if (pdata) {
745e4243f13SShawn Guo 		if (pdata->flags & SLOTF_8_BIT_CAPABLE)
746e4243f13SShawn Guo 			mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA;
747e4243f13SShawn Guo 		if (pdata->flags & SLOTF_4_BIT_CAPABLE)
748e4243f13SShawn Guo 			mmc->caps |= MMC_CAP_4_BIT_DATA;
749e4243f13SShawn Guo 	}
750e4243f13SShawn Guo 
751e4243f13SShawn Guo 	mmc->f_min = 400000;
752e4243f13SShawn Guo 	mmc->f_max = 288000000;
753e4243f13SShawn Guo 	mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34;
754e4243f13SShawn Guo 
755e4243f13SShawn Guo 	mmc->max_segs = 52;
756e4243f13SShawn Guo 	mmc->max_blk_size = 1 << 0xf;
757e4243f13SShawn Guo 	mmc->max_blk_count = (ssp_is_old()) ? 0xff : 0xffffff;
758e4243f13SShawn Guo 	mmc->max_req_size = (ssp_is_old()) ? 0xffff : 0xffffffff;
759e4243f13SShawn Guo 	mmc->max_seg_size = dma_get_max_seg_size(host->dmach->device->dev);
760e4243f13SShawn Guo 
761e4243f13SShawn Guo 	platform_set_drvdata(pdev, mmc);
762e4243f13SShawn Guo 
763e4243f13SShawn Guo 	ret = request_irq(host->irq, mxs_mmc_irq_handler, 0, DRIVER_NAME, host);
764e4243f13SShawn Guo 	if (ret)
765e4243f13SShawn Guo 		goto out_free_dma;
766e4243f13SShawn Guo 
767e4243f13SShawn Guo 	spin_lock_init(&host->lock);
768e4243f13SShawn Guo 
769e4243f13SShawn Guo 	ret = mmc_add_host(mmc);
770e4243f13SShawn Guo 	if (ret)
771e4243f13SShawn Guo 		goto out_free_irq;
772e4243f13SShawn Guo 
773e4243f13SShawn Guo 	dev_info(mmc_dev(host->mmc), "initialized\n");
774e4243f13SShawn Guo 
775e4243f13SShawn Guo 	return 0;
776e4243f13SShawn Guo 
777e4243f13SShawn Guo out_free_irq:
778e4243f13SShawn Guo 	free_irq(host->irq, host);
779e4243f13SShawn Guo out_free_dma:
780e4243f13SShawn Guo 	if (host->dmach)
781e4243f13SShawn Guo 		dma_release_channel(host->dmach);
782e4243f13SShawn Guo out_clk_put:
783efdfc52cSShawn Guo 	clk_disable_unprepare(host->clk);
784e4243f13SShawn Guo 	clk_put(host->clk);
785e4243f13SShawn Guo out_iounmap:
786e4243f13SShawn Guo 	iounmap(host->base);
787e4243f13SShawn Guo out_mmc_free:
788e4243f13SShawn Guo 	mmc_free_host(mmc);
789e4243f13SShawn Guo out_release_mem:
790e4243f13SShawn Guo 	release_mem_region(iores->start, resource_size(iores));
791e4243f13SShawn Guo 	return ret;
792e4243f13SShawn Guo }
793e4243f13SShawn Guo 
794e4243f13SShawn Guo static int mxs_mmc_remove(struct platform_device *pdev)
795e4243f13SShawn Guo {
796e4243f13SShawn Guo 	struct mmc_host *mmc = platform_get_drvdata(pdev);
797e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
798e4243f13SShawn Guo 	struct resource *res = host->res;
799e4243f13SShawn Guo 
800e4243f13SShawn Guo 	mmc_remove_host(mmc);
801e4243f13SShawn Guo 
802e4243f13SShawn Guo 	free_irq(host->irq, host);
803e4243f13SShawn Guo 
804e4243f13SShawn Guo 	platform_set_drvdata(pdev, NULL);
805e4243f13SShawn Guo 
806e4243f13SShawn Guo 	if (host->dmach)
807e4243f13SShawn Guo 		dma_release_channel(host->dmach);
808e4243f13SShawn Guo 
809efdfc52cSShawn Guo 	clk_disable_unprepare(host->clk);
810e4243f13SShawn Guo 	clk_put(host->clk);
811e4243f13SShawn Guo 
812e4243f13SShawn Guo 	iounmap(host->base);
813e4243f13SShawn Guo 
814e4243f13SShawn Guo 	mmc_free_host(mmc);
815e4243f13SShawn Guo 
816e4243f13SShawn Guo 	release_mem_region(res->start, resource_size(res));
817e4243f13SShawn Guo 
818e4243f13SShawn Guo 	return 0;
819e4243f13SShawn Guo }
820e4243f13SShawn Guo 
821e4243f13SShawn Guo #ifdef CONFIG_PM
822e4243f13SShawn Guo static int mxs_mmc_suspend(struct device *dev)
823e4243f13SShawn Guo {
824e4243f13SShawn Guo 	struct mmc_host *mmc = dev_get_drvdata(dev);
825e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
826e4243f13SShawn Guo 	int ret = 0;
827e4243f13SShawn Guo 
828e4243f13SShawn Guo 	ret = mmc_suspend_host(mmc);
829e4243f13SShawn Guo 
830efdfc52cSShawn Guo 	clk_disable_unprepare(host->clk);
831e4243f13SShawn Guo 
832e4243f13SShawn Guo 	return ret;
833e4243f13SShawn Guo }
834e4243f13SShawn Guo 
835e4243f13SShawn Guo static int mxs_mmc_resume(struct device *dev)
836e4243f13SShawn Guo {
837e4243f13SShawn Guo 	struct mmc_host *mmc = dev_get_drvdata(dev);
838e4243f13SShawn Guo 	struct mxs_mmc_host *host = mmc_priv(mmc);
839e4243f13SShawn Guo 	int ret = 0;
840e4243f13SShawn Guo 
841efdfc52cSShawn Guo 	clk_prepare_enable(host->clk);
842e4243f13SShawn Guo 
843e4243f13SShawn Guo 	ret = mmc_resume_host(mmc);
844e4243f13SShawn Guo 
845e4243f13SShawn Guo 	return ret;
846e4243f13SShawn Guo }
847e4243f13SShawn Guo 
848e4243f13SShawn Guo static const struct dev_pm_ops mxs_mmc_pm_ops = {
849e4243f13SShawn Guo 	.suspend	= mxs_mmc_suspend,
850e4243f13SShawn Guo 	.resume		= mxs_mmc_resume,
851e4243f13SShawn Guo };
852e4243f13SShawn Guo #endif
853e4243f13SShawn Guo 
854e4243f13SShawn Guo static struct platform_driver mxs_mmc_driver = {
855e4243f13SShawn Guo 	.probe		= mxs_mmc_probe,
856e4243f13SShawn Guo 	.remove		= mxs_mmc_remove,
857e4243f13SShawn Guo 	.driver		= {
858e4243f13SShawn Guo 		.name	= DRIVER_NAME,
859e4243f13SShawn Guo 		.owner	= THIS_MODULE,
860e4243f13SShawn Guo #ifdef CONFIG_PM
861e4243f13SShawn Guo 		.pm	= &mxs_mmc_pm_ops,
862e4243f13SShawn Guo #endif
863e4243f13SShawn Guo 	},
864e4243f13SShawn Guo };
865e4243f13SShawn Guo 
866d1f81a64SAxel Lin module_platform_driver(mxs_mmc_driver);
867e4243f13SShawn Guo 
868e4243f13SShawn Guo MODULE_DESCRIPTION("FREESCALE MXS MMC peripheral");
869e4243f13SShawn Guo MODULE_AUTHOR("Freescale Semiconductor");
870e4243f13SShawn Guo MODULE_LICENSE("GPL");
871