blob: 53b53b5816878f3b78383829471a31cb05a6650b [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)
78#define CLKD_MASK 0x0000FFC0
79#define CLKD_SHIFT 6
80#define DTO_MASK 0x000F0000
81#define DTO_SHIFT 16
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010082#define INIT_STREAM (1 << 1)
83#define DP_SELECT (1 << 21)
84#define DDIR (1 << 4)
Venkatraman Sa7e96872012-11-19 22:00:01 +053085#define DMAE 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010086#define MSBS (1 << 5)
87#define BCE (1 << 1)
88#define FOUR_BIT (1 << 1)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053089#define HSPE (1 << 2)
Balaji T K03b5d9242012-04-09 12:08:33 +053090#define DDR (1 << 19)
Jarkko Lavinen73153012008-11-21 16:49:54 +020091#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010092#define OD 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010093#define STAT_CLEAR 0xFFFFFFFF
94#define INIT_STREAM_CMD 0x00000000
95#define DUAL_VOLT_OCR_BIT 7
96#define SRC (1 << 25)
97#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -070098#define SOFTRESET (1 << 1)
99#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100100
Venkatraman Sa7e96872012-11-19 22:00:01 +0530101/* Interrupt masks for IE and ISE register */
102#define CC_EN (1 << 0)
103#define TC_EN (1 << 1)
104#define BWR_EN (1 << 4)
105#define BRR_EN (1 << 5)
106#define ERR_EN (1 << 15)
107#define CTO_EN (1 << 16)
108#define CCRC_EN (1 << 17)
109#define CEB_EN (1 << 18)
110#define CIE_EN (1 << 19)
111#define DTO_EN (1 << 20)
112#define DCRC_EN (1 << 21)
113#define DEB_EN (1 << 22)
114#define CERR_EN (1 << 28)
115#define BADA_EN (1 << 29)
116
117#define INT_EN_MASK (BADA_EN | CERR_EN | DEB_EN | DCRC_EN |\
118 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
119 BRR_EN | BWR_EN | TC_EN | CC_EN)
120
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530121#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100122#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400123#define OMAP_MMC_MIN_CLOCK 400000
124#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530125#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100126
127/*
128 * One controller can have multiple slots, like on some omap boards using
129 * omap.c controller driver. Luckily this is not currently done on any known
130 * omap_hsmmc.c device.
131 */
132#define mmc_slot(host) (host->pdata->slots[host->slot_id])
133
134/*
135 * MMC Host controller read/write API's
136 */
137#define OMAP_HSMMC_READ(base, reg) \
138 __raw_readl((base) + OMAP_HSMMC_##reg)
139
140#define OMAP_HSMMC_WRITE(base, reg, val) \
141 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
142
Per Forlin9782aff2011-07-01 18:55:23 +0200143struct omap_hsmmc_next {
144 unsigned int dma_len;
145 s32 cookie;
146};
147
Denis Karpov70a33412009-09-22 16:44:59 -0700148struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100149 struct device *dev;
150 struct mmc_host *mmc;
151 struct mmc_request *mrq;
152 struct mmc_command *cmd;
153 struct mmc_data *data;
154 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800156 /*
157 * vcc == configured supply
158 * vcc_aux == optional
159 * - MMC1, supply for DAT4..DAT7
160 * - MMC2/MMC2, external level shifter voltage supply, for
161 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
162 */
163 struct regulator *vcc;
164 struct regulator *vcc_aux;
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530165 int pbias_disable;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100166 void __iomem *base;
167 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700168 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100169 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200170 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100171 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700172 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100173 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530174 u32 con;
175 u32 hctl;
176 u32 sysctl;
177 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100178 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100179 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100180 struct dma_chan *tx_chan;
181 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100182 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200183 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700184 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700185 int protect_card;
186 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800187 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700188 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200189 struct omap_hsmmc_next next_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100190 struct omap_mmc_platform_data *pdata;
191};
192
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800193static int omap_hsmmc_card_detect(struct device *dev, int slot)
194{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530195 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
196 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800197
198 /* NOTE: assumes card detect signal is active-low */
199 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
200}
201
202static int omap_hsmmc_get_wp(struct device *dev, int slot)
203{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530204 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
205 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800206
207 /* NOTE: assumes write protect signal is active-high */
208 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
209}
210
211static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
212{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530213 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
214 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800215
216 /* NOTE: assumes card detect signal is active-low */
217 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
218}
219
220#ifdef CONFIG_PM
221
222static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
223{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530224 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
225 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800226
227 disable_irq(mmc->slots[0].card_detect_irq);
228 return 0;
229}
230
231static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
232{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530233 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
234 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800235
236 enable_irq(mmc->slots[0].card_detect_irq);
237 return 0;
238}
239
240#else
241
242#define omap_hsmmc_suspend_cdirq NULL
243#define omap_hsmmc_resume_cdirq NULL
244
245#endif
246
Adrian Hunterb702b102010-02-15 10:03:35 -0800247#ifdef CONFIG_REGULATOR
248
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500249static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800250 int vdd)
251{
252 struct omap_hsmmc_host *host =
253 platform_get_drvdata(to_platform_device(dev));
254 int ret = 0;
255
256 /*
257 * If we don't see a Vcc regulator, assume it's a fixed
258 * voltage always-on regulator.
259 */
260 if (!host->vcc)
261 return 0;
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530262 /*
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530263 * With DT, never turn OFF the regulator for MMC1. This is because
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530264 * the pbias cell programming support is still missing when
265 * booting with Device tree
266 */
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530267 if (host->pbias_disable && !vdd)
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530268 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800269
270 if (mmc_slot(host).before_set_reg)
271 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
272
273 /*
274 * Assume Vcc regulator is used only to power the card ... OMAP
275 * VDDS is used to power the pins, optionally with a transceiver to
276 * support cards using voltages other than VDDS (1.8V nominal). When a
277 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
278 *
279 * In some cases this regulator won't support enable/disable;
280 * e.g. it's a fixed rail for a WLAN chip.
281 *
282 * In other cases vcc_aux switches interface power. Example, for
283 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
284 * chips/cards need an interface voltage rail too.
285 */
286 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400287 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800288 /* Enable interface voltage rail, if needed */
289 if (ret == 0 && host->vcc_aux) {
290 ret = regulator_enable(host->vcc_aux);
291 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400292 ret = mmc_regulator_set_ocr(host->mmc,
293 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800294 }
295 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400296 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800297 if (host->vcc_aux)
298 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400299 if (!ret) {
300 /* Then proceed to shut down the local regulator */
301 ret = mmc_regulator_set_ocr(host->mmc,
302 host->vcc, 0);
303 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800304 }
305
306 if (mmc_slot(host).after_set_reg)
307 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
308
309 return ret;
310}
311
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800312static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
313{
314 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700315 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800316
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800317 reg = regulator_get(host->dev, "vmmc");
318 if (IS_ERR(reg)) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +0530319 dev_err(host->dev, "vmmc regulator missing\n");
NeilBrown1fdc90f2012-08-08 00:06:00 -0400320 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800321 } else {
NeilBrown1fdc90f2012-08-08 00:06:00 -0400322 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800323 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700324 ocr_value = mmc_regulator_get_ocrmask(reg);
325 if (!mmc_slot(host).ocr_mask) {
326 mmc_slot(host).ocr_mask = ocr_value;
327 } else {
328 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530329 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500330 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700331 mmc_slot(host).ocr_mask = 0;
332 return -EINVAL;
333 }
334 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800335
336 /* Allow an aux regulator */
337 reg = regulator_get(host->dev, "vmmc_aux");
338 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
339
Balaji T Kb1c1df72011-05-30 19:55:34 +0530340 /* For eMMC do not power off when not in sleep state */
341 if (mmc_slot(host).no_regulator_off_init)
342 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800343 /*
344 * UGLY HACK: workaround regulator framework bugs.
345 * When the bootloader leaves a supply active, it's
346 * initialized with zero usecount ... and we can't
347 * disable it without first enabling it. Until the
348 * framework is fixed, we need a workaround like this
349 * (which is safe for MMC, but not in general).
350 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300351 if (regulator_is_enabled(host->vcc) > 0 ||
352 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
353 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
354
355 mmc_slot(host).set_power(host->dev, host->slot_id,
356 1, vdd);
357 mmc_slot(host).set_power(host->dev, host->slot_id,
358 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800359 }
360 }
361
362 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800363}
364
365static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
366{
367 regulator_put(host->vcc);
368 regulator_put(host->vcc_aux);
369 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800370}
371
Adrian Hunterb702b102010-02-15 10:03:35 -0800372static inline int omap_hsmmc_have_reg(void)
373{
374 return 1;
375}
376
377#else
378
379static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
380{
381 return -EINVAL;
382}
383
384static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
385{
386}
387
388static inline int omap_hsmmc_have_reg(void)
389{
390 return 0;
391}
392
393#endif
394
395static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
396{
397 int ret;
398
399 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800400 if (pdata->slots[0].cover)
401 pdata->slots[0].get_cover_state =
402 omap_hsmmc_get_cover_state;
403 else
404 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
405 pdata->slots[0].card_detect_irq =
406 gpio_to_irq(pdata->slots[0].switch_pin);
407 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
408 if (ret)
409 return ret;
410 ret = gpio_direction_input(pdata->slots[0].switch_pin);
411 if (ret)
412 goto err_free_sp;
413 } else
414 pdata->slots[0].switch_pin = -EINVAL;
415
416 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
417 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
418 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
419 if (ret)
420 goto err_free_cd;
421 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
422 if (ret)
423 goto err_free_wp;
424 } else
425 pdata->slots[0].gpio_wp = -EINVAL;
426
427 return 0;
428
429err_free_wp:
430 gpio_free(pdata->slots[0].gpio_wp);
431err_free_cd:
432 if (gpio_is_valid(pdata->slots[0].switch_pin))
433err_free_sp:
434 gpio_free(pdata->slots[0].switch_pin);
435 return ret;
436}
437
438static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
439{
440 if (gpio_is_valid(pdata->slots[0].gpio_wp))
441 gpio_free(pdata->slots[0].gpio_wp);
442 if (gpio_is_valid(pdata->slots[0].switch_pin))
443 gpio_free(pdata->slots[0].switch_pin);
444}
445
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100446/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300447 * Start clock to the card
448 */
449static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
450{
451 OMAP_HSMMC_WRITE(host->base, SYSCTL,
452 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
453}
454
455/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100456 * Stop clock to the card
457 */
Denis Karpov70a33412009-09-22 16:44:59 -0700458static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100459{
460 OMAP_HSMMC_WRITE(host->base, SYSCTL,
461 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
462 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900463 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100464}
465
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700466static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
467 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700468{
469 unsigned int irq_mask;
470
471 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530472 irq_mask = INT_EN_MASK & ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700473 else
474 irq_mask = INT_EN_MASK;
475
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700476 /* Disable timeout for erases */
477 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530478 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700479
Adrian Hunterb4175772010-05-26 14:42:06 -0700480 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
481 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
482 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
483}
484
485static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
486{
487 OMAP_HSMMC_WRITE(host->base, ISE, 0);
488 OMAP_HSMMC_WRITE(host->base, IE, 0);
489 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
490}
491
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300492/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530493static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300494{
495 u16 dsor = 0;
496
497 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530498 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300499 if (dsor > 250)
500 dsor = 250;
501 }
502
503 return dsor;
504}
505
Andy Shevchenko5934df22011-05-06 12:14:06 +0300506static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
507{
508 struct mmc_ios *ios = &host->mmc->ios;
509 unsigned long regval;
510 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530511 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300512
Venkatraman S8986d312012-08-07 19:10:38 +0530513 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300514
515 omap_hsmmc_stop_clock(host);
516
517 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
518 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530519 clkdiv = calc_divisor(host, ios);
520 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300521 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
522 OMAP_HSMMC_WRITE(host->base, SYSCTL,
523 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
524
525 /* Wait till the ICS bit is set */
526 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
527 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
528 && time_before(jiffies, timeout))
529 cpu_relax();
530
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530531 /*
532 * Enable High-Speed Support
533 * Pre-Requisites
534 * - Controller should support High-Speed-Enable Bit
535 * - Controller should not be using DDR Mode
536 * - Controller should advertise that it supports High Speed
537 * in capabilities register
538 * - MMC/SD clock coming out of controller > 25MHz
539 */
540 if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) &&
541 (ios->timing != MMC_TIMING_UHS_DDR50) &&
542 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
543 regval = OMAP_HSMMC_READ(host->base, HCTL);
544 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
545 regval |= HSPE;
546 else
547 regval &= ~HSPE;
548
549 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
550 }
551
Andy Shevchenko5934df22011-05-06 12:14:06 +0300552 omap_hsmmc_start_clock(host);
553}
554
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400555static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
556{
557 struct mmc_ios *ios = &host->mmc->ios;
558 u32 con;
559
560 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d9242012-04-09 12:08:33 +0530561 if (ios->timing == MMC_TIMING_UHS_DDR50)
562 con |= DDR; /* configure in DDR mode */
563 else
564 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400565 switch (ios->bus_width) {
566 case MMC_BUS_WIDTH_8:
567 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
568 break;
569 case MMC_BUS_WIDTH_4:
570 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
571 OMAP_HSMMC_WRITE(host->base, HCTL,
572 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
573 break;
574 case MMC_BUS_WIDTH_1:
575 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
576 OMAP_HSMMC_WRITE(host->base, HCTL,
577 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
578 break;
579 }
580}
581
582static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
583{
584 struct mmc_ios *ios = &host->mmc->ios;
585 u32 con;
586
587 con = OMAP_HSMMC_READ(host->base, CON);
588 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
589 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
590 else
591 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
592}
593
Denis Karpov11dd62a2009-09-22 16:44:43 -0700594#ifdef CONFIG_PM
595
596/*
597 * Restore the MMC host context, if it was lost as result of a
598 * power state change.
599 */
Denis Karpov70a33412009-09-22 16:44:59 -0700600static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700601{
602 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400603 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700604 unsigned long timeout;
605
Venkatraman S6c31b212012-08-08 14:26:52 +0530606 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
607 return 1;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700608
Tony Lindgren0a82e062013-10-21 00:25:19 +0530609 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
610 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
611 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
612 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
613 return 0;
614
615 host->context_loss++;
616
Balaji T Kc2200ef2012-03-07 09:55:30 -0500617 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700618 if (host->power_mode != MMC_POWER_OFF &&
619 (1 << ios->vdd) <= MMC_VDD_23_24)
620 hctl = SDVS18;
621 else
622 hctl = SDVS30;
623 capa = VS30 | VS18;
624 } else {
625 hctl = SDVS18;
626 capa = VS18;
627 }
628
629 OMAP_HSMMC_WRITE(host->base, HCTL,
630 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
631
632 OMAP_HSMMC_WRITE(host->base, CAPA,
633 OMAP_HSMMC_READ(host->base, CAPA) | capa);
634
635 OMAP_HSMMC_WRITE(host->base, HCTL,
636 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
637
638 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
639 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
640 && time_before(jiffies, timeout))
641 ;
642
Adrian Hunterb4175772010-05-26 14:42:06 -0700643 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700644
645 /* Do not initialize card-specific things if the power is off */
646 if (host->power_mode == MMC_POWER_OFF)
647 goto out;
648
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400649 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700650
Andy Shevchenko5934df22011-05-06 12:14:06 +0300651 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700652
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400653 omap_hsmmc_set_bus_mode(host);
654
Denis Karpov11dd62a2009-09-22 16:44:43 -0700655out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530656 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
657 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700658 return 0;
659}
660
661/*
662 * Save the MMC host context (store the number of power state changes so far).
663 */
Denis Karpov70a33412009-09-22 16:44:59 -0700664static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700665{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530666 host->con = OMAP_HSMMC_READ(host->base, CON);
667 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
668 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
669 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700670}
671
672#else
673
Denis Karpov70a33412009-09-22 16:44:59 -0700674static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700675{
676 return 0;
677}
678
Denis Karpov70a33412009-09-22 16:44:59 -0700679static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700680{
681}
682
683#endif
684
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100685/*
686 * Send init stream sequence to card
687 * before sending IDLE command
688 */
Denis Karpov70a33412009-09-22 16:44:59 -0700689static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100690{
691 int reg = 0;
692 unsigned long timeout;
693
Adrian Hunterb62f6222009-09-22 16:45:01 -0700694 if (host->protect_card)
695 return;
696
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100697 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700698
699 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100700 OMAP_HSMMC_WRITE(host->base, CON,
701 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
702 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
703
704 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530705 while ((reg != CC_EN) && time_before(jiffies, timeout))
706 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100707
708 OMAP_HSMMC_WRITE(host->base, CON,
709 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700710
711 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
712 OMAP_HSMMC_READ(host->base, STAT);
713
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100714 enable_irq(host->irq);
715}
716
717static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700718int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100719{
720 int r = 1;
721
Denis Karpov191d1f12009-09-22 16:44:55 -0700722 if (mmc_slot(host).get_cover_state)
723 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100724 return r;
725}
726
727static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700728omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100729 char *buf)
730{
731 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700732 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100733
Denis Karpov70a33412009-09-22 16:44:59 -0700734 return sprintf(buf, "%s\n",
735 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100736}
737
Denis Karpov70a33412009-09-22 16:44:59 -0700738static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100739
740static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700741omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100742 char *buf)
743{
744 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700745 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100746
Denis Karpov191d1f12009-09-22 16:44:55 -0700747 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100748}
749
Denis Karpov70a33412009-09-22 16:44:59 -0700750static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100751
752/*
753 * Configure the response type and send the cmd.
754 */
755static void
Denis Karpov70a33412009-09-22 16:44:59 -0700756omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100757 struct mmc_data *data)
758{
759 int cmdreg = 0, resptype = 0, cmdtype = 0;
760
Venkatraman S8986d312012-08-07 19:10:38 +0530761 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100762 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
763 host->cmd = cmd;
764
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700765 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100766
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200767 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100768 if (cmd->flags & MMC_RSP_PRESENT) {
769 if (cmd->flags & MMC_RSP_136)
770 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200771 else if (cmd->flags & MMC_RSP_BUSY) {
772 resptype = 3;
773 host->response_busy = 1;
774 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100775 resptype = 2;
776 }
777
778 /*
779 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
780 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
781 * a val of 0x3, rest 0x0.
782 */
783 if (cmd == host->mrq->stop)
784 cmdtype = 0x3;
785
786 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
787
788 if (data) {
789 cmdreg |= DP_SELECT | MSBS | BCE;
790 if (data->flags & MMC_DATA_READ)
791 cmdreg |= DDIR;
792 else
793 cmdreg &= ~(DDIR);
794 }
795
796 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530797 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100798
Adrian Hunterb4175772010-05-26 14:42:06 -0700799 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700800
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100801 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
802 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
803}
804
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200805static int
Denis Karpov70a33412009-09-22 16:44:59 -0700806omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200807{
808 if (data->flags & MMC_DATA_WRITE)
809 return DMA_TO_DEVICE;
810 else
811 return DMA_FROM_DEVICE;
812}
813
Russell Kingc5c98922012-04-13 12:14:39 +0100814static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
815 struct mmc_data *data)
816{
817 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
818}
819
Adrian Hunterb4175772010-05-26 14:42:06 -0700820static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
821{
822 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530823 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700824
Venkatraman S31463b12012-04-09 12:08:34 +0530825 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700826 host->req_in_progress = 0;
827 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530828 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700829
830 omap_hsmmc_disable_irq(host);
831 /* Do not complete the request if DMA is still in progress */
832 if (mrq->data && host->use_dma && dma_ch != -1)
833 return;
834 host->mrq = NULL;
835 mmc_request_done(host->mmc, mrq);
836}
837
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100838/*
839 * Notify the transfer complete to MMC core
840 */
841static void
Denis Karpov70a33412009-09-22 16:44:59 -0700842omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100843{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200844 if (!data) {
845 struct mmc_request *mrq = host->mrq;
846
Adrian Hunter23050102009-09-22 16:44:57 -0700847 /* TC before CC from CMD6 - don't know why, but it happens */
848 if (host->cmd && host->cmd->opcode == 6 &&
849 host->response_busy) {
850 host->response_busy = 0;
851 return;
852 }
853
Adrian Hunterb4175772010-05-26 14:42:06 -0700854 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200855 return;
856 }
857
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100858 host->data = NULL;
859
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100860 if (!data->error)
861 data->bytes_xfered += data->blocks * (data->blksz);
862 else
863 data->bytes_xfered = 0;
864
Ming Leife852272012-06-22 18:49:35 +0800865 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700866 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800867 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100868 }
Ming Leife852272012-06-22 18:49:35 +0800869 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100870}
871
872/*
873 * Notify the core about command completion
874 */
875static void
Denis Karpov70a33412009-09-22 16:44:59 -0700876omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100877{
878 host->cmd = NULL;
879
880 if (cmd->flags & MMC_RSP_PRESENT) {
881 if (cmd->flags & MMC_RSP_136) {
882 /* response type 2 */
883 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
884 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
885 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
886 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
887 } else {
888 /* response types 1, 1b, 3, 4, 5, 6 */
889 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
890 }
891 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700892 if ((host->data == NULL && !host->response_busy) || cmd->error)
893 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100894}
895
896/*
897 * DMA clean up for command errors
898 */
Denis Karpov70a33412009-09-22 16:44:59 -0700899static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100900{
Adrian Hunterb4175772010-05-26 14:42:06 -0700901 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530902 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700903
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200904 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100905
Venkatraman S31463b12012-04-09 12:08:34 +0530906 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700907 dma_ch = host->dma_ch;
908 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530909 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700910
911 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100912 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
913
914 dmaengine_terminate_all(chan);
915 dma_unmap_sg(chan->device->dev,
916 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700917 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +0100918
Per Forlin053bf342011-11-07 21:55:11 +0530919 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100920 }
921 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100922}
923
924/*
925 * Readable error output
926 */
927#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300928static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100929{
930 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700931 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300932 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
933 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
934 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
935 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100936 };
937 char res[256];
938 char *buf = res;
939 int len, i;
940
941 len = sprintf(buf, "MMC IRQ 0x%x :", status);
942 buf += len;
943
Denis Karpov70a33412009-09-22 16:44:59 -0700944 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100945 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700946 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100947 buf += len;
948 }
949
Venkatraman S8986d312012-08-07 19:10:38 +0530950 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100951}
Adrian Hunter699b9582011-05-06 12:14:01 +0300952#else
953static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
954 u32 status)
955{
956}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100957#endif /* CONFIG_MMC_DEBUG */
958
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100959/*
960 * MMC controller internal state machines reset
961 *
962 * Used to reset command or data internal state machines, using respectively
963 * SRC or SRD bit of SYSCTL register
964 * Can be called from interrupt context
965 */
Denis Karpov70a33412009-09-22 16:44:59 -0700966static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
967 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100968{
969 unsigned long i = 0;
970 unsigned long limit = (loops_per_jiffy *
971 msecs_to_jiffies(MMC_TIMEOUT_MS));
972
973 OMAP_HSMMC_WRITE(host->base, SYSCTL,
974 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
975
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700976 /*
977 * OMAP4 ES2 and greater has an updated reset logic.
978 * Monitor a 0->1 transition first
979 */
980 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -0500981 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700982 && (i++ < limit))
983 cpu_relax();
984 }
985 i = 0;
986
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100987 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
988 (i++ < limit))
989 cpu_relax();
990
991 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
992 dev_err(mmc_dev(host->mmc),
993 "Timeout waiting on controller reset in %s\n",
994 __func__);
995}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100996
Balaji T K25e18972012-11-19 21:59:55 +0530997static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
998 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +0530999{
Balaji T K25e18972012-11-19 21:59:55 +05301000 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301001 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301002 if (host->cmd)
1003 host->cmd->error = err;
1004 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301005
1006 if (host->data) {
1007 omap_hsmmc_reset_controller_fsm(host, SRD);
1008 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301009 } else if (host->mrq && host->mrq->cmd)
1010 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301011}
1012
Adrian Hunterb4175772010-05-26 14:42:06 -07001013static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001014{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001015 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001016 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001017
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001018 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301019 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001020
Venkatraman Sa7e96872012-11-19 22:00:01 +05301021 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001022 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001023
Venkatraman Sa7e96872012-11-19 22:00:01 +05301024 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301025 end_cmd = 1;
Venkatraman Sa7e96872012-11-19 22:00:01 +05301026 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301027 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301028 else if (status & (CCRC_EN | DCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301029 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1030
Venkatraman Sae4bf782012-08-09 20:36:07 +05301031 if (host->data || host->response_busy) {
Balaji T K25e18972012-11-19 21:59:55 +05301032 end_trans = !end_cmd;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301033 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001034 }
1035 }
1036
Francesco Lavra7472bab2013-06-29 08:25:12 +02001037 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301038 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001039 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301040 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001041 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001042}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001043
Adrian Hunterb4175772010-05-26 14:42:06 -07001044/*
1045 * MMC controller IRQ handler
1046 */
1047static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1048{
1049 struct omap_hsmmc_host *host = dev_id;
1050 int status;
1051
1052 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301053 while (status & INT_EN_MASK && host->req_in_progress) {
Adrian Hunterb4175772010-05-26 14:42:06 -07001054 omap_hsmmc_do_irq(host, status);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301055
Adrian Hunterb4175772010-05-26 14:42:06 -07001056 /* Flush posted write */
1057 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301058 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001059
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001060 return IRQ_HANDLED;
1061}
1062
Denis Karpov70a33412009-09-22 16:44:59 -07001063static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001064{
1065 unsigned long i;
1066
1067 OMAP_HSMMC_WRITE(host->base, HCTL,
1068 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1069 for (i = 0; i < loops_per_jiffy; i++) {
1070 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1071 break;
1072 cpu_relax();
1073 }
1074}
1075
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001076/*
David Brownelleb250822009-02-17 14:49:01 -08001077 * Switch MMC interface voltage ... only relevant for MMC1.
1078 *
1079 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1080 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1081 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001082 */
Denis Karpov70a33412009-09-22 16:44:59 -07001083static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001084{
1085 u32 reg_val = 0;
1086 int ret;
1087
1088 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301089 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301090 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301091 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001092
1093 /* Turn the power off */
1094 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001095
1096 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001097 if (!ret)
1098 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1099 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301100 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301101 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301102 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001103
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001104 if (ret != 0)
1105 goto err;
1106
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001107 OMAP_HSMMC_WRITE(host->base, HCTL,
1108 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1109 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001110
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001111 /*
1112 * If a MMC dual voltage card is detected, the set_ios fn calls
1113 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001114 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001115 *
David Brownelleb250822009-02-17 14:49:01 -08001116 * Cope with a bit of slop in the range ... per data sheets:
1117 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1118 * but recommended values are 1.71V to 1.89V
1119 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1120 * but recommended values are 2.7V to 3.3V
1121 *
1122 * Board setup code shouldn't permit anything very out-of-range.
1123 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1124 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001125 */
David Brownelleb250822009-02-17 14:49:01 -08001126 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001127 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001128 else
1129 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001130
1131 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001132 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001133
1134 return 0;
1135err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301136 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001137 return ret;
1138}
1139
Adrian Hunterb62f6222009-09-22 16:45:01 -07001140/* Protect the card while the cover is open */
1141static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1142{
1143 if (!mmc_slot(host).get_cover_state)
1144 return;
1145
1146 host->reqs_blocked = 0;
1147 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1148 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301149 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001150 "card is now accessible\n",
1151 mmc_hostname(host->mmc));
1152 host->protect_card = 0;
1153 }
1154 } else {
1155 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301156 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001157 "card is now inaccessible\n",
1158 mmc_hostname(host->mmc));
1159 host->protect_card = 1;
1160 }
1161 }
1162}
1163
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001164/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001165 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001166 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001167static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001168{
NeilBrown7efab4f2011-12-30 12:35:13 +11001169 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001170 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001171 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001172
Adrian Huntera6b22402009-09-22 16:44:45 -07001173 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001174 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001175
1176 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001177
Denis Karpov191d1f12009-09-22 16:44:55 -07001178 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001179 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001180 else {
1181 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001182 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001183 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001184
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001185 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001186 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001187 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001188 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001189 return IRQ_HANDLED;
1190}
1191
Russell Kingc5c98922012-04-13 12:14:39 +01001192static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001193{
Russell Kingc5c98922012-04-13 12:14:39 +01001194 struct omap_hsmmc_host *host = param;
1195 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001196 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001197 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001198
Russell Kingc5c98922012-04-13 12:14:39 +01001199 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001200 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001201 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001202 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001203 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001204
Adrian Hunter770d7432011-05-06 12:14:11 +03001205 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001206 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001207 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001208 dma_unmap_sg(chan->device->dev,
1209 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001210 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001211
1212 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001213 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001214 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001215
1216 /* If DMA has finished after TC, complete the request */
1217 if (!req_in_progress) {
1218 struct mmc_request *mrq = host->mrq;
1219
1220 host->mrq = NULL;
1221 mmc_request_done(host->mmc, mrq);
1222 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001223}
1224
Per Forlin9782aff2011-07-01 18:55:23 +02001225static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1226 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001227 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001228 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001229{
1230 int dma_len;
1231
1232 if (!next && data->host_cookie &&
1233 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301234 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001235 " host->next_data.cookie %d\n",
1236 __func__, data->host_cookie, host->next_data.cookie);
1237 data->host_cookie = 0;
1238 }
1239
1240 /* Check if next job is already prepared */
1241 if (next ||
1242 (!next && data->host_cookie != host->next_data.cookie)) {
Russell King26b88522012-04-13 12:27:37 +01001243 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001244 omap_hsmmc_get_dma_dir(host, data));
1245
1246 } else {
1247 dma_len = host->next_data.dma_len;
1248 host->next_data.dma_len = 0;
1249 }
1250
1251
1252 if (dma_len == 0)
1253 return -EINVAL;
1254
1255 if (next) {
1256 next->dma_len = dma_len;
1257 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1258 } else
1259 host->dma_len = dma_len;
1260
1261 return 0;
1262}
1263
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001264/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001265 * Routine to configure and start DMA for the MMC card
1266 */
Denis Karpov70a33412009-09-22 16:44:59 -07001267static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1268 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001269{
Russell King26b88522012-04-13 12:27:37 +01001270 struct dma_slave_config cfg;
1271 struct dma_async_tx_descriptor *tx;
1272 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001273 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001274 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001275
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001276 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001277 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001278 struct scatterlist *sgl;
1279
1280 sgl = data->sg + i;
1281 if (sgl->length % data->blksz)
1282 return -EINVAL;
1283 }
1284 if ((data->blksz % 4) != 0)
1285 /* REVISIT: The MMC buffer increments only when MSB is written.
1286 * Return error for blksz which is non multiple of four.
1287 */
1288 return -EINVAL;
1289
Adrian Hunterb4175772010-05-26 14:42:06 -07001290 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001291
Russell Kingc5c98922012-04-13 12:14:39 +01001292 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001293
Russell King26b88522012-04-13 12:27:37 +01001294 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1295 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1296 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1297 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1298 cfg.src_maxburst = data->blksz / 4;
1299 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001300
Russell King26b88522012-04-13 12:27:37 +01001301 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001302 if (ret)
1303 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001304
Russell King26b88522012-04-13 12:27:37 +01001305 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1306 if (ret)
1307 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001308
Russell King26b88522012-04-13 12:27:37 +01001309 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1310 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1311 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1312 if (!tx) {
1313 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1314 /* FIXME: cleanup */
1315 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001316 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001317
Russell King26b88522012-04-13 12:27:37 +01001318 tx->callback = omap_hsmmc_dma_callback;
1319 tx->callback_param = host;
1320
1321 /* Does not fail */
1322 dmaengine_submit(tx);
1323
1324 host->dma_ch = 1;
1325
1326 dma_async_issue_pending(chan);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001327
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001328 return 0;
1329}
1330
Denis Karpov70a33412009-09-22 16:44:59 -07001331static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001332 unsigned int timeout_ns,
1333 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001334{
1335 unsigned int timeout, cycle_ns;
1336 uint32_t reg, clkd, dto = 0;
1337
1338 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1339 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1340 if (clkd == 0)
1341 clkd = 1;
1342
1343 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001344 timeout = timeout_ns / cycle_ns;
1345 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001346 if (timeout) {
1347 while ((timeout & 0x80000000) == 0) {
1348 dto += 1;
1349 timeout <<= 1;
1350 }
1351 dto = 31 - dto;
1352 timeout <<= 1;
1353 if (timeout && dto)
1354 dto += 1;
1355 if (dto >= 13)
1356 dto -= 13;
1357 else
1358 dto = 0;
1359 if (dto > 14)
1360 dto = 14;
1361 }
1362
1363 reg &= ~DTO_MASK;
1364 reg |= dto << DTO_SHIFT;
1365 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1366}
1367
1368/*
1369 * Configure block length for MMC/SD cards and initiate the transfer.
1370 */
1371static int
Denis Karpov70a33412009-09-22 16:44:59 -07001372omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001373{
1374 int ret;
1375 host->data = req->data;
1376
1377 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001378 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001379 /*
1380 * Set an arbitrary 100ms data timeout for commands with
1381 * busy signal.
1382 */
1383 if (req->cmd->flags & MMC_RSP_BUSY)
1384 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001385 return 0;
1386 }
1387
1388 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1389 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001390 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001391
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001392 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001393 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001394 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301395 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001396 return ret;
1397 }
1398 }
1399 return 0;
1400}
1401
Per Forlin9782aff2011-07-01 18:55:23 +02001402static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1403 int err)
1404{
1405 struct omap_hsmmc_host *host = mmc_priv(mmc);
1406 struct mmc_data *data = mrq->data;
1407
Russell King26b88522012-04-13 12:27:37 +01001408 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001409 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001410
Russell King26b88522012-04-13 12:27:37 +01001411 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1412 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001413 data->host_cookie = 0;
1414 }
1415}
1416
1417static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1418 bool is_first_req)
1419{
1420 struct omap_hsmmc_host *host = mmc_priv(mmc);
1421
1422 if (mrq->data->host_cookie) {
1423 mrq->data->host_cookie = 0;
1424 return ;
1425 }
1426
Russell Kingc5c98922012-04-13 12:14:39 +01001427 if (host->use_dma) {
1428 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001429
Per Forlin9782aff2011-07-01 18:55:23 +02001430 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001431 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001432 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001433 }
Per Forlin9782aff2011-07-01 18:55:23 +02001434}
1435
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001436/*
1437 * Request function. for read/write operation
1438 */
Denis Karpov70a33412009-09-22 16:44:59 -07001439static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001440{
Denis Karpov70a33412009-09-22 16:44:59 -07001441 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001442 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001443
Adrian Hunterb4175772010-05-26 14:42:06 -07001444 BUG_ON(host->req_in_progress);
1445 BUG_ON(host->dma_ch != -1);
1446 if (host->protect_card) {
1447 if (host->reqs_blocked < 3) {
1448 /*
1449 * Ensure the controller is left in a consistent
1450 * state by resetting the command and data state
1451 * machines.
1452 */
1453 omap_hsmmc_reset_controller_fsm(host, SRD);
1454 omap_hsmmc_reset_controller_fsm(host, SRC);
1455 host->reqs_blocked += 1;
1456 }
1457 req->cmd->error = -EBADF;
1458 if (req->data)
1459 req->data->error = -EBADF;
1460 req->cmd->retries = 0;
1461 mmc_request_done(mmc, req);
1462 return;
1463 } else if (host->reqs_blocked)
1464 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001465 WARN_ON(host->mrq != NULL);
1466 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001467 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001468 if (err) {
1469 req->cmd->error = err;
1470 if (req->data)
1471 req->data->error = err;
1472 host->mrq = NULL;
1473 mmc_request_done(mmc, req);
1474 return;
1475 }
1476
Denis Karpov70a33412009-09-22 16:44:59 -07001477 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001478}
1479
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001480/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001481static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001482{
Denis Karpov70a33412009-09-22 16:44:59 -07001483 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001484 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001485
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301486 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001487
Adrian Huntera3621462009-09-22 16:44:42 -07001488 if (ios->power_mode != host->power_mode) {
1489 switch (ios->power_mode) {
1490 case MMC_POWER_OFF:
1491 mmc_slot(host).set_power(host->dev, host->slot_id,
1492 0, 0);
1493 break;
1494 case MMC_POWER_UP:
1495 mmc_slot(host).set_power(host->dev, host->slot_id,
1496 1, ios->vdd);
1497 break;
1498 case MMC_POWER_ON:
1499 do_send_init_stream = 1;
1500 break;
1501 }
1502 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001503 }
1504
Denis Karpovdd498ef2009-09-22 16:44:49 -07001505 /* FIXME: set registers based only on changes to ios */
1506
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001507 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001508
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301509 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001510 /* Only MMC1 can interface at 3V without some flavor
1511 * of external transceiver; but they all handle 1.8V.
1512 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001513 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301514 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1515 /*
1516 * With pbias cell programming missing, this
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301517 * can't be allowed on MMC1 when booting with device
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301518 * tree.
1519 */
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301520 !host->pbias_disable) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001521 /*
1522 * The mmc_select_voltage fn of the core does
1523 * not seem to set the power_mode to
1524 * MMC_POWER_UP upon recalculating the voltage.
1525 * vdd 1.8v.
1526 */
Denis Karpov70a33412009-09-22 16:44:59 -07001527 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1528 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001529 "Switch operation failed\n");
1530 }
1531 }
1532
Andy Shevchenko5934df22011-05-06 12:14:06 +03001533 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001534
Adrian Huntera3621462009-09-22 16:44:42 -07001535 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001536 send_init_stream(host);
1537
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001538 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001539
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301540 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001541}
1542
1543static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1544{
Denis Karpov70a33412009-09-22 16:44:59 -07001545 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001546
Denis Karpov191d1f12009-09-22 16:44:55 -07001547 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001548 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001549 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001550}
1551
1552static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1553{
Denis Karpov70a33412009-09-22 16:44:59 -07001554 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001555
Denis Karpov191d1f12009-09-22 16:44:55 -07001556 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001557 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001558 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001559}
1560
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001561static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1562{
1563 struct omap_hsmmc_host *host = mmc_priv(mmc);
1564
1565 if (mmc_slot(host).init_card)
1566 mmc_slot(host).init_card(card);
1567}
1568
Denis Karpov70a33412009-09-22 16:44:59 -07001569static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001570{
1571 u32 hctl, capa, value;
1572
1573 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301574 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001575 hctl = SDVS30;
1576 capa = VS30 | VS18;
1577 } else {
1578 hctl = SDVS18;
1579 capa = VS18;
1580 }
1581
1582 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1583 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1584
1585 value = OMAP_HSMMC_READ(host->base, CAPA);
1586 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1587
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001588 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001589 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001590}
1591
Denis Karpov70a33412009-09-22 16:44:59 -07001592static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001593{
Denis Karpov70a33412009-09-22 16:44:59 -07001594 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001595
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301596 pm_runtime_get_sync(host->dev);
1597
Denis Karpovdd498ef2009-09-22 16:44:49 -07001598 return 0;
1599}
1600
Adrian Hunter907d2e72012-02-29 09:17:21 +02001601static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001602{
Denis Karpov70a33412009-09-22 16:44:59 -07001603 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001604
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301605 pm_runtime_mark_last_busy(host->dev);
1606 pm_runtime_put_autosuspend(host->dev);
1607
Denis Karpovdd498ef2009-09-22 16:44:49 -07001608 return 0;
1609}
1610
Denis Karpov70a33412009-09-22 16:44:59 -07001611static const struct mmc_host_ops omap_hsmmc_ops = {
1612 .enable = omap_hsmmc_enable_fclk,
1613 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001614 .post_req = omap_hsmmc_post_req,
1615 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001616 .request = omap_hsmmc_request,
1617 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001618 .get_cd = omap_hsmmc_get_cd,
1619 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001620 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001621 /* NYET -- enable_sdio_irq */
1622};
1623
Denis Karpovd900f712009-09-22 16:44:38 -07001624#ifdef CONFIG_DEBUG_FS
1625
Denis Karpov70a33412009-09-22 16:44:59 -07001626static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001627{
1628 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001629 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001630
Tony Lindgren0a82e062013-10-21 00:25:19 +05301631 seq_printf(s, "mmc%d:\n ctx_loss:\t%d\n\nregs:\n",
1632 mmc->index, host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001633
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301634 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001635 seq_printf(s, "host suspended, can't read registers\n");
1636 return 0;
1637 }
1638
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301639 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001640
Denis Karpovd900f712009-09-22 16:44:38 -07001641 seq_printf(s, "CON:\t\t0x%08x\n",
1642 OMAP_HSMMC_READ(host->base, CON));
1643 seq_printf(s, "HCTL:\t\t0x%08x\n",
1644 OMAP_HSMMC_READ(host->base, HCTL));
1645 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1646 OMAP_HSMMC_READ(host->base, SYSCTL));
1647 seq_printf(s, "IE:\t\t0x%08x\n",
1648 OMAP_HSMMC_READ(host->base, IE));
1649 seq_printf(s, "ISE:\t\t0x%08x\n",
1650 OMAP_HSMMC_READ(host->base, ISE));
1651 seq_printf(s, "CAPA:\t\t0x%08x\n",
1652 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001653
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301654 pm_runtime_mark_last_busy(host->dev);
1655 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001656
Denis Karpovd900f712009-09-22 16:44:38 -07001657 return 0;
1658}
1659
Denis Karpov70a33412009-09-22 16:44:59 -07001660static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001661{
Denis Karpov70a33412009-09-22 16:44:59 -07001662 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001663}
1664
1665static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001666 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001667 .read = seq_read,
1668 .llseek = seq_lseek,
1669 .release = single_release,
1670};
1671
Denis Karpov70a33412009-09-22 16:44:59 -07001672static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001673{
1674 if (mmc->debugfs_root)
1675 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1676 mmc, &mmc_regs_fops);
1677}
1678
1679#else
1680
Denis Karpov70a33412009-09-22 16:44:59 -07001681static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001682{
1683}
1684
1685#endif
1686
Rajendra Nayak46856a62012-03-12 20:32:37 +05301687#ifdef CONFIG_OF
1688static u16 omap4_reg_offset = 0x100;
1689
1690static const struct of_device_id omap_mmc_of_match[] = {
1691 {
1692 .compatible = "ti,omap2-hsmmc",
1693 },
1694 {
1695 .compatible = "ti,omap3-hsmmc",
1696 },
1697 {
1698 .compatible = "ti,omap4-hsmmc",
1699 .data = &omap4_reg_offset,
1700 },
1701 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001702};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301703MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1704
1705static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1706{
1707 struct omap_mmc_platform_data *pdata;
1708 struct device_node *np = dev->of_node;
Daniel Mackd8714e82012-10-15 21:35:06 +05301709 u32 bus_width, max_freq;
Jan Luebbedc642c22013-01-30 10:07:17 +01001710 int cd_gpio, wp_gpio;
1711
1712 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1713 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1714 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1715 return ERR_PTR(-EPROBE_DEFER);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301716
1717 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1718 if (!pdata)
1719 return NULL; /* out of memory */
1720
1721 if (of_find_property(np, "ti,dual-volt", NULL))
1722 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1723
1724 /* This driver only supports 1 slot */
1725 pdata->nr_slots = 1;
Jan Luebbedc642c22013-01-30 10:07:17 +01001726 pdata->slots[0].switch_pin = cd_gpio;
1727 pdata->slots[0].gpio_wp = wp_gpio;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301728
1729 if (of_find_property(np, "ti,non-removable", NULL)) {
1730 pdata->slots[0].nonremovable = true;
1731 pdata->slots[0].no_regulator_off_init = true;
1732 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001733 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301734 if (bus_width == 4)
1735 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1736 else if (bus_width == 8)
1737 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1738
1739 if (of_find_property(np, "ti,needs-special-reset", NULL))
1740 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1741
Daniel Mackd8714e82012-10-15 21:35:06 +05301742 if (!of_property_read_u32(np, "max-frequency", &max_freq))
1743 pdata->max_freq = max_freq;
1744
Hebbar, Gururajacd587092012-11-19 21:59:58 +05301745 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
1746 pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
1747
Rajendra Nayak46856a62012-03-12 20:32:37 +05301748 return pdata;
1749}
1750#else
1751static inline struct omap_mmc_platform_data
1752 *of_get_hsmmc_pdata(struct device *dev)
1753{
1754 return NULL;
1755}
1756#endif
1757
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001758static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001759{
1760 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1761 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001762 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001763 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001764 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301765 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001766 dma_cap_mask_t mask;
1767 unsigned tx_req, rx_req;
Daniel Mack46b76032012-10-15 21:35:05 +05301768 struct pinctrl *pinctrl;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301769
1770 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1771 if (match) {
1772 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01001773
1774 if (IS_ERR(pdata))
1775 return PTR_ERR(pdata);
1776
Rajendra Nayak46856a62012-03-12 20:32:37 +05301777 if (match->data) {
Uwe Kleine-Königefc9b732012-05-21 21:57:39 +02001778 const u16 *offsetp = match->data;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301779 pdata->reg_offset = *offsetp;
1780 }
1781 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001782
1783 if (pdata == NULL) {
1784 dev_err(&pdev->dev, "Platform Data is missing\n");
1785 return -ENXIO;
1786 }
1787
1788 if (pdata->nr_slots == 0) {
1789 dev_err(&pdev->dev, "No Slots\n");
1790 return -ENXIO;
1791 }
1792
1793 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1794 irq = platform_get_irq(pdev, 0);
1795 if (res == NULL || irq < 0)
1796 return -ENXIO;
1797
Chris Ball984b2032011-03-22 16:34:42 -07001798 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001799 if (res == NULL)
1800 return -EBUSY;
1801
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001802 ret = omap_hsmmc_gpio_init(pdata);
1803 if (ret)
1804 goto err;
1805
Denis Karpov70a33412009-09-22 16:44:59 -07001806 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001807 if (!mmc) {
1808 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001809 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001810 }
1811
1812 host = mmc_priv(mmc);
1813 host->mmc = mmc;
1814 host->pdata = pdata;
1815 host->dev = &pdev->dev;
1816 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001817 host->dma_ch = -1;
1818 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001819 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301820 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001821 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001822 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001823 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001824
1825 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001826
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301827 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001828
Adrian Huntere0eb2422010-02-15 10:03:34 -08001829 /*
1830 * If regulator_disable can only put vcc_aux to sleep then there is
1831 * no off state.
1832 */
1833 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1834 mmc_slot(host).no_off = 1;
1835
Daniel Mackd418ed82012-02-19 13:20:33 +01001836 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1837
1838 if (pdata->max_freq > 0)
1839 mmc->f_max = pdata->max_freq;
1840 else
1841 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001842
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001843 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001844
Russell King6f7607c2009-01-28 10:22:50 +00001845 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001846 if (IS_ERR(host->fclk)) {
1847 ret = PTR_ERR(host->fclk);
1848 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001849 goto err1;
1850 }
1851
Paul Walmsley9b682562011-10-06 14:50:35 -06001852 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1853 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1854 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1855 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001856
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301857 pm_runtime_enable(host->dev);
1858 pm_runtime_get_sync(host->dev);
1859 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1860 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001861
Balaji T K92a3aeb2012-02-24 21:14:34 +05301862 omap_hsmmc_context_save(host);
1863
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301864 /* This can be removed once we support PBIAS with DT */
Balaji T Ke0022642013-10-21 00:25:18 +05301865 if (host->dev->of_node && res->start == 0x4809c000)
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301866 host->pbias_disable = 1;
1867
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301868 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1869 /*
1870 * MMC can still work without debounce clock.
1871 */
1872 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301873 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05301874 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301875 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1876 clk_put(host->dbclk);
1877 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001878 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001879
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001880 /* Since we do only SG emulation, we can have as many segs
1881 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001882 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001883
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001884 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1885 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1886 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1887 mmc->max_seg_size = mmc->max_req_size;
1888
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001889 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001890 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001891
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001892 mmc->caps |= mmc_slot(host).caps;
1893 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001894 mmc->caps |= MMC_CAP_4_BIT_DATA;
1895
Denis Karpov191d1f12009-09-22 16:44:55 -07001896 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001897 mmc->caps |= MMC_CAP_NONREMOVABLE;
1898
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001899 mmc->pm_caps = mmc_slot(host).pm_caps;
1900
Denis Karpov70a33412009-09-22 16:44:59 -07001901 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001902
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301903 if (!pdev->dev.of_node) {
1904 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1905 if (!res) {
1906 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
1907 ret = -ENXIO;
1908 goto err_irq;
1909 }
1910 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001911
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301912 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1913 if (!res) {
1914 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1915 ret = -ENXIO;
1916 goto err_irq;
1917 }
1918 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001919 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001920
Russell King26b88522012-04-13 12:27:37 +01001921 dma_cap_zero(mask);
1922 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001923
Matt Porterd272fbf2013-05-10 17:42:34 +05301924 host->rx_chan =
1925 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1926 &rx_req, &pdev->dev, "rx");
1927
Russell King26b88522012-04-13 12:27:37 +01001928 if (!host->rx_chan) {
1929 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001930 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001931 goto err_irq;
1932 }
1933
Matt Porterd272fbf2013-05-10 17:42:34 +05301934 host->tx_chan =
1935 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1936 &tx_req, &pdev->dev, "tx");
1937
Russell King26b88522012-04-13 12:27:37 +01001938 if (!host->tx_chan) {
1939 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001940 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001941 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001942 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001943
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001944 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001945 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001946 mmc_hostname(mmc), host);
1947 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301948 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001949 goto err_irq;
1950 }
1951
1952 if (pdata->init != NULL) {
1953 if (pdata->init(&pdev->dev) != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301954 dev_err(mmc_dev(host->mmc),
Denis Karpov70a33412009-09-22 16:44:59 -07001955 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001956 goto err_irq_cd_init;
1957 }
1958 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001959
Adrian Hunterb702b102010-02-15 10:03:35 -08001960 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001961 ret = omap_hsmmc_reg_get(host);
1962 if (ret)
1963 goto err_reg;
1964 host->use_reg = 1;
1965 }
1966
David Brownellb583f262009-05-28 14:04:03 -07001967 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001968
1969 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001970 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001971 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1972 NULL,
1973 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08001974 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11001975 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001976 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301977 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001978 "Unable to grab MMC CD IRQ\n");
1979 goto err_irq_cd;
1980 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001981 pdata->suspend = omap_hsmmc_suspend_cdirq;
1982 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001983 }
1984
Adrian Hunterb4175772010-05-26 14:42:06 -07001985 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001986
Daniel Mack46b76032012-10-15 21:35:05 +05301987 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1988 if (IS_ERR(pinctrl))
1989 dev_warn(&pdev->dev,
1990 "pins are not configured from the driver\n");
1991
Adrian Hunterb62f6222009-09-22 16:45:01 -07001992 omap_hsmmc_protect_card(host);
1993
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001994 mmc_add_host(mmc);
1995
Denis Karpov191d1f12009-09-22 16:44:55 -07001996 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001997 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1998 if (ret < 0)
1999 goto err_slot_name;
2000 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002001 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002002 ret = device_create_file(&mmc->class_dev,
2003 &dev_attr_cover_switch);
2004 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002005 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002006 }
2007
Denis Karpov70a33412009-09-22 16:44:59 -07002008 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302009 pm_runtime_mark_last_busy(host->dev);
2010 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002011
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002012 return 0;
2013
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002014err_slot_name:
2015 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002016 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002017err_irq_cd:
2018 if (host->use_reg)
2019 omap_hsmmc_reg_put(host);
2020err_reg:
2021 if (host->pdata->cleanup)
2022 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002023err_irq_cd_init:
2024 free_irq(host->irq, host);
2025err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002026 if (host->tx_chan)
2027 dma_release_channel(host->tx_chan);
2028 if (host->rx_chan)
2029 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302030 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002031 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002032 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302033 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302034 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002035 clk_put(host->dbclk);
2036 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002037err1:
2038 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002039 mmc_free_host(mmc);
2040err_alloc:
2041 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002042err:
Russell King48b332f2012-04-18 11:11:57 +01002043 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2044 if (res)
2045 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002046 return ret;
2047}
2048
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002049static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002050{
Denis Karpov70a33412009-09-22 16:44:59 -07002051 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002052 struct resource *res;
2053
Felipe Balbi927ce942012-03-14 11:18:27 +02002054 pm_runtime_get_sync(host->dev);
2055 mmc_remove_host(host->mmc);
2056 if (host->use_reg)
2057 omap_hsmmc_reg_put(host);
2058 if (host->pdata->cleanup)
2059 host->pdata->cleanup(&pdev->dev);
2060 free_irq(host->irq, host);
2061 if (mmc_slot(host).card_detect_irq)
2062 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002063
Russell Kingc5c98922012-04-13 12:14:39 +01002064 if (host->tx_chan)
2065 dma_release_channel(host->tx_chan);
2066 if (host->rx_chan)
2067 dma_release_channel(host->rx_chan);
2068
Felipe Balbi927ce942012-03-14 11:18:27 +02002069 pm_runtime_put_sync(host->dev);
2070 pm_runtime_disable(host->dev);
2071 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302072 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302073 clk_disable_unprepare(host->dbclk);
Felipe Balbi927ce942012-03-14 11:18:27 +02002074 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002075 }
2076
Balaji T K9ea28ec2012-10-15 21:35:08 +05302077 omap_hsmmc_gpio_free(host->pdata);
Felipe Balbi927ce942012-03-14 11:18:27 +02002078 iounmap(host->base);
Balaji T K9d1f0282012-10-15 21:35:07 +05302079 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002080
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002081 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2082 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002083 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002084
2085 return 0;
2086}
2087
2088#ifdef CONFIG_PM
Felipe Balbia48ce882012-11-19 21:59:59 +05302089static int omap_hsmmc_prepare(struct device *dev)
2090{
2091 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2092
2093 if (host->pdata->suspend)
2094 return host->pdata->suspend(dev, host->slot_id);
2095
2096 return 0;
2097}
2098
2099static void omap_hsmmc_complete(struct device *dev)
2100{
2101 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2102
2103 if (host->pdata->resume)
2104 host->pdata->resume(dev, host->slot_id);
2105
2106}
2107
Kevin Hilmana791daa2010-05-26 14:42:07 -07002108static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002109{
2110 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002111 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2112
2113 if (!host)
2114 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002115
2116 if (host && host->suspended)
2117 return 0;
2118
Felipe Balbi927ce942012-03-14 11:18:27 +02002119 pm_runtime_get_sync(host->dev);
2120 host->suspended = 1;
Felipe Balbi927ce942012-03-14 11:18:27 +02002121 ret = mmc_suspend_host(host->mmc);
2122
2123 if (ret) {
2124 host->suspended = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002125 goto err;
2126 }
2127
2128 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2129 omap_hsmmc_disable_irq(host);
2130 OMAP_HSMMC_WRITE(host->base, HCTL,
2131 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2132 }
2133
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302134 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302135 clk_disable_unprepare(host->dbclk);
Eliad Peller31f9d462011-11-22 16:02:17 +02002136err:
2137 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002138 return ret;
2139}
2140
2141/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002142static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002143{
2144 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002145 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2146
2147 if (!host)
2148 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002149
2150 if (host && !host->suspended)
2151 return 0;
2152
Felipe Balbi927ce942012-03-14 11:18:27 +02002153 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002154
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302155 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302156 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002157
Felipe Balbi927ce942012-03-14 11:18:27 +02002158 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2159 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002160
Felipe Balbi927ce942012-03-14 11:18:27 +02002161 omap_hsmmc_protect_card(host);
2162
2163 /* Notify the core to resume the host */
2164 ret = mmc_resume_host(host->mmc);
2165 if (ret == 0)
2166 host->suspended = 0;
2167
2168 pm_runtime_mark_last_busy(host->dev);
2169 pm_runtime_put_autosuspend(host->dev);
2170
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002171 return ret;
2172
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");