blob: cfb4b48c212b2f7283ad005cea56384953cff5ad [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 Shevchenkoac330f42011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
22#include <linux/seq_file.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010023#include <linux/interrupt.h>
24#include <linux/delay.h>
25#include <linux/dma-mapping.h>
26#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010027#include <linux/timer.h>
28#include <linux/clk.h>
29#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070030#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070031#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010032#include <linux/io.h>
33#include <linux/semaphore.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080034#include <linux/gpio.h>
35#include <linux/regulator/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053036#include <linux/pm_runtime.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010038#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/board.h>
40#include <plat/mmc.h>
41#include <plat/cpu.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010042
43/* OMAP HSMMC Host Controller Registers */
44#define OMAP_HSMMC_SYSCONFIG 0x0010
Denis Karpov11dd62a2009-09-22 16:44:43 -070045#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010046#define OMAP_HSMMC_CON 0x002C
47#define OMAP_HSMMC_BLK 0x0104
48#define OMAP_HSMMC_ARG 0x0108
49#define OMAP_HSMMC_CMD 0x010C
50#define OMAP_HSMMC_RSP10 0x0110
51#define OMAP_HSMMC_RSP32 0x0114
52#define OMAP_HSMMC_RSP54 0x0118
53#define OMAP_HSMMC_RSP76 0x011C
54#define OMAP_HSMMC_DATA 0x0120
55#define OMAP_HSMMC_HCTL 0x0128
56#define OMAP_HSMMC_SYSCTL 0x012C
57#define OMAP_HSMMC_STAT 0x0130
58#define OMAP_HSMMC_IE 0x0134
59#define OMAP_HSMMC_ISE 0x0138
60#define OMAP_HSMMC_CAPA 0x0140
61
62#define VS18 (1 << 26)
63#define VS30 (1 << 25)
64#define SDVS18 (0x5 << 9)
65#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080066#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010067#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010068#define SDVSCLR 0xFFFFF1FF
69#define SDVSDET 0x00000400
70#define AUTOIDLE 0x1
71#define SDBP (1 << 8)
72#define DTO 0xe
73#define ICE 0x1
74#define ICS 0x2
75#define CEN (1 << 2)
76#define CLKD_MASK 0x0000FFC0
77#define CLKD_SHIFT 6
78#define DTO_MASK 0x000F0000
79#define DTO_SHIFT 16
80#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070081#define BWR_ENABLE (1 << 4)
82#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070083#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010084#define INIT_STREAM (1 << 1)
85#define DP_SELECT (1 << 21)
86#define DDIR (1 << 4)
87#define DMA_EN 0x1
88#define MSBS (1 << 5)
89#define BCE (1 << 1)
90#define FOUR_BIT (1 << 1)
Jarkko Lavinen73153012008-11-21 16:49:54 +020091#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010092#define CC 0x1
93#define TC 0x02
94#define OD 0x1
95#define ERR (1 << 15)
96#define CMD_TIMEOUT (1 << 16)
97#define DATA_TIMEOUT (1 << 20)
98#define CMD_CRC (1 << 17)
99#define DATA_CRC (1 << 21)
100#define CARD_ERR (1 << 28)
101#define STAT_CLEAR 0xFFFFFFFF
102#define INIT_STREAM_CMD 0x00000000
103#define DUAL_VOLT_OCR_BIT 7
104#define SRC (1 << 25)
105#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700106#define SOFTRESET (1 << 1)
107#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100108
109/*
110 * FIXME: Most likely all the data using these _DEVID defines should come
111 * from the platform_data, or implemented in controller and slot specific
112 * functions.
113 */
114#define OMAP_MMC1_DEVID 0
115#define OMAP_MMC2_DEVID 1
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000116#define OMAP_MMC3_DEVID 2
kishore kadiyala82cf8182009-09-22 16:45:25 -0700117#define OMAP_MMC4_DEVID 3
118#define OMAP_MMC5_DEVID 4
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100119
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530120#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100121#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400122#define OMAP_MMC_MIN_CLOCK 400000
123#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530124#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100125
126/*
127 * One controller can have multiple slots, like on some omap boards using
128 * omap.c controller driver. Luckily this is not currently done on any known
129 * omap_hsmmc.c device.
130 */
131#define mmc_slot(host) (host->pdata->slots[host->slot_id])
132
133/*
134 * MMC Host controller read/write API's
135 */
136#define OMAP_HSMMC_READ(base, reg) \
137 __raw_readl((base) + OMAP_HSMMC_##reg)
138
139#define OMAP_HSMMC_WRITE(base, reg, val) \
140 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
141
Per Forlin9782aff2011-07-01 18:55:23 +0200142struct omap_hsmmc_next {
143 unsigned int dma_len;
144 s32 cookie;
145};
146
Denis Karpov70a33412009-09-22 16:44:59 -0700147struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100148 struct device *dev;
149 struct mmc_host *mmc;
150 struct mmc_request *mrq;
151 struct mmc_command *cmd;
152 struct mmc_data *data;
153 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100154 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800155 /*
156 * vcc == configured supply
157 * vcc_aux == optional
158 * - MMC1, supply for DAT4..DAT7
159 * - MMC2/MMC2, external level shifter voltage supply, for
160 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
161 */
162 struct regulator *vcc;
163 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100164 void __iomem *base;
165 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700166 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100167 unsigned int id;
168 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200169 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100170 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700171 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100172 u32 *buffer;
173 u32 bytesleft;
174 int suspended;
175 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100176 int use_dma, dma_ch;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000177 int dma_line_tx, dma_line_rx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100178 int slot_id;
Adrian Hunter2bec0892009-09-22 16:45:02 -0700179 int got_dbclk;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200180 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700181 int context_loss;
Denis Karpovdd498ef2009-09-22 16:44:49 -0700182 int dpm_state;
Adrian Hunter623821f2009-09-22 16:44:51 -0700183 int vdd;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700184 int protect_card;
185 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800186 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700187 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200188 struct omap_hsmmc_next next_data;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700189
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100190 struct omap_mmc_platform_data *pdata;
191};
192
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800193static int omap_hsmmc_card_detect(struct device *dev, int slot)
194{
195 struct omap_mmc_platform_data *mmc = dev->platform_data;
196
197 /* NOTE: assumes card detect signal is active-low */
198 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
199}
200
201static int omap_hsmmc_get_wp(struct device *dev, int slot)
202{
203 struct omap_mmc_platform_data *mmc = dev->platform_data;
204
205 /* NOTE: assumes write protect signal is active-high */
206 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
207}
208
209static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
210{
211 struct omap_mmc_platform_data *mmc = dev->platform_data;
212
213 /* NOTE: assumes card detect signal is active-low */
214 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
215}
216
217#ifdef CONFIG_PM
218
219static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
220{
221 struct omap_mmc_platform_data *mmc = dev->platform_data;
222
223 disable_irq(mmc->slots[0].card_detect_irq);
224 return 0;
225}
226
227static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
228{
229 struct omap_mmc_platform_data *mmc = dev->platform_data;
230
231 enable_irq(mmc->slots[0].card_detect_irq);
232 return 0;
233}
234
235#else
236
237#define omap_hsmmc_suspend_cdirq NULL
238#define omap_hsmmc_resume_cdirq NULL
239
240#endif
241
Adrian Hunterb702b102010-02-15 10:03:35 -0800242#ifdef CONFIG_REGULATOR
243
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800244static int omap_hsmmc_1_set_power(struct device *dev, int slot, int power_on,
245 int vdd)
246{
247 struct omap_hsmmc_host *host =
248 platform_get_drvdata(to_platform_device(dev));
249 int ret;
250
251 if (mmc_slot(host).before_set_reg)
252 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
253
254 if (power_on)
Linus Walleij99fc5132010-09-29 01:08:27 -0400255 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800256 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400257 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800258
259 if (mmc_slot(host).after_set_reg)
260 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
261
262 return ret;
263}
264
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500265static int omap_hsmmc_235_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800266 int vdd)
267{
268 struct omap_hsmmc_host *host =
269 platform_get_drvdata(to_platform_device(dev));
270 int ret = 0;
271
272 /*
273 * If we don't see a Vcc regulator, assume it's a fixed
274 * voltage always-on regulator.
275 */
276 if (!host->vcc)
277 return 0;
278
279 if (mmc_slot(host).before_set_reg)
280 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
281
282 /*
283 * Assume Vcc regulator is used only to power the card ... OMAP
284 * VDDS is used to power the pins, optionally with a transceiver to
285 * support cards using voltages other than VDDS (1.8V nominal). When a
286 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
287 *
288 * In some cases this regulator won't support enable/disable;
289 * e.g. it's a fixed rail for a WLAN chip.
290 *
291 * In other cases vcc_aux switches interface power. Example, for
292 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
293 * chips/cards need an interface voltage rail too.
294 */
295 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400296 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800297 /* Enable interface voltage rail, if needed */
298 if (ret == 0 && host->vcc_aux) {
299 ret = regulator_enable(host->vcc_aux);
300 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400301 ret = mmc_regulator_set_ocr(host->mmc,
302 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800303 }
304 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400305 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800306 if (host->vcc_aux)
307 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400308 if (!ret) {
309 /* Then proceed to shut down the local regulator */
310 ret = mmc_regulator_set_ocr(host->mmc,
311 host->vcc, 0);
312 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800313 }
314
315 if (mmc_slot(host).after_set_reg)
316 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
317
318 return ret;
319}
320
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500321static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on,
322 int vdd)
323{
324 return 0;
325}
326
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800327static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
328{
329 struct regulator *reg;
330 int ret = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700331 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800332
333 switch (host->id) {
334 case OMAP_MMC1_DEVID:
335 /* On-chip level shifting via PBIAS0/PBIAS1 */
336 mmc_slot(host).set_power = omap_hsmmc_1_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800337 break;
338 case OMAP_MMC2_DEVID:
339 case OMAP_MMC3_DEVID:
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500340 case OMAP_MMC5_DEVID:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800341 /* Off-chip level shifting, or none */
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500342 mmc_slot(host).set_power = omap_hsmmc_235_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800343 break;
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500344 case OMAP_MMC4_DEVID:
345 mmc_slot(host).set_power = omap_hsmmc_4_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800346 default:
347 pr_err("MMC%d configuration not supported!\n", host->id);
348 return -EINVAL;
349 }
350
351 reg = regulator_get(host->dev, "vmmc");
352 if (IS_ERR(reg)) {
353 dev_dbg(host->dev, "vmmc regulator missing\n");
354 /*
355 * HACK: until fixed.c regulator is usable,
356 * we don't require a main regulator
357 * for MMC2 or MMC3
358 */
359 if (host->id == OMAP_MMC1_DEVID) {
360 ret = PTR_ERR(reg);
361 goto err;
362 }
363 } else {
364 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700365 ocr_value = mmc_regulator_get_ocrmask(reg);
366 if (!mmc_slot(host).ocr_mask) {
367 mmc_slot(host).ocr_mask = ocr_value;
368 } else {
369 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
370 pr_err("MMC%d ocrmask %x is not supported\n",
371 host->id, mmc_slot(host).ocr_mask);
372 mmc_slot(host).ocr_mask = 0;
373 return -EINVAL;
374 }
375 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800376
377 /* Allow an aux regulator */
378 reg = regulator_get(host->dev, "vmmc_aux");
379 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
380
Balaji T Kb1c1df72011-05-30 19:55:34 +0530381 /* For eMMC do not power off when not in sleep state */
382 if (mmc_slot(host).no_regulator_off_init)
383 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800384 /*
385 * UGLY HACK: workaround regulator framework bugs.
386 * When the bootloader leaves a supply active, it's
387 * initialized with zero usecount ... and we can't
388 * disable it without first enabling it. Until the
389 * framework is fixed, we need a workaround like this
390 * (which is safe for MMC, but not in general).
391 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300392 if (regulator_is_enabled(host->vcc) > 0 ||
393 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
394 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
395
396 mmc_slot(host).set_power(host->dev, host->slot_id,
397 1, vdd);
398 mmc_slot(host).set_power(host->dev, host->slot_id,
399 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800400 }
401 }
402
403 return 0;
404
405err:
406 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800407 return ret;
408}
409
410static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
411{
412 regulator_put(host->vcc);
413 regulator_put(host->vcc_aux);
414 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800415}
416
Adrian Hunterb702b102010-02-15 10:03:35 -0800417static inline int omap_hsmmc_have_reg(void)
418{
419 return 1;
420}
421
422#else
423
424static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
425{
426 return -EINVAL;
427}
428
429static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
430{
431}
432
433static inline int omap_hsmmc_have_reg(void)
434{
435 return 0;
436}
437
438#endif
439
440static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
441{
442 int ret;
443
444 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800445 if (pdata->slots[0].cover)
446 pdata->slots[0].get_cover_state =
447 omap_hsmmc_get_cover_state;
448 else
449 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
450 pdata->slots[0].card_detect_irq =
451 gpio_to_irq(pdata->slots[0].switch_pin);
452 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
453 if (ret)
454 return ret;
455 ret = gpio_direction_input(pdata->slots[0].switch_pin);
456 if (ret)
457 goto err_free_sp;
458 } else
459 pdata->slots[0].switch_pin = -EINVAL;
460
461 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
462 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
463 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
464 if (ret)
465 goto err_free_cd;
466 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
467 if (ret)
468 goto err_free_wp;
469 } else
470 pdata->slots[0].gpio_wp = -EINVAL;
471
472 return 0;
473
474err_free_wp:
475 gpio_free(pdata->slots[0].gpio_wp);
476err_free_cd:
477 if (gpio_is_valid(pdata->slots[0].switch_pin))
478err_free_sp:
479 gpio_free(pdata->slots[0].switch_pin);
480 return ret;
481}
482
483static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
484{
485 if (gpio_is_valid(pdata->slots[0].gpio_wp))
486 gpio_free(pdata->slots[0].gpio_wp);
487 if (gpio_is_valid(pdata->slots[0].switch_pin))
488 gpio_free(pdata->slots[0].switch_pin);
489}
490
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100491/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300492 * Start clock to the card
493 */
494static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
495{
496 OMAP_HSMMC_WRITE(host->base, SYSCTL,
497 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
498}
499
500/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100501 * Stop clock to the card
502 */
Denis Karpov70a33412009-09-22 16:44:59 -0700503static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100504{
505 OMAP_HSMMC_WRITE(host->base, SYSCTL,
506 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
507 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
508 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
509}
510
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700511static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
512 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700513{
514 unsigned int irq_mask;
515
516 if (host->use_dma)
517 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
518 else
519 irq_mask = INT_EN_MASK;
520
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700521 /* Disable timeout for erases */
522 if (cmd->opcode == MMC_ERASE)
523 irq_mask &= ~DTO_ENABLE;
524
Adrian Hunterb4175772010-05-26 14:42:06 -0700525 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
526 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
527 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
528}
529
530static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
531{
532 OMAP_HSMMC_WRITE(host->base, ISE, 0);
533 OMAP_HSMMC_WRITE(host->base, IE, 0);
534 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
535}
536
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300537/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530538static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300539{
540 u16 dsor = 0;
541
542 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530543 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300544 if (dsor > 250)
545 dsor = 250;
546 }
547
548 return dsor;
549}
550
Andy Shevchenko5934df22011-05-06 12:14:06 +0300551static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
552{
553 struct mmc_ios *ios = &host->mmc->ios;
554 unsigned long regval;
555 unsigned long timeout;
556
557 dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
558
559 omap_hsmmc_stop_clock(host);
560
561 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
562 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530563 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300564 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
565 OMAP_HSMMC_WRITE(host->base, SYSCTL,
566 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
567
568 /* Wait till the ICS bit is set */
569 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
570 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
571 && time_before(jiffies, timeout))
572 cpu_relax();
573
574 omap_hsmmc_start_clock(host);
575}
576
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400577static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
578{
579 struct mmc_ios *ios = &host->mmc->ios;
580 u32 con;
581
582 con = OMAP_HSMMC_READ(host->base, CON);
583 switch (ios->bus_width) {
584 case MMC_BUS_WIDTH_8:
585 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
586 break;
587 case MMC_BUS_WIDTH_4:
588 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
589 OMAP_HSMMC_WRITE(host->base, HCTL,
590 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
591 break;
592 case MMC_BUS_WIDTH_1:
593 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
594 OMAP_HSMMC_WRITE(host->base, HCTL,
595 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
596 break;
597 }
598}
599
600static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
601{
602 struct mmc_ios *ios = &host->mmc->ios;
603 u32 con;
604
605 con = OMAP_HSMMC_READ(host->base, CON);
606 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
607 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
608 else
609 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
610}
611
Denis Karpov11dd62a2009-09-22 16:44:43 -0700612#ifdef CONFIG_PM
613
614/*
615 * Restore the MMC host context, if it was lost as result of a
616 * power state change.
617 */
Denis Karpov70a33412009-09-22 16:44:59 -0700618static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700619{
620 struct mmc_ios *ios = &host->mmc->ios;
621 struct omap_mmc_platform_data *pdata = host->pdata;
622 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400623 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700624 unsigned long timeout;
625
626 if (pdata->get_context_loss_count) {
627 context_loss = pdata->get_context_loss_count(host->dev);
628 if (context_loss < 0)
629 return 1;
630 }
631
632 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
633 context_loss == host->context_loss ? "not " : "");
634 if (host->context_loss == context_loss)
635 return 1;
636
637 /* Wait for hardware reset */
638 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
639 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
640 && time_before(jiffies, timeout))
641 ;
642
643 /* Do software reset */
644 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
645 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
646 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
647 && time_before(jiffies, timeout))
648 ;
649
650 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
651 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
652
Balaji T Kc2200ef2012-03-07 09:55:30 -0500653 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700654 if (host->power_mode != MMC_POWER_OFF &&
655 (1 << ios->vdd) <= MMC_VDD_23_24)
656 hctl = SDVS18;
657 else
658 hctl = SDVS30;
659 capa = VS30 | VS18;
660 } else {
661 hctl = SDVS18;
662 capa = VS18;
663 }
664
665 OMAP_HSMMC_WRITE(host->base, HCTL,
666 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
667
668 OMAP_HSMMC_WRITE(host->base, CAPA,
669 OMAP_HSMMC_READ(host->base, CAPA) | capa);
670
671 OMAP_HSMMC_WRITE(host->base, HCTL,
672 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
673
674 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
675 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
676 && time_before(jiffies, timeout))
677 ;
678
Adrian Hunterb4175772010-05-26 14:42:06 -0700679 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700680
681 /* Do not initialize card-specific things if the power is off */
682 if (host->power_mode == MMC_POWER_OFF)
683 goto out;
684
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400685 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700686
Andy Shevchenko5934df22011-05-06 12:14:06 +0300687 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700688
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400689 omap_hsmmc_set_bus_mode(host);
690
Denis Karpov11dd62a2009-09-22 16:44:43 -0700691out:
692 host->context_loss = context_loss;
693
694 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
695 return 0;
696}
697
698/*
699 * Save the MMC host context (store the number of power state changes so far).
700 */
Denis Karpov70a33412009-09-22 16:44:59 -0700701static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700702{
703 struct omap_mmc_platform_data *pdata = host->pdata;
704 int context_loss;
705
706 if (pdata->get_context_loss_count) {
707 context_loss = pdata->get_context_loss_count(host->dev);
708 if (context_loss < 0)
709 return;
710 host->context_loss = context_loss;
711 }
712}
713
714#else
715
Denis Karpov70a33412009-09-22 16:44:59 -0700716static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700717{
718 return 0;
719}
720
Denis Karpov70a33412009-09-22 16:44:59 -0700721static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700722{
723}
724
725#endif
726
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100727/*
728 * Send init stream sequence to card
729 * before sending IDLE command
730 */
Denis Karpov70a33412009-09-22 16:44:59 -0700731static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100732{
733 int reg = 0;
734 unsigned long timeout;
735
Adrian Hunterb62f6222009-09-22 16:45:01 -0700736 if (host->protect_card)
737 return;
738
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100739 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700740
741 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100742 OMAP_HSMMC_WRITE(host->base, CON,
743 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
744 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
745
746 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
747 while ((reg != CC) && time_before(jiffies, timeout))
748 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
749
750 OMAP_HSMMC_WRITE(host->base, CON,
751 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700752
753 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
754 OMAP_HSMMC_READ(host->base, STAT);
755
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100756 enable_irq(host->irq);
757}
758
759static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700760int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100761{
762 int r = 1;
763
Denis Karpov191d1f12009-09-22 16:44:55 -0700764 if (mmc_slot(host).get_cover_state)
765 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100766 return r;
767}
768
769static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700770omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100771 char *buf)
772{
773 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700774 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100775
Denis Karpov70a33412009-09-22 16:44:59 -0700776 return sprintf(buf, "%s\n",
777 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100778}
779
Denis Karpov70a33412009-09-22 16:44:59 -0700780static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100781
782static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700783omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100784 char *buf)
785{
786 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700787 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100788
Denis Karpov191d1f12009-09-22 16:44:55 -0700789 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100790}
791
Denis Karpov70a33412009-09-22 16:44:59 -0700792static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100793
794/*
795 * Configure the response type and send the cmd.
796 */
797static void
Denis Karpov70a33412009-09-22 16:44:59 -0700798omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100799 struct mmc_data *data)
800{
801 int cmdreg = 0, resptype = 0, cmdtype = 0;
802
803 dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
804 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
805 host->cmd = cmd;
806
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700807 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100808
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200809 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100810 if (cmd->flags & MMC_RSP_PRESENT) {
811 if (cmd->flags & MMC_RSP_136)
812 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200813 else if (cmd->flags & MMC_RSP_BUSY) {
814 resptype = 3;
815 host->response_busy = 1;
816 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100817 resptype = 2;
818 }
819
820 /*
821 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
822 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
823 * a val of 0x3, rest 0x0.
824 */
825 if (cmd == host->mrq->stop)
826 cmdtype = 0x3;
827
828 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
829
830 if (data) {
831 cmdreg |= DP_SELECT | MSBS | BCE;
832 if (data->flags & MMC_DATA_READ)
833 cmdreg |= DDIR;
834 else
835 cmdreg &= ~(DDIR);
836 }
837
838 if (host->use_dma)
839 cmdreg |= DMA_EN;
840
Adrian Hunterb4175772010-05-26 14:42:06 -0700841 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700842
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100843 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
844 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
845}
846
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200847static int
Denis Karpov70a33412009-09-22 16:44:59 -0700848omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200849{
850 if (data->flags & MMC_DATA_WRITE)
851 return DMA_TO_DEVICE;
852 else
853 return DMA_FROM_DEVICE;
854}
855
Adrian Hunterb4175772010-05-26 14:42:06 -0700856static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
857{
858 int dma_ch;
859
860 spin_lock(&host->irq_lock);
861 host->req_in_progress = 0;
862 dma_ch = host->dma_ch;
863 spin_unlock(&host->irq_lock);
864
865 omap_hsmmc_disable_irq(host);
866 /* Do not complete the request if DMA is still in progress */
867 if (mrq->data && host->use_dma && dma_ch != -1)
868 return;
869 host->mrq = NULL;
870 mmc_request_done(host->mmc, mrq);
871}
872
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100873/*
874 * Notify the transfer complete to MMC core
875 */
876static void
Denis Karpov70a33412009-09-22 16:44:59 -0700877omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100878{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200879 if (!data) {
880 struct mmc_request *mrq = host->mrq;
881
Adrian Hunter23050102009-09-22 16:44:57 -0700882 /* TC before CC from CMD6 - don't know why, but it happens */
883 if (host->cmd && host->cmd->opcode == 6 &&
884 host->response_busy) {
885 host->response_busy = 0;
886 return;
887 }
888
Adrian Hunterb4175772010-05-26 14:42:06 -0700889 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200890 return;
891 }
892
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100893 host->data = NULL;
894
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100895 if (!data->error)
896 data->bytes_xfered += data->blocks * (data->blksz);
897 else
898 data->bytes_xfered = 0;
899
900 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700901 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100902 return;
903 }
Denis Karpov70a33412009-09-22 16:44:59 -0700904 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100905}
906
907/*
908 * Notify the core about command completion
909 */
910static void
Denis Karpov70a33412009-09-22 16:44:59 -0700911omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100912{
913 host->cmd = NULL;
914
915 if (cmd->flags & MMC_RSP_PRESENT) {
916 if (cmd->flags & MMC_RSP_136) {
917 /* response type 2 */
918 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
919 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
920 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
921 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
922 } else {
923 /* response types 1, 1b, 3, 4, 5, 6 */
924 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
925 }
926 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700927 if ((host->data == NULL && !host->response_busy) || cmd->error)
928 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100929}
930
931/*
932 * DMA clean up for command errors
933 */
Denis Karpov70a33412009-09-22 16:44:59 -0700934static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100935{
Adrian Hunterb4175772010-05-26 14:42:06 -0700936 int dma_ch;
937
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200938 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100939
Adrian Hunterb4175772010-05-26 14:42:06 -0700940 spin_lock(&host->irq_lock);
941 dma_ch = host->dma_ch;
942 host->dma_ch = -1;
943 spin_unlock(&host->irq_lock);
944
945 if (host->use_dma && dma_ch != -1) {
Per Forlina9120c32011-06-17 20:14:21 +0200946 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg,
947 host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700948 omap_hsmmc_get_dma_dir(host, host->data));
Adrian Hunterb4175772010-05-26 14:42:06 -0700949 omap_free_dma(dma_ch);
Per Forlin053bf342011-11-07 21:55:11 +0530950 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100951 }
952 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100953}
954
955/*
956 * Readable error output
957 */
958#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300959static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100960{
961 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700962 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300963 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
964 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
965 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
966 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100967 };
968 char res[256];
969 char *buf = res;
970 int len, i;
971
972 len = sprintf(buf, "MMC IRQ 0x%x :", status);
973 buf += len;
974
Denis Karpov70a33412009-09-22 16:44:59 -0700975 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100976 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700977 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100978 buf += len;
979 }
980
981 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
982}
Adrian Hunter699b9582011-05-06 12:14:01 +0300983#else
984static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
985 u32 status)
986{
987}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100988#endif /* CONFIG_MMC_DEBUG */
989
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100990/*
991 * MMC controller internal state machines reset
992 *
993 * Used to reset command or data internal state machines, using respectively
994 * SRC or SRD bit of SYSCTL register
995 * Can be called from interrupt context
996 */
Denis Karpov70a33412009-09-22 16:44:59 -0700997static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
998 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100999{
1000 unsigned long i = 0;
1001 unsigned long limit = (loops_per_jiffy *
1002 msecs_to_jiffies(MMC_TIMEOUT_MS));
1003
1004 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1005 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1006
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001007 /*
1008 * OMAP4 ES2 and greater has an updated reset logic.
1009 * Monitor a 0->1 transition first
1010 */
1011 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001012 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001013 && (i++ < limit))
1014 cpu_relax();
1015 }
1016 i = 0;
1017
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001018 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1019 (i++ < limit))
1020 cpu_relax();
1021
1022 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1023 dev_err(mmc_dev(host->mmc),
1024 "Timeout waiting on controller reset in %s\n",
1025 __func__);
1026}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001027
Adrian Hunterb4175772010-05-26 14:42:06 -07001028static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001029{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001030 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001031 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001032
Adrian Hunterb4175772010-05-26 14:42:06 -07001033 if (!host->req_in_progress) {
1034 do {
1035 OMAP_HSMMC_WRITE(host->base, STAT, status);
1036 /* Flush posted write */
1037 status = OMAP_HSMMC_READ(host->base, STAT);
1038 } while (status & INT_EN_MASK);
1039 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001040 }
1041
1042 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001043 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1044
1045 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001046 omap_hsmmc_dbg_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001047 if ((status & CMD_TIMEOUT) ||
1048 (status & CMD_CRC)) {
1049 if (host->cmd) {
1050 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001051 omap_hsmmc_reset_controller_fsm(host,
1052 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001053 host->cmd->error = -ETIMEDOUT;
1054 } else {
1055 host->cmd->error = -EILSEQ;
1056 }
1057 end_cmd = 1;
1058 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001059 if (host->data || host->response_busy) {
1060 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001061 omap_hsmmc_dma_cleanup(host,
1062 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001063 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001064 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001065 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001066 }
1067 if ((status & DATA_TIMEOUT) ||
1068 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001069 if (host->data || host->response_busy) {
1070 int err = (status & DATA_TIMEOUT) ?
1071 -ETIMEDOUT : -EILSEQ;
1072
1073 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001074 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001075 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001076 host->mrq->cmd->error = err;
1077 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001078 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001079 end_trans = 1;
1080 }
1081 }
1082 if (status & CARD_ERR) {
1083 dev_dbg(mmc_dev(host->mmc),
1084 "Ignoring card err CMD%d\n", host->cmd->opcode);
1085 if (host->cmd)
1086 end_cmd = 1;
1087 if (host->data)
1088 end_trans = 1;
1089 }
1090 }
1091
1092 OMAP_HSMMC_WRITE(host->base, STAT, status);
1093
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001094 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001095 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001096 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001097 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001098}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001099
Adrian Hunterb4175772010-05-26 14:42:06 -07001100/*
1101 * MMC controller IRQ handler
1102 */
1103static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1104{
1105 struct omap_hsmmc_host *host = dev_id;
1106 int status;
1107
1108 status = OMAP_HSMMC_READ(host->base, STAT);
1109 do {
1110 omap_hsmmc_do_irq(host, status);
1111 /* Flush posted write */
1112 status = OMAP_HSMMC_READ(host->base, STAT);
1113 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001114
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001115 return IRQ_HANDLED;
1116}
1117
Denis Karpov70a33412009-09-22 16:44:59 -07001118static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001119{
1120 unsigned long i;
1121
1122 OMAP_HSMMC_WRITE(host->base, HCTL,
1123 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1124 for (i = 0; i < loops_per_jiffy; i++) {
1125 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1126 break;
1127 cpu_relax();
1128 }
1129}
1130
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001131/*
David Brownelleb250822009-02-17 14:49:01 -08001132 * Switch MMC interface voltage ... only relevant for MMC1.
1133 *
1134 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1135 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1136 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001137 */
Denis Karpov70a33412009-09-22 16:44:59 -07001138static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001139{
1140 u32 reg_val = 0;
1141 int ret;
1142
1143 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301144 pm_runtime_put_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001145 if (host->got_dbclk)
1146 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001147
1148 /* Turn the power off */
1149 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001150
1151 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001152 if (!ret)
1153 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1154 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301155 pm_runtime_get_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001156 if (host->got_dbclk)
1157 clk_enable(host->dbclk);
1158
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001159 if (ret != 0)
1160 goto err;
1161
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001162 OMAP_HSMMC_WRITE(host->base, HCTL,
1163 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1164 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001165
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001166 /*
1167 * If a MMC dual voltage card is detected, the set_ios fn calls
1168 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001169 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001170 *
David Brownelleb250822009-02-17 14:49:01 -08001171 * Cope with a bit of slop in the range ... per data sheets:
1172 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1173 * but recommended values are 1.71V to 1.89V
1174 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1175 * but recommended values are 2.7V to 3.3V
1176 *
1177 * Board setup code shouldn't permit anything very out-of-range.
1178 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1179 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001180 */
David Brownelleb250822009-02-17 14:49:01 -08001181 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001182 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001183 else
1184 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001185
1186 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001187 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001188
1189 return 0;
1190err:
1191 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1192 return ret;
1193}
1194
Adrian Hunterb62f6222009-09-22 16:45:01 -07001195/* Protect the card while the cover is open */
1196static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1197{
1198 if (!mmc_slot(host).get_cover_state)
1199 return;
1200
1201 host->reqs_blocked = 0;
1202 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1203 if (host->protect_card) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301204 pr_info("%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001205 "card is now accessible\n",
1206 mmc_hostname(host->mmc));
1207 host->protect_card = 0;
1208 }
1209 } else {
1210 if (!host->protect_card) {
Linus Torvalds3f8ddb02011-11-03 08:05:35 -07001211 pr_info("%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001212 "card is now inaccessible\n",
1213 mmc_hostname(host->mmc));
1214 host->protect_card = 1;
1215 }
1216 }
1217}
1218
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001219/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001220 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001221 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001222static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001223{
NeilBrown7efab4f2011-12-30 12:35:13 +11001224 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001225 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001226 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001227
Adrian Huntera6b22402009-09-22 16:44:45 -07001228 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001229 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001230
1231 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001232
Denis Karpov191d1f12009-09-22 16:44:55 -07001233 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001234 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001235 else {
1236 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001237 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001238 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001239
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001240 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001241 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001242 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001243 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001244 return IRQ_HANDLED;
1245}
1246
Denis Karpov70a33412009-09-22 16:44:59 -07001247static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001248 struct mmc_data *data)
1249{
1250 int sync_dev;
1251
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001252 if (data->flags & MMC_DATA_WRITE)
1253 sync_dev = host->dma_line_tx;
1254 else
1255 sync_dev = host->dma_line_rx;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001256 return sync_dev;
1257}
1258
Denis Karpov70a33412009-09-22 16:44:59 -07001259static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001260 struct mmc_data *data,
1261 struct scatterlist *sgl)
1262{
1263 int blksz, nblk, dma_ch;
1264
1265 dma_ch = host->dma_ch;
1266 if (data->flags & MMC_DATA_WRITE) {
1267 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1268 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1269 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1270 sg_dma_address(sgl), 0, 0);
1271 } else {
1272 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
Denis Karpov191d1f12009-09-22 16:44:55 -07001273 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001274 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1275 sg_dma_address(sgl), 0, 0);
1276 }
1277
1278 blksz = host->data->blksz;
1279 nblk = sg_dma_len(sgl) / blksz;
1280
1281 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1282 blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
Denis Karpov70a33412009-09-22 16:44:59 -07001283 omap_hsmmc_get_dma_sync_dev(host, data),
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001284 !(data->flags & MMC_DATA_WRITE));
1285
1286 omap_start_dma(dma_ch);
1287}
1288
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001289/*
1290 * DMA call back function
1291 */
Adrian Hunterb4175772010-05-26 14:42:06 -07001292static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001293{
Adrian Hunterb4175772010-05-26 14:42:06 -07001294 struct omap_hsmmc_host *host = cb_data;
Adrian Hunter770d7432011-05-06 12:14:11 +03001295 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001296 int dma_ch, req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001297
Venkatraman Sf3584e52010-08-10 18:01:54 -07001298 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1299 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1300 ch_status);
1301 return;
1302 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001303
Adrian Hunterb4175772010-05-26 14:42:06 -07001304 spin_lock(&host->irq_lock);
1305 if (host->dma_ch < 0) {
1306 spin_unlock(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001307 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001308 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001309
Adrian Hunter770d7432011-05-06 12:14:11 +03001310 data = host->mrq->data;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001311 host->dma_sg_idx++;
1312 if (host->dma_sg_idx < host->dma_len) {
1313 /* Fire up the next transfer. */
Adrian Hunterb4175772010-05-26 14:42:06 -07001314 omap_hsmmc_config_dma_params(host, data,
1315 data->sg + host->dma_sg_idx);
1316 spin_unlock(&host->irq_lock);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001317 return;
1318 }
1319
Per Forlin9782aff2011-07-01 18:55:23 +02001320 if (!data->host_cookie)
1321 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1322 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001323
1324 req_in_progress = host->req_in_progress;
1325 dma_ch = host->dma_ch;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001326 host->dma_ch = -1;
Adrian Hunterb4175772010-05-26 14:42:06 -07001327 spin_unlock(&host->irq_lock);
1328
1329 omap_free_dma(dma_ch);
1330
1331 /* If DMA has finished after TC, complete the request */
1332 if (!req_in_progress) {
1333 struct mmc_request *mrq = host->mrq;
1334
1335 host->mrq = NULL;
1336 mmc_request_done(host->mmc, mrq);
1337 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001338}
1339
Per Forlin9782aff2011-07-01 18:55:23 +02001340static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1341 struct mmc_data *data,
1342 struct omap_hsmmc_next *next)
1343{
1344 int dma_len;
1345
1346 if (!next && data->host_cookie &&
1347 data->host_cookie != host->next_data.cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301348 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001349 " host->next_data.cookie %d\n",
1350 __func__, data->host_cookie, host->next_data.cookie);
1351 data->host_cookie = 0;
1352 }
1353
1354 /* Check if next job is already prepared */
1355 if (next ||
1356 (!next && data->host_cookie != host->next_data.cookie)) {
1357 dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1358 data->sg_len,
1359 omap_hsmmc_get_dma_dir(host, data));
1360
1361 } else {
1362 dma_len = host->next_data.dma_len;
1363 host->next_data.dma_len = 0;
1364 }
1365
1366
1367 if (dma_len == 0)
1368 return -EINVAL;
1369
1370 if (next) {
1371 next->dma_len = dma_len;
1372 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1373 } else
1374 host->dma_len = dma_len;
1375
1376 return 0;
1377}
1378
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001379/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001380 * Routine to configure and start DMA for the MMC card
1381 */
Denis Karpov70a33412009-09-22 16:44:59 -07001382static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1383 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001384{
Adrian Hunterb4175772010-05-26 14:42:06 -07001385 int dma_ch = 0, ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001386 struct mmc_data *data = req->data;
1387
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001388 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001389 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001390 struct scatterlist *sgl;
1391
1392 sgl = data->sg + i;
1393 if (sgl->length % data->blksz)
1394 return -EINVAL;
1395 }
1396 if ((data->blksz % 4) != 0)
1397 /* REVISIT: The MMC buffer increments only when MSB is written.
1398 * Return error for blksz which is non multiple of four.
1399 */
1400 return -EINVAL;
1401
Adrian Hunterb4175772010-05-26 14:42:06 -07001402 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001403
Denis Karpov70a33412009-09-22 16:44:59 -07001404 ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1405 "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001406 if (ret != 0) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001407 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001408 "%s: omap_request_dma() failed with %d\n",
1409 mmc_hostname(host->mmc), ret);
1410 return ret;
1411 }
Per Forlin9782aff2011-07-01 18:55:23 +02001412 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL);
1413 if (ret)
1414 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001415
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001416 host->dma_ch = dma_ch;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001417 host->dma_sg_idx = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001418
Denis Karpov70a33412009-09-22 16:44:59 -07001419 omap_hsmmc_config_dma_params(host, data, data->sg);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001420
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001421 return 0;
1422}
1423
Denis Karpov70a33412009-09-22 16:44:59 -07001424static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001425 unsigned int timeout_ns,
1426 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001427{
1428 unsigned int timeout, cycle_ns;
1429 uint32_t reg, clkd, dto = 0;
1430
1431 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1432 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1433 if (clkd == 0)
1434 clkd = 1;
1435
1436 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001437 timeout = timeout_ns / cycle_ns;
1438 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001439 if (timeout) {
1440 while ((timeout & 0x80000000) == 0) {
1441 dto += 1;
1442 timeout <<= 1;
1443 }
1444 dto = 31 - dto;
1445 timeout <<= 1;
1446 if (timeout && dto)
1447 dto += 1;
1448 if (dto >= 13)
1449 dto -= 13;
1450 else
1451 dto = 0;
1452 if (dto > 14)
1453 dto = 14;
1454 }
1455
1456 reg &= ~DTO_MASK;
1457 reg |= dto << DTO_SHIFT;
1458 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1459}
1460
1461/*
1462 * Configure block length for MMC/SD cards and initiate the transfer.
1463 */
1464static int
Denis Karpov70a33412009-09-22 16:44:59 -07001465omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001466{
1467 int ret;
1468 host->data = req->data;
1469
1470 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001471 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001472 /*
1473 * Set an arbitrary 100ms data timeout for commands with
1474 * busy signal.
1475 */
1476 if (req->cmd->flags & MMC_RSP_BUSY)
1477 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001478 return 0;
1479 }
1480
1481 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1482 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001483 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001484
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001485 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001486 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001487 if (ret != 0) {
1488 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1489 return ret;
1490 }
1491 }
1492 return 0;
1493}
1494
Per Forlin9782aff2011-07-01 18:55:23 +02001495static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1496 int err)
1497{
1498 struct omap_hsmmc_host *host = mmc_priv(mmc);
1499 struct mmc_data *data = mrq->data;
1500
1501 if (host->use_dma) {
Per Forlin053bf342011-11-07 21:55:11 +05301502 if (data->host_cookie)
1503 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
1504 data->sg_len,
1505 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001506 data->host_cookie = 0;
1507 }
1508}
1509
1510static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1511 bool is_first_req)
1512{
1513 struct omap_hsmmc_host *host = mmc_priv(mmc);
1514
1515 if (mrq->data->host_cookie) {
1516 mrq->data->host_cookie = 0;
1517 return ;
1518 }
1519
1520 if (host->use_dma)
1521 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
1522 &host->next_data))
1523 mrq->data->host_cookie = 0;
1524}
1525
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001526/*
1527 * Request function. for read/write operation
1528 */
Denis Karpov70a33412009-09-22 16:44:59 -07001529static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001530{
Denis Karpov70a33412009-09-22 16:44:59 -07001531 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001532 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001533
Adrian Hunterb4175772010-05-26 14:42:06 -07001534 BUG_ON(host->req_in_progress);
1535 BUG_ON(host->dma_ch != -1);
1536 if (host->protect_card) {
1537 if (host->reqs_blocked < 3) {
1538 /*
1539 * Ensure the controller is left in a consistent
1540 * state by resetting the command and data state
1541 * machines.
1542 */
1543 omap_hsmmc_reset_controller_fsm(host, SRD);
1544 omap_hsmmc_reset_controller_fsm(host, SRC);
1545 host->reqs_blocked += 1;
1546 }
1547 req->cmd->error = -EBADF;
1548 if (req->data)
1549 req->data->error = -EBADF;
1550 req->cmd->retries = 0;
1551 mmc_request_done(mmc, req);
1552 return;
1553 } else if (host->reqs_blocked)
1554 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001555 WARN_ON(host->mrq != NULL);
1556 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001557 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001558 if (err) {
1559 req->cmd->error = err;
1560 if (req->data)
1561 req->data->error = err;
1562 host->mrq = NULL;
1563 mmc_request_done(mmc, req);
1564 return;
1565 }
1566
Denis Karpov70a33412009-09-22 16:44:59 -07001567 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001568}
1569
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001570/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001571static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001572{
Denis Karpov70a33412009-09-22 16:44:59 -07001573 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001574 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001575
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301576 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001577
Adrian Huntera3621462009-09-22 16:44:42 -07001578 if (ios->power_mode != host->power_mode) {
1579 switch (ios->power_mode) {
1580 case MMC_POWER_OFF:
1581 mmc_slot(host).set_power(host->dev, host->slot_id,
1582 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001583 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001584 break;
1585 case MMC_POWER_UP:
1586 mmc_slot(host).set_power(host->dev, host->slot_id,
1587 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001588 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001589 break;
1590 case MMC_POWER_ON:
1591 do_send_init_stream = 1;
1592 break;
1593 }
1594 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001595 }
1596
Denis Karpovdd498ef2009-09-22 16:44:49 -07001597 /* FIXME: set registers based only on changes to ios */
1598
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001599 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001600
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301601 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001602 /* Only MMC1 can interface at 3V without some flavor
1603 * of external transceiver; but they all handle 1.8V.
1604 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001605 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1606 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1607 /*
1608 * The mmc_select_voltage fn of the core does
1609 * not seem to set the power_mode to
1610 * MMC_POWER_UP upon recalculating the voltage.
1611 * vdd 1.8v.
1612 */
Denis Karpov70a33412009-09-22 16:44:59 -07001613 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1614 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001615 "Switch operation failed\n");
1616 }
1617 }
1618
Andy Shevchenko5934df22011-05-06 12:14:06 +03001619 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001620
Adrian Huntera3621462009-09-22 16:44:42 -07001621 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001622 send_init_stream(host);
1623
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001624 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001625
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301626 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001627}
1628
1629static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1630{
Denis Karpov70a33412009-09-22 16:44:59 -07001631 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001632
Denis Karpov191d1f12009-09-22 16:44:55 -07001633 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001634 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001635 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001636}
1637
1638static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1639{
Denis Karpov70a33412009-09-22 16:44:59 -07001640 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001641
Denis Karpov191d1f12009-09-22 16:44:55 -07001642 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001643 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001644 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001645}
1646
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001647static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1648{
1649 struct omap_hsmmc_host *host = mmc_priv(mmc);
1650
1651 if (mmc_slot(host).init_card)
1652 mmc_slot(host).init_card(card);
1653}
1654
Denis Karpov70a33412009-09-22 16:44:59 -07001655static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001656{
1657 u32 hctl, capa, value;
1658
1659 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301660 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001661 hctl = SDVS30;
1662 capa = VS30 | VS18;
1663 } else {
1664 hctl = SDVS18;
1665 capa = VS18;
1666 }
1667
1668 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1669 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1670
1671 value = OMAP_HSMMC_READ(host->base, CAPA);
1672 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1673
1674 /* Set the controller to AUTO IDLE mode */
1675 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1676 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1677
1678 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001679 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001680}
1681
Denis Karpov70a33412009-09-22 16:44:59 -07001682static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001683{
Denis Karpov70a33412009-09-22 16:44:59 -07001684 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001685
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301686 pm_runtime_get_sync(host->dev);
1687
Denis Karpovdd498ef2009-09-22 16:44:49 -07001688 return 0;
1689}
1690
Denis Karpov70a33412009-09-22 16:44:59 -07001691static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001692{
Denis Karpov70a33412009-09-22 16:44:59 -07001693 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001694
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301695 pm_runtime_mark_last_busy(host->dev);
1696 pm_runtime_put_autosuspend(host->dev);
1697
Denis Karpovdd498ef2009-09-22 16:44:49 -07001698 return 0;
1699}
1700
Denis Karpov70a33412009-09-22 16:44:59 -07001701static const struct mmc_host_ops omap_hsmmc_ops = {
1702 .enable = omap_hsmmc_enable_fclk,
1703 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001704 .post_req = omap_hsmmc_post_req,
1705 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001706 .request = omap_hsmmc_request,
1707 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001708 .get_cd = omap_hsmmc_get_cd,
1709 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001710 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001711 /* NYET -- enable_sdio_irq */
1712};
1713
Denis Karpovd900f712009-09-22 16:44:38 -07001714#ifdef CONFIG_DEBUG_FS
1715
Denis Karpov70a33412009-09-22 16:44:59 -07001716static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001717{
1718 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001719 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001720 int context_loss = 0;
1721
Denis Karpov70a33412009-09-22 16:44:59 -07001722 if (host->pdata->get_context_loss_count)
1723 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001724
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001725 seq_printf(s, "mmc%d:\n"
1726 " enabled:\t%d\n"
Denis Karpovdd498ef2009-09-22 16:44:49 -07001727 " dpm_state:\t%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001728 " nesting_cnt:\t%d\n"
Denis Karpov11dd62a2009-09-22 16:44:43 -07001729 " ctx_loss:\t%d:%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001730 "\nregs:\n",
Denis Karpovdd498ef2009-09-22 16:44:49 -07001731 mmc->index, mmc->enabled ? 1 : 0,
1732 host->dpm_state, mmc->nesting_cnt,
Denis Karpov11dd62a2009-09-22 16:44:43 -07001733 host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001734
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301735 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001736 seq_printf(s, "host suspended, can't read registers\n");
1737 return 0;
1738 }
1739
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301740 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001741
1742 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1743 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1744 seq_printf(s, "CON:\t\t0x%08x\n",
1745 OMAP_HSMMC_READ(host->base, CON));
1746 seq_printf(s, "HCTL:\t\t0x%08x\n",
1747 OMAP_HSMMC_READ(host->base, HCTL));
1748 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1749 OMAP_HSMMC_READ(host->base, SYSCTL));
1750 seq_printf(s, "IE:\t\t0x%08x\n",
1751 OMAP_HSMMC_READ(host->base, IE));
1752 seq_printf(s, "ISE:\t\t0x%08x\n",
1753 OMAP_HSMMC_READ(host->base, ISE));
1754 seq_printf(s, "CAPA:\t\t0x%08x\n",
1755 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001756
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301757 pm_runtime_mark_last_busy(host->dev);
1758 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001759
Denis Karpovd900f712009-09-22 16:44:38 -07001760 return 0;
1761}
1762
Denis Karpov70a33412009-09-22 16:44:59 -07001763static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001764{
Denis Karpov70a33412009-09-22 16:44:59 -07001765 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001766}
1767
1768static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001769 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001770 .read = seq_read,
1771 .llseek = seq_lseek,
1772 .release = single_release,
1773};
1774
Denis Karpov70a33412009-09-22 16:44:59 -07001775static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001776{
1777 if (mmc->debugfs_root)
1778 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1779 mmc, &mmc_regs_fops);
1780}
1781
1782#else
1783
Denis Karpov70a33412009-09-22 16:44:59 -07001784static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001785{
1786}
1787
1788#endif
1789
Denis Karpov70a33412009-09-22 16:44:59 -07001790static int __init omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001791{
1792 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1793 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001794 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001795 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001796 int ret, irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001797
1798 if (pdata == NULL) {
1799 dev_err(&pdev->dev, "Platform Data is missing\n");
1800 return -ENXIO;
1801 }
1802
1803 if (pdata->nr_slots == 0) {
1804 dev_err(&pdev->dev, "No Slots\n");
1805 return -ENXIO;
1806 }
1807
1808 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1809 irq = platform_get_irq(pdev, 0);
1810 if (res == NULL || irq < 0)
1811 return -ENXIO;
1812
kishore kadiyala91a0b082010-10-01 16:35:28 -07001813 res->start += pdata->reg_offset;
1814 res->end += pdata->reg_offset;
Chris Ball984b2032011-03-22 16:34:42 -07001815 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001816 if (res == NULL)
1817 return -EBUSY;
1818
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001819 ret = omap_hsmmc_gpio_init(pdata);
1820 if (ret)
1821 goto err;
1822
Denis Karpov70a33412009-09-22 16:44:59 -07001823 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001824 if (!mmc) {
1825 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001826 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001827 }
1828
1829 host = mmc_priv(mmc);
1830 host->mmc = mmc;
1831 host->pdata = pdata;
1832 host->dev = &pdev->dev;
1833 host->use_dma = 1;
1834 host->dev->dma_mask = &pdata->dma_mask;
1835 host->dma_ch = -1;
1836 host->irq = irq;
1837 host->id = pdev->id;
1838 host->slot_id = 0;
1839 host->mapbase = res->start;
1840 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001841 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001842 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001843
1844 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001845
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301846 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001847
Adrian Huntere0eb2422010-02-15 10:03:34 -08001848 /*
1849 * If regulator_disable can only put vcc_aux to sleep then there is
1850 * no off state.
1851 */
1852 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1853 mmc_slot(host).no_off = 1;
1854
Daniel Mackd418ed82012-02-19 13:20:33 +01001855 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1856
1857 if (pdata->max_freq > 0)
1858 mmc->f_max = pdata->max_freq;
1859 else
1860 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001861
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001862 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001863
Russell King6f7607c2009-01-28 10:22:50 +00001864 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001865 if (IS_ERR(host->fclk)) {
1866 ret = PTR_ERR(host->fclk);
1867 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001868 goto err1;
1869 }
1870
Denis Karpov70a33412009-09-22 16:44:59 -07001871 omap_hsmmc_context_save(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001872
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001873 mmc->caps |= MMC_CAP_DISABLE;
Paul Walmsley9b682562011-10-06 14:50:35 -06001874 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1875 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1876 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1877 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001878
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301879 pm_runtime_enable(host->dev);
1880 pm_runtime_get_sync(host->dev);
1881 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1882 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001883
Adrian Hunter2bec0892009-09-22 16:45:02 -07001884 if (cpu_is_omap2430()) {
1885 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1886 /*
1887 * MMC can still work without debounce clock.
1888 */
1889 if (IS_ERR(host->dbclk))
1890 dev_warn(mmc_dev(host->mmc),
1891 "Failed to get debounce clock\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001892 else
Adrian Hunter2bec0892009-09-22 16:45:02 -07001893 host->got_dbclk = 1;
1894
1895 if (host->got_dbclk)
1896 if (clk_enable(host->dbclk) != 0)
1897 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
1898 " clk failed\n");
1899 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001900
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001901 /* Since we do only SG emulation, we can have as many segs
1902 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001903 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001904
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001905 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1906 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1907 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1908 mmc->max_seg_size = mmc->max_req_size;
1909
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001910 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001911 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001912
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001913 mmc->caps |= mmc_slot(host).caps;
1914 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001915 mmc->caps |= MMC_CAP_4_BIT_DATA;
1916
Denis Karpov191d1f12009-09-22 16:44:55 -07001917 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001918 mmc->caps |= MMC_CAP_NONREMOVABLE;
1919
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001920 mmc->pm_caps = mmc_slot(host).pm_caps;
1921
Denis Karpov70a33412009-09-22 16:44:59 -07001922 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001923
Balaji T Kb7bf7732012-03-07 09:55:30 -05001924 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1925 if (!res) {
1926 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001927 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001928 }
Balaji T Kb7bf7732012-03-07 09:55:30 -05001929 host->dma_line_tx = res->start;
1930
1931 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1932 if (!res) {
1933 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1934 goto err_irq;
1935 }
1936 host->dma_line_rx = res->start;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001937
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001938 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001939 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001940 mmc_hostname(mmc), host);
1941 if (ret) {
1942 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
1943 goto err_irq;
1944 }
1945
1946 if (pdata->init != NULL) {
1947 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07001948 dev_dbg(mmc_dev(host->mmc),
1949 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001950 goto err_irq_cd_init;
1951 }
1952 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001953
Adrian Hunterb702b102010-02-15 10:03:35 -08001954 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001955 ret = omap_hsmmc_reg_get(host);
1956 if (ret)
1957 goto err_reg;
1958 host->use_reg = 1;
1959 }
1960
David Brownellb583f262009-05-28 14:04:03 -07001961 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001962
1963 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001964 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001965 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1966 NULL,
1967 omap_hsmmc_detect,
1968 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1969 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001970 if (ret) {
1971 dev_dbg(mmc_dev(host->mmc),
1972 "Unable to grab MMC CD IRQ\n");
1973 goto err_irq_cd;
1974 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001975 pdata->suspend = omap_hsmmc_suspend_cdirq;
1976 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001977 }
1978
Adrian Hunterb4175772010-05-26 14:42:06 -07001979 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001980
Adrian Hunterb62f6222009-09-22 16:45:01 -07001981 omap_hsmmc_protect_card(host);
1982
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001983 mmc_add_host(mmc);
1984
Denis Karpov191d1f12009-09-22 16:44:55 -07001985 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001986 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1987 if (ret < 0)
1988 goto err_slot_name;
1989 }
Denis Karpov191d1f12009-09-22 16:44:55 -07001990 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001991 ret = device_create_file(&mmc->class_dev,
1992 &dev_attr_cover_switch);
1993 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001994 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001995 }
1996
Denis Karpov70a33412009-09-22 16:44:59 -07001997 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301998 pm_runtime_mark_last_busy(host->dev);
1999 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002000
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002001 return 0;
2002
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002003err_slot_name:
2004 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002005 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002006err_irq_cd:
2007 if (host->use_reg)
2008 omap_hsmmc_reg_put(host);
2009err_reg:
2010 if (host->pdata->cleanup)
2011 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002012err_irq_cd_init:
2013 free_irq(host->irq, host);
2014err_irq:
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302015 pm_runtime_mark_last_busy(host->dev);
2016 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002017 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002018 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002019 clk_disable(host->dbclk);
2020 clk_put(host->dbclk);
2021 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002022err1:
2023 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002024 platform_set_drvdata(pdev, NULL);
2025 mmc_free_host(mmc);
2026err_alloc:
2027 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002028err:
Chris Ball984b2032011-03-22 16:34:42 -07002029 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002030 return ret;
2031}
2032
Denis Karpov70a33412009-09-22 16:44:59 -07002033static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002034{
Denis Karpov70a33412009-09-22 16:44:59 -07002035 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002036 struct resource *res;
2037
2038 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302039 pm_runtime_get_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002040 mmc_remove_host(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002041 if (host->use_reg)
2042 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002043 if (host->pdata->cleanup)
2044 host->pdata->cleanup(&pdev->dev);
2045 free_irq(host->irq, host);
2046 if (mmc_slot(host).card_detect_irq)
2047 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002048
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302049 pm_runtime_put_sync(host->dev);
2050 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002051 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002052 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002053 clk_disable(host->dbclk);
2054 clk_put(host->dbclk);
2055 }
2056
2057 mmc_free_host(host->mmc);
2058 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002059 omap_hsmmc_gpio_free(pdev->dev.platform_data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002060 }
2061
2062 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2063 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002064 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002065 platform_set_drvdata(pdev, NULL);
2066
2067 return 0;
2068}
2069
2070#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002071static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002072{
2073 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002074 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002075 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002076
2077 if (host && host->suspended)
2078 return 0;
2079
2080 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302081 pm_runtime_get_sync(host->dev);
Adrian Huntera6b22402009-09-22 16:44:45 -07002082 host->suspended = 1;
2083 if (host->pdata->suspend) {
2084 ret = host->pdata->suspend(&pdev->dev,
2085 host->slot_id);
2086 if (ret) {
2087 dev_dbg(mmc_dev(host->mmc),
2088 "Unable to handle MMC board"
2089 " level suspend\n");
2090 host->suspended = 0;
2091 return ret;
2092 }
2093 }
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002094 ret = mmc_suspend_host(host->mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302095
Eliad Peller31f9d462011-11-22 16:02:17 +02002096 if (ret) {
Adrian Huntera6b22402009-09-22 16:44:45 -07002097 host->suspended = 0;
2098 if (host->pdata->resume) {
2099 ret = host->pdata->resume(&pdev->dev,
2100 host->slot_id);
2101 if (ret)
2102 dev_dbg(mmc_dev(host->mmc),
2103 "Unmask interrupt failed\n");
2104 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002105 goto err;
Adrian Huntera6b22402009-09-22 16:44:45 -07002106 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002107
2108 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2109 omap_hsmmc_disable_irq(host);
2110 OMAP_HSMMC_WRITE(host->base, HCTL,
2111 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2112 }
2113 if (host->got_dbclk)
2114 clk_disable(host->dbclk);
2115
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002116 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002117err:
2118 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002119 return ret;
2120}
2121
2122/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002123static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002124{
2125 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002126 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002127 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002128
2129 if (host && !host->suspended)
2130 return 0;
2131
2132 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302133 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002134
Adrian Hunter2bec0892009-09-22 16:45:02 -07002135 if (host->got_dbclk)
2136 clk_enable(host->dbclk);
2137
Eliad Peller31f9d462011-11-22 16:02:17 +02002138 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2139 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002140
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002141 if (host->pdata->resume) {
2142 ret = host->pdata->resume(&pdev->dev, host->slot_id);
2143 if (ret)
2144 dev_dbg(mmc_dev(host->mmc),
2145 "Unmask interrupt failed\n");
2146 }
2147
Adrian Hunterb62f6222009-09-22 16:45:01 -07002148 omap_hsmmc_protect_card(host);
2149
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002150 /* Notify the core to resume the host */
2151 ret = mmc_resume_host(host->mmc);
2152 if (ret == 0)
2153 host->suspended = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302154
2155 pm_runtime_mark_last_busy(host->dev);
2156 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002157 }
2158
2159 return ret;
2160
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002161}
2162
2163#else
Denis Karpov70a33412009-09-22 16:44:59 -07002164#define omap_hsmmc_suspend NULL
2165#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002166#endif
2167
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302168static int omap_hsmmc_runtime_suspend(struct device *dev)
2169{
2170 struct omap_hsmmc_host *host;
2171
2172 host = platform_get_drvdata(to_platform_device(dev));
2173 omap_hsmmc_context_save(host);
2174 dev_dbg(mmc_dev(host->mmc), "disabled\n");
2175
2176 return 0;
2177}
2178
2179static int omap_hsmmc_runtime_resume(struct device *dev)
2180{
2181 struct omap_hsmmc_host *host;
2182
2183 host = platform_get_drvdata(to_platform_device(dev));
2184 omap_hsmmc_context_restore(host);
2185 dev_dbg(mmc_dev(host->mmc), "enabled\n");
2186
2187 return 0;
2188}
2189
Kevin Hilmana791daa2010-05-26 14:42:07 -07002190static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002191 .suspend = omap_hsmmc_suspend,
2192 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302193 .runtime_suspend = omap_hsmmc_runtime_suspend,
2194 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002195};
2196
2197static struct platform_driver omap_hsmmc_driver = {
2198 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002199 .driver = {
2200 .name = DRIVER_NAME,
2201 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002202 .pm = &omap_hsmmc_dev_pm_ops,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002203 },
2204};
2205
Denis Karpov70a33412009-09-22 16:44:59 -07002206static int __init omap_hsmmc_init(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002207{
2208 /* Register the MMC driver */
Roger Quadros87532982009-10-26 16:49:38 -07002209 return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002210}
2211
Denis Karpov70a33412009-09-22 16:44:59 -07002212static void __exit omap_hsmmc_cleanup(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002213{
2214 /* Unregister MMC driver */
Denis Karpov70a33412009-09-22 16:44:59 -07002215 platform_driver_unregister(&omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002216}
2217
Denis Karpov70a33412009-09-22 16:44:59 -07002218module_init(omap_hsmmc_init);
2219module_exit(omap_hsmmc_cleanup);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002220
2221MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2222MODULE_LICENSE("GPL");
2223MODULE_ALIAS("platform:" DRIVER_NAME);
2224MODULE_AUTHOR("Texas Instruments Inc");