blob: f4e5a59a84c087966a71c01b87be66b826d7655b [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f442011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
Russell Kingc5c98922012-04-13 12:14:39 +010022#include <linux/dmaengine.h>
Denis Karpovd900f712009-09-22 16:44:38 -070023#include <linux/seq_file.h>
Felipe Balbi031cd032013-07-11 16:09:05 +030024#include <linux/sizes.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010025#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/dma-mapping.h>
28#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010029#include <linux/timer.h>
30#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053031#include <linux/of.h>
32#include <linux/of_gpio.h>
33#include <linux/of_device.h>
Russell King3451c062012-04-21 22:35:42 +010034#include <linux/omap-dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010035#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070036#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070037#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010038#include <linux/io.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080039#include <linux/gpio.h>
40#include <linux/regulator/consumer.h>
Daniel Mack46b76032012-10-15 21:35:05 +053041#include <linux/pinctrl/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053042#include <linux/pm_runtime.h>
Tony Lindgren68f39e72012-10-15 12:09:43 -070043#include <linux/platform_data/mmc-omap.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010044
45/* OMAP HSMMC Host Controller Registers */
Denis Karpov11dd62a2009-09-22 16:44:43 -070046#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010047#define OMAP_HSMMC_CON 0x002C
48#define OMAP_HSMMC_BLK 0x0104
49#define OMAP_HSMMC_ARG 0x0108
50#define OMAP_HSMMC_CMD 0x010C
51#define OMAP_HSMMC_RSP10 0x0110
52#define OMAP_HSMMC_RSP32 0x0114
53#define OMAP_HSMMC_RSP54 0x0118
54#define OMAP_HSMMC_RSP76 0x011C
55#define OMAP_HSMMC_DATA 0x0120
56#define OMAP_HSMMC_HCTL 0x0128
57#define OMAP_HSMMC_SYSCTL 0x012C
58#define OMAP_HSMMC_STAT 0x0130
59#define OMAP_HSMMC_IE 0x0134
60#define OMAP_HSMMC_ISE 0x0138
61#define OMAP_HSMMC_CAPA 0x0140
62
63#define VS18 (1 << 26)
64#define VS30 (1 << 25)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053065#define HSS (1 << 21)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010066#define SDVS18 (0x5 << 9)
67#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080068#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010069#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010070#define SDVSCLR 0xFFFFF1FF
71#define SDVSDET 0x00000400
72#define AUTOIDLE 0x1
73#define SDBP (1 << 8)
74#define DTO 0xe
75#define ICE 0x1
76#define ICS 0x2
77#define CEN (1 << 2)
Balaji T Ked164182013-10-21 00:25:21 +053078#define CLKD_MAX 0x3FF /* max clock divisor: 1023 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010079#define CLKD_MASK 0x0000FFC0
80#define CLKD_SHIFT 6
81#define DTO_MASK 0x000F0000
82#define DTO_SHIFT 16
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010083#define INIT_STREAM (1 << 1)
84#define DP_SELECT (1 << 21)
85#define DDIR (1 << 4)
Venkatraman Sa7e96872012-11-19 22:00:01 +053086#define DMAE 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010087#define MSBS (1 << 5)
88#define BCE (1 << 1)
89#define FOUR_BIT (1 << 1)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053090#define HSPE (1 << 2)
Balaji T K03b5d922012-04-09 12:08:33 +053091#define DDR (1 << 19)
Jarkko Lavinen73153012008-11-21 16:49:54 +020092#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010093#define OD 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010094#define STAT_CLEAR 0xFFFFFFFF
95#define INIT_STREAM_CMD 0x00000000
96#define DUAL_VOLT_OCR_BIT 7
97#define SRC (1 << 25)
98#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -070099#define SOFTRESET (1 << 1)
100#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100101
Venkatraman Sa7e96872012-11-19 22:00:01 +0530102/* Interrupt masks for IE and ISE register */
103#define CC_EN (1 << 0)
104#define TC_EN (1 << 1)
105#define BWR_EN (1 << 4)
106#define BRR_EN (1 << 5)
107#define ERR_EN (1 << 15)
108#define CTO_EN (1 << 16)
109#define CCRC_EN (1 << 17)
110#define CEB_EN (1 << 18)
111#define CIE_EN (1 << 19)
112#define DTO_EN (1 << 20)
113#define DCRC_EN (1 << 21)
114#define DEB_EN (1 << 22)
115#define CERR_EN (1 << 28)
116#define BADA_EN (1 << 29)
117
118#define INT_EN_MASK (BADA_EN | CERR_EN | DEB_EN | DCRC_EN |\
119 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
120 BRR_EN | BWR_EN | TC_EN | CC_EN)
121
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530122#define MMC_AUTOSUSPEND_DELAY 100
Jianpeng Ma1e881782013-10-21 00:25:20 +0530123#define MMC_TIMEOUT_MS 20 /* 20 mSec */
124#define MMC_TIMEOUT_US 20000 /* 20000 micro Sec */
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400125#define OMAP_MMC_MIN_CLOCK 400000
126#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530127#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100128
Balaji T Ke99448f2014-02-19 20:26:40 +0530129#define VDD_1V8 1800000 /* 180000 uV */
130#define VDD_3V0 3000000 /* 300000 uV */
131#define VDD_165_195 (ffs(MMC_VDD_165_195) - 1)
132
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100133/*
134 * One controller can have multiple slots, like on some omap boards using
135 * omap.c controller driver. Luckily this is not currently done on any known
136 * omap_hsmmc.c device.
137 */
138#define mmc_slot(host) (host->pdata->slots[host->slot_id])
139
140/*
141 * MMC Host controller read/write API's
142 */
143#define OMAP_HSMMC_READ(base, reg) \
144 __raw_readl((base) + OMAP_HSMMC_##reg)
145
146#define OMAP_HSMMC_WRITE(base, reg, val) \
147 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
148
Per Forlin9782aff2011-07-01 18:55:23 +0200149struct omap_hsmmc_next {
150 unsigned int dma_len;
151 s32 cookie;
152};
153
Denis Karpov70a33412009-09-22 16:44:59 -0700154struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155 struct device *dev;
156 struct mmc_host *mmc;
157 struct mmc_request *mrq;
158 struct mmc_command *cmd;
159 struct mmc_data *data;
160 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100161 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800162 /*
163 * vcc == configured supply
164 * vcc_aux == optional
165 * - MMC1, supply for DAT4..DAT7
166 * - MMC2/MMC2, external level shifter voltage supply, for
167 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
168 */
169 struct regulator *vcc;
170 struct regulator *vcc_aux;
Balaji T Ke99448f2014-02-19 20:26:40 +0530171 struct regulator *pbias;
172 bool pbias_enabled;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100173 void __iomem *base;
174 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700175 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100176 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200177 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100178 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700179 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100180 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530181 u32 con;
182 u32 hctl;
183 u32 sysctl;
184 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100185 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100186 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100187 struct dma_chan *tx_chan;
188 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100189 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200190 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700191 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700192 int protect_card;
193 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800194 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700195 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200196 struct omap_hsmmc_next next_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100197 struct omap_mmc_platform_data *pdata;
198};
199
Nishanth Menon59445b12014-02-13 23:45:48 -0600200struct omap_mmc_of_data {
201 u32 reg_offset;
202 u8 controller_flags;
203};
204
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800205static int omap_hsmmc_card_detect(struct device *dev, int slot)
206{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530207 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
208 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800209
210 /* NOTE: assumes card detect signal is active-low */
211 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
212}
213
214static int omap_hsmmc_get_wp(struct device *dev, int slot)
215{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530216 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
217 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800218
219 /* NOTE: assumes write protect signal is active-high */
220 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
221}
222
223static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
224{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530225 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
226 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800227
228 /* NOTE: assumes card detect signal is active-low */
229 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
230}
231
232#ifdef CONFIG_PM
233
234static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
235{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530236 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
237 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800238
239 disable_irq(mmc->slots[0].card_detect_irq);
240 return 0;
241}
242
243static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
244{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530245 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
246 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800247
248 enable_irq(mmc->slots[0].card_detect_irq);
249 return 0;
250}
251
252#else
253
254#define omap_hsmmc_suspend_cdirq NULL
255#define omap_hsmmc_resume_cdirq NULL
256
257#endif
258
Adrian Hunterb702b102010-02-15 10:03:35 -0800259#ifdef CONFIG_REGULATOR
260
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500261static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800262 int vdd)
263{
264 struct omap_hsmmc_host *host =
265 platform_get_drvdata(to_platform_device(dev));
266 int ret = 0;
267
268 /*
269 * If we don't see a Vcc regulator, assume it's a fixed
270 * voltage always-on regulator.
271 */
272 if (!host->vcc)
273 return 0;
274
275 if (mmc_slot(host).before_set_reg)
276 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
277
Balaji T Ke99448f2014-02-19 20:26:40 +0530278 if (host->pbias) {
279 if (host->pbias_enabled == 1) {
280 ret = regulator_disable(host->pbias);
281 if (!ret)
282 host->pbias_enabled = 0;
283 }
284 regulator_set_voltage(host->pbias, VDD_3V0, VDD_3V0);
285 }
286
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800287 /*
288 * Assume Vcc regulator is used only to power the card ... OMAP
289 * VDDS is used to power the pins, optionally with a transceiver to
290 * support cards using voltages other than VDDS (1.8V nominal). When a
291 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
292 *
293 * In some cases this regulator won't support enable/disable;
294 * e.g. it's a fixed rail for a WLAN chip.
295 *
296 * In other cases vcc_aux switches interface power. Example, for
297 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
298 * chips/cards need an interface voltage rail too.
299 */
300 if (power_on) {
Balaji T K987fd492014-02-19 20:26:40 +0530301 if (host->vcc)
302 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800303 /* Enable interface voltage rail, if needed */
304 if (ret == 0 && host->vcc_aux) {
305 ret = regulator_enable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530306 if (ret < 0 && host->vcc)
Linus Walleij99fc5132010-09-29 01:08:27 -0400307 ret = mmc_regulator_set_ocr(host->mmc,
308 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800309 }
310 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400311 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800312 if (host->vcc_aux)
313 ret = regulator_disable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530314 if (host->vcc) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400315 /* Then proceed to shut down the local regulator */
316 ret = mmc_regulator_set_ocr(host->mmc,
317 host->vcc, 0);
318 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800319 }
320
Balaji T Ke99448f2014-02-19 20:26:40 +0530321 if (host->pbias) {
322 if (vdd <= VDD_165_195)
323 ret = regulator_set_voltage(host->pbias, VDD_1V8,
324 VDD_1V8);
325 else
326 ret = regulator_set_voltage(host->pbias, VDD_3V0,
327 VDD_3V0);
328 if (ret < 0)
329 goto error_set_power;
330
331 if (host->pbias_enabled == 0) {
332 ret = regulator_enable(host->pbias);
333 if (!ret)
334 host->pbias_enabled = 1;
335 }
336 }
337
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800338 if (mmc_slot(host).after_set_reg)
339 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
340
Balaji T Ke99448f2014-02-19 20:26:40 +0530341error_set_power:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800342 return ret;
343}
344
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800345static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
346{
347 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700348 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800349
Balaji T Kf2ddc1d2014-02-19 20:26:40 +0530350 reg = devm_regulator_get(host->dev, "vmmc");
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800351 if (IS_ERR(reg)) {
Balaji T K987fd492014-02-19 20:26:40 +0530352 dev_err(host->dev, "unable to get vmmc regulator %ld\n",
353 PTR_ERR(reg));
NeilBrown1fdc90f2012-08-08 00:06:00 -0400354 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800355 } else {
356 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700357 ocr_value = mmc_regulator_get_ocrmask(reg);
358 if (!mmc_slot(host).ocr_mask) {
359 mmc_slot(host).ocr_mask = ocr_value;
360 } else {
361 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530362 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb62012-03-07 09:55:31 -0500363 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700364 mmc_slot(host).ocr_mask = 0;
365 return -EINVAL;
366 }
367 }
Balaji T K987fd492014-02-19 20:26:40 +0530368 }
369 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800370
Balaji T K987fd492014-02-19 20:26:40 +0530371 /* Allow an aux regulator */
372 reg = devm_regulator_get_optional(host->dev, "vmmc_aux");
373 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800374
Balaji T Ke99448f2014-02-19 20:26:40 +0530375 reg = devm_regulator_get_optional(host->dev, "pbias");
376 host->pbias = IS_ERR(reg) ? NULL : reg;
377
Balaji T K987fd492014-02-19 20:26:40 +0530378 /* For eMMC do not power off when not in sleep state */
379 if (mmc_slot(host).no_regulator_off_init)
380 return 0;
381 /*
382 * To disable boot_on regulator, enable regulator
383 * to increase usecount and then disable it.
384 */
385 if ((host->vcc && regulator_is_enabled(host->vcc) > 0) ||
386 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
387 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
Adrian Huntere840ce12011-05-06 12:14:10 +0300388
Balaji T K987fd492014-02-19 20:26:40 +0530389 mmc_slot(host).set_power(host->dev, host->slot_id, 1, vdd);
390 mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800391 }
392
393 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800394}
395
396static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
397{
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800398 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800399}
400
Adrian Hunterb702b102010-02-15 10:03:35 -0800401static inline int omap_hsmmc_have_reg(void)
402{
403 return 1;
404}
405
406#else
407
408static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
409{
410 return -EINVAL;
411}
412
413static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
414{
415}
416
417static inline int omap_hsmmc_have_reg(void)
418{
419 return 0;
420}
421
422#endif
423
424static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
425{
426 int ret;
427
428 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800429 if (pdata->slots[0].cover)
430 pdata->slots[0].get_cover_state =
431 omap_hsmmc_get_cover_state;
432 else
433 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
434 pdata->slots[0].card_detect_irq =
435 gpio_to_irq(pdata->slots[0].switch_pin);
436 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
437 if (ret)
438 return ret;
439 ret = gpio_direction_input(pdata->slots[0].switch_pin);
440 if (ret)
441 goto err_free_sp;
442 } else
443 pdata->slots[0].switch_pin = -EINVAL;
444
445 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
446 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
447 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
448 if (ret)
449 goto err_free_cd;
450 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
451 if (ret)
452 goto err_free_wp;
453 } else
454 pdata->slots[0].gpio_wp = -EINVAL;
455
456 return 0;
457
458err_free_wp:
459 gpio_free(pdata->slots[0].gpio_wp);
460err_free_cd:
461 if (gpio_is_valid(pdata->slots[0].switch_pin))
462err_free_sp:
463 gpio_free(pdata->slots[0].switch_pin);
464 return ret;
465}
466
467static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
468{
469 if (gpio_is_valid(pdata->slots[0].gpio_wp))
470 gpio_free(pdata->slots[0].gpio_wp);
471 if (gpio_is_valid(pdata->slots[0].switch_pin))
472 gpio_free(pdata->slots[0].switch_pin);
473}
474
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100475/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300476 * Start clock to the card
477 */
478static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
479{
480 OMAP_HSMMC_WRITE(host->base, SYSCTL,
481 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
482}
483
484/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100485 * Stop clock to the card
486 */
Denis Karpov70a33412009-09-22 16:44:59 -0700487static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100488{
489 OMAP_HSMMC_WRITE(host->base, SYSCTL,
490 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
491 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900492 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100493}
494
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700495static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
496 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700497{
498 unsigned int irq_mask;
499
500 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530501 irq_mask = INT_EN_MASK & ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700502 else
503 irq_mask = INT_EN_MASK;
504
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700505 /* Disable timeout for erases */
506 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530507 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700508
Adrian Hunterb4175772010-05-26 14:42:06 -0700509 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
510 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
511 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
512}
513
514static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
515{
516 OMAP_HSMMC_WRITE(host->base, ISE, 0);
517 OMAP_HSMMC_WRITE(host->base, IE, 0);
518 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
519}
520
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300521/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530522static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300523{
524 u16 dsor = 0;
525
526 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530527 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530528 if (dsor > CLKD_MAX)
529 dsor = CLKD_MAX;
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300530 }
531
532 return dsor;
533}
534
Andy Shevchenko5934df22011-05-06 12:14:06 +0300535static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
536{
537 struct mmc_ios *ios = &host->mmc->ios;
538 unsigned long regval;
539 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530540 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300541
Venkatraman S8986d312012-08-07 19:10:38 +0530542 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300543
544 omap_hsmmc_stop_clock(host);
545
546 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
547 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530548 clkdiv = calc_divisor(host, ios);
549 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300550 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
551 OMAP_HSMMC_WRITE(host->base, SYSCTL,
552 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
553
554 /* Wait till the ICS bit is set */
555 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
556 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
557 && time_before(jiffies, timeout))
558 cpu_relax();
559
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530560 /*
561 * Enable High-Speed Support
562 * Pre-Requisites
563 * - Controller should support High-Speed-Enable Bit
564 * - Controller should not be using DDR Mode
565 * - Controller should advertise that it supports High Speed
566 * in capabilities register
567 * - MMC/SD clock coming out of controller > 25MHz
568 */
569 if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) &&
570 (ios->timing != MMC_TIMING_UHS_DDR50) &&
571 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
572 regval = OMAP_HSMMC_READ(host->base, HCTL);
573 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
574 regval |= HSPE;
575 else
576 regval &= ~HSPE;
577
578 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
579 }
580
Andy Shevchenko5934df22011-05-06 12:14:06 +0300581 omap_hsmmc_start_clock(host);
582}
583
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400584static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
585{
586 struct mmc_ios *ios = &host->mmc->ios;
587 u32 con;
588
589 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d922012-04-09 12:08:33 +0530590 if (ios->timing == MMC_TIMING_UHS_DDR50)
591 con |= DDR; /* configure in DDR mode */
592 else
593 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400594 switch (ios->bus_width) {
595 case MMC_BUS_WIDTH_8:
596 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
597 break;
598 case MMC_BUS_WIDTH_4:
599 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
600 OMAP_HSMMC_WRITE(host->base, HCTL,
601 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
602 break;
603 case MMC_BUS_WIDTH_1:
604 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
605 OMAP_HSMMC_WRITE(host->base, HCTL,
606 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
607 break;
608 }
609}
610
611static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
612{
613 struct mmc_ios *ios = &host->mmc->ios;
614 u32 con;
615
616 con = OMAP_HSMMC_READ(host->base, CON);
617 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
618 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
619 else
620 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
621}
622
Denis Karpov11dd62a2009-09-22 16:44:43 -0700623#ifdef CONFIG_PM
624
625/*
626 * Restore the MMC host context, if it was lost as result of a
627 * power state change.
628 */
Denis Karpov70a33412009-09-22 16:44:59 -0700629static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700630{
631 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400632 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700633 unsigned long timeout;
634
Venkatraman S6c31b212012-08-08 14:26:52 +0530635 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
636 return 1;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700637
Tony Lindgren0a82e062013-10-21 00:25:19 +0530638 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
639 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
640 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
641 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
642 return 0;
643
644 host->context_loss++;
645
Balaji T Kc2200ef2012-03-07 09:55:30 -0500646 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700647 if (host->power_mode != MMC_POWER_OFF &&
648 (1 << ios->vdd) <= MMC_VDD_23_24)
649 hctl = SDVS18;
650 else
651 hctl = SDVS30;
652 capa = VS30 | VS18;
653 } else {
654 hctl = SDVS18;
655 capa = VS18;
656 }
657
658 OMAP_HSMMC_WRITE(host->base, HCTL,
659 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
660
661 OMAP_HSMMC_WRITE(host->base, CAPA,
662 OMAP_HSMMC_READ(host->base, CAPA) | capa);
663
664 OMAP_HSMMC_WRITE(host->base, HCTL,
665 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
666
667 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
668 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
669 && time_before(jiffies, timeout))
670 ;
671
Adrian Hunterb4175772010-05-26 14:42:06 -0700672 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700673
674 /* Do not initialize card-specific things if the power is off */
675 if (host->power_mode == MMC_POWER_OFF)
676 goto out;
677
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400678 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700679
Andy Shevchenko5934df22011-05-06 12:14:06 +0300680 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700681
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400682 omap_hsmmc_set_bus_mode(host);
683
Denis Karpov11dd62a2009-09-22 16:44:43 -0700684out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530685 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
686 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700687 return 0;
688}
689
690/*
691 * Save the MMC host context (store the number of power state changes so far).
692 */
Denis Karpov70a33412009-09-22 16:44:59 -0700693static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700694{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530695 host->con = OMAP_HSMMC_READ(host->base, CON);
696 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
697 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
698 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700699}
700
701#else
702
Denis Karpov70a33412009-09-22 16:44:59 -0700703static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700704{
705 return 0;
706}
707
Denis Karpov70a33412009-09-22 16:44:59 -0700708static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700709{
710}
711
712#endif
713
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100714/*
715 * Send init stream sequence to card
716 * before sending IDLE command
717 */
Denis Karpov70a33412009-09-22 16:44:59 -0700718static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100719{
720 int reg = 0;
721 unsigned long timeout;
722
Adrian Hunterb62f6222009-09-22 16:45:01 -0700723 if (host->protect_card)
724 return;
725
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100726 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700727
728 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100729 OMAP_HSMMC_WRITE(host->base, CON,
730 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
731 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
732
733 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530734 while ((reg != CC_EN) && time_before(jiffies, timeout))
735 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100736
737 OMAP_HSMMC_WRITE(host->base, CON,
738 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700739
740 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
741 OMAP_HSMMC_READ(host->base, STAT);
742
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100743 enable_irq(host->irq);
744}
745
746static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700747int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100748{
749 int r = 1;
750
Denis Karpov191d1f12009-09-22 16:44:55 -0700751 if (mmc_slot(host).get_cover_state)
752 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100753 return r;
754}
755
756static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700757omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100758 char *buf)
759{
760 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700761 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100762
Denis Karpov70a33412009-09-22 16:44:59 -0700763 return sprintf(buf, "%s\n",
764 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100765}
766
Denis Karpov70a33412009-09-22 16:44:59 -0700767static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100768
769static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700770omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100771 char *buf)
772{
773 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700774 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100775
Denis Karpov191d1f12009-09-22 16:44:55 -0700776 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100777}
778
Denis Karpov70a33412009-09-22 16:44:59 -0700779static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100780
781/*
782 * Configure the response type and send the cmd.
783 */
784static void
Denis Karpov70a33412009-09-22 16:44:59 -0700785omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100786 struct mmc_data *data)
787{
788 int cmdreg = 0, resptype = 0, cmdtype = 0;
789
Venkatraman S8986d312012-08-07 19:10:38 +0530790 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100791 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
792 host->cmd = cmd;
793
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700794 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100795
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200796 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100797 if (cmd->flags & MMC_RSP_PRESENT) {
798 if (cmd->flags & MMC_RSP_136)
799 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200800 else if (cmd->flags & MMC_RSP_BUSY) {
801 resptype = 3;
802 host->response_busy = 1;
803 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100804 resptype = 2;
805 }
806
807 /*
808 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
809 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
810 * a val of 0x3, rest 0x0.
811 */
812 if (cmd == host->mrq->stop)
813 cmdtype = 0x3;
814
815 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
816
817 if (data) {
818 cmdreg |= DP_SELECT | MSBS | BCE;
819 if (data->flags & MMC_DATA_READ)
820 cmdreg |= DDIR;
821 else
822 cmdreg &= ~(DDIR);
823 }
824
825 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530826 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100827
Adrian Hunterb4175772010-05-26 14:42:06 -0700828 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700829
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100830 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
831 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
832}
833
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200834static int
Denis Karpov70a33412009-09-22 16:44:59 -0700835omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200836{
837 if (data->flags & MMC_DATA_WRITE)
838 return DMA_TO_DEVICE;
839 else
840 return DMA_FROM_DEVICE;
841}
842
Russell Kingc5c98922012-04-13 12:14:39 +0100843static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
844 struct mmc_data *data)
845{
846 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
847}
848
Adrian Hunterb4175772010-05-26 14:42:06 -0700849static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
850{
851 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530852 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700853
Venkatraman S31463b12012-04-09 12:08:34 +0530854 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700855 host->req_in_progress = 0;
856 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530857 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700858
859 omap_hsmmc_disable_irq(host);
860 /* Do not complete the request if DMA is still in progress */
861 if (mrq->data && host->use_dma && dma_ch != -1)
862 return;
863 host->mrq = NULL;
864 mmc_request_done(host->mmc, mrq);
865}
866
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100867/*
868 * Notify the transfer complete to MMC core
869 */
870static void
Denis Karpov70a33412009-09-22 16:44:59 -0700871omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100872{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200873 if (!data) {
874 struct mmc_request *mrq = host->mrq;
875
Adrian Hunter23050102009-09-22 16:44:57 -0700876 /* TC before CC from CMD6 - don't know why, but it happens */
877 if (host->cmd && host->cmd->opcode == 6 &&
878 host->response_busy) {
879 host->response_busy = 0;
880 return;
881 }
882
Adrian Hunterb4175772010-05-26 14:42:06 -0700883 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200884 return;
885 }
886
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100887 host->data = NULL;
888
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100889 if (!data->error)
890 data->bytes_xfered += data->blocks * (data->blksz);
891 else
892 data->bytes_xfered = 0;
893
Ming Leife852272012-06-22 18:49:35 +0800894 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700895 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800896 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100897 }
Ming Leife852272012-06-22 18:49:35 +0800898 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100899}
900
901/*
902 * Notify the core about command completion
903 */
904static void
Denis Karpov70a33412009-09-22 16:44:59 -0700905omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100906{
907 host->cmd = NULL;
908
909 if (cmd->flags & MMC_RSP_PRESENT) {
910 if (cmd->flags & MMC_RSP_136) {
911 /* response type 2 */
912 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
913 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
914 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
915 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
916 } else {
917 /* response types 1, 1b, 3, 4, 5, 6 */
918 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
919 }
920 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700921 if ((host->data == NULL && !host->response_busy) || cmd->error)
922 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100923}
924
925/*
926 * DMA clean up for command errors
927 */
Denis Karpov70a33412009-09-22 16:44:59 -0700928static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100929{
Adrian Hunterb4175772010-05-26 14:42:06 -0700930 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530931 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700932
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200933 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100934
Venkatraman S31463b12012-04-09 12:08:34 +0530935 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700936 dma_ch = host->dma_ch;
937 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530938 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700939
940 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100941 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
942
943 dmaengine_terminate_all(chan);
944 dma_unmap_sg(chan->device->dev,
945 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700946 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +0100947
Per Forlin053bf342011-11-07 21:55:11 +0530948 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100949 }
950 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100951}
952
953/*
954 * Readable error output
955 */
956#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300957static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100958{
959 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700960 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300961 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
962 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
963 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
964 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100965 };
966 char res[256];
967 char *buf = res;
968 int len, i;
969
970 len = sprintf(buf, "MMC IRQ 0x%x :", status);
971 buf += len;
972
Denis Karpov70a33412009-09-22 16:44:59 -0700973 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100974 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700975 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100976 buf += len;
977 }
978
Venkatraman S8986d312012-08-07 19:10:38 +0530979 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100980}
Adrian Hunter699b9582011-05-06 12:14:01 +0300981#else
982static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
983 u32 status)
984{
985}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100986#endif /* CONFIG_MMC_DEBUG */
987
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100988/*
989 * MMC controller internal state machines reset
990 *
991 * Used to reset command or data internal state machines, using respectively
992 * SRC or SRD bit of SYSCTL register
993 * Can be called from interrupt context
994 */
Denis Karpov70a33412009-09-22 16:44:59 -0700995static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
996 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100997{
998 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +0530999 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001000
1001 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1002 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1003
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001004 /*
1005 * OMAP4 ES2 and greater has an updated reset logic.
1006 * Monitor a 0->1 transition first
1007 */
1008 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001009 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001010 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301011 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001012 }
1013 i = 0;
1014
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001015 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1016 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301017 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001018
1019 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1020 dev_err(mmc_dev(host->mmc),
1021 "Timeout waiting on controller reset in %s\n",
1022 __func__);
1023}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001024
Balaji T K25e18972012-11-19 21:59:55 +05301025static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1026 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301027{
Balaji T K25e18972012-11-19 21:59:55 +05301028 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301029 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301030 if (host->cmd)
1031 host->cmd->error = err;
1032 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301033
1034 if (host->data) {
1035 omap_hsmmc_reset_controller_fsm(host, SRD);
1036 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301037 } else if (host->mrq && host->mrq->cmd)
1038 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301039}
1040
Adrian Hunterb4175772010-05-26 14:42:06 -07001041static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001042{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001043 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001044 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001045
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001046 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301047 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001048
Venkatraman Sa7e96872012-11-19 22:00:01 +05301049 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001050 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001051
Venkatraman Sa7e96872012-11-19 22:00:01 +05301052 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301053 end_cmd = 1;
Venkatraman Sa7e96872012-11-19 22:00:01 +05301054 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301055 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301056 else if (status & (CCRC_EN | DCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301057 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1058
Venkatraman Sae4bf782012-08-09 20:36:07 +05301059 if (host->data || host->response_busy) {
Balaji T K25e18972012-11-19 21:59:55 +05301060 end_trans = !end_cmd;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301061 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001062 }
1063 }
1064
Francesco Lavra7472bab2013-06-29 08:25:12 +02001065 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301066 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001067 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301068 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001069 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001070}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001071
Adrian Hunterb4175772010-05-26 14:42:06 -07001072/*
1073 * MMC controller IRQ handler
1074 */
1075static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1076{
1077 struct omap_hsmmc_host *host = dev_id;
1078 int status;
1079
1080 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301081 while (status & INT_EN_MASK && host->req_in_progress) {
Adrian Hunterb4175772010-05-26 14:42:06 -07001082 omap_hsmmc_do_irq(host, status);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301083
Adrian Hunterb4175772010-05-26 14:42:06 -07001084 /* Flush posted write */
1085 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301086 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001087
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001088 return IRQ_HANDLED;
1089}
1090
Denis Karpov70a33412009-09-22 16:44:59 -07001091static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001092{
1093 unsigned long i;
1094
1095 OMAP_HSMMC_WRITE(host->base, HCTL,
1096 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1097 for (i = 0; i < loops_per_jiffy; i++) {
1098 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1099 break;
1100 cpu_relax();
1101 }
1102}
1103
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001104/*
David Brownelleb250822009-02-17 14:49:01 -08001105 * Switch MMC interface voltage ... only relevant for MMC1.
1106 *
1107 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1108 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1109 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001110 */
Denis Karpov70a33412009-09-22 16:44:59 -07001111static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001112{
1113 u32 reg_val = 0;
1114 int ret;
1115
1116 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301117 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301118 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301119 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001120
1121 /* Turn the power off */
1122 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001123
1124 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001125 if (!ret)
1126 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1127 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301128 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301129 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301130 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001131
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001132 if (ret != 0)
1133 goto err;
1134
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001135 OMAP_HSMMC_WRITE(host->base, HCTL,
1136 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1137 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001138
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001139 /*
1140 * If a MMC dual voltage card is detected, the set_ios fn calls
1141 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001142 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001143 *
David Brownelleb250822009-02-17 14:49:01 -08001144 * Cope with a bit of slop in the range ... per data sheets:
1145 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1146 * but recommended values are 1.71V to 1.89V
1147 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1148 * but recommended values are 2.7V to 3.3V
1149 *
1150 * Board setup code shouldn't permit anything very out-of-range.
1151 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1152 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001153 */
David Brownelleb250822009-02-17 14:49:01 -08001154 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001155 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001156 else
1157 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001158
1159 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001160 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161
1162 return 0;
1163err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301164 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001165 return ret;
1166}
1167
Adrian Hunterb62f6222009-09-22 16:45:01 -07001168/* Protect the card while the cover is open */
1169static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1170{
1171 if (!mmc_slot(host).get_cover_state)
1172 return;
1173
1174 host->reqs_blocked = 0;
1175 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1176 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301177 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001178 "card is now accessible\n",
1179 mmc_hostname(host->mmc));
1180 host->protect_card = 0;
1181 }
1182 } else {
1183 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301184 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001185 "card is now inaccessible\n",
1186 mmc_hostname(host->mmc));
1187 host->protect_card = 1;
1188 }
1189 }
1190}
1191
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001192/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001193 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001194 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001195static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001196{
NeilBrown7efab4f2011-12-30 12:35:13 +11001197 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001198 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001199 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001200
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001201 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001202
Denis Karpov191d1f12009-09-22 16:44:55 -07001203 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001204 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001205 else {
1206 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001207 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001208 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001209
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001210 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001211 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001212 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001213 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001214 return IRQ_HANDLED;
1215}
1216
Russell Kingc5c98922012-04-13 12:14:39 +01001217static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001218{
Russell Kingc5c98922012-04-13 12:14:39 +01001219 struct omap_hsmmc_host *host = param;
1220 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001221 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001222 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001223
Russell Kingc5c98922012-04-13 12:14:39 +01001224 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001225 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001226 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001227 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001228 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001229
Adrian Hunter770d7432011-05-06 12:14:11 +03001230 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001231 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001232 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001233 dma_unmap_sg(chan->device->dev,
1234 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001235 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001236
1237 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001238 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001239 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001240
1241 /* If DMA has finished after TC, complete the request */
1242 if (!req_in_progress) {
1243 struct mmc_request *mrq = host->mrq;
1244
1245 host->mrq = NULL;
1246 mmc_request_done(host->mmc, mrq);
1247 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001248}
1249
Per Forlin9782aff2011-07-01 18:55:23 +02001250static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1251 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001252 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001253 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001254{
1255 int dma_len;
1256
1257 if (!next && data->host_cookie &&
1258 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301259 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001260 " host->next_data.cookie %d\n",
1261 __func__, data->host_cookie, host->next_data.cookie);
1262 data->host_cookie = 0;
1263 }
1264
1265 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001266 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001267 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001268 omap_hsmmc_get_dma_dir(host, data));
1269
1270 } else {
1271 dma_len = host->next_data.dma_len;
1272 host->next_data.dma_len = 0;
1273 }
1274
1275
1276 if (dma_len == 0)
1277 return -EINVAL;
1278
1279 if (next) {
1280 next->dma_len = dma_len;
1281 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1282 } else
1283 host->dma_len = dma_len;
1284
1285 return 0;
1286}
1287
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001288/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001289 * Routine to configure and start DMA for the MMC card
1290 */
Denis Karpov70a33412009-09-22 16:44:59 -07001291static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1292 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001293{
Russell King26b88522012-04-13 12:27:37 +01001294 struct dma_slave_config cfg;
1295 struct dma_async_tx_descriptor *tx;
1296 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001297 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001298 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001299
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001300 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001301 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001302 struct scatterlist *sgl;
1303
1304 sgl = data->sg + i;
1305 if (sgl->length % data->blksz)
1306 return -EINVAL;
1307 }
1308 if ((data->blksz % 4) != 0)
1309 /* REVISIT: The MMC buffer increments only when MSB is written.
1310 * Return error for blksz which is non multiple of four.
1311 */
1312 return -EINVAL;
1313
Adrian Hunterb4175772010-05-26 14:42:06 -07001314 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001315
Russell Kingc5c98922012-04-13 12:14:39 +01001316 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001317
Russell King26b88522012-04-13 12:27:37 +01001318 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1319 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1320 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1321 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1322 cfg.src_maxburst = data->blksz / 4;
1323 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001324
Russell King26b88522012-04-13 12:27:37 +01001325 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001326 if (ret)
1327 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001328
Russell King26b88522012-04-13 12:27:37 +01001329 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1330 if (ret)
1331 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001332
Russell King26b88522012-04-13 12:27:37 +01001333 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1334 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1335 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1336 if (!tx) {
1337 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1338 /* FIXME: cleanup */
1339 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001340 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001341
Russell King26b88522012-04-13 12:27:37 +01001342 tx->callback = omap_hsmmc_dma_callback;
1343 tx->callback_param = host;
1344
1345 /* Does not fail */
1346 dmaengine_submit(tx);
1347
1348 host->dma_ch = 1;
1349
1350 dma_async_issue_pending(chan);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001351
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001352 return 0;
1353}
1354
Denis Karpov70a33412009-09-22 16:44:59 -07001355static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001356 unsigned int timeout_ns,
1357 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001358{
1359 unsigned int timeout, cycle_ns;
1360 uint32_t reg, clkd, dto = 0;
1361
1362 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1363 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1364 if (clkd == 0)
1365 clkd = 1;
1366
1367 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001368 timeout = timeout_ns / cycle_ns;
1369 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001370 if (timeout) {
1371 while ((timeout & 0x80000000) == 0) {
1372 dto += 1;
1373 timeout <<= 1;
1374 }
1375 dto = 31 - dto;
1376 timeout <<= 1;
1377 if (timeout && dto)
1378 dto += 1;
1379 if (dto >= 13)
1380 dto -= 13;
1381 else
1382 dto = 0;
1383 if (dto > 14)
1384 dto = 14;
1385 }
1386
1387 reg &= ~DTO_MASK;
1388 reg |= dto << DTO_SHIFT;
1389 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1390}
1391
1392/*
1393 * Configure block length for MMC/SD cards and initiate the transfer.
1394 */
1395static int
Denis Karpov70a33412009-09-22 16:44:59 -07001396omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001397{
1398 int ret;
1399 host->data = req->data;
1400
1401 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001402 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001403 /*
1404 * Set an arbitrary 100ms data timeout for commands with
1405 * busy signal.
1406 */
1407 if (req->cmd->flags & MMC_RSP_BUSY)
1408 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001409 return 0;
1410 }
1411
1412 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1413 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001414 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001415
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001416 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001417 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001418 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301419 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001420 return ret;
1421 }
1422 }
1423 return 0;
1424}
1425
Per Forlin9782aff2011-07-01 18:55:23 +02001426static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1427 int err)
1428{
1429 struct omap_hsmmc_host *host = mmc_priv(mmc);
1430 struct mmc_data *data = mrq->data;
1431
Russell King26b88522012-04-13 12:27:37 +01001432 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001433 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001434
Russell King26b88522012-04-13 12:27:37 +01001435 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1436 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001437 data->host_cookie = 0;
1438 }
1439}
1440
1441static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1442 bool is_first_req)
1443{
1444 struct omap_hsmmc_host *host = mmc_priv(mmc);
1445
1446 if (mrq->data->host_cookie) {
1447 mrq->data->host_cookie = 0;
1448 return ;
1449 }
1450
Russell Kingc5c98922012-04-13 12:14:39 +01001451 if (host->use_dma) {
1452 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001453
Per Forlin9782aff2011-07-01 18:55:23 +02001454 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001455 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001456 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001457 }
Per Forlin9782aff2011-07-01 18:55:23 +02001458}
1459
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001460/*
1461 * Request function. for read/write operation
1462 */
Denis Karpov70a33412009-09-22 16:44:59 -07001463static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001464{
Denis Karpov70a33412009-09-22 16:44:59 -07001465 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001466 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001467
Adrian Hunterb4175772010-05-26 14:42:06 -07001468 BUG_ON(host->req_in_progress);
1469 BUG_ON(host->dma_ch != -1);
1470 if (host->protect_card) {
1471 if (host->reqs_blocked < 3) {
1472 /*
1473 * Ensure the controller is left in a consistent
1474 * state by resetting the command and data state
1475 * machines.
1476 */
1477 omap_hsmmc_reset_controller_fsm(host, SRD);
1478 omap_hsmmc_reset_controller_fsm(host, SRC);
1479 host->reqs_blocked += 1;
1480 }
1481 req->cmd->error = -EBADF;
1482 if (req->data)
1483 req->data->error = -EBADF;
1484 req->cmd->retries = 0;
1485 mmc_request_done(mmc, req);
1486 return;
1487 } else if (host->reqs_blocked)
1488 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001489 WARN_ON(host->mrq != NULL);
1490 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001491 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001492 if (err) {
1493 req->cmd->error = err;
1494 if (req->data)
1495 req->data->error = err;
1496 host->mrq = NULL;
1497 mmc_request_done(mmc, req);
1498 return;
1499 }
1500
Denis Karpov70a33412009-09-22 16:44:59 -07001501 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001502}
1503
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001504/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001505static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001506{
Denis Karpov70a33412009-09-22 16:44:59 -07001507 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001508 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001509
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301510 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001511
Adrian Huntera3621462009-09-22 16:44:42 -07001512 if (ios->power_mode != host->power_mode) {
1513 switch (ios->power_mode) {
1514 case MMC_POWER_OFF:
1515 mmc_slot(host).set_power(host->dev, host->slot_id,
1516 0, 0);
1517 break;
1518 case MMC_POWER_UP:
1519 mmc_slot(host).set_power(host->dev, host->slot_id,
1520 1, ios->vdd);
1521 break;
1522 case MMC_POWER_ON:
1523 do_send_init_stream = 1;
1524 break;
1525 }
1526 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001527 }
1528
Denis Karpovdd498ef2009-09-22 16:44:49 -07001529 /* FIXME: set registers based only on changes to ios */
1530
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001531 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001532
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301533 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001534 /* Only MMC1 can interface at 3V without some flavor
1535 * of external transceiver; but they all handle 1.8V.
1536 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001537 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Balaji T K2cf171c2014-02-19 20:26:40 +05301538 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001539 /*
1540 * The mmc_select_voltage fn of the core does
1541 * not seem to set the power_mode to
1542 * MMC_POWER_UP upon recalculating the voltage.
1543 * vdd 1.8v.
1544 */
Denis Karpov70a33412009-09-22 16:44:59 -07001545 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1546 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001547 "Switch operation failed\n");
1548 }
1549 }
1550
Andy Shevchenko5934df22011-05-06 12:14:06 +03001551 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001552
Adrian Huntera3621462009-09-22 16:44:42 -07001553 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001554 send_init_stream(host);
1555
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001556 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001557
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301558 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001559}
1560
1561static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1562{
Denis Karpov70a33412009-09-22 16:44:59 -07001563 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001564
Denis Karpov191d1f12009-09-22 16:44:55 -07001565 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001566 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001567 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001568}
1569
1570static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1571{
Denis Karpov70a33412009-09-22 16:44:59 -07001572 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001573
Denis Karpov191d1f12009-09-22 16:44:55 -07001574 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001575 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001576 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001577}
1578
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001579static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1580{
1581 struct omap_hsmmc_host *host = mmc_priv(mmc);
1582
1583 if (mmc_slot(host).init_card)
1584 mmc_slot(host).init_card(card);
1585}
1586
Denis Karpov70a33412009-09-22 16:44:59 -07001587static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001588{
1589 u32 hctl, capa, value;
1590
1591 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301592 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001593 hctl = SDVS30;
1594 capa = VS30 | VS18;
1595 } else {
1596 hctl = SDVS18;
1597 capa = VS18;
1598 }
1599
1600 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1601 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1602
1603 value = OMAP_HSMMC_READ(host->base, CAPA);
1604 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1605
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001606 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001607 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001608}
1609
Denis Karpov70a33412009-09-22 16:44:59 -07001610static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001611{
Denis Karpov70a33412009-09-22 16:44:59 -07001612 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001613
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301614 pm_runtime_get_sync(host->dev);
1615
Denis Karpovdd498ef2009-09-22 16:44:49 -07001616 return 0;
1617}
1618
Adrian Hunter907d2e72012-02-29 09:17:21 +02001619static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001620{
Denis Karpov70a33412009-09-22 16:44:59 -07001621 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001622
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301623 pm_runtime_mark_last_busy(host->dev);
1624 pm_runtime_put_autosuspend(host->dev);
1625
Denis Karpovdd498ef2009-09-22 16:44:49 -07001626 return 0;
1627}
1628
Denis Karpov70a33412009-09-22 16:44:59 -07001629static const struct mmc_host_ops omap_hsmmc_ops = {
1630 .enable = omap_hsmmc_enable_fclk,
1631 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001632 .post_req = omap_hsmmc_post_req,
1633 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001634 .request = omap_hsmmc_request,
1635 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001636 .get_cd = omap_hsmmc_get_cd,
1637 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001638 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001639 /* NYET -- enable_sdio_irq */
1640};
1641
Denis Karpovd900f712009-09-22 16:44:38 -07001642#ifdef CONFIG_DEBUG_FS
1643
Denis Karpov70a33412009-09-22 16:44:59 -07001644static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001645{
1646 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001647 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001648
Tony Lindgren0a82e062013-10-21 00:25:19 +05301649 seq_printf(s, "mmc%d:\n ctx_loss:\t%d\n\nregs:\n",
1650 mmc->index, host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001651
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301652 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001653
Denis Karpovd900f712009-09-22 16:44:38 -07001654 seq_printf(s, "CON:\t\t0x%08x\n",
1655 OMAP_HSMMC_READ(host->base, CON));
1656 seq_printf(s, "HCTL:\t\t0x%08x\n",
1657 OMAP_HSMMC_READ(host->base, HCTL));
1658 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1659 OMAP_HSMMC_READ(host->base, SYSCTL));
1660 seq_printf(s, "IE:\t\t0x%08x\n",
1661 OMAP_HSMMC_READ(host->base, IE));
1662 seq_printf(s, "ISE:\t\t0x%08x\n",
1663 OMAP_HSMMC_READ(host->base, ISE));
1664 seq_printf(s, "CAPA:\t\t0x%08x\n",
1665 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001666
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301667 pm_runtime_mark_last_busy(host->dev);
1668 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001669
Denis Karpovd900f712009-09-22 16:44:38 -07001670 return 0;
1671}
1672
Denis Karpov70a33412009-09-22 16:44:59 -07001673static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001674{
Denis Karpov70a33412009-09-22 16:44:59 -07001675 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001676}
1677
1678static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001679 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001680 .read = seq_read,
1681 .llseek = seq_lseek,
1682 .release = single_release,
1683};
1684
Denis Karpov70a33412009-09-22 16:44:59 -07001685static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001686{
1687 if (mmc->debugfs_root)
1688 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1689 mmc, &mmc_regs_fops);
1690}
1691
1692#else
1693
Denis Karpov70a33412009-09-22 16:44:59 -07001694static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001695{
1696}
1697
1698#endif
1699
Rajendra Nayak46856a62012-03-12 20:32:37 +05301700#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001701static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1702 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1703 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1704};
1705
1706static const struct omap_mmc_of_data omap4_mmc_of_data = {
1707 .reg_offset = 0x100,
1708};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301709
1710static const struct of_device_id omap_mmc_of_match[] = {
1711 {
1712 .compatible = "ti,omap2-hsmmc",
1713 },
1714 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001715 .compatible = "ti,omap3-pre-es3-hsmmc",
1716 .data = &omap3_pre_es3_mmc_of_data,
1717 },
1718 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301719 .compatible = "ti,omap3-hsmmc",
1720 },
1721 {
1722 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001723 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301724 },
1725 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001726};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301727MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1728
1729static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1730{
1731 struct omap_mmc_platform_data *pdata;
1732 struct device_node *np = dev->of_node;
Daniel Mackd8714e82012-10-15 21:35:06 +05301733 u32 bus_width, max_freq;
Jan Luebbedc642c22013-01-30 10:07:17 +01001734 int cd_gpio, wp_gpio;
1735
1736 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1737 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1738 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1739 return ERR_PTR(-EPROBE_DEFER);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301740
1741 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1742 if (!pdata)
Balaji T K19df45b2014-02-28 19:08:18 +05301743 return ERR_PTR(-ENOMEM); /* out of memory */
Rajendra Nayak46856a62012-03-12 20:32:37 +05301744
1745 if (of_find_property(np, "ti,dual-volt", NULL))
1746 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1747
1748 /* This driver only supports 1 slot */
1749 pdata->nr_slots = 1;
Jan Luebbedc642c22013-01-30 10:07:17 +01001750 pdata->slots[0].switch_pin = cd_gpio;
1751 pdata->slots[0].gpio_wp = wp_gpio;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301752
1753 if (of_find_property(np, "ti,non-removable", NULL)) {
1754 pdata->slots[0].nonremovable = true;
1755 pdata->slots[0].no_regulator_off_init = true;
1756 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001757 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301758 if (bus_width == 4)
1759 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1760 else if (bus_width == 8)
1761 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1762
1763 if (of_find_property(np, "ti,needs-special-reset", NULL))
1764 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1765
Daniel Mackd8714e82012-10-15 21:35:06 +05301766 if (!of_property_read_u32(np, "max-frequency", &max_freq))
1767 pdata->max_freq = max_freq;
1768
Hebbar, Gururajacd587092012-11-19 21:59:58 +05301769 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
1770 pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
1771
Daniel Mackc9ae64d2014-02-17 12:36:33 +01001772 if (of_find_property(np, "keep-power-in-suspend", NULL))
1773 pdata->slots[0].pm_caps |= MMC_PM_KEEP_POWER;
1774
1775 if (of_find_property(np, "enable-sdio-wakeup", NULL))
1776 pdata->slots[0].pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
1777
Rajendra Nayak46856a62012-03-12 20:32:37 +05301778 return pdata;
1779}
1780#else
1781static inline struct omap_mmc_platform_data
1782 *of_get_hsmmc_pdata(struct device *dev)
1783{
Balaji T K19df45b2014-02-28 19:08:18 +05301784 return ERR_PTR(-EINVAL);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301785}
1786#endif
1787
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001788static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001789{
1790 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1791 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001792 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001793 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001794 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301795 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001796 dma_cap_mask_t mask;
1797 unsigned tx_req, rx_req;
Daniel Mack46b76032012-10-15 21:35:05 +05301798 struct pinctrl *pinctrl;
Nishanth Menon59445b12014-02-13 23:45:48 -06001799 const struct omap_mmc_of_data *data;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301800
1801 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1802 if (match) {
1803 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01001804
1805 if (IS_ERR(pdata))
1806 return PTR_ERR(pdata);
1807
Rajendra Nayak46856a62012-03-12 20:32:37 +05301808 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06001809 data = match->data;
1810 pdata->reg_offset = data->reg_offset;
1811 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301812 }
1813 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001814
1815 if (pdata == NULL) {
1816 dev_err(&pdev->dev, "Platform Data is missing\n");
1817 return -ENXIO;
1818 }
1819
1820 if (pdata->nr_slots == 0) {
1821 dev_err(&pdev->dev, "No Slots\n");
1822 return -ENXIO;
1823 }
1824
1825 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1826 irq = platform_get_irq(pdev, 0);
1827 if (res == NULL || irq < 0)
1828 return -ENXIO;
1829
Chris Ball984b2032011-03-22 16:34:42 -07001830 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001831 if (res == NULL)
1832 return -EBUSY;
1833
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001834 ret = omap_hsmmc_gpio_init(pdata);
1835 if (ret)
1836 goto err;
1837
Denis Karpov70a33412009-09-22 16:44:59 -07001838 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001839 if (!mmc) {
1840 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001841 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001842 }
1843
1844 host = mmc_priv(mmc);
1845 host->mmc = mmc;
1846 host->pdata = pdata;
1847 host->dev = &pdev->dev;
1848 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001849 host->dma_ch = -1;
1850 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001851 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301852 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001853 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001854 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001855 host->next_data.cookie = 1;
Balaji T Ke99448f2014-02-19 20:26:40 +05301856 host->pbias_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001857
1858 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001859
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301860 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001861
Daniel Mackd418ed82012-02-19 13:20:33 +01001862 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1863
1864 if (pdata->max_freq > 0)
1865 mmc->f_max = pdata->max_freq;
1866 else
1867 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001868
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001869 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001870
Russell King6f7607c2009-01-28 10:22:50 +00001871 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001872 if (IS_ERR(host->fclk)) {
1873 ret = PTR_ERR(host->fclk);
1874 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001875 goto err1;
1876 }
1877
Paul Walmsley9b682562011-10-06 14:50:35 -06001878 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1879 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1880 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1881 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001882
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301883 pm_runtime_enable(host->dev);
1884 pm_runtime_get_sync(host->dev);
1885 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1886 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001887
Balaji T K92a3aeb2012-02-24 21:14:34 +05301888 omap_hsmmc_context_save(host);
1889
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301890 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1891 /*
1892 * MMC can still work without debounce clock.
1893 */
1894 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301895 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05301896 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301897 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1898 clk_put(host->dbclk);
1899 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001900 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001901
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001902 /* Since we do only SG emulation, we can have as many segs
1903 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001904 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001905
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001906 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1907 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1908 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1909 mmc->max_seg_size = mmc->max_req_size;
1910
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001911 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001912 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001913
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001914 mmc->caps |= mmc_slot(host).caps;
1915 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001916 mmc->caps |= MMC_CAP_4_BIT_DATA;
1917
Denis Karpov191d1f12009-09-22 16:44:55 -07001918 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001919 mmc->caps |= MMC_CAP_NONREMOVABLE;
1920
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001921 mmc->pm_caps = mmc_slot(host).pm_caps;
1922
Denis Karpov70a33412009-09-22 16:44:59 -07001923 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001924
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301925 if (!pdev->dev.of_node) {
1926 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1927 if (!res) {
1928 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
1929 ret = -ENXIO;
1930 goto err_irq;
1931 }
1932 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001933
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301934 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1935 if (!res) {
1936 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1937 ret = -ENXIO;
1938 goto err_irq;
1939 }
1940 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001941 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001942
Russell King26b88522012-04-13 12:27:37 +01001943 dma_cap_zero(mask);
1944 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001945
Matt Porterd272fbf2013-05-10 17:42:34 +05301946 host->rx_chan =
1947 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1948 &rx_req, &pdev->dev, "rx");
1949
Russell King26b88522012-04-13 12:27:37 +01001950 if (!host->rx_chan) {
1951 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001952 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001953 goto err_irq;
1954 }
1955
Matt Porterd272fbf2013-05-10 17:42:34 +05301956 host->tx_chan =
1957 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1958 &tx_req, &pdev->dev, "tx");
1959
Russell King26b88522012-04-13 12:27:37 +01001960 if (!host->tx_chan) {
1961 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001962 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001963 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001964 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001965
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001966 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001967 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001968 mmc_hostname(mmc), host);
1969 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301970 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001971 goto err_irq;
1972 }
1973
1974 if (pdata->init != NULL) {
1975 if (pdata->init(&pdev->dev) != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301976 dev_err(mmc_dev(host->mmc),
Denis Karpov70a33412009-09-22 16:44:59 -07001977 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001978 goto err_irq_cd_init;
1979 }
1980 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001981
Adrian Hunterb702b102010-02-15 10:03:35 -08001982 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001983 ret = omap_hsmmc_reg_get(host);
1984 if (ret)
1985 goto err_reg;
1986 host->use_reg = 1;
1987 }
1988
David Brownellb583f262009-05-28 14:04:03 -07001989 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001990
1991 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001992 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001993 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1994 NULL,
1995 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08001996 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11001997 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001998 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301999 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002000 "Unable to grab MMC CD IRQ\n");
2001 goto err_irq_cd;
2002 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002003 pdata->suspend = omap_hsmmc_suspend_cdirq;
2004 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002005 }
2006
Adrian Hunterb4175772010-05-26 14:42:06 -07002007 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002008
Daniel Mack46b76032012-10-15 21:35:05 +05302009 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
2010 if (IS_ERR(pinctrl))
2011 dev_warn(&pdev->dev,
2012 "pins are not configured from the driver\n");
2013
Adrian Hunterb62f6222009-09-22 16:45:01 -07002014 omap_hsmmc_protect_card(host);
2015
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002016 mmc_add_host(mmc);
2017
Denis Karpov191d1f12009-09-22 16:44:55 -07002018 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002019 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2020 if (ret < 0)
2021 goto err_slot_name;
2022 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002023 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024 ret = device_create_file(&mmc->class_dev,
2025 &dev_attr_cover_switch);
2026 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002027 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002028 }
2029
Denis Karpov70a33412009-09-22 16:44:59 -07002030 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302031 pm_runtime_mark_last_busy(host->dev);
2032 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002033
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002034 return 0;
2035
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002036err_slot_name:
2037 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002038 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002039err_irq_cd:
2040 if (host->use_reg)
2041 omap_hsmmc_reg_put(host);
2042err_reg:
2043 if (host->pdata->cleanup)
2044 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002045err_irq_cd_init:
2046 free_irq(host->irq, host);
2047err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002048 if (host->tx_chan)
2049 dma_release_channel(host->tx_chan);
2050 if (host->rx_chan)
2051 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302052 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002053 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002054 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302055 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302056 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002057 clk_put(host->dbclk);
2058 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002059err1:
2060 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002061 mmc_free_host(mmc);
2062err_alloc:
2063 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002064err:
Russell King48b332f2012-04-18 11:11:57 +01002065 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2066 if (res)
2067 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002068 return ret;
2069}
2070
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002071static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002072{
Denis Karpov70a33412009-09-22 16:44:59 -07002073 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002074 struct resource *res;
2075
Felipe Balbi927ce942012-03-14 11:18:27 +02002076 pm_runtime_get_sync(host->dev);
2077 mmc_remove_host(host->mmc);
2078 if (host->use_reg)
2079 omap_hsmmc_reg_put(host);
2080 if (host->pdata->cleanup)
2081 host->pdata->cleanup(&pdev->dev);
2082 free_irq(host->irq, host);
2083 if (mmc_slot(host).card_detect_irq)
2084 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002085
Russell Kingc5c98922012-04-13 12:14:39 +01002086 if (host->tx_chan)
2087 dma_release_channel(host->tx_chan);
2088 if (host->rx_chan)
2089 dma_release_channel(host->rx_chan);
2090
Felipe Balbi927ce942012-03-14 11:18:27 +02002091 pm_runtime_put_sync(host->dev);
2092 pm_runtime_disable(host->dev);
2093 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302094 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302095 clk_disable_unprepare(host->dbclk);
Felipe Balbi927ce942012-03-14 11:18:27 +02002096 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002097 }
2098
Balaji T K9ea28ec2012-10-15 21:35:08 +05302099 omap_hsmmc_gpio_free(host->pdata);
Felipe Balbi927ce942012-03-14 11:18:27 +02002100 iounmap(host->base);
Balaji T K9d1f0282012-10-15 21:35:07 +05302101 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002102
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002103 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2104 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002105 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002106
2107 return 0;
2108}
2109
2110#ifdef CONFIG_PM
Felipe Balbia48ce882012-11-19 21:59:59 +05302111static int omap_hsmmc_prepare(struct device *dev)
2112{
2113 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2114
2115 if (host->pdata->suspend)
2116 return host->pdata->suspend(dev, host->slot_id);
2117
2118 return 0;
2119}
2120
2121static void omap_hsmmc_complete(struct device *dev)
2122{
2123 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2124
2125 if (host->pdata->resume)
2126 host->pdata->resume(dev, host->slot_id);
2127
2128}
2129
Kevin Hilmana791daa2010-05-26 14:42:07 -07002130static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002131{
Felipe Balbi927ce942012-03-14 11:18:27 +02002132 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2133
2134 if (!host)
2135 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002136
Felipe Balbi927ce942012-03-14 11:18:27 +02002137 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002138
2139 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2140 omap_hsmmc_disable_irq(host);
2141 OMAP_HSMMC_WRITE(host->base, HCTL,
2142 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2143 }
2144
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302145 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302146 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002147
Eliad Peller31f9d462011-11-22 16:02:17 +02002148 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002149 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002150}
2151
2152/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002153static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002154{
Felipe Balbi927ce942012-03-14 11:18:27 +02002155 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2156
2157 if (!host)
2158 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002159
Felipe Balbi927ce942012-03-14 11:18:27 +02002160 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002161
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302162 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302163 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002164
Felipe Balbi927ce942012-03-14 11:18:27 +02002165 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2166 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002167
Felipe Balbi927ce942012-03-14 11:18:27 +02002168 omap_hsmmc_protect_card(host);
2169
Felipe Balbi927ce942012-03-14 11:18:27 +02002170 pm_runtime_mark_last_busy(host->dev);
2171 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002172 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002173}
2174
2175#else
Felipe Balbia48ce882012-11-19 21:59:59 +05302176#define omap_hsmmc_prepare NULL
2177#define omap_hsmmc_complete NULL
Denis Karpov70a33412009-09-22 16:44:59 -07002178#define omap_hsmmc_suspend NULL
Felipe Balbia48ce882012-11-19 21:59:59 +05302179#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002180#endif
2181
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302182static int omap_hsmmc_runtime_suspend(struct device *dev)
2183{
2184 struct omap_hsmmc_host *host;
2185
2186 host = platform_get_drvdata(to_platform_device(dev));
2187 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002188 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302189
2190 return 0;
2191}
2192
2193static int omap_hsmmc_runtime_resume(struct device *dev)
2194{
2195 struct omap_hsmmc_host *host;
2196
2197 host = platform_get_drvdata(to_platform_device(dev));
2198 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002199 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302200
2201 return 0;
2202}
2203
Kevin Hilmana791daa2010-05-26 14:42:07 -07002204static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002205 .suspend = omap_hsmmc_suspend,
2206 .resume = omap_hsmmc_resume,
Felipe Balbia48ce882012-11-19 21:59:59 +05302207 .prepare = omap_hsmmc_prepare,
2208 .complete = omap_hsmmc_complete,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302209 .runtime_suspend = omap_hsmmc_runtime_suspend,
2210 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002211};
2212
2213static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002214 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002215 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002216 .driver = {
2217 .name = DRIVER_NAME,
2218 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002219 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302220 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002221 },
2222};
2223
Felipe Balbib7964502012-03-14 11:18:32 +02002224module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002225MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2226MODULE_LICENSE("GPL");
2227MODULE_ALIAS("platform:" DRIVER_NAME);
2228MODULE_AUTHOR("Texas Instruments Inc");