blob: 0d3ee08662a9c07bb940960b876f674791768aa8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Pierre Ossman70f10482007-07-11 20:04:50 +02002 * linux/drivers/mmc/host/mmci.c - ARM PrimeCell MMCI PL180/1 driver
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2003 Deep Blue Solutions, Ltd, All Rights Reserved.
Russell Kingc8ebae32011-01-11 19:35:53 +00005 * Copyright (C) 2010 ST-Ericsson SA
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/module.h>
12#include <linux/moduleparam.h>
13#include <linux/init.h>
14#include <linux/ioport.h>
15#include <linux/device.h>
Ulf Hanssonef289982014-03-17 13:56:32 +010016#include <linux/io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/interrupt.h>
Russell King613b1522011-01-30 21:06:53 +000018#include <linux/kernel.h>
Lee Jones000bc9d2012-04-16 10:18:43 +010019#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/delay.h>
21#include <linux/err.h>
22#include <linux/highmem.h>
Nicolas Pitre019a5f52007-10-11 01:06:03 -040023#include <linux/log2.h>
Ulf Hansson70be2082013-01-07 15:35:06 +010024#include <linux/mmc/pm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mmc/host.h>
Linus Walleij34177802010-10-19 12:43:58 +010026#include <linux/mmc/card.h>
Ulf Hanssond2762092014-03-17 13:56:19 +010027#include <linux/mmc/slot-gpio.h>
Russell Kinga62c80e2006-01-07 13:52:45 +000028#include <linux/amba/bus.h>
Russell Kingf8ce2542006-01-07 16:15:52 +000029#include <linux/clk.h>
Jens Axboebd6dee62007-10-24 09:01:09 +020030#include <linux/scatterlist.h>
Russell King89001442009-07-09 15:16:07 +010031#include <linux/gpio.h>
Lee Jones9a597012012-04-12 16:51:13 +010032#include <linux/of_gpio.h>
Linus Walleij34e84f32009-09-22 14:41:40 +010033#include <linux/regulator/consumer.h>
Russell Kingc8ebae32011-01-11 19:35:53 +000034#include <linux/dmaengine.h>
35#include <linux/dma-mapping.h>
36#include <linux/amba/mmci.h>
Russell King1c3be362011-08-14 09:17:05 +010037#include <linux/pm_runtime.h>
Viresh Kumar258aea72012-02-01 16:12:19 +053038#include <linux/types.h>
Linus Walleija9a83782012-10-29 14:39:30 +010039#include <linux/pinctrl/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Russell King7b09cda2005-07-01 12:02:59 +010041#include <asm/div64.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/io.h>
Russell Kingc6b8fda2005-10-28 14:05:16 +010043#include <asm/sizes.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45#include "mmci.h"
46
47#define DRIVER_NAME "mmci-pl18x"
48
Linus Torvalds1da177e2005-04-16 15:20:36 -070049static unsigned int fmax = 515633;
50
Rabin Vincent4956e102010-07-21 12:54:40 +010051/**
52 * struct variant_data - MMCI variant-specific quirks
53 * @clkreg: default value for MCICLOCK register
Rabin Vincent4380c142010-07-21 12:55:18 +010054 * @clkreg_enable: enable value for MMCICLOCK register
Rabin Vincent08458ef2010-07-21 12:55:59 +010055 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010056 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
57 * is asserted (likewise for RX)
58 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
59 * is asserted (likewise for RX)
Linus Walleij34177802010-10-19 12:43:58 +010060 * @sdio: variant supports SDIO
Linus Walleijb70a67f2010-12-06 09:24:14 +010061 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Philippe Langlais1784b152011-03-25 08:51:52 +010062 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010063 * @pwrreg_powerup: power up value for MMCIPOWER register
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010064 * @signal_direction: input/out direction of bus signals can be indicated
Ulf Hanssonf4670da2013-01-09 17:19:54 +010065 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock
Ulf Hansson01259622013-05-15 20:53:22 +010066 * @busy_detect: true if busy detection on dat0 is supported
Ulf Hansson1ff44432013-09-04 09:05:17 +010067 * @pwrreg_nopower: bits in MMCIPOWER don't controls ext. power supply
Rabin Vincent4956e102010-07-21 12:54:40 +010068 */
69struct variant_data {
70 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010071 unsigned int clkreg_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010072 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010073 unsigned int fifosize;
74 unsigned int fifohalfsize;
Linus Walleij34177802010-10-19 12:43:58 +010075 bool sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010076 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010077 bool blksz_datactrl16;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010078 u32 pwrreg_powerup;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010079 bool signal_direction;
Ulf Hanssonf4670da2013-01-09 17:19:54 +010080 bool pwrreg_clkgate;
Ulf Hansson01259622013-05-15 20:53:22 +010081 bool busy_detect;
Ulf Hansson1ff44432013-09-04 09:05:17 +010082 bool pwrreg_nopower;
Rabin Vincent4956e102010-07-21 12:54:40 +010083};
84
85static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +010086 .fifosize = 16 * 4,
87 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +010088 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010089 .pwrreg_powerup = MCI_PWR_UP,
Rabin Vincent4956e102010-07-21 12:54:40 +010090};
91
Pawel Moll768fbc12011-03-11 17:18:07 +000092static struct variant_data variant_arm_extended_fifo = {
93 .fifosize = 128 * 4,
94 .fifohalfsize = 64 * 4,
95 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010096 .pwrreg_powerup = MCI_PWR_UP,
Pawel Moll768fbc12011-03-11 17:18:07 +000097};
98
Pawel Moll3a372982013-01-24 14:12:45 +010099static struct variant_data variant_arm_extended_fifo_hwfc = {
100 .fifosize = 128 * 4,
101 .fifohalfsize = 64 * 4,
102 .clkreg_enable = MCI_ARM_HWFCEN,
103 .datalength_bits = 16,
104 .pwrreg_powerup = MCI_PWR_UP,
105};
106
Rabin Vincent4956e102010-07-21 12:54:40 +0100107static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100108 .fifosize = 16 * 4,
109 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +0100110 .clkreg_enable = MCI_ST_U300_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100111 .datalength_bits = 16,
Linus Walleij34177802010-10-19 12:43:58 +0100112 .sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100113 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100114 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100115 .pwrreg_clkgate = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100116 .pwrreg_nopower = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100117};
118
Linus Walleij34fd4212012-04-10 17:43:59 +0100119static struct variant_data variant_nomadik = {
120 .fifosize = 16 * 4,
121 .fifohalfsize = 8 * 4,
122 .clkreg = MCI_CLK_ENABLE,
123 .datalength_bits = 24,
124 .sdio = true,
125 .st_clkdiv = true,
126 .pwrreg_powerup = MCI_PWR_ON,
127 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100128 .pwrreg_clkgate = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100129 .pwrreg_nopower = true,
Linus Walleij34fd4212012-04-10 17:43:59 +0100130};
131
Rabin Vincent4956e102010-07-21 12:54:40 +0100132static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100133 .fifosize = 30 * 4,
134 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100135 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100136 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100137 .datalength_bits = 24,
Linus Walleij34177802010-10-19 12:43:58 +0100138 .sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100139 .st_clkdiv = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100140 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100141 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100142 .pwrreg_clkgate = true,
Ulf Hansson01259622013-05-15 20:53:22 +0100143 .busy_detect = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100144 .pwrreg_nopower = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100145};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100146
Philippe Langlais1784b152011-03-25 08:51:52 +0100147static struct variant_data variant_ux500v2 = {
148 .fifosize = 30 * 4,
149 .fifohalfsize = 8 * 4,
150 .clkreg = MCI_CLK_ENABLE,
151 .clkreg_enable = MCI_ST_UX500_HWFCEN,
152 .datalength_bits = 24,
153 .sdio = true,
154 .st_clkdiv = true,
155 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100156 .pwrreg_powerup = MCI_PWR_ON,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100157 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100158 .pwrreg_clkgate = true,
Ulf Hansson01259622013-05-15 20:53:22 +0100159 .busy_detect = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100160 .pwrreg_nopower = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100161};
162
Ulf Hansson01259622013-05-15 20:53:22 +0100163static int mmci_card_busy(struct mmc_host *mmc)
164{
165 struct mmci_host *host = mmc_priv(mmc);
166 unsigned long flags;
167 int busy = 0;
168
169 pm_runtime_get_sync(mmc_dev(mmc));
170
171 spin_lock_irqsave(&host->lock, flags);
172 if (readl(host->base + MMCISTATUS) & MCI_ST_CARDBUSY)
173 busy = 1;
174 spin_unlock_irqrestore(&host->lock, flags);
175
176 pm_runtime_mark_last_busy(mmc_dev(mmc));
177 pm_runtime_put_autosuspend(mmc_dev(mmc));
178
179 return busy;
180}
181
Linus Walleija6a64642009-09-14 12:56:14 +0100182/*
Ulf Hansson653a7612013-01-21 21:29:34 +0100183 * Validate mmc prerequisites
184 */
185static int mmci_validate_data(struct mmci_host *host,
186 struct mmc_data *data)
187{
188 if (!data)
189 return 0;
190
191 if (!is_power_of_2(data->blksz)) {
192 dev_err(mmc_dev(host->mmc),
193 "unsupported block size (%d bytes)\n", data->blksz);
194 return -EINVAL;
195 }
196
197 return 0;
198}
199
Ulf Hanssonf829c042013-09-04 09:01:15 +0100200static void mmci_reg_delay(struct mmci_host *host)
201{
202 /*
203 * According to the spec, at least three feedback clock cycles
204 * of max 52 MHz must pass between two writes to the MMCICLOCK reg.
205 * Three MCLK clock cycles must pass between two MMCIPOWER reg writes.
206 * Worst delay time during card init is at 100 kHz => 30 us.
207 * Worst delay time when up and running is at 25 MHz => 120 ns.
208 */
209 if (host->cclk < 25000000)
210 udelay(30);
211 else
212 ndelay(120);
213}
214
Ulf Hansson653a7612013-01-21 21:29:34 +0100215/*
Linus Walleija6a64642009-09-14 12:56:14 +0100216 * This must be called with host->lock held
217 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100218static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
219{
220 if (host->clk_reg != clk) {
221 host->clk_reg = clk;
222 writel(clk, host->base + MMCICLOCK);
223 }
224}
225
226/*
227 * This must be called with host->lock held
228 */
229static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
230{
231 if (host->pwr_reg != pwr) {
232 host->pwr_reg = pwr;
233 writel(pwr, host->base + MMCIPOWER);
234 }
235}
236
237/*
238 * This must be called with host->lock held
239 */
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100240static void mmci_write_datactrlreg(struct mmci_host *host, u32 datactrl)
241{
Ulf Hansson01259622013-05-15 20:53:22 +0100242 /* Keep ST Micro busy mode if enabled */
243 datactrl |= host->datactrl_reg & MCI_ST_DPSM_BUSYMODE;
244
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100245 if (host->datactrl_reg != datactrl) {
246 host->datactrl_reg = datactrl;
247 writel(datactrl, host->base + MMCIDATACTRL);
248 }
249}
250
251/*
252 * This must be called with host->lock held
253 */
Linus Walleija6a64642009-09-14 12:56:14 +0100254static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
255{
Rabin Vincent4956e102010-07-21 12:54:40 +0100256 struct variant_data *variant = host->variant;
257 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100258
Ulf Hanssonc58a8502013-05-13 15:40:03 +0100259 /* Make sure cclk reflects the current calculated clock */
260 host->cclk = 0;
261
Linus Walleija6a64642009-09-14 12:56:14 +0100262 if (desired) {
263 if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100264 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100265 if (variant->st_clkdiv)
266 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100267 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100268 } else if (variant->st_clkdiv) {
269 /*
270 * DB8500 TRM says f = mclk / (clkdiv + 2)
271 * => clkdiv = (mclk / f) - 2
272 * Round the divider up so we don't exceed the max
273 * frequency
274 */
275 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
276 if (clk >= 256)
277 clk = 255;
278 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100279 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100280 /*
281 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
282 * => clkdiv = mclk / (2 * f) - 1
283 */
Linus Walleija6a64642009-09-14 12:56:14 +0100284 clk = host->mclk / (2 * desired) - 1;
285 if (clk >= 256)
286 clk = 255;
287 host->cclk = host->mclk / (2 * (clk + 1));
288 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100289
290 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100291 clk |= MCI_CLK_ENABLE;
292 /* This hasn't proven to be worthwhile */
293 /* clk |= MCI_CLK_PWRSAVE; */
294 }
295
Ulf Hanssonc58a8502013-05-13 15:40:03 +0100296 /* Set actual clock for debug */
297 host->mmc->actual_clock = host->cclk;
298
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100299 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100300 clk |= MCI_4BIT_BUS;
301 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
302 clk |= MCI_ST_8BIT_BUS;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100303
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100304 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
305 clk |= MCI_ST_UX500_NEG_EDGE;
306
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100307 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100308}
309
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310static void
311mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
312{
313 writel(0, host->base + MMCICOMMAND);
314
Russell Kinge47c2222007-01-08 16:42:51 +0000315 BUG_ON(host->data);
316
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 host->mrq = NULL;
318 host->cmd = NULL;
319
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100321
322 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
323 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
325
Linus Walleij2686b4b2010-10-19 12:39:48 +0100326static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
327{
328 void __iomem *base = host->base;
329
330 if (host->singleirq) {
331 unsigned int mask0 = readl(base + MMCIMASK0);
332
333 mask0 &= ~MCI_IRQ1MASK;
334 mask0 |= mask;
335
336 writel(mask0, base + MMCIMASK0);
337 }
338
339 writel(mask, base + MMCIMASK1);
340}
341
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342static void mmci_stop_data(struct mmci_host *host)
343{
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100344 mmci_write_datactrlreg(host, 0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100345 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 host->data = NULL;
347}
348
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100349static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
350{
351 unsigned int flags = SG_MITER_ATOMIC;
352
353 if (data->flags & MMC_DATA_READ)
354 flags |= SG_MITER_TO_SG;
355 else
356 flags |= SG_MITER_FROM_SG;
357
358 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
359}
360
Russell Kingc8ebae32011-01-11 19:35:53 +0000361/*
362 * All the DMA operation mode stuff goes inside this ifdef.
363 * This assumes that you have a generic DMA device interface,
364 * no custom DMA interfaces are supported.
365 */
366#ifdef CONFIG_DMA_ENGINE
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500367static void mmci_dma_setup(struct mmci_host *host)
Russell Kingc8ebae32011-01-11 19:35:53 +0000368{
369 struct mmci_platform_data *plat = host->plat;
370 const char *rxname, *txname;
371 dma_cap_mask_t mask;
372
Lee Jones1fd83f02013-05-03 12:51:17 +0100373 host->dma_rx_channel = dma_request_slave_channel(mmc_dev(host->mmc), "rx");
374 host->dma_tx_channel = dma_request_slave_channel(mmc_dev(host->mmc), "tx");
Russell Kingc8ebae32011-01-11 19:35:53 +0000375
Per Forlin58c7ccb2011-07-01 18:55:24 +0200376 /* initialize pre request cookie */
377 host->next_data.cookie = 1;
378
Russell Kingc8ebae32011-01-11 19:35:53 +0000379 /* Try to acquire a generic DMA engine slave channel */
380 dma_cap_zero(mask);
381 dma_cap_set(DMA_SLAVE, mask);
382
Lee Jones1fd83f02013-05-03 12:51:17 +0100383 if (plat && plat->dma_filter) {
384 if (!host->dma_rx_channel && plat->dma_rx_param) {
385 host->dma_rx_channel = dma_request_channel(mask,
386 plat->dma_filter,
387 plat->dma_rx_param);
388 /* E.g if no DMA hardware is present */
389 if (!host->dma_rx_channel)
390 dev_err(mmc_dev(host->mmc), "no RX DMA channel\n");
391 }
392
393 if (!host->dma_tx_channel && plat->dma_tx_param) {
394 host->dma_tx_channel = dma_request_channel(mask,
395 plat->dma_filter,
396 plat->dma_tx_param);
397 if (!host->dma_tx_channel)
398 dev_warn(mmc_dev(host->mmc), "no TX DMA channel\n");
399 }
400 }
401
Russell Kingc8ebae32011-01-11 19:35:53 +0000402 /*
403 * If only an RX channel is specified, the driver will
404 * attempt to use it bidirectionally, however if it is
405 * is specified but cannot be located, DMA will be disabled.
406 */
Lee Jones1fd83f02013-05-03 12:51:17 +0100407 if (host->dma_rx_channel && !host->dma_tx_channel)
Russell Kingc8ebae32011-01-11 19:35:53 +0000408 host->dma_tx_channel = host->dma_rx_channel;
Russell Kingc8ebae32011-01-11 19:35:53 +0000409
410 if (host->dma_rx_channel)
411 rxname = dma_chan_name(host->dma_rx_channel);
412 else
413 rxname = "none";
414
415 if (host->dma_tx_channel)
416 txname = dma_chan_name(host->dma_tx_channel);
417 else
418 txname = "none";
419
420 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
421 rxname, txname);
422
423 /*
424 * Limit the maximum segment size in any SG entry according to
425 * the parameters of the DMA engine device.
426 */
427 if (host->dma_tx_channel) {
428 struct device *dev = host->dma_tx_channel->device->dev;
429 unsigned int max_seg_size = dma_get_max_seg_size(dev);
430
431 if (max_seg_size < host->mmc->max_seg_size)
432 host->mmc->max_seg_size = max_seg_size;
433 }
434 if (host->dma_rx_channel) {
435 struct device *dev = host->dma_rx_channel->device->dev;
436 unsigned int max_seg_size = dma_get_max_seg_size(dev);
437
438 if (max_seg_size < host->mmc->max_seg_size)
439 host->mmc->max_seg_size = max_seg_size;
440 }
441}
442
443/*
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500444 * This is used in or so inline it
Russell Kingc8ebae32011-01-11 19:35:53 +0000445 * so it can be discarded.
446 */
447static inline void mmci_dma_release(struct mmci_host *host)
448{
449 struct mmci_platform_data *plat = host->plat;
450
451 if (host->dma_rx_channel)
452 dma_release_channel(host->dma_rx_channel);
453 if (host->dma_tx_channel && plat->dma_tx_param)
454 dma_release_channel(host->dma_tx_channel);
455 host->dma_rx_channel = host->dma_tx_channel = NULL;
456}
457
Ulf Hansson653a7612013-01-21 21:29:34 +0100458static void mmci_dma_data_error(struct mmci_host *host)
459{
460 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
461 dmaengine_terminate_all(host->dma_current);
462 host->dma_current = NULL;
463 host->dma_desc_current = NULL;
464 host->data->host_cookie = 0;
465}
466
Russell Kingc8ebae32011-01-11 19:35:53 +0000467static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
468{
Ulf Hansson653a7612013-01-21 21:29:34 +0100469 struct dma_chan *chan;
Russell Kingc8ebae32011-01-11 19:35:53 +0000470 enum dma_data_direction dir;
Ulf Hansson653a7612013-01-21 21:29:34 +0100471
472 if (data->flags & MMC_DATA_READ) {
473 dir = DMA_FROM_DEVICE;
474 chan = host->dma_rx_channel;
475 } else {
476 dir = DMA_TO_DEVICE;
477 chan = host->dma_tx_channel;
478 }
479
480 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
481}
482
483static void mmci_dma_finalize(struct mmci_host *host, struct mmc_data *data)
484{
Russell Kingc8ebae32011-01-11 19:35:53 +0000485 u32 status;
486 int i;
487
488 /* Wait up to 1ms for the DMA to complete */
489 for (i = 0; ; i++) {
490 status = readl(host->base + MMCISTATUS);
491 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
492 break;
493 udelay(10);
494 }
495
496 /*
497 * Check to see whether we still have some data left in the FIFO -
498 * this catches DMA controllers which are unable to monitor the
499 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
500 * contiguous buffers. On TX, we'll get a FIFO underrun error.
501 */
502 if (status & MCI_RXDATAAVLBLMASK) {
Ulf Hansson653a7612013-01-21 21:29:34 +0100503 mmci_dma_data_error(host);
Russell Kingc8ebae32011-01-11 19:35:53 +0000504 if (!data->error)
505 data->error = -EIO;
506 }
507
Per Forlin58c7ccb2011-07-01 18:55:24 +0200508 if (!data->host_cookie)
Ulf Hansson653a7612013-01-21 21:29:34 +0100509 mmci_dma_unmap(host, data);
Russell Kingc8ebae32011-01-11 19:35:53 +0000510
511 /*
512 * Use of DMA with scatter-gather is impossible.
513 * Give up with DMA and switch back to PIO mode.
514 */
515 if (status & MCI_RXDATAAVLBLMASK) {
516 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
517 mmci_dma_release(host);
518 }
Ulf Hansson653a7612013-01-21 21:29:34 +0100519
520 host->dma_current = NULL;
521 host->dma_desc_current = NULL;
Russell Kingc8ebae32011-01-11 19:35:53 +0000522}
523
Ulf Hansson653a7612013-01-21 21:29:34 +0100524/* prepares DMA channel and DMA descriptor, returns non-zero on failure */
525static int __mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
526 struct dma_chan **dma_chan,
527 struct dma_async_tx_descriptor **dma_desc)
Russell Kingc8ebae32011-01-11 19:35:53 +0000528{
529 struct variant_data *variant = host->variant;
530 struct dma_slave_config conf = {
531 .src_addr = host->phybase + MMCIFIFO,
532 .dst_addr = host->phybase + MMCIFIFO,
533 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
534 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
535 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
536 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530537 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000538 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000539 struct dma_chan *chan;
540 struct dma_device *device;
541 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530542 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000543 int nr_sg;
544
Russell Kingc8ebae32011-01-11 19:35:53 +0000545 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530546 conf.direction = DMA_DEV_TO_MEM;
547 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000548 chan = host->dma_rx_channel;
549 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530550 conf.direction = DMA_MEM_TO_DEV;
551 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000552 chan = host->dma_tx_channel;
553 }
554
555 /* If there's no DMA channel, fall back to PIO */
556 if (!chan)
557 return -EINVAL;
558
559 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200560 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000561 return -EINVAL;
562
563 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530564 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000565 if (nr_sg == 0)
566 return -EINVAL;
567
568 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500569 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000570 conf.direction, DMA_CTRL_ACK);
571 if (!desc)
572 goto unmap_exit;
573
Ulf Hansson653a7612013-01-21 21:29:34 +0100574 *dma_chan = chan;
575 *dma_desc = desc;
Russell Kingc8ebae32011-01-11 19:35:53 +0000576
Per Forlin58c7ccb2011-07-01 18:55:24 +0200577 return 0;
578
579 unmap_exit:
Vinod Koul05f57992011-10-14 10:45:11 +0530580 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200581 return -ENOMEM;
582}
583
Ulf Hansson653a7612013-01-21 21:29:34 +0100584static inline int mmci_dma_prep_data(struct mmci_host *host,
585 struct mmc_data *data)
586{
587 /* Check if next job is already prepared. */
588 if (host->dma_current && host->dma_desc_current)
589 return 0;
590
591 /* No job were prepared thus do it now. */
592 return __mmci_dma_prep_data(host, data, &host->dma_current,
593 &host->dma_desc_current);
594}
595
596static inline int mmci_dma_prep_next(struct mmci_host *host,
597 struct mmc_data *data)
598{
599 struct mmci_host_next *nd = &host->next_data;
600 return __mmci_dma_prep_data(host, data, &nd->dma_chan, &nd->dma_desc);
601}
602
Per Forlin58c7ccb2011-07-01 18:55:24 +0200603static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
604{
605 int ret;
606 struct mmc_data *data = host->data;
607
Ulf Hansson653a7612013-01-21 21:29:34 +0100608 ret = mmci_dma_prep_data(host, host->data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200609 if (ret)
610 return ret;
611
612 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000613 dev_vdbg(mmc_dev(host->mmc),
614 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
615 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200616 dmaengine_submit(host->dma_desc_current);
617 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000618
619 datactrl |= MCI_DPSM_DMAENABLE;
620
621 /* Trigger the DMA transfer */
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100622 mmci_write_datactrlreg(host, datactrl);
Russell Kingc8ebae32011-01-11 19:35:53 +0000623
624 /*
625 * Let the MMCI say when the data is ended and it's time
626 * to fire next DMA request. When that happens, MMCI will
627 * call mmci_data_end()
628 */
629 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
630 host->base + MMCIMASK0);
631 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000632}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200633
634static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
635{
636 struct mmci_host_next *next = &host->next_data;
637
Ulf Hansson653a7612013-01-21 21:29:34 +0100638 WARN_ON(data->host_cookie && data->host_cookie != next->cookie);
639 WARN_ON(!data->host_cookie && (next->dma_desc || next->dma_chan));
Per Forlin58c7ccb2011-07-01 18:55:24 +0200640
641 host->dma_desc_current = next->dma_desc;
642 host->dma_current = next->dma_chan;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200643 next->dma_desc = NULL;
644 next->dma_chan = NULL;
645}
646
647static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
648 bool is_first_req)
649{
650 struct mmci_host *host = mmc_priv(mmc);
651 struct mmc_data *data = mrq->data;
652 struct mmci_host_next *nd = &host->next_data;
653
654 if (!data)
655 return;
656
Ulf Hansson653a7612013-01-21 21:29:34 +0100657 BUG_ON(data->host_cookie);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200658
Ulf Hansson653a7612013-01-21 21:29:34 +0100659 if (mmci_validate_data(host, data))
660 return;
661
662 if (!mmci_dma_prep_next(host, data))
663 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200664}
665
666static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
667 int err)
668{
669 struct mmci_host *host = mmc_priv(mmc);
670 struct mmc_data *data = mrq->data;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200671
Ulf Hansson653a7612013-01-21 21:29:34 +0100672 if (!data || !data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200673 return;
674
Ulf Hansson653a7612013-01-21 21:29:34 +0100675 mmci_dma_unmap(host, data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200676
Ulf Hansson653a7612013-01-21 21:29:34 +0100677 if (err) {
678 struct mmci_host_next *next = &host->next_data;
679 struct dma_chan *chan;
680 if (data->flags & MMC_DATA_READ)
681 chan = host->dma_rx_channel;
682 else
683 chan = host->dma_tx_channel;
684 dmaengine_terminate_all(chan);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200685
Ulf Hansson653a7612013-01-21 21:29:34 +0100686 next->dma_desc = NULL;
687 next->dma_chan = NULL;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200688 }
689}
690
Russell Kingc8ebae32011-01-11 19:35:53 +0000691#else
692/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200693static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
694{
695}
Russell Kingc8ebae32011-01-11 19:35:53 +0000696static inline void mmci_dma_setup(struct mmci_host *host)
697{
698}
699
700static inline void mmci_dma_release(struct mmci_host *host)
701{
702}
703
704static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
705{
706}
707
Ulf Hansson653a7612013-01-21 21:29:34 +0100708static inline void mmci_dma_finalize(struct mmci_host *host,
709 struct mmc_data *data)
710{
711}
712
Russell Kingc8ebae32011-01-11 19:35:53 +0000713static inline void mmci_dma_data_error(struct mmci_host *host)
714{
715}
716
717static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
718{
719 return -ENOSYS;
720}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200721
722#define mmci_pre_request NULL
723#define mmci_post_request NULL
724
Russell Kingc8ebae32011-01-11 19:35:53 +0000725#endif
726
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
728{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100729 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100731 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100733 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Linus Walleij64de0282010-02-19 01:09:10 +0100735 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
736 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
738 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100739 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000740 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741
Russell King7b09cda2005-07-01 12:02:59 +0100742 clks = (unsigned long long)data->timeout_ns * host->cclk;
743 do_div(clks, 1000000000UL);
744
745 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
747 base = host->base;
748 writel(timeout, base + MMCIDATATIMER);
749 writel(host->size, base + MMCIDATALENGTH);
750
Russell King3bc87f22006-08-27 13:51:28 +0100751 blksz_bits = ffs(data->blksz) - 1;
752 BUG_ON(1 << blksz_bits != data->blksz);
753
Philippe Langlais1784b152011-03-25 08:51:52 +0100754 if (variant->blksz_datactrl16)
755 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
756 else
757 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000758
759 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000761
Ulf Hansson7258db72011-12-13 17:05:28 +0100762 /* The ST Micro variants has a special bit to enable SDIO */
763 if (variant->sdio && host->mmc->card)
Ulf Hansson06c1a122012-10-12 14:01:50 +0100764 if (mmc_card_sdio(host->mmc->card)) {
765 /*
766 * The ST Micro variants has a special bit
767 * to enable SDIO.
768 */
769 u32 clk;
770
Ulf Hansson7258db72011-12-13 17:05:28 +0100771 datactrl |= MCI_ST_DPSM_SDIOEN;
772
Ulf Hansson06c1a122012-10-12 14:01:50 +0100773 /*
Ulf Hansson70ac0932012-10-12 14:07:36 +0100774 * The ST Micro variant for SDIO small write transfers
775 * needs to have clock H/W flow control disabled,
776 * otherwise the transfer will not start. The threshold
777 * depends on the rate of MCLK.
Ulf Hansson06c1a122012-10-12 14:01:50 +0100778 */
Ulf Hansson70ac0932012-10-12 14:07:36 +0100779 if (data->flags & MMC_DATA_WRITE &&
780 (host->size < 8 ||
781 (host->size <= 8 && host->mclk > 50000000)))
Ulf Hansson06c1a122012-10-12 14:01:50 +0100782 clk = host->clk_reg & ~variant->clkreg_enable;
783 else
784 clk = host->clk_reg | variant->clkreg_enable;
785
786 mmci_write_clkreg(host, clk);
787 }
788
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100789 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50)
790 datactrl |= MCI_ST_DPSM_DDRMODE;
791
Russell Kingc8ebae32011-01-11 19:35:53 +0000792 /*
793 * Attempt to use DMA operation mode, if this
794 * should fail, fall back to PIO mode
795 */
796 if (!mmci_dma_start_data(host, datactrl))
797 return;
798
799 /* IRQ mode, map the SG list for CPU reading/writing */
800 mmci_init_sg(host, data);
801
802 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000804
805 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000806 * If we have less than the fifo 'half-full' threshold to
807 * transfer, trigger a PIO interrupt as soon as any data
808 * is available.
Russell King0425a142006-02-16 16:48:31 +0000809 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000810 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000811 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812 } else {
813 /*
814 * We don't actually need to include "FIFO empty" here
815 * since its implicit in "FIFO half empty".
816 */
817 irqmask = MCI_TXFIFOHALFEMPTYMASK;
818 }
819
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100820 mmci_write_datactrlreg(host, datactrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100822 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823}
824
825static void
826mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
827{
828 void __iomem *base = host->base;
829
Linus Walleij64de0282010-02-19 01:09:10 +0100830 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 cmd->opcode, cmd->arg, cmd->flags);
832
833 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
834 writel(0, base + MMCICOMMAND);
835 udelay(1);
836 }
837
838 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000839 if (cmd->flags & MMC_RSP_PRESENT) {
840 if (cmd->flags & MMC_RSP_136)
841 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 }
844 if (/*interrupt*/0)
845 c |= MCI_CPSM_INTERRUPT;
846
847 host->cmd = cmd;
848
849 writel(cmd->arg, base + MMCIARGUMENT);
850 writel(c, base + MMCICOMMAND);
851}
852
853static void
854mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
855 unsigned int status)
856{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100857 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100858 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
859 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100860 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100861
Russell Kingc8ebae32011-01-11 19:35:53 +0000862 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100863 if (dma_inprogress(host)) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000864 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100865 mmci_dma_unmap(host, data);
866 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000867
Russell Kingc8afc9d2011-02-04 09:19:46 +0000868 /*
869 * Calculate how far we are into the transfer. Note that
870 * the data counter gives the number of bytes transferred
871 * on the MMC bus, not on the host side. On reads, this
872 * can be as much as a FIFO-worth of data ahead. This
873 * matters for FIFO overruns only.
874 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100875 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100876 success = data->blksz * data->blocks - remain;
877
Russell Kingc8afc9d2011-02-04 09:19:46 +0000878 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
879 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100880 if (status & MCI_DATACRCFAIL) {
881 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000882 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200883 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100884 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200885 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100886 } else if (status & MCI_STARTBITERR) {
887 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000888 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200889 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000890 } else if (status & MCI_RXOVERRUN) {
891 if (success > host->variant->fifosize)
892 success -= host->variant->fifosize;
893 else
894 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100895 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100896 }
Russell King51d43752011-01-27 10:56:52 +0000897 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100899
Linus Walleij8cb28152011-01-24 15:22:13 +0100900 if (status & MCI_DATABLOCKEND)
901 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100902
Russell Kingccff9b52011-01-30 21:03:50 +0000903 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000904 if (dma_inprogress(host))
Ulf Hansson653a7612013-01-21 21:29:34 +0100905 mmci_dma_finalize(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 mmci_stop_data(host);
907
Linus Walleij8cb28152011-01-24 15:22:13 +0100908 if (!data->error)
909 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000910 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100911
Ulf Hansson024629c2013-05-13 15:40:56 +0100912 if (!data->stop || host->mrq->sbc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913 mmci_request_end(host, data->mrq);
914 } else {
915 mmci_start_command(host, data->stop, 0);
916 }
917 }
918}
919
920static void
921mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
922 unsigned int status)
923{
924 void __iomem *base = host->base;
Ulf Hansson024629c2013-05-13 15:40:56 +0100925 bool sbc = (cmd == host->mrq->sbc);
Ulf Hansson8d94b542014-01-13 16:49:31 +0100926 bool busy_resp = host->variant->busy_detect &&
927 (cmd->flags & MMC_RSP_BUSY);
928
929 /* Check if we need to wait for busy completion. */
930 if (host->busy_status && (status & MCI_ST_CARDBUSY))
931 return;
932
933 /* Enable busy completion if needed and supported. */
934 if (!host->busy_status && busy_resp &&
935 !(status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT)) &&
936 (readl(base + MMCISTATUS) & MCI_ST_CARDBUSY)) {
937 writel(readl(base + MMCIMASK0) | MCI_ST_BUSYEND,
938 base + MMCIMASK0);
939 host->busy_status = status & (MCI_CMDSENT|MCI_CMDRESPEND);
940 return;
941 }
942
943 /* At busy completion, mask the IRQ and complete the request. */
944 if (host->busy_status) {
945 writel(readl(base + MMCIMASK0) & ~MCI_ST_BUSYEND,
946 base + MMCIMASK0);
947 host->busy_status = 0;
948 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949
950 host->cmd = NULL;
951
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200953 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200955 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000956 } else {
957 cmd->resp[0] = readl(base + MMCIRESPONSE0);
958 cmd->resp[1] = readl(base + MMCIRESPONSE1);
959 cmd->resp[2] = readl(base + MMCIRESPONSE2);
960 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
Ulf Hansson024629c2013-05-13 15:40:56 +0100963 if ((!sbc && !cmd->data) || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100964 if (host->data) {
965 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100966 if (dma_inprogress(host)) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100967 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100968 mmci_dma_unmap(host, host->data);
969 }
Russell Kinge47c2222007-01-08 16:42:51 +0000970 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100971 }
Ulf Hansson024629c2013-05-13 15:40:56 +0100972 mmci_request_end(host, host->mrq);
973 } else if (sbc) {
974 mmci_start_command(host, host->mrq->cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
976 mmci_start_data(host, cmd->data);
977 }
978}
979
980static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
981{
982 void __iomem *base = host->base;
983 char *ptr = buffer;
984 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100985 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986
987 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100988 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
990 if (count > remain)
991 count = remain;
992
993 if (count <= 0)
994 break;
995
Ulf Hansson393e5e22011-12-13 17:08:04 +0100996 /*
997 * SDIO especially may want to send something that is
998 * not divisible by 4 (as opposed to card sectors
999 * etc). Therefore make sure to always read the last bytes
1000 * while only doing full 32-bit reads towards the FIFO.
1001 */
1002 if (unlikely(count & 0x3)) {
1003 if (count < 4) {
1004 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001005 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +01001006 memcpy(ptr, buf, count);
1007 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001008 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +01001009 count &= ~0x3;
1010 }
1011 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001012 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +01001013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
1015 ptr += count;
1016 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +01001017 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018
1019 if (remain == 0)
1020 break;
1021
1022 status = readl(base + MMCISTATUS);
1023 } while (status & MCI_RXDATAAVLBL);
1024
1025 return ptr - buffer;
1026}
1027
1028static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
1029{
Rabin Vincent8301bb62010-08-09 12:57:30 +01001030 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 void __iomem *base = host->base;
1032 char *ptr = buffer;
1033
1034 do {
1035 unsigned int count, maxcnt;
1036
Rabin Vincent8301bb62010-08-09 12:57:30 +01001037 maxcnt = status & MCI_TXFIFOEMPTY ?
1038 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001039 count = min(remain, maxcnt);
1040
Linus Walleij34177802010-10-19 12:43:58 +01001041 /*
Linus Walleij34177802010-10-19 12:43:58 +01001042 * SDIO especially may want to send something that is
1043 * not divisible by 4 (as opposed to card sectors
1044 * etc), and the FIFO only accept full 32-bit writes.
1045 * So compensate by adding +3 on the count, a single
1046 * byte become a 32bit write, 7 bytes will be two
1047 * 32bit writes etc.
1048 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001049 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050
1051 ptr += count;
1052 remain -= count;
1053
1054 if (remain == 0)
1055 break;
1056
1057 status = readl(base + MMCISTATUS);
1058 } while (status & MCI_TXFIFOHALFEMPTY);
1059
1060 return ptr - buffer;
1061}
1062
1063/*
1064 * PIO data transfer IRQ handler.
1065 */
David Howells7d12e782006-10-05 14:55:46 +01001066static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067{
1068 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001069 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +01001070 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001071 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001072 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 u32 status;
1074
1075 status = readl(base + MMCISTATUS);
1076
Linus Walleij64de0282010-02-19 01:09:10 +01001077 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001079 local_irq_save(flags);
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082 unsigned int remain, len;
1083 char *buffer;
1084
1085 /*
1086 * For write, we only need to test the half-empty flag
1087 * here - if the FIFO is completely empty, then by
1088 * definition it is more than half empty.
1089 *
1090 * For read, check for data available.
1091 */
1092 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
1093 break;
1094
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001095 if (!sg_miter_next(sg_miter))
1096 break;
1097
1098 buffer = sg_miter->addr;
1099 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100
1101 len = 0;
1102 if (status & MCI_RXACTIVE)
1103 len = mmci_pio_read(host, buffer, remain);
1104 if (status & MCI_TXACTIVE)
1105 len = mmci_pio_write(host, buffer, remain, status);
1106
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001107 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 host->size -= len;
1110 remain -= len;
1111
1112 if (remain)
1113 break;
1114
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 status = readl(base + MMCISTATUS);
1116 } while (1);
1117
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001118 sg_miter_stop(sg_miter);
1119
1120 local_irq_restore(flags);
1121
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 /*
Russell Kingc4d877c2011-01-27 09:50:13 +00001123 * If we have less than the fifo 'half-full' threshold to transfer,
1124 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001125 */
Russell Kingc4d877c2011-01-27 09:50:13 +00001126 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +01001127 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 /*
1130 * If we run out of data, disable the data IRQs; this
1131 * prevents a race where the FIFO becomes empty before
1132 * the chip itself has disabled the data path, and
1133 * stops us racing with our data end IRQ.
1134 */
1135 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +01001136 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1138 }
1139
1140 return IRQ_HANDLED;
1141}
1142
1143/*
1144 * Handle completion of command and data transfers.
1145 */
David Howells7d12e782006-10-05 14:55:46 +01001146static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147{
1148 struct mmci_host *host = dev_id;
1149 u32 status;
1150 int ret = 0;
1151
1152 spin_lock(&host->lock);
1153
1154 do {
1155 struct mmc_command *cmd;
1156 struct mmc_data *data;
1157
1158 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001159
1160 if (host->singleirq) {
1161 if (status & readl(host->base + MMCIMASK1))
1162 mmci_pio_irq(irq, dev_id);
1163
1164 status &= ~MCI_IRQ1MASK;
1165 }
1166
Ulf Hansson8d94b542014-01-13 16:49:31 +01001167 /*
1168 * We intentionally clear the MCI_ST_CARDBUSY IRQ here (if it's
1169 * enabled) since the HW seems to be triggering the IRQ on both
1170 * edges while monitoring DAT0 for busy completion.
1171 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 status &= readl(host->base + MMCIMASK0);
1173 writel(status, host->base + MMCICLEAR);
1174
Linus Walleij64de0282010-02-19 01:09:10 +01001175 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
Ulf Hanssone7f3d222014-01-10 14:51:42 +01001177 cmd = host->cmd;
Ulf Hansson8d94b542014-01-13 16:49:31 +01001178 if ((status|host->busy_status) & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|
1179 MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
Ulf Hanssone7f3d222014-01-10 14:51:42 +01001180 mmci_cmd_irq(host, cmd, status);
1181
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001183 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1184 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1185 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 mmci_data_irq(host, data, status);
1187
Ulf Hansson8d94b542014-01-13 16:49:31 +01001188 /* Don't poll for busy completion in irq context. */
1189 if (host->busy_status)
1190 status &= ~MCI_ST_CARDBUSY;
1191
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 ret = 1;
1193 } while (status);
1194
1195 spin_unlock(&host->lock);
1196
1197 return IRQ_RETVAL(ret);
1198}
1199
1200static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1201{
1202 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001203 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
1205 WARN_ON(host->mrq != NULL);
1206
Ulf Hansson653a7612013-01-21 21:29:34 +01001207 mrq->cmd->error = mmci_validate_data(host, mrq->data);
1208 if (mrq->cmd->error) {
Pierre Ossman255d01a2007-07-24 20:38:53 +02001209 mmc_request_done(mmc, mrq);
1210 return;
1211 }
1212
Russell King1c3be362011-08-14 09:17:05 +01001213 pm_runtime_get_sync(mmc_dev(mmc));
1214
Linus Walleij9e943022008-10-24 21:17:50 +01001215 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216
1217 host->mrq = mrq;
1218
Per Forlin58c7ccb2011-07-01 18:55:24 +02001219 if (mrq->data)
1220 mmci_get_next_data(host, mrq->data);
1221
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1223 mmci_start_data(host, mrq->data);
1224
Ulf Hansson024629c2013-05-13 15:40:56 +01001225 if (mrq->sbc)
1226 mmci_start_command(host, mrq->sbc, 0);
1227 else
1228 mmci_start_command(host, mrq->cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229
Linus Walleij9e943022008-10-24 21:17:50 +01001230 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231}
1232
1233static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1234{
1235 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001236 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001237 u32 pwr = 0;
1238 unsigned long flags;
Lee Jonesdb90f912013-05-03 12:52:12 +01001239 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001241 pm_runtime_get_sync(mmc_dev(mmc));
1242
Ulf Hanssonbc521812011-12-13 16:57:55 +01001243 if (host->plat->ios_handler &&
1244 host->plat->ios_handler(mmc_dev(mmc), ios))
1245 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1246
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 switch (ios->power_mode) {
1248 case MMC_POWER_OFF:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001249 if (!IS_ERR(mmc->supply.vmmc))
1250 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Lee Jones237fb5e2013-01-31 11:27:52 +00001251
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001252 if (!IS_ERR(mmc->supply.vqmmc) && host->vqmmc_enabled) {
Lee Jones237fb5e2013-01-31 11:27:52 +00001253 regulator_disable(mmc->supply.vqmmc);
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001254 host->vqmmc_enabled = false;
1255 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 break;
1258 case MMC_POWER_UP:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001259 if (!IS_ERR(mmc->supply.vmmc))
1260 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1261
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001262 /*
1263 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1264 * and instead uses MCI_PWR_ON so apply whatever value is
1265 * configured in the variant data.
1266 */
1267 pwr |= variant->pwrreg_powerup;
1268
1269 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 case MMC_POWER_ON:
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001271 if (!IS_ERR(mmc->supply.vqmmc) && !host->vqmmc_enabled) {
Lee Jonesdb90f912013-05-03 12:52:12 +01001272 ret = regulator_enable(mmc->supply.vqmmc);
1273 if (ret < 0)
1274 dev_err(mmc_dev(mmc),
1275 "failed to enable vqmmc regulator\n");
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001276 else
1277 host->vqmmc_enabled = true;
Lee Jonesdb90f912013-05-03 12:52:12 +01001278 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001279
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 pwr |= MCI_PWR_ON;
1281 break;
1282 }
1283
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001284 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1285 /*
1286 * The ST Micro variant has some additional bits
1287 * indicating signal direction for the signals in
1288 * the SD/MMC bus and feedback-clock usage.
1289 */
1290 pwr |= host->plat->sigdir;
1291
1292 if (ios->bus_width == MMC_BUS_WIDTH_4)
1293 pwr &= ~MCI_ST_DATA74DIREN;
1294 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1295 pwr &= (~MCI_ST_DATA74DIREN &
1296 ~MCI_ST_DATA31DIREN &
1297 ~MCI_ST_DATA2DIREN);
1298 }
1299
Linus Walleijcc30d602009-01-04 15:18:54 +01001300 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001301 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001302 pwr |= MCI_ROD;
1303 else {
1304 /*
1305 * The ST Micro variant use the ROD bit for something
1306 * else and only has OD (Open Drain).
1307 */
1308 pwr |= MCI_OD;
1309 }
1310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311
Ulf Hanssonf4670da2013-01-09 17:19:54 +01001312 /*
1313 * If clock = 0 and the variant requires the MMCIPOWER to be used for
1314 * gating the clock, the MCI_PWR_ON bit is cleared.
1315 */
1316 if (!ios->clock && variant->pwrreg_clkgate)
1317 pwr &= ~MCI_PWR_ON;
1318
Linus Walleija6a64642009-09-14 12:56:14 +01001319 spin_lock_irqsave(&host->lock, flags);
1320
1321 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001322 mmci_write_pwrreg(host, pwr);
Ulf Hanssonf829c042013-09-04 09:01:15 +01001323 mmci_reg_delay(host);
Linus Walleija6a64642009-09-14 12:56:14 +01001324
1325 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001326
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001327 pm_runtime_mark_last_busy(mmc_dev(mmc));
1328 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329}
1330
Russell King89001442009-07-09 15:16:07 +01001331static int mmci_get_cd(struct mmc_host *mmc)
1332{
1333 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001334 struct mmci_platform_data *plat = host->plat;
Ulf Hanssond2762092014-03-17 13:56:19 +01001335 unsigned int status = mmc_gpio_get_cd(mmc);
Russell King89001442009-07-09 15:16:07 +01001336
Ulf Hanssond2762092014-03-17 13:56:19 +01001337 if (status == -ENOSYS) {
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001338 if (!plat->status)
1339 return 1; /* Assume always present */
1340
Rabin Vincent29719442010-08-09 12:54:43 +01001341 status = plat->status(mmc_dev(host->mmc));
Ulf Hanssond2762092014-03-17 13:56:19 +01001342 }
Russell King74bc8092010-07-29 15:58:59 +01001343 return status;
Russell King89001442009-07-09 15:16:07 +01001344}
1345
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001346static int mmci_sig_volt_switch(struct mmc_host *mmc, struct mmc_ios *ios)
1347{
1348 int ret = 0;
1349
1350 if (!IS_ERR(mmc->supply.vqmmc)) {
1351
1352 pm_runtime_get_sync(mmc_dev(mmc));
1353
1354 switch (ios->signal_voltage) {
1355 case MMC_SIGNAL_VOLTAGE_330:
1356 ret = regulator_set_voltage(mmc->supply.vqmmc,
1357 2700000, 3600000);
1358 break;
1359 case MMC_SIGNAL_VOLTAGE_180:
1360 ret = regulator_set_voltage(mmc->supply.vqmmc,
1361 1700000, 1950000);
1362 break;
1363 case MMC_SIGNAL_VOLTAGE_120:
1364 ret = regulator_set_voltage(mmc->supply.vqmmc,
1365 1100000, 1300000);
1366 break;
1367 }
1368
1369 if (ret)
1370 dev_warn(mmc_dev(mmc), "Voltage switch failed\n");
1371
1372 pm_runtime_mark_last_busy(mmc_dev(mmc));
1373 pm_runtime_put_autosuspend(mmc_dev(mmc));
1374 }
1375
1376 return ret;
1377}
1378
Ulf Hansson01259622013-05-15 20:53:22 +01001379static struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001381 .pre_req = mmci_pre_request,
1382 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 .set_ios = mmci_set_ios,
Ulf Hanssond2762092014-03-17 13:56:19 +01001384 .get_ro = mmc_gpio_get_ro,
Russell King89001442009-07-09 15:16:07 +01001385 .get_cd = mmci_get_cd,
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001386 .start_signal_voltage_switch = mmci_sig_volt_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387};
1388
Lee Jones000bc9d2012-04-16 10:18:43 +01001389static void mmci_dt_populate_generic_pdata(struct device_node *np,
1390 struct mmci_platform_data *pdata)
1391{
Ulf Hanssonae94caf2014-03-18 10:46:37 +01001392 if (of_get_property(np, "st,sig-dir-dat0", NULL))
1393 pdata->sigdir |= MCI_ST_DATA0DIREN;
1394 if (of_get_property(np, "st,sig-dir-dat2", NULL))
1395 pdata->sigdir |= MCI_ST_DATA2DIREN;
1396 if (of_get_property(np, "st,sig-dir-dat31", NULL))
1397 pdata->sigdir |= MCI_ST_DATA31DIREN;
1398 if (of_get_property(np, "st,sig-dir-dat74", NULL))
1399 pdata->sigdir |= MCI_ST_DATA74DIREN;
1400 if (of_get_property(np, "st,sig-dir-cmd", NULL))
1401 pdata->sigdir |= MCI_ST_CMDDIREN;
Ulf Hansson1a7e99c2014-03-31 14:19:21 +02001402 if (of_get_property(np, "st,sig-pin-fbclk", NULL))
1403 pdata->sigdir |= MCI_ST_FBCLKEN;
Ulf Hansson78f87df2014-03-17 15:53:07 +01001404}
Ulf Hanssonae94caf2014-03-18 10:46:37 +01001405
Ulf Hansson78f87df2014-03-17 15:53:07 +01001406static int mmci_of_parse(struct device_node *np, struct mmc_host *mmc)
1407{
1408 int ret = mmc_of_parse(mmc);
Lee Jones000bc9d2012-04-16 10:18:43 +01001409
Ulf Hansson78f87df2014-03-17 15:53:07 +01001410 if (ret)
1411 return ret;
Lee Jones000bc9d2012-04-16 10:18:43 +01001412
1413 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
Ulf Hansson78f87df2014-03-17 15:53:07 +01001414 mmc->caps |= MMC_CAP_MMC_HIGHSPEED;
Lee Jones000bc9d2012-04-16 10:18:43 +01001415 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
Ulf Hansson78f87df2014-03-17 15:53:07 +01001416 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
Lee Jones000bc9d2012-04-16 10:18:43 +01001417
Ulf Hansson78f87df2014-03-17 15:53:07 +01001418 return 0;
Lee Jones000bc9d2012-04-16 10:18:43 +01001419}
Lee Jones000bc9d2012-04-16 10:18:43 +01001420
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001421static int mmci_probe(struct amba_device *dev,
Russell Kingaa25afa2011-02-19 15:55:00 +00001422 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001424 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001425 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001426 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 struct mmci_host *host;
1428 struct mmc_host *mmc;
1429 int ret;
1430
Lee Jones000bc9d2012-04-16 10:18:43 +01001431 /* Must have platform data or Device Tree. */
1432 if (!plat && !np) {
1433 dev_err(&dev->dev, "No plat data or DT found\n");
1434 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 }
1436
Lee Jonesb9b52912012-06-12 10:49:51 +01001437 if (!plat) {
1438 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1439 if (!plat)
1440 return -ENOMEM;
1441 }
1442
Lee Jones000bc9d2012-04-16 10:18:43 +01001443 if (np)
1444 mmci_dt_populate_generic_pdata(np, plat);
1445
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
Ulf Hanssonef289982014-03-17 13:56:32 +01001447 if (!mmc)
1448 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
Ulf Hansson78f87df2014-03-17 15:53:07 +01001450 ret = mmci_of_parse(np, mmc);
1451 if (ret)
1452 goto host_free;
1453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301455 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001456
1457 host->hw_designer = amba_manf(dev);
1458 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001459 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1460 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001461
Ulf Hansson665ba562013-05-13 15:39:17 +01001462 host->clk = devm_clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 if (IS_ERR(host->clk)) {
1464 ret = PTR_ERR(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 goto host_free;
1466 }
1467
Julia Lawallac940932012-08-26 16:00:59 +00001468 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 if (ret)
Ulf Hansson665ba562013-05-13 15:39:17 +01001470 goto host_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001473 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001475 /*
1476 * According to the spec, mclk is max 100 MHz,
1477 * so we try to adjust the clock down to this,
1478 * (if possible).
1479 */
1480 if (host->mclk > 100000000) {
1481 ret = clk_set_rate(host->clk, 100000000);
1482 if (ret < 0)
1483 goto clk_disable;
1484 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001485 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1486 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001487 }
Ulf Hanssonef289982014-03-17 13:56:32 +01001488
Russell Kingc8ebae32011-01-11 19:35:53 +00001489 host->phybase = dev->res.start;
Ulf Hanssonef289982014-03-17 13:56:32 +01001490 host->base = devm_ioremap_resource(&dev->dev, &dev->res);
1491 if (IS_ERR(host->base)) {
1492 ret = PTR_ERR(host->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 goto clk_disable;
1494 }
1495
Linus Walleij7f294e42011-07-08 09:57:15 +01001496 /*
1497 * The ARM and ST versions of the block have slightly different
1498 * clock divider equations which means that the minimum divider
1499 * differs too.
1500 */
1501 if (variant->st_clkdiv)
1502 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1503 else
1504 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001505 /*
Ulf Hansson78f87df2014-03-17 15:53:07 +01001506 * If no maximum operating frequency is supplied, fall back to use
1507 * the module parameter, which has a (low) default value in case it
1508 * is not specified. Either value must not exceed the clock rate into
1509 * the block, of course. Also note that DT takes precedence over
1510 * platform data.
Linus Walleij808d97c2010-04-08 07:39:38 +01001511 */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001512 if (mmc->f_max)
1513 mmc->f_max = min(host->mclk, mmc->f_max);
1514 else if (plat->f_max)
Linus Walleij808d97c2010-04-08 07:39:38 +01001515 mmc->f_max = min(host->mclk, plat->f_max);
1516 else
1517 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001518 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1519
Ulf Hansson599c1d52013-01-07 16:22:50 +01001520 /* Get regulators and the supported OCR mask */
1521 mmc_regulator_get_supply(mmc);
1522 if (!mmc->ocr_avail)
Linus Walleij34e84f32009-09-22 14:41:40 +01001523 mmc->ocr_avail = plat->ocr_mask;
Ulf Hansson599c1d52013-01-07 16:22:50 +01001524 else if (plat->ocr_mask)
1525 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1526
Ulf Hansson78f87df2014-03-17 15:53:07 +01001527 /* DT takes precedence over platform data. */
1528 mmc->caps = np ? mmc->caps : plat->capabilities;
1529 mmc->caps2 = np ? mmc->caps2 : plat->capabilities2;
1530 if (!np) {
1531 if (!plat->cd_invert)
1532 mmc->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
1533 mmc->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
1534 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Ulf Hansson9dd8a8b2014-03-19 13:54:18 +01001536 /* We support these capabilities. */
1537 mmc->caps |= MMC_CAP_CMD23;
1538
Ulf Hansson8d94b542014-01-13 16:49:31 +01001539 if (variant->busy_detect) {
1540 mmci_ops.card_busy = mmci_card_busy;
1541 mmci_write_datactrlreg(host, MCI_ST_DPSM_BUSYMODE);
1542 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
1543 mmc->max_busy_timeout = 0;
1544 }
1545
1546 mmc->ops = &mmci_ops;
1547
Ulf Hansson70be2082013-01-07 15:35:06 +01001548 /* We support these PM capabilities. */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001549 mmc->pm_caps |= MMC_PM_KEEP_POWER;
Ulf Hansson70be2082013-01-07 15:35:06 +01001550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 /*
1552 * We can do SGIO
1553 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001554 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001557 * Since only a certain number of bits are valid in the data length
1558 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1559 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001561 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
1563 /*
1564 * Set the maximum segment size. Since we aren't doing DMA
1565 * (yet) we are only limited by the data length register.
1566 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001567 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001569 /*
1570 * Block size can be up to 2048 bytes, but must be a power of two.
1571 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001572 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001573
Pierre Ossman55db8902006-11-21 17:55:45 +01001574 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001575 * Limit the number of blocks transferred so that we don't overflow
1576 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001577 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001578 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001579
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 spin_lock_init(&host->lock);
1581
1582 writel(0, host->base + MMCIMASK0);
1583 writel(0, host->base + MMCIMASK1);
1584 writel(0xfff, host->base + MMCICLEAR);
1585
Ulf Hansson78f87df2014-03-17 15:53:07 +01001586 /* If DT, cd/wp gpios must be supplied through it. */
1587 if (!np && gpio_is_valid(plat->gpio_cd)) {
Ulf Hanssond2762092014-03-17 13:56:19 +01001588 ret = mmc_gpio_request_cd(mmc, plat->gpio_cd, 0);
1589 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001590 goto clk_disable;
Russell King89001442009-07-09 15:16:07 +01001591 }
Ulf Hansson78f87df2014-03-17 15:53:07 +01001592 if (!np && gpio_is_valid(plat->gpio_wp)) {
Ulf Hanssond2762092014-03-17 13:56:19 +01001593 ret = mmc_gpio_request_ro(mmc, plat->gpio_wp);
1594 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001595 goto clk_disable;
Russell King89001442009-07-09 15:16:07 +01001596 }
1597
Ulf Hanssonef289982014-03-17 13:56:32 +01001598 ret = devm_request_irq(&dev->dev, dev->irq[0], mmci_irq, IRQF_SHARED,
1599 DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001601 goto clk_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Russell Kingdfb85182012-05-03 11:33:15 +01001603 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001604 host->singleirq = true;
1605 else {
Ulf Hanssonef289982014-03-17 13:56:32 +01001606 ret = devm_request_irq(&dev->dev, dev->irq[1], mmci_pio_irq,
1607 IRQF_SHARED, DRIVER_NAME " (pio)", host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001608 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001609 goto clk_disable;
Linus Walleij2686b4b2010-10-19 12:39:48 +01001610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Linus Walleij8cb28152011-01-24 15:22:13 +01001612 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
1614 amba_set_drvdata(dev, mmc);
1615
Russell Kingc8ebae32011-01-11 19:35:53 +00001616 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1617 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1618 amba_rev(dev), (unsigned long long)dev->res.start,
1619 dev->irq[0], dev->irq[1]);
1620
1621 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001623 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1624 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001625 pm_runtime_put(&dev->dev);
1626
Russell King8c11a942010-12-28 19:40:40 +00001627 mmc_add_host(mmc);
1628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 0;
1630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001632 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 host_free:
1634 mmc_free_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 return ret;
1636}
1637
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001638static int mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639{
1640 struct mmc_host *mmc = amba_get_drvdata(dev);
1641
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 if (mmc) {
1643 struct mmci_host *host = mmc_priv(mmc);
1644
Russell King1c3be362011-08-14 09:17:05 +01001645 /*
1646 * Undo pm_runtime_put() in probe. We use the _sync
1647 * version here so that we can access the primecell.
1648 */
1649 pm_runtime_get_sync(&dev->dev);
1650
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651 mmc_remove_host(mmc);
1652
1653 writel(0, host->base + MMCIMASK0);
1654 writel(0, host->base + MMCIMASK1);
1655
1656 writel(0, host->base + MMCICOMMAND);
1657 writel(0, host->base + MMCIDATACTRL);
1658
Russell Kingc8ebae32011-01-11 19:35:53 +00001659 mmci_dma_release(host);
Julia Lawallac940932012-08-26 16:00:59 +00001660 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 mmc_free_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 }
1663
1664 return 0;
1665}
1666
Ulf Hansson571dce42014-01-23 00:38:00 +01001667#ifdef CONFIG_PM
Ulf Hansson1ff44432013-09-04 09:05:17 +01001668static void mmci_save(struct mmci_host *host)
1669{
1670 unsigned long flags;
1671
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001672 spin_lock_irqsave(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001673
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001674 writel(0, host->base + MMCIMASK0);
1675 if (host->variant->pwrreg_nopower) {
Ulf Hansson1ff44432013-09-04 09:05:17 +01001676 writel(0, host->base + MMCIDATACTRL);
1677 writel(0, host->base + MMCIPOWER);
1678 writel(0, host->base + MMCICLOCK);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001679 }
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001680 mmci_reg_delay(host);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001681
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001682 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001683}
1684
1685static void mmci_restore(struct mmci_host *host)
1686{
1687 unsigned long flags;
1688
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001689 spin_lock_irqsave(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001690
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001691 if (host->variant->pwrreg_nopower) {
Ulf Hansson1ff44432013-09-04 09:05:17 +01001692 writel(host->clk_reg, host->base + MMCICLOCK);
1693 writel(host->datactrl_reg, host->base + MMCIDATACTRL);
1694 writel(host->pwr_reg, host->base + MMCIPOWER);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001695 }
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001696 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1697 mmci_reg_delay(host);
1698
1699 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001700}
1701
Ulf Hansson82592932013-01-09 11:15:26 +01001702static int mmci_runtime_suspend(struct device *dev)
1703{
1704 struct amba_device *adev = to_amba_device(dev);
1705 struct mmc_host *mmc = amba_get_drvdata(adev);
1706
1707 if (mmc) {
1708 struct mmci_host *host = mmc_priv(mmc);
Ulf Hanssone36bd9c62013-09-04 09:00:37 +01001709 pinctrl_pm_select_sleep_state(dev);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001710 mmci_save(host);
Ulf Hansson82592932013-01-09 11:15:26 +01001711 clk_disable_unprepare(host->clk);
1712 }
1713
1714 return 0;
1715}
1716
1717static int mmci_runtime_resume(struct device *dev)
1718{
1719 struct amba_device *adev = to_amba_device(dev);
1720 struct mmc_host *mmc = amba_get_drvdata(adev);
1721
1722 if (mmc) {
1723 struct mmci_host *host = mmc_priv(mmc);
1724 clk_prepare_enable(host->clk);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001725 mmci_restore(host);
Ulf Hanssone36bd9c62013-09-04 09:00:37 +01001726 pinctrl_pm_select_default_state(dev);
Ulf Hansson82592932013-01-09 11:15:26 +01001727 }
1728
1729 return 0;
1730}
1731#endif
1732
Ulf Hansson48fa7002011-12-13 16:59:34 +01001733static const struct dev_pm_ops mmci_dev_pm_ops = {
Ulf Hanssonf3737fa2014-01-23 01:11:33 +01001734 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1735 pm_runtime_force_resume)
Ulf Hansson571dce42014-01-23 00:38:00 +01001736 SET_PM_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
Ulf Hansson48fa7002011-12-13 16:59:34 +01001737};
1738
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739static struct amba_id mmci_ids[] = {
1740 {
1741 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001742 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001743 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 },
1745 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001746 .id = 0x01041180,
1747 .mask = 0xff0fffff,
1748 .data = &variant_arm_extended_fifo,
1749 },
1750 {
Pawel Moll3a372982013-01-24 14:12:45 +01001751 .id = 0x02041180,
1752 .mask = 0xff0fffff,
1753 .data = &variant_arm_extended_fifo_hwfc,
1754 },
1755 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 .id = 0x00041181,
1757 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001758 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001760 /* ST Micro variants */
1761 {
1762 .id = 0x00180180,
1763 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001764 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001765 },
1766 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001767 .id = 0x10180180,
1768 .mask = 0xf0ffffff,
1769 .data = &variant_nomadik,
1770 },
1771 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001772 .id = 0x00280180,
1773 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001774 .data = &variant_u300,
1775 },
1776 {
1777 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001778 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001779 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001780 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001781 {
1782 .id = 0x10480180,
1783 .mask = 0xf0ffffff,
1784 .data = &variant_ux500v2,
1785 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 { 0, 0 },
1787};
1788
Dave Martin9f998352011-10-05 15:15:21 +01001789MODULE_DEVICE_TABLE(amba, mmci_ids);
1790
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791static struct amba_driver mmci_driver = {
1792 .drv = {
1793 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001794 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 },
1796 .probe = mmci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001797 .remove = mmci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 .id_table = mmci_ids,
1799};
1800
viresh kumar9e5ed092012-03-15 10:40:38 +01001801module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802
Linus Torvalds1da177e2005-04-16 15:20:36 -07001803module_param(fmax, uint, 0444);
1804
1805MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1806MODULE_LICENSE("GPL");