blob: fedd258cc4ea2effe547f1fc15729f60277d8c33 [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>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010024#include <linux/interrupt.h>
25#include <linux/delay.h>
26#include <linux/dma-mapping.h>
27#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010028#include <linux/timer.h>
29#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053030#include <linux/of.h>
31#include <linux/of_gpio.h>
32#include <linux/of_device.h>
Russell King3451c062012-04-21 22:35:42 +010033#include <linux/omap-dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010034#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070035#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070036#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010037#include <linux/io.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080038#include <linux/gpio.h>
39#include <linux/regulator/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053040#include <linux/pm_runtime.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010041#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070042#include <plat/mmc.h>
43#include <plat/cpu.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)
65#define SDVS18 (0x5 << 9)
66#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080067#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010068#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010069#define SDVSCLR 0xFFFFF1FF
70#define SDVSDET 0x00000400
71#define AUTOIDLE 0x1
72#define SDBP (1 << 8)
73#define DTO 0xe
74#define ICE 0x1
75#define ICS 0x2
76#define CEN (1 << 2)
77#define CLKD_MASK 0x0000FFC0
78#define CLKD_SHIFT 6
79#define DTO_MASK 0x000F0000
80#define DTO_SHIFT 16
81#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070082#define BWR_ENABLE (1 << 4)
83#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070084#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010085#define INIT_STREAM (1 << 1)
86#define DP_SELECT (1 << 21)
87#define DDIR (1 << 4)
88#define DMA_EN 0x1
89#define MSBS (1 << 5)
90#define BCE (1 << 1)
91#define FOUR_BIT (1 << 1)
Balaji T K03b5d9242012-04-09 12:08:33 +053092#define DDR (1 << 19)
Jarkko Lavinen73153012008-11-21 16:49:54 +020093#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010094#define CC 0x1
95#define TC 0x02
96#define OD 0x1
97#define ERR (1 << 15)
98#define CMD_TIMEOUT (1 << 16)
99#define DATA_TIMEOUT (1 << 20)
100#define CMD_CRC (1 << 17)
101#define DATA_CRC (1 << 21)
102#define CARD_ERR (1 << 28)
103#define STAT_CLEAR 0xFFFFFFFF
104#define INIT_STREAM_CMD 0x00000000
105#define DUAL_VOLT_OCR_BIT 7
106#define SRC (1 << 25)
107#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700108#define SOFTRESET (1 << 1)
109#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100110
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530111#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100112#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400113#define OMAP_MMC_MIN_CLOCK 400000
114#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530115#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100116
117/*
118 * One controller can have multiple slots, like on some omap boards using
119 * omap.c controller driver. Luckily this is not currently done on any known
120 * omap_hsmmc.c device.
121 */
122#define mmc_slot(host) (host->pdata->slots[host->slot_id])
123
124/*
125 * MMC Host controller read/write API's
126 */
127#define OMAP_HSMMC_READ(base, reg) \
128 __raw_readl((base) + OMAP_HSMMC_##reg)
129
130#define OMAP_HSMMC_WRITE(base, reg, val) \
131 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
132
Per Forlin9782aff2011-07-01 18:55:23 +0200133struct omap_hsmmc_next {
134 unsigned int dma_len;
135 s32 cookie;
136};
137
Denis Karpov70a33412009-09-22 16:44:59 -0700138struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100139 struct device *dev;
140 struct mmc_host *mmc;
141 struct mmc_request *mrq;
142 struct mmc_command *cmd;
143 struct mmc_data *data;
144 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100145 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800146 /*
147 * vcc == configured supply
148 * vcc_aux == optional
149 * - MMC1, supply for DAT4..DAT7
150 * - MMC2/MMC2, external level shifter voltage supply, for
151 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
152 */
153 struct regulator *vcc;
154 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155 void __iomem *base;
156 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700157 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100158 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200159 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100160 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700161 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100162 int suspended;
163 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100164 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100165 struct dma_chan *tx_chan;
166 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100167 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200168 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700169 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700170 int protect_card;
171 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800172 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700173 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200174 struct omap_hsmmc_next next_data;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700175
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100176 struct omap_mmc_platform_data *pdata;
177};
178
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800179static int omap_hsmmc_card_detect(struct device *dev, int slot)
180{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530181 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
182 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800183
184 /* NOTE: assumes card detect signal is active-low */
185 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
186}
187
188static int omap_hsmmc_get_wp(struct device *dev, int slot)
189{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530190 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
191 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800192
193 /* NOTE: assumes write protect signal is active-high */
194 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
195}
196
197static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
198{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530199 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
200 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800201
202 /* NOTE: assumes card detect signal is active-low */
203 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
204}
205
206#ifdef CONFIG_PM
207
208static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
209{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530210 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
211 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800212
213 disable_irq(mmc->slots[0].card_detect_irq);
214 return 0;
215}
216
217static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
218{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530219 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
220 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800221
222 enable_irq(mmc->slots[0].card_detect_irq);
223 return 0;
224}
225
226#else
227
228#define omap_hsmmc_suspend_cdirq NULL
229#define omap_hsmmc_resume_cdirq NULL
230
231#endif
232
Adrian Hunterb702b102010-02-15 10:03:35 -0800233#ifdef CONFIG_REGULATOR
234
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500235static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800236 int vdd)
237{
238 struct omap_hsmmc_host *host =
239 platform_get_drvdata(to_platform_device(dev));
240 int ret = 0;
241
242 /*
243 * If we don't see a Vcc regulator, assume it's a fixed
244 * voltage always-on regulator.
245 */
246 if (!host->vcc)
247 return 0;
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530248 /*
249 * With DT, never turn OFF the regulator. This is because
250 * the pbias cell programming support is still missing when
251 * booting with Device tree
252 */
Rajendra Nayak4d048f92012-04-11 15:33:13 +0530253 if (dev->of_node && !vdd)
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530254 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800255
256 if (mmc_slot(host).before_set_reg)
257 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
258
259 /*
260 * Assume Vcc regulator is used only to power the card ... OMAP
261 * VDDS is used to power the pins, optionally with a transceiver to
262 * support cards using voltages other than VDDS (1.8V nominal). When a
263 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
264 *
265 * In some cases this regulator won't support enable/disable;
266 * e.g. it's a fixed rail for a WLAN chip.
267 *
268 * In other cases vcc_aux switches interface power. Example, for
269 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
270 * chips/cards need an interface voltage rail too.
271 */
272 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400273 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800274 /* Enable interface voltage rail, if needed */
275 if (ret == 0 && host->vcc_aux) {
276 ret = regulator_enable(host->vcc_aux);
277 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400278 ret = mmc_regulator_set_ocr(host->mmc,
279 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800280 }
281 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400282 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800283 if (host->vcc_aux)
284 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400285 if (!ret) {
286 /* Then proceed to shut down the local regulator */
287 ret = mmc_regulator_set_ocr(host->mmc,
288 host->vcc, 0);
289 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800290 }
291
292 if (mmc_slot(host).after_set_reg)
293 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
294
295 return ret;
296}
297
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800298static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
299{
300 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700301 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800302
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800303 reg = regulator_get(host->dev, "vmmc");
304 if (IS_ERR(reg)) {
305 dev_dbg(host->dev, "vmmc regulator missing\n");
NeilBrown1fdc90f2012-08-08 00:06:00 -0400306 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800307 } else {
NeilBrown1fdc90f2012-08-08 00:06:00 -0400308 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800309 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700310 ocr_value = mmc_regulator_get_ocrmask(reg);
311 if (!mmc_slot(host).ocr_mask) {
312 mmc_slot(host).ocr_mask = ocr_value;
313 } else {
314 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530315 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500316 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700317 mmc_slot(host).ocr_mask = 0;
318 return -EINVAL;
319 }
320 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800321
322 /* Allow an aux regulator */
323 reg = regulator_get(host->dev, "vmmc_aux");
324 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
325
Balaji T Kb1c1df72011-05-30 19:55:34 +0530326 /* For eMMC do not power off when not in sleep state */
327 if (mmc_slot(host).no_regulator_off_init)
328 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800329 /*
330 * UGLY HACK: workaround regulator framework bugs.
331 * When the bootloader leaves a supply active, it's
332 * initialized with zero usecount ... and we can't
333 * disable it without first enabling it. Until the
334 * framework is fixed, we need a workaround like this
335 * (which is safe for MMC, but not in general).
336 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300337 if (regulator_is_enabled(host->vcc) > 0 ||
338 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
339 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
340
341 mmc_slot(host).set_power(host->dev, host->slot_id,
342 1, vdd);
343 mmc_slot(host).set_power(host->dev, host->slot_id,
344 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800345 }
346 }
347
348 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800349}
350
351static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
352{
353 regulator_put(host->vcc);
354 regulator_put(host->vcc_aux);
355 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800356}
357
Adrian Hunterb702b102010-02-15 10:03:35 -0800358static inline int omap_hsmmc_have_reg(void)
359{
360 return 1;
361}
362
363#else
364
365static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
366{
367 return -EINVAL;
368}
369
370static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
371{
372}
373
374static inline int omap_hsmmc_have_reg(void)
375{
376 return 0;
377}
378
379#endif
380
381static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
382{
383 int ret;
384
385 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800386 if (pdata->slots[0].cover)
387 pdata->slots[0].get_cover_state =
388 omap_hsmmc_get_cover_state;
389 else
390 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
391 pdata->slots[0].card_detect_irq =
392 gpio_to_irq(pdata->slots[0].switch_pin);
393 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
394 if (ret)
395 return ret;
396 ret = gpio_direction_input(pdata->slots[0].switch_pin);
397 if (ret)
398 goto err_free_sp;
399 } else
400 pdata->slots[0].switch_pin = -EINVAL;
401
402 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
403 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
404 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
405 if (ret)
406 goto err_free_cd;
407 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
408 if (ret)
409 goto err_free_wp;
410 } else
411 pdata->slots[0].gpio_wp = -EINVAL;
412
413 return 0;
414
415err_free_wp:
416 gpio_free(pdata->slots[0].gpio_wp);
417err_free_cd:
418 if (gpio_is_valid(pdata->slots[0].switch_pin))
419err_free_sp:
420 gpio_free(pdata->slots[0].switch_pin);
421 return ret;
422}
423
424static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
425{
426 if (gpio_is_valid(pdata->slots[0].gpio_wp))
427 gpio_free(pdata->slots[0].gpio_wp);
428 if (gpio_is_valid(pdata->slots[0].switch_pin))
429 gpio_free(pdata->slots[0].switch_pin);
430}
431
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100432/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300433 * Start clock to the card
434 */
435static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
436{
437 OMAP_HSMMC_WRITE(host->base, SYSCTL,
438 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
439}
440
441/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100442 * Stop clock to the card
443 */
Denis Karpov70a33412009-09-22 16:44:59 -0700444static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100445{
446 OMAP_HSMMC_WRITE(host->base, SYSCTL,
447 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
448 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900449 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100450}
451
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700452static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
453 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700454{
455 unsigned int irq_mask;
456
457 if (host->use_dma)
458 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
459 else
460 irq_mask = INT_EN_MASK;
461
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700462 /* Disable timeout for erases */
463 if (cmd->opcode == MMC_ERASE)
464 irq_mask &= ~DTO_ENABLE;
465
Adrian Hunterb4175772010-05-26 14:42:06 -0700466 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
467 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
468 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
469}
470
471static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
472{
473 OMAP_HSMMC_WRITE(host->base, ISE, 0);
474 OMAP_HSMMC_WRITE(host->base, IE, 0);
475 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
476}
477
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300478/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530479static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300480{
481 u16 dsor = 0;
482
483 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530484 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300485 if (dsor > 250)
486 dsor = 250;
487 }
488
489 return dsor;
490}
491
Andy Shevchenko5934df22011-05-06 12:14:06 +0300492static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
493{
494 struct mmc_ios *ios = &host->mmc->ios;
495 unsigned long regval;
496 unsigned long timeout;
497
Venkatraman S8986d312012-08-07 19:10:38 +0530498 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300499
500 omap_hsmmc_stop_clock(host);
501
502 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
503 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530504 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300505 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
506 OMAP_HSMMC_WRITE(host->base, SYSCTL,
507 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
508
509 /* Wait till the ICS bit is set */
510 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
511 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
512 && time_before(jiffies, timeout))
513 cpu_relax();
514
515 omap_hsmmc_start_clock(host);
516}
517
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400518static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
519{
520 struct mmc_ios *ios = &host->mmc->ios;
521 u32 con;
522
523 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d9242012-04-09 12:08:33 +0530524 if (ios->timing == MMC_TIMING_UHS_DDR50)
525 con |= DDR; /* configure in DDR mode */
526 else
527 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400528 switch (ios->bus_width) {
529 case MMC_BUS_WIDTH_8:
530 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
531 break;
532 case MMC_BUS_WIDTH_4:
533 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
534 OMAP_HSMMC_WRITE(host->base, HCTL,
535 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
536 break;
537 case MMC_BUS_WIDTH_1:
538 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
539 OMAP_HSMMC_WRITE(host->base, HCTL,
540 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
541 break;
542 }
543}
544
545static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
546{
547 struct mmc_ios *ios = &host->mmc->ios;
548 u32 con;
549
550 con = OMAP_HSMMC_READ(host->base, CON);
551 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
552 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
553 else
554 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
555}
556
Denis Karpov11dd62a2009-09-22 16:44:43 -0700557#ifdef CONFIG_PM
558
559/*
560 * Restore the MMC host context, if it was lost as result of a
561 * power state change.
562 */
Denis Karpov70a33412009-09-22 16:44:59 -0700563static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700564{
565 struct mmc_ios *ios = &host->mmc->ios;
566 struct omap_mmc_platform_data *pdata = host->pdata;
567 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400568 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700569 unsigned long timeout;
570
571 if (pdata->get_context_loss_count) {
572 context_loss = pdata->get_context_loss_count(host->dev);
573 if (context_loss < 0)
574 return 1;
575 }
576
577 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
578 context_loss == host->context_loss ? "not " : "");
579 if (host->context_loss == context_loss)
580 return 1;
581
Venkatraman S6c31b212012-08-08 14:26:52 +0530582 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
583 return 1;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700584
Balaji T Kc2200ef2012-03-07 09:55:30 -0500585 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700586 if (host->power_mode != MMC_POWER_OFF &&
587 (1 << ios->vdd) <= MMC_VDD_23_24)
588 hctl = SDVS18;
589 else
590 hctl = SDVS30;
591 capa = VS30 | VS18;
592 } else {
593 hctl = SDVS18;
594 capa = VS18;
595 }
596
597 OMAP_HSMMC_WRITE(host->base, HCTL,
598 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
599
600 OMAP_HSMMC_WRITE(host->base, CAPA,
601 OMAP_HSMMC_READ(host->base, CAPA) | capa);
602
603 OMAP_HSMMC_WRITE(host->base, HCTL,
604 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
605
606 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
607 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
608 && time_before(jiffies, timeout))
609 ;
610
Adrian Hunterb4175772010-05-26 14:42:06 -0700611 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700612
613 /* Do not initialize card-specific things if the power is off */
614 if (host->power_mode == MMC_POWER_OFF)
615 goto out;
616
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400617 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700618
Andy Shevchenko5934df22011-05-06 12:14:06 +0300619 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700620
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400621 omap_hsmmc_set_bus_mode(host);
622
Denis Karpov11dd62a2009-09-22 16:44:43 -0700623out:
624 host->context_loss = context_loss;
625
626 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
627 return 0;
628}
629
630/*
631 * Save the MMC host context (store the number of power state changes so far).
632 */
Denis Karpov70a33412009-09-22 16:44:59 -0700633static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700634{
635 struct omap_mmc_platform_data *pdata = host->pdata;
636 int context_loss;
637
638 if (pdata->get_context_loss_count) {
639 context_loss = pdata->get_context_loss_count(host->dev);
640 if (context_loss < 0)
641 return;
642 host->context_loss = context_loss;
643 }
644}
645
646#else
647
Denis Karpov70a33412009-09-22 16:44:59 -0700648static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700649{
650 return 0;
651}
652
Denis Karpov70a33412009-09-22 16:44:59 -0700653static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700654{
655}
656
657#endif
658
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100659/*
660 * Send init stream sequence to card
661 * before sending IDLE command
662 */
Denis Karpov70a33412009-09-22 16:44:59 -0700663static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100664{
665 int reg = 0;
666 unsigned long timeout;
667
Adrian Hunterb62f6222009-09-22 16:45:01 -0700668 if (host->protect_card)
669 return;
670
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100671 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700672
673 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100674 OMAP_HSMMC_WRITE(host->base, CON,
675 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
676 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
677
678 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
679 while ((reg != CC) && time_before(jiffies, timeout))
680 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
681
682 OMAP_HSMMC_WRITE(host->base, CON,
683 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700684
685 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
686 OMAP_HSMMC_READ(host->base, STAT);
687
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100688 enable_irq(host->irq);
689}
690
691static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700692int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100693{
694 int r = 1;
695
Denis Karpov191d1f12009-09-22 16:44:55 -0700696 if (mmc_slot(host).get_cover_state)
697 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100698 return r;
699}
700
701static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700702omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100703 char *buf)
704{
705 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700706 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100707
Denis Karpov70a33412009-09-22 16:44:59 -0700708 return sprintf(buf, "%s\n",
709 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100710}
711
Denis Karpov70a33412009-09-22 16:44:59 -0700712static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100713
714static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700715omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100716 char *buf)
717{
718 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700719 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100720
Denis Karpov191d1f12009-09-22 16:44:55 -0700721 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100722}
723
Denis Karpov70a33412009-09-22 16:44:59 -0700724static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100725
726/*
727 * Configure the response type and send the cmd.
728 */
729static void
Denis Karpov70a33412009-09-22 16:44:59 -0700730omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100731 struct mmc_data *data)
732{
733 int cmdreg = 0, resptype = 0, cmdtype = 0;
734
Venkatraman S8986d312012-08-07 19:10:38 +0530735 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100736 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
737 host->cmd = cmd;
738
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700739 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100740
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200741 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100742 if (cmd->flags & MMC_RSP_PRESENT) {
743 if (cmd->flags & MMC_RSP_136)
744 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200745 else if (cmd->flags & MMC_RSP_BUSY) {
746 resptype = 3;
747 host->response_busy = 1;
748 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100749 resptype = 2;
750 }
751
752 /*
753 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
754 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
755 * a val of 0x3, rest 0x0.
756 */
757 if (cmd == host->mrq->stop)
758 cmdtype = 0x3;
759
760 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
761
762 if (data) {
763 cmdreg |= DP_SELECT | MSBS | BCE;
764 if (data->flags & MMC_DATA_READ)
765 cmdreg |= DDIR;
766 else
767 cmdreg &= ~(DDIR);
768 }
769
770 if (host->use_dma)
771 cmdreg |= DMA_EN;
772
Adrian Hunterb4175772010-05-26 14:42:06 -0700773 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700774
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100775 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
776 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
777}
778
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200779static int
Denis Karpov70a33412009-09-22 16:44:59 -0700780omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200781{
782 if (data->flags & MMC_DATA_WRITE)
783 return DMA_TO_DEVICE;
784 else
785 return DMA_FROM_DEVICE;
786}
787
Russell Kingc5c98922012-04-13 12:14:39 +0100788static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
789 struct mmc_data *data)
790{
791 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
792}
793
Adrian Hunterb4175772010-05-26 14:42:06 -0700794static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
795{
796 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530797 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700798
Venkatraman S31463b12012-04-09 12:08:34 +0530799 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700800 host->req_in_progress = 0;
801 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530802 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700803
804 omap_hsmmc_disable_irq(host);
805 /* Do not complete the request if DMA is still in progress */
806 if (mrq->data && host->use_dma && dma_ch != -1)
807 return;
808 host->mrq = NULL;
809 mmc_request_done(host->mmc, mrq);
810}
811
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100812/*
813 * Notify the transfer complete to MMC core
814 */
815static void
Denis Karpov70a33412009-09-22 16:44:59 -0700816omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100817{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200818 if (!data) {
819 struct mmc_request *mrq = host->mrq;
820
Adrian Hunter23050102009-09-22 16:44:57 -0700821 /* TC before CC from CMD6 - don't know why, but it happens */
822 if (host->cmd && host->cmd->opcode == 6 &&
823 host->response_busy) {
824 host->response_busy = 0;
825 return;
826 }
827
Adrian Hunterb4175772010-05-26 14:42:06 -0700828 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200829 return;
830 }
831
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100832 host->data = NULL;
833
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100834 if (!data->error)
835 data->bytes_xfered += data->blocks * (data->blksz);
836 else
837 data->bytes_xfered = 0;
838
Ming Leife852272012-06-22 18:49:35 +0800839 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700840 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800841 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100842 }
Ming Leife852272012-06-22 18:49:35 +0800843 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100844}
845
846/*
847 * Notify the core about command completion
848 */
849static void
Denis Karpov70a33412009-09-22 16:44:59 -0700850omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100851{
852 host->cmd = NULL;
853
854 if (cmd->flags & MMC_RSP_PRESENT) {
855 if (cmd->flags & MMC_RSP_136) {
856 /* response type 2 */
857 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
858 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
859 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
860 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
861 } else {
862 /* response types 1, 1b, 3, 4, 5, 6 */
863 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
864 }
865 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700866 if ((host->data == NULL && !host->response_busy) || cmd->error)
867 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100868}
869
870/*
871 * DMA clean up for command errors
872 */
Denis Karpov70a33412009-09-22 16:44:59 -0700873static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100874{
Adrian Hunterb4175772010-05-26 14:42:06 -0700875 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530876 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700877
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200878 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100879
Venkatraman S31463b12012-04-09 12:08:34 +0530880 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700881 dma_ch = host->dma_ch;
882 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530883 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700884
885 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100886 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
887
888 dmaengine_terminate_all(chan);
889 dma_unmap_sg(chan->device->dev,
890 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700891 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +0100892
Per Forlin053bf342011-11-07 21:55:11 +0530893 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100894 }
895 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100896}
897
898/*
899 * Readable error output
900 */
901#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300902static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100903{
904 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700905 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300906 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
907 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
908 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
909 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100910 };
911 char res[256];
912 char *buf = res;
913 int len, i;
914
915 len = sprintf(buf, "MMC IRQ 0x%x :", status);
916 buf += len;
917
Denis Karpov70a33412009-09-22 16:44:59 -0700918 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100919 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700920 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100921 buf += len;
922 }
923
Venkatraman S8986d312012-08-07 19:10:38 +0530924 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100925}
Adrian Hunter699b9582011-05-06 12:14:01 +0300926#else
927static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
928 u32 status)
929{
930}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100931#endif /* CONFIG_MMC_DEBUG */
932
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100933/*
934 * MMC controller internal state machines reset
935 *
936 * Used to reset command or data internal state machines, using respectively
937 * SRC or SRD bit of SYSCTL register
938 * Can be called from interrupt context
939 */
Denis Karpov70a33412009-09-22 16:44:59 -0700940static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
941 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100942{
943 unsigned long i = 0;
944 unsigned long limit = (loops_per_jiffy *
945 msecs_to_jiffies(MMC_TIMEOUT_MS));
946
947 OMAP_HSMMC_WRITE(host->base, SYSCTL,
948 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
949
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700950 /*
951 * OMAP4 ES2 and greater has an updated reset logic.
952 * Monitor a 0->1 transition first
953 */
954 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -0500955 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700956 && (i++ < limit))
957 cpu_relax();
958 }
959 i = 0;
960
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100961 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
962 (i++ < limit))
963 cpu_relax();
964
965 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
966 dev_err(mmc_dev(host->mmc),
967 "Timeout waiting on controller reset in %s\n",
968 __func__);
969}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100970
Venkatraman Sae4bf782012-08-09 20:36:07 +0530971static void hsmmc_command_incomplete(struct omap_hsmmc_host *host, int err)
972{
973 omap_hsmmc_reset_controller_fsm(host, SRC);
974 host->cmd->error = err;
975
976 if (host->data) {
977 omap_hsmmc_reset_controller_fsm(host, SRD);
978 omap_hsmmc_dma_cleanup(host, err);
979 }
980
981}
982
Adrian Hunterb4175772010-05-26 14:42:06 -0700983static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100984{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100985 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -0700986 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100987
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100988 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +0530989 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100990
991 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +0300992 omap_hsmmc_dbg_report_irq(host, status);
Venkatraman Sae4bf782012-08-09 20:36:07 +0530993 if (status & (CMD_TIMEOUT | DATA_TIMEOUT))
994 hsmmc_command_incomplete(host, -ETIMEDOUT);
995 else if (status & (CMD_CRC | DATA_CRC))
996 hsmmc_command_incomplete(host, -EILSEQ);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200997
Venkatraman Sae4bf782012-08-09 20:36:07 +0530998 end_cmd = 1;
999 if (host->data || host->response_busy) {
1000 end_trans = 1;
1001 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001002 }
1003 }
1004
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001005 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001006 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001007 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001008 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001009}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001010
Adrian Hunterb4175772010-05-26 14:42:06 -07001011/*
1012 * MMC controller IRQ handler
1013 */
1014static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1015{
1016 struct omap_hsmmc_host *host = dev_id;
1017 int status;
1018
1019 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301020 while (status & INT_EN_MASK && host->req_in_progress) {
Adrian Hunterb4175772010-05-26 14:42:06 -07001021 omap_hsmmc_do_irq(host, status);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301022
Adrian Hunterb4175772010-05-26 14:42:06 -07001023 /* Flush posted write */
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301024 OMAP_HSMMC_WRITE(host->base, STAT, status);
Adrian Hunterb4175772010-05-26 14:42:06 -07001025 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301026 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001027
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001028 return IRQ_HANDLED;
1029}
1030
Denis Karpov70a33412009-09-22 16:44:59 -07001031static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001032{
1033 unsigned long i;
1034
1035 OMAP_HSMMC_WRITE(host->base, HCTL,
1036 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1037 for (i = 0; i < loops_per_jiffy; i++) {
1038 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1039 break;
1040 cpu_relax();
1041 }
1042}
1043
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001044/*
David Brownelleb250822009-02-17 14:49:01 -08001045 * Switch MMC interface voltage ... only relevant for MMC1.
1046 *
1047 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1048 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1049 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001050 */
Denis Karpov70a33412009-09-22 16:44:59 -07001051static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001052{
1053 u32 reg_val = 0;
1054 int ret;
1055
1056 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301057 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301058 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301059 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001060
1061 /* Turn the power off */
1062 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001063
1064 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001065 if (!ret)
1066 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1067 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301068 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301069 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301070 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001071
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001072 if (ret != 0)
1073 goto err;
1074
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001075 OMAP_HSMMC_WRITE(host->base, HCTL,
1076 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1077 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001078
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001079 /*
1080 * If a MMC dual voltage card is detected, the set_ios fn calls
1081 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001082 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001083 *
David Brownelleb250822009-02-17 14:49:01 -08001084 * Cope with a bit of slop in the range ... per data sheets:
1085 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1086 * but recommended values are 1.71V to 1.89V
1087 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1088 * but recommended values are 2.7V to 3.3V
1089 *
1090 * Board setup code shouldn't permit anything very out-of-range.
1091 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1092 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001093 */
David Brownelleb250822009-02-17 14:49:01 -08001094 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001095 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001096 else
1097 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001098
1099 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001100 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001101
1102 return 0;
1103err:
1104 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1105 return ret;
1106}
1107
Adrian Hunterb62f6222009-09-22 16:45:01 -07001108/* Protect the card while the cover is open */
1109static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1110{
1111 if (!mmc_slot(host).get_cover_state)
1112 return;
1113
1114 host->reqs_blocked = 0;
1115 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1116 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301117 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001118 "card is now accessible\n",
1119 mmc_hostname(host->mmc));
1120 host->protect_card = 0;
1121 }
1122 } else {
1123 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301124 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001125 "card is now inaccessible\n",
1126 mmc_hostname(host->mmc));
1127 host->protect_card = 1;
1128 }
1129 }
1130}
1131
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001132/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001133 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001134 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001135static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001136{
NeilBrown7efab4f2011-12-30 12:35:13 +11001137 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001138 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001139 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001140
Adrian Huntera6b22402009-09-22 16:44:45 -07001141 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001142 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001143
1144 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001145
Denis Karpov191d1f12009-09-22 16:44:55 -07001146 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001147 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001148 else {
1149 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001150 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001151 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001152
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001153 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001154 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001155 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001156 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001157 return IRQ_HANDLED;
1158}
1159
Russell Kingc5c98922012-04-13 12:14:39 +01001160static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001161{
Russell Kingc5c98922012-04-13 12:14:39 +01001162 struct omap_hsmmc_host *host = param;
1163 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001164 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001165 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001166
Russell Kingc5c98922012-04-13 12:14:39 +01001167 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001168 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001169 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001170 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001171 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001172
Adrian Hunter770d7432011-05-06 12:14:11 +03001173 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001174 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001175 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001176 dma_unmap_sg(chan->device->dev,
1177 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001178 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001179
1180 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001181 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001182 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001183
1184 /* If DMA has finished after TC, complete the request */
1185 if (!req_in_progress) {
1186 struct mmc_request *mrq = host->mrq;
1187
1188 host->mrq = NULL;
1189 mmc_request_done(host->mmc, mrq);
1190 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001191}
1192
Per Forlin9782aff2011-07-01 18:55:23 +02001193static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1194 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001195 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001196 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001197{
1198 int dma_len;
1199
1200 if (!next && data->host_cookie &&
1201 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301202 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001203 " host->next_data.cookie %d\n",
1204 __func__, data->host_cookie, host->next_data.cookie);
1205 data->host_cookie = 0;
1206 }
1207
1208 /* Check if next job is already prepared */
1209 if (next ||
1210 (!next && data->host_cookie != host->next_data.cookie)) {
Russell King26b88522012-04-13 12:27:37 +01001211 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001212 omap_hsmmc_get_dma_dir(host, data));
1213
1214 } else {
1215 dma_len = host->next_data.dma_len;
1216 host->next_data.dma_len = 0;
1217 }
1218
1219
1220 if (dma_len == 0)
1221 return -EINVAL;
1222
1223 if (next) {
1224 next->dma_len = dma_len;
1225 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1226 } else
1227 host->dma_len = dma_len;
1228
1229 return 0;
1230}
1231
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001232/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001233 * Routine to configure and start DMA for the MMC card
1234 */
Denis Karpov70a33412009-09-22 16:44:59 -07001235static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1236 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001237{
Russell King26b88522012-04-13 12:27:37 +01001238 struct dma_slave_config cfg;
1239 struct dma_async_tx_descriptor *tx;
1240 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001241 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001242 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001243
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001244 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001245 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001246 struct scatterlist *sgl;
1247
1248 sgl = data->sg + i;
1249 if (sgl->length % data->blksz)
1250 return -EINVAL;
1251 }
1252 if ((data->blksz % 4) != 0)
1253 /* REVISIT: The MMC buffer increments only when MSB is written.
1254 * Return error for blksz which is non multiple of four.
1255 */
1256 return -EINVAL;
1257
Adrian Hunterb4175772010-05-26 14:42:06 -07001258 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001259
Russell Kingc5c98922012-04-13 12:14:39 +01001260 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001261
Russell King26b88522012-04-13 12:27:37 +01001262 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1263 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1264 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1265 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1266 cfg.src_maxburst = data->blksz / 4;
1267 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001268
Russell King26b88522012-04-13 12:27:37 +01001269 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001270 if (ret)
1271 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001272
Russell King26b88522012-04-13 12:27:37 +01001273 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1274 if (ret)
1275 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001276
Russell King26b88522012-04-13 12:27:37 +01001277 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1278 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1279 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1280 if (!tx) {
1281 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1282 /* FIXME: cleanup */
1283 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001284 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001285
Russell King26b88522012-04-13 12:27:37 +01001286 tx->callback = omap_hsmmc_dma_callback;
1287 tx->callback_param = host;
1288
1289 /* Does not fail */
1290 dmaengine_submit(tx);
1291
1292 host->dma_ch = 1;
1293
1294 dma_async_issue_pending(chan);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001295
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001296 return 0;
1297}
1298
Denis Karpov70a33412009-09-22 16:44:59 -07001299static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001300 unsigned int timeout_ns,
1301 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001302{
1303 unsigned int timeout, cycle_ns;
1304 uint32_t reg, clkd, dto = 0;
1305
1306 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1307 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1308 if (clkd == 0)
1309 clkd = 1;
1310
1311 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001312 timeout = timeout_ns / cycle_ns;
1313 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001314 if (timeout) {
1315 while ((timeout & 0x80000000) == 0) {
1316 dto += 1;
1317 timeout <<= 1;
1318 }
1319 dto = 31 - dto;
1320 timeout <<= 1;
1321 if (timeout && dto)
1322 dto += 1;
1323 if (dto >= 13)
1324 dto -= 13;
1325 else
1326 dto = 0;
1327 if (dto > 14)
1328 dto = 14;
1329 }
1330
1331 reg &= ~DTO_MASK;
1332 reg |= dto << DTO_SHIFT;
1333 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1334}
1335
1336/*
1337 * Configure block length for MMC/SD cards and initiate the transfer.
1338 */
1339static int
Denis Karpov70a33412009-09-22 16:44:59 -07001340omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001341{
1342 int ret;
1343 host->data = req->data;
1344
1345 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001346 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001347 /*
1348 * Set an arbitrary 100ms data timeout for commands with
1349 * busy signal.
1350 */
1351 if (req->cmd->flags & MMC_RSP_BUSY)
1352 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001353 return 0;
1354 }
1355
1356 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1357 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001358 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001359
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001360 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001361 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001362 if (ret != 0) {
1363 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1364 return ret;
1365 }
1366 }
1367 return 0;
1368}
1369
Per Forlin9782aff2011-07-01 18:55:23 +02001370static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1371 int err)
1372{
1373 struct omap_hsmmc_host *host = mmc_priv(mmc);
1374 struct mmc_data *data = mrq->data;
1375
Russell King26b88522012-04-13 12:27:37 +01001376 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001377 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001378
Russell King26b88522012-04-13 12:27:37 +01001379 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1380 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001381 data->host_cookie = 0;
1382 }
1383}
1384
1385static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1386 bool is_first_req)
1387{
1388 struct omap_hsmmc_host *host = mmc_priv(mmc);
1389
1390 if (mrq->data->host_cookie) {
1391 mrq->data->host_cookie = 0;
1392 return ;
1393 }
1394
Russell Kingc5c98922012-04-13 12:14:39 +01001395 if (host->use_dma) {
1396 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001397
Per Forlin9782aff2011-07-01 18:55:23 +02001398 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001399 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001400 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001401 }
Per Forlin9782aff2011-07-01 18:55:23 +02001402}
1403
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001404/*
1405 * Request function. for read/write operation
1406 */
Denis Karpov70a33412009-09-22 16:44:59 -07001407static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001408{
Denis Karpov70a33412009-09-22 16:44:59 -07001409 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001410 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001411
Adrian Hunterb4175772010-05-26 14:42:06 -07001412 BUG_ON(host->req_in_progress);
1413 BUG_ON(host->dma_ch != -1);
1414 if (host->protect_card) {
1415 if (host->reqs_blocked < 3) {
1416 /*
1417 * Ensure the controller is left in a consistent
1418 * state by resetting the command and data state
1419 * machines.
1420 */
1421 omap_hsmmc_reset_controller_fsm(host, SRD);
1422 omap_hsmmc_reset_controller_fsm(host, SRC);
1423 host->reqs_blocked += 1;
1424 }
1425 req->cmd->error = -EBADF;
1426 if (req->data)
1427 req->data->error = -EBADF;
1428 req->cmd->retries = 0;
1429 mmc_request_done(mmc, req);
1430 return;
1431 } else if (host->reqs_blocked)
1432 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001433 WARN_ON(host->mrq != NULL);
1434 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001435 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001436 if (err) {
1437 req->cmd->error = err;
1438 if (req->data)
1439 req->data->error = err;
1440 host->mrq = NULL;
1441 mmc_request_done(mmc, req);
1442 return;
1443 }
1444
Denis Karpov70a33412009-09-22 16:44:59 -07001445 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001446}
1447
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001448/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001449static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001450{
Denis Karpov70a33412009-09-22 16:44:59 -07001451 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001452 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001453
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301454 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001455
Adrian Huntera3621462009-09-22 16:44:42 -07001456 if (ios->power_mode != host->power_mode) {
1457 switch (ios->power_mode) {
1458 case MMC_POWER_OFF:
1459 mmc_slot(host).set_power(host->dev, host->slot_id,
1460 0, 0);
1461 break;
1462 case MMC_POWER_UP:
1463 mmc_slot(host).set_power(host->dev, host->slot_id,
1464 1, ios->vdd);
1465 break;
1466 case MMC_POWER_ON:
1467 do_send_init_stream = 1;
1468 break;
1469 }
1470 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001471 }
1472
Denis Karpovdd498ef2009-09-22 16:44:49 -07001473 /* FIXME: set registers based only on changes to ios */
1474
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001475 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001476
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301477 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001478 /* Only MMC1 can interface at 3V without some flavor
1479 * of external transceiver; but they all handle 1.8V.
1480 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001481 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301482 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1483 /*
1484 * With pbias cell programming missing, this
1485 * can't be allowed when booting with device
1486 * tree.
1487 */
Rajendra Nayak4d048f92012-04-11 15:33:13 +05301488 !host->dev->of_node) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001489 /*
1490 * The mmc_select_voltage fn of the core does
1491 * not seem to set the power_mode to
1492 * MMC_POWER_UP upon recalculating the voltage.
1493 * vdd 1.8v.
1494 */
Denis Karpov70a33412009-09-22 16:44:59 -07001495 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1496 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001497 "Switch operation failed\n");
1498 }
1499 }
1500
Andy Shevchenko5934df22011-05-06 12:14:06 +03001501 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001502
Adrian Huntera3621462009-09-22 16:44:42 -07001503 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001504 send_init_stream(host);
1505
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001506 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001507
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301508 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001509}
1510
1511static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1512{
Denis Karpov70a33412009-09-22 16:44:59 -07001513 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001514
Denis Karpov191d1f12009-09-22 16:44:55 -07001515 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001516 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001517 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001518}
1519
1520static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1521{
Denis Karpov70a33412009-09-22 16:44:59 -07001522 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001523
Denis Karpov191d1f12009-09-22 16:44:55 -07001524 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001525 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001526 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001527}
1528
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001529static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1530{
1531 struct omap_hsmmc_host *host = mmc_priv(mmc);
1532
1533 if (mmc_slot(host).init_card)
1534 mmc_slot(host).init_card(card);
1535}
1536
Denis Karpov70a33412009-09-22 16:44:59 -07001537static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001538{
1539 u32 hctl, capa, value;
1540
1541 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301542 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001543 hctl = SDVS30;
1544 capa = VS30 | VS18;
1545 } else {
1546 hctl = SDVS18;
1547 capa = VS18;
1548 }
1549
1550 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1551 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1552
1553 value = OMAP_HSMMC_READ(host->base, CAPA);
1554 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1555
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001556 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001557 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001558}
1559
Denis Karpov70a33412009-09-22 16:44:59 -07001560static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001561{
Denis Karpov70a33412009-09-22 16:44:59 -07001562 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001563
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301564 pm_runtime_get_sync(host->dev);
1565
Denis Karpovdd498ef2009-09-22 16:44:49 -07001566 return 0;
1567}
1568
Adrian Hunter907d2e72012-02-29 09:17:21 +02001569static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001570{
Denis Karpov70a33412009-09-22 16:44:59 -07001571 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001572
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301573 pm_runtime_mark_last_busy(host->dev);
1574 pm_runtime_put_autosuspend(host->dev);
1575
Denis Karpovdd498ef2009-09-22 16:44:49 -07001576 return 0;
1577}
1578
Denis Karpov70a33412009-09-22 16:44:59 -07001579static const struct mmc_host_ops omap_hsmmc_ops = {
1580 .enable = omap_hsmmc_enable_fclk,
1581 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001582 .post_req = omap_hsmmc_post_req,
1583 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001584 .request = omap_hsmmc_request,
1585 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001586 .get_cd = omap_hsmmc_get_cd,
1587 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001588 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001589 /* NYET -- enable_sdio_irq */
1590};
1591
Denis Karpovd900f712009-09-22 16:44:38 -07001592#ifdef CONFIG_DEBUG_FS
1593
Denis Karpov70a33412009-09-22 16:44:59 -07001594static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001595{
1596 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001597 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001598 int context_loss = 0;
1599
Denis Karpov70a33412009-09-22 16:44:59 -07001600 if (host->pdata->get_context_loss_count)
1601 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001602
Adrian Hunter907d2e72012-02-29 09:17:21 +02001603 seq_printf(s, "mmc%d:\n ctx_loss:\t%d:%d\n\nregs:\n",
1604 mmc->index, host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001605
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301606 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001607 seq_printf(s, "host suspended, can't read registers\n");
1608 return 0;
1609 }
1610
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301611 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001612
Denis Karpovd900f712009-09-22 16:44:38 -07001613 seq_printf(s, "CON:\t\t0x%08x\n",
1614 OMAP_HSMMC_READ(host->base, CON));
1615 seq_printf(s, "HCTL:\t\t0x%08x\n",
1616 OMAP_HSMMC_READ(host->base, HCTL));
1617 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1618 OMAP_HSMMC_READ(host->base, SYSCTL));
1619 seq_printf(s, "IE:\t\t0x%08x\n",
1620 OMAP_HSMMC_READ(host->base, IE));
1621 seq_printf(s, "ISE:\t\t0x%08x\n",
1622 OMAP_HSMMC_READ(host->base, ISE));
1623 seq_printf(s, "CAPA:\t\t0x%08x\n",
1624 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001625
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301626 pm_runtime_mark_last_busy(host->dev);
1627 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001628
Denis Karpovd900f712009-09-22 16:44:38 -07001629 return 0;
1630}
1631
Denis Karpov70a33412009-09-22 16:44:59 -07001632static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001633{
Denis Karpov70a33412009-09-22 16:44:59 -07001634 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001635}
1636
1637static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001638 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001639 .read = seq_read,
1640 .llseek = seq_lseek,
1641 .release = single_release,
1642};
1643
Denis Karpov70a33412009-09-22 16:44:59 -07001644static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001645{
1646 if (mmc->debugfs_root)
1647 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1648 mmc, &mmc_regs_fops);
1649}
1650
1651#else
1652
Denis Karpov70a33412009-09-22 16:44:59 -07001653static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001654{
1655}
1656
1657#endif
1658
Rajendra Nayak46856a62012-03-12 20:32:37 +05301659#ifdef CONFIG_OF
1660static u16 omap4_reg_offset = 0x100;
1661
1662static const struct of_device_id omap_mmc_of_match[] = {
1663 {
1664 .compatible = "ti,omap2-hsmmc",
1665 },
1666 {
1667 .compatible = "ti,omap3-hsmmc",
1668 },
1669 {
1670 .compatible = "ti,omap4-hsmmc",
1671 .data = &omap4_reg_offset,
1672 },
1673 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001674};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301675MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1676
1677static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1678{
1679 struct omap_mmc_platform_data *pdata;
1680 struct device_node *np = dev->of_node;
1681 u32 bus_width;
1682
1683 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1684 if (!pdata)
1685 return NULL; /* out of memory */
1686
1687 if (of_find_property(np, "ti,dual-volt", NULL))
1688 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1689
1690 /* This driver only supports 1 slot */
1691 pdata->nr_slots = 1;
1692 pdata->slots[0].switch_pin = of_get_named_gpio(np, "cd-gpios", 0);
1693 pdata->slots[0].gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
1694
1695 if (of_find_property(np, "ti,non-removable", NULL)) {
1696 pdata->slots[0].nonremovable = true;
1697 pdata->slots[0].no_regulator_off_init = true;
1698 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001699 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301700 if (bus_width == 4)
1701 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1702 else if (bus_width == 8)
1703 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1704
1705 if (of_find_property(np, "ti,needs-special-reset", NULL))
1706 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1707
1708 return pdata;
1709}
1710#else
1711static inline struct omap_mmc_platform_data
1712 *of_get_hsmmc_pdata(struct device *dev)
1713{
1714 return NULL;
1715}
1716#endif
1717
Felipe Balbiefa25fd2012-03-14 11:18:28 +02001718static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001719{
1720 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1721 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001722 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001723 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001724 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301725 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001726 dma_cap_mask_t mask;
1727 unsigned tx_req, rx_req;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301728
1729 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1730 if (match) {
1731 pdata = of_get_hsmmc_pdata(&pdev->dev);
1732 if (match->data) {
Uwe Kleine-Königefc9b732012-05-21 21:57:39 +02001733 const u16 *offsetp = match->data;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301734 pdata->reg_offset = *offsetp;
1735 }
1736 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001737
1738 if (pdata == NULL) {
1739 dev_err(&pdev->dev, "Platform Data is missing\n");
1740 return -ENXIO;
1741 }
1742
1743 if (pdata->nr_slots == 0) {
1744 dev_err(&pdev->dev, "No Slots\n");
1745 return -ENXIO;
1746 }
1747
1748 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1749 irq = platform_get_irq(pdev, 0);
1750 if (res == NULL || irq < 0)
1751 return -ENXIO;
1752
Chris Ball984b2032011-03-22 16:34:42 -07001753 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001754 if (res == NULL)
1755 return -EBUSY;
1756
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001757 ret = omap_hsmmc_gpio_init(pdata);
1758 if (ret)
1759 goto err;
1760
Denis Karpov70a33412009-09-22 16:44:59 -07001761 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001762 if (!mmc) {
1763 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001764 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001765 }
1766
1767 host = mmc_priv(mmc);
1768 host->mmc = mmc;
1769 host->pdata = pdata;
1770 host->dev = &pdev->dev;
1771 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001772 host->dma_ch = -1;
1773 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001774 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301775 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001776 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001777 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001778 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001779
1780 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001781
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301782 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001783
Adrian Huntere0eb2422010-02-15 10:03:34 -08001784 /*
1785 * If regulator_disable can only put vcc_aux to sleep then there is
1786 * no off state.
1787 */
1788 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1789 mmc_slot(host).no_off = 1;
1790
Daniel Mackd418ed82012-02-19 13:20:33 +01001791 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1792
1793 if (pdata->max_freq > 0)
1794 mmc->f_max = pdata->max_freq;
1795 else
1796 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001797
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001798 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001799
Russell King6f7607c2009-01-28 10:22:50 +00001800 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001801 if (IS_ERR(host->fclk)) {
1802 ret = PTR_ERR(host->fclk);
1803 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001804 goto err1;
1805 }
1806
Paul Walmsley9b682562011-10-06 14:50:35 -06001807 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1808 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1809 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1810 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001811
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301812 pm_runtime_enable(host->dev);
1813 pm_runtime_get_sync(host->dev);
1814 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1815 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001816
Balaji T K92a3aeb2012-02-24 21:14:34 +05301817 omap_hsmmc_context_save(host);
1818
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301819 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1820 /*
1821 * MMC can still work without debounce clock.
1822 */
1823 if (IS_ERR(host->dbclk)) {
1824 dev_warn(mmc_dev(host->mmc), "Failed to get debounce clk\n");
1825 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05301826 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301827 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1828 clk_put(host->dbclk);
1829 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001830 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001831
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001832 /* Since we do only SG emulation, we can have as many segs
1833 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001834 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001835
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001836 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1837 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1838 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1839 mmc->max_seg_size = mmc->max_req_size;
1840
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001841 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001842 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001843
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001844 mmc->caps |= mmc_slot(host).caps;
1845 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001846 mmc->caps |= MMC_CAP_4_BIT_DATA;
1847
Denis Karpov191d1f12009-09-22 16:44:55 -07001848 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001849 mmc->caps |= MMC_CAP_NONREMOVABLE;
1850
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001851 mmc->pm_caps = mmc_slot(host).pm_caps;
1852
Denis Karpov70a33412009-09-22 16:44:59 -07001853 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001854
Balaji T Kb7bf7732012-03-07 09:55:30 -05001855 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1856 if (!res) {
1857 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
Kevin Hilman9c17d082012-07-10 16:40:56 -07001858 ret = -ENXIO;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001859 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001860 }
Russell King26b88522012-04-13 12:27:37 +01001861 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001862
1863 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1864 if (!res) {
1865 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
Kevin Hilman9c17d082012-07-10 16:40:56 -07001866 ret = -ENXIO;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001867 goto err_irq;
1868 }
Russell King26b88522012-04-13 12:27:37 +01001869 rx_req = res->start;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001870
Russell King26b88522012-04-13 12:27:37 +01001871 dma_cap_zero(mask);
1872 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001873
Russell King26b88522012-04-13 12:27:37 +01001874 host->rx_chan = dma_request_channel(mask, omap_dma_filter_fn, &rx_req);
1875 if (!host->rx_chan) {
1876 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001877 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001878 goto err_irq;
1879 }
1880
1881 host->tx_chan = dma_request_channel(mask, omap_dma_filter_fn, &tx_req);
1882 if (!host->tx_chan) {
1883 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001884 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001885 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001886 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001887
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001888 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001889 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001890 mmc_hostname(mmc), host);
1891 if (ret) {
1892 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
1893 goto err_irq;
1894 }
1895
1896 if (pdata->init != NULL) {
1897 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07001898 dev_dbg(mmc_dev(host->mmc),
1899 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001900 goto err_irq_cd_init;
1901 }
1902 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001903
Adrian Hunterb702b102010-02-15 10:03:35 -08001904 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001905 ret = omap_hsmmc_reg_get(host);
1906 if (ret)
1907 goto err_reg;
1908 host->use_reg = 1;
1909 }
1910
David Brownellb583f262009-05-28 14:04:03 -07001911 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001912
1913 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001914 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001915 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1916 NULL,
1917 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08001918 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11001919 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001920 if (ret) {
1921 dev_dbg(mmc_dev(host->mmc),
1922 "Unable to grab MMC CD IRQ\n");
1923 goto err_irq_cd;
1924 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001925 pdata->suspend = omap_hsmmc_suspend_cdirq;
1926 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001927 }
1928
Adrian Hunterb4175772010-05-26 14:42:06 -07001929 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001930
Adrian Hunterb62f6222009-09-22 16:45:01 -07001931 omap_hsmmc_protect_card(host);
1932
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001933 mmc_add_host(mmc);
1934
Denis Karpov191d1f12009-09-22 16:44:55 -07001935 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001936 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1937 if (ret < 0)
1938 goto err_slot_name;
1939 }
Denis Karpov191d1f12009-09-22 16:44:55 -07001940 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001941 ret = device_create_file(&mmc->class_dev,
1942 &dev_attr_cover_switch);
1943 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001944 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001945 }
1946
Denis Karpov70a33412009-09-22 16:44:59 -07001947 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301948 pm_runtime_mark_last_busy(host->dev);
1949 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001950
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001951 return 0;
1952
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001953err_slot_name:
1954 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001955 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001956err_irq_cd:
1957 if (host->use_reg)
1958 omap_hsmmc_reg_put(host);
1959err_reg:
1960 if (host->pdata->cleanup)
1961 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001962err_irq_cd_init:
1963 free_irq(host->irq, host);
1964err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01001965 if (host->tx_chan)
1966 dma_release_channel(host->tx_chan);
1967 if (host->rx_chan)
1968 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05301969 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05001970 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001971 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301972 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05301973 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001974 clk_put(host->dbclk);
1975 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001976err1:
1977 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001978 platform_set_drvdata(pdev, NULL);
1979 mmc_free_host(mmc);
1980err_alloc:
1981 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001982err:
Russell King48b332f2012-04-18 11:11:57 +01001983 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1984 if (res)
1985 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001986 return ret;
1987}
1988
Felipe Balbiefa25fd2012-03-14 11:18:28 +02001989static int __devexit omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001990{
Denis Karpov70a33412009-09-22 16:44:59 -07001991 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001992 struct resource *res;
1993
Felipe Balbi927ce942012-03-14 11:18:27 +02001994 pm_runtime_get_sync(host->dev);
1995 mmc_remove_host(host->mmc);
1996 if (host->use_reg)
1997 omap_hsmmc_reg_put(host);
1998 if (host->pdata->cleanup)
1999 host->pdata->cleanup(&pdev->dev);
2000 free_irq(host->irq, host);
2001 if (mmc_slot(host).card_detect_irq)
2002 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002003
Russell Kingc5c98922012-04-13 12:14:39 +01002004 if (host->tx_chan)
2005 dma_release_channel(host->tx_chan);
2006 if (host->rx_chan)
2007 dma_release_channel(host->rx_chan);
2008
Felipe Balbi927ce942012-03-14 11:18:27 +02002009 pm_runtime_put_sync(host->dev);
2010 pm_runtime_disable(host->dev);
2011 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302012 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302013 clk_disable_unprepare(host->dbclk);
Felipe Balbi927ce942012-03-14 11:18:27 +02002014 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002015 }
2016
Balaji T K9ea28ec2012-10-15 21:35:08 +05302017 omap_hsmmc_gpio_free(host->pdata);
Felipe Balbi927ce942012-03-14 11:18:27 +02002018 iounmap(host->base);
Balaji T K9d1f0282012-10-15 21:35:07 +05302019 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002020
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002021 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2022 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002023 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024 platform_set_drvdata(pdev, NULL);
2025
2026 return 0;
2027}
2028
2029#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002030static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002031{
2032 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002033 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2034
2035 if (!host)
2036 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002037
2038 if (host && host->suspended)
2039 return 0;
2040
Felipe Balbi927ce942012-03-14 11:18:27 +02002041 pm_runtime_get_sync(host->dev);
2042 host->suspended = 1;
2043 if (host->pdata->suspend) {
2044 ret = host->pdata->suspend(dev, host->slot_id);
Eliad Peller31f9d462011-11-22 16:02:17 +02002045 if (ret) {
Felipe Balbi927ce942012-03-14 11:18:27 +02002046 dev_dbg(dev, "Unable to handle MMC board"
2047 " level suspend\n");
Adrian Huntera6b22402009-09-22 16:44:45 -07002048 host->suspended = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002049 return ret;
Adrian Huntera6b22402009-09-22 16:44:45 -07002050 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002051 }
Felipe Balbi927ce942012-03-14 11:18:27 +02002052 ret = mmc_suspend_host(host->mmc);
2053
2054 if (ret) {
2055 host->suspended = 0;
2056 if (host->pdata->resume) {
Vaibhav Bediac4c8eeb2012-09-13 06:31:03 +00002057 if (host->pdata->resume(dev, host->slot_id))
Felipe Balbi927ce942012-03-14 11:18:27 +02002058 dev_dbg(dev, "Unmask interrupt failed\n");
2059 }
2060 goto err;
2061 }
2062
2063 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2064 omap_hsmmc_disable_irq(host);
2065 OMAP_HSMMC_WRITE(host->base, HCTL,
2066 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2067 }
2068
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302069 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302070 clk_disable_unprepare(host->dbclk);
Eliad Peller31f9d462011-11-22 16:02:17 +02002071err:
2072 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002073 return ret;
2074}
2075
2076/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002077static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002078{
2079 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002080 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2081
2082 if (!host)
2083 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002084
2085 if (host && !host->suspended)
2086 return 0;
2087
Felipe Balbi927ce942012-03-14 11:18:27 +02002088 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002089
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302090 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302091 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002092
Felipe Balbi927ce942012-03-14 11:18:27 +02002093 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2094 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002095
Felipe Balbi927ce942012-03-14 11:18:27 +02002096 if (host->pdata->resume) {
2097 ret = host->pdata->resume(dev, host->slot_id);
2098 if (ret)
2099 dev_dbg(dev, "Unmask interrupt failed\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002100 }
2101
Felipe Balbi927ce942012-03-14 11:18:27 +02002102 omap_hsmmc_protect_card(host);
2103
2104 /* Notify the core to resume the host */
2105 ret = mmc_resume_host(host->mmc);
2106 if (ret == 0)
2107 host->suspended = 0;
2108
2109 pm_runtime_mark_last_busy(host->dev);
2110 pm_runtime_put_autosuspend(host->dev);
2111
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002112 return ret;
2113
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002114}
2115
2116#else
Denis Karpov70a33412009-09-22 16:44:59 -07002117#define omap_hsmmc_suspend NULL
2118#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002119#endif
2120
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302121static int omap_hsmmc_runtime_suspend(struct device *dev)
2122{
2123 struct omap_hsmmc_host *host;
2124
2125 host = platform_get_drvdata(to_platform_device(dev));
2126 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002127 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302128
2129 return 0;
2130}
2131
2132static int omap_hsmmc_runtime_resume(struct device *dev)
2133{
2134 struct omap_hsmmc_host *host;
2135
2136 host = platform_get_drvdata(to_platform_device(dev));
2137 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002138 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302139
2140 return 0;
2141}
2142
Kevin Hilmana791daa2010-05-26 14:42:07 -07002143static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002144 .suspend = omap_hsmmc_suspend,
2145 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302146 .runtime_suspend = omap_hsmmc_runtime_suspend,
2147 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002148};
2149
2150static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002151 .probe = omap_hsmmc_probe,
2152 .remove = __devexit_p(omap_hsmmc_remove),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002153 .driver = {
2154 .name = DRIVER_NAME,
2155 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002156 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302157 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002158 },
2159};
2160
Felipe Balbib7964502012-03-14 11:18:32 +02002161module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002162MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2163MODULE_LICENSE("GPL");
2164MODULE_ALIAS("platform:" DRIVER_NAME);
2165MODULE_AUTHOR("Texas Instruments Inc");