mmci.c revision 70be208f0bd75eb81264f681e36485d0617d612f
1/*
2 *  linux/drivers/mmc/host/mmci.c - ARM PrimeCell MMCI PL180/1 driver
3 *
4 *  Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
5 *  Copyright (C) 2010 ST-Ericsson SA
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 */
11#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/init.h>
14#include <linux/ioport.h>
15#include <linux/device.h>
16#include <linux/interrupt.h>
17#include <linux/kernel.h>
18#include <linux/slab.h>
19#include <linux/delay.h>
20#include <linux/err.h>
21#include <linux/highmem.h>
22#include <linux/log2.h>
23#include <linux/mmc/pm.h>
24#include <linux/mmc/host.h>
25#include <linux/mmc/card.h>
26#include <linux/amba/bus.h>
27#include <linux/clk.h>
28#include <linux/scatterlist.h>
29#include <linux/gpio.h>
30#include <linux/of_gpio.h>
31#include <linux/regulator/consumer.h>
32#include <linux/dmaengine.h>
33#include <linux/dma-mapping.h>
34#include <linux/amba/mmci.h>
35#include <linux/pm_runtime.h>
36#include <linux/types.h>
37#include <linux/pinctrl/consumer.h>
38
39#include <asm/div64.h>
40#include <asm/io.h>
41#include <asm/sizes.h>
42
43#include "mmci.h"
44
45#define DRIVER_NAME "mmci-pl18x"
46
47static unsigned int fmax = 515633;
48
49/**
50 * struct variant_data - MMCI variant-specific quirks
51 * @clkreg: default value for MCICLOCK register
52 * @clkreg_enable: enable value for MMCICLOCK register
53 * @datalength_bits: number of bits in the MMCIDATALENGTH register
54 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
55 *	      is asserted (likewise for RX)
56 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
57 *		  is asserted (likewise for RX)
58 * @sdio: variant supports SDIO
59 * @st_clkdiv: true if using a ST-specific clock divider algorithm
60 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
61 * @pwrreg_powerup: power up value for MMCIPOWER register
62 * @signal_direction: input/out direction of bus signals can be indicated
63 */
64struct variant_data {
65	unsigned int		clkreg;
66	unsigned int		clkreg_enable;
67	unsigned int		datalength_bits;
68	unsigned int		fifosize;
69	unsigned int		fifohalfsize;
70	bool			sdio;
71	bool			st_clkdiv;
72	bool			blksz_datactrl16;
73	u32			pwrreg_powerup;
74	bool			signal_direction;
75};
76
77static struct variant_data variant_arm = {
78	.fifosize		= 16 * 4,
79	.fifohalfsize		= 8 * 4,
80	.datalength_bits	= 16,
81	.pwrreg_powerup		= MCI_PWR_UP,
82};
83
84static struct variant_data variant_arm_extended_fifo = {
85	.fifosize		= 128 * 4,
86	.fifohalfsize		= 64 * 4,
87	.datalength_bits	= 16,
88	.pwrreg_powerup		= MCI_PWR_UP,
89};
90
91static struct variant_data variant_u300 = {
92	.fifosize		= 16 * 4,
93	.fifohalfsize		= 8 * 4,
94	.clkreg_enable		= MCI_ST_U300_HWFCEN,
95	.datalength_bits	= 16,
96	.sdio			= true,
97	.pwrreg_powerup		= MCI_PWR_ON,
98	.signal_direction	= true,
99};
100
101static struct variant_data variant_nomadik = {
102	.fifosize		= 16 * 4,
103	.fifohalfsize		= 8 * 4,
104	.clkreg			= MCI_CLK_ENABLE,
105	.datalength_bits	= 24,
106	.sdio			= true,
107	.st_clkdiv		= true,
108	.pwrreg_powerup		= MCI_PWR_ON,
109	.signal_direction	= true,
110};
111
112static struct variant_data variant_ux500 = {
113	.fifosize		= 30 * 4,
114	.fifohalfsize		= 8 * 4,
115	.clkreg			= MCI_CLK_ENABLE,
116	.clkreg_enable		= MCI_ST_UX500_HWFCEN,
117	.datalength_bits	= 24,
118	.sdio			= true,
119	.st_clkdiv		= true,
120	.pwrreg_powerup		= MCI_PWR_ON,
121	.signal_direction	= true,
122};
123
124static struct variant_data variant_ux500v2 = {
125	.fifosize		= 30 * 4,
126	.fifohalfsize		= 8 * 4,
127	.clkreg			= MCI_CLK_ENABLE,
128	.clkreg_enable		= MCI_ST_UX500_HWFCEN,
129	.datalength_bits	= 24,
130	.sdio			= true,
131	.st_clkdiv		= true,
132	.blksz_datactrl16	= true,
133	.pwrreg_powerup		= MCI_PWR_ON,
134	.signal_direction	= true,
135};
136
137/*
138 * This must be called with host->lock held
139 */
140static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
141{
142	if (host->clk_reg != clk) {
143		host->clk_reg = clk;
144		writel(clk, host->base + MMCICLOCK);
145	}
146}
147
148/*
149 * This must be called with host->lock held
150 */
151static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
152{
153	if (host->pwr_reg != pwr) {
154		host->pwr_reg = pwr;
155		writel(pwr, host->base + MMCIPOWER);
156	}
157}
158
159/*
160 * This must be called with host->lock held
161 */
162static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
163{
164	struct variant_data *variant = host->variant;
165	u32 clk = variant->clkreg;
166
167	if (desired) {
168		if (desired >= host->mclk) {
169			clk = MCI_CLK_BYPASS;
170			if (variant->st_clkdiv)
171				clk |= MCI_ST_UX500_NEG_EDGE;
172			host->cclk = host->mclk;
173		} else if (variant->st_clkdiv) {
174			/*
175			 * DB8500 TRM says f = mclk / (clkdiv + 2)
176			 * => clkdiv = (mclk / f) - 2
177			 * Round the divider up so we don't exceed the max
178			 * frequency
179			 */
180			clk = DIV_ROUND_UP(host->mclk, desired) - 2;
181			if (clk >= 256)
182				clk = 255;
183			host->cclk = host->mclk / (clk + 2);
184		} else {
185			/*
186			 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
187			 * => clkdiv = mclk / (2 * f) - 1
188			 */
189			clk = host->mclk / (2 * desired) - 1;
190			if (clk >= 256)
191				clk = 255;
192			host->cclk = host->mclk / (2 * (clk + 1));
193		}
194
195		clk |= variant->clkreg_enable;
196		clk |= MCI_CLK_ENABLE;
197		/* This hasn't proven to be worthwhile */
198		/* clk |= MCI_CLK_PWRSAVE; */
199	}
200
201	if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
202		clk |= MCI_4BIT_BUS;
203	if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
204		clk |= MCI_ST_8BIT_BUS;
205
206	if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
207		clk |= MCI_ST_UX500_NEG_EDGE;
208
209	mmci_write_clkreg(host, clk);
210}
211
212static void
213mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
214{
215	writel(0, host->base + MMCICOMMAND);
216
217	BUG_ON(host->data);
218
219	host->mrq = NULL;
220	host->cmd = NULL;
221
222	mmc_request_done(host->mmc, mrq);
223
224	pm_runtime_mark_last_busy(mmc_dev(host->mmc));
225	pm_runtime_put_autosuspend(mmc_dev(host->mmc));
226}
227
228static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
229{
230	void __iomem *base = host->base;
231
232	if (host->singleirq) {
233		unsigned int mask0 = readl(base + MMCIMASK0);
234
235		mask0 &= ~MCI_IRQ1MASK;
236		mask0 |= mask;
237
238		writel(mask0, base + MMCIMASK0);
239	}
240
241	writel(mask, base + MMCIMASK1);
242}
243
244static void mmci_stop_data(struct mmci_host *host)
245{
246	writel(0, host->base + MMCIDATACTRL);
247	mmci_set_mask1(host, 0);
248	host->data = NULL;
249}
250
251static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
252{
253	unsigned int flags = SG_MITER_ATOMIC;
254
255	if (data->flags & MMC_DATA_READ)
256		flags |= SG_MITER_TO_SG;
257	else
258		flags |= SG_MITER_FROM_SG;
259
260	sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
261}
262
263/*
264 * All the DMA operation mode stuff goes inside this ifdef.
265 * This assumes that you have a generic DMA device interface,
266 * no custom DMA interfaces are supported.
267 */
268#ifdef CONFIG_DMA_ENGINE
269static void mmci_dma_setup(struct mmci_host *host)
270{
271	struct mmci_platform_data *plat = host->plat;
272	const char *rxname, *txname;
273	dma_cap_mask_t mask;
274
275	if (!plat || !plat->dma_filter) {
276		dev_info(mmc_dev(host->mmc), "no DMA platform data\n");
277		return;
278	}
279
280	/* initialize pre request cookie */
281	host->next_data.cookie = 1;
282
283	/* Try to acquire a generic DMA engine slave channel */
284	dma_cap_zero(mask);
285	dma_cap_set(DMA_SLAVE, mask);
286
287	/*
288	 * If only an RX channel is specified, the driver will
289	 * attempt to use it bidirectionally, however if it is
290	 * is specified but cannot be located, DMA will be disabled.
291	 */
292	if (plat->dma_rx_param) {
293		host->dma_rx_channel = dma_request_channel(mask,
294							   plat->dma_filter,
295							   plat->dma_rx_param);
296		/* E.g if no DMA hardware is present */
297		if (!host->dma_rx_channel)
298			dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
299	}
300
301	if (plat->dma_tx_param) {
302		host->dma_tx_channel = dma_request_channel(mask,
303							   plat->dma_filter,
304							   plat->dma_tx_param);
305		if (!host->dma_tx_channel)
306			dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
307	} else {
308		host->dma_tx_channel = host->dma_rx_channel;
309	}
310
311	if (host->dma_rx_channel)
312		rxname = dma_chan_name(host->dma_rx_channel);
313	else
314		rxname = "none";
315
316	if (host->dma_tx_channel)
317		txname = dma_chan_name(host->dma_tx_channel);
318	else
319		txname = "none";
320
321	dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
322		 rxname, txname);
323
324	/*
325	 * Limit the maximum segment size in any SG entry according to
326	 * the parameters of the DMA engine device.
327	 */
328	if (host->dma_tx_channel) {
329		struct device *dev = host->dma_tx_channel->device->dev;
330		unsigned int max_seg_size = dma_get_max_seg_size(dev);
331
332		if (max_seg_size < host->mmc->max_seg_size)
333			host->mmc->max_seg_size = max_seg_size;
334	}
335	if (host->dma_rx_channel) {
336		struct device *dev = host->dma_rx_channel->device->dev;
337		unsigned int max_seg_size = dma_get_max_seg_size(dev);
338
339		if (max_seg_size < host->mmc->max_seg_size)
340			host->mmc->max_seg_size = max_seg_size;
341	}
342}
343
344/*
345 * This is used in or so inline it
346 * so it can be discarded.
347 */
348static inline void mmci_dma_release(struct mmci_host *host)
349{
350	struct mmci_platform_data *plat = host->plat;
351
352	if (host->dma_rx_channel)
353		dma_release_channel(host->dma_rx_channel);
354	if (host->dma_tx_channel && plat->dma_tx_param)
355		dma_release_channel(host->dma_tx_channel);
356	host->dma_rx_channel = host->dma_tx_channel = NULL;
357}
358
359static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
360{
361	struct dma_chan *chan = host->dma_current;
362	enum dma_data_direction dir;
363	u32 status;
364	int i;
365
366	/* Wait up to 1ms for the DMA to complete */
367	for (i = 0; ; i++) {
368		status = readl(host->base + MMCISTATUS);
369		if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
370			break;
371		udelay(10);
372	}
373
374	/*
375	 * Check to see whether we still have some data left in the FIFO -
376	 * this catches DMA controllers which are unable to monitor the
377	 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
378	 * contiguous buffers.  On TX, we'll get a FIFO underrun error.
379	 */
380	if (status & MCI_RXDATAAVLBLMASK) {
381		dmaengine_terminate_all(chan);
382		if (!data->error)
383			data->error = -EIO;
384	}
385
386	if (data->flags & MMC_DATA_WRITE) {
387		dir = DMA_TO_DEVICE;
388	} else {
389		dir = DMA_FROM_DEVICE;
390	}
391
392	if (!data->host_cookie)
393		dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
394
395	/*
396	 * Use of DMA with scatter-gather is impossible.
397	 * Give up with DMA and switch back to PIO mode.
398	 */
399	if (status & MCI_RXDATAAVLBLMASK) {
400		dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
401		mmci_dma_release(host);
402	}
403}
404
405static void mmci_dma_data_error(struct mmci_host *host)
406{
407	dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
408	dmaengine_terminate_all(host->dma_current);
409}
410
411static int mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
412			      struct mmci_host_next *next)
413{
414	struct variant_data *variant = host->variant;
415	struct dma_slave_config conf = {
416		.src_addr = host->phybase + MMCIFIFO,
417		.dst_addr = host->phybase + MMCIFIFO,
418		.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
419		.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
420		.src_maxburst = variant->fifohalfsize >> 2, /* # of words */
421		.dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
422		.device_fc = false,
423	};
424	struct dma_chan *chan;
425	struct dma_device *device;
426	struct dma_async_tx_descriptor *desc;
427	enum dma_data_direction buffer_dirn;
428	int nr_sg;
429
430	/* Check if next job is already prepared */
431	if (data->host_cookie && !next &&
432	    host->dma_current && host->dma_desc_current)
433		return 0;
434
435	if (!next) {
436		host->dma_current = NULL;
437		host->dma_desc_current = NULL;
438	}
439
440	if (data->flags & MMC_DATA_READ) {
441		conf.direction = DMA_DEV_TO_MEM;
442		buffer_dirn = DMA_FROM_DEVICE;
443		chan = host->dma_rx_channel;
444	} else {
445		conf.direction = DMA_MEM_TO_DEV;
446		buffer_dirn = DMA_TO_DEVICE;
447		chan = host->dma_tx_channel;
448	}
449
450	/* If there's no DMA channel, fall back to PIO */
451	if (!chan)
452		return -EINVAL;
453
454	/* If less than or equal to the fifo size, don't bother with DMA */
455	if (data->blksz * data->blocks <= variant->fifosize)
456		return -EINVAL;
457
458	device = chan->device;
459	nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
460	if (nr_sg == 0)
461		return -EINVAL;
462
463	dmaengine_slave_config(chan, &conf);
464	desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
465					    conf.direction, DMA_CTRL_ACK);
466	if (!desc)
467		goto unmap_exit;
468
469	if (next) {
470		next->dma_chan = chan;
471		next->dma_desc = desc;
472	} else {
473		host->dma_current = chan;
474		host->dma_desc_current = desc;
475	}
476
477	return 0;
478
479 unmap_exit:
480	if (!next)
481		dmaengine_terminate_all(chan);
482	dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
483	return -ENOMEM;
484}
485
486static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
487{
488	int ret;
489	struct mmc_data *data = host->data;
490
491	ret = mmci_dma_prep_data(host, host->data, NULL);
492	if (ret)
493		return ret;
494
495	/* Okay, go for it. */
496	dev_vdbg(mmc_dev(host->mmc),
497		 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
498		 data->sg_len, data->blksz, data->blocks, data->flags);
499	dmaengine_submit(host->dma_desc_current);
500	dma_async_issue_pending(host->dma_current);
501
502	datactrl |= MCI_DPSM_DMAENABLE;
503
504	/* Trigger the DMA transfer */
505	writel(datactrl, host->base + MMCIDATACTRL);
506
507	/*
508	 * Let the MMCI say when the data is ended and it's time
509	 * to fire next DMA request. When that happens, MMCI will
510	 * call mmci_data_end()
511	 */
512	writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
513	       host->base + MMCIMASK0);
514	return 0;
515}
516
517static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
518{
519	struct mmci_host_next *next = &host->next_data;
520
521	if (data->host_cookie && data->host_cookie != next->cookie) {
522		pr_warning("[%s] invalid cookie: data->host_cookie %d"
523		       " host->next_data.cookie %d\n",
524		       __func__, data->host_cookie, host->next_data.cookie);
525		data->host_cookie = 0;
526	}
527
528	if (!data->host_cookie)
529		return;
530
531	host->dma_desc_current = next->dma_desc;
532	host->dma_current = next->dma_chan;
533
534	next->dma_desc = NULL;
535	next->dma_chan = NULL;
536}
537
538static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
539			     bool is_first_req)
540{
541	struct mmci_host *host = mmc_priv(mmc);
542	struct mmc_data *data = mrq->data;
543	struct mmci_host_next *nd = &host->next_data;
544
545	if (!data)
546		return;
547
548	if (data->host_cookie) {
549		data->host_cookie = 0;
550		return;
551	}
552
553	/* if config for dma */
554	if (((data->flags & MMC_DATA_WRITE) && host->dma_tx_channel) ||
555	    ((data->flags & MMC_DATA_READ) && host->dma_rx_channel)) {
556		if (mmci_dma_prep_data(host, data, nd))
557			data->host_cookie = 0;
558		else
559			data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
560	}
561}
562
563static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
564			      int err)
565{
566	struct mmci_host *host = mmc_priv(mmc);
567	struct mmc_data *data = mrq->data;
568	struct dma_chan *chan;
569	enum dma_data_direction dir;
570
571	if (!data)
572		return;
573
574	if (data->flags & MMC_DATA_READ) {
575		dir = DMA_FROM_DEVICE;
576		chan = host->dma_rx_channel;
577	} else {
578		dir = DMA_TO_DEVICE;
579		chan = host->dma_tx_channel;
580	}
581
582
583	/* if config for dma */
584	if (chan) {
585		if (err)
586			dmaengine_terminate_all(chan);
587		if (data->host_cookie)
588			dma_unmap_sg(mmc_dev(host->mmc), data->sg,
589				     data->sg_len, dir);
590		mrq->data->host_cookie = 0;
591	}
592}
593
594#else
595/* Blank functions if the DMA engine is not available */
596static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
597{
598}
599static inline void mmci_dma_setup(struct mmci_host *host)
600{
601}
602
603static inline void mmci_dma_release(struct mmci_host *host)
604{
605}
606
607static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
608{
609}
610
611static inline void mmci_dma_data_error(struct mmci_host *host)
612{
613}
614
615static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
616{
617	return -ENOSYS;
618}
619
620#define mmci_pre_request NULL
621#define mmci_post_request NULL
622
623#endif
624
625static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
626{
627	struct variant_data *variant = host->variant;
628	unsigned int datactrl, timeout, irqmask;
629	unsigned long long clks;
630	void __iomem *base;
631	int blksz_bits;
632
633	dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
634		data->blksz, data->blocks, data->flags);
635
636	host->data = data;
637	host->size = data->blksz * data->blocks;
638	data->bytes_xfered = 0;
639
640	clks = (unsigned long long)data->timeout_ns * host->cclk;
641	do_div(clks, 1000000000UL);
642
643	timeout = data->timeout_clks + (unsigned int)clks;
644
645	base = host->base;
646	writel(timeout, base + MMCIDATATIMER);
647	writel(host->size, base + MMCIDATALENGTH);
648
649	blksz_bits = ffs(data->blksz) - 1;
650	BUG_ON(1 << blksz_bits != data->blksz);
651
652	if (variant->blksz_datactrl16)
653		datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
654	else
655		datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
656
657	if (data->flags & MMC_DATA_READ)
658		datactrl |= MCI_DPSM_DIRECTION;
659
660	/* The ST Micro variants has a special bit to enable SDIO */
661	if (variant->sdio && host->mmc->card)
662		if (mmc_card_sdio(host->mmc->card)) {
663			/*
664			 * The ST Micro variants has a special bit
665			 * to enable SDIO.
666			 */
667			u32 clk;
668
669			datactrl |= MCI_ST_DPSM_SDIOEN;
670
671			/*
672			 * The ST Micro variant for SDIO small write transfers
673			 * needs to have clock H/W flow control disabled,
674			 * otherwise the transfer will not start. The threshold
675			 * depends on the rate of MCLK.
676			 */
677			if (data->flags & MMC_DATA_WRITE &&
678			    (host->size < 8 ||
679			     (host->size <= 8 && host->mclk > 50000000)))
680				clk = host->clk_reg & ~variant->clkreg_enable;
681			else
682				clk = host->clk_reg | variant->clkreg_enable;
683
684			mmci_write_clkreg(host, clk);
685		}
686
687	if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
688		datactrl |= MCI_ST_DPSM_DDRMODE;
689
690	/*
691	 * Attempt to use DMA operation mode, if this
692	 * should fail, fall back to PIO mode
693	 */
694	if (!mmci_dma_start_data(host, datactrl))
695		return;
696
697	/* IRQ mode, map the SG list for CPU reading/writing */
698	mmci_init_sg(host, data);
699
700	if (data->flags & MMC_DATA_READ) {
701		irqmask = MCI_RXFIFOHALFFULLMASK;
702
703		/*
704		 * If we have less than the fifo 'half-full' threshold to
705		 * transfer, trigger a PIO interrupt as soon as any data
706		 * is available.
707		 */
708		if (host->size < variant->fifohalfsize)
709			irqmask |= MCI_RXDATAAVLBLMASK;
710	} else {
711		/*
712		 * We don't actually need to include "FIFO empty" here
713		 * since its implicit in "FIFO half empty".
714		 */
715		irqmask = MCI_TXFIFOHALFEMPTYMASK;
716	}
717
718	writel(datactrl, base + MMCIDATACTRL);
719	writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
720	mmci_set_mask1(host, irqmask);
721}
722
723static void
724mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
725{
726	void __iomem *base = host->base;
727
728	dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
729	    cmd->opcode, cmd->arg, cmd->flags);
730
731	if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
732		writel(0, base + MMCICOMMAND);
733		udelay(1);
734	}
735
736	c |= cmd->opcode | MCI_CPSM_ENABLE;
737	if (cmd->flags & MMC_RSP_PRESENT) {
738		if (cmd->flags & MMC_RSP_136)
739			c |= MCI_CPSM_LONGRSP;
740		c |= MCI_CPSM_RESPONSE;
741	}
742	if (/*interrupt*/0)
743		c |= MCI_CPSM_INTERRUPT;
744
745	host->cmd = cmd;
746
747	writel(cmd->arg, base + MMCIARGUMENT);
748	writel(c, base + MMCICOMMAND);
749}
750
751static void
752mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
753	      unsigned int status)
754{
755	/* First check for errors */
756	if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
757		      MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
758		u32 remain, success;
759
760		/* Terminate the DMA transfer */
761		if (dma_inprogress(host))
762			mmci_dma_data_error(host);
763
764		/*
765		 * Calculate how far we are into the transfer.  Note that
766		 * the data counter gives the number of bytes transferred
767		 * on the MMC bus, not on the host side.  On reads, this
768		 * can be as much as a FIFO-worth of data ahead.  This
769		 * matters for FIFO overruns only.
770		 */
771		remain = readl(host->base + MMCIDATACNT);
772		success = data->blksz * data->blocks - remain;
773
774		dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
775			status, success);
776		if (status & MCI_DATACRCFAIL) {
777			/* Last block was not successful */
778			success -= 1;
779			data->error = -EILSEQ;
780		} else if (status & MCI_DATATIMEOUT) {
781			data->error = -ETIMEDOUT;
782		} else if (status & MCI_STARTBITERR) {
783			data->error = -ECOMM;
784		} else if (status & MCI_TXUNDERRUN) {
785			data->error = -EIO;
786		} else if (status & MCI_RXOVERRUN) {
787			if (success > host->variant->fifosize)
788				success -= host->variant->fifosize;
789			else
790				success = 0;
791			data->error = -EIO;
792		}
793		data->bytes_xfered = round_down(success, data->blksz);
794	}
795
796	if (status & MCI_DATABLOCKEND)
797		dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
798
799	if (status & MCI_DATAEND || data->error) {
800		if (dma_inprogress(host))
801			mmci_dma_unmap(host, data);
802		mmci_stop_data(host);
803
804		if (!data->error)
805			/* The error clause is handled above, success! */
806			data->bytes_xfered = data->blksz * data->blocks;
807
808		if (!data->stop) {
809			mmci_request_end(host, data->mrq);
810		} else {
811			mmci_start_command(host, data->stop, 0);
812		}
813	}
814}
815
816static void
817mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
818	     unsigned int status)
819{
820	void __iomem *base = host->base;
821
822	host->cmd = NULL;
823
824	if (status & MCI_CMDTIMEOUT) {
825		cmd->error = -ETIMEDOUT;
826	} else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
827		cmd->error = -EILSEQ;
828	} else {
829		cmd->resp[0] = readl(base + MMCIRESPONSE0);
830		cmd->resp[1] = readl(base + MMCIRESPONSE1);
831		cmd->resp[2] = readl(base + MMCIRESPONSE2);
832		cmd->resp[3] = readl(base + MMCIRESPONSE3);
833	}
834
835	if (!cmd->data || cmd->error) {
836		if (host->data) {
837			/* Terminate the DMA transfer */
838			if (dma_inprogress(host))
839				mmci_dma_data_error(host);
840			mmci_stop_data(host);
841		}
842		mmci_request_end(host, cmd->mrq);
843	} else if (!(cmd->data->flags & MMC_DATA_READ)) {
844		mmci_start_data(host, cmd->data);
845	}
846}
847
848static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
849{
850	void __iomem *base = host->base;
851	char *ptr = buffer;
852	u32 status;
853	int host_remain = host->size;
854
855	do {
856		int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
857
858		if (count > remain)
859			count = remain;
860
861		if (count <= 0)
862			break;
863
864		/*
865		 * SDIO especially may want to send something that is
866		 * not divisible by 4 (as opposed to card sectors
867		 * etc). Therefore make sure to always read the last bytes
868		 * while only doing full 32-bit reads towards the FIFO.
869		 */
870		if (unlikely(count & 0x3)) {
871			if (count < 4) {
872				unsigned char buf[4];
873				ioread32_rep(base + MMCIFIFO, buf, 1);
874				memcpy(ptr, buf, count);
875			} else {
876				ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
877				count &= ~0x3;
878			}
879		} else {
880			ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
881		}
882
883		ptr += count;
884		remain -= count;
885		host_remain -= count;
886
887		if (remain == 0)
888			break;
889
890		status = readl(base + MMCISTATUS);
891	} while (status & MCI_RXDATAAVLBL);
892
893	return ptr - buffer;
894}
895
896static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
897{
898	struct variant_data *variant = host->variant;
899	void __iomem *base = host->base;
900	char *ptr = buffer;
901
902	do {
903		unsigned int count, maxcnt;
904
905		maxcnt = status & MCI_TXFIFOEMPTY ?
906			 variant->fifosize : variant->fifohalfsize;
907		count = min(remain, maxcnt);
908
909		/*
910		 * SDIO especially may want to send something that is
911		 * not divisible by 4 (as opposed to card sectors
912		 * etc), and the FIFO only accept full 32-bit writes.
913		 * So compensate by adding +3 on the count, a single
914		 * byte become a 32bit write, 7 bytes will be two
915		 * 32bit writes etc.
916		 */
917		iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
918
919		ptr += count;
920		remain -= count;
921
922		if (remain == 0)
923			break;
924
925		status = readl(base + MMCISTATUS);
926	} while (status & MCI_TXFIFOHALFEMPTY);
927
928	return ptr - buffer;
929}
930
931/*
932 * PIO data transfer IRQ handler.
933 */
934static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
935{
936	struct mmci_host *host = dev_id;
937	struct sg_mapping_iter *sg_miter = &host->sg_miter;
938	struct variant_data *variant = host->variant;
939	void __iomem *base = host->base;
940	unsigned long flags;
941	u32 status;
942
943	status = readl(base + MMCISTATUS);
944
945	dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
946
947	local_irq_save(flags);
948
949	do {
950		unsigned int remain, len;
951		char *buffer;
952
953		/*
954		 * For write, we only need to test the half-empty flag
955		 * here - if the FIFO is completely empty, then by
956		 * definition it is more than half empty.
957		 *
958		 * For read, check for data available.
959		 */
960		if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
961			break;
962
963		if (!sg_miter_next(sg_miter))
964			break;
965
966		buffer = sg_miter->addr;
967		remain = sg_miter->length;
968
969		len = 0;
970		if (status & MCI_RXACTIVE)
971			len = mmci_pio_read(host, buffer, remain);
972		if (status & MCI_TXACTIVE)
973			len = mmci_pio_write(host, buffer, remain, status);
974
975		sg_miter->consumed = len;
976
977		host->size -= len;
978		remain -= len;
979
980		if (remain)
981			break;
982
983		status = readl(base + MMCISTATUS);
984	} while (1);
985
986	sg_miter_stop(sg_miter);
987
988	local_irq_restore(flags);
989
990	/*
991	 * If we have less than the fifo 'half-full' threshold to transfer,
992	 * trigger a PIO interrupt as soon as any data is available.
993	 */
994	if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
995		mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
996
997	/*
998	 * If we run out of data, disable the data IRQs; this
999	 * prevents a race where the FIFO becomes empty before
1000	 * the chip itself has disabled the data path, and
1001	 * stops us racing with our data end IRQ.
1002	 */
1003	if (host->size == 0) {
1004		mmci_set_mask1(host, 0);
1005		writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1006	}
1007
1008	return IRQ_HANDLED;
1009}
1010
1011/*
1012 * Handle completion of command and data transfers.
1013 */
1014static irqreturn_t mmci_irq(int irq, void *dev_id)
1015{
1016	struct mmci_host *host = dev_id;
1017	u32 status;
1018	int ret = 0;
1019
1020	spin_lock(&host->lock);
1021
1022	do {
1023		struct mmc_command *cmd;
1024		struct mmc_data *data;
1025
1026		status = readl(host->base + MMCISTATUS);
1027
1028		if (host->singleirq) {
1029			if (status & readl(host->base + MMCIMASK1))
1030				mmci_pio_irq(irq, dev_id);
1031
1032			status &= ~MCI_IRQ1MASK;
1033		}
1034
1035		status &= readl(host->base + MMCIMASK0);
1036		writel(status, host->base + MMCICLEAR);
1037
1038		dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
1039
1040		data = host->data;
1041		if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1042			      MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1043			      MCI_DATABLOCKEND) && data)
1044			mmci_data_irq(host, data, status);
1045
1046		cmd = host->cmd;
1047		if (status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
1048			mmci_cmd_irq(host, cmd, status);
1049
1050		ret = 1;
1051	} while (status);
1052
1053	spin_unlock(&host->lock);
1054
1055	return IRQ_RETVAL(ret);
1056}
1057
1058static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1059{
1060	struct mmci_host *host = mmc_priv(mmc);
1061	unsigned long flags;
1062
1063	WARN_ON(host->mrq != NULL);
1064
1065	if (mrq->data && !is_power_of_2(mrq->data->blksz)) {
1066		dev_err(mmc_dev(mmc), "unsupported block size (%d bytes)\n",
1067			mrq->data->blksz);
1068		mrq->cmd->error = -EINVAL;
1069		mmc_request_done(mmc, mrq);
1070		return;
1071	}
1072
1073	pm_runtime_get_sync(mmc_dev(mmc));
1074
1075	spin_lock_irqsave(&host->lock, flags);
1076
1077	host->mrq = mrq;
1078
1079	if (mrq->data)
1080		mmci_get_next_data(host, mrq->data);
1081
1082	if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1083		mmci_start_data(host, mrq->data);
1084
1085	mmci_start_command(host, mrq->cmd, 0);
1086
1087	spin_unlock_irqrestore(&host->lock, flags);
1088}
1089
1090static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1091{
1092	struct mmci_host *host = mmc_priv(mmc);
1093	struct variant_data *variant = host->variant;
1094	u32 pwr = 0;
1095	unsigned long flags;
1096	int ret;
1097
1098	pm_runtime_get_sync(mmc_dev(mmc));
1099
1100	if (host->plat->ios_handler &&
1101		host->plat->ios_handler(mmc_dev(mmc), ios))
1102			dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1103
1104	switch (ios->power_mode) {
1105	case MMC_POWER_OFF:
1106		if (host->vcc)
1107			ret = mmc_regulator_set_ocr(mmc, host->vcc, 0);
1108		break;
1109	case MMC_POWER_UP:
1110		if (host->vcc) {
1111			ret = mmc_regulator_set_ocr(mmc, host->vcc, ios->vdd);
1112			if (ret) {
1113				dev_err(mmc_dev(mmc), "unable to set OCR\n");
1114				/*
1115				 * The .set_ios() function in the mmc_host_ops
1116				 * struct return void, and failing to set the
1117				 * power should be rare so we print an error
1118				 * and return here.
1119				 */
1120				goto out;
1121			}
1122		}
1123		/*
1124		 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1125		 * and instead uses MCI_PWR_ON so apply whatever value is
1126		 * configured in the variant data.
1127		 */
1128		pwr |= variant->pwrreg_powerup;
1129
1130		break;
1131	case MMC_POWER_ON:
1132		pwr |= MCI_PWR_ON;
1133		break;
1134	}
1135
1136	if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1137		/*
1138		 * The ST Micro variant has some additional bits
1139		 * indicating signal direction for the signals in
1140		 * the SD/MMC bus and feedback-clock usage.
1141		 */
1142		pwr |= host->plat->sigdir;
1143
1144		if (ios->bus_width == MMC_BUS_WIDTH_4)
1145			pwr &= ~MCI_ST_DATA74DIREN;
1146		else if (ios->bus_width == MMC_BUS_WIDTH_1)
1147			pwr &= (~MCI_ST_DATA74DIREN &
1148				~MCI_ST_DATA31DIREN &
1149				~MCI_ST_DATA2DIREN);
1150	}
1151
1152	if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
1153		if (host->hw_designer != AMBA_VENDOR_ST)
1154			pwr |= MCI_ROD;
1155		else {
1156			/*
1157			 * The ST Micro variant use the ROD bit for something
1158			 * else and only has OD (Open Drain).
1159			 */
1160			pwr |= MCI_OD;
1161		}
1162	}
1163
1164	spin_lock_irqsave(&host->lock, flags);
1165
1166	mmci_set_clkreg(host, ios->clock);
1167	mmci_write_pwrreg(host, pwr);
1168
1169	spin_unlock_irqrestore(&host->lock, flags);
1170
1171 out:
1172	pm_runtime_mark_last_busy(mmc_dev(mmc));
1173	pm_runtime_put_autosuspend(mmc_dev(mmc));
1174}
1175
1176static int mmci_get_ro(struct mmc_host *mmc)
1177{
1178	struct mmci_host *host = mmc_priv(mmc);
1179
1180	if (host->gpio_wp == -ENOSYS)
1181		return -ENOSYS;
1182
1183	return gpio_get_value_cansleep(host->gpio_wp);
1184}
1185
1186static int mmci_get_cd(struct mmc_host *mmc)
1187{
1188	struct mmci_host *host = mmc_priv(mmc);
1189	struct mmci_platform_data *plat = host->plat;
1190	unsigned int status;
1191
1192	if (host->gpio_cd == -ENOSYS) {
1193		if (!plat->status)
1194			return 1; /* Assume always present */
1195
1196		status = plat->status(mmc_dev(host->mmc));
1197	} else
1198		status = !!gpio_get_value_cansleep(host->gpio_cd)
1199			^ plat->cd_invert;
1200
1201	/*
1202	 * Use positive logic throughout - status is zero for no card,
1203	 * non-zero for card inserted.
1204	 */
1205	return status;
1206}
1207
1208static irqreturn_t mmci_cd_irq(int irq, void *dev_id)
1209{
1210	struct mmci_host *host = dev_id;
1211
1212	mmc_detect_change(host->mmc, msecs_to_jiffies(500));
1213
1214	return IRQ_HANDLED;
1215}
1216
1217static const struct mmc_host_ops mmci_ops = {
1218	.request	= mmci_request,
1219	.pre_req	= mmci_pre_request,
1220	.post_req	= mmci_post_request,
1221	.set_ios	= mmci_set_ios,
1222	.get_ro		= mmci_get_ro,
1223	.get_cd		= mmci_get_cd,
1224};
1225
1226#ifdef CONFIG_OF
1227static void mmci_dt_populate_generic_pdata(struct device_node *np,
1228					struct mmci_platform_data *pdata)
1229{
1230	int bus_width = 0;
1231
1232	pdata->gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
1233	pdata->gpio_cd = of_get_named_gpio(np, "cd-gpios", 0);
1234
1235	if (of_get_property(np, "cd-inverted", NULL))
1236		pdata->cd_invert = true;
1237	else
1238		pdata->cd_invert = false;
1239
1240	of_property_read_u32(np, "max-frequency", &pdata->f_max);
1241	if (!pdata->f_max)
1242		pr_warn("%s has no 'max-frequency' property\n", np->full_name);
1243
1244	if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
1245		pdata->capabilities |= MMC_CAP_MMC_HIGHSPEED;
1246	if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
1247		pdata->capabilities |= MMC_CAP_SD_HIGHSPEED;
1248
1249	of_property_read_u32(np, "bus-width", &bus_width);
1250	switch (bus_width) {
1251	case 0 :
1252		/* No bus-width supplied. */
1253		break;
1254	case 4 :
1255		pdata->capabilities |= MMC_CAP_4_BIT_DATA;
1256		break;
1257	case 8 :
1258		pdata->capabilities |= MMC_CAP_8_BIT_DATA;
1259		break;
1260	default :
1261		pr_warn("%s: Unsupported bus width\n", np->full_name);
1262	}
1263}
1264#else
1265static void mmci_dt_populate_generic_pdata(struct device_node *np,
1266					struct mmci_platform_data *pdata)
1267{
1268	return;
1269}
1270#endif
1271
1272static int mmci_probe(struct amba_device *dev,
1273	const struct amba_id *id)
1274{
1275	struct mmci_platform_data *plat = dev->dev.platform_data;
1276	struct device_node *np = dev->dev.of_node;
1277	struct variant_data *variant = id->data;
1278	struct mmci_host *host;
1279	struct mmc_host *mmc;
1280	int ret;
1281
1282	/* Must have platform data or Device Tree. */
1283	if (!plat && !np) {
1284		dev_err(&dev->dev, "No plat data or DT found\n");
1285		return -EINVAL;
1286	}
1287
1288	if (!plat) {
1289		plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1290		if (!plat)
1291			return -ENOMEM;
1292	}
1293
1294	if (np)
1295		mmci_dt_populate_generic_pdata(np, plat);
1296
1297	ret = amba_request_regions(dev, DRIVER_NAME);
1298	if (ret)
1299		goto out;
1300
1301	mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
1302	if (!mmc) {
1303		ret = -ENOMEM;
1304		goto rel_regions;
1305	}
1306
1307	host = mmc_priv(mmc);
1308	host->mmc = mmc;
1309
1310	host->gpio_wp = -ENOSYS;
1311	host->gpio_cd = -ENOSYS;
1312	host->gpio_cd_irq = -1;
1313
1314	host->hw_designer = amba_manf(dev);
1315	host->hw_revision = amba_rev(dev);
1316	dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1317	dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
1318
1319	host->clk = clk_get(&dev->dev, NULL);
1320	if (IS_ERR(host->clk)) {
1321		ret = PTR_ERR(host->clk);
1322		host->clk = NULL;
1323		goto host_free;
1324	}
1325
1326	ret = clk_prepare_enable(host->clk);
1327	if (ret)
1328		goto clk_free;
1329
1330	host->plat = plat;
1331	host->variant = variant;
1332	host->mclk = clk_get_rate(host->clk);
1333	/*
1334	 * According to the spec, mclk is max 100 MHz,
1335	 * so we try to adjust the clock down to this,
1336	 * (if possible).
1337	 */
1338	if (host->mclk > 100000000) {
1339		ret = clk_set_rate(host->clk, 100000000);
1340		if (ret < 0)
1341			goto clk_disable;
1342		host->mclk = clk_get_rate(host->clk);
1343		dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1344			host->mclk);
1345	}
1346	host->phybase = dev->res.start;
1347	host->base = ioremap(dev->res.start, resource_size(&dev->res));
1348	if (!host->base) {
1349		ret = -ENOMEM;
1350		goto clk_disable;
1351	}
1352
1353	mmc->ops = &mmci_ops;
1354	/*
1355	 * The ARM and ST versions of the block have slightly different
1356	 * clock divider equations which means that the minimum divider
1357	 * differs too.
1358	 */
1359	if (variant->st_clkdiv)
1360		mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1361	else
1362		mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
1363	/*
1364	 * If the platform data supplies a maximum operating
1365	 * frequency, this takes precedence. Else, we fall back
1366	 * to using the module parameter, which has a (low)
1367	 * default value in case it is not specified. Either
1368	 * value must not exceed the clock rate into the block,
1369	 * of course.
1370	 */
1371	if (plat->f_max)
1372		mmc->f_max = min(host->mclk, plat->f_max);
1373	else
1374		mmc->f_max = min(host->mclk, fmax);
1375	dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1376
1377	host->pinctrl = devm_pinctrl_get(&dev->dev);
1378	if (IS_ERR(host->pinctrl)) {
1379		ret = PTR_ERR(host->pinctrl);
1380		goto clk_disable;
1381	}
1382
1383	host->pins_default = pinctrl_lookup_state(host->pinctrl,
1384			PINCTRL_STATE_DEFAULT);
1385
1386	/* enable pins to be muxed in and configured */
1387	if (!IS_ERR(host->pins_default)) {
1388		ret = pinctrl_select_state(host->pinctrl, host->pins_default);
1389		if (ret)
1390			dev_warn(&dev->dev, "could not set default pins\n");
1391	} else
1392		dev_warn(&dev->dev, "could not get default pinstate\n");
1393
1394#ifdef CONFIG_REGULATOR
1395	/* If we're using the regulator framework, try to fetch a regulator */
1396	host->vcc = regulator_get(&dev->dev, "vmmc");
1397	if (IS_ERR(host->vcc))
1398		host->vcc = NULL;
1399	else {
1400		int mask = mmc_regulator_get_ocrmask(host->vcc);
1401
1402		if (mask < 0)
1403			dev_err(&dev->dev, "error getting OCR mask (%d)\n",
1404				mask);
1405		else {
1406			host->mmc->ocr_avail = (u32) mask;
1407			if (plat->ocr_mask)
1408				dev_warn(&dev->dev,
1409				 "Provided ocr_mask/setpower will not be used "
1410				 "(using regulator instead)\n");
1411		}
1412	}
1413#endif
1414	/* Fall back to platform data if no regulator is found */
1415	if (host->vcc == NULL)
1416		mmc->ocr_avail = plat->ocr_mask;
1417	mmc->caps = plat->capabilities;
1418	mmc->caps2 = plat->capabilities2;
1419
1420	/* We support these PM capabilities. */
1421	mmc->pm_caps = MMC_PM_KEEP_POWER;
1422
1423	/*
1424	 * We can do SGIO
1425	 */
1426	mmc->max_segs = NR_SG;
1427
1428	/*
1429	 * Since only a certain number of bits are valid in the data length
1430	 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1431	 * single request.
1432	 */
1433	mmc->max_req_size = (1 << variant->datalength_bits) - 1;
1434
1435	/*
1436	 * Set the maximum segment size.  Since we aren't doing DMA
1437	 * (yet) we are only limited by the data length register.
1438	 */
1439	mmc->max_seg_size = mmc->max_req_size;
1440
1441	/*
1442	 * Block size can be up to 2048 bytes, but must be a power of two.
1443	 */
1444	mmc->max_blk_size = 1 << 11;
1445
1446	/*
1447	 * Limit the number of blocks transferred so that we don't overflow
1448	 * the maximum request size.
1449	 */
1450	mmc->max_blk_count = mmc->max_req_size >> 11;
1451
1452	spin_lock_init(&host->lock);
1453
1454	writel(0, host->base + MMCIMASK0);
1455	writel(0, host->base + MMCIMASK1);
1456	writel(0xfff, host->base + MMCICLEAR);
1457
1458	if (plat->gpio_cd == -EPROBE_DEFER) {
1459		ret = -EPROBE_DEFER;
1460		goto err_gpio_cd;
1461	}
1462	if (gpio_is_valid(plat->gpio_cd)) {
1463		ret = gpio_request(plat->gpio_cd, DRIVER_NAME " (cd)");
1464		if (ret == 0)
1465			ret = gpio_direction_input(plat->gpio_cd);
1466		if (ret == 0)
1467			host->gpio_cd = plat->gpio_cd;
1468		else if (ret != -ENOSYS)
1469			goto err_gpio_cd;
1470
1471		/*
1472		 * A gpio pin that will detect cards when inserted and removed
1473		 * will most likely want to trigger on the edges if it is
1474		 * 0 when ejected and 1 when inserted (or mutatis mutandis
1475		 * for the inverted case) so we request triggers on both
1476		 * edges.
1477		 */
1478		ret = request_any_context_irq(gpio_to_irq(plat->gpio_cd),
1479				mmci_cd_irq,
1480				IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1481				DRIVER_NAME " (cd)", host);
1482		if (ret >= 0)
1483			host->gpio_cd_irq = gpio_to_irq(plat->gpio_cd);
1484	}
1485	if (plat->gpio_wp == -EPROBE_DEFER) {
1486		ret = -EPROBE_DEFER;
1487		goto err_gpio_wp;
1488	}
1489	if (gpio_is_valid(plat->gpio_wp)) {
1490		ret = gpio_request(plat->gpio_wp, DRIVER_NAME " (wp)");
1491		if (ret == 0)
1492			ret = gpio_direction_input(plat->gpio_wp);
1493		if (ret == 0)
1494			host->gpio_wp = plat->gpio_wp;
1495		else if (ret != -ENOSYS)
1496			goto err_gpio_wp;
1497	}
1498
1499	if ((host->plat->status || host->gpio_cd != -ENOSYS)
1500	    && host->gpio_cd_irq < 0)
1501		mmc->caps |= MMC_CAP_NEEDS_POLL;
1502
1503	ret = request_irq(dev->irq[0], mmci_irq, IRQF_SHARED, DRIVER_NAME " (cmd)", host);
1504	if (ret)
1505		goto unmap;
1506
1507	if (!dev->irq[1])
1508		host->singleirq = true;
1509	else {
1510		ret = request_irq(dev->irq[1], mmci_pio_irq, IRQF_SHARED,
1511				  DRIVER_NAME " (pio)", host);
1512		if (ret)
1513			goto irq0_free;
1514	}
1515
1516	writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1517
1518	amba_set_drvdata(dev, mmc);
1519
1520	dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1521		 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1522		 amba_rev(dev), (unsigned long long)dev->res.start,
1523		 dev->irq[0], dev->irq[1]);
1524
1525	mmci_dma_setup(host);
1526
1527	pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1528	pm_runtime_use_autosuspend(&dev->dev);
1529	pm_runtime_put(&dev->dev);
1530
1531	mmc_add_host(mmc);
1532
1533	return 0;
1534
1535 irq0_free:
1536	free_irq(dev->irq[0], host);
1537 unmap:
1538	if (host->gpio_wp != -ENOSYS)
1539		gpio_free(host->gpio_wp);
1540 err_gpio_wp:
1541	if (host->gpio_cd_irq >= 0)
1542		free_irq(host->gpio_cd_irq, host);
1543	if (host->gpio_cd != -ENOSYS)
1544		gpio_free(host->gpio_cd);
1545 err_gpio_cd:
1546	iounmap(host->base);
1547 clk_disable:
1548	clk_disable_unprepare(host->clk);
1549 clk_free:
1550	clk_put(host->clk);
1551 host_free:
1552	mmc_free_host(mmc);
1553 rel_regions:
1554	amba_release_regions(dev);
1555 out:
1556	return ret;
1557}
1558
1559static int mmci_remove(struct amba_device *dev)
1560{
1561	struct mmc_host *mmc = amba_get_drvdata(dev);
1562
1563	amba_set_drvdata(dev, NULL);
1564
1565	if (mmc) {
1566		struct mmci_host *host = mmc_priv(mmc);
1567
1568		/*
1569		 * Undo pm_runtime_put() in probe.  We use the _sync
1570		 * version here so that we can access the primecell.
1571		 */
1572		pm_runtime_get_sync(&dev->dev);
1573
1574		mmc_remove_host(mmc);
1575
1576		writel(0, host->base + MMCIMASK0);
1577		writel(0, host->base + MMCIMASK1);
1578
1579		writel(0, host->base + MMCICOMMAND);
1580		writel(0, host->base + MMCIDATACTRL);
1581
1582		mmci_dma_release(host);
1583		free_irq(dev->irq[0], host);
1584		if (!host->singleirq)
1585			free_irq(dev->irq[1], host);
1586
1587		if (host->gpio_wp != -ENOSYS)
1588			gpio_free(host->gpio_wp);
1589		if (host->gpio_cd_irq >= 0)
1590			free_irq(host->gpio_cd_irq, host);
1591		if (host->gpio_cd != -ENOSYS)
1592			gpio_free(host->gpio_cd);
1593
1594		iounmap(host->base);
1595		clk_disable_unprepare(host->clk);
1596		clk_put(host->clk);
1597
1598		if (host->vcc)
1599			mmc_regulator_set_ocr(mmc, host->vcc, 0);
1600		regulator_put(host->vcc);
1601
1602		mmc_free_host(mmc);
1603
1604		amba_release_regions(dev);
1605	}
1606
1607	return 0;
1608}
1609
1610#ifdef CONFIG_SUSPEND
1611static int mmci_suspend(struct device *dev)
1612{
1613	struct amba_device *adev = to_amba_device(dev);
1614	struct mmc_host *mmc = amba_get_drvdata(adev);
1615	int ret = 0;
1616
1617	if (mmc) {
1618		struct mmci_host *host = mmc_priv(mmc);
1619
1620		ret = mmc_suspend_host(mmc);
1621		if (ret == 0) {
1622			pm_runtime_get_sync(dev);
1623			writel(0, host->base + MMCIMASK0);
1624		}
1625	}
1626
1627	return ret;
1628}
1629
1630static int mmci_resume(struct device *dev)
1631{
1632	struct amba_device *adev = to_amba_device(dev);
1633	struct mmc_host *mmc = amba_get_drvdata(adev);
1634	int ret = 0;
1635
1636	if (mmc) {
1637		struct mmci_host *host = mmc_priv(mmc);
1638
1639		writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1640		pm_runtime_put(dev);
1641
1642		ret = mmc_resume_host(mmc);
1643	}
1644
1645	return ret;
1646}
1647#endif
1648
1649static const struct dev_pm_ops mmci_dev_pm_ops = {
1650	SET_SYSTEM_SLEEP_PM_OPS(mmci_suspend, mmci_resume)
1651};
1652
1653static struct amba_id mmci_ids[] = {
1654	{
1655		.id	= 0x00041180,
1656		.mask	= 0xff0fffff,
1657		.data	= &variant_arm,
1658	},
1659	{
1660		.id	= 0x01041180,
1661		.mask	= 0xff0fffff,
1662		.data	= &variant_arm_extended_fifo,
1663	},
1664	{
1665		.id	= 0x00041181,
1666		.mask	= 0x000fffff,
1667		.data	= &variant_arm,
1668	},
1669	/* ST Micro variants */
1670	{
1671		.id     = 0x00180180,
1672		.mask   = 0x00ffffff,
1673		.data	= &variant_u300,
1674	},
1675	{
1676		.id     = 0x10180180,
1677		.mask   = 0xf0ffffff,
1678		.data	= &variant_nomadik,
1679	},
1680	{
1681		.id     = 0x00280180,
1682		.mask   = 0x00ffffff,
1683		.data	= &variant_u300,
1684	},
1685	{
1686		.id     = 0x00480180,
1687		.mask   = 0xf0ffffff,
1688		.data	= &variant_ux500,
1689	},
1690	{
1691		.id     = 0x10480180,
1692		.mask   = 0xf0ffffff,
1693		.data	= &variant_ux500v2,
1694	},
1695	{ 0, 0 },
1696};
1697
1698MODULE_DEVICE_TABLE(amba, mmci_ids);
1699
1700static struct amba_driver mmci_driver = {
1701	.drv		= {
1702		.name	= DRIVER_NAME,
1703		.pm	= &mmci_dev_pm_ops,
1704	},
1705	.probe		= mmci_probe,
1706	.remove		= mmci_remove,
1707	.id_table	= mmci_ids,
1708};
1709
1710module_amba_driver(mmci_driver);
1711
1712module_param(fmax, uint, 0444);
1713
1714MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1715MODULE_LICENSE("GPL");
1716