blob: 6a8ea9c633d4f40224aa04fa91dc78503f243ff3 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44#include "mmci.h"
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +010045#include "mmci_qcom_dml.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
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
Srinivas Kandagatlae1412d82014-06-02 10:09:23 +010055 * @clkreg_8bit_bus_enable: enable value for 8 bit bus
Srinivas Kandagatlae8740642014-06-02 10:09:30 +010056 * @clkreg_neg_edge_enable: enable value for inverted data/cmd output
Rabin Vincent08458ef2010-07-21 12:55:59 +010057 * @datalength_bits: number of bits in the MMCIDATALENGTH register
Rabin Vincent8301bb62010-08-09 12:57:30 +010058 * @fifosize: number of bytes that can be written when MMCI_TXFIFOEMPTY
59 * is asserted (likewise for RX)
60 * @fifohalfsize: number of bytes that can be written when MCI_TXFIFOHALFEMPTY
61 * is asserted (likewise for RX)
Srinivas Kandagatlaae7b0062014-06-02 10:09:39 +010062 * @data_cmd_enable: enable value for data commands.
Srinivas Kandagatlac7354132014-08-22 05:55:16 +010063 * @st_sdio: enable ST specific SDIO logic
Linus Walleijb70a67f2010-12-06 09:24:14 +010064 * @st_clkdiv: true if using a ST-specific clock divider algorithm
Srinivas Kandagatlae17dca22014-06-02 10:09:15 +010065 * @datactrl_mask_ddrmode: ddr mode mask in datactrl register.
Philippe Langlais1784b152011-03-25 08:51:52 +010066 * @blksz_datactrl16: true if Block size is at b16..b30 position in datactrl register
Srinivas Kandagatlaff783232014-06-02 10:09:06 +010067 * @blksz_datactrl4: true if Block size is at b4..b16 position in datactrl
68 * register
Srinivas Kandagatla5df014d2014-08-22 05:54:55 +010069 * @datactrl_mask_sdio: SDIO enable mask in datactrl register
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010070 * @pwrreg_powerup: power up value for MMCIPOWER register
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +010071 * @f_max: maximum clk frequency supported by the controller.
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010072 * @signal_direction: input/out direction of bus signals can be indicated
Ulf Hanssonf4670da2013-01-09 17:19:54 +010073 * @pwrreg_clkgate: MMCIPOWER register must be used to gate the clock
Ulf Hansson01259622013-05-15 20:53:22 +010074 * @busy_detect: true if busy detection on dat0 is supported
Ulf Hansson1ff44432013-09-04 09:05:17 +010075 * @pwrreg_nopower: bits in MMCIPOWER don't controls ext. power supply
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +010076 * @explicit_mclk_control: enable explicit mclk control in driver.
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +010077 * @qcom_fifo: enables qcom specific fifo pio read logic.
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +010078 * @qcom_dml: enables qcom specific dma glue for dma transfers.
Ulf Hansson78782892014-06-13 13:21:38 +020079 * @reversed_irq_handling: handle data irq before cmd irq.
Rabin Vincent4956e102010-07-21 12:54:40 +010080 */
81struct variant_data {
82 unsigned int clkreg;
Rabin Vincent4380c142010-07-21 12:55:18 +010083 unsigned int clkreg_enable;
Srinivas Kandagatlae1412d82014-06-02 10:09:23 +010084 unsigned int clkreg_8bit_bus_enable;
Srinivas Kandagatlae8740642014-06-02 10:09:30 +010085 unsigned int clkreg_neg_edge_enable;
Rabin Vincent08458ef2010-07-21 12:55:59 +010086 unsigned int datalength_bits;
Rabin Vincent8301bb62010-08-09 12:57:30 +010087 unsigned int fifosize;
88 unsigned int fifohalfsize;
Srinivas Kandagatlaae7b0062014-06-02 10:09:39 +010089 unsigned int data_cmd_enable;
Srinivas Kandagatlae17dca22014-06-02 10:09:15 +010090 unsigned int datactrl_mask_ddrmode;
Srinivas Kandagatla5df014d2014-08-22 05:54:55 +010091 unsigned int datactrl_mask_sdio;
Srinivas Kandagatlac7354132014-08-22 05:55:16 +010092 bool st_sdio;
Linus Walleijb70a67f2010-12-06 09:24:14 +010093 bool st_clkdiv;
Philippe Langlais1784b152011-03-25 08:51:52 +010094 bool blksz_datactrl16;
Srinivas Kandagatlaff783232014-06-02 10:09:06 +010095 bool blksz_datactrl4;
Ulf Hansson7d72a1d2011-12-13 16:54:55 +010096 u32 pwrreg_powerup;
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +010097 u32 f_max;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +010098 bool signal_direction;
Ulf Hanssonf4670da2013-01-09 17:19:54 +010099 bool pwrreg_clkgate;
Ulf Hansson01259622013-05-15 20:53:22 +0100100 bool busy_detect;
Ulf Hansson1ff44432013-09-04 09:05:17 +0100101 bool pwrreg_nopower;
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +0100102 bool explicit_mclk_control;
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +0100103 bool qcom_fifo;
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100104 bool qcom_dml;
Ulf Hansson78782892014-06-13 13:21:38 +0200105 bool reversed_irq_handling;
Rabin Vincent4956e102010-07-21 12:54:40 +0100106};
107
108static struct variant_data variant_arm = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100109 .fifosize = 16 * 4,
110 .fifohalfsize = 8 * 4,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100111 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100112 .pwrreg_powerup = MCI_PWR_UP,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100113 .f_max = 100000000,
Ulf Hansson78782892014-06-13 13:21:38 +0200114 .reversed_irq_handling = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100115};
116
Pawel Moll768fbc12011-03-11 17:18:07 +0000117static struct variant_data variant_arm_extended_fifo = {
118 .fifosize = 128 * 4,
119 .fifohalfsize = 64 * 4,
120 .datalength_bits = 16,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100121 .pwrreg_powerup = MCI_PWR_UP,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100122 .f_max = 100000000,
Pawel Moll768fbc12011-03-11 17:18:07 +0000123};
124
Pawel Moll3a372982013-01-24 14:12:45 +0100125static struct variant_data variant_arm_extended_fifo_hwfc = {
126 .fifosize = 128 * 4,
127 .fifohalfsize = 64 * 4,
128 .clkreg_enable = MCI_ARM_HWFCEN,
129 .datalength_bits = 16,
130 .pwrreg_powerup = MCI_PWR_UP,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100131 .f_max = 100000000,
Pawel Moll3a372982013-01-24 14:12:45 +0100132};
133
Rabin Vincent4956e102010-07-21 12:54:40 +0100134static struct variant_data variant_u300 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100135 .fifosize = 16 * 4,
136 .fifohalfsize = 8 * 4,
Linus Walleij49ac2152011-03-04 14:54:16 +0100137 .clkreg_enable = MCI_ST_U300_HWFCEN,
Srinivas Kandagatlae1412d82014-06-02 10:09:23 +0100138 .clkreg_8bit_bus_enable = MCI_ST_8BIT_BUS,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100139 .datalength_bits = 16,
Linus Walleij5db3eee2016-10-25 11:06:05 +0200140 .datactrl_mask_sdio = MCI_DPSM_ST_SDIOEN,
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100141 .st_sdio = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100142 .pwrreg_powerup = MCI_PWR_ON,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100143 .f_max = 100000000,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100144 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100145 .pwrreg_clkgate = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100146 .pwrreg_nopower = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100147};
148
Linus Walleij34fd4212012-04-10 17:43:59 +0100149static struct variant_data variant_nomadik = {
150 .fifosize = 16 * 4,
151 .fifohalfsize = 8 * 4,
152 .clkreg = MCI_CLK_ENABLE,
Linus Walleijf5abc762016-01-04 02:22:08 +0100153 .clkreg_8bit_bus_enable = MCI_ST_8BIT_BUS,
Linus Walleij34fd4212012-04-10 17:43:59 +0100154 .datalength_bits = 24,
Linus Walleij5db3eee2016-10-25 11:06:05 +0200155 .datactrl_mask_sdio = MCI_DPSM_ST_SDIOEN,
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100156 .st_sdio = true,
Linus Walleij34fd4212012-04-10 17:43:59 +0100157 .st_clkdiv = true,
158 .pwrreg_powerup = MCI_PWR_ON,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100159 .f_max = 100000000,
Linus Walleij34fd4212012-04-10 17:43:59 +0100160 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100161 .pwrreg_clkgate = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100162 .pwrreg_nopower = true,
Linus Walleij34fd4212012-04-10 17:43:59 +0100163};
164
Rabin Vincent4956e102010-07-21 12:54:40 +0100165static struct variant_data variant_ux500 = {
Rabin Vincent8301bb62010-08-09 12:57:30 +0100166 .fifosize = 30 * 4,
167 .fifohalfsize = 8 * 4,
Rabin Vincent4956e102010-07-21 12:54:40 +0100168 .clkreg = MCI_CLK_ENABLE,
Linus Walleij49ac2152011-03-04 14:54:16 +0100169 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Srinivas Kandagatlae1412d82014-06-02 10:09:23 +0100170 .clkreg_8bit_bus_enable = MCI_ST_8BIT_BUS,
Srinivas Kandagatlae8740642014-06-02 10:09:30 +0100171 .clkreg_neg_edge_enable = MCI_ST_UX500_NEG_EDGE,
Rabin Vincent08458ef2010-07-21 12:55:59 +0100172 .datalength_bits = 24,
Linus Walleij5db3eee2016-10-25 11:06:05 +0200173 .datactrl_mask_sdio = MCI_DPSM_ST_SDIOEN,
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100174 .st_sdio = true,
Linus Walleijb70a67f2010-12-06 09:24:14 +0100175 .st_clkdiv = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100176 .pwrreg_powerup = MCI_PWR_ON,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100177 .f_max = 100000000,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100178 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100179 .pwrreg_clkgate = true,
Ulf Hansson01259622013-05-15 20:53:22 +0100180 .busy_detect = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100181 .pwrreg_nopower = true,
Rabin Vincent4956e102010-07-21 12:54:40 +0100182};
Linus Walleijb70a67f2010-12-06 09:24:14 +0100183
Philippe Langlais1784b152011-03-25 08:51:52 +0100184static struct variant_data variant_ux500v2 = {
185 .fifosize = 30 * 4,
186 .fifohalfsize = 8 * 4,
187 .clkreg = MCI_CLK_ENABLE,
188 .clkreg_enable = MCI_ST_UX500_HWFCEN,
Srinivas Kandagatlae1412d82014-06-02 10:09:23 +0100189 .clkreg_8bit_bus_enable = MCI_ST_8BIT_BUS,
Srinivas Kandagatlae8740642014-06-02 10:09:30 +0100190 .clkreg_neg_edge_enable = MCI_ST_UX500_NEG_EDGE,
Linus Walleij5db3eee2016-10-25 11:06:05 +0200191 .datactrl_mask_ddrmode = MCI_DPSM_ST_DDRMODE,
Philippe Langlais1784b152011-03-25 08:51:52 +0100192 .datalength_bits = 24,
Linus Walleij5db3eee2016-10-25 11:06:05 +0200193 .datactrl_mask_sdio = MCI_DPSM_ST_SDIOEN,
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100194 .st_sdio = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100195 .st_clkdiv = true,
196 .blksz_datactrl16 = true,
Ulf Hansson7d72a1d2011-12-13 16:54:55 +0100197 .pwrreg_powerup = MCI_PWR_ON,
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +0100198 .f_max = 100000000,
Ulf Hansson4d1a3a02011-12-13 16:57:07 +0100199 .signal_direction = true,
Ulf Hanssonf4670da2013-01-09 17:19:54 +0100200 .pwrreg_clkgate = true,
Ulf Hansson01259622013-05-15 20:53:22 +0100201 .busy_detect = true,
Ulf Hansson1ff44432013-09-04 09:05:17 +0100202 .pwrreg_nopower = true,
Philippe Langlais1784b152011-03-25 08:51:52 +0100203};
204
Srinivas Kandagatla55b604a2014-06-02 10:10:13 +0100205static struct variant_data variant_qcom = {
206 .fifosize = 16 * 4,
207 .fifohalfsize = 8 * 4,
208 .clkreg = MCI_CLK_ENABLE,
209 .clkreg_enable = MCI_QCOM_CLK_FLOWENA |
210 MCI_QCOM_CLK_SELECT_IN_FBCLK,
211 .clkreg_8bit_bus_enable = MCI_QCOM_CLK_WIDEBUS_8,
212 .datactrl_mask_ddrmode = MCI_QCOM_CLK_SELECT_IN_DDR_MODE,
Linus Walleij5db3eee2016-10-25 11:06:05 +0200213 .data_cmd_enable = MCI_CPSM_QCOM_DATCMD,
Srinivas Kandagatla55b604a2014-06-02 10:10:13 +0100214 .blksz_datactrl4 = true,
215 .datalength_bits = 24,
216 .pwrreg_powerup = MCI_PWR_UP,
217 .f_max = 208000000,
218 .explicit_mclk_control = true,
219 .qcom_fifo = true,
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100220 .qcom_dml = true,
Srinivas Kandagatla55b604a2014-06-02 10:10:13 +0100221};
222
Ulf Hansson01259622013-05-15 20:53:22 +0100223static int mmci_card_busy(struct mmc_host *mmc)
224{
225 struct mmci_host *host = mmc_priv(mmc);
226 unsigned long flags;
227 int busy = 0;
228
Ulf Hansson01259622013-05-15 20:53:22 +0100229 spin_lock_irqsave(&host->lock, flags);
230 if (readl(host->base + MMCISTATUS) & MCI_ST_CARDBUSY)
231 busy = 1;
232 spin_unlock_irqrestore(&host->lock, flags);
233
Ulf Hansson01259622013-05-15 20:53:22 +0100234 return busy;
235}
236
Linus Walleija6a64642009-09-14 12:56:14 +0100237/*
Ulf Hansson653a7612013-01-21 21:29:34 +0100238 * Validate mmc prerequisites
239 */
240static int mmci_validate_data(struct mmci_host *host,
241 struct mmc_data *data)
242{
243 if (!data)
244 return 0;
245
246 if (!is_power_of_2(data->blksz)) {
247 dev_err(mmc_dev(host->mmc),
248 "unsupported block size (%d bytes)\n", data->blksz);
249 return -EINVAL;
250 }
251
252 return 0;
253}
254
Ulf Hanssonf829c042013-09-04 09:01:15 +0100255static void mmci_reg_delay(struct mmci_host *host)
256{
257 /*
258 * According to the spec, at least three feedback clock cycles
259 * of max 52 MHz must pass between two writes to the MMCICLOCK reg.
260 * Three MCLK clock cycles must pass between two MMCIPOWER reg writes.
261 * Worst delay time during card init is at 100 kHz => 30 us.
262 * Worst delay time when up and running is at 25 MHz => 120 ns.
263 */
264 if (host->cclk < 25000000)
265 udelay(30);
266 else
267 ndelay(120);
268}
269
Ulf Hansson653a7612013-01-21 21:29:34 +0100270/*
Linus Walleija6a64642009-09-14 12:56:14 +0100271 * This must be called with host->lock held
272 */
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100273static void mmci_write_clkreg(struct mmci_host *host, u32 clk)
274{
275 if (host->clk_reg != clk) {
276 host->clk_reg = clk;
277 writel(clk, host->base + MMCICLOCK);
278 }
279}
280
281/*
282 * This must be called with host->lock held
283 */
284static void mmci_write_pwrreg(struct mmci_host *host, u32 pwr)
285{
286 if (host->pwr_reg != pwr) {
287 host->pwr_reg = pwr;
288 writel(pwr, host->base + MMCIPOWER);
289 }
290}
291
292/*
293 * This must be called with host->lock held
294 */
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100295static void mmci_write_datactrlreg(struct mmci_host *host, u32 datactrl)
296{
Ulf Hansson01259622013-05-15 20:53:22 +0100297 /* Keep ST Micro busy mode if enabled */
Linus Walleij5db3eee2016-10-25 11:06:05 +0200298 datactrl |= host->datactrl_reg & MCI_DPSM_ST_BUSYMODE;
Ulf Hansson01259622013-05-15 20:53:22 +0100299
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100300 if (host->datactrl_reg != datactrl) {
301 host->datactrl_reg = datactrl;
302 writel(datactrl, host->base + MMCIDATACTRL);
303 }
304}
305
306/*
307 * This must be called with host->lock held
308 */
Linus Walleija6a64642009-09-14 12:56:14 +0100309static void mmci_set_clkreg(struct mmci_host *host, unsigned int desired)
310{
Rabin Vincent4956e102010-07-21 12:54:40 +0100311 struct variant_data *variant = host->variant;
312 u32 clk = variant->clkreg;
Linus Walleija6a64642009-09-14 12:56:14 +0100313
Ulf Hanssonc58a8502013-05-13 15:40:03 +0100314 /* Make sure cclk reflects the current calculated clock */
315 host->cclk = 0;
316
Linus Walleija6a64642009-09-14 12:56:14 +0100317 if (desired) {
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +0100318 if (variant->explicit_mclk_control) {
319 host->cclk = host->mclk;
320 } else if (desired >= host->mclk) {
Linus Walleij991a86e2010-12-10 09:35:53 +0100321 clk = MCI_CLK_BYPASS;
Linus Walleij399bc482011-04-01 07:59:17 +0100322 if (variant->st_clkdiv)
323 clk |= MCI_ST_UX500_NEG_EDGE;
Linus Walleija6a64642009-09-14 12:56:14 +0100324 host->cclk = host->mclk;
Linus Walleijb70a67f2010-12-06 09:24:14 +0100325 } else if (variant->st_clkdiv) {
326 /*
327 * DB8500 TRM says f = mclk / (clkdiv + 2)
328 * => clkdiv = (mclk / f) - 2
329 * Round the divider up so we don't exceed the max
330 * frequency
331 */
332 clk = DIV_ROUND_UP(host->mclk, desired) - 2;
333 if (clk >= 256)
334 clk = 255;
335 host->cclk = host->mclk / (clk + 2);
Linus Walleija6a64642009-09-14 12:56:14 +0100336 } else {
Linus Walleijb70a67f2010-12-06 09:24:14 +0100337 /*
338 * PL180 TRM says f = mclk / (2 * (clkdiv + 1))
339 * => clkdiv = mclk / (2 * f) - 1
340 */
Linus Walleija6a64642009-09-14 12:56:14 +0100341 clk = host->mclk / (2 * desired) - 1;
342 if (clk >= 256)
343 clk = 255;
344 host->cclk = host->mclk / (2 * (clk + 1));
345 }
Rabin Vincent4380c142010-07-21 12:55:18 +0100346
347 clk |= variant->clkreg_enable;
Linus Walleija6a64642009-09-14 12:56:14 +0100348 clk |= MCI_CLK_ENABLE;
349 /* This hasn't proven to be worthwhile */
350 /* clk |= MCI_CLK_PWRSAVE; */
351 }
352
Ulf Hanssonc58a8502013-05-13 15:40:03 +0100353 /* Set actual clock for debug */
354 host->mmc->actual_clock = host->cclk;
355
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100356 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_4)
Linus Walleij771dc152010-04-08 07:38:52 +0100357 clk |= MCI_4BIT_BUS;
358 if (host->mmc->ios.bus_width == MMC_BUS_WIDTH_8)
Srinivas Kandagatlae1412d82014-06-02 10:09:23 +0100359 clk |= variant->clkreg_8bit_bus_enable;
Linus Walleij9e6c82c2009-09-14 12:57:11 +0100360
Seungwon Jeon6dad6c92014-03-14 21:12:13 +0900361 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50 ||
362 host->mmc->ios.timing == MMC_TIMING_MMC_DDR52)
Srinivas Kandagatlae8740642014-06-02 10:09:30 +0100363 clk |= variant->clkreg_neg_edge_enable;
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100364
Ulf Hansson7437cfa2012-01-18 09:17:27 +0100365 mmci_write_clkreg(host, clk);
Linus Walleija6a64642009-09-14 12:56:14 +0100366}
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368static void
369mmci_request_end(struct mmci_host *host, struct mmc_request *mrq)
370{
371 writel(0, host->base + MMCICOMMAND);
372
Russell Kinge47c2222007-01-08 16:42:51 +0000373 BUG_ON(host->data);
374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 host->mrq = NULL;
376 host->cmd = NULL;
377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 mmc_request_done(host->mmc, mrq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Linus Walleij2686b4b2010-10-19 12:39:48 +0100381static void mmci_set_mask1(struct mmci_host *host, unsigned int mask)
382{
383 void __iomem *base = host->base;
384
385 if (host->singleirq) {
386 unsigned int mask0 = readl(base + MMCIMASK0);
387
388 mask0 &= ~MCI_IRQ1MASK;
389 mask0 |= mask;
390
391 writel(mask0, base + MMCIMASK0);
392 }
393
394 writel(mask, base + MMCIMASK1);
395}
396
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397static void mmci_stop_data(struct mmci_host *host)
398{
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100399 mmci_write_datactrlreg(host, 0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100400 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 host->data = NULL;
402}
403
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100404static void mmci_init_sg(struct mmci_host *host, struct mmc_data *data)
405{
406 unsigned int flags = SG_MITER_ATOMIC;
407
408 if (data->flags & MMC_DATA_READ)
409 flags |= SG_MITER_TO_SG;
410 else
411 flags |= SG_MITER_FROM_SG;
412
413 sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags);
414}
415
Russell Kingc8ebae32011-01-11 19:35:53 +0000416/*
417 * All the DMA operation mode stuff goes inside this ifdef.
418 * This assumes that you have a generic DMA device interface,
419 * no custom DMA interfaces are supported.
420 */
421#ifdef CONFIG_DMA_ENGINE
Bill Pembertonc3be1ef2012-11-19 13:23:06 -0500422static void mmci_dma_setup(struct mmci_host *host)
Russell Kingc8ebae32011-01-11 19:35:53 +0000423{
Russell Kingc8ebae32011-01-11 19:35:53 +0000424 const char *rxname, *txname;
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100425 struct variant_data *variant = host->variant;
Russell Kingc8ebae32011-01-11 19:35:53 +0000426
Lee Jones1fd83f02013-05-03 12:51:17 +0100427 host->dma_rx_channel = dma_request_slave_channel(mmc_dev(host->mmc), "rx");
428 host->dma_tx_channel = dma_request_slave_channel(mmc_dev(host->mmc), "tx");
Russell Kingc8ebae32011-01-11 19:35:53 +0000429
Per Forlin58c7ccb2011-07-01 18:55:24 +0200430 /* initialize pre request cookie */
431 host->next_data.cookie = 1;
432
Russell Kingc8ebae32011-01-11 19:35:53 +0000433 /*
434 * If only an RX channel is specified, the driver will
435 * attempt to use it bidirectionally, however if it is
436 * is specified but cannot be located, DMA will be disabled.
437 */
Lee Jones1fd83f02013-05-03 12:51:17 +0100438 if (host->dma_rx_channel && !host->dma_tx_channel)
Russell Kingc8ebae32011-01-11 19:35:53 +0000439 host->dma_tx_channel = host->dma_rx_channel;
Russell Kingc8ebae32011-01-11 19:35:53 +0000440
441 if (host->dma_rx_channel)
442 rxname = dma_chan_name(host->dma_rx_channel);
443 else
444 rxname = "none";
445
446 if (host->dma_tx_channel)
447 txname = dma_chan_name(host->dma_tx_channel);
448 else
449 txname = "none";
450
451 dev_info(mmc_dev(host->mmc), "DMA channels RX %s, TX %s\n",
452 rxname, txname);
453
454 /*
455 * Limit the maximum segment size in any SG entry according to
456 * the parameters of the DMA engine device.
457 */
458 if (host->dma_tx_channel) {
459 struct device *dev = host->dma_tx_channel->device->dev;
460 unsigned int max_seg_size = dma_get_max_seg_size(dev);
461
462 if (max_seg_size < host->mmc->max_seg_size)
463 host->mmc->max_seg_size = max_seg_size;
464 }
465 if (host->dma_rx_channel) {
466 struct device *dev = host->dma_rx_channel->device->dev;
467 unsigned int max_seg_size = dma_get_max_seg_size(dev);
468
469 if (max_seg_size < host->mmc->max_seg_size)
470 host->mmc->max_seg_size = max_seg_size;
471 }
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100472
473 if (variant->qcom_dml && host->dma_rx_channel && host->dma_tx_channel)
474 if (dml_hw_init(host, host->mmc->parent->of_node))
475 variant->qcom_dml = false;
Russell Kingc8ebae32011-01-11 19:35:53 +0000476}
477
478/*
Bill Pemberton6e0ee712012-11-19 13:26:03 -0500479 * This is used in or so inline it
Russell Kingc8ebae32011-01-11 19:35:53 +0000480 * so it can be discarded.
481 */
482static inline void mmci_dma_release(struct mmci_host *host)
483{
Russell Kingc8ebae32011-01-11 19:35:53 +0000484 if (host->dma_rx_channel)
485 dma_release_channel(host->dma_rx_channel);
Ulf Hansson8c3a05b2014-05-20 06:45:54 +0200486 if (host->dma_tx_channel)
Russell Kingc8ebae32011-01-11 19:35:53 +0000487 dma_release_channel(host->dma_tx_channel);
488 host->dma_rx_channel = host->dma_tx_channel = NULL;
489}
490
Ulf Hansson653a7612013-01-21 21:29:34 +0100491static void mmci_dma_data_error(struct mmci_host *host)
492{
493 dev_err(mmc_dev(host->mmc), "error during DMA transfer!\n");
494 dmaengine_terminate_all(host->dma_current);
495 host->dma_current = NULL;
496 host->dma_desc_current = NULL;
497 host->data->host_cookie = 0;
498}
499
Russell Kingc8ebae32011-01-11 19:35:53 +0000500static void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
501{
Ulf Hansson653a7612013-01-21 21:29:34 +0100502 struct dma_chan *chan;
Russell Kingc8ebae32011-01-11 19:35:53 +0000503 enum dma_data_direction dir;
Ulf Hansson653a7612013-01-21 21:29:34 +0100504
505 if (data->flags & MMC_DATA_READ) {
506 dir = DMA_FROM_DEVICE;
507 chan = host->dma_rx_channel;
508 } else {
509 dir = DMA_TO_DEVICE;
510 chan = host->dma_tx_channel;
511 }
512
513 dma_unmap_sg(chan->device->dev, data->sg, data->sg_len, dir);
514}
515
516static void mmci_dma_finalize(struct mmci_host *host, struct mmc_data *data)
517{
Russell Kingc8ebae32011-01-11 19:35:53 +0000518 u32 status;
519 int i;
520
521 /* Wait up to 1ms for the DMA to complete */
522 for (i = 0; ; i++) {
523 status = readl(host->base + MMCISTATUS);
524 if (!(status & MCI_RXDATAAVLBLMASK) || i >= 100)
525 break;
526 udelay(10);
527 }
528
529 /*
530 * Check to see whether we still have some data left in the FIFO -
531 * this catches DMA controllers which are unable to monitor the
532 * DMALBREQ and DMALSREQ signals while allowing us to DMA to non-
533 * contiguous buffers. On TX, we'll get a FIFO underrun error.
534 */
535 if (status & MCI_RXDATAAVLBLMASK) {
Ulf Hansson653a7612013-01-21 21:29:34 +0100536 mmci_dma_data_error(host);
Russell Kingc8ebae32011-01-11 19:35:53 +0000537 if (!data->error)
538 data->error = -EIO;
539 }
540
Per Forlin58c7ccb2011-07-01 18:55:24 +0200541 if (!data->host_cookie)
Ulf Hansson653a7612013-01-21 21:29:34 +0100542 mmci_dma_unmap(host, data);
Russell Kingc8ebae32011-01-11 19:35:53 +0000543
544 /*
545 * Use of DMA with scatter-gather is impossible.
546 * Give up with DMA and switch back to PIO mode.
547 */
548 if (status & MCI_RXDATAAVLBLMASK) {
549 dev_err(mmc_dev(host->mmc), "buggy DMA detected. Taking evasive action.\n");
550 mmci_dma_release(host);
551 }
Ulf Hansson653a7612013-01-21 21:29:34 +0100552
553 host->dma_current = NULL;
554 host->dma_desc_current = NULL;
Russell Kingc8ebae32011-01-11 19:35:53 +0000555}
556
Ulf Hansson653a7612013-01-21 21:29:34 +0100557/* prepares DMA channel and DMA descriptor, returns non-zero on failure */
558static int __mmci_dma_prep_data(struct mmci_host *host, struct mmc_data *data,
559 struct dma_chan **dma_chan,
560 struct dma_async_tx_descriptor **dma_desc)
Russell Kingc8ebae32011-01-11 19:35:53 +0000561{
562 struct variant_data *variant = host->variant;
563 struct dma_slave_config conf = {
564 .src_addr = host->phybase + MMCIFIFO,
565 .dst_addr = host->phybase + MMCIFIFO,
566 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
567 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
568 .src_maxburst = variant->fifohalfsize >> 2, /* # of words */
569 .dst_maxburst = variant->fifohalfsize >> 2, /* # of words */
Viresh Kumar258aea72012-02-01 16:12:19 +0530570 .device_fc = false,
Russell Kingc8ebae32011-01-11 19:35:53 +0000571 };
Russell Kingc8ebae32011-01-11 19:35:53 +0000572 struct dma_chan *chan;
573 struct dma_device *device;
574 struct dma_async_tx_descriptor *desc;
Vinod Koul05f57992011-10-14 10:45:11 +0530575 enum dma_data_direction buffer_dirn;
Russell Kingc8ebae32011-01-11 19:35:53 +0000576 int nr_sg;
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100577 unsigned long flags = DMA_CTRL_ACK;
Russell Kingc8ebae32011-01-11 19:35:53 +0000578
Russell Kingc8ebae32011-01-11 19:35:53 +0000579 if (data->flags & MMC_DATA_READ) {
Vinod Koul05f57992011-10-14 10:45:11 +0530580 conf.direction = DMA_DEV_TO_MEM;
581 buffer_dirn = DMA_FROM_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000582 chan = host->dma_rx_channel;
583 } else {
Vinod Koul05f57992011-10-14 10:45:11 +0530584 conf.direction = DMA_MEM_TO_DEV;
585 buffer_dirn = DMA_TO_DEVICE;
Russell Kingc8ebae32011-01-11 19:35:53 +0000586 chan = host->dma_tx_channel;
587 }
588
589 /* If there's no DMA channel, fall back to PIO */
590 if (!chan)
591 return -EINVAL;
592
593 /* If less than or equal to the fifo size, don't bother with DMA */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200594 if (data->blksz * data->blocks <= variant->fifosize)
Russell Kingc8ebae32011-01-11 19:35:53 +0000595 return -EINVAL;
596
597 device = chan->device;
Vinod Koul05f57992011-10-14 10:45:11 +0530598 nr_sg = dma_map_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Russell Kingc8ebae32011-01-11 19:35:53 +0000599 if (nr_sg == 0)
600 return -EINVAL;
601
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100602 if (host->variant->qcom_dml)
603 flags |= DMA_PREP_INTERRUPT;
604
Russell Kingc8ebae32011-01-11 19:35:53 +0000605 dmaengine_slave_config(chan, &conf);
Alexandre Bounine16052822012-03-08 16:11:18 -0500606 desc = dmaengine_prep_slave_sg(chan, data->sg, nr_sg,
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100607 conf.direction, flags);
Russell Kingc8ebae32011-01-11 19:35:53 +0000608 if (!desc)
609 goto unmap_exit;
610
Ulf Hansson653a7612013-01-21 21:29:34 +0100611 *dma_chan = chan;
612 *dma_desc = desc;
Russell Kingc8ebae32011-01-11 19:35:53 +0000613
Per Forlin58c7ccb2011-07-01 18:55:24 +0200614 return 0;
615
616 unmap_exit:
Vinod Koul05f57992011-10-14 10:45:11 +0530617 dma_unmap_sg(device->dev, data->sg, data->sg_len, buffer_dirn);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200618 return -ENOMEM;
619}
620
Ulf Hansson653a7612013-01-21 21:29:34 +0100621static inline int mmci_dma_prep_data(struct mmci_host *host,
622 struct mmc_data *data)
623{
624 /* Check if next job is already prepared. */
625 if (host->dma_current && host->dma_desc_current)
626 return 0;
627
628 /* No job were prepared thus do it now. */
629 return __mmci_dma_prep_data(host, data, &host->dma_current,
630 &host->dma_desc_current);
631}
632
633static inline int mmci_dma_prep_next(struct mmci_host *host,
634 struct mmc_data *data)
635{
636 struct mmci_host_next *nd = &host->next_data;
637 return __mmci_dma_prep_data(host, data, &nd->dma_chan, &nd->dma_desc);
638}
639
Per Forlin58c7ccb2011-07-01 18:55:24 +0200640static int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
641{
642 int ret;
643 struct mmc_data *data = host->data;
644
Ulf Hansson653a7612013-01-21 21:29:34 +0100645 ret = mmci_dma_prep_data(host, host->data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200646 if (ret)
647 return ret;
648
649 /* Okay, go for it. */
Russell Kingc8ebae32011-01-11 19:35:53 +0000650 dev_vdbg(mmc_dev(host->mmc),
651 "Submit MMCI DMA job, sglen %d blksz %04x blks %04x flags %08x\n",
652 data->sg_len, data->blksz, data->blocks, data->flags);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200653 dmaengine_submit(host->dma_desc_current);
654 dma_async_issue_pending(host->dma_current);
Russell Kingc8ebae32011-01-11 19:35:53 +0000655
Srinivas Kandagatla9cb15142014-07-29 03:50:30 +0100656 if (host->variant->qcom_dml)
657 dml_start_xfer(host, data);
658
Russell Kingc8ebae32011-01-11 19:35:53 +0000659 datactrl |= MCI_DPSM_DMAENABLE;
660
661 /* Trigger the DMA transfer */
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100662 mmci_write_datactrlreg(host, datactrl);
Russell Kingc8ebae32011-01-11 19:35:53 +0000663
664 /*
665 * Let the MMCI say when the data is ended and it's time
666 * to fire next DMA request. When that happens, MMCI will
667 * call mmci_data_end()
668 */
669 writel(readl(host->base + MMCIMASK0) | MCI_DATAENDMASK,
670 host->base + MMCIMASK0);
671 return 0;
Russell Kingc8ebae32011-01-11 19:35:53 +0000672}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200673
674static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
675{
676 struct mmci_host_next *next = &host->next_data;
677
Ulf Hansson653a7612013-01-21 21:29:34 +0100678 WARN_ON(data->host_cookie && data->host_cookie != next->cookie);
679 WARN_ON(!data->host_cookie && (next->dma_desc || next->dma_chan));
Per Forlin58c7ccb2011-07-01 18:55:24 +0200680
681 host->dma_desc_current = next->dma_desc;
682 host->dma_current = next->dma_chan;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200683 next->dma_desc = NULL;
684 next->dma_chan = NULL;
685}
686
687static void mmci_pre_request(struct mmc_host *mmc, struct mmc_request *mrq,
688 bool is_first_req)
689{
690 struct mmci_host *host = mmc_priv(mmc);
691 struct mmc_data *data = mrq->data;
692 struct mmci_host_next *nd = &host->next_data;
693
694 if (!data)
695 return;
696
Ulf Hansson653a7612013-01-21 21:29:34 +0100697 BUG_ON(data->host_cookie);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200698
Ulf Hansson653a7612013-01-21 21:29:34 +0100699 if (mmci_validate_data(host, data))
700 return;
701
702 if (!mmci_dma_prep_next(host, data))
703 data->host_cookie = ++nd->cookie < 0 ? 1 : nd->cookie;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200704}
705
706static void mmci_post_request(struct mmc_host *mmc, struct mmc_request *mrq,
707 int err)
708{
709 struct mmci_host *host = mmc_priv(mmc);
710 struct mmc_data *data = mrq->data;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200711
Ulf Hansson653a7612013-01-21 21:29:34 +0100712 if (!data || !data->host_cookie)
Per Forlin58c7ccb2011-07-01 18:55:24 +0200713 return;
714
Ulf Hansson653a7612013-01-21 21:29:34 +0100715 mmci_dma_unmap(host, data);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200716
Ulf Hansson653a7612013-01-21 21:29:34 +0100717 if (err) {
718 struct mmci_host_next *next = &host->next_data;
719 struct dma_chan *chan;
720 if (data->flags & MMC_DATA_READ)
721 chan = host->dma_rx_channel;
722 else
723 chan = host->dma_tx_channel;
724 dmaengine_terminate_all(chan);
Per Forlin58c7ccb2011-07-01 18:55:24 +0200725
Srinivas Kandagatlab5c16a62014-10-08 12:25:17 +0100726 if (host->dma_desc_current == next->dma_desc)
727 host->dma_desc_current = NULL;
728
729 if (host->dma_current == next->dma_chan)
730 host->dma_current = NULL;
731
Ulf Hansson653a7612013-01-21 21:29:34 +0100732 next->dma_desc = NULL;
733 next->dma_chan = NULL;
Srinivas Kandagatlab5c16a62014-10-08 12:25:17 +0100734 data->host_cookie = 0;
Per Forlin58c7ccb2011-07-01 18:55:24 +0200735 }
736}
737
Russell Kingc8ebae32011-01-11 19:35:53 +0000738#else
739/* Blank functions if the DMA engine is not available */
Per Forlin58c7ccb2011-07-01 18:55:24 +0200740static void mmci_get_next_data(struct mmci_host *host, struct mmc_data *data)
741{
742}
Russell Kingc8ebae32011-01-11 19:35:53 +0000743static inline void mmci_dma_setup(struct mmci_host *host)
744{
745}
746
747static inline void mmci_dma_release(struct mmci_host *host)
748{
749}
750
751static inline void mmci_dma_unmap(struct mmci_host *host, struct mmc_data *data)
752{
753}
754
Ulf Hansson653a7612013-01-21 21:29:34 +0100755static inline void mmci_dma_finalize(struct mmci_host *host,
756 struct mmc_data *data)
757{
758}
759
Russell Kingc8ebae32011-01-11 19:35:53 +0000760static inline void mmci_dma_data_error(struct mmci_host *host)
761{
762}
763
764static inline int mmci_dma_start_data(struct mmci_host *host, unsigned int datactrl)
765{
766 return -ENOSYS;
767}
Per Forlin58c7ccb2011-07-01 18:55:24 +0200768
769#define mmci_pre_request NULL
770#define mmci_post_request NULL
771
Russell Kingc8ebae32011-01-11 19:35:53 +0000772#endif
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774static void mmci_start_data(struct mmci_host *host, struct mmc_data *data)
775{
Rabin Vincent8301bb62010-08-09 12:57:30 +0100776 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 unsigned int datactrl, timeout, irqmask;
Russell King7b09cda2005-07-01 12:02:59 +0100778 unsigned long long clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 void __iomem *base;
Russell King3bc87f22006-08-27 13:51:28 +0100780 int blksz_bits;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Linus Walleij64de0282010-02-19 01:09:10 +0100782 dev_dbg(mmc_dev(host->mmc), "blksz %04x blks %04x flags %08x\n",
783 data->blksz, data->blocks, data->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 host->data = data;
Rabin Vincent528320d2010-07-21 12:49:49 +0100786 host->size = data->blksz * data->blocks;
Russell King51d43752011-01-27 10:56:52 +0000787 data->bytes_xfered = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Russell King7b09cda2005-07-01 12:02:59 +0100789 clks = (unsigned long long)data->timeout_ns * host->cclk;
Srinivas Kandagatlac4a35762014-06-02 10:08:39 +0100790 do_div(clks, NSEC_PER_SEC);
Russell King7b09cda2005-07-01 12:02:59 +0100791
792 timeout = data->timeout_clks + (unsigned int)clks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
794 base = host->base;
795 writel(timeout, base + MMCIDATATIMER);
796 writel(host->size, base + MMCIDATALENGTH);
797
Russell King3bc87f22006-08-27 13:51:28 +0100798 blksz_bits = ffs(data->blksz) - 1;
799 BUG_ON(1 << blksz_bits != data->blksz);
800
Philippe Langlais1784b152011-03-25 08:51:52 +0100801 if (variant->blksz_datactrl16)
802 datactrl = MCI_DPSM_ENABLE | (data->blksz << 16);
Srinivas Kandagatlaff783232014-06-02 10:09:06 +0100803 else if (variant->blksz_datactrl4)
804 datactrl = MCI_DPSM_ENABLE | (data->blksz << 4);
Philippe Langlais1784b152011-03-25 08:51:52 +0100805 else
806 datactrl = MCI_DPSM_ENABLE | blksz_bits << 4;
Russell Kingc8ebae32011-01-11 19:35:53 +0000807
808 if (data->flags & MMC_DATA_READ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 datactrl |= MCI_DPSM_DIRECTION;
Russell Kingc8ebae32011-01-11 19:35:53 +0000810
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100811 if (host->mmc->card && mmc_card_sdio(host->mmc->card)) {
812 u32 clk;
Ulf Hansson7258db72011-12-13 17:05:28 +0100813
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100814 datactrl |= variant->datactrl_mask_sdio;
Ulf Hansson06c1a122012-10-12 14:01:50 +0100815
Srinivas Kandagatlac7354132014-08-22 05:55:16 +0100816 /*
817 * The ST Micro variant for SDIO small write transfers
818 * needs to have clock H/W flow control disabled,
819 * otherwise the transfer will not start. The threshold
820 * depends on the rate of MCLK.
821 */
822 if (variant->st_sdio && data->flags & MMC_DATA_WRITE &&
823 (host->size < 8 ||
824 (host->size <= 8 && host->mclk > 50000000)))
825 clk = host->clk_reg & ~variant->clkreg_enable;
826 else
827 clk = host->clk_reg | variant->clkreg_enable;
828
829 mmci_write_clkreg(host, clk);
830 }
Ulf Hansson06c1a122012-10-12 14:01:50 +0100831
Seungwon Jeon6dad6c92014-03-14 21:12:13 +0900832 if (host->mmc->ios.timing == MMC_TIMING_UHS_DDR50 ||
833 host->mmc->ios.timing == MMC_TIMING_MMC_DDR52)
Srinivas Kandagatlae17dca22014-06-02 10:09:15 +0100834 datactrl |= variant->datactrl_mask_ddrmode;
Ulf Hansson6dbb6ee2013-01-07 15:30:44 +0100835
Russell Kingc8ebae32011-01-11 19:35:53 +0000836 /*
837 * Attempt to use DMA operation mode, if this
838 * should fail, fall back to PIO mode
839 */
840 if (!mmci_dma_start_data(host, datactrl))
841 return;
842
843 /* IRQ mode, map the SG list for CPU reading/writing */
844 mmci_init_sg(host, data);
845
846 if (data->flags & MMC_DATA_READ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 irqmask = MCI_RXFIFOHALFFULLMASK;
Russell King0425a142006-02-16 16:48:31 +0000848
849 /*
Russell Kingc4d877c2011-01-27 09:50:13 +0000850 * If we have less than the fifo 'half-full' threshold to
851 * transfer, trigger a PIO interrupt as soon as any data
852 * is available.
Russell King0425a142006-02-16 16:48:31 +0000853 */
Russell Kingc4d877c2011-01-27 09:50:13 +0000854 if (host->size < variant->fifohalfsize)
Russell King0425a142006-02-16 16:48:31 +0000855 irqmask |= MCI_RXDATAAVLBLMASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856 } else {
857 /*
858 * We don't actually need to include "FIFO empty" here
859 * since its implicit in "FIFO half empty".
860 */
861 irqmask = MCI_TXFIFOHALFEMPTYMASK;
862 }
863
Ulf Hansson9cc639a2013-05-15 20:48:23 +0100864 mmci_write_datactrlreg(host, datactrl);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 writel(readl(base + MMCIMASK0) & ~MCI_DATAENDMASK, base + MMCIMASK0);
Linus Walleij2686b4b2010-10-19 12:39:48 +0100866 mmci_set_mask1(host, irqmask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867}
868
869static void
870mmci_start_command(struct mmci_host *host, struct mmc_command *cmd, u32 c)
871{
872 void __iomem *base = host->base;
873
Linus Walleij64de0282010-02-19 01:09:10 +0100874 dev_dbg(mmc_dev(host->mmc), "op %02x arg %08x flags %08x\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 cmd->opcode, cmd->arg, cmd->flags);
876
877 if (readl(base + MMCICOMMAND) & MCI_CPSM_ENABLE) {
878 writel(0, base + MMCICOMMAND);
Srinivas Kandagatla6adb2a82014-06-02 10:08:57 +0100879 mmci_reg_delay(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 }
881
882 c |= cmd->opcode | MCI_CPSM_ENABLE;
Russell Kinge9225172006-02-02 12:23:12 +0000883 if (cmd->flags & MMC_RSP_PRESENT) {
884 if (cmd->flags & MMC_RSP_136)
885 c |= MCI_CPSM_LONGRSP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 c |= MCI_CPSM_RESPONSE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 }
888 if (/*interrupt*/0)
889 c |= MCI_CPSM_INTERRUPT;
890
Srinivas Kandagatlaae7b0062014-06-02 10:09:39 +0100891 if (mmc_cmd_type(cmd) == MMC_CMD_ADTC)
892 c |= host->variant->data_cmd_enable;
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 host->cmd = cmd;
895
896 writel(cmd->arg, base + MMCIARGUMENT);
897 writel(c, base + MMCICOMMAND);
898}
899
900static void
901mmci_data_irq(struct mmci_host *host, struct mmc_data *data,
902 unsigned int status)
903{
Ulf Hansson1cb9da52014-06-12 14:42:23 +0200904 /* Make sure we have data to handle */
905 if (!data)
906 return;
907
Linus Walleijf20f8f22010-10-19 13:41:24 +0100908 /* First check for errors */
Ulf Hanssonb63038d2011-12-13 16:51:04 +0100909 if (status & (MCI_DATACRCFAIL|MCI_DATATIMEOUT|MCI_STARTBITERR|
910 MCI_TXUNDERRUN|MCI_RXOVERRUN)) {
Linus Walleij8cb28152011-01-24 15:22:13 +0100911 u32 remain, success;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100912
Russell Kingc8ebae32011-01-11 19:35:53 +0000913 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +0100914 if (dma_inprogress(host)) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000915 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +0100916 mmci_dma_unmap(host, data);
917 }
Russell Kingc8ebae32011-01-11 19:35:53 +0000918
Russell Kingc8afc9d2011-02-04 09:19:46 +0000919 /*
920 * Calculate how far we are into the transfer. Note that
921 * the data counter gives the number of bytes transferred
922 * on the MMC bus, not on the host side. On reads, this
923 * can be as much as a FIFO-worth of data ahead. This
924 * matters for FIFO overruns only.
925 */
Linus Walleijf5a106d2011-01-27 17:44:34 +0100926 remain = readl(host->base + MMCIDATACNT);
Linus Walleij8cb28152011-01-24 15:22:13 +0100927 success = data->blksz * data->blocks - remain;
928
Russell Kingc8afc9d2011-02-04 09:19:46 +0000929 dev_dbg(mmc_dev(host->mmc), "MCI ERROR IRQ, status 0x%08x at 0x%08x\n",
930 status, success);
Linus Walleij8cb28152011-01-24 15:22:13 +0100931 if (status & MCI_DATACRCFAIL) {
932 /* Last block was not successful */
Russell Kingc8afc9d2011-02-04 09:19:46 +0000933 success -= 1;
Pierre Ossman17b04292007-07-22 22:18:46 +0200934 data->error = -EILSEQ;
Linus Walleij8cb28152011-01-24 15:22:13 +0100935 } else if (status & MCI_DATATIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200936 data->error = -ETIMEDOUT;
Linus Walleij757df742011-06-30 15:10:21 +0100937 } else if (status & MCI_STARTBITERR) {
938 data->error = -ECOMM;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000939 } else if (status & MCI_TXUNDERRUN) {
Pierre Ossman17b04292007-07-22 22:18:46 +0200940 data->error = -EIO;
Russell Kingc8afc9d2011-02-04 09:19:46 +0000941 } else if (status & MCI_RXOVERRUN) {
942 if (success > host->variant->fifosize)
943 success -= host->variant->fifosize;
944 else
945 success = 0;
Linus Walleij8cb28152011-01-24 15:22:13 +0100946 data->error = -EIO;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +0100947 }
Russell King51d43752011-01-27 10:56:52 +0000948 data->bytes_xfered = round_down(success, data->blksz);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
Linus Walleijf20f8f22010-10-19 13:41:24 +0100950
Linus Walleij8cb28152011-01-24 15:22:13 +0100951 if (status & MCI_DATABLOCKEND)
952 dev_err(mmc_dev(host->mmc), "stray MCI_DATABLOCKEND interrupt\n");
Linus Walleijf20f8f22010-10-19 13:41:24 +0100953
Russell Kingccff9b52011-01-30 21:03:50 +0000954 if (status & MCI_DATAEND || data->error) {
Russell Kingc8ebae32011-01-11 19:35:53 +0000955 if (dma_inprogress(host))
Ulf Hansson653a7612013-01-21 21:29:34 +0100956 mmci_dma_finalize(host, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 mmci_stop_data(host);
958
Linus Walleij8cb28152011-01-24 15:22:13 +0100959 if (!data->error)
960 /* The error clause is handled above, success! */
Russell King51d43752011-01-27 10:56:52 +0000961 data->bytes_xfered = data->blksz * data->blocks;
Linus Walleijf20f8f22010-10-19 13:41:24 +0100962
Ulf Hansson024629c2013-05-13 15:40:56 +0100963 if (!data->stop || host->mrq->sbc) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 mmci_request_end(host, data->mrq);
965 } else {
966 mmci_start_command(host, data->stop, 0);
967 }
968 }
969}
970
971static void
972mmci_cmd_irq(struct mmci_host *host, struct mmc_command *cmd,
973 unsigned int status)
974{
975 void __iomem *base = host->base;
Ulf Hanssonad82bfe2014-06-12 15:01:57 +0200976 bool sbc, busy_resp;
977
978 if (!cmd)
979 return;
980
981 sbc = (cmd == host->mrq->sbc);
982 busy_resp = host->variant->busy_detect && (cmd->flags & MMC_RSP_BUSY);
983
984 if (!((status|host->busy_status) & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT|
985 MCI_CMDSENT|MCI_CMDRESPEND)))
986 return;
Ulf Hansson8d94b542014-01-13 16:49:31 +0100987
988 /* Check if we need to wait for busy completion. */
989 if (host->busy_status && (status & MCI_ST_CARDBUSY))
990 return;
991
992 /* Enable busy completion if needed and supported. */
993 if (!host->busy_status && busy_resp &&
994 !(status & (MCI_CMDCRCFAIL|MCI_CMDTIMEOUT)) &&
995 (readl(base + MMCISTATUS) & MCI_ST_CARDBUSY)) {
996 writel(readl(base + MMCIMASK0) | MCI_ST_BUSYEND,
997 base + MMCIMASK0);
998 host->busy_status = status & (MCI_CMDSENT|MCI_CMDRESPEND);
999 return;
1000 }
1001
1002 /* At busy completion, mask the IRQ and complete the request. */
1003 if (host->busy_status) {
1004 writel(readl(base + MMCIMASK0) & ~MCI_ST_BUSYEND,
1005 base + MMCIMASK0);
1006 host->busy_status = 0;
1007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008
1009 host->cmd = NULL;
1010
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 if (status & MCI_CMDTIMEOUT) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001012 cmd->error = -ETIMEDOUT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 } else if (status & MCI_CMDCRCFAIL && cmd->flags & MMC_RSP_CRC) {
Pierre Ossman17b04292007-07-22 22:18:46 +02001014 cmd->error = -EILSEQ;
Russell King - ARM Linux9047b432011-01-11 16:35:56 +00001015 } else {
1016 cmd->resp[0] = readl(base + MMCIRESPONSE0);
1017 cmd->resp[1] = readl(base + MMCIRESPONSE1);
1018 cmd->resp[2] = readl(base + MMCIRESPONSE2);
1019 cmd->resp[3] = readl(base + MMCIRESPONSE3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 }
1021
Ulf Hansson024629c2013-05-13 15:40:56 +01001022 if ((!sbc && !cmd->data) || cmd->error) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +01001023 if (host->data) {
1024 /* Terminate the DMA transfer */
Ulf Hansson653a7612013-01-21 21:29:34 +01001025 if (dma_inprogress(host)) {
Ulf Hansson3b6e3c72011-12-13 16:58:43 +01001026 mmci_dma_data_error(host);
Ulf Hansson653a7612013-01-21 21:29:34 +01001027 mmci_dma_unmap(host, host->data);
1028 }
Russell Kinge47c2222007-01-08 16:42:51 +00001029 mmci_stop_data(host);
Ulf Hansson3b6e3c72011-12-13 16:58:43 +01001030 }
Ulf Hansson024629c2013-05-13 15:40:56 +01001031 mmci_request_end(host, host->mrq);
1032 } else if (sbc) {
1033 mmci_start_command(host, host->mrq->cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 } else if (!(cmd->data->flags & MMC_DATA_READ)) {
1035 mmci_start_data(host, cmd->data);
1036 }
1037}
1038
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +01001039static int mmci_get_rx_fifocnt(struct mmci_host *host, u32 status, int remain)
1040{
1041 return remain - (readl(host->base + MMCIFIFOCNT) << 2);
1042}
1043
1044static int mmci_qcom_get_rx_fifocnt(struct mmci_host *host, u32 status, int r)
1045{
1046 /*
1047 * on qcom SDCC4 only 8 words are used in each burst so only 8 addresses
1048 * from the fifo range should be used
1049 */
1050 if (status & MCI_RXFIFOHALFFULL)
1051 return host->variant->fifohalfsize;
1052 else if (status & MCI_RXDATAAVLBL)
1053 return 4;
1054
1055 return 0;
1056}
1057
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058static int mmci_pio_read(struct mmci_host *host, char *buffer, unsigned int remain)
1059{
1060 void __iomem *base = host->base;
1061 char *ptr = buffer;
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +01001062 u32 status = readl(host->base + MMCISTATUS);
Linus Walleij26eed9a2008-04-26 23:39:44 +01001063 int host_remain = host->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064
1065 do {
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +01001066 int count = host->get_rx_fifocnt(host, status, host_remain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067
1068 if (count > remain)
1069 count = remain;
1070
1071 if (count <= 0)
1072 break;
1073
Ulf Hansson393e5e22011-12-13 17:08:04 +01001074 /*
1075 * SDIO especially may want to send something that is
1076 * not divisible by 4 (as opposed to card sectors
1077 * etc). Therefore make sure to always read the last bytes
1078 * while only doing full 32-bit reads towards the FIFO.
1079 */
1080 if (unlikely(count & 0x3)) {
1081 if (count < 4) {
1082 unsigned char buf[4];
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001083 ioread32_rep(base + MMCIFIFO, buf, 1);
Ulf Hansson393e5e22011-12-13 17:08:04 +01001084 memcpy(ptr, buf, count);
1085 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001086 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +01001087 count &= ~0x3;
1088 }
1089 } else {
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001090 ioread32_rep(base + MMCIFIFO, ptr, count >> 2);
Ulf Hansson393e5e22011-12-13 17:08:04 +01001091 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092
1093 ptr += count;
1094 remain -= count;
Linus Walleij26eed9a2008-04-26 23:39:44 +01001095 host_remain -= count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096
1097 if (remain == 0)
1098 break;
1099
1100 status = readl(base + MMCISTATUS);
1101 } while (status & MCI_RXDATAAVLBL);
1102
1103 return ptr - buffer;
1104}
1105
1106static int mmci_pio_write(struct mmci_host *host, char *buffer, unsigned int remain, u32 status)
1107{
Rabin Vincent8301bb62010-08-09 12:57:30 +01001108 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109 void __iomem *base = host->base;
1110 char *ptr = buffer;
1111
1112 do {
1113 unsigned int count, maxcnt;
1114
Rabin Vincent8301bb62010-08-09 12:57:30 +01001115 maxcnt = status & MCI_TXFIFOEMPTY ?
1116 variant->fifosize : variant->fifohalfsize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 count = min(remain, maxcnt);
1118
Linus Walleij34177802010-10-19 12:43:58 +01001119 /*
Linus Walleij34177802010-10-19 12:43:58 +01001120 * SDIO especially may want to send something that is
1121 * not divisible by 4 (as opposed to card sectors
1122 * etc), and the FIFO only accept full 32-bit writes.
1123 * So compensate by adding +3 on the count, a single
1124 * byte become a 32bit write, 7 bytes will be two
1125 * 32bit writes etc.
1126 */
Davide Ciminaghi4b85da02012-12-10 14:47:21 +01001127 iowrite32_rep(base + MMCIFIFO, ptr, (count + 3) >> 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 ptr += count;
1130 remain -= count;
1131
1132 if (remain == 0)
1133 break;
1134
1135 status = readl(base + MMCISTATUS);
1136 } while (status & MCI_TXFIFOHALFEMPTY);
1137
1138 return ptr - buffer;
1139}
1140
1141/*
1142 * PIO data transfer IRQ handler.
1143 */
David Howells7d12e782006-10-05 14:55:46 +01001144static irqreturn_t mmci_pio_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145{
1146 struct mmci_host *host = dev_id;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001147 struct sg_mapping_iter *sg_miter = &host->sg_miter;
Rabin Vincent8301bb62010-08-09 12:57:30 +01001148 struct variant_data *variant = host->variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 void __iomem *base = host->base;
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001150 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001151 u32 status;
1152
1153 status = readl(base + MMCISTATUS);
1154
Linus Walleij64de0282010-02-19 01:09:10 +01001155 dev_dbg(mmc_dev(host->mmc), "irq1 (pio) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001157 local_irq_save(flags);
1158
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 unsigned int remain, len;
1161 char *buffer;
1162
1163 /*
1164 * For write, we only need to test the half-empty flag
1165 * here - if the FIFO is completely empty, then by
1166 * definition it is more than half empty.
1167 *
1168 * For read, check for data available.
1169 */
1170 if (!(status & (MCI_TXFIFOHALFEMPTY|MCI_RXDATAAVLBL)))
1171 break;
1172
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001173 if (!sg_miter_next(sg_miter))
1174 break;
1175
1176 buffer = sg_miter->addr;
1177 remain = sg_miter->length;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
1179 len = 0;
1180 if (status & MCI_RXACTIVE)
1181 len = mmci_pio_read(host, buffer, remain);
1182 if (status & MCI_TXACTIVE)
1183 len = mmci_pio_write(host, buffer, remain, status);
1184
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001185 sg_miter->consumed = len;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 host->size -= len;
1188 remain -= len;
1189
1190 if (remain)
1191 break;
1192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 status = readl(base + MMCISTATUS);
1194 } while (1);
1195
Rabin Vincent4ce1d6c2010-07-21 12:44:58 +01001196 sg_miter_stop(sg_miter);
1197
1198 local_irq_restore(flags);
1199
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 /*
Russell Kingc4d877c2011-01-27 09:50:13 +00001201 * If we have less than the fifo 'half-full' threshold to transfer,
1202 * trigger a PIO interrupt as soon as any data is available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 */
Russell Kingc4d877c2011-01-27 09:50:13 +00001204 if (status & MCI_RXACTIVE && host->size < variant->fifohalfsize)
Linus Walleij2686b4b2010-10-19 12:39:48 +01001205 mmci_set_mask1(host, MCI_RXDATAAVLBLMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 /*
1208 * If we run out of data, disable the data IRQs; this
1209 * prevents a race where the FIFO becomes empty before
1210 * the chip itself has disabled the data path, and
1211 * stops us racing with our data end IRQ.
1212 */
1213 if (host->size == 0) {
Linus Walleij2686b4b2010-10-19 12:39:48 +01001214 mmci_set_mask1(host, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 writel(readl(base + MMCIMASK0) | MCI_DATAENDMASK, base + MMCIMASK0);
1216 }
1217
1218 return IRQ_HANDLED;
1219}
1220
1221/*
1222 * Handle completion of command and data transfers.
1223 */
David Howells7d12e782006-10-05 14:55:46 +01001224static irqreturn_t mmci_irq(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225{
1226 struct mmci_host *host = dev_id;
1227 u32 status;
1228 int ret = 0;
1229
1230 spin_lock(&host->lock);
1231
1232 do {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 status = readl(host->base + MMCISTATUS);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001234
1235 if (host->singleirq) {
1236 if (status & readl(host->base + MMCIMASK1))
1237 mmci_pio_irq(irq, dev_id);
1238
1239 status &= ~MCI_IRQ1MASK;
1240 }
1241
Ulf Hansson8d94b542014-01-13 16:49:31 +01001242 /*
1243 * We intentionally clear the MCI_ST_CARDBUSY IRQ here (if it's
1244 * enabled) since the HW seems to be triggering the IRQ on both
1245 * edges while monitoring DAT0 for busy completion.
1246 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 status &= readl(host->base + MMCIMASK0);
1248 writel(status, host->base + MMCICLEAR);
1249
Linus Walleij64de0282010-02-19 01:09:10 +01001250 dev_dbg(mmc_dev(host->mmc), "irq0 (data+cmd) %08x\n", status);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251
Ulf Hansson78782892014-06-13 13:21:38 +02001252 if (host->variant->reversed_irq_handling) {
1253 mmci_data_irq(host, host->data, status);
1254 mmci_cmd_irq(host, host->cmd, status);
1255 } else {
1256 mmci_cmd_irq(host, host->cmd, status);
1257 mmci_data_irq(host, host->data, status);
1258 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Ulf Hansson8d94b542014-01-13 16:49:31 +01001260 /* Don't poll for busy completion in irq context. */
1261 if (host->busy_status)
1262 status &= ~MCI_ST_CARDBUSY;
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 ret = 1;
1265 } while (status);
1266
1267 spin_unlock(&host->lock);
1268
1269 return IRQ_RETVAL(ret);
1270}
1271
1272static void mmci_request(struct mmc_host *mmc, struct mmc_request *mrq)
1273{
1274 struct mmci_host *host = mmc_priv(mmc);
Linus Walleij9e943022008-10-24 21:17:50 +01001275 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
1277 WARN_ON(host->mrq != NULL);
1278
Ulf Hansson653a7612013-01-21 21:29:34 +01001279 mrq->cmd->error = mmci_validate_data(host, mrq->data);
1280 if (mrq->cmd->error) {
Pierre Ossman255d01a2007-07-24 20:38:53 +02001281 mmc_request_done(mmc, mrq);
1282 return;
1283 }
1284
Linus Walleij9e943022008-10-24 21:17:50 +01001285 spin_lock_irqsave(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001286
1287 host->mrq = mrq;
1288
Per Forlin58c7ccb2011-07-01 18:55:24 +02001289 if (mrq->data)
1290 mmci_get_next_data(host, mrq->data);
1291
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 if (mrq->data && mrq->data->flags & MMC_DATA_READ)
1293 mmci_start_data(host, mrq->data);
1294
Ulf Hansson024629c2013-05-13 15:40:56 +01001295 if (mrq->sbc)
1296 mmci_start_command(host, mrq->sbc, 0);
1297 else
1298 mmci_start_command(host, mrq->cmd, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299
Linus Walleij9e943022008-10-24 21:17:50 +01001300 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301}
1302
1303static void mmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1304{
1305 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001306 struct variant_data *variant = host->variant;
Linus Walleija6a64642009-09-14 12:56:14 +01001307 u32 pwr = 0;
1308 unsigned long flags;
Lee Jonesdb90f912013-05-03 12:52:12 +01001309 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
Ulf Hanssonbc521812011-12-13 16:57:55 +01001311 if (host->plat->ios_handler &&
1312 host->plat->ios_handler(mmc_dev(mmc), ios))
1313 dev_err(mmc_dev(mmc), "platform ios_handler failed\n");
1314
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 switch (ios->power_mode) {
1316 case MMC_POWER_OFF:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001317 if (!IS_ERR(mmc->supply.vmmc))
1318 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
Lee Jones237fb5e2013-01-31 11:27:52 +00001319
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001320 if (!IS_ERR(mmc->supply.vqmmc) && host->vqmmc_enabled) {
Lee Jones237fb5e2013-01-31 11:27:52 +00001321 regulator_disable(mmc->supply.vqmmc);
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001322 host->vqmmc_enabled = false;
1323 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 break;
1326 case MMC_POWER_UP:
Ulf Hansson599c1d52013-01-07 16:22:50 +01001327 if (!IS_ERR(mmc->supply.vmmc))
1328 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
1329
Ulf Hansson7d72a1d2011-12-13 16:54:55 +01001330 /*
1331 * The ST Micro variant doesn't have the PL180s MCI_PWR_UP
1332 * and instead uses MCI_PWR_ON so apply whatever value is
1333 * configured in the variant data.
1334 */
1335 pwr |= variant->pwrreg_powerup;
1336
1337 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 case MMC_POWER_ON:
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001339 if (!IS_ERR(mmc->supply.vqmmc) && !host->vqmmc_enabled) {
Lee Jonesdb90f912013-05-03 12:52:12 +01001340 ret = regulator_enable(mmc->supply.vqmmc);
1341 if (ret < 0)
1342 dev_err(mmc_dev(mmc),
1343 "failed to enable vqmmc regulator\n");
Ulf Hansson7c0136e2013-05-14 13:53:10 +01001344 else
1345 host->vqmmc_enabled = true;
Lee Jonesdb90f912013-05-03 12:52:12 +01001346 }
Lee Jones237fb5e2013-01-31 11:27:52 +00001347
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 pwr |= MCI_PWR_ON;
1349 break;
1350 }
1351
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001352 if (variant->signal_direction && ios->power_mode != MMC_POWER_OFF) {
1353 /*
1354 * The ST Micro variant has some additional bits
1355 * indicating signal direction for the signals in
1356 * the SD/MMC bus and feedback-clock usage.
1357 */
Ulf Hansson4593df22014-03-21 10:13:05 +01001358 pwr |= host->pwr_reg_add;
Ulf Hansson4d1a3a02011-12-13 16:57:07 +01001359
1360 if (ios->bus_width == MMC_BUS_WIDTH_4)
1361 pwr &= ~MCI_ST_DATA74DIREN;
1362 else if (ios->bus_width == MMC_BUS_WIDTH_1)
1363 pwr &= (~MCI_ST_DATA74DIREN &
1364 ~MCI_ST_DATA31DIREN &
1365 ~MCI_ST_DATA2DIREN);
1366 }
1367
Linus Walleijcc30d602009-01-04 15:18:54 +01001368 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) {
Linus Walleijf17a1f02009-08-04 01:01:02 +01001369 if (host->hw_designer != AMBA_VENDOR_ST)
Linus Walleijcc30d602009-01-04 15:18:54 +01001370 pwr |= MCI_ROD;
1371 else {
1372 /*
1373 * The ST Micro variant use the ROD bit for something
1374 * else and only has OD (Open Drain).
1375 */
1376 pwr |= MCI_OD;
1377 }
1378 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379
Ulf Hanssonf4670da2013-01-09 17:19:54 +01001380 /*
1381 * If clock = 0 and the variant requires the MMCIPOWER to be used for
1382 * gating the clock, the MCI_PWR_ON bit is cleared.
1383 */
1384 if (!ios->clock && variant->pwrreg_clkgate)
1385 pwr &= ~MCI_PWR_ON;
1386
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +01001387 if (host->variant->explicit_mclk_control &&
1388 ios->clock != host->clock_cache) {
1389 ret = clk_set_rate(host->clk, ios->clock);
1390 if (ret < 0)
1391 dev_err(mmc_dev(host->mmc),
1392 "Error setting clock rate (%d)\n", ret);
1393 else
1394 host->mclk = clk_get_rate(host->clk);
1395 }
1396 host->clock_cache = ios->clock;
1397
Linus Walleija6a64642009-09-14 12:56:14 +01001398 spin_lock_irqsave(&host->lock, flags);
1399
1400 mmci_set_clkreg(host, ios->clock);
Ulf Hansson7437cfa2012-01-18 09:17:27 +01001401 mmci_write_pwrreg(host, pwr);
Ulf Hanssonf829c042013-09-04 09:01:15 +01001402 mmci_reg_delay(host);
Linus Walleija6a64642009-09-14 12:56:14 +01001403
1404 spin_unlock_irqrestore(&host->lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405}
1406
Russell King89001442009-07-09 15:16:07 +01001407static int mmci_get_cd(struct mmc_host *mmc)
1408{
1409 struct mmci_host *host = mmc_priv(mmc);
Rabin Vincent29719442010-08-09 12:54:43 +01001410 struct mmci_platform_data *plat = host->plat;
Ulf Hanssond2762092014-03-17 13:56:19 +01001411 unsigned int status = mmc_gpio_get_cd(mmc);
Russell King89001442009-07-09 15:16:07 +01001412
Ulf Hanssond2762092014-03-17 13:56:19 +01001413 if (status == -ENOSYS) {
Rabin Vincent4b8caec2010-08-09 12:56:40 +01001414 if (!plat->status)
1415 return 1; /* Assume always present */
1416
Rabin Vincent29719442010-08-09 12:54:43 +01001417 status = plat->status(mmc_dev(host->mmc));
Ulf Hanssond2762092014-03-17 13:56:19 +01001418 }
Russell King74bc8092010-07-29 15:58:59 +01001419 return status;
Russell King89001442009-07-09 15:16:07 +01001420}
1421
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001422static int mmci_sig_volt_switch(struct mmc_host *mmc, struct mmc_ios *ios)
1423{
1424 int ret = 0;
1425
1426 if (!IS_ERR(mmc->supply.vqmmc)) {
1427
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001428 switch (ios->signal_voltage) {
1429 case MMC_SIGNAL_VOLTAGE_330:
1430 ret = regulator_set_voltage(mmc->supply.vqmmc,
1431 2700000, 3600000);
1432 break;
1433 case MMC_SIGNAL_VOLTAGE_180:
1434 ret = regulator_set_voltage(mmc->supply.vqmmc,
1435 1700000, 1950000);
1436 break;
1437 case MMC_SIGNAL_VOLTAGE_120:
1438 ret = regulator_set_voltage(mmc->supply.vqmmc,
1439 1100000, 1300000);
1440 break;
1441 }
1442
1443 if (ret)
1444 dev_warn(mmc_dev(mmc), "Voltage switch failed\n");
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001445 }
1446
1447 return ret;
1448}
1449
Ulf Hansson01259622013-05-15 20:53:22 +01001450static struct mmc_host_ops mmci_ops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 .request = mmci_request,
Per Forlin58c7ccb2011-07-01 18:55:24 +02001452 .pre_req = mmci_pre_request,
1453 .post_req = mmci_post_request,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 .set_ios = mmci_set_ios,
Ulf Hanssond2762092014-03-17 13:56:19 +01001455 .get_ro = mmc_gpio_get_ro,
Russell King89001442009-07-09 15:16:07 +01001456 .get_cd = mmci_get_cd,
Ulf Hansson0f3ed7f2013-05-15 20:47:33 +01001457 .start_signal_voltage_switch = mmci_sig_volt_switch,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458};
1459
Ulf Hansson78f87df2014-03-17 15:53:07 +01001460static int mmci_of_parse(struct device_node *np, struct mmc_host *mmc)
1461{
Ulf Hansson4593df22014-03-21 10:13:05 +01001462 struct mmci_host *host = mmc_priv(mmc);
Ulf Hansson78f87df2014-03-17 15:53:07 +01001463 int ret = mmc_of_parse(mmc);
Lee Jones000bc9d2012-04-16 10:18:43 +01001464
Ulf Hansson78f87df2014-03-17 15:53:07 +01001465 if (ret)
1466 return ret;
Lee Jones000bc9d2012-04-16 10:18:43 +01001467
Ulf Hansson4593df22014-03-21 10:13:05 +01001468 if (of_get_property(np, "st,sig-dir-dat0", NULL))
1469 host->pwr_reg_add |= MCI_ST_DATA0DIREN;
1470 if (of_get_property(np, "st,sig-dir-dat2", NULL))
1471 host->pwr_reg_add |= MCI_ST_DATA2DIREN;
1472 if (of_get_property(np, "st,sig-dir-dat31", NULL))
1473 host->pwr_reg_add |= MCI_ST_DATA31DIREN;
1474 if (of_get_property(np, "st,sig-dir-dat74", NULL))
1475 host->pwr_reg_add |= MCI_ST_DATA74DIREN;
1476 if (of_get_property(np, "st,sig-dir-cmd", NULL))
1477 host->pwr_reg_add |= MCI_ST_CMDDIREN;
1478 if (of_get_property(np, "st,sig-pin-fbclk", NULL))
1479 host->pwr_reg_add |= MCI_ST_FBCLKEN;
1480
Lee Jones000bc9d2012-04-16 10:18:43 +01001481 if (of_get_property(np, "mmc-cap-mmc-highspeed", NULL))
Ulf Hansson78f87df2014-03-17 15:53:07 +01001482 mmc->caps |= MMC_CAP_MMC_HIGHSPEED;
Lee Jones000bc9d2012-04-16 10:18:43 +01001483 if (of_get_property(np, "mmc-cap-sd-highspeed", NULL))
Ulf Hansson78f87df2014-03-17 15:53:07 +01001484 mmc->caps |= MMC_CAP_SD_HIGHSPEED;
Lee Jones000bc9d2012-04-16 10:18:43 +01001485
Ulf Hansson78f87df2014-03-17 15:53:07 +01001486 return 0;
Lee Jones000bc9d2012-04-16 10:18:43 +01001487}
Lee Jones000bc9d2012-04-16 10:18:43 +01001488
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001489static int mmci_probe(struct amba_device *dev,
Russell Kingaa25afa2011-02-19 15:55:00 +00001490 const struct amba_id *id)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
Linus Walleij6ef297f2009-09-22 14:29:36 +01001492 struct mmci_platform_data *plat = dev->dev.platform_data;
Lee Jones000bc9d2012-04-16 10:18:43 +01001493 struct device_node *np = dev->dev.of_node;
Rabin Vincent4956e102010-07-21 12:54:40 +01001494 struct variant_data *variant = id->data;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 struct mmci_host *host;
1496 struct mmc_host *mmc;
1497 int ret;
1498
Lee Jones000bc9d2012-04-16 10:18:43 +01001499 /* Must have platform data or Device Tree. */
1500 if (!plat && !np) {
1501 dev_err(&dev->dev, "No plat data or DT found\n");
1502 return -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503 }
1504
Lee Jonesb9b52912012-06-12 10:49:51 +01001505 if (!plat) {
1506 plat = devm_kzalloc(&dev->dev, sizeof(*plat), GFP_KERNEL);
1507 if (!plat)
1508 return -ENOMEM;
1509 }
1510
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 mmc = mmc_alloc_host(sizeof(struct mmci_host), &dev->dev);
Ulf Hanssonef289982014-03-17 13:56:32 +01001512 if (!mmc)
1513 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514
Ulf Hansson78f87df2014-03-17 15:53:07 +01001515 ret = mmci_of_parse(np, mmc);
1516 if (ret)
1517 goto host_free;
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 host = mmc_priv(mmc);
Rabin Vincent4ea580f2009-04-17 08:44:19 +05301520 host->mmc = mmc;
Russell King012b7d32009-07-09 15:13:56 +01001521
1522 host->hw_designer = amba_manf(dev);
1523 host->hw_revision = amba_rev(dev);
Linus Walleij64de0282010-02-19 01:09:10 +01001524 dev_dbg(mmc_dev(mmc), "designer ID = 0x%02x\n", host->hw_designer);
1525 dev_dbg(mmc_dev(mmc), "revision = 0x%01x\n", host->hw_revision);
Russell King012b7d32009-07-09 15:13:56 +01001526
Ulf Hansson665ba562013-05-13 15:39:17 +01001527 host->clk = devm_clk_get(&dev->dev, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 if (IS_ERR(host->clk)) {
1529 ret = PTR_ERR(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 goto host_free;
1531 }
1532
Julia Lawallac940932012-08-26 16:00:59 +00001533 ret = clk_prepare_enable(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 if (ret)
Ulf Hansson665ba562013-05-13 15:39:17 +01001535 goto host_free;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
Srinivas Kandagatla9c34b732014-06-02 10:10:04 +01001537 if (variant->qcom_fifo)
1538 host->get_rx_fifocnt = mmci_qcom_get_rx_fifocnt;
1539 else
1540 host->get_rx_fifocnt = mmci_get_rx_fifocnt;
1541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 host->plat = plat;
Rabin Vincent4956e102010-07-21 12:54:40 +01001543 host->variant = variant;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 host->mclk = clk_get_rate(host->clk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001545 /*
1546 * According to the spec, mclk is max 100 MHz,
1547 * so we try to adjust the clock down to this,
1548 * (if possible).
1549 */
Srinivas Kandagatladc6500b2014-06-02 10:09:47 +01001550 if (host->mclk > variant->f_max) {
1551 ret = clk_set_rate(host->clk, variant->f_max);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001552 if (ret < 0)
1553 goto clk_disable;
1554 host->mclk = clk_get_rate(host->clk);
Linus Walleij64de0282010-02-19 01:09:10 +01001555 dev_dbg(mmc_dev(mmc), "eventual mclk rate: %u Hz\n",
1556 host->mclk);
Linus Walleijc8df9a52008-04-29 09:34:07 +01001557 }
Ulf Hanssonef289982014-03-17 13:56:32 +01001558
Russell Kingc8ebae32011-01-11 19:35:53 +00001559 host->phybase = dev->res.start;
Ulf Hanssonef289982014-03-17 13:56:32 +01001560 host->base = devm_ioremap_resource(&dev->dev, &dev->res);
1561 if (IS_ERR(host->base)) {
1562 ret = PTR_ERR(host->base);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 goto clk_disable;
1564 }
1565
Linus Walleij7f294e42011-07-08 09:57:15 +01001566 /*
1567 * The ARM and ST versions of the block have slightly different
1568 * clock divider equations which means that the minimum divider
1569 * differs too.
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +01001570 * on Qualcomm like controllers get the nearest minimum clock to 100Khz
Linus Walleij7f294e42011-07-08 09:57:15 +01001571 */
1572 if (variant->st_clkdiv)
1573 mmc->f_min = DIV_ROUND_UP(host->mclk, 257);
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +01001574 else if (variant->explicit_mclk_control)
1575 mmc->f_min = clk_round_rate(host->clk, 100000);
Linus Walleij7f294e42011-07-08 09:57:15 +01001576 else
1577 mmc->f_min = DIV_ROUND_UP(host->mclk, 512);
Linus Walleij808d97c2010-04-08 07:39:38 +01001578 /*
Ulf Hansson78f87df2014-03-17 15:53:07 +01001579 * If no maximum operating frequency is supplied, fall back to use
1580 * the module parameter, which has a (low) default value in case it
1581 * is not specified. Either value must not exceed the clock rate into
Ulf Hansson5080a082014-03-21 10:46:39 +01001582 * the block, of course.
Linus Walleij808d97c2010-04-08 07:39:38 +01001583 */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001584 if (mmc->f_max)
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +01001585 mmc->f_max = variant->explicit_mclk_control ?
1586 min(variant->f_max, mmc->f_max) :
1587 min(host->mclk, mmc->f_max);
Linus Walleij808d97c2010-04-08 07:39:38 +01001588 else
Srinivas Kandagatla3f4e6f72014-06-02 10:09:55 +01001589 mmc->f_max = variant->explicit_mclk_control ?
1590 fmax : min(host->mclk, fmax);
1591
1592
Linus Walleij64de0282010-02-19 01:09:10 +01001593 dev_dbg(mmc_dev(mmc), "clocking block at %u Hz\n", mmc->f_max);
1594
Ulf Hansson599c1d52013-01-07 16:22:50 +01001595 /* Get regulators and the supported OCR mask */
Bjorn Andersson9369c972015-03-24 18:39:49 -07001596 ret = mmc_regulator_get_supply(mmc);
1597 if (ret == -EPROBE_DEFER)
1598 goto clk_disable;
1599
Ulf Hansson599c1d52013-01-07 16:22:50 +01001600 if (!mmc->ocr_avail)
Linus Walleij34e84f32009-09-22 14:41:40 +01001601 mmc->ocr_avail = plat->ocr_mask;
Ulf Hansson599c1d52013-01-07 16:22:50 +01001602 else if (plat->ocr_mask)
1603 dev_warn(mmc_dev(mmc), "Platform OCR mask is ignored\n");
1604
Ulf Hansson78f87df2014-03-17 15:53:07 +01001605 /* DT takes precedence over platform data. */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001606 if (!np) {
1607 if (!plat->cd_invert)
1608 mmc->caps2 |= MMC_CAP2_CD_ACTIVE_HIGH;
1609 mmc->caps2 |= MMC_CAP2_RO_ACTIVE_HIGH;
1610 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611
Ulf Hansson9dd8a8b2014-03-19 13:54:18 +01001612 /* We support these capabilities. */
1613 mmc->caps |= MMC_CAP_CMD23;
1614
Ulf Hansson8d94b542014-01-13 16:49:31 +01001615 if (variant->busy_detect) {
1616 mmci_ops.card_busy = mmci_card_busy;
Linus Walleij5db3eee2016-10-25 11:06:05 +02001617 mmci_write_datactrlreg(host, MCI_DPSM_ST_BUSYMODE);
Ulf Hansson8d94b542014-01-13 16:49:31 +01001618 mmc->caps |= MMC_CAP_WAIT_WHILE_BUSY;
1619 mmc->max_busy_timeout = 0;
1620 }
1621
1622 mmc->ops = &mmci_ops;
1623
Ulf Hansson70be2082013-01-07 15:35:06 +01001624 /* We support these PM capabilities. */
Ulf Hansson78f87df2014-03-17 15:53:07 +01001625 mmc->pm_caps |= MMC_PM_KEEP_POWER;
Ulf Hansson70be2082013-01-07 15:35:06 +01001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 /*
1628 * We can do SGIO
1629 */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001630 mmc->max_segs = NR_SG;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
1632 /*
Rabin Vincent08458ef2010-07-21 12:55:59 +01001633 * Since only a certain number of bits are valid in the data length
1634 * register, we must ensure that we don't exceed 2^num-1 bytes in a
1635 * single request.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 */
Rabin Vincent08458ef2010-07-21 12:55:59 +01001637 mmc->max_req_size = (1 << variant->datalength_bits) - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
1639 /*
1640 * Set the maximum segment size. Since we aren't doing DMA
1641 * (yet) we are only limited by the data length register.
1642 */
Pierre Ossman55db8902006-11-21 17:55:45 +01001643 mmc->max_seg_size = mmc->max_req_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001645 /*
1646 * Block size can be up to 2048 bytes, but must be a power of two.
1647 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001648 mmc->max_blk_size = 1 << 11;
Pierre Ossmanfe4a3c72006-11-21 17:54:23 +01001649
Pierre Ossman55db8902006-11-21 17:55:45 +01001650 /*
Will Deacon8f7f6b72012-02-24 11:25:21 +00001651 * Limit the number of blocks transferred so that we don't overflow
1652 * the maximum request size.
Pierre Ossman55db8902006-11-21 17:55:45 +01001653 */
Will Deacon8f7f6b72012-02-24 11:25:21 +00001654 mmc->max_blk_count = mmc->max_req_size >> 11;
Pierre Ossman55db8902006-11-21 17:55:45 +01001655
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 spin_lock_init(&host->lock);
1657
1658 writel(0, host->base + MMCIMASK0);
1659 writel(0, host->base + MMCIMASK1);
1660 writel(0xfff, host->base + MMCICLEAR);
1661
Linus Walleijce437aa2014-08-27 15:13:54 +02001662 /*
1663 * If:
1664 * - not using DT but using a descriptor table, or
1665 * - using a table of descriptors ALONGSIDE DT, or
1666 * look up these descriptors named "cd" and "wp" right here, fail
1667 * silently of these do not exist and proceed to try platform data
1668 */
1669 if (!np) {
Linus Walleij89168b42014-10-02 09:08:46 +02001670 ret = mmc_gpiod_request_cd(mmc, "cd", 0, false, 0, NULL);
Linus Walleijce437aa2014-08-27 15:13:54 +02001671 if (ret < 0) {
1672 if (ret == -EPROBE_DEFER)
1673 goto clk_disable;
1674 else if (gpio_is_valid(plat->gpio_cd)) {
1675 ret = mmc_gpio_request_cd(mmc, plat->gpio_cd, 0);
1676 if (ret)
1677 goto clk_disable;
1678 }
1679 }
1680
Linus Walleij89168b42014-10-02 09:08:46 +02001681 ret = mmc_gpiod_request_ro(mmc, "wp", 0, false, 0, NULL);
Linus Walleijce437aa2014-08-27 15:13:54 +02001682 if (ret < 0) {
1683 if (ret == -EPROBE_DEFER)
1684 goto clk_disable;
1685 else if (gpio_is_valid(plat->gpio_wp)) {
1686 ret = mmc_gpio_request_ro(mmc, plat->gpio_wp);
1687 if (ret)
1688 goto clk_disable;
1689 }
1690 }
Russell King89001442009-07-09 15:16:07 +01001691 }
1692
Ulf Hanssonef289982014-03-17 13:56:32 +01001693 ret = devm_request_irq(&dev->dev, dev->irq[0], mmci_irq, IRQF_SHARED,
1694 DRIVER_NAME " (cmd)", host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001696 goto clk_disable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Russell Kingdfb851852012-05-03 11:33:15 +01001698 if (!dev->irq[1])
Linus Walleij2686b4b2010-10-19 12:39:48 +01001699 host->singleirq = true;
1700 else {
Ulf Hanssonef289982014-03-17 13:56:32 +01001701 ret = devm_request_irq(&dev->dev, dev->irq[1], mmci_pio_irq,
1702 IRQF_SHARED, DRIVER_NAME " (pio)", host);
Linus Walleij2686b4b2010-10-19 12:39:48 +01001703 if (ret)
Ulf Hanssonef289982014-03-17 13:56:32 +01001704 goto clk_disable;
Linus Walleij2686b4b2010-10-19 12:39:48 +01001705 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Linus Walleij8cb28152011-01-24 15:22:13 +01001707 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708
1709 amba_set_drvdata(dev, mmc);
1710
Russell Kingc8ebae32011-01-11 19:35:53 +00001711 dev_info(&dev->dev, "%s: PL%03x manf %x rev%u at 0x%08llx irq %d,%d (pio)\n",
1712 mmc_hostname(mmc), amba_part(dev), amba_manf(dev),
1713 amba_rev(dev), (unsigned long long)dev->res.start,
1714 dev->irq[0], dev->irq[1]);
1715
1716 mmci_dma_setup(host);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Ulf Hansson2cd976c2011-12-13 17:01:11 +01001718 pm_runtime_set_autosuspend_delay(&dev->dev, 50);
1719 pm_runtime_use_autosuspend(&dev->dev);
Russell King1c3be362011-08-14 09:17:05 +01001720
Russell King8c11a942010-12-28 19:40:40 +00001721 mmc_add_host(mmc);
1722
Ulf Hansson6f2d3c82014-12-11 14:35:55 +01001723 pm_runtime_put(&dev->dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return 0;
1725
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 clk_disable:
Julia Lawallac940932012-08-26 16:00:59 +00001727 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 host_free:
1729 mmc_free_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 return ret;
1731}
1732
Bill Pemberton6e0ee712012-11-19 13:26:03 -05001733static int mmci_remove(struct amba_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734{
1735 struct mmc_host *mmc = amba_get_drvdata(dev);
1736
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 if (mmc) {
1738 struct mmci_host *host = mmc_priv(mmc);
1739
Russell King1c3be362011-08-14 09:17:05 +01001740 /*
1741 * Undo pm_runtime_put() in probe. We use the _sync
1742 * version here so that we can access the primecell.
1743 */
1744 pm_runtime_get_sync(&dev->dev);
1745
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 mmc_remove_host(mmc);
1747
1748 writel(0, host->base + MMCIMASK0);
1749 writel(0, host->base + MMCIMASK1);
1750
1751 writel(0, host->base + MMCICOMMAND);
1752 writel(0, host->base + MMCIDATACTRL);
1753
Russell Kingc8ebae32011-01-11 19:35:53 +00001754 mmci_dma_release(host);
Julia Lawallac940932012-08-26 16:00:59 +00001755 clk_disable_unprepare(host->clk);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 mmc_free_host(mmc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757 }
1758
1759 return 0;
1760}
1761
Ulf Hansson571dce42014-01-23 00:38:00 +01001762#ifdef CONFIG_PM
Ulf Hansson1ff44432013-09-04 09:05:17 +01001763static void mmci_save(struct mmci_host *host)
1764{
1765 unsigned long flags;
1766
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001767 spin_lock_irqsave(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001768
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001769 writel(0, host->base + MMCIMASK0);
1770 if (host->variant->pwrreg_nopower) {
Ulf Hansson1ff44432013-09-04 09:05:17 +01001771 writel(0, host->base + MMCIDATACTRL);
1772 writel(0, host->base + MMCIPOWER);
1773 writel(0, host->base + MMCICLOCK);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001774 }
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001775 mmci_reg_delay(host);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001776
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001777 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001778}
1779
1780static void mmci_restore(struct mmci_host *host)
1781{
1782 unsigned long flags;
1783
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001784 spin_lock_irqsave(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001785
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001786 if (host->variant->pwrreg_nopower) {
Ulf Hansson1ff44432013-09-04 09:05:17 +01001787 writel(host->clk_reg, host->base + MMCICLOCK);
1788 writel(host->datactrl_reg, host->base + MMCIDATACTRL);
1789 writel(host->pwr_reg, host->base + MMCIPOWER);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001790 }
Ulf Hansson42dcc89a2014-01-23 00:19:38 +01001791 writel(MCI_IRQENABLE, host->base + MMCIMASK0);
1792 mmci_reg_delay(host);
1793
1794 spin_unlock_irqrestore(&host->lock, flags);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001795}
1796
Ulf Hansson82592932013-01-09 11:15:26 +01001797static int mmci_runtime_suspend(struct device *dev)
1798{
1799 struct amba_device *adev = to_amba_device(dev);
1800 struct mmc_host *mmc = amba_get_drvdata(adev);
1801
1802 if (mmc) {
1803 struct mmci_host *host = mmc_priv(mmc);
Ulf Hanssone36bd9c62013-09-04 09:00:37 +01001804 pinctrl_pm_select_sleep_state(dev);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001805 mmci_save(host);
Ulf Hansson82592932013-01-09 11:15:26 +01001806 clk_disable_unprepare(host->clk);
1807 }
1808
1809 return 0;
1810}
1811
1812static int mmci_runtime_resume(struct device *dev)
1813{
1814 struct amba_device *adev = to_amba_device(dev);
1815 struct mmc_host *mmc = amba_get_drvdata(adev);
1816
1817 if (mmc) {
1818 struct mmci_host *host = mmc_priv(mmc);
1819 clk_prepare_enable(host->clk);
Ulf Hansson1ff44432013-09-04 09:05:17 +01001820 mmci_restore(host);
Ulf Hanssone36bd9c62013-09-04 09:00:37 +01001821 pinctrl_pm_select_default_state(dev);
Ulf Hansson82592932013-01-09 11:15:26 +01001822 }
1823
1824 return 0;
1825}
1826#endif
1827
Ulf Hansson48fa7002011-12-13 16:59:34 +01001828static const struct dev_pm_ops mmci_dev_pm_ops = {
Ulf Hanssonf3737fa2014-01-23 01:11:33 +01001829 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1830 pm_runtime_force_resume)
Rafael J. Wysocki6ed23b82014-12-04 00:34:11 +01001831 SET_RUNTIME_PM_OPS(mmci_runtime_suspend, mmci_runtime_resume, NULL)
Ulf Hansson48fa7002011-12-13 16:59:34 +01001832};
1833
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834static struct amba_id mmci_ids[] = {
1835 {
1836 .id = 0x00041180,
Pawel Moll768fbc12011-03-11 17:18:07 +00001837 .mask = 0xff0fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001838 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 },
1840 {
Pawel Moll768fbc12011-03-11 17:18:07 +00001841 .id = 0x01041180,
1842 .mask = 0xff0fffff,
1843 .data = &variant_arm_extended_fifo,
1844 },
1845 {
Pawel Moll3a372982013-01-24 14:12:45 +01001846 .id = 0x02041180,
1847 .mask = 0xff0fffff,
1848 .data = &variant_arm_extended_fifo_hwfc,
1849 },
1850 {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 .id = 0x00041181,
1852 .mask = 0x000fffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001853 .data = &variant_arm,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 },
Linus Walleijcc30d602009-01-04 15:18:54 +01001855 /* ST Micro variants */
1856 {
1857 .id = 0x00180180,
1858 .mask = 0x00ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001859 .data = &variant_u300,
Linus Walleijcc30d602009-01-04 15:18:54 +01001860 },
1861 {
Linus Walleij34fd4212012-04-10 17:43:59 +01001862 .id = 0x10180180,
1863 .mask = 0xf0ffffff,
1864 .data = &variant_nomadik,
1865 },
1866 {
Linus Walleijcc30d602009-01-04 15:18:54 +01001867 .id = 0x00280180,
1868 .mask = 0x00ffffff,
Linus Walleij0bcb7ef2016-01-04 02:21:55 +01001869 .data = &variant_nomadik,
Rabin Vincent4956e102010-07-21 12:54:40 +01001870 },
1871 {
1872 .id = 0x00480180,
Philippe Langlais1784b152011-03-25 08:51:52 +01001873 .mask = 0xf0ffffff,
Rabin Vincent4956e102010-07-21 12:54:40 +01001874 .data = &variant_ux500,
Linus Walleijcc30d602009-01-04 15:18:54 +01001875 },
Philippe Langlais1784b152011-03-25 08:51:52 +01001876 {
1877 .id = 0x10480180,
1878 .mask = 0xf0ffffff,
1879 .data = &variant_ux500v2,
1880 },
Srinivas Kandagatla55b604a2014-06-02 10:10:13 +01001881 /* Qualcomm variants */
1882 {
1883 .id = 0x00051180,
1884 .mask = 0x000fffff,
1885 .data = &variant_qcom,
1886 },
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 { 0, 0 },
1888};
1889
Dave Martin9f998352011-10-05 15:15:21 +01001890MODULE_DEVICE_TABLE(amba, mmci_ids);
1891
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892static struct amba_driver mmci_driver = {
1893 .drv = {
1894 .name = DRIVER_NAME,
Ulf Hansson48fa7002011-12-13 16:59:34 +01001895 .pm = &mmci_dev_pm_ops,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896 },
1897 .probe = mmci_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05001898 .remove = mmci_remove,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 .id_table = mmci_ids,
1900};
1901
viresh kumar9e5ed092012-03-15 10:40:38 +01001902module_amba_driver(mmci_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904module_param(fmax, uint, 0444);
1905
1906MODULE_DESCRIPTION("ARM PrimeCell PL180/181 Multimedia Card Interface driver");
1907MODULE_LICENSE("GPL");