blob: 82a1079bbdc78bff7afc459b7aa3444461bcfe9b [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>
Denis Karpovd900f712009-09-22 16:44:38 -070020#include <linux/debugfs.h>
21#include <linux/seq_file.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010022#include <linux/interrupt.h>
23#include <linux/delay.h>
24#include <linux/dma-mapping.h>
25#include <linux/platform_device.h>
26#include <linux/workqueue.h>
27#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>
Tony Lindgrence491cf2009-10-20 09:40:47 -070036#include <plat/dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010037#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070038#include <plat/board.h>
39#include <plat/mmc.h>
40#include <plat/cpu.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010041
42/* OMAP HSMMC Host Controller Registers */
43#define OMAP_HSMMC_SYSCONFIG 0x0010
Denis Karpov11dd62a2009-09-22 16:44:43 -070044#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010045#define OMAP_HSMMC_CON 0x002C
46#define OMAP_HSMMC_BLK 0x0104
47#define OMAP_HSMMC_ARG 0x0108
48#define OMAP_HSMMC_CMD 0x010C
49#define OMAP_HSMMC_RSP10 0x0110
50#define OMAP_HSMMC_RSP32 0x0114
51#define OMAP_HSMMC_RSP54 0x0118
52#define OMAP_HSMMC_RSP76 0x011C
53#define OMAP_HSMMC_DATA 0x0120
54#define OMAP_HSMMC_HCTL 0x0128
55#define OMAP_HSMMC_SYSCTL 0x012C
56#define OMAP_HSMMC_STAT 0x0130
57#define OMAP_HSMMC_IE 0x0134
58#define OMAP_HSMMC_ISE 0x0138
59#define OMAP_HSMMC_CAPA 0x0140
60
61#define VS18 (1 << 26)
62#define VS30 (1 << 25)
63#define SDVS18 (0x5 << 9)
64#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080065#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010066#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010067#define SDVSCLR 0xFFFFF1FF
68#define SDVSDET 0x00000400
69#define AUTOIDLE 0x1
70#define SDBP (1 << 8)
71#define DTO 0xe
72#define ICE 0x1
73#define ICS 0x2
74#define CEN (1 << 2)
75#define CLKD_MASK 0x0000FFC0
76#define CLKD_SHIFT 6
77#define DTO_MASK 0x000F0000
78#define DTO_SHIFT 16
79#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070080#define BWR_ENABLE (1 << 4)
81#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070082#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010083#define INIT_STREAM (1 << 1)
84#define DP_SELECT (1 << 21)
85#define DDIR (1 << 4)
86#define DMA_EN 0x1
87#define MSBS (1 << 5)
88#define BCE (1 << 1)
89#define FOUR_BIT (1 << 1)
Jarkko Lavinen73153012008-11-21 16:49:54 +020090#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010091#define CC 0x1
92#define TC 0x02
93#define OD 0x1
94#define ERR (1 << 15)
95#define CMD_TIMEOUT (1 << 16)
96#define DATA_TIMEOUT (1 << 20)
97#define CMD_CRC (1 << 17)
98#define DATA_CRC (1 << 21)
99#define CARD_ERR (1 << 28)
100#define STAT_CLEAR 0xFFFFFFFF
101#define INIT_STREAM_CMD 0x00000000
102#define DUAL_VOLT_OCR_BIT 7
103#define SRC (1 << 25)
104#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700105#define SOFTRESET (1 << 1)
106#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100107
108/*
109 * FIXME: Most likely all the data using these _DEVID defines should come
110 * from the platform_data, or implemented in controller and slot specific
111 * functions.
112 */
113#define OMAP_MMC1_DEVID 0
114#define OMAP_MMC2_DEVID 1
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000115#define OMAP_MMC3_DEVID 2
kishore kadiyala82cf8182009-09-22 16:45:25 -0700116#define OMAP_MMC4_DEVID 3
117#define OMAP_MMC5_DEVID 4
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100118
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100119#define MMC_TIMEOUT_MS 20
120#define OMAP_MMC_MASTER_CLOCK 96000000
121#define DRIVER_NAME "mmci-omap-hs"
122
Denis Karpovdd498ef2009-09-22 16:44:49 -0700123/* Timeouts for entering power saving states on inactivity, msec */
124#define OMAP_MMC_DISABLED_TIMEOUT 100
Jarkko Lavinen13189e72009-09-22 16:44:53 -0700125#define OMAP_MMC_SLEEP_TIMEOUT 1000
126#define OMAP_MMC_OFF_TIMEOUT 8000
Denis Karpovdd498ef2009-09-22 16:44:49 -0700127
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100128/*
129 * One controller can have multiple slots, like on some omap boards using
130 * omap.c controller driver. Luckily this is not currently done on any known
131 * omap_hsmmc.c device.
132 */
133#define mmc_slot(host) (host->pdata->slots[host->slot_id])
134
135/*
136 * MMC Host controller read/write API's
137 */
138#define OMAP_HSMMC_READ(base, reg) \
139 __raw_readl((base) + OMAP_HSMMC_##reg)
140
141#define OMAP_HSMMC_WRITE(base, reg, val) \
142 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
143
Denis Karpov70a33412009-09-22 16:44:59 -0700144struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100145 struct device *dev;
146 struct mmc_host *mmc;
147 struct mmc_request *mrq;
148 struct mmc_command *cmd;
149 struct mmc_data *data;
150 struct clk *fclk;
151 struct clk *iclk;
152 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800153 /*
154 * vcc == configured supply
155 * vcc_aux == optional
156 * - MMC1, supply for DAT4..DAT7
157 * - MMC2/MMC2, external level shifter voltage supply, for
158 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
159 */
160 struct regulator *vcc;
161 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100162 struct work_struct mmc_carddetect_work;
163 void __iomem *base;
164 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700165 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100166 unsigned int id;
167 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200168 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100169 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700170 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100171 u32 *buffer;
172 u32 bytesleft;
173 int suspended;
174 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100175 int use_dma, dma_ch;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000176 int dma_line_tx, dma_line_rx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100177 int slot_id;
Adrian Hunter2bec0892009-09-22 16:45:02 -0700178 int got_dbclk;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200179 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700180 int context_loss;
Denis Karpovdd498ef2009-09-22 16:44:49 -0700181 int dpm_state;
Adrian Hunter623821f2009-09-22 16:44:51 -0700182 int vdd;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700183 int protect_card;
184 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800185 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700186 int req_in_progress;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700187
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100188 struct omap_mmc_platform_data *pdata;
189};
190
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800191static int omap_hsmmc_card_detect(struct device *dev, int slot)
192{
193 struct omap_mmc_platform_data *mmc = dev->platform_data;
194
195 /* NOTE: assumes card detect signal is active-low */
196 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
197}
198
199static int omap_hsmmc_get_wp(struct device *dev, int slot)
200{
201 struct omap_mmc_platform_data *mmc = dev->platform_data;
202
203 /* NOTE: assumes write protect signal is active-high */
204 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
205}
206
207static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
208{
209 struct omap_mmc_platform_data *mmc = dev->platform_data;
210
211 /* NOTE: assumes card detect signal is active-low */
212 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
213}
214
215#ifdef CONFIG_PM
216
217static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
218{
219 struct omap_mmc_platform_data *mmc = dev->platform_data;
220
221 disable_irq(mmc->slots[0].card_detect_irq);
222 return 0;
223}
224
225static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
226{
227 struct omap_mmc_platform_data *mmc = dev->platform_data;
228
229 enable_irq(mmc->slots[0].card_detect_irq);
230 return 0;
231}
232
233#else
234
235#define omap_hsmmc_suspend_cdirq NULL
236#define omap_hsmmc_resume_cdirq NULL
237
238#endif
239
Adrian Hunterb702b102010-02-15 10:03:35 -0800240#ifdef CONFIG_REGULATOR
241
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800242static int omap_hsmmc_1_set_power(struct device *dev, int slot, int power_on,
243 int vdd)
244{
245 struct omap_hsmmc_host *host =
246 platform_get_drvdata(to_platform_device(dev));
247 int ret;
248
249 if (mmc_slot(host).before_set_reg)
250 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
251
252 if (power_on)
Linus Walleij99fc5132010-09-29 01:08:27 -0400253 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800254 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400255 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800256
257 if (mmc_slot(host).after_set_reg)
258 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
259
260 return ret;
261}
262
263static int omap_hsmmc_23_set_power(struct device *dev, int slot, int power_on,
264 int vdd)
265{
266 struct omap_hsmmc_host *host =
267 platform_get_drvdata(to_platform_device(dev));
268 int ret = 0;
269
270 /*
271 * If we don't see a Vcc regulator, assume it's a fixed
272 * voltage always-on regulator.
273 */
274 if (!host->vcc)
275 return 0;
276
277 if (mmc_slot(host).before_set_reg)
278 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
279
280 /*
281 * Assume Vcc regulator is used only to power the card ... OMAP
282 * VDDS is used to power the pins, optionally with a transceiver to
283 * support cards using voltages other than VDDS (1.8V nominal). When a
284 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
285 *
286 * In some cases this regulator won't support enable/disable;
287 * e.g. it's a fixed rail for a WLAN chip.
288 *
289 * In other cases vcc_aux switches interface power. Example, for
290 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
291 * chips/cards need an interface voltage rail too.
292 */
293 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400294 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800295 /* Enable interface voltage rail, if needed */
296 if (ret == 0 && host->vcc_aux) {
297 ret = regulator_enable(host->vcc_aux);
298 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400299 ret = mmc_regulator_set_ocr(host->mmc,
300 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800301 }
302 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400303 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800304 if (host->vcc_aux)
305 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400306 if (!ret) {
307 /* Then proceed to shut down the local regulator */
308 ret = mmc_regulator_set_ocr(host->mmc,
309 host->vcc, 0);
310 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800311 }
312
313 if (mmc_slot(host).after_set_reg)
314 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
315
316 return ret;
317}
318
319static int omap_hsmmc_1_set_sleep(struct device *dev, int slot, int sleep,
320 int vdd, int cardsleep)
321{
322 struct omap_hsmmc_host *host =
323 platform_get_drvdata(to_platform_device(dev));
324 int mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
325
326 return regulator_set_mode(host->vcc, mode);
327}
328
329static int omap_hsmmc_23_set_sleep(struct device *dev, int slot, int sleep,
330 int vdd, int cardsleep)
331{
332 struct omap_hsmmc_host *host =
333 platform_get_drvdata(to_platform_device(dev));
334 int err, mode;
335
336 /*
337 * If we don't see a Vcc regulator, assume it's a fixed
338 * voltage always-on regulator.
339 */
340 if (!host->vcc)
341 return 0;
342
343 mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
344
345 if (!host->vcc_aux)
346 return regulator_set_mode(host->vcc, mode);
347
348 if (cardsleep) {
349 /* VCC can be turned off if card is asleep */
350 if (sleep)
Linus Walleij99fc5132010-09-29 01:08:27 -0400351 err = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800352 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400353 err = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800354 } else
355 err = regulator_set_mode(host->vcc, mode);
356 if (err)
357 return err;
Adrian Huntere0eb2422010-02-15 10:03:34 -0800358
359 if (!mmc_slot(host).vcc_aux_disable_is_sleep)
360 return regulator_set_mode(host->vcc_aux, mode);
361
362 if (sleep)
363 return regulator_disable(host->vcc_aux);
364 else
365 return regulator_enable(host->vcc_aux);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800366}
367
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800368static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
369{
370 struct regulator *reg;
371 int ret = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700372 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800373
374 switch (host->id) {
375 case OMAP_MMC1_DEVID:
376 /* On-chip level shifting via PBIAS0/PBIAS1 */
377 mmc_slot(host).set_power = omap_hsmmc_1_set_power;
378 mmc_slot(host).set_sleep = omap_hsmmc_1_set_sleep;
379 break;
380 case OMAP_MMC2_DEVID:
381 case OMAP_MMC3_DEVID:
382 /* Off-chip level shifting, or none */
383 mmc_slot(host).set_power = omap_hsmmc_23_set_power;
384 mmc_slot(host).set_sleep = omap_hsmmc_23_set_sleep;
385 break;
386 default:
387 pr_err("MMC%d configuration not supported!\n", host->id);
388 return -EINVAL;
389 }
390
391 reg = regulator_get(host->dev, "vmmc");
392 if (IS_ERR(reg)) {
393 dev_dbg(host->dev, "vmmc regulator missing\n");
394 /*
395 * HACK: until fixed.c regulator is usable,
396 * we don't require a main regulator
397 * for MMC2 or MMC3
398 */
399 if (host->id == OMAP_MMC1_DEVID) {
400 ret = PTR_ERR(reg);
401 goto err;
402 }
403 } else {
404 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700405 ocr_value = mmc_regulator_get_ocrmask(reg);
406 if (!mmc_slot(host).ocr_mask) {
407 mmc_slot(host).ocr_mask = ocr_value;
408 } else {
409 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
410 pr_err("MMC%d ocrmask %x is not supported\n",
411 host->id, mmc_slot(host).ocr_mask);
412 mmc_slot(host).ocr_mask = 0;
413 return -EINVAL;
414 }
415 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800416 mmc_slot(host).ocr_mask = mmc_regulator_get_ocrmask(reg);
417
418 /* Allow an aux regulator */
419 reg = regulator_get(host->dev, "vmmc_aux");
420 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
421
422 /*
423 * UGLY HACK: workaround regulator framework bugs.
424 * When the bootloader leaves a supply active, it's
425 * initialized with zero usecount ... and we can't
426 * disable it without first enabling it. Until the
427 * framework is fixed, we need a workaround like this
428 * (which is safe for MMC, but not in general).
429 */
430 if (regulator_is_enabled(host->vcc) > 0) {
431 regulator_enable(host->vcc);
432 regulator_disable(host->vcc);
433 }
434 if (host->vcc_aux) {
435 if (regulator_is_enabled(reg) > 0) {
436 regulator_enable(reg);
437 regulator_disable(reg);
438 }
439 }
440 }
441
442 return 0;
443
444err:
445 mmc_slot(host).set_power = NULL;
446 mmc_slot(host).set_sleep = NULL;
447 return ret;
448}
449
450static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
451{
452 regulator_put(host->vcc);
453 regulator_put(host->vcc_aux);
454 mmc_slot(host).set_power = NULL;
455 mmc_slot(host).set_sleep = NULL;
456}
457
Adrian Hunterb702b102010-02-15 10:03:35 -0800458static inline int omap_hsmmc_have_reg(void)
459{
460 return 1;
461}
462
463#else
464
465static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
466{
467 return -EINVAL;
468}
469
470static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
471{
472}
473
474static inline int omap_hsmmc_have_reg(void)
475{
476 return 0;
477}
478
479#endif
480
481static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
482{
483 int ret;
484
485 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800486 if (pdata->slots[0].cover)
487 pdata->slots[0].get_cover_state =
488 omap_hsmmc_get_cover_state;
489 else
490 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
491 pdata->slots[0].card_detect_irq =
492 gpio_to_irq(pdata->slots[0].switch_pin);
493 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
494 if (ret)
495 return ret;
496 ret = gpio_direction_input(pdata->slots[0].switch_pin);
497 if (ret)
498 goto err_free_sp;
499 } else
500 pdata->slots[0].switch_pin = -EINVAL;
501
502 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
503 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
504 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
505 if (ret)
506 goto err_free_cd;
507 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
508 if (ret)
509 goto err_free_wp;
510 } else
511 pdata->slots[0].gpio_wp = -EINVAL;
512
513 return 0;
514
515err_free_wp:
516 gpio_free(pdata->slots[0].gpio_wp);
517err_free_cd:
518 if (gpio_is_valid(pdata->slots[0].switch_pin))
519err_free_sp:
520 gpio_free(pdata->slots[0].switch_pin);
521 return ret;
522}
523
524static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
525{
526 if (gpio_is_valid(pdata->slots[0].gpio_wp))
527 gpio_free(pdata->slots[0].gpio_wp);
528 if (gpio_is_valid(pdata->slots[0].switch_pin))
529 gpio_free(pdata->slots[0].switch_pin);
530}
531
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100532/*
533 * Stop clock to the card
534 */
Denis Karpov70a33412009-09-22 16:44:59 -0700535static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100536{
537 OMAP_HSMMC_WRITE(host->base, SYSCTL,
538 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
539 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
540 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
541}
542
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700543static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
544 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700545{
546 unsigned int irq_mask;
547
548 if (host->use_dma)
549 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
550 else
551 irq_mask = INT_EN_MASK;
552
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700553 /* Disable timeout for erases */
554 if (cmd->opcode == MMC_ERASE)
555 irq_mask &= ~DTO_ENABLE;
556
Adrian Hunterb4175772010-05-26 14:42:06 -0700557 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
558 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
559 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
560}
561
562static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
563{
564 OMAP_HSMMC_WRITE(host->base, ISE, 0);
565 OMAP_HSMMC_WRITE(host->base, IE, 0);
566 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
567}
568
Denis Karpov11dd62a2009-09-22 16:44:43 -0700569#ifdef CONFIG_PM
570
571/*
572 * Restore the MMC host context, if it was lost as result of a
573 * power state change.
574 */
Denis Karpov70a33412009-09-22 16:44:59 -0700575static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700576{
577 struct mmc_ios *ios = &host->mmc->ios;
578 struct omap_mmc_platform_data *pdata = host->pdata;
579 int context_loss = 0;
580 u32 hctl, capa, con;
581 u16 dsor = 0;
582 unsigned long timeout;
583
584 if (pdata->get_context_loss_count) {
585 context_loss = pdata->get_context_loss_count(host->dev);
586 if (context_loss < 0)
587 return 1;
588 }
589
590 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
591 context_loss == host->context_loss ? "not " : "");
592 if (host->context_loss == context_loss)
593 return 1;
594
595 /* Wait for hardware reset */
596 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
597 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
598 && time_before(jiffies, timeout))
599 ;
600
601 /* Do software reset */
602 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
603 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
604 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
605 && time_before(jiffies, timeout))
606 ;
607
608 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
609 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
610
611 if (host->id == OMAP_MMC1_DEVID) {
612 if (host->power_mode != MMC_POWER_OFF &&
613 (1 << ios->vdd) <= MMC_VDD_23_24)
614 hctl = SDVS18;
615 else
616 hctl = SDVS30;
617 capa = VS30 | VS18;
618 } else {
619 hctl = SDVS18;
620 capa = VS18;
621 }
622
623 OMAP_HSMMC_WRITE(host->base, HCTL,
624 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
625
626 OMAP_HSMMC_WRITE(host->base, CAPA,
627 OMAP_HSMMC_READ(host->base, CAPA) | capa);
628
629 OMAP_HSMMC_WRITE(host->base, HCTL,
630 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
631
632 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
633 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
634 && time_before(jiffies, timeout))
635 ;
636
Adrian Hunterb4175772010-05-26 14:42:06 -0700637 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700638
639 /* Do not initialize card-specific things if the power is off */
640 if (host->power_mode == MMC_POWER_OFF)
641 goto out;
642
643 con = OMAP_HSMMC_READ(host->base, CON);
644 switch (ios->bus_width) {
645 case MMC_BUS_WIDTH_8:
646 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
647 break;
648 case MMC_BUS_WIDTH_4:
649 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
650 OMAP_HSMMC_WRITE(host->base, HCTL,
651 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
652 break;
653 case MMC_BUS_WIDTH_1:
654 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
655 OMAP_HSMMC_WRITE(host->base, HCTL,
656 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
657 break;
658 }
659
660 if (ios->clock) {
661 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
662 if (dsor < 1)
663 dsor = 1;
664
665 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
666 dsor++;
667
668 if (dsor > 250)
669 dsor = 250;
670 }
671
672 OMAP_HSMMC_WRITE(host->base, SYSCTL,
673 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
674 OMAP_HSMMC_WRITE(host->base, SYSCTL, (dsor << 6) | (DTO << 16));
675 OMAP_HSMMC_WRITE(host->base, SYSCTL,
676 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
677
678 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
679 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
680 && time_before(jiffies, timeout))
681 ;
682
683 OMAP_HSMMC_WRITE(host->base, SYSCTL,
684 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
685
686 con = OMAP_HSMMC_READ(host->base, CON);
687 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
688 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
689 else
690 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
691out:
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) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100946 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg, host->dma_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700947 omap_hsmmc_get_dma_dir(host, host->data));
Adrian Hunterb4175772010-05-26 14:42:06 -0700948 omap_free_dma(dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100949 }
950 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100951}
952
953/*
954 * Readable error output
955 */
956#ifdef CONFIG_MMC_DEBUG
Denis Karpov70a33412009-09-22 16:44:59 -0700957static void omap_hsmmc_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100958{
959 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700960 static const char *omap_hsmmc_status_bits[] = {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100961 "CC", "TC", "BGE", "---", "BWR", "BRR", "---", "---", "CIRQ",
962 "OBI", "---", "---", "---", "---", "---", "ERRI", "CTO", "CCRC",
963 "CEB", "CIE", "DTO", "DCRC", "DEB", "---", "ACE", "---",
964 "---", "---", "---", "CERR", "CERR", "BADA", "---", "---", "---"
965 };
966 char res[256];
967 char *buf = res;
968 int len, i;
969
970 len = sprintf(buf, "MMC IRQ 0x%x :", status);
971 buf += len;
972
Denis Karpov70a33412009-09-22 16:44:59 -0700973 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100974 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700975 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100976 buf += len;
977 }
978
979 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
980}
981#endif /* CONFIG_MMC_DEBUG */
982
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100983/*
984 * MMC controller internal state machines reset
985 *
986 * Used to reset command or data internal state machines, using respectively
987 * SRC or SRD bit of SYSCTL register
988 * Can be called from interrupt context
989 */
Denis Karpov70a33412009-09-22 16:44:59 -0700990static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
991 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100992{
993 unsigned long i = 0;
994 unsigned long limit = (loops_per_jiffy *
995 msecs_to_jiffies(MMC_TIMEOUT_MS));
996
997 OMAP_HSMMC_WRITE(host->base, SYSCTL,
998 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
999
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001000 /*
1001 * OMAP4 ES2 and greater has an updated reset logic.
1002 * Monitor a 0->1 transition first
1003 */
1004 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
1005 while ((!(OMAP_HSMMC_READ(host, SYSCTL) & bit))
1006 && (i++ < limit))
1007 cpu_relax();
1008 }
1009 i = 0;
1010
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001011 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1012 (i++ < limit))
1013 cpu_relax();
1014
1015 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1016 dev_err(mmc_dev(host->mmc),
1017 "Timeout waiting on controller reset in %s\n",
1018 __func__);
1019}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001020
Adrian Hunterb4175772010-05-26 14:42:06 -07001021static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001022{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001023 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001024 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001025
Adrian Hunterb4175772010-05-26 14:42:06 -07001026 if (!host->req_in_progress) {
1027 do {
1028 OMAP_HSMMC_WRITE(host->base, STAT, status);
1029 /* Flush posted write */
1030 status = OMAP_HSMMC_READ(host->base, STAT);
1031 } while (status & INT_EN_MASK);
1032 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001033 }
1034
1035 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001036 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1037
1038 if (status & ERR) {
1039#ifdef CONFIG_MMC_DEBUG
Denis Karpov70a33412009-09-22 16:44:59 -07001040 omap_hsmmc_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001041#endif
1042 if ((status & CMD_TIMEOUT) ||
1043 (status & CMD_CRC)) {
1044 if (host->cmd) {
1045 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001046 omap_hsmmc_reset_controller_fsm(host,
1047 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001048 host->cmd->error = -ETIMEDOUT;
1049 } else {
1050 host->cmd->error = -EILSEQ;
1051 }
1052 end_cmd = 1;
1053 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001054 if (host->data || host->response_busy) {
1055 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001056 omap_hsmmc_dma_cleanup(host,
1057 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001058 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001059 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001060 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001061 }
1062 if ((status & DATA_TIMEOUT) ||
1063 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001064 if (host->data || host->response_busy) {
1065 int err = (status & DATA_TIMEOUT) ?
1066 -ETIMEDOUT : -EILSEQ;
1067
1068 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001069 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001070 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001071 host->mrq->cmd->error = err;
1072 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001073 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001074 end_trans = 1;
1075 }
1076 }
1077 if (status & CARD_ERR) {
1078 dev_dbg(mmc_dev(host->mmc),
1079 "Ignoring card err CMD%d\n", host->cmd->opcode);
1080 if (host->cmd)
1081 end_cmd = 1;
1082 if (host->data)
1083 end_trans = 1;
1084 }
1085 }
1086
1087 OMAP_HSMMC_WRITE(host->base, STAT, status);
1088
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001089 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001090 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001091 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001092 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001093}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001094
Adrian Hunterb4175772010-05-26 14:42:06 -07001095/*
1096 * MMC controller IRQ handler
1097 */
1098static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1099{
1100 struct omap_hsmmc_host *host = dev_id;
1101 int status;
1102
1103 status = OMAP_HSMMC_READ(host->base, STAT);
1104 do {
1105 omap_hsmmc_do_irq(host, status);
1106 /* Flush posted write */
1107 status = OMAP_HSMMC_READ(host->base, STAT);
1108 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001109
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001110 return IRQ_HANDLED;
1111}
1112
Denis Karpov70a33412009-09-22 16:44:59 -07001113static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001114{
1115 unsigned long i;
1116
1117 OMAP_HSMMC_WRITE(host->base, HCTL,
1118 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1119 for (i = 0; i < loops_per_jiffy; i++) {
1120 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1121 break;
1122 cpu_relax();
1123 }
1124}
1125
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001126/*
David Brownelleb250822009-02-17 14:49:01 -08001127 * Switch MMC interface voltage ... only relevant for MMC1.
1128 *
1129 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1130 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1131 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001132 */
Denis Karpov70a33412009-09-22 16:44:59 -07001133static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001134{
1135 u32 reg_val = 0;
1136 int ret;
1137
1138 /* Disable the clocks */
1139 clk_disable(host->fclk);
1140 clk_disable(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001141 if (host->got_dbclk)
1142 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001143
1144 /* Turn the power off */
1145 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001146
1147 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001148 if (!ret)
1149 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1150 vdd);
1151 clk_enable(host->iclk);
1152 clk_enable(host->fclk);
1153 if (host->got_dbclk)
1154 clk_enable(host->dbclk);
1155
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001156 if (ret != 0)
1157 goto err;
1158
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001159 OMAP_HSMMC_WRITE(host->base, HCTL,
1160 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1161 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001162
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001163 /*
1164 * If a MMC dual voltage card is detected, the set_ios fn calls
1165 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001166 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001167 *
David Brownelleb250822009-02-17 14:49:01 -08001168 * Cope with a bit of slop in the range ... per data sheets:
1169 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1170 * but recommended values are 1.71V to 1.89V
1171 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1172 * but recommended values are 2.7V to 3.3V
1173 *
1174 * Board setup code shouldn't permit anything very out-of-range.
1175 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1176 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001177 */
David Brownelleb250822009-02-17 14:49:01 -08001178 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001179 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001180 else
1181 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001182
1183 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001184 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001185
1186 return 0;
1187err:
1188 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1189 return ret;
1190}
1191
Adrian Hunterb62f6222009-09-22 16:45:01 -07001192/* Protect the card while the cover is open */
1193static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1194{
1195 if (!mmc_slot(host).get_cover_state)
1196 return;
1197
1198 host->reqs_blocked = 0;
1199 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1200 if (host->protect_card) {
1201 printk(KERN_INFO "%s: cover is closed, "
1202 "card is now accessible\n",
1203 mmc_hostname(host->mmc));
1204 host->protect_card = 0;
1205 }
1206 } else {
1207 if (!host->protect_card) {
1208 printk(KERN_INFO "%s: cover is open, "
1209 "card is now inaccessible\n",
1210 mmc_hostname(host->mmc));
1211 host->protect_card = 1;
1212 }
1213 }
1214}
1215
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001216/*
1217 * Work Item to notify the core about card insertion/removal
1218 */
Denis Karpov70a33412009-09-22 16:44:59 -07001219static void omap_hsmmc_detect(struct work_struct *work)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001220{
Denis Karpov70a33412009-09-22 16:44:59 -07001221 struct omap_hsmmc_host *host =
1222 container_of(work, struct omap_hsmmc_host, mmc_carddetect_work);
David Brownell249d0fa2009-02-04 14:42:03 -08001223 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001224 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001225
Adrian Huntera6b22402009-09-22 16:44:45 -07001226 if (host->suspended)
1227 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001228
1229 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001230
Denis Karpov191d1f12009-09-22 16:44:55 -07001231 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001232 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001233 else {
1234 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001235 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001236 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001237
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001238 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001239 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001240 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001241 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001242}
1243
1244/*
1245 * ISR for handling card insertion and removal
1246 */
Denis Karpov70a33412009-09-22 16:44:59 -07001247static irqreturn_t omap_hsmmc_cd_handler(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001248{
Denis Karpov70a33412009-09-22 16:44:59 -07001249 struct omap_hsmmc_host *host = (struct omap_hsmmc_host *)dev_id;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001250
Adrian Huntera6b22402009-09-22 16:44:45 -07001251 if (host->suspended)
1252 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001253 schedule_work(&host->mmc_carddetect_work);
1254
1255 return IRQ_HANDLED;
1256}
1257
Denis Karpov70a33412009-09-22 16:44:59 -07001258static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001259 struct mmc_data *data)
1260{
1261 int sync_dev;
1262
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001263 if (data->flags & MMC_DATA_WRITE)
1264 sync_dev = host->dma_line_tx;
1265 else
1266 sync_dev = host->dma_line_rx;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001267 return sync_dev;
1268}
1269
Denis Karpov70a33412009-09-22 16:44:59 -07001270static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001271 struct mmc_data *data,
1272 struct scatterlist *sgl)
1273{
1274 int blksz, nblk, dma_ch;
1275
1276 dma_ch = host->dma_ch;
1277 if (data->flags & MMC_DATA_WRITE) {
1278 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1279 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1280 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1281 sg_dma_address(sgl), 0, 0);
1282 } else {
1283 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
Denis Karpov191d1f12009-09-22 16:44:55 -07001284 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001285 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1286 sg_dma_address(sgl), 0, 0);
1287 }
1288
1289 blksz = host->data->blksz;
1290 nblk = sg_dma_len(sgl) / blksz;
1291
1292 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1293 blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
Denis Karpov70a33412009-09-22 16:44:59 -07001294 omap_hsmmc_get_dma_sync_dev(host, data),
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001295 !(data->flags & MMC_DATA_WRITE));
1296
1297 omap_start_dma(dma_ch);
1298}
1299
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001300/*
1301 * DMA call back function
1302 */
Adrian Hunterb4175772010-05-26 14:42:06 -07001303static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001304{
Adrian Hunterb4175772010-05-26 14:42:06 -07001305 struct omap_hsmmc_host *host = cb_data;
1306 struct mmc_data *data = host->mrq->data;
1307 int dma_ch, req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001308
Venkatraman Sf3584e52010-08-10 18:01:54 -07001309 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1310 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1311 ch_status);
1312 return;
1313 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001314
Adrian Hunterb4175772010-05-26 14:42:06 -07001315 spin_lock(&host->irq_lock);
1316 if (host->dma_ch < 0) {
1317 spin_unlock(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001318 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001319 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001320
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001321 host->dma_sg_idx++;
1322 if (host->dma_sg_idx < host->dma_len) {
1323 /* Fire up the next transfer. */
Adrian Hunterb4175772010-05-26 14:42:06 -07001324 omap_hsmmc_config_dma_params(host, data,
1325 data->sg + host->dma_sg_idx);
1326 spin_unlock(&host->irq_lock);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001327 return;
1328 }
1329
Adrian Hunterb4175772010-05-26 14:42:06 -07001330 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_len,
1331 omap_hsmmc_get_dma_dir(host, data));
1332
1333 req_in_progress = host->req_in_progress;
1334 dma_ch = host->dma_ch;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001335 host->dma_ch = -1;
Adrian Hunterb4175772010-05-26 14:42:06 -07001336 spin_unlock(&host->irq_lock);
1337
1338 omap_free_dma(dma_ch);
1339
1340 /* If DMA has finished after TC, complete the request */
1341 if (!req_in_progress) {
1342 struct mmc_request *mrq = host->mrq;
1343
1344 host->mrq = NULL;
1345 mmc_request_done(host->mmc, mrq);
1346 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001347}
1348
1349/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001350 * Routine to configure and start DMA for the MMC card
1351 */
Denis Karpov70a33412009-09-22 16:44:59 -07001352static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1353 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001354{
Adrian Hunterb4175772010-05-26 14:42:06 -07001355 int dma_ch = 0, ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001356 struct mmc_data *data = req->data;
1357
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001358 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001359 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001360 struct scatterlist *sgl;
1361
1362 sgl = data->sg + i;
1363 if (sgl->length % data->blksz)
1364 return -EINVAL;
1365 }
1366 if ((data->blksz % 4) != 0)
1367 /* REVISIT: The MMC buffer increments only when MSB is written.
1368 * Return error for blksz which is non multiple of four.
1369 */
1370 return -EINVAL;
1371
Adrian Hunterb4175772010-05-26 14:42:06 -07001372 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001373
Denis Karpov70a33412009-09-22 16:44:59 -07001374 ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1375 "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001376 if (ret != 0) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001377 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001378 "%s: omap_request_dma() failed with %d\n",
1379 mmc_hostname(host->mmc), ret);
1380 return ret;
1381 }
1382
1383 host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
Denis Karpov70a33412009-09-22 16:44:59 -07001384 data->sg_len, omap_hsmmc_get_dma_dir(host, data));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001385 host->dma_ch = dma_ch;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001386 host->dma_sg_idx = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001387
Denis Karpov70a33412009-09-22 16:44:59 -07001388 omap_hsmmc_config_dma_params(host, data, data->sg);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001389
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001390 return 0;
1391}
1392
Denis Karpov70a33412009-09-22 16:44:59 -07001393static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001394 unsigned int timeout_ns,
1395 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001396{
1397 unsigned int timeout, cycle_ns;
1398 uint32_t reg, clkd, dto = 0;
1399
1400 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1401 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1402 if (clkd == 0)
1403 clkd = 1;
1404
1405 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001406 timeout = timeout_ns / cycle_ns;
1407 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001408 if (timeout) {
1409 while ((timeout & 0x80000000) == 0) {
1410 dto += 1;
1411 timeout <<= 1;
1412 }
1413 dto = 31 - dto;
1414 timeout <<= 1;
1415 if (timeout && dto)
1416 dto += 1;
1417 if (dto >= 13)
1418 dto -= 13;
1419 else
1420 dto = 0;
1421 if (dto > 14)
1422 dto = 14;
1423 }
1424
1425 reg &= ~DTO_MASK;
1426 reg |= dto << DTO_SHIFT;
1427 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1428}
1429
1430/*
1431 * Configure block length for MMC/SD cards and initiate the transfer.
1432 */
1433static int
Denis Karpov70a33412009-09-22 16:44:59 -07001434omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001435{
1436 int ret;
1437 host->data = req->data;
1438
1439 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001440 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001441 /*
1442 * Set an arbitrary 100ms data timeout for commands with
1443 * busy signal.
1444 */
1445 if (req->cmd->flags & MMC_RSP_BUSY)
1446 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001447 return 0;
1448 }
1449
1450 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1451 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001452 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001453
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001454 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001455 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001456 if (ret != 0) {
1457 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1458 return ret;
1459 }
1460 }
1461 return 0;
1462}
1463
1464/*
1465 * Request function. for read/write operation
1466 */
Denis Karpov70a33412009-09-22 16:44:59 -07001467static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001468{
Denis Karpov70a33412009-09-22 16:44:59 -07001469 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001470 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001471
Adrian Hunterb4175772010-05-26 14:42:06 -07001472 BUG_ON(host->req_in_progress);
1473 BUG_ON(host->dma_ch != -1);
1474 if (host->protect_card) {
1475 if (host->reqs_blocked < 3) {
1476 /*
1477 * Ensure the controller is left in a consistent
1478 * state by resetting the command and data state
1479 * machines.
1480 */
1481 omap_hsmmc_reset_controller_fsm(host, SRD);
1482 omap_hsmmc_reset_controller_fsm(host, SRC);
1483 host->reqs_blocked += 1;
1484 }
1485 req->cmd->error = -EBADF;
1486 if (req->data)
1487 req->data->error = -EBADF;
1488 req->cmd->retries = 0;
1489 mmc_request_done(mmc, req);
1490 return;
1491 } else if (host->reqs_blocked)
1492 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001493 WARN_ON(host->mrq != NULL);
1494 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001495 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001496 if (err) {
1497 req->cmd->error = err;
1498 if (req->data)
1499 req->data->error = err;
1500 host->mrq = NULL;
1501 mmc_request_done(mmc, req);
1502 return;
1503 }
1504
Denis Karpov70a33412009-09-22 16:44:59 -07001505 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001506}
1507
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001508/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001509static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001510{
Denis Karpov70a33412009-09-22 16:44:59 -07001511 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001512 u16 dsor = 0;
1513 unsigned long regval;
1514 unsigned long timeout;
Jarkko Lavinen73153012008-11-21 16:49:54 +02001515 u32 con;
Adrian Huntera3621462009-09-22 16:44:42 -07001516 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001517
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001518 mmc_host_enable(host->mmc);
1519
Adrian Huntera3621462009-09-22 16:44:42 -07001520 if (ios->power_mode != host->power_mode) {
1521 switch (ios->power_mode) {
1522 case MMC_POWER_OFF:
1523 mmc_slot(host).set_power(host->dev, host->slot_id,
1524 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001525 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001526 break;
1527 case MMC_POWER_UP:
1528 mmc_slot(host).set_power(host->dev, host->slot_id,
1529 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001530 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001531 break;
1532 case MMC_POWER_ON:
1533 do_send_init_stream = 1;
1534 break;
1535 }
1536 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001537 }
1538
Denis Karpovdd498ef2009-09-22 16:44:49 -07001539 /* FIXME: set registers based only on changes to ios */
1540
Jarkko Lavinen73153012008-11-21 16:49:54 +02001541 con = OMAP_HSMMC_READ(host->base, CON);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001542 switch (mmc->ios.bus_width) {
Jarkko Lavinen73153012008-11-21 16:49:54 +02001543 case MMC_BUS_WIDTH_8:
1544 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
1545 break;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001546 case MMC_BUS_WIDTH_4:
Jarkko Lavinen73153012008-11-21 16:49:54 +02001547 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001548 OMAP_HSMMC_WRITE(host->base, HCTL,
1549 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
1550 break;
1551 case MMC_BUS_WIDTH_1:
Jarkko Lavinen73153012008-11-21 16:49:54 +02001552 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001553 OMAP_HSMMC_WRITE(host->base, HCTL,
1554 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
1555 break;
1556 }
1557
1558 if (host->id == OMAP_MMC1_DEVID) {
David Brownelleb250822009-02-17 14:49:01 -08001559 /* Only MMC1 can interface at 3V without some flavor
1560 * of external transceiver; but they all handle 1.8V.
1561 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001562 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1563 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1564 /*
1565 * The mmc_select_voltage fn of the core does
1566 * not seem to set the power_mode to
1567 * MMC_POWER_UP upon recalculating the voltage.
1568 * vdd 1.8v.
1569 */
Denis Karpov70a33412009-09-22 16:44:59 -07001570 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1571 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001572 "Switch operation failed\n");
1573 }
1574 }
1575
1576 if (ios->clock) {
1577 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
1578 if (dsor < 1)
1579 dsor = 1;
1580
1581 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
1582 dsor++;
1583
1584 if (dsor > 250)
1585 dsor = 250;
1586 }
Denis Karpov70a33412009-09-22 16:44:59 -07001587 omap_hsmmc_stop_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001588 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
1589 regval = regval & ~(CLKD_MASK);
1590 regval = regval | (dsor << 6) | (DTO << 16);
1591 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
1592 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1593 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
1594
1595 /* Wait till the ICS bit is set */
1596 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001597 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001598 && time_before(jiffies, timeout))
1599 msleep(1);
1600
1601 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1602 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
1603
Adrian Huntera3621462009-09-22 16:44:42 -07001604 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001605 send_init_stream(host);
1606
Denis Karpovabb28e72009-09-22 16:44:44 -07001607 con = OMAP_HSMMC_READ(host->base, CON);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001608 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
Denis Karpovabb28e72009-09-22 16:44:44 -07001609 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
1610 else
1611 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001612
Denis Karpovdd498ef2009-09-22 16:44:49 -07001613 if (host->power_mode == MMC_POWER_OFF)
1614 mmc_host_disable(host->mmc);
1615 else
1616 mmc_host_lazy_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001617}
1618
1619static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1620{
Denis Karpov70a33412009-09-22 16:44:59 -07001621 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001622
Denis Karpov191d1f12009-09-22 16:44:55 -07001623 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001624 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001625 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001626}
1627
1628static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1629{
Denis Karpov70a33412009-09-22 16:44:59 -07001630 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001631
Denis Karpov191d1f12009-09-22 16:44:55 -07001632 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001633 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001634 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001635}
1636
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001637static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1638{
1639 struct omap_hsmmc_host *host = mmc_priv(mmc);
1640
1641 if (mmc_slot(host).init_card)
1642 mmc_slot(host).init_card(card);
1643}
1644
Denis Karpov70a33412009-09-22 16:44:59 -07001645static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001646{
1647 u32 hctl, capa, value;
1648
1649 /* Only MMC1 supports 3.0V */
1650 if (host->id == OMAP_MMC1_DEVID) {
1651 hctl = SDVS30;
1652 capa = VS30 | VS18;
1653 } else {
1654 hctl = SDVS18;
1655 capa = VS18;
1656 }
1657
1658 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1659 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1660
1661 value = OMAP_HSMMC_READ(host->base, CAPA);
1662 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1663
1664 /* Set the controller to AUTO IDLE mode */
1665 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1666 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1667
1668 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001669 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001670}
1671
Denis Karpovdd498ef2009-09-22 16:44:49 -07001672/*
1673 * Dynamic power saving handling, FSM:
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001674 * ENABLED -> DISABLED -> CARDSLEEP / REGSLEEP -> OFF
1675 * ^___________| | |
1676 * |______________________|______________________|
Denis Karpovdd498ef2009-09-22 16:44:49 -07001677 *
1678 * ENABLED: mmc host is fully functional
1679 * DISABLED: fclk is off
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001680 * CARDSLEEP: fclk is off, card is asleep, voltage regulator is asleep
1681 * REGSLEEP: fclk is off, voltage regulator is asleep
1682 * OFF: fclk is off, voltage regulator is off
Denis Karpovdd498ef2009-09-22 16:44:49 -07001683 *
1684 * Transition handlers return the timeout for the next state transition
1685 * or negative error.
1686 */
1687
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001688enum {ENABLED = 0, DISABLED, CARDSLEEP, REGSLEEP, OFF};
Denis Karpovdd498ef2009-09-22 16:44:49 -07001689
1690/* Handler for [ENABLED -> DISABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001691static int omap_hsmmc_enabled_to_disabled(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001692{
Denis Karpov70a33412009-09-22 16:44:59 -07001693 omap_hsmmc_context_save(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001694 clk_disable(host->fclk);
1695 host->dpm_state = DISABLED;
1696
1697 dev_dbg(mmc_dev(host->mmc), "ENABLED -> DISABLED\n");
1698
1699 if (host->power_mode == MMC_POWER_OFF)
1700 return 0;
1701
Adrian Hunter4380eea2010-02-15 10:03:34 -08001702 return OMAP_MMC_SLEEP_TIMEOUT;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001703}
1704
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001705/* Handler for [DISABLED -> REGSLEEP / CARDSLEEP] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001706static int omap_hsmmc_disabled_to_sleep(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001707{
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001708 int err, new_state;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001709
1710 if (!mmc_try_claim_host(host->mmc))
1711 return 0;
1712
1713 clk_enable(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001714 omap_hsmmc_context_restore(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001715 if (mmc_card_can_sleep(host->mmc)) {
1716 err = mmc_card_sleep(host->mmc);
1717 if (err < 0) {
1718 clk_disable(host->fclk);
1719 mmc_release_host(host->mmc);
1720 return err;
1721 }
1722 new_state = CARDSLEEP;
Denis Karpov70a33412009-09-22 16:44:59 -07001723 } else {
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001724 new_state = REGSLEEP;
Denis Karpov70a33412009-09-22 16:44:59 -07001725 }
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001726 if (mmc_slot(host).set_sleep)
1727 mmc_slot(host).set_sleep(host->dev, host->slot_id, 1, 0,
1728 new_state == CARDSLEEP);
1729 /* FIXME: turn off bus power and perhaps interrupts too */
1730 clk_disable(host->fclk);
1731 host->dpm_state = new_state;
1732
1733 mmc_release_host(host->mmc);
1734
1735 dev_dbg(mmc_dev(host->mmc), "DISABLED -> %s\n",
1736 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
Denis Karpovdd498ef2009-09-22 16:44:49 -07001737
Adrian Hunter1df58db2010-02-15 10:03:34 -08001738 if (mmc_slot(host).no_off)
1739 return 0;
1740
Denis Karpovdd498ef2009-09-22 16:44:49 -07001741 if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) ||
1742 mmc_slot(host).card_detect ||
1743 (mmc_slot(host).get_cover_state &&
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001744 mmc_slot(host).get_cover_state(host->dev, host->slot_id)))
Adrian Hunter4380eea2010-02-15 10:03:34 -08001745 return OMAP_MMC_OFF_TIMEOUT;
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001746
1747 return 0;
1748}
1749
1750/* Handler for [REGSLEEP / CARDSLEEP -> OFF] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001751static int omap_hsmmc_sleep_to_off(struct omap_hsmmc_host *host)
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001752{
1753 if (!mmc_try_claim_host(host->mmc))
1754 return 0;
1755
Adrian Hunter1df58db2010-02-15 10:03:34 -08001756 if (mmc_slot(host).no_off)
1757 return 0;
1758
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001759 if (!((host->mmc->caps & MMC_CAP_NONREMOVABLE) ||
1760 mmc_slot(host).card_detect ||
1761 (mmc_slot(host).get_cover_state &&
1762 mmc_slot(host).get_cover_state(host->dev, host->slot_id)))) {
1763 mmc_release_host(host->mmc);
1764 return 0;
Adrian Hunter623821f2009-09-22 16:44:51 -07001765 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001766
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001767 mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
1768 host->vdd = 0;
1769 host->power_mode = MMC_POWER_OFF;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001770
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001771 dev_dbg(mmc_dev(host->mmc), "%s -> OFF\n",
1772 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
Denis Karpovdd498ef2009-09-22 16:44:49 -07001773
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001774 host->dpm_state = OFF;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001775
1776 mmc_release_host(host->mmc);
1777
1778 return 0;
1779}
1780
1781/* Handler for [DISABLED -> ENABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001782static int omap_hsmmc_disabled_to_enabled(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001783{
1784 int err;
1785
1786 err = clk_enable(host->fclk);
1787 if (err < 0)
1788 return err;
1789
Denis Karpov70a33412009-09-22 16:44:59 -07001790 omap_hsmmc_context_restore(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001791 host->dpm_state = ENABLED;
1792
1793 dev_dbg(mmc_dev(host->mmc), "DISABLED -> ENABLED\n");
1794
1795 return 0;
1796}
1797
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001798/* Handler for [SLEEP -> ENABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001799static int omap_hsmmc_sleep_to_enabled(struct omap_hsmmc_host *host)
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001800{
1801 if (!mmc_try_claim_host(host->mmc))
1802 return 0;
1803
1804 clk_enable(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001805 omap_hsmmc_context_restore(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001806 if (mmc_slot(host).set_sleep)
1807 mmc_slot(host).set_sleep(host->dev, host->slot_id, 0,
1808 host->vdd, host->dpm_state == CARDSLEEP);
1809 if (mmc_card_can_sleep(host->mmc))
1810 mmc_card_awake(host->mmc);
1811
1812 dev_dbg(mmc_dev(host->mmc), "%s -> ENABLED\n",
1813 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
1814
1815 host->dpm_state = ENABLED;
1816
1817 mmc_release_host(host->mmc);
1818
1819 return 0;
1820}
1821
Denis Karpovdd498ef2009-09-22 16:44:49 -07001822/* Handler for [OFF -> ENABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001823static int omap_hsmmc_off_to_enabled(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001824{
1825 clk_enable(host->fclk);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001826
Denis Karpov70a33412009-09-22 16:44:59 -07001827 omap_hsmmc_context_restore(host);
1828 omap_hsmmc_conf_bus_power(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001829 mmc_power_restore_host(host->mmc);
1830
1831 host->dpm_state = ENABLED;
1832
1833 dev_dbg(mmc_dev(host->mmc), "OFF -> ENABLED\n");
1834
1835 return 0;
1836}
1837
1838/*
1839 * Bring MMC host to ENABLED from any other PM state.
1840 */
Denis Karpov70a33412009-09-22 16:44:59 -07001841static int omap_hsmmc_enable(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001842{
Denis Karpov70a33412009-09-22 16:44:59 -07001843 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001844
1845 switch (host->dpm_state) {
1846 case DISABLED:
Denis Karpov70a33412009-09-22 16:44:59 -07001847 return omap_hsmmc_disabled_to_enabled(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001848 case CARDSLEEP:
Adrian Hunter623821f2009-09-22 16:44:51 -07001849 case REGSLEEP:
Denis Karpov70a33412009-09-22 16:44:59 -07001850 return omap_hsmmc_sleep_to_enabled(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001851 case OFF:
Denis Karpov70a33412009-09-22 16:44:59 -07001852 return omap_hsmmc_off_to_enabled(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001853 default:
1854 dev_dbg(mmc_dev(host->mmc), "UNKNOWN state\n");
1855 return -EINVAL;
1856 }
1857}
1858
1859/*
1860 * Bring MMC host in PM state (one level deeper).
1861 */
Denis Karpov70a33412009-09-22 16:44:59 -07001862static int omap_hsmmc_disable(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001863{
Denis Karpov70a33412009-09-22 16:44:59 -07001864 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001865
1866 switch (host->dpm_state) {
1867 case ENABLED: {
1868 int delay;
1869
Denis Karpov70a33412009-09-22 16:44:59 -07001870 delay = omap_hsmmc_enabled_to_disabled(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001871 if (lazy || delay < 0)
1872 return delay;
1873 return 0;
1874 }
1875 case DISABLED:
Denis Karpov70a33412009-09-22 16:44:59 -07001876 return omap_hsmmc_disabled_to_sleep(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001877 case CARDSLEEP:
1878 case REGSLEEP:
Denis Karpov70a33412009-09-22 16:44:59 -07001879 return omap_hsmmc_sleep_to_off(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001880 default:
1881 dev_dbg(mmc_dev(host->mmc), "UNKNOWN state\n");
1882 return -EINVAL;
1883 }
1884}
1885
Denis Karpov70a33412009-09-22 16:44:59 -07001886static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001887{
Denis Karpov70a33412009-09-22 16:44:59 -07001888 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001889 int err;
1890
1891 err = clk_enable(host->fclk);
1892 if (err)
1893 return err;
1894 dev_dbg(mmc_dev(host->mmc), "mmc_fclk: enabled\n");
Denis Karpov70a33412009-09-22 16:44:59 -07001895 omap_hsmmc_context_restore(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001896 return 0;
1897}
1898
Denis Karpov70a33412009-09-22 16:44:59 -07001899static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001900{
Denis Karpov70a33412009-09-22 16:44:59 -07001901 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001902
Denis Karpov70a33412009-09-22 16:44:59 -07001903 omap_hsmmc_context_save(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001904 clk_disable(host->fclk);
1905 dev_dbg(mmc_dev(host->mmc), "mmc_fclk: disabled\n");
1906 return 0;
1907}
1908
Denis Karpov70a33412009-09-22 16:44:59 -07001909static const struct mmc_host_ops omap_hsmmc_ops = {
1910 .enable = omap_hsmmc_enable_fclk,
1911 .disable = omap_hsmmc_disable_fclk,
1912 .request = omap_hsmmc_request,
1913 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001914 .get_cd = omap_hsmmc_get_cd,
1915 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001916 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001917 /* NYET -- enable_sdio_irq */
1918};
1919
Denis Karpov70a33412009-09-22 16:44:59 -07001920static const struct mmc_host_ops omap_hsmmc_ps_ops = {
1921 .enable = omap_hsmmc_enable,
1922 .disable = omap_hsmmc_disable,
1923 .request = omap_hsmmc_request,
1924 .set_ios = omap_hsmmc_set_ios,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001925 .get_cd = omap_hsmmc_get_cd,
1926 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001927 .init_card = omap_hsmmc_init_card,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001928 /* NYET -- enable_sdio_irq */
1929};
1930
Denis Karpovd900f712009-09-22 16:44:38 -07001931#ifdef CONFIG_DEBUG_FS
1932
Denis Karpov70a33412009-09-22 16:44:59 -07001933static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001934{
1935 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001936 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001937 int context_loss = 0;
1938
Denis Karpov70a33412009-09-22 16:44:59 -07001939 if (host->pdata->get_context_loss_count)
1940 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001941
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001942 seq_printf(s, "mmc%d:\n"
1943 " enabled:\t%d\n"
Denis Karpovdd498ef2009-09-22 16:44:49 -07001944 " dpm_state:\t%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001945 " nesting_cnt:\t%d\n"
Denis Karpov11dd62a2009-09-22 16:44:43 -07001946 " ctx_loss:\t%d:%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001947 "\nregs:\n",
Denis Karpovdd498ef2009-09-22 16:44:49 -07001948 mmc->index, mmc->enabled ? 1 : 0,
1949 host->dpm_state, mmc->nesting_cnt,
Denis Karpov11dd62a2009-09-22 16:44:43 -07001950 host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001951
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001952 if (host->suspended || host->dpm_state == OFF) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001953 seq_printf(s, "host suspended, can't read registers\n");
1954 return 0;
1955 }
1956
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001957 if (clk_enable(host->fclk) != 0) {
1958 seq_printf(s, "can't read the regs\n");
Denis Karpovdd498ef2009-09-22 16:44:49 -07001959 return 0;
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001960 }
Denis Karpovd900f712009-09-22 16:44:38 -07001961
1962 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1963 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1964 seq_printf(s, "CON:\t\t0x%08x\n",
1965 OMAP_HSMMC_READ(host->base, CON));
1966 seq_printf(s, "HCTL:\t\t0x%08x\n",
1967 OMAP_HSMMC_READ(host->base, HCTL));
1968 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1969 OMAP_HSMMC_READ(host->base, SYSCTL));
1970 seq_printf(s, "IE:\t\t0x%08x\n",
1971 OMAP_HSMMC_READ(host->base, IE));
1972 seq_printf(s, "ISE:\t\t0x%08x\n",
1973 OMAP_HSMMC_READ(host->base, ISE));
1974 seq_printf(s, "CAPA:\t\t0x%08x\n",
1975 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001976
1977 clk_disable(host->fclk);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001978
Denis Karpovd900f712009-09-22 16:44:38 -07001979 return 0;
1980}
1981
Denis Karpov70a33412009-09-22 16:44:59 -07001982static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001983{
Denis Karpov70a33412009-09-22 16:44:59 -07001984 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001985}
1986
1987static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001988 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001989 .read = seq_read,
1990 .llseek = seq_lseek,
1991 .release = single_release,
1992};
1993
Denis Karpov70a33412009-09-22 16:44:59 -07001994static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001995{
1996 if (mmc->debugfs_root)
1997 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1998 mmc, &mmc_regs_fops);
1999}
2000
2001#else
2002
Denis Karpov70a33412009-09-22 16:44:59 -07002003static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07002004{
2005}
2006
2007#endif
2008
Denis Karpov70a33412009-09-22 16:44:59 -07002009static int __init omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002010{
2011 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
2012 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002013 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002014 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002015 int ret, irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002016
2017 if (pdata == NULL) {
2018 dev_err(&pdev->dev, "Platform Data is missing\n");
2019 return -ENXIO;
2020 }
2021
2022 if (pdata->nr_slots == 0) {
2023 dev_err(&pdev->dev, "No Slots\n");
2024 return -ENXIO;
2025 }
2026
2027 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2028 irq = platform_get_irq(pdev, 0);
2029 if (res == NULL || irq < 0)
2030 return -ENXIO;
2031
kishore kadiyala91a0b082010-10-01 16:35:28 -07002032 res->start += pdata->reg_offset;
2033 res->end += pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002034 res = request_mem_region(res->start, res->end - res->start + 1,
2035 pdev->name);
2036 if (res == NULL)
2037 return -EBUSY;
2038
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002039 ret = omap_hsmmc_gpio_init(pdata);
2040 if (ret)
2041 goto err;
2042
Denis Karpov70a33412009-09-22 16:44:59 -07002043 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002044 if (!mmc) {
2045 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002046 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002047 }
2048
2049 host = mmc_priv(mmc);
2050 host->mmc = mmc;
2051 host->pdata = pdata;
2052 host->dev = &pdev->dev;
2053 host->use_dma = 1;
2054 host->dev->dma_mask = &pdata->dma_mask;
2055 host->dma_ch = -1;
2056 host->irq = irq;
2057 host->id = pdev->id;
2058 host->slot_id = 0;
2059 host->mapbase = res->start;
2060 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08002061 host->power_mode = MMC_POWER_OFF;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002062
2063 platform_set_drvdata(pdev, host);
Denis Karpov70a33412009-09-22 16:44:59 -07002064 INIT_WORK(&host->mmc_carddetect_work, omap_hsmmc_detect);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002065
Denis Karpov191d1f12009-09-22 16:44:55 -07002066 if (mmc_slot(host).power_saving)
Denis Karpov70a33412009-09-22 16:44:59 -07002067 mmc->ops = &omap_hsmmc_ps_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002068 else
Denis Karpov70a33412009-09-22 16:44:59 -07002069 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002070
Adrian Huntere0eb2422010-02-15 10:03:34 -08002071 /*
2072 * If regulator_disable can only put vcc_aux to sleep then there is
2073 * no off state.
2074 */
2075 if (mmc_slot(host).vcc_aux_disable_is_sleep)
2076 mmc_slot(host).no_off = 1;
2077
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002078 mmc->f_min = 400000;
2079 mmc->f_max = 52000000;
2080
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002081 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002082
Russell King6f7607c2009-01-28 10:22:50 +00002083 host->iclk = clk_get(&pdev->dev, "ick");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002084 if (IS_ERR(host->iclk)) {
2085 ret = PTR_ERR(host->iclk);
2086 host->iclk = NULL;
2087 goto err1;
2088 }
Russell King6f7607c2009-01-28 10:22:50 +00002089 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002090 if (IS_ERR(host->fclk)) {
2091 ret = PTR_ERR(host->fclk);
2092 host->fclk = NULL;
2093 clk_put(host->iclk);
2094 goto err1;
2095 }
2096
Denis Karpov70a33412009-09-22 16:44:59 -07002097 omap_hsmmc_context_save(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002098
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002099 mmc->caps |= MMC_CAP_DISABLE;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002100 mmc_set_disable_delay(mmc, OMAP_MMC_DISABLED_TIMEOUT);
2101 /* we start off in DISABLED state */
2102 host->dpm_state = DISABLED;
2103
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002104 if (mmc_host_enable(host->mmc) != 0) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002105 clk_put(host->iclk);
2106 clk_put(host->fclk);
2107 goto err1;
2108 }
2109
2110 if (clk_enable(host->iclk) != 0) {
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002111 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002112 clk_put(host->iclk);
2113 clk_put(host->fclk);
2114 goto err1;
2115 }
2116
Adrian Hunter2bec0892009-09-22 16:45:02 -07002117 if (cpu_is_omap2430()) {
2118 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
2119 /*
2120 * MMC can still work without debounce clock.
2121 */
2122 if (IS_ERR(host->dbclk))
2123 dev_warn(mmc_dev(host->mmc),
2124 "Failed to get debounce clock\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002125 else
Adrian Hunter2bec0892009-09-22 16:45:02 -07002126 host->got_dbclk = 1;
2127
2128 if (host->got_dbclk)
2129 if (clk_enable(host->dbclk) != 0)
2130 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
2131 " clk failed\n");
2132 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002133
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002134 /* Since we do only SG emulation, we can have as many segs
2135 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002136 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002137
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002138 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2139 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2140 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2141 mmc->max_seg_size = mmc->max_req_size;
2142
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002143 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07002144 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002145
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002146 mmc->caps |= mmc_slot(host).caps;
2147 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002148 mmc->caps |= MMC_CAP_4_BIT_DATA;
2149
Denis Karpov191d1f12009-09-22 16:44:55 -07002150 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002151 mmc->caps |= MMC_CAP_NONREMOVABLE;
2152
Denis Karpov70a33412009-09-22 16:44:59 -07002153 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002154
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00002155 /* Select DMA lines */
2156 switch (host->id) {
2157 case OMAP_MMC1_DEVID:
2158 host->dma_line_tx = OMAP24XX_DMA_MMC1_TX;
2159 host->dma_line_rx = OMAP24XX_DMA_MMC1_RX;
2160 break;
2161 case OMAP_MMC2_DEVID:
2162 host->dma_line_tx = OMAP24XX_DMA_MMC2_TX;
2163 host->dma_line_rx = OMAP24XX_DMA_MMC2_RX;
2164 break;
2165 case OMAP_MMC3_DEVID:
2166 host->dma_line_tx = OMAP34XX_DMA_MMC3_TX;
2167 host->dma_line_rx = OMAP34XX_DMA_MMC3_RX;
2168 break;
kishore kadiyala82cf8182009-09-22 16:45:25 -07002169 case OMAP_MMC4_DEVID:
2170 host->dma_line_tx = OMAP44XX_DMA_MMC4_TX;
2171 host->dma_line_rx = OMAP44XX_DMA_MMC4_RX;
2172 break;
2173 case OMAP_MMC5_DEVID:
2174 host->dma_line_tx = OMAP44XX_DMA_MMC5_TX;
2175 host->dma_line_rx = OMAP44XX_DMA_MMC5_RX;
2176 break;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00002177 default:
2178 dev_err(mmc_dev(host->mmc), "Invalid MMC id\n");
2179 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002180 }
2181
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002182 /* Request IRQ for MMC operations */
Denis Karpov70a33412009-09-22 16:44:59 -07002183 ret = request_irq(host->irq, omap_hsmmc_irq, IRQF_DISABLED,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002184 mmc_hostname(mmc), host);
2185 if (ret) {
2186 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
2187 goto err_irq;
2188 }
2189
2190 if (pdata->init != NULL) {
2191 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07002192 dev_dbg(mmc_dev(host->mmc),
2193 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002194 goto err_irq_cd_init;
2195 }
2196 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002197
Adrian Hunterb702b102010-02-15 10:03:35 -08002198 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002199 ret = omap_hsmmc_reg_get(host);
2200 if (ret)
2201 goto err_reg;
2202 host->use_reg = 1;
2203 }
2204
David Brownellb583f262009-05-28 14:04:03 -07002205 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002206
2207 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02002208 if ((mmc_slot(host).card_detect_irq)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002209 ret = request_irq(mmc_slot(host).card_detect_irq,
Denis Karpov70a33412009-09-22 16:44:59 -07002210 omap_hsmmc_cd_handler,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002211 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING
2212 | IRQF_DISABLED,
2213 mmc_hostname(mmc), host);
2214 if (ret) {
2215 dev_dbg(mmc_dev(host->mmc),
2216 "Unable to grab MMC CD IRQ\n");
2217 goto err_irq_cd;
2218 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002219 pdata->suspend = omap_hsmmc_suspend_cdirq;
2220 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002221 }
2222
Adrian Hunterb4175772010-05-26 14:42:06 -07002223 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002224
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002225 mmc_host_lazy_disable(host->mmc);
2226
Adrian Hunterb62f6222009-09-22 16:45:01 -07002227 omap_hsmmc_protect_card(host);
2228
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002229 mmc_add_host(mmc);
2230
Denis Karpov191d1f12009-09-22 16:44:55 -07002231 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002232 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2233 if (ret < 0)
2234 goto err_slot_name;
2235 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002236 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002237 ret = device_create_file(&mmc->class_dev,
2238 &dev_attr_cover_switch);
2239 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002240 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002241 }
2242
Denis Karpov70a33412009-09-22 16:44:59 -07002243 omap_hsmmc_debugfs(mmc);
Denis Karpovd900f712009-09-22 16:44:38 -07002244
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002245 return 0;
2246
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002247err_slot_name:
2248 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002249 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002250err_irq_cd:
2251 if (host->use_reg)
2252 omap_hsmmc_reg_put(host);
2253err_reg:
2254 if (host->pdata->cleanup)
2255 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002256err_irq_cd_init:
2257 free_irq(host->irq, host);
2258err_irq:
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002259 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002260 clk_disable(host->iclk);
2261 clk_put(host->fclk);
2262 clk_put(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002263 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002264 clk_disable(host->dbclk);
2265 clk_put(host->dbclk);
2266 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002267err1:
2268 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002269 platform_set_drvdata(pdev, NULL);
2270 mmc_free_host(mmc);
2271err_alloc:
2272 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002273err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002274 release_mem_region(res->start, res->end - res->start + 1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002275 return ret;
2276}
2277
Denis Karpov70a33412009-09-22 16:44:59 -07002278static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002279{
Denis Karpov70a33412009-09-22 16:44:59 -07002280 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002281 struct resource *res;
2282
2283 if (host) {
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002284 mmc_host_enable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002285 mmc_remove_host(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002286 if (host->use_reg)
2287 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002288 if (host->pdata->cleanup)
2289 host->pdata->cleanup(&pdev->dev);
2290 free_irq(host->irq, host);
2291 if (mmc_slot(host).card_detect_irq)
2292 free_irq(mmc_slot(host).card_detect_irq, host);
2293 flush_scheduled_work();
2294
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002295 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002296 clk_disable(host->iclk);
2297 clk_put(host->fclk);
2298 clk_put(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002299 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002300 clk_disable(host->dbclk);
2301 clk_put(host->dbclk);
2302 }
2303
2304 mmc_free_host(host->mmc);
2305 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002306 omap_hsmmc_gpio_free(pdev->dev.platform_data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002307 }
2308
2309 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2310 if (res)
2311 release_mem_region(res->start, res->end - res->start + 1);
2312 platform_set_drvdata(pdev, NULL);
2313
2314 return 0;
2315}
2316
2317#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002318static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002319{
2320 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002321 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002322 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002323
2324 if (host && host->suspended)
2325 return 0;
2326
2327 if (host) {
Adrian Huntera6b22402009-09-22 16:44:45 -07002328 host->suspended = 1;
2329 if (host->pdata->suspend) {
2330 ret = host->pdata->suspend(&pdev->dev,
2331 host->slot_id);
2332 if (ret) {
2333 dev_dbg(mmc_dev(host->mmc),
2334 "Unable to handle MMC board"
2335 " level suspend\n");
2336 host->suspended = 0;
2337 return ret;
2338 }
2339 }
2340 cancel_work_sync(&host->mmc_carddetect_work);
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002341 ret = mmc_suspend_host(host->mmc);
Ethan Due7cb7562010-09-09 16:37:49 -07002342 mmc_host_enable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002343 if (ret == 0) {
Adrian Hunterb4175772010-05-26 14:42:06 -07002344 omap_hsmmc_disable_irq(host);
Jarkko Lavinen0683af42009-03-12 15:30:58 +02002345 OMAP_HSMMC_WRITE(host->base, HCTL,
Denis Karpov191d1f12009-09-22 16:44:55 -07002346 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002347 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002348 clk_disable(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002349 if (host->got_dbclk)
2350 clk_disable(host->dbclk);
Adrian Huntera6b22402009-09-22 16:44:45 -07002351 } else {
2352 host->suspended = 0;
2353 if (host->pdata->resume) {
2354 ret = host->pdata->resume(&pdev->dev,
2355 host->slot_id);
2356 if (ret)
2357 dev_dbg(mmc_dev(host->mmc),
2358 "Unmask interrupt failed\n");
2359 }
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002360 mmc_host_disable(host->mmc);
Adrian Huntera6b22402009-09-22 16:44:45 -07002361 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002362
2363 }
2364 return ret;
2365}
2366
2367/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002368static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002369{
2370 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002371 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002372 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002373
2374 if (host && !host->suspended)
2375 return 0;
2376
2377 if (host) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002378 ret = clk_enable(host->iclk);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002379 if (ret)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002380 goto clk_en_err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002381
Denis Karpov11dd62a2009-09-22 16:44:43 -07002382 if (mmc_host_enable(host->mmc) != 0) {
2383 clk_disable(host->iclk);
2384 goto clk_en_err;
2385 }
2386
Adrian Hunter2bec0892009-09-22 16:45:02 -07002387 if (host->got_dbclk)
2388 clk_enable(host->dbclk);
2389
Denis Karpov70a33412009-09-22 16:44:59 -07002390 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002391
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002392 if (host->pdata->resume) {
2393 ret = host->pdata->resume(&pdev->dev, host->slot_id);
2394 if (ret)
2395 dev_dbg(mmc_dev(host->mmc),
2396 "Unmask interrupt failed\n");
2397 }
2398
Adrian Hunterb62f6222009-09-22 16:45:01 -07002399 omap_hsmmc_protect_card(host);
2400
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002401 /* Notify the core to resume the host */
2402 ret = mmc_resume_host(host->mmc);
2403 if (ret == 0)
2404 host->suspended = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07002405
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002406 mmc_host_lazy_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002407 }
2408
2409 return ret;
2410
2411clk_en_err:
2412 dev_dbg(mmc_dev(host->mmc),
2413 "Failed to enable MMC clocks during resume\n");
2414 return ret;
2415}
2416
2417#else
Denis Karpov70a33412009-09-22 16:44:59 -07002418#define omap_hsmmc_suspend NULL
2419#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002420#endif
2421
Kevin Hilmana791daa2010-05-26 14:42:07 -07002422static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002423 .suspend = omap_hsmmc_suspend,
2424 .resume = omap_hsmmc_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002425};
2426
2427static struct platform_driver omap_hsmmc_driver = {
2428 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002429 .driver = {
2430 .name = DRIVER_NAME,
2431 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002432 .pm = &omap_hsmmc_dev_pm_ops,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002433 },
2434};
2435
Denis Karpov70a33412009-09-22 16:44:59 -07002436static int __init omap_hsmmc_init(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002437{
2438 /* Register the MMC driver */
Roger Quadros87532982009-10-26 16:49:38 -07002439 return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002440}
2441
Denis Karpov70a33412009-09-22 16:44:59 -07002442static void __exit omap_hsmmc_cleanup(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002443{
2444 /* Unregister MMC driver */
Denis Karpov70a33412009-09-22 16:44:59 -07002445 platform_driver_unregister(&omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002446}
2447
Denis Karpov70a33412009-09-22 16:44:59 -07002448module_init(omap_hsmmc_init);
2449module_exit(omap_hsmmc_cleanup);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002450
2451MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2452MODULE_LICENSE("GPL");
2453MODULE_ALIAS("platform:" DRIVER_NAME);
2454MODULE_AUTHOR("Texas Instruments Inc");