blob: 7ad463e9741c0e4359b0c2c10a43f83ea3683995 [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
Seungwon Jeon6dad6c92014-03-14 21:12:13 +0900304 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50 ||
305 host->mmc->ios.timing == MMC_TIMING_MMC_DDR52)
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100306 clk |= MCI_ST_UX500_NEG_EDGE;
307
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100308 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100309}
310
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311static void
312mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
313{
314 writel(0, host->base + MMCICOMMAND);
315
Russell Kinge47c2222007-01-08 16:42:51 +0000316 BUG_ON(host->data);
317
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 host->mrq = NULL;
319 host->cmd = NULL;
320
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 mmc_request_done(host->mmc, mrq);
Ulf Hansson2cd976c2011-12-13 17:01:11 +0100322
323 pm_runtime_mark_last_busy(mmc_dev(host->mmc));
324 pm_runtime_put_autosuspend(mmc_dev(host->mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325}
326
Linus Walleij2686b4b2010-10-19 12:39:48 +0100327static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
328{
329 void __iomem *base = host->base;
330
331 if (host->singleirq) {
332 unsigned int mask0 = readl(base + MMCIMASK0);
333
334 mask0 &= ~MCI_IRQ1MASK;
335 mask0 |= mask;
336
337 writel(mask0, base + MMCIMASK0);
338 }
339
340 writel(mask, base + MMCIMASK1);
341}
342
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343static void mmci_stop_data(struct mmci_host *host)
344{
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100345 mmci_write_datactrlreg(host, 0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100346 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 host->data = NULL;
348}
349
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100350static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
351{
352 unsigned int flags = SG_MITER_ATOMIC;
353
354 if (data->flags & MMC_DATA_READ)
355 flags |= SG_MITER_TO_SG;
356 else
357 flags |= SG_MITER_FROM_SG;
358
359 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
360}
361
Russell Kingc8ebae32011-01-11 19:35:53 +0000362/*
363 * All the DMA operation mode stuff goes inside this ifdef.
364 * This assumes that you have a generic DMA device interface,
365 * no custom DMA interfaces are supported.
366 */
367#ifdef CONFIG_DMA_ENGINE
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500368static void mmci_dma_setup(struct mmci_host *host)
Russell Kingc8ebae32011-01-11 19:35:53 +0000369{
Russell Kingc8ebae32011-01-11 19:35:53 +0000370 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
383 /*
384 * If only an RX channel is specified, the driver will
385 * attempt to use it bidirectionally, however if it is
386 * is specified but cannot be located, DMA will be disabled.
387 */
Lee Jones1fd83f02013-05-03 12:51:17 +0100388 if (host->dma_rx_channel && !host->dma_tx_channel)
Russell Kingc8ebae32011-01-11 19:35:53 +0000389 host->dma_tx_channel = host->dma_rx_channel;
Russell Kingc8ebae32011-01-11 19:35:53 +0000390
391 if (host->dma_rx_channel)
392 rxname = dma_chan_name(host->dma_rx_channel);
393 else
394 rxname = "none";
395
396 if (host->dma_tx_channel)
397 txname = dma_chan_name(host->dma_tx_channel);
398 else
399 txname = "none";
400
401 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
402 rxname, txname);
403
404 /*
405 * Limit the maximum segment size in any SG entry according to
406 * the parameters of the DMA engine device.
407 */
408 if (host->dma_tx_channel) {
409 struct device *dev = host->dma_tx_channel->device->dev;
410 unsigned int max_seg_size = dma_get_max_seg_size(dev);
411
412 if (max_seg_size < host->mmc->max_seg_size)
413 host->mmc->max_seg_size = max_seg_size;
414 }
415 if (host->dma_rx_channel) {
416 struct device *dev = host->dma_rx_channel->device->dev;
417 unsigned int max_seg_size = dma_get_max_seg_size(dev);
418
419 if (max_seg_size < host->mmc->max_seg_size)
420 host->mmc->max_seg_size = max_seg_size;
421 }
422}
423
424/*
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500425 * This is used in or so inline it
Russell Kingc8ebae32011-01-11 19:35:53 +0000426 * so it can be discarded.
427 */
428static inline void mmci_dma_release(struct mmci_host *host)
429{
Russell Kingc8ebae32011-01-11 19:35:53 +0000430 if (host->dma_rx_channel)
431 dma_release_channel(host->dma_rx_channel);
Ulf Hansson8c3a05b2014-05-20 06:45:54 +0200432 if (host->dma_tx_channel)
Russell Kingc8ebae32011-01-11 19:35:53 +0000433 dma_release_channel(host->dma_tx_channel);
434 host->dma_rx_channel = host->dma_tx_channel = NULL;
435}
436
Ulf Hansson653a7612013-01-21 21:29:34 +0100437static void mmci_dma_data_error(struct mmci_host *host)
438{
439 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
440 dmaengine_terminate_all(host->dma_current);
441 host->dma_current = NULL;
442 host->dma_desc_current = NULL;
443 host->data->host_cookie = 0;
444}
445
Russell Kingc8ebae32011-01-11 19:35:53 +0000446static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
447{
Ulf Hansson653a7612013-01-21 21:29:34 +0100448 struct dma_chan *chan;
Russell Kingc8ebae32011-01-11 19:35:53 +0000449 enum dma_data_direction dir;
Ulf Hansson653a7612013-01-21 21:29:34 +0100450
451 if (data->flags & MMC_DATA_READ) {
452 dir = DMA_FROM_DEVICE;
453 chan = host->dma_rx_channel;
454 } else {
455 dir = DMA_TO_DEVICE;
456 chan = host->dma_tx_channel;
457 }
458
459 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
460}
461
462static void mmci_dma_finalize(struct mmci_host *host, struct mmc_data *data)
463{
Russell Kingc8ebae32011-01-11 19:35:53 +0000464 u32 status;
465 int i;
466
467 /* Wait up to 1ms for the DMA to complete */
468 for (i = 0; ; i++) {
469 status = readl(host->base + MMCISTATUS);
470 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
471 break;
472 udelay(10);
473 }
474
475 /*
476 * Check to see whether we still have some data left in the FIFO -
477 * this catches DMA controllers which are unable to monitor the
478 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
479 * contiguous buffers. On TX, we'll get a FIFO underrun error.
480 */
481 if (status & MCI_RXDATAAVLBLMASK) {
Ulf Hansson653a7612013-01-21 21:29:34 +0100482 mmci_dma_data_error(host);
Russell Kingc8ebae32011-01-11 19:35:53 +0000483 if (!data->error)
484 data->error = -EIO;
485 }
486
Per Forlin58c7ccb2011-07-01 18:55:24 +0200487 if (!data->host_cookie)
Ulf Hansson653a7612013-01-21 21:29:34 +0100488 mmci_dma_unmap(host, data);
Russell Kingc8ebae32011-01-11 19:35:53 +0000489
490 /*
491 * Use of DMA with scatter-gather is impossible.
492 * Give up with DMA and switch back to PIO mode.
493 */
494 if (status & MCI_RXDATAAVLBLMASK) {
495 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
496 mmci_dma_release(host);
497 }
Ulf Hansson653a7612013-01-21 21:29:34 +0100498
499 host->dma_current = NULL;
500 host->dma_desc_current = NULL;
Russell Kingc8ebae32011-01-11 19:35:53 +0000501}
502
Ulf Hansson653a7612013-01-21 21:29:34 +0100503/* prepares DMA channel and DMA descriptor, returns non-zero on failure */
504static int __mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
505 struct dma_chan **dma_chan,
506 struct dma_async_tx_descriptor **dma_desc)
Russell Kingc8ebae32011-01-11 19:35:53 +0000507{
508 struct variant_data *variant = host->variant;
509 struct dma_slave_config conf = {
510 .src_addr = host->phybase + MMCIFIFO,
511 .dst_addr = host->phybase + MMCIFIFO,
512 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
513 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
514 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
515 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530516 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000517 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000518 struct dma_chan *chan;
519 struct dma_device *device;
520 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530521 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000522 int nr_sg;
523
Russell Kingc8ebae32011-01-11 19:35:53 +0000524 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530525 conf.direction = DMA_DEV_TO_MEM;
526 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000527 chan = host->dma_rx_channel;
528 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530529 conf.direction = DMA_MEM_TO_DEV;
530 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000531 chan = host->dma_tx_channel;
532 }
533
534 /* If there's no DMA channel, fall back to PIO */
535 if (!chan)
536 return -EINVAL;
537
538 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200539 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000540 return -EINVAL;
541
542 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530543 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000544 if (nr_sg == 0)
545 return -EINVAL;
546
547 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500548 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Russell Kingc8ebae32011-01-11 19:35:53 +0000549 conf.direction, DMA_CTRL_ACK);
550 if (!desc)
551 goto unmap_exit;
552
Ulf Hansson653a7612013-01-21 21:29:34 +0100553 *dma_chan = chan;
554 *dma_desc = desc;
Russell Kingc8ebae32011-01-11 19:35:53 +0000555
Per Forlin58c7ccb2011-07-01 18:55:24 +0200556 return 0;
557
558 unmap_exit:
Vinod Koul05f57992011-10-14 10:45:11 +0530559 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200560 return -ENOMEM;
561}
562
Ulf Hansson653a7612013-01-21 21:29:34 +0100563static inline int mmci_dma_prep_data(struct mmci_host *host,
564 struct mmc_data *data)
565{
566 /* Check if next job is already prepared. */
567 if (host->dma_current && host->dma_desc_current)
568 return 0;
569
570 /* No job were prepared thus do it now. */
571 return __mmci_dma_prep_data(host, data, &host->dma_current,
572 &host->dma_desc_current);
573}
574
575static inline int mmci_dma_prep_next(struct mmci_host *host,
576 struct mmc_data *data)
577{
578 struct mmci_host_next *nd = &host->next_data;
579 return __mmci_dma_prep_data(host, data, &nd->dma_chan, &nd->dma_desc);
580}
581
Per Forlin58c7ccb2011-07-01 18:55:24 +0200582static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
583{
584 int ret;
585 struct mmc_data *data = host->data;
586
Ulf Hansson653a7612013-01-21 21:29:34 +0100587 ret = mmci_dma_prep_data(host, host->data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200588 if (ret)
589 return ret;
590
591 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000592 dev_vdbg(mmc_dev(host->mmc),
593 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
594 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200595 dmaengine_submit(host->dma_desc_current);
596 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000597
598 datactrl |= MCI_DPSM_DMAENABLE;
599
600 /* Trigger the DMA transfer */
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100601 mmci_write_datactrlreg(host, datactrl);
Russell Kingc8ebae32011-01-11 19:35:53 +0000602
603 /*
604 * Let the MMCI say when the data is ended and it's time
605 * to fire next DMA request. When that happens, MMCI will
606 * call mmci_data_end()
607 */
608 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
609 host->base + MMCIMASK0);
610 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000611}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200612
613static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
614{
615 struct mmci_host_next *next = &host->next_data;
616
Ulf Hansson653a7612013-01-21 21:29:34 +0100617 WARN_ON(data->host_cookie && data->host_cookie != next->cookie);
618 WARN_ON(!data->host_cookie && (next->dma_desc || next->dma_chan));
Per Forlin58c7ccb2011-07-01 18:55:24 +0200619
620 host->dma_desc_current = next->dma_desc;
621 host->dma_current = next->dma_chan;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200622 next->dma_desc = NULL;
623 next->dma_chan = NULL;
624}
625
626static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
627 bool is_first_req)
628{
629 struct mmci_host *host = mmc_priv(mmc);
630 struct mmc_data *data = mrq->data;
631 struct mmci_host_next *nd = &host->next_data;
632
633 if (!data)
634 return;
635
Ulf Hansson653a7612013-01-21 21:29:34 +0100636 BUG_ON(data->host_cookie);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200637
Ulf Hansson653a7612013-01-21 21:29:34 +0100638 if (mmci_validate_data(host, data))
639 return;
640
641 if (!mmci_dma_prep_next(host, data))
642 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200643}
644
645static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
646 int err)
647{
648 struct mmci_host *host = mmc_priv(mmc);
649 struct mmc_data *data = mrq->data;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200650
Ulf Hansson653a7612013-01-21 21:29:34 +0100651 if (!data || !data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200652 return;
653
Ulf Hansson653a7612013-01-21 21:29:34 +0100654 mmci_dma_unmap(host, data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200655
Ulf Hansson653a7612013-01-21 21:29:34 +0100656 if (err) {
657 struct mmci_host_next *next = &host->next_data;
658 struct dma_chan *chan;
659 if (data->flags & MMC_DATA_READ)
660 chan = host->dma_rx_channel;
661 else
662 chan = host->dma_tx_channel;
663 dmaengine_terminate_all(chan);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200664
Ulf Hansson653a7612013-01-21 21:29:34 +0100665 next->dma_desc = NULL;
666 next->dma_chan = NULL;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200667 }
668}
669
Russell Kingc8ebae32011-01-11 19:35:53 +0000670#else
671/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200672static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
673{
674}
Russell Kingc8ebae32011-01-11 19:35:53 +0000675static inline void mmci_dma_setup(struct mmci_host *host)
676{
677}
678
679static inline void mmci_dma_release(struct mmci_host *host)
680{
681}
682
683static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
684{
685}
686
Ulf Hansson653a7612013-01-21 21:29:34 +0100687static inline void mmci_dma_finalize(struct mmci_host *host,
688 struct mmc_data *data)
689{
690}
691
Russell Kingc8ebae32011-01-11 19:35:53 +0000692static inline void mmci_dma_data_error(struct mmci_host *host)
693{
694}
695
696static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
697{
698 return -ENOSYS;
699}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200700
701#define mmci_pre_request NULL
702#define mmci_post_request NULL
703
Russell Kingc8ebae32011-01-11 19:35:53 +0000704#endif
705
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
707{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100708 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100710 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100712 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713
Linus Walleij64de0282010-02-19 01:09:10 +0100714 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
715 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716
717 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100718 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000719 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720
Russell King7b09cda2005-07-01 12:02:59 +0100721 clks = (unsigned long long)data->timeout_ns * host->cclk;
722 do_div(clks, 1000000000UL);
723
724 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
726 base = host->base;
727 writel(timeout, base + MMCIDATATIMER);
728 writel(host->size, base + MMCIDATALENGTH);
729
Russell King3bc87f22006-08-27 13:51:28 +0100730 blksz_bits = ffs(data->blksz) - 1;
731 BUG_ON(1 << blksz_bits != data->blksz);
732
Philippe Langlais1784b152011-03-25 08:51:52 +0100733 if (variant->blksz_datactrl16)
734 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
735 else
736 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000737
738 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000740
Ulf Hansson7258db72011-12-13 17:05:28 +0100741 /* The ST Micro variants has a special bit to enable SDIO */
742 if (variant->sdio && host->mmc->card)
Ulf Hansson06c1a122012-10-12 14:01:50 +0100743 if (mmc_card_sdio(host->mmc->card)) {
744 /*
745 * The ST Micro variants has a special bit
746 * to enable SDIO.
747 */
748 u32 clk;
749
Ulf Hansson7258db72011-12-13 17:05:28 +0100750 datactrl |= MCI_ST_DPSM_SDIOEN;
751
Ulf Hansson06c1a122012-10-12 14:01:50 +0100752 /*
Ulf Hansson70ac0932012-10-12 14:07:36 +0100753 * The ST Micro variant for SDIO small write transfers
754 * needs to have clock H/W flow control disabled,
755 * otherwise the transfer will not start. The threshold
756 * depends on the rate of MCLK.
Ulf Hansson06c1a122012-10-12 14:01:50 +0100757 */
Ulf Hansson70ac0932012-10-12 14:07:36 +0100758 if (data->flags & MMC_DATA_WRITE &&
759 (host->size < 8 ||
760 (host->size <= 8 && host->mclk > 50000000)))
Ulf Hansson06c1a122012-10-12 14:01:50 +0100761 clk = host->clk_reg & ~variant->clkreg_enable;
762 else
763 clk = host->clk_reg | variant->clkreg_enable;
764
765 mmci_write_clkreg(host, clk);
766 }
767
Seungwon Jeon6dad6c92014-03-14 21:12:13 +0900768 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50 ||
769 host->mmc->ios.timing == MMC_TIMING_MMC_DDR52)
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100770 datactrl |= MCI_ST_DPSM_DDRMODE;
771
Russell Kingc8ebae32011-01-11 19:35:53 +0000772 /*
773 * Attempt to use DMA operation mode, if this
774 * should fail, fall back to PIO mode
775 */
776 if (!mmci_dma_start_data(host, datactrl))
777 return;
778
779 /* IRQ mode, map the SG list for CPU reading/writing */
780 mmci_init_sg(host, data);
781
782 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000784
785 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000786 * If we have less than the fifo 'half-full' threshold to
787 * transfer, trigger a PIO interrupt as soon as any data
788 * is available.
Russell King0425a142006-02-16 16:48:31 +0000789 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000790 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000791 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 } else {
793 /*
794 * We don't actually need to include "FIFO empty" here
795 * since its implicit in "FIFO half empty".
796 */
797 irqmask = MCI_TXFIFOHALFEMPTYMASK;
798 }
799
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100800 mmci_write_datactrlreg(host, datactrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100802 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
805static void
806mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
807{
808 void __iomem *base = host->base;
809
Linus Walleij64de0282010-02-19 01:09:10 +0100810 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 cmd->opcode, cmd->arg, cmd->flags);
812
813 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
814 writel(0, base + MMCICOMMAND);
815 udelay(1);
816 }
817
818 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000819 if (cmd->flags & MMC_RSP_PRESENT) {
820 if (cmd->flags & MMC_RSP_136)
821 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 }
824 if (/*interrupt*/0)
825 c |= MCI_CPSM_INTERRUPT;
826
827 host->cmd = cmd;
828
829 writel(cmd->arg, base + MMCIARGUMENT);
830 writel(c, base + MMCICOMMAND);
831}
832
833static void
834mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
835 unsigned int status)
836{
Linus Walleijf20f8f22010-10-19 13:41:24 +0100837 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100838 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
839 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100840 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100841
Russell Kingc8ebae32011-01-11 19:35:53 +0000842 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100843 if (dma_inprogress(host)) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000844 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100845 mmci_dma_unmap(host, data);
846 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000847
Russell Kingc8afc9d2011-02-04 09:19:46 +0000848 /*
849 * Calculate how far we are into the transfer. Note that
850 * the data counter gives the number of bytes transferred
851 * on the MMC bus, not on the host side. On reads, this
852 * can be as much as a FIFO-worth of data ahead. This
853 * matters for FIFO overruns only.
854 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100855 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100856 success = data->blksz * data->blocks - remain;
857
Russell Kingc8afc9d2011-02-04 09:19:46 +0000858 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
859 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100860 if (status & MCI_DATACRCFAIL) {
861 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000862 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200863 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100864 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200865 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100866 } else if (status & MCI_STARTBITERR) {
867 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000868 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200869 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000870 } else if (status & MCI_RXOVERRUN) {
871 if (success > host->variant->fifosize)
872 success -= host->variant->fifosize;
873 else
874 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100875 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100876 }
Russell King51d43752011-01-27 10:56:52 +0000877 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100879
Linus Walleij8cb28152011-01-24 15:22:13 +0100880 if (status & MCI_DATABLOCKEND)
881 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100882
Russell Kingccff9b52011-01-30 21:03:50 +0000883 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000884 if (dma_inprogress(host))
Ulf Hansson653a7612013-01-21 21:29:34 +0100885 mmci_dma_finalize(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 mmci_stop_data(host);
887
Linus Walleij8cb28152011-01-24 15:22:13 +0100888 if (!data->error)
889 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000890 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100891
Ulf Hansson024629c2013-05-13 15:40:56 +0100892 if (!data->stop || host->mrq->sbc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 mmci_request_end(host, data->mrq);
894 } else {
895 mmci_start_command(host, data->stop, 0);
896 }
897 }
898}
899
900static void
901mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
902 unsigned int status)
903{
904 void __iomem *base = host->base;
Ulf Hansson024629c2013-05-13 15:40:56 +0100905 bool sbc = (cmd == host->mrq->sbc);
Ulf Hansson8d94b542014-01-13 16:49:31 +0100906 bool busy_resp = host->variant->busy_detect &&
907 (cmd->flags & MMC_RSP_BUSY);
908
909 /* Check if we need to wait for busy completion. */
910 if (host->busy_status && (status & MCI_ST_CARDBUSY))
911 return;
912
913 /* Enable busy completion if needed and supported. */
914 if (!host->busy_status && busy_resp &&
915 !(status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT)) &&
916 (readl(base + MMCISTATUS) & MCI_ST_CARDBUSY)) {
917 writel(readl(base + MMCIMASK0) | MCI_ST_BUSYEND,
918 base + MMCIMASK0);
919 host->busy_status = status & (MCI_CMDSENT|MCI_CMDRESPEND);
920 return;
921 }
922
923 /* At busy completion, mask the IRQ and complete the request. */
924 if (host->busy_status) {
925 writel(readl(base + MMCIMASK0) & ~MCI_ST_BUSYEND,
926 base + MMCIMASK0);
927 host->busy_status = 0;
928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929
930 host->cmd = NULL;
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200933 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700934 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200935 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +0000936 } else {
937 cmd->resp[0] = readl(base + MMCIRESPONSE0);
938 cmd->resp[1] = readl(base + MMCIRESPONSE1);
939 cmd->resp[2] = readl(base + MMCIRESPONSE2);
940 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 }
942
Ulf Hansson024629c2013-05-13 15:40:56 +0100943 if ((!sbc && !cmd->data) || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100944 if (host->data) {
945 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100946 if (dma_inprogress(host)) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100947 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100948 mmci_dma_unmap(host, host->data);
949 }
Russell Kinge47c2222007-01-08 16:42:51 +0000950 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +0100951 }
Ulf Hansson024629c2013-05-13 15:40:56 +0100952 mmci_request_end(host, host->mrq);
953 } else if (sbc) {
954 mmci_start_command(host, host->mrq->cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
956 mmci_start_data(host, cmd->data);
957 }
958}
959
960static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
961{
962 void __iomem *base = host->base;
963 char *ptr = buffer;
964 u32 status;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100965 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966
967 do {
Linus Walleij26eed9a2008-04-26 23:39:44 +0100968 int count = host_remain - (readl(base + MMCIFIFOCNT) << 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969
970 if (count > remain)
971 count = remain;
972
973 if (count <= 0)
974 break;
975
Ulf Hansson393e5e22011-12-13 17:08:04 +0100976 /*
977 * SDIO especially may want to send something that is
978 * not divisible by 4 (as opposed to card sectors
979 * etc). Therefore make sure to always read the last bytes
980 * while only doing full 32-bit reads towards the FIFO.
981 */
982 if (unlikely(count & 0x3)) {
983 if (count < 4) {
984 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100985 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100986 memcpy(ptr, buf, count);
987 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100988 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100989 count &= ~0x3;
990 }
991 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +0100992 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +0100993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994
995 ptr += count;
996 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +0100997 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 if (remain == 0)
1000 break;
1001
1002 status = readl(base + MMCISTATUS);
1003 } while (status & MCI_RXDATAAVLBL);
1004
1005 return ptr - buffer;
1006}
1007
1008static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
1009{
Rabin Vincent8301bb62010-08-09 12:57:30 +01001010 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 void __iomem *base = host->base;
1012 char *ptr = buffer;
1013
1014 do {
1015 unsigned int count, maxcnt;
1016
Rabin Vincent8301bb62010-08-09 12:57:30 +01001017 maxcnt = status & MCI_TXFIFOEMPTY ?
1018 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001019 count = min(remain, maxcnt);
1020
Linus Walleij34177802010-10-19 12:43:58 +01001021 /*
Linus Walleij34177802010-10-19 12:43:58 +01001022 * SDIO especially may want to send something that is
1023 * not divisible by 4 (as opposed to card sectors
1024 * etc), and the FIFO only accept full 32-bit writes.
1025 * So compensate by adding +3 on the count, a single
1026 * byte become a 32bit write, 7 bytes will be two
1027 * 32bit writes etc.
1028 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001029 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030
1031 ptr += count;
1032 remain -= count;
1033
1034 if (remain == 0)
1035 break;
1036
1037 status = readl(base + MMCISTATUS);
1038 } while (status & MCI_TXFIFOHALFEMPTY);
1039
1040 return ptr - buffer;
1041}
1042
1043/*
1044 * PIO data transfer IRQ handler.
1045 */
David Howells7d12e782006-10-05 14:55:46 +01001046static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047{
1048 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001049 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +01001050 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001052 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001053 u32 status;
1054
1055 status = readl(base + MMCISTATUS);
1056
Linus Walleij64de0282010-02-19 01:09:10 +01001057 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001059 local_irq_save(flags);
1060
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 unsigned int remain, len;
1063 char *buffer;
1064
1065 /*
1066 * For write, we only need to test the half-empty flag
1067 * here - if the FIFO is completely empty, then by
1068 * definition it is more than half empty.
1069 *
1070 * For read, check for data available.
1071 */
1072 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
1073 break;
1074
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001075 if (!sg_miter_next(sg_miter))
1076 break;
1077
1078 buffer = sg_miter->addr;
1079 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080
1081 len = 0;
1082 if (status & MCI_RXACTIVE)
1083 len = mmci_pio_read(host, buffer, remain);
1084 if (status & MCI_TXACTIVE)
1085 len = mmci_pio_write(host, buffer, remain, status);
1086
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001087 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 host->size -= len;
1090 remain -= len;
1091
1092 if (remain)
1093 break;
1094
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 status = readl(base + MMCISTATUS);
1096 } while (1);
1097
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001098 sg_miter_stop(sg_miter);
1099
1100 local_irq_restore(flags);
1101
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 /*
Russell Kingc4d877c2011-01-27 09:50:13 +00001103 * If we have less than the fifo 'half-full' threshold to transfer,
1104 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 */
Russell Kingc4d877c2011-01-27 09:50:13 +00001106 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +01001107 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
1109 /*
1110 * If we run out of data, disable the data IRQs; this
1111 * prevents a race where the FIFO becomes empty before
1112 * the chip itself has disabled the data path, and
1113 * stops us racing with our data end IRQ.
1114 */
1115 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +01001116 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1118 }
1119
1120 return IRQ_HANDLED;
1121}
1122
1123/*
1124 * Handle completion of command and data transfers.
1125 */
David Howells7d12e782006-10-05 14:55:46 +01001126static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127{
1128 struct mmci_host *host = dev_id;
1129 u32 status;
1130 int ret = 0;
1131
1132 spin_lock(&host->lock);
1133
1134 do {
1135 struct mmc_command *cmd;
1136 struct mmc_data *data;
1137
1138 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001139
1140 if (host->singleirq) {
1141 if (status & readl(host->base + MMCIMASK1))
1142 mmci_pio_irq(irq, dev_id);
1143
1144 status &= ~MCI_IRQ1MASK;
1145 }
1146
Ulf Hansson8d94b542014-01-13 16:49:31 +01001147 /*
1148 * We intentionally clear the MCI_ST_CARDBUSY IRQ here (if it's
1149 * enabled) since the HW seems to be triggering the IRQ on both
1150 * edges while monitoring DAT0 for busy completion.
1151 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 status &= readl(host->base + MMCIMASK0);
1153 writel(status, host->base + MMCICLEAR);
1154
Linus Walleij64de0282010-02-19 01:09:10 +01001155 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Ulf Hanssone7f3d222014-01-10 14:51:42 +01001157 cmd = host->cmd;
Ulf Hansson8d94b542014-01-13 16:49:31 +01001158 if ((status|host->busy_status) & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|
1159 MCI_CMDSENT|MCI_CMDRESPEND) && cmd)
Ulf Hanssone7f3d222014-01-10 14:51:42 +01001160 mmci_cmd_irq(host, cmd, status);
1161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 data = host->data;
Ulf Hanssonb63038d2011-12-13 16:51:04 +01001163 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
1164 MCI_TXUNDERRUN|MCI_RXOVERRUN|MCI_DATAEND|
1165 MCI_DATABLOCKEND) && data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166 mmci_data_irq(host, data, status);
1167
Ulf Hansson8d94b542014-01-13 16:49:31 +01001168 /* Don't poll for busy completion in irq context. */
1169 if (host->busy_status)
1170 status &= ~MCI_ST_CARDBUSY;
1171
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 ret = 1;
1173 } while (status);
1174
1175 spin_unlock(&host->lock);
1176
1177 return IRQ_RETVAL(ret);
1178}
1179
1180static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1181{
1182 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001183 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
1185 WARN_ON(host->mrq != NULL);
1186
Ulf Hansson653a7612013-01-21 21:29:34 +01001187 mrq->cmd->error = mmci_validate_data(host, mrq->data);
1188 if (mrq->cmd->error) {
Pierre Ossman255d01a2007-07-24 20:38:53 +02001189 mmc_request_done(mmc, mrq);
1190 return;
1191 }
1192
Russell King1c3be362011-08-14 09:17:05 +01001193 pm_runtime_get_sync(mmc_dev(mmc));
1194
Linus Walleij9e943022008-10-24 21:17:50 +01001195 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
1197 host->mrq = mrq;
1198
Per Forlin58c7ccb2011-07-01 18:55:24 +02001199 if (mrq->data)
1200 mmci_get_next_data(host, mrq->data);
1201
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1203 mmci_start_data(host, mrq->data);
1204
Ulf Hansson024629c2013-05-13 15:40:56 +01001205 if (mrq->sbc)
1206 mmci_start_command(host, mrq->sbc, 0);
1207 else
1208 mmci_start_command(host, mrq->cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209
Linus Walleij9e943022008-10-24 21:17:50 +01001210 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211}
1212
1213static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1214{
1215 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001216 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001217 u32 pwr = 0;
1218 unsigned long flags;
Lee Jonesdb90f912013-05-03 12:52:12 +01001219 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001221 pm_runtime_get_sync(mmc_dev(mmc));
1222
Ulf Hanssonbc521812011-12-13 16:57:55 +01001223 if (host->plat->ios_handler &&
1224 host->plat->ios_handler(mmc_dev(mmc), ios))
1225 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1226
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 switch (ios->power_mode) {
1228 case MMC_POWER_OFF:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001229 if (!IS_ERR(mmc->supply.vmmc))
1230 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Lee Jones237fb5e2013-01-31 11:27:52 +00001231
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001232 if (!IS_ERR(mmc->supply.vqmmc) && host->vqmmc_enabled) {
Lee Jones237fb5e2013-01-31 11:27:52 +00001233 regulator_disable(mmc->supply.vqmmc);
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001234 host->vqmmc_enabled = false;
1235 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 break;
1238 case MMC_POWER_UP:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001239 if (!IS_ERR(mmc->supply.vmmc))
1240 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1241
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001242 /*
1243 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1244 * and instead uses MCI_PWR_ON so apply whatever value is
1245 * configured in the variant data.
1246 */
1247 pwr |= variant->pwrreg_powerup;
1248
1249 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 case MMC_POWER_ON:
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001251 if (!IS_ERR(mmc->supply.vqmmc) && !host->vqmmc_enabled) {
Lee Jonesdb90f912013-05-03 12:52:12 +01001252 ret = regulator_enable(mmc->supply.vqmmc);
1253 if (ret < 0)
1254 dev_err(mmc_dev(mmc),
1255 "failed to enable vqmmc regulator\n");
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001256 else
1257 host->vqmmc_enabled = true;
Lee Jonesdb90f912013-05-03 12:52:12 +01001258 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001259
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260 pwr |= MCI_PWR_ON;
1261 break;
1262 }
1263
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001264 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1265 /*
1266 * The ST Micro variant has some additional bits
1267 * indicating signal direction for the signals in
1268 * the SD/MMC bus and feedback-clock usage.
1269 */
Ulf Hansson4593df22014-03-21 10:13:05 +01001270 pwr |= host->pwr_reg_add;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001271
1272 if (ios->bus_width == MMC_BUS_WIDTH_4)
1273 pwr &= ~MCI_ST_DATA74DIREN;
1274 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1275 pwr &= (~MCI_ST_DATA74DIREN &
1276 ~MCI_ST_DATA31DIREN &
1277 ~MCI_ST_DATA2DIREN);
1278 }
1279
Linus Walleijcc30d602009-01-04 15:18:54 +01001280 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001281 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001282 pwr |= MCI_ROD;
1283 else {
1284 /*
1285 * The ST Micro variant use the ROD bit for something
1286 * else and only has OD (Open Drain).
1287 */
1288 pwr |= MCI_OD;
1289 }
1290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Ulf Hanssonf4670da2013-01-09 17:19:54 +01001292 /*
1293 * If clock = 0 and the variant requires the MMCIPOWER to be used for
1294 * gating the clock, the MCI_PWR_ON bit is cleared.
1295 */
1296 if (!ios->clock && variant->pwrreg_clkgate)
1297 pwr &= ~MCI_PWR_ON;
1298
Linus Walleija6a64642009-09-14 12:56:14 +01001299 spin_lock_irqsave(&host->lock, flags);
1300
1301 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001302 mmci_write_pwrreg(host, pwr);
Ulf Hanssonf829c042013-09-04 09:01:15 +01001303 mmci_reg_delay(host);
Linus Walleija6a64642009-09-14 12:56:14 +01001304
1305 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001306
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001307 pm_runtime_mark_last_busy(mmc_dev(mmc));
1308 pm_runtime_put_autosuspend(mmc_dev(mmc));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309}
1310
Russell King89001442009-07-09 15:16:07 +01001311static int mmci_get_cd(struct mmc_host *mmc)
1312{
1313 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001314 struct mmci_platform_data *plat = host->plat;
Ulf Hanssond2762092014-03-17 13:56:19 +01001315 unsigned int status = mmc_gpio_get_cd(mmc);
Russell King89001442009-07-09 15:16:07 +01001316
Ulf Hanssond2762092014-03-17 13:56:19 +01001317 if (status == -ENOSYS) {
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001318 if (!plat->status)
1319 return 1; /* Assume always present */
1320
Rabin Vincent29719442010-08-09 12:54:43 +01001321 status = plat->status(mmc_dev(host->mmc));
Ulf Hanssond2762092014-03-17 13:56:19 +01001322 }
Russell King74bc8092010-07-29 15:58:59 +01001323 return status;
Russell King89001442009-07-09 15:16:07 +01001324}
1325
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001326static int mmci_sig_volt_switch(struct mmc_host *mmc, struct mmc_ios *ios)
1327{
1328 int ret = 0;
1329
1330 if (!IS_ERR(mmc->supply.vqmmc)) {
1331
1332 pm_runtime_get_sync(mmc_dev(mmc));
1333
1334 switch (ios->signal_voltage) {
1335 case MMC_SIGNAL_VOLTAGE_330:
1336 ret = regulator_set_voltage(mmc->supply.vqmmc,
1337 2700000, 3600000);
1338 break;
1339 case MMC_SIGNAL_VOLTAGE_180:
1340 ret = regulator_set_voltage(mmc->supply.vqmmc,
1341 1700000, 1950000);
1342 break;
1343 case MMC_SIGNAL_VOLTAGE_120:
1344 ret = regulator_set_voltage(mmc->supply.vqmmc,
1345 1100000, 1300000);
1346 break;
1347 }
1348
1349 if (ret)
1350 dev_warn(mmc_dev(mmc), "Voltage switch failed\n");
1351
1352 pm_runtime_mark_last_busy(mmc_dev(mmc));
1353 pm_runtime_put_autosuspend(mmc_dev(mmc));
1354 }
1355
1356 return ret;
1357}
1358
Ulf Hansson01259622013-05-15 20:53:22 +01001359static struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001361 .pre_req = mmci_pre_request,
1362 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 .set_ios = mmci_set_ios,
Ulf Hanssond2762092014-03-17 13:56:19 +01001364 .get_ro = mmc_gpio_get_ro,
Russell King89001442009-07-09 15:16:07 +01001365 .get_cd = mmci_get_cd,
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001366 .start_signal_voltage_switch = mmci_sig_volt_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367};
1368
Ulf Hansson78f87df2014-03-17 15:53:07 +01001369static int mmci_of_parse(struct device_node *np, struct mmc_host *mmc)
1370{
Ulf Hansson4593df22014-03-21 10:13:05 +01001371 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson78f87df2014-03-17 15:53:07 +01001372 int ret = mmc_of_parse(mmc);
Lee Jones000bc9d2012-04-16 10:18:43 +01001373
Ulf Hansson78f87df2014-03-17 15:53:07 +01001374 if (ret)
1375 return ret;
Lee Jones000bc9d2012-04-16 10:18:43 +01001376
Ulf Hansson4593df22014-03-21 10:13:05 +01001377 if (of_get_property(np, "st,sig-dir-dat0", NULL))
1378 host->pwr_reg_add |= MCI_ST_DATA0DIREN;
1379 if (of_get_property(np, "st,sig-dir-dat2", NULL))
1380 host->pwr_reg_add |= MCI_ST_DATA2DIREN;
1381 if (of_get_property(np, "st,sig-dir-dat31", NULL))
1382 host->pwr_reg_add |= MCI_ST_DATA31DIREN;
1383 if (of_get_property(np, "st,sig-dir-dat74", NULL))
1384 host->pwr_reg_add |= MCI_ST_DATA74DIREN;
1385 if (of_get_property(np, "st,sig-dir-cmd", NULL))
1386 host->pwr_reg_add |= MCI_ST_CMDDIREN;
1387 if (of_get_property(np, "st,sig-pin-fbclk", NULL))
1388 host->pwr_reg_add |= MCI_ST_FBCLKEN;
1389
Lee Jones000bc9d2012-04-16 10:18:43 +01001390 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
Ulf Hansson78f87df2014-03-17 15:53:07 +01001391 mmc->caps |= MMC_CAP_MMC_HIGHSPEED;
Lee Jones000bc9d2012-04-16 10:18:43 +01001392 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
Ulf Hansson78f87df2014-03-17 15:53:07 +01001393 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
Lee Jones000bc9d2012-04-16 10:18:43 +01001394
Ulf Hansson78f87df2014-03-17 15:53:07 +01001395 return 0;
Lee Jones000bc9d2012-04-16 10:18:43 +01001396}
Lee Jones000bc9d2012-04-16 10:18:43 +01001397
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001398static int mmci_probe(struct amba_device *dev,
Russell Kingaa25afa2011-02-19 15:55:00 +00001399 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001401 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001402 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001403 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 struct mmci_host *host;
1405 struct mmc_host *mmc;
1406 int ret;
1407
Lee Jones000bc9d2012-04-16 10:18:43 +01001408 /* Must have platform data or Device Tree. */
1409 if (!plat && !np) {
1410 dev_err(&dev->dev, "No plat data or DT found\n");
1411 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
Lee Jonesb9b52912012-06-12 10:49:51 +01001414 if (!plat) {
1415 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1416 if (!plat)
1417 return -ENOMEM;
1418 }
1419
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
Ulf Hanssonef289982014-03-17 13:56:32 +01001421 if (!mmc)
1422 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Ulf Hansson78f87df2014-03-17 15:53:07 +01001424 ret = mmci_of_parse(np, mmc);
1425 if (ret)
1426 goto host_free;
1427
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301429 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001430
1431 host->hw_designer = amba_manf(dev);
1432 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001433 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1434 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001435
Ulf Hansson665ba562013-05-13 15:39:17 +01001436 host->clk = devm_clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 if (IS_ERR(host->clk)) {
1438 ret = PTR_ERR(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 goto host_free;
1440 }
1441
Julia Lawallac940932012-08-26 16:00:59 +00001442 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 if (ret)
Ulf Hansson665ba562013-05-13 15:39:17 +01001444 goto host_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
1446 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001447 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001449 /*
1450 * According to the spec, mclk is max 100 MHz,
1451 * so we try to adjust the clock down to this,
1452 * (if possible).
1453 */
1454 if (host->mclk > 100000000) {
1455 ret = clk_set_rate(host->clk, 100000000);
1456 if (ret < 0)
1457 goto clk_disable;
1458 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001459 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1460 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001461 }
Ulf Hanssonef289982014-03-17 13:56:32 +01001462
Russell Kingc8ebae32011-01-11 19:35:53 +00001463 host->phybase = dev->res.start;
Ulf Hanssonef289982014-03-17 13:56:32 +01001464 host->base = devm_ioremap_resource(&dev->dev, &dev->res);
1465 if (IS_ERR(host->base)) {
1466 ret = PTR_ERR(host->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 goto clk_disable;
1468 }
1469
Linus Walleij7f294e42011-07-08 09:57:15 +01001470 /*
1471 * The ARM and ST versions of the block have slightly different
1472 * clock divider equations which means that the minimum divider
1473 * differs too.
1474 */
1475 if (variant->st_clkdiv)
1476 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
1477 else
1478 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001479 /*
Ulf Hansson78f87df2014-03-17 15:53:07 +01001480 * If no maximum operating frequency is supplied, fall back to use
1481 * the module parameter, which has a (low) default value in case it
1482 * is not specified. Either value must not exceed the clock rate into
Ulf Hansson5080a082014-03-21 10:46:39 +01001483 * the block, of course.
Linus Walleij808d97c2010-04-08 07:39:38 +01001484 */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001485 if (mmc->f_max)
1486 mmc->f_max = min(host->mclk, mmc->f_max);
Linus Walleij808d97c2010-04-08 07:39:38 +01001487 else
1488 mmc->f_max = min(host->mclk, fmax);
Linus Walleij64de0282010-02-19 01:09:10 +01001489 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1490
Ulf Hansson599c1d52013-01-07 16:22:50 +01001491 /* Get regulators and the supported OCR mask */
1492 mmc_regulator_get_supply(mmc);
1493 if (!mmc->ocr_avail)
Linus Walleij34e84f32009-09-22 14:41:40 +01001494 mmc->ocr_avail = plat->ocr_mask;
Ulf Hansson599c1d52013-01-07 16:22:50 +01001495 else if (plat->ocr_mask)
1496 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1497
Ulf Hansson78f87df2014-03-17 15:53:07 +01001498 /* DT takes precedence over platform data. */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001499 if (!np) {
1500 if (!plat->cd_invert)
1501 mmc->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
1502 mmc->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
1503 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Ulf Hansson9dd8a8b2014-03-19 13:54:18 +01001505 /* We support these capabilities. */
1506 mmc->caps |= MMC_CAP_CMD23;
1507
Ulf Hansson8d94b542014-01-13 16:49:31 +01001508 if (variant->busy_detect) {
1509 mmci_ops.card_busy = mmci_card_busy;
1510 mmci_write_datactrlreg(host, MCI_ST_DPSM_BUSYMODE);
1511 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
1512 mmc->max_busy_timeout = 0;
1513 }
1514
1515 mmc->ops = &mmci_ops;
1516
Ulf Hansson70be2082013-01-07 15:35:06 +01001517 /* We support these PM capabilities. */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001518 mmc->pm_caps |= MMC_PM_KEEP_POWER;
Ulf Hansson70be2082013-01-07 15:35:06 +01001519
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520 /*
1521 * We can do SGIO
1522 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001523 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524
1525 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001526 * Since only a certain number of bits are valid in the data length
1527 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1528 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001530 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 /*
1533 * Set the maximum segment size. Since we aren't doing DMA
1534 * (yet) we are only limited by the data length register.
1535 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001536 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001538 /*
1539 * Block size can be up to 2048 bytes, but must be a power of two.
1540 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001541 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001542
Pierre Ossman55db8902006-11-21 17:55:45 +01001543 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001544 * Limit the number of blocks transferred so that we don't overflow
1545 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001546 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001547 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001548
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 spin_lock_init(&host->lock);
1550
1551 writel(0, host->base + MMCIMASK0);
1552 writel(0, host->base + MMCIMASK1);
1553 writel(0xfff, host->base + MMCICLEAR);
1554
Ulf Hansson78f87df2014-03-17 15:53:07 +01001555 /* If DT, cd/wp gpios must be supplied through it. */
1556 if (!np && gpio_is_valid(plat->gpio_cd)) {
Ulf Hanssond2762092014-03-17 13:56:19 +01001557 ret = mmc_gpio_request_cd(mmc, plat->gpio_cd, 0);
1558 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001559 goto clk_disable;
Russell King89001442009-07-09 15:16:07 +01001560 }
Ulf Hansson78f87df2014-03-17 15:53:07 +01001561 if (!np && gpio_is_valid(plat->gpio_wp)) {
Ulf Hanssond2762092014-03-17 13:56:19 +01001562 ret = mmc_gpio_request_ro(mmc, plat->gpio_wp);
1563 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001564 goto clk_disable;
Russell King89001442009-07-09 15:16:07 +01001565 }
1566
Ulf Hanssonef289982014-03-17 13:56:32 +01001567 ret = devm_request_irq(&dev->dev, dev->irq[0], mmci_irq, IRQF_SHARED,
1568 DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001570 goto clk_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571
Russell Kingdfb851852012-05-03 11:33:15 +01001572 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001573 host->singleirq = true;
1574 else {
Ulf Hanssonef289982014-03-17 13:56:32 +01001575 ret = devm_request_irq(&dev->dev, dev->irq[1], mmci_pio_irq,
1576 IRQF_SHARED, DRIVER_NAME " (pio)", host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001577 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001578 goto clk_disable;
Linus Walleij2686b4b2010-10-19 12:39:48 +01001579 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
Linus Walleij8cb28152011-01-24 15:22:13 +01001581 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
1583 amba_set_drvdata(dev, mmc);
1584
Russell Kingc8ebae32011-01-11 19:35:53 +00001585 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1586 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1587 amba_rev(dev), (unsigned long long)dev->res.start,
1588 dev->irq[0], dev->irq[1]);
1589
1590 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001592 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1593 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001594 pm_runtime_put(&dev->dev);
1595
Russell King8c11a942010-12-28 19:40:40 +00001596 mmc_add_host(mmc);
1597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return 0;
1599
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001601 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 host_free:
1603 mmc_free_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return ret;
1605}
1606
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001607static int mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608{
1609 struct mmc_host *mmc = amba_get_drvdata(dev);
1610
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 if (mmc) {
1612 struct mmci_host *host = mmc_priv(mmc);
1613
Russell King1c3be362011-08-14 09:17:05 +01001614 /*
1615 * Undo pm_runtime_put() in probe. We use the _sync
1616 * version here so that we can access the primecell.
1617 */
1618 pm_runtime_get_sync(&dev->dev);
1619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 mmc_remove_host(mmc);
1621
1622 writel(0, host->base + MMCIMASK0);
1623 writel(0, host->base + MMCIMASK1);
1624
1625 writel(0, host->base + MMCICOMMAND);
1626 writel(0, host->base + MMCIDATACTRL);
1627
Russell Kingc8ebae32011-01-11 19:35:53 +00001628 mmci_dma_release(host);
Julia Lawallac940932012-08-26 16:00:59 +00001629 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 mmc_free_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 }
1632
1633 return 0;
1634}
1635
Ulf Hansson571dce42014-01-23 00:38:00 +01001636#ifdef CONFIG_PM
Ulf Hansson1ff44432013-09-04 09:05:17 +01001637static void mmci_save(struct mmci_host *host)
1638{
1639 unsigned long flags;
1640
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001641 spin_lock_irqsave(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001642
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001643 writel(0, host->base + MMCIMASK0);
1644 if (host->variant->pwrreg_nopower) {
Ulf Hansson1ff44432013-09-04 09:05:17 +01001645 writel(0, host->base + MMCIDATACTRL);
1646 writel(0, host->base + MMCIPOWER);
1647 writel(0, host->base + MMCICLOCK);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001648 }
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001649 mmci_reg_delay(host);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001650
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001651 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001652}
1653
1654static void mmci_restore(struct mmci_host *host)
1655{
1656 unsigned long flags;
1657
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001658 spin_lock_irqsave(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001659
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001660 if (host->variant->pwrreg_nopower) {
Ulf Hansson1ff44432013-09-04 09:05:17 +01001661 writel(host->clk_reg, host->base + MMCICLOCK);
1662 writel(host->datactrl_reg, host->base + MMCIDATACTRL);
1663 writel(host->pwr_reg, host->base + MMCIPOWER);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001664 }
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001665 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1666 mmci_reg_delay(host);
1667
1668 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001669}
1670
Ulf Hansson82592932013-01-09 11:15:26 +01001671static int mmci_runtime_suspend(struct device *dev)
1672{
1673 struct amba_device *adev = to_amba_device(dev);
1674 struct mmc_host *mmc = amba_get_drvdata(adev);
1675
1676 if (mmc) {
1677 struct mmci_host *host = mmc_priv(mmc);
Ulf Hanssone36bd9c62013-09-04 09:00:37 +01001678 pinctrl_pm_select_sleep_state(dev);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001679 mmci_save(host);
Ulf Hansson82592932013-01-09 11:15:26 +01001680 clk_disable_unprepare(host->clk);
1681 }
1682
1683 return 0;
1684}
1685
1686static int mmci_runtime_resume(struct device *dev)
1687{
1688 struct amba_device *adev = to_amba_device(dev);
1689 struct mmc_host *mmc = amba_get_drvdata(adev);
1690
1691 if (mmc) {
1692 struct mmci_host *host = mmc_priv(mmc);
1693 clk_prepare_enable(host->clk);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001694 mmci_restore(host);
Ulf Hanssone36bd9c62013-09-04 09:00:37 +01001695 pinctrl_pm_select_default_state(dev);
Ulf Hansson82592932013-01-09 11:15:26 +01001696 }
1697
1698 return 0;
1699}
1700#endif
1701
Ulf Hansson48fa7002011-12-13 16:59:34 +01001702static const struct dev_pm_ops mmci_dev_pm_ops = {
Ulf Hanssonf3737fa2014-01-23 01:11:33 +01001703 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1704 pm_runtime_force_resume)
Ulf Hansson571dce42014-01-23 00:38:00 +01001705 SET_PM_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
Ulf Hansson48fa7002011-12-13 16:59:34 +01001706};
1707
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708static struct amba_id mmci_ids[] = {
1709 {
1710 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001711 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001712 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 },
1714 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001715 .id = 0x01041180,
1716 .mask = 0xff0fffff,
1717 .data = &variant_arm_extended_fifo,
1718 },
1719 {
Pawel Moll3a372982013-01-24 14:12:45 +01001720 .id = 0x02041180,
1721 .mask = 0xff0fffff,
1722 .data = &variant_arm_extended_fifo_hwfc,
1723 },
1724 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 .id = 0x00041181,
1726 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001727 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001729 /* ST Micro variants */
1730 {
1731 .id = 0x00180180,
1732 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001733 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001734 },
1735 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001736 .id = 0x10180180,
1737 .mask = 0xf0ffffff,
1738 .data = &variant_nomadik,
1739 },
1740 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001741 .id = 0x00280180,
1742 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001743 .data = &variant_u300,
1744 },
1745 {
1746 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001747 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001748 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001749 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001750 {
1751 .id = 0x10480180,
1752 .mask = 0xf0ffffff,
1753 .data = &variant_ux500v2,
1754 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 { 0, 0 },
1756};
1757
Dave Martin9f998352011-10-05 15:15:21 +01001758MODULE_DEVICE_TABLE(amba, mmci_ids);
1759
Linus Torvalds1da177e2005-04-16 15:20:36 -07001760static struct amba_driver mmci_driver = {
1761 .drv = {
1762 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001763 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 },
1765 .probe = mmci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001766 .remove = mmci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 .id_table = mmci_ids,
1768};
1769
viresh kumar9e5ed092012-03-15 10:40:38 +01001770module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772module_param(fmax, uint, 0444);
1773
1774MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1775MODULE_LICENSE("GPL");