blob: 8c42573f42eaef23fe2770b0a6a0b0de1bd0b1f0 [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 Hunter93caf8e2010-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 Hunter93caf8e2010-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
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500263static int omap_hsmmc_235_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800264 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
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500319static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on,
320 int vdd)
321{
322 return 0;
323}
324
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800325static int omap_hsmmc_1_set_sleep(struct device *dev, int slot, int sleep,
326 int vdd, int cardsleep)
327{
328 struct omap_hsmmc_host *host =
329 platform_get_drvdata(to_platform_device(dev));
330 int mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
331
332 return regulator_set_mode(host->vcc, mode);
333}
334
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500335static int omap_hsmmc_235_set_sleep(struct device *dev, int slot, int sleep,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800336 int vdd, int cardsleep)
337{
338 struct omap_hsmmc_host *host =
339 platform_get_drvdata(to_platform_device(dev));
340 int err, mode;
341
342 /*
343 * If we don't see a Vcc regulator, assume it's a fixed
344 * voltage always-on regulator.
345 */
346 if (!host->vcc)
347 return 0;
348
349 mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
350
351 if (!host->vcc_aux)
352 return regulator_set_mode(host->vcc, mode);
353
354 if (cardsleep) {
355 /* VCC can be turned off if card is asleep */
356 if (sleep)
Linus Walleij99fc5132010-09-29 01:08:27 -0400357 err = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800358 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400359 err = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800360 } else
361 err = regulator_set_mode(host->vcc, mode);
362 if (err)
363 return err;
Adrian Huntere0eb2422010-02-15 10:03:34 -0800364
365 if (!mmc_slot(host).vcc_aux_disable_is_sleep)
366 return regulator_set_mode(host->vcc_aux, mode);
367
368 if (sleep)
369 return regulator_disable(host->vcc_aux);
370 else
371 return regulator_enable(host->vcc_aux);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800372}
373
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500374static int omap_hsmmc_4_set_sleep(struct device *dev, int slot, int sleep,
375 int vdd, int cardsleep)
376{
377 return 0;
378}
379
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800380static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
381{
382 struct regulator *reg;
383 int ret = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700384 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800385
386 switch (host->id) {
387 case OMAP_MMC1_DEVID:
388 /* On-chip level shifting via PBIAS0/PBIAS1 */
389 mmc_slot(host).set_power = omap_hsmmc_1_set_power;
390 mmc_slot(host).set_sleep = omap_hsmmc_1_set_sleep;
391 break;
392 case OMAP_MMC2_DEVID:
393 case OMAP_MMC3_DEVID:
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500394 case OMAP_MMC5_DEVID:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800395 /* Off-chip level shifting, or none */
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500396 mmc_slot(host).set_power = omap_hsmmc_235_set_power;
397 mmc_slot(host).set_sleep = omap_hsmmc_235_set_sleep;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800398 break;
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500399 case OMAP_MMC4_DEVID:
400 mmc_slot(host).set_power = omap_hsmmc_4_set_power;
401 mmc_slot(host).set_sleep = omap_hsmmc_4_set_sleep;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800402 default:
403 pr_err("MMC%d configuration not supported!\n", host->id);
404 return -EINVAL;
405 }
406
407 reg = regulator_get(host->dev, "vmmc");
408 if (IS_ERR(reg)) {
409 dev_dbg(host->dev, "vmmc regulator missing\n");
410 /*
411 * HACK: until fixed.c regulator is usable,
412 * we don't require a main regulator
413 * for MMC2 or MMC3
414 */
415 if (host->id == OMAP_MMC1_DEVID) {
416 ret = PTR_ERR(reg);
417 goto err;
418 }
419 } else {
420 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700421 ocr_value = mmc_regulator_get_ocrmask(reg);
422 if (!mmc_slot(host).ocr_mask) {
423 mmc_slot(host).ocr_mask = ocr_value;
424 } else {
425 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
426 pr_err("MMC%d ocrmask %x is not supported\n",
427 host->id, mmc_slot(host).ocr_mask);
428 mmc_slot(host).ocr_mask = 0;
429 return -EINVAL;
430 }
431 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800432 mmc_slot(host).ocr_mask = mmc_regulator_get_ocrmask(reg);
433
434 /* Allow an aux regulator */
435 reg = regulator_get(host->dev, "vmmc_aux");
436 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
437
438 /*
439 * UGLY HACK: workaround regulator framework bugs.
440 * When the bootloader leaves a supply active, it's
441 * initialized with zero usecount ... and we can't
442 * disable it without first enabling it. Until the
443 * framework is fixed, we need a workaround like this
444 * (which is safe for MMC, but not in general).
445 */
446 if (regulator_is_enabled(host->vcc) > 0) {
447 regulator_enable(host->vcc);
448 regulator_disable(host->vcc);
449 }
450 if (host->vcc_aux) {
451 if (regulator_is_enabled(reg) > 0) {
452 regulator_enable(reg);
453 regulator_disable(reg);
454 }
455 }
456 }
457
458 return 0;
459
460err:
461 mmc_slot(host).set_power = NULL;
462 mmc_slot(host).set_sleep = NULL;
463 return ret;
464}
465
466static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
467{
468 regulator_put(host->vcc);
469 regulator_put(host->vcc_aux);
470 mmc_slot(host).set_power = NULL;
471 mmc_slot(host).set_sleep = NULL;
472}
473
Adrian Hunterb702b102010-02-15 10:03:35 -0800474static inline int omap_hsmmc_have_reg(void)
475{
476 return 1;
477}
478
479#else
480
481static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
482{
483 return -EINVAL;
484}
485
486static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
487{
488}
489
490static inline int omap_hsmmc_have_reg(void)
491{
492 return 0;
493}
494
495#endif
496
497static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
498{
499 int ret;
500
501 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800502 if (pdata->slots[0].cover)
503 pdata->slots[0].get_cover_state =
504 omap_hsmmc_get_cover_state;
505 else
506 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
507 pdata->slots[0].card_detect_irq =
508 gpio_to_irq(pdata->slots[0].switch_pin);
509 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
510 if (ret)
511 return ret;
512 ret = gpio_direction_input(pdata->slots[0].switch_pin);
513 if (ret)
514 goto err_free_sp;
515 } else
516 pdata->slots[0].switch_pin = -EINVAL;
517
518 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
519 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
520 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
521 if (ret)
522 goto err_free_cd;
523 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
524 if (ret)
525 goto err_free_wp;
526 } else
527 pdata->slots[0].gpio_wp = -EINVAL;
528
529 return 0;
530
531err_free_wp:
532 gpio_free(pdata->slots[0].gpio_wp);
533err_free_cd:
534 if (gpio_is_valid(pdata->slots[0].switch_pin))
535err_free_sp:
536 gpio_free(pdata->slots[0].switch_pin);
537 return ret;
538}
539
540static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
541{
542 if (gpio_is_valid(pdata->slots[0].gpio_wp))
543 gpio_free(pdata->slots[0].gpio_wp);
544 if (gpio_is_valid(pdata->slots[0].switch_pin))
545 gpio_free(pdata->slots[0].switch_pin);
546}
547
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100548/*
549 * Stop clock to the card
550 */
Denis Karpov70a33412009-09-22 16:44:59 -0700551static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100552{
553 OMAP_HSMMC_WRITE(host->base, SYSCTL,
554 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
555 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
556 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
557}
558
Adrian Hunter93caf8e2010-08-11 14:17:48 -0700559static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
560 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700561{
562 unsigned int irq_mask;
563
564 if (host->use_dma)
565 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
566 else
567 irq_mask = INT_EN_MASK;
568
Adrian Hunter93caf8e2010-08-11 14:17:48 -0700569 /* Disable timeout for erases */
570 if (cmd->opcode == MMC_ERASE)
571 irq_mask &= ~DTO_ENABLE;
572
Adrian Hunterb4175772010-05-26 14:42:06 -0700573 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
574 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
575 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
576}
577
578static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
579{
580 OMAP_HSMMC_WRITE(host->base, ISE, 0);
581 OMAP_HSMMC_WRITE(host->base, IE, 0);
582 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
583}
584
Denis Karpov11dd62a2009-09-22 16:44:43 -0700585#ifdef CONFIG_PM
586
587/*
588 * Restore the MMC host context, if it was lost as result of a
589 * power state change.
590 */
Denis Karpov70a33412009-09-22 16:44:59 -0700591static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700592{
593 struct mmc_ios *ios = &host->mmc->ios;
594 struct omap_mmc_platform_data *pdata = host->pdata;
595 int context_loss = 0;
596 u32 hctl, capa, con;
597 u16 dsor = 0;
598 unsigned long timeout;
599
600 if (pdata->get_context_loss_count) {
601 context_loss = pdata->get_context_loss_count(host->dev);
602 if (context_loss < 0)
603 return 1;
604 }
605
606 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
607 context_loss == host->context_loss ? "not " : "");
608 if (host->context_loss == context_loss)
609 return 1;
610
611 /* Wait for hardware reset */
612 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
613 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
614 && time_before(jiffies, timeout))
615 ;
616
617 /* Do software reset */
618 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
619 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
620 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
621 && time_before(jiffies, timeout))
622 ;
623
624 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
625 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
626
627 if (host->id == OMAP_MMC1_DEVID) {
628 if (host->power_mode != MMC_POWER_OFF &&
629 (1 << ios->vdd) <= MMC_VDD_23_24)
630 hctl = SDVS18;
631 else
632 hctl = SDVS30;
633 capa = VS30 | VS18;
634 } else {
635 hctl = SDVS18;
636 capa = VS18;
637 }
638
639 OMAP_HSMMC_WRITE(host->base, HCTL,
640 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
641
642 OMAP_HSMMC_WRITE(host->base, CAPA,
643 OMAP_HSMMC_READ(host->base, CAPA) | capa);
644
645 OMAP_HSMMC_WRITE(host->base, HCTL,
646 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
647
648 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
649 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
650 && time_before(jiffies, timeout))
651 ;
652
Adrian Hunterb4175772010-05-26 14:42:06 -0700653 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700654
655 /* Do not initialize card-specific things if the power is off */
656 if (host->power_mode == MMC_POWER_OFF)
657 goto out;
658
659 con = OMAP_HSMMC_READ(host->base, CON);
660 switch (ios->bus_width) {
661 case MMC_BUS_WIDTH_8:
662 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
663 break;
664 case MMC_BUS_WIDTH_4:
665 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
666 OMAP_HSMMC_WRITE(host->base, HCTL,
667 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
668 break;
669 case MMC_BUS_WIDTH_1:
670 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
671 OMAP_HSMMC_WRITE(host->base, HCTL,
672 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
673 break;
674 }
675
676 if (ios->clock) {
677 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
678 if (dsor < 1)
679 dsor = 1;
680
681 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
682 dsor++;
683
684 if (dsor > 250)
685 dsor = 250;
686 }
687
688 OMAP_HSMMC_WRITE(host->base, SYSCTL,
689 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
690 OMAP_HSMMC_WRITE(host->base, SYSCTL, (dsor << 6) | (DTO << 16));
691 OMAP_HSMMC_WRITE(host->base, SYSCTL,
692 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
693
694 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
695 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
696 && time_before(jiffies, timeout))
697 ;
698
699 OMAP_HSMMC_WRITE(host->base, SYSCTL,
700 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
701
702 con = OMAP_HSMMC_READ(host->base, CON);
703 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
704 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
705 else
706 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
707out:
708 host->context_loss = context_loss;
709
710 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
711 return 0;
712}
713
714/*
715 * Save the MMC host context (store the number of power state changes so far).
716 */
Denis Karpov70a33412009-09-22 16:44:59 -0700717static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700718{
719 struct omap_mmc_platform_data *pdata = host->pdata;
720 int context_loss;
721
722 if (pdata->get_context_loss_count) {
723 context_loss = pdata->get_context_loss_count(host->dev);
724 if (context_loss < 0)
725 return;
726 host->context_loss = context_loss;
727 }
728}
729
730#else
731
Denis Karpov70a33412009-09-22 16:44:59 -0700732static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700733{
734 return 0;
735}
736
Denis Karpov70a33412009-09-22 16:44:59 -0700737static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700738{
739}
740
741#endif
742
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100743/*
744 * Send init stream sequence to card
745 * before sending IDLE command
746 */
Denis Karpov70a33412009-09-22 16:44:59 -0700747static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100748{
749 int reg = 0;
750 unsigned long timeout;
751
Adrian Hunterb62f6222009-09-22 16:45:01 -0700752 if (host->protect_card)
753 return;
754
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100755 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700756
757 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100758 OMAP_HSMMC_WRITE(host->base, CON,
759 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
760 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
761
762 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
763 while ((reg != CC) && time_before(jiffies, timeout))
764 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
765
766 OMAP_HSMMC_WRITE(host->base, CON,
767 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700768
769 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
770 OMAP_HSMMC_READ(host->base, STAT);
771
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100772 enable_irq(host->irq);
773}
774
775static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700776int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100777{
778 int r = 1;
779
Denis Karpov191d1f12009-09-22 16:44:55 -0700780 if (mmc_slot(host).get_cover_state)
781 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100782 return r;
783}
784
785static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700786omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100787 char *buf)
788{
789 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700790 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100791
Denis Karpov70a33412009-09-22 16:44:59 -0700792 return sprintf(buf, "%s\n",
793 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100794}
795
Denis Karpov70a33412009-09-22 16:44:59 -0700796static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100797
798static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700799omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100800 char *buf)
801{
802 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700803 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100804
Denis Karpov191d1f12009-09-22 16:44:55 -0700805 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100806}
807
Denis Karpov70a33412009-09-22 16:44:59 -0700808static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100809
810/*
811 * Configure the response type and send the cmd.
812 */
813static void
Denis Karpov70a33412009-09-22 16:44:59 -0700814omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100815 struct mmc_data *data)
816{
817 int cmdreg = 0, resptype = 0, cmdtype = 0;
818
819 dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
820 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
821 host->cmd = cmd;
822
Adrian Hunter93caf8e2010-08-11 14:17:48 -0700823 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100824
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200825 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100826 if (cmd->flags & MMC_RSP_PRESENT) {
827 if (cmd->flags & MMC_RSP_136)
828 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200829 else if (cmd->flags & MMC_RSP_BUSY) {
830 resptype = 3;
831 host->response_busy = 1;
832 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100833 resptype = 2;
834 }
835
836 /*
837 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
838 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
839 * a val of 0x3, rest 0x0.
840 */
841 if (cmd == host->mrq->stop)
842 cmdtype = 0x3;
843
844 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
845
846 if (data) {
847 cmdreg |= DP_SELECT | MSBS | BCE;
848 if (data->flags & MMC_DATA_READ)
849 cmdreg |= DDIR;
850 else
851 cmdreg &= ~(DDIR);
852 }
853
854 if (host->use_dma)
855 cmdreg |= DMA_EN;
856
Adrian Hunterb4175772010-05-26 14:42:06 -0700857 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700858
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100859 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
860 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
861}
862
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200863static int
Denis Karpov70a33412009-09-22 16:44:59 -0700864omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200865{
866 if (data->flags & MMC_DATA_WRITE)
867 return DMA_TO_DEVICE;
868 else
869 return DMA_FROM_DEVICE;
870}
871
Adrian Hunterb4175772010-05-26 14:42:06 -0700872static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
873{
874 int dma_ch;
875
876 spin_lock(&host->irq_lock);
877 host->req_in_progress = 0;
878 dma_ch = host->dma_ch;
879 spin_unlock(&host->irq_lock);
880
881 omap_hsmmc_disable_irq(host);
882 /* Do not complete the request if DMA is still in progress */
883 if (mrq->data && host->use_dma && dma_ch != -1)
884 return;
885 host->mrq = NULL;
886 mmc_request_done(host->mmc, mrq);
887}
888
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100889/*
890 * Notify the transfer complete to MMC core
891 */
892static void
Denis Karpov70a33412009-09-22 16:44:59 -0700893omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100894{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200895 if (!data) {
896 struct mmc_request *mrq = host->mrq;
897
Adrian Hunter23050102009-09-22 16:44:57 -0700898 /* TC before CC from CMD6 - don't know why, but it happens */
899 if (host->cmd && host->cmd->opcode == 6 &&
900 host->response_busy) {
901 host->response_busy = 0;
902 return;
903 }
904
Adrian Hunterb4175772010-05-26 14:42:06 -0700905 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200906 return;
907 }
908
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100909 host->data = NULL;
910
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100911 if (!data->error)
912 data->bytes_xfered += data->blocks * (data->blksz);
913 else
914 data->bytes_xfered = 0;
915
916 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700917 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100918 return;
919 }
Denis Karpov70a33412009-09-22 16:44:59 -0700920 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100921}
922
923/*
924 * Notify the core about command completion
925 */
926static void
Denis Karpov70a33412009-09-22 16:44:59 -0700927omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100928{
929 host->cmd = NULL;
930
931 if (cmd->flags & MMC_RSP_PRESENT) {
932 if (cmd->flags & MMC_RSP_136) {
933 /* response type 2 */
934 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
935 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
936 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
937 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
938 } else {
939 /* response types 1, 1b, 3, 4, 5, 6 */
940 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
941 }
942 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700943 if ((host->data == NULL && !host->response_busy) || cmd->error)
944 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100945}
946
947/*
948 * DMA clean up for command errors
949 */
Denis Karpov70a33412009-09-22 16:44:59 -0700950static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100951{
Adrian Hunterb4175772010-05-26 14:42:06 -0700952 int dma_ch;
953
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200954 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100955
Adrian Hunterb4175772010-05-26 14:42:06 -0700956 spin_lock(&host->irq_lock);
957 dma_ch = host->dma_ch;
958 host->dma_ch = -1;
959 spin_unlock(&host->irq_lock);
960
961 if (host->use_dma && dma_ch != -1) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100962 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg, host->dma_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700963 omap_hsmmc_get_dma_dir(host, host->data));
Adrian Hunterb4175772010-05-26 14:42:06 -0700964 omap_free_dma(dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100965 }
966 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100967}
968
969/*
970 * Readable error output
971 */
972#ifdef CONFIG_MMC_DEBUG
Denis Karpov70a33412009-09-22 16:44:59 -0700973static void omap_hsmmc_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100974{
975 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700976 static const char *omap_hsmmc_status_bits[] = {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100977 "CC", "TC", "BGE", "---", "BWR", "BRR", "---", "---", "CIRQ",
978 "OBI", "---", "---", "---", "---", "---", "ERRI", "CTO", "CCRC",
979 "CEB", "CIE", "DTO", "DCRC", "DEB", "---", "ACE", "---",
980 "---", "---", "---", "CERR", "CERR", "BADA", "---", "---", "---"
981 };
982 char res[256];
983 char *buf = res;
984 int len, i;
985
986 len = sprintf(buf, "MMC IRQ 0x%x :", status);
987 buf += len;
988
Denis Karpov70a33412009-09-22 16:44:59 -0700989 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100990 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700991 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100992 buf += len;
993 }
994
995 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
996}
997#endif /* CONFIG_MMC_DEBUG */
998
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100999/*
1000 * MMC controller internal state machines reset
1001 *
1002 * Used to reset command or data internal state machines, using respectively
1003 * SRC or SRD bit of SYSCTL register
1004 * Can be called from interrupt context
1005 */
Denis Karpov70a33412009-09-22 16:44:59 -07001006static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1007 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001008{
1009 unsigned long i = 0;
1010 unsigned long limit = (loops_per_jiffy *
1011 msecs_to_jiffies(MMC_TIMEOUT_MS));
1012
1013 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1014 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1015
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001016 /*
1017 * OMAP4 ES2 and greater has an updated reset logic.
1018 * Monitor a 0->1 transition first
1019 */
1020 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001021 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001022 && (i++ < limit))
1023 cpu_relax();
1024 }
1025 i = 0;
1026
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001027 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1028 (i++ < limit))
1029 cpu_relax();
1030
1031 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1032 dev_err(mmc_dev(host->mmc),
1033 "Timeout waiting on controller reset in %s\n",
1034 __func__);
1035}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001036
Adrian Hunterb4175772010-05-26 14:42:06 -07001037static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001038{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001039 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001040 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001041
Adrian Hunterb4175772010-05-26 14:42:06 -07001042 if (!host->req_in_progress) {
1043 do {
1044 OMAP_HSMMC_WRITE(host->base, STAT, status);
1045 /* Flush posted write */
1046 status = OMAP_HSMMC_READ(host->base, STAT);
1047 } while (status & INT_EN_MASK);
1048 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001049 }
1050
1051 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001052 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1053
1054 if (status & ERR) {
1055#ifdef CONFIG_MMC_DEBUG
Denis Karpov70a33412009-09-22 16:44:59 -07001056 omap_hsmmc_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001057#endif
1058 if ((status & CMD_TIMEOUT) ||
1059 (status & CMD_CRC)) {
1060 if (host->cmd) {
1061 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001062 omap_hsmmc_reset_controller_fsm(host,
1063 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001064 host->cmd->error = -ETIMEDOUT;
1065 } else {
1066 host->cmd->error = -EILSEQ;
1067 }
1068 end_cmd = 1;
1069 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001070 if (host->data || host->response_busy) {
1071 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001072 omap_hsmmc_dma_cleanup(host,
1073 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001074 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001075 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001076 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001077 }
1078 if ((status & DATA_TIMEOUT) ||
1079 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001080 if (host->data || host->response_busy) {
1081 int err = (status & DATA_TIMEOUT) ?
1082 -ETIMEDOUT : -EILSEQ;
1083
1084 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001085 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001086 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001087 host->mrq->cmd->error = err;
1088 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001089 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001090 end_trans = 1;
1091 }
1092 }
1093 if (status & CARD_ERR) {
1094 dev_dbg(mmc_dev(host->mmc),
1095 "Ignoring card err CMD%d\n", host->cmd->opcode);
1096 if (host->cmd)
1097 end_cmd = 1;
1098 if (host->data)
1099 end_trans = 1;
1100 }
1101 }
1102
1103 OMAP_HSMMC_WRITE(host->base, STAT, status);
1104
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001105 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001106 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001107 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001108 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001109}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001110
Adrian Hunterb4175772010-05-26 14:42:06 -07001111/*
1112 * MMC controller IRQ handler
1113 */
1114static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1115{
1116 struct omap_hsmmc_host *host = dev_id;
1117 int status;
1118
1119 status = OMAP_HSMMC_READ(host->base, STAT);
1120 do {
1121 omap_hsmmc_do_irq(host, status);
1122 /* Flush posted write */
1123 status = OMAP_HSMMC_READ(host->base, STAT);
1124 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001125
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001126 return IRQ_HANDLED;
1127}
1128
Denis Karpov70a33412009-09-22 16:44:59 -07001129static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001130{
1131 unsigned long i;
1132
1133 OMAP_HSMMC_WRITE(host->base, HCTL,
1134 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1135 for (i = 0; i < loops_per_jiffy; i++) {
1136 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1137 break;
1138 cpu_relax();
1139 }
1140}
1141
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001142/*
David Brownelleb250822009-02-17 14:49:01 -08001143 * Switch MMC interface voltage ... only relevant for MMC1.
1144 *
1145 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1146 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1147 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001148 */
Denis Karpov70a33412009-09-22 16:44:59 -07001149static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001150{
1151 u32 reg_val = 0;
1152 int ret;
1153
1154 /* Disable the clocks */
1155 clk_disable(host->fclk);
1156 clk_disable(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001157 if (host->got_dbclk)
1158 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001159
1160 /* Turn the power off */
1161 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001162
1163 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001164 if (!ret)
1165 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1166 vdd);
1167 clk_enable(host->iclk);
1168 clk_enable(host->fclk);
1169 if (host->got_dbclk)
1170 clk_enable(host->dbclk);
1171
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001172 if (ret != 0)
1173 goto err;
1174
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001175 OMAP_HSMMC_WRITE(host->base, HCTL,
1176 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1177 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001178
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001179 /*
1180 * If a MMC dual voltage card is detected, the set_ios fn calls
1181 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001182 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001183 *
David Brownelleb250822009-02-17 14:49:01 -08001184 * Cope with a bit of slop in the range ... per data sheets:
1185 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1186 * but recommended values are 1.71V to 1.89V
1187 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1188 * but recommended values are 2.7V to 3.3V
1189 *
1190 * Board setup code shouldn't permit anything very out-of-range.
1191 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1192 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001193 */
David Brownelleb250822009-02-17 14:49:01 -08001194 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001195 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001196 else
1197 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001198
1199 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001200 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001201
1202 return 0;
1203err:
1204 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1205 return ret;
1206}
1207
Adrian Hunterb62f6222009-09-22 16:45:01 -07001208/* Protect the card while the cover is open */
1209static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1210{
1211 if (!mmc_slot(host).get_cover_state)
1212 return;
1213
1214 host->reqs_blocked = 0;
1215 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1216 if (host->protect_card) {
1217 printk(KERN_INFO "%s: cover is closed, "
1218 "card is now accessible\n",
1219 mmc_hostname(host->mmc));
1220 host->protect_card = 0;
1221 }
1222 } else {
1223 if (!host->protect_card) {
1224 printk(KERN_INFO "%s: cover is open, "
1225 "card is now inaccessible\n",
1226 mmc_hostname(host->mmc));
1227 host->protect_card = 1;
1228 }
1229 }
1230}
1231
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001232/*
1233 * Work Item to notify the core about card insertion/removal
1234 */
Denis Karpov70a33412009-09-22 16:44:59 -07001235static void omap_hsmmc_detect(struct work_struct *work)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001236{
Denis Karpov70a33412009-09-22 16:44:59 -07001237 struct omap_hsmmc_host *host =
1238 container_of(work, struct omap_hsmmc_host, mmc_carddetect_work);
David Brownell249d0fa2009-02-04 14:42:03 -08001239 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001240 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001241
Adrian Huntera6b22402009-09-22 16:44:45 -07001242 if (host->suspended)
1243 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001244
1245 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001246
Denis Karpov191d1f12009-09-22 16:44:55 -07001247 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001248 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001249 else {
1250 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001251 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001252 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001253
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001254 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001255 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001256 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001257 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001258}
1259
1260/*
1261 * ISR for handling card insertion and removal
1262 */
Denis Karpov70a33412009-09-22 16:44:59 -07001263static irqreturn_t omap_hsmmc_cd_handler(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001264{
Denis Karpov70a33412009-09-22 16:44:59 -07001265 struct omap_hsmmc_host *host = (struct omap_hsmmc_host *)dev_id;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001266
Adrian Huntera6b22402009-09-22 16:44:45 -07001267 if (host->suspended)
1268 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001269 schedule_work(&host->mmc_carddetect_work);
1270
1271 return IRQ_HANDLED;
1272}
1273
Denis Karpov70a33412009-09-22 16:44:59 -07001274static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001275 struct mmc_data *data)
1276{
1277 int sync_dev;
1278
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001279 if (data->flags & MMC_DATA_WRITE)
1280 sync_dev = host->dma_line_tx;
1281 else
1282 sync_dev = host->dma_line_rx;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001283 return sync_dev;
1284}
1285
Denis Karpov70a33412009-09-22 16:44:59 -07001286static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001287 struct mmc_data *data,
1288 struct scatterlist *sgl)
1289{
1290 int blksz, nblk, dma_ch;
1291
1292 dma_ch = host->dma_ch;
1293 if (data->flags & MMC_DATA_WRITE) {
1294 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1295 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1296 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1297 sg_dma_address(sgl), 0, 0);
1298 } else {
1299 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
Denis Karpov191d1f12009-09-22 16:44:55 -07001300 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001301 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1302 sg_dma_address(sgl), 0, 0);
1303 }
1304
1305 blksz = host->data->blksz;
1306 nblk = sg_dma_len(sgl) / blksz;
1307
1308 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1309 blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
Denis Karpov70a33412009-09-22 16:44:59 -07001310 omap_hsmmc_get_dma_sync_dev(host, data),
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001311 !(data->flags & MMC_DATA_WRITE));
1312
1313 omap_start_dma(dma_ch);
1314}
1315
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001316/*
1317 * DMA call back function
1318 */
Adrian Hunterb4175772010-05-26 14:42:06 -07001319static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001320{
Adrian Hunterb4175772010-05-26 14:42:06 -07001321 struct omap_hsmmc_host *host = cb_data;
1322 struct mmc_data *data = host->mrq->data;
1323 int dma_ch, req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001324
Venkatraman Sf3584e52010-08-10 18:01:54 -07001325 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1326 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1327 ch_status);
1328 return;
1329 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001330
Adrian Hunterb4175772010-05-26 14:42:06 -07001331 spin_lock(&host->irq_lock);
1332 if (host->dma_ch < 0) {
1333 spin_unlock(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001334 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001335 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001336
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001337 host->dma_sg_idx++;
1338 if (host->dma_sg_idx < host->dma_len) {
1339 /* Fire up the next transfer. */
Adrian Hunterb4175772010-05-26 14:42:06 -07001340 omap_hsmmc_config_dma_params(host, data,
1341 data->sg + host->dma_sg_idx);
1342 spin_unlock(&host->irq_lock);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001343 return;
1344 }
1345
Adrian Hunterb4175772010-05-26 14:42:06 -07001346 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_len,
1347 omap_hsmmc_get_dma_dir(host, data));
1348
1349 req_in_progress = host->req_in_progress;
1350 dma_ch = host->dma_ch;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001351 host->dma_ch = -1;
Adrian Hunterb4175772010-05-26 14:42:06 -07001352 spin_unlock(&host->irq_lock);
1353
1354 omap_free_dma(dma_ch);
1355
1356 /* If DMA has finished after TC, complete the request */
1357 if (!req_in_progress) {
1358 struct mmc_request *mrq = host->mrq;
1359
1360 host->mrq = NULL;
1361 mmc_request_done(host->mmc, mrq);
1362 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001363}
1364
1365/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001366 * Routine to configure and start DMA for the MMC card
1367 */
Denis Karpov70a33412009-09-22 16:44:59 -07001368static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1369 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001370{
Adrian Hunterb4175772010-05-26 14:42:06 -07001371 int dma_ch = 0, ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001372 struct mmc_data *data = req->data;
1373
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001374 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001375 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001376 struct scatterlist *sgl;
1377
1378 sgl = data->sg + i;
1379 if (sgl->length % data->blksz)
1380 return -EINVAL;
1381 }
1382 if ((data->blksz % 4) != 0)
1383 /* REVISIT: The MMC buffer increments only when MSB is written.
1384 * Return error for blksz which is non multiple of four.
1385 */
1386 return -EINVAL;
1387
Adrian Hunterb4175772010-05-26 14:42:06 -07001388 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001389
Denis Karpov70a33412009-09-22 16:44:59 -07001390 ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1391 "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001392 if (ret != 0) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001393 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001394 "%s: omap_request_dma() failed with %d\n",
1395 mmc_hostname(host->mmc), ret);
1396 return ret;
1397 }
1398
1399 host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
Denis Karpov70a33412009-09-22 16:44:59 -07001400 data->sg_len, omap_hsmmc_get_dma_dir(host, data));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001401 host->dma_ch = dma_ch;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001402 host->dma_sg_idx = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001403
Denis Karpov70a33412009-09-22 16:44:59 -07001404 omap_hsmmc_config_dma_params(host, data, data->sg);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001405
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001406 return 0;
1407}
1408
Denis Karpov70a33412009-09-22 16:44:59 -07001409static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001410 unsigned int timeout_ns,
1411 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001412{
1413 unsigned int timeout, cycle_ns;
1414 uint32_t reg, clkd, dto = 0;
1415
1416 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1417 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1418 if (clkd == 0)
1419 clkd = 1;
1420
1421 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001422 timeout = timeout_ns / cycle_ns;
1423 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001424 if (timeout) {
1425 while ((timeout & 0x80000000) == 0) {
1426 dto += 1;
1427 timeout <<= 1;
1428 }
1429 dto = 31 - dto;
1430 timeout <<= 1;
1431 if (timeout && dto)
1432 dto += 1;
1433 if (dto >= 13)
1434 dto -= 13;
1435 else
1436 dto = 0;
1437 if (dto > 14)
1438 dto = 14;
1439 }
1440
1441 reg &= ~DTO_MASK;
1442 reg |= dto << DTO_SHIFT;
1443 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1444}
1445
1446/*
1447 * Configure block length for MMC/SD cards and initiate the transfer.
1448 */
1449static int
Denis Karpov70a33412009-09-22 16:44:59 -07001450omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001451{
1452 int ret;
1453 host->data = req->data;
1454
1455 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001456 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001457 /*
1458 * Set an arbitrary 100ms data timeout for commands with
1459 * busy signal.
1460 */
1461 if (req->cmd->flags & MMC_RSP_BUSY)
1462 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001463 return 0;
1464 }
1465
1466 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1467 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001468 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001469
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001470 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001471 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001472 if (ret != 0) {
1473 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1474 return ret;
1475 }
1476 }
1477 return 0;
1478}
1479
1480/*
1481 * Request function. for read/write operation
1482 */
Denis Karpov70a33412009-09-22 16:44:59 -07001483static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001484{
Denis Karpov70a33412009-09-22 16:44:59 -07001485 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001486 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001487
Adrian Hunterb4175772010-05-26 14:42:06 -07001488 BUG_ON(host->req_in_progress);
1489 BUG_ON(host->dma_ch != -1);
1490 if (host->protect_card) {
1491 if (host->reqs_blocked < 3) {
1492 /*
1493 * Ensure the controller is left in a consistent
1494 * state by resetting the command and data state
1495 * machines.
1496 */
1497 omap_hsmmc_reset_controller_fsm(host, SRD);
1498 omap_hsmmc_reset_controller_fsm(host, SRC);
1499 host->reqs_blocked += 1;
1500 }
1501 req->cmd->error = -EBADF;
1502 if (req->data)
1503 req->data->error = -EBADF;
1504 req->cmd->retries = 0;
1505 mmc_request_done(mmc, req);
1506 return;
1507 } else if (host->reqs_blocked)
1508 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001509 WARN_ON(host->mrq != NULL);
1510 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001511 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001512 if (err) {
1513 req->cmd->error = err;
1514 if (req->data)
1515 req->data->error = err;
1516 host->mrq = NULL;
1517 mmc_request_done(mmc, req);
1518 return;
1519 }
1520
Denis Karpov70a33412009-09-22 16:44:59 -07001521 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001522}
1523
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001524/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001525static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001526{
Denis Karpov70a33412009-09-22 16:44:59 -07001527 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001528 u16 dsor = 0;
1529 unsigned long regval;
1530 unsigned long timeout;
Jarkko Lavinen73153012008-11-21 16:49:54 +02001531 u32 con;
Adrian Huntera3621462009-09-22 16:44:42 -07001532 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001533
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001534 mmc_host_enable(host->mmc);
1535
Adrian Huntera3621462009-09-22 16:44:42 -07001536 if (ios->power_mode != host->power_mode) {
1537 switch (ios->power_mode) {
1538 case MMC_POWER_OFF:
1539 mmc_slot(host).set_power(host->dev, host->slot_id,
1540 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001541 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001542 break;
1543 case MMC_POWER_UP:
1544 mmc_slot(host).set_power(host->dev, host->slot_id,
1545 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001546 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001547 break;
1548 case MMC_POWER_ON:
1549 do_send_init_stream = 1;
1550 break;
1551 }
1552 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001553 }
1554
Denis Karpovdd498ef2009-09-22 16:44:49 -07001555 /* FIXME: set registers based only on changes to ios */
1556
Jarkko Lavinen73153012008-11-21 16:49:54 +02001557 con = OMAP_HSMMC_READ(host->base, CON);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001558 switch (mmc->ios.bus_width) {
Jarkko Lavinen73153012008-11-21 16:49:54 +02001559 case MMC_BUS_WIDTH_8:
1560 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
1561 break;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001562 case MMC_BUS_WIDTH_4:
Jarkko Lavinen73153012008-11-21 16:49:54 +02001563 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001564 OMAP_HSMMC_WRITE(host->base, HCTL,
1565 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
1566 break;
1567 case MMC_BUS_WIDTH_1:
Jarkko Lavinen73153012008-11-21 16:49:54 +02001568 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001569 OMAP_HSMMC_WRITE(host->base, HCTL,
1570 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
1571 break;
1572 }
1573
1574 if (host->id == OMAP_MMC1_DEVID) {
David Brownelleb250822009-02-17 14:49:01 -08001575 /* Only MMC1 can interface at 3V without some flavor
1576 * of external transceiver; but they all handle 1.8V.
1577 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001578 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1579 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1580 /*
1581 * The mmc_select_voltage fn of the core does
1582 * not seem to set the power_mode to
1583 * MMC_POWER_UP upon recalculating the voltage.
1584 * vdd 1.8v.
1585 */
Denis Karpov70a33412009-09-22 16:44:59 -07001586 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1587 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001588 "Switch operation failed\n");
1589 }
1590 }
1591
1592 if (ios->clock) {
1593 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
1594 if (dsor < 1)
1595 dsor = 1;
1596
1597 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
1598 dsor++;
1599
1600 if (dsor > 250)
1601 dsor = 250;
1602 }
Denis Karpov70a33412009-09-22 16:44:59 -07001603 omap_hsmmc_stop_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001604 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
1605 regval = regval & ~(CLKD_MASK);
1606 regval = regval | (dsor << 6) | (DTO << 16);
1607 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
1608 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1609 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
1610
1611 /* Wait till the ICS bit is set */
1612 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001613 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001614 && time_before(jiffies, timeout))
1615 msleep(1);
1616
1617 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1618 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
1619
Adrian Huntera3621462009-09-22 16:44:42 -07001620 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001621 send_init_stream(host);
1622
Denis Karpovabb28e72009-09-22 16:44:44 -07001623 con = OMAP_HSMMC_READ(host->base, CON);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001624 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
Denis Karpovabb28e72009-09-22 16:44:44 -07001625 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
1626 else
1627 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001628
Denis Karpovdd498ef2009-09-22 16:44:49 -07001629 if (host->power_mode == MMC_POWER_OFF)
1630 mmc_host_disable(host->mmc);
1631 else
1632 mmc_host_lazy_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001633}
1634
1635static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1636{
Denis Karpov70a33412009-09-22 16:44:59 -07001637 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001638
Denis Karpov191d1f12009-09-22 16:44:55 -07001639 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001640 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001641 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001642}
1643
1644static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1645{
Denis Karpov70a33412009-09-22 16:44:59 -07001646 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001647
Denis Karpov191d1f12009-09-22 16:44:55 -07001648 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001649 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001650 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001651}
1652
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001653static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1654{
1655 struct omap_hsmmc_host *host = mmc_priv(mmc);
1656
1657 if (mmc_slot(host).init_card)
1658 mmc_slot(host).init_card(card);
1659}
1660
Denis Karpov70a33412009-09-22 16:44:59 -07001661static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001662{
1663 u32 hctl, capa, value;
1664
1665 /* Only MMC1 supports 3.0V */
1666 if (host->id == OMAP_MMC1_DEVID) {
1667 hctl = SDVS30;
1668 capa = VS30 | VS18;
1669 } else {
1670 hctl = SDVS18;
1671 capa = VS18;
1672 }
1673
1674 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1675 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1676
1677 value = OMAP_HSMMC_READ(host->base, CAPA);
1678 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1679
1680 /* Set the controller to AUTO IDLE mode */
1681 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1682 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1683
1684 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001685 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001686}
1687
Denis Karpovdd498ef2009-09-22 16:44:49 -07001688/*
1689 * Dynamic power saving handling, FSM:
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001690 * ENABLED -> DISABLED -> CARDSLEEP / REGSLEEP -> OFF
1691 * ^___________| | |
1692 * |______________________|______________________|
Denis Karpovdd498ef2009-09-22 16:44:49 -07001693 *
1694 * ENABLED: mmc host is fully functional
1695 * DISABLED: fclk is off
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001696 * CARDSLEEP: fclk is off, card is asleep, voltage regulator is asleep
1697 * REGSLEEP: fclk is off, voltage regulator is asleep
1698 * OFF: fclk is off, voltage regulator is off
Denis Karpovdd498ef2009-09-22 16:44:49 -07001699 *
1700 * Transition handlers return the timeout for the next state transition
1701 * or negative error.
1702 */
1703
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001704enum {ENABLED = 0, DISABLED, CARDSLEEP, REGSLEEP, OFF};
Denis Karpovdd498ef2009-09-22 16:44:49 -07001705
1706/* Handler for [ENABLED -> DISABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001707static int omap_hsmmc_enabled_to_disabled(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001708{
Denis Karpov70a33412009-09-22 16:44:59 -07001709 omap_hsmmc_context_save(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001710 clk_disable(host->fclk);
1711 host->dpm_state = DISABLED;
1712
1713 dev_dbg(mmc_dev(host->mmc), "ENABLED -> DISABLED\n");
1714
1715 if (host->power_mode == MMC_POWER_OFF)
1716 return 0;
1717
Adrian Hunter4380eea2010-02-15 10:03:34 -08001718 return OMAP_MMC_SLEEP_TIMEOUT;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001719}
1720
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001721/* Handler for [DISABLED -> REGSLEEP / CARDSLEEP] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001722static int omap_hsmmc_disabled_to_sleep(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001723{
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001724 int err, new_state;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001725
1726 if (!mmc_try_claim_host(host->mmc))
1727 return 0;
1728
1729 clk_enable(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001730 omap_hsmmc_context_restore(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001731 if (mmc_card_can_sleep(host->mmc)) {
1732 err = mmc_card_sleep(host->mmc);
1733 if (err < 0) {
1734 clk_disable(host->fclk);
1735 mmc_release_host(host->mmc);
1736 return err;
1737 }
1738 new_state = CARDSLEEP;
Denis Karpov70a33412009-09-22 16:44:59 -07001739 } else {
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001740 new_state = REGSLEEP;
Denis Karpov70a33412009-09-22 16:44:59 -07001741 }
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001742 if (mmc_slot(host).set_sleep)
1743 mmc_slot(host).set_sleep(host->dev, host->slot_id, 1, 0,
1744 new_state == CARDSLEEP);
1745 /* FIXME: turn off bus power and perhaps interrupts too */
1746 clk_disable(host->fclk);
1747 host->dpm_state = new_state;
1748
1749 mmc_release_host(host->mmc);
1750
1751 dev_dbg(mmc_dev(host->mmc), "DISABLED -> %s\n",
1752 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
Denis Karpovdd498ef2009-09-22 16:44:49 -07001753
Adrian Hunter1df58db2010-02-15 10:03:34 -08001754 if (mmc_slot(host).no_off)
1755 return 0;
1756
Denis Karpovdd498ef2009-09-22 16:44:49 -07001757 if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) ||
1758 mmc_slot(host).card_detect ||
1759 (mmc_slot(host).get_cover_state &&
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001760 mmc_slot(host).get_cover_state(host->dev, host->slot_id)))
Adrian Hunter4380eea2010-02-15 10:03:34 -08001761 return OMAP_MMC_OFF_TIMEOUT;
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001762
1763 return 0;
1764}
1765
1766/* Handler for [REGSLEEP / CARDSLEEP -> OFF] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001767static int omap_hsmmc_sleep_to_off(struct omap_hsmmc_host *host)
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001768{
1769 if (!mmc_try_claim_host(host->mmc))
1770 return 0;
1771
Adrian Hunter1df58db2010-02-15 10:03:34 -08001772 if (mmc_slot(host).no_off)
1773 return 0;
1774
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001775 if (!((host->mmc->caps & MMC_CAP_NONREMOVABLE) ||
1776 mmc_slot(host).card_detect ||
1777 (mmc_slot(host).get_cover_state &&
1778 mmc_slot(host).get_cover_state(host->dev, host->slot_id)))) {
1779 mmc_release_host(host->mmc);
1780 return 0;
Adrian Hunter623821f2009-09-22 16:44:51 -07001781 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001782
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001783 mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
1784 host->vdd = 0;
1785 host->power_mode = MMC_POWER_OFF;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001786
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001787 dev_dbg(mmc_dev(host->mmc), "%s -> OFF\n",
1788 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
Denis Karpovdd498ef2009-09-22 16:44:49 -07001789
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001790 host->dpm_state = OFF;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001791
1792 mmc_release_host(host->mmc);
1793
1794 return 0;
1795}
1796
1797/* Handler for [DISABLED -> ENABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001798static int omap_hsmmc_disabled_to_enabled(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001799{
1800 int err;
1801
1802 err = clk_enable(host->fclk);
1803 if (err < 0)
1804 return err;
1805
Denis Karpov70a33412009-09-22 16:44:59 -07001806 omap_hsmmc_context_restore(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001807 host->dpm_state = ENABLED;
1808
1809 dev_dbg(mmc_dev(host->mmc), "DISABLED -> ENABLED\n");
1810
1811 return 0;
1812}
1813
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001814/* Handler for [SLEEP -> ENABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001815static int omap_hsmmc_sleep_to_enabled(struct omap_hsmmc_host *host)
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001816{
1817 if (!mmc_try_claim_host(host->mmc))
1818 return 0;
1819
1820 clk_enable(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001821 omap_hsmmc_context_restore(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001822 if (mmc_slot(host).set_sleep)
1823 mmc_slot(host).set_sleep(host->dev, host->slot_id, 0,
1824 host->vdd, host->dpm_state == CARDSLEEP);
1825 if (mmc_card_can_sleep(host->mmc))
1826 mmc_card_awake(host->mmc);
1827
1828 dev_dbg(mmc_dev(host->mmc), "%s -> ENABLED\n",
1829 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
1830
1831 host->dpm_state = ENABLED;
1832
1833 mmc_release_host(host->mmc);
1834
1835 return 0;
1836}
1837
Denis Karpovdd498ef2009-09-22 16:44:49 -07001838/* Handler for [OFF -> ENABLED] transition */
Denis Karpov70a33412009-09-22 16:44:59 -07001839static int omap_hsmmc_off_to_enabled(struct omap_hsmmc_host *host)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001840{
1841 clk_enable(host->fclk);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001842
Denis Karpov70a33412009-09-22 16:44:59 -07001843 omap_hsmmc_context_restore(host);
1844 omap_hsmmc_conf_bus_power(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001845 mmc_power_restore_host(host->mmc);
1846
1847 host->dpm_state = ENABLED;
1848
1849 dev_dbg(mmc_dev(host->mmc), "OFF -> ENABLED\n");
1850
1851 return 0;
1852}
1853
1854/*
1855 * Bring MMC host to ENABLED from any other PM state.
1856 */
Denis Karpov70a33412009-09-22 16:44:59 -07001857static int omap_hsmmc_enable(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001858{
Denis Karpov70a33412009-09-22 16:44:59 -07001859 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001860
1861 switch (host->dpm_state) {
1862 case DISABLED:
Denis Karpov70a33412009-09-22 16:44:59 -07001863 return omap_hsmmc_disabled_to_enabled(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001864 case CARDSLEEP:
Adrian Hunter623821f2009-09-22 16:44:51 -07001865 case REGSLEEP:
Denis Karpov70a33412009-09-22 16:44:59 -07001866 return omap_hsmmc_sleep_to_enabled(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001867 case OFF:
Denis Karpov70a33412009-09-22 16:44:59 -07001868 return omap_hsmmc_off_to_enabled(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001869 default:
1870 dev_dbg(mmc_dev(host->mmc), "UNKNOWN state\n");
1871 return -EINVAL;
1872 }
1873}
1874
1875/*
1876 * Bring MMC host in PM state (one level deeper).
1877 */
Denis Karpov70a33412009-09-22 16:44:59 -07001878static int omap_hsmmc_disable(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001879{
Denis Karpov70a33412009-09-22 16:44:59 -07001880 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001881
1882 switch (host->dpm_state) {
1883 case ENABLED: {
1884 int delay;
1885
Denis Karpov70a33412009-09-22 16:44:59 -07001886 delay = omap_hsmmc_enabled_to_disabled(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001887 if (lazy || delay < 0)
1888 return delay;
1889 return 0;
1890 }
1891 case DISABLED:
Denis Karpov70a33412009-09-22 16:44:59 -07001892 return omap_hsmmc_disabled_to_sleep(host);
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001893 case CARDSLEEP:
1894 case REGSLEEP:
Denis Karpov70a33412009-09-22 16:44:59 -07001895 return omap_hsmmc_sleep_to_off(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001896 default:
1897 dev_dbg(mmc_dev(host->mmc), "UNKNOWN state\n");
1898 return -EINVAL;
1899 }
1900}
1901
Denis Karpov70a33412009-09-22 16:44:59 -07001902static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001903{
Denis Karpov70a33412009-09-22 16:44:59 -07001904 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001905 int err;
1906
1907 err = clk_enable(host->fclk);
1908 if (err)
1909 return err;
1910 dev_dbg(mmc_dev(host->mmc), "mmc_fclk: enabled\n");
Denis Karpov70a33412009-09-22 16:44:59 -07001911 omap_hsmmc_context_restore(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001912 return 0;
1913}
1914
Denis Karpov70a33412009-09-22 16:44:59 -07001915static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001916{
Denis Karpov70a33412009-09-22 16:44:59 -07001917 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001918
Denis Karpov70a33412009-09-22 16:44:59 -07001919 omap_hsmmc_context_save(host);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001920 clk_disable(host->fclk);
1921 dev_dbg(mmc_dev(host->mmc), "mmc_fclk: disabled\n");
1922 return 0;
1923}
1924
Denis Karpov70a33412009-09-22 16:44:59 -07001925static const struct mmc_host_ops omap_hsmmc_ops = {
1926 .enable = omap_hsmmc_enable_fclk,
1927 .disable = omap_hsmmc_disable_fclk,
1928 .request = omap_hsmmc_request,
1929 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001930 .get_cd = omap_hsmmc_get_cd,
1931 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001932 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001933 /* NYET -- enable_sdio_irq */
1934};
1935
Denis Karpov70a33412009-09-22 16:44:59 -07001936static const struct mmc_host_ops omap_hsmmc_ps_ops = {
1937 .enable = omap_hsmmc_enable,
1938 .disable = omap_hsmmc_disable,
1939 .request = omap_hsmmc_request,
1940 .set_ios = omap_hsmmc_set_ios,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001941 .get_cd = omap_hsmmc_get_cd,
1942 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001943 .init_card = omap_hsmmc_init_card,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001944 /* NYET -- enable_sdio_irq */
1945};
1946
Denis Karpovd900f712009-09-22 16:44:38 -07001947#ifdef CONFIG_DEBUG_FS
1948
Denis Karpov70a33412009-09-22 16:44:59 -07001949static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001950{
1951 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001952 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001953 int context_loss = 0;
1954
Denis Karpov70a33412009-09-22 16:44:59 -07001955 if (host->pdata->get_context_loss_count)
1956 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001957
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001958 seq_printf(s, "mmc%d:\n"
1959 " enabled:\t%d\n"
Denis Karpovdd498ef2009-09-22 16:44:49 -07001960 " dpm_state:\t%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001961 " nesting_cnt:\t%d\n"
Denis Karpov11dd62a2009-09-22 16:44:43 -07001962 " ctx_loss:\t%d:%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001963 "\nregs:\n",
Denis Karpovdd498ef2009-09-22 16:44:49 -07001964 mmc->index, mmc->enabled ? 1 : 0,
1965 host->dpm_state, mmc->nesting_cnt,
Denis Karpov11dd62a2009-09-22 16:44:43 -07001966 host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001967
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001968 if (host->suspended || host->dpm_state == OFF) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001969 seq_printf(s, "host suspended, can't read registers\n");
1970 return 0;
1971 }
1972
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001973 if (clk_enable(host->fclk) != 0) {
1974 seq_printf(s, "can't read the regs\n");
Denis Karpovdd498ef2009-09-22 16:44:49 -07001975 return 0;
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001976 }
Denis Karpovd900f712009-09-22 16:44:38 -07001977
1978 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1979 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1980 seq_printf(s, "CON:\t\t0x%08x\n",
1981 OMAP_HSMMC_READ(host->base, CON));
1982 seq_printf(s, "HCTL:\t\t0x%08x\n",
1983 OMAP_HSMMC_READ(host->base, HCTL));
1984 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1985 OMAP_HSMMC_READ(host->base, SYSCTL));
1986 seq_printf(s, "IE:\t\t0x%08x\n",
1987 OMAP_HSMMC_READ(host->base, IE));
1988 seq_printf(s, "ISE:\t\t0x%08x\n",
1989 OMAP_HSMMC_READ(host->base, ISE));
1990 seq_printf(s, "CAPA:\t\t0x%08x\n",
1991 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001992
1993 clk_disable(host->fclk);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001994
Denis Karpovd900f712009-09-22 16:44:38 -07001995 return 0;
1996}
1997
Denis Karpov70a33412009-09-22 16:44:59 -07001998static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001999{
Denis Karpov70a33412009-09-22 16:44:59 -07002000 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07002001}
2002
2003static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002004 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07002005 .read = seq_read,
2006 .llseek = seq_lseek,
2007 .release = single_release,
2008};
2009
Denis Karpov70a33412009-09-22 16:44:59 -07002010static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07002011{
2012 if (mmc->debugfs_root)
2013 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
2014 mmc, &mmc_regs_fops);
2015}
2016
2017#else
2018
Denis Karpov70a33412009-09-22 16:44:59 -07002019static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07002020{
2021}
2022
2023#endif
2024
Denis Karpov70a33412009-09-22 16:44:59 -07002025static int __init omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002026{
2027 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
2028 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002029 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002030 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002031 int ret, irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002032
2033 if (pdata == NULL) {
2034 dev_err(&pdev->dev, "Platform Data is missing\n");
2035 return -ENXIO;
2036 }
2037
2038 if (pdata->nr_slots == 0) {
2039 dev_err(&pdev->dev, "No Slots\n");
2040 return -ENXIO;
2041 }
2042
2043 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2044 irq = platform_get_irq(pdev, 0);
2045 if (res == NULL || irq < 0)
2046 return -ENXIO;
2047
kishore kadiyala91a0b082010-10-01 16:35:28 -07002048 res->start += pdata->reg_offset;
2049 res->end += pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002050 res = request_mem_region(res->start, res->end - res->start + 1,
2051 pdev->name);
2052 if (res == NULL)
2053 return -EBUSY;
2054
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002055 ret = omap_hsmmc_gpio_init(pdata);
2056 if (ret)
2057 goto err;
2058
Denis Karpov70a33412009-09-22 16:44:59 -07002059 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002060 if (!mmc) {
2061 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002062 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002063 }
2064
2065 host = mmc_priv(mmc);
2066 host->mmc = mmc;
2067 host->pdata = pdata;
2068 host->dev = &pdev->dev;
2069 host->use_dma = 1;
2070 host->dev->dma_mask = &pdata->dma_mask;
2071 host->dma_ch = -1;
2072 host->irq = irq;
2073 host->id = pdev->id;
2074 host->slot_id = 0;
2075 host->mapbase = res->start;
2076 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08002077 host->power_mode = MMC_POWER_OFF;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002078
2079 platform_set_drvdata(pdev, host);
Denis Karpov70a33412009-09-22 16:44:59 -07002080 INIT_WORK(&host->mmc_carddetect_work, omap_hsmmc_detect);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002081
Denis Karpov191d1f12009-09-22 16:44:55 -07002082 if (mmc_slot(host).power_saving)
Denis Karpov70a33412009-09-22 16:44:59 -07002083 mmc->ops = &omap_hsmmc_ps_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002084 else
Denis Karpov70a33412009-09-22 16:44:59 -07002085 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002086
Adrian Huntere0eb2422010-02-15 10:03:34 -08002087 /*
2088 * If regulator_disable can only put vcc_aux to sleep then there is
2089 * no off state.
2090 */
2091 if (mmc_slot(host).vcc_aux_disable_is_sleep)
2092 mmc_slot(host).no_off = 1;
2093
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002094 mmc->f_min = 400000;
2095 mmc->f_max = 52000000;
2096
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002097 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002098
Russell King6f7607c2009-01-28 10:22:50 +00002099 host->iclk = clk_get(&pdev->dev, "ick");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002100 if (IS_ERR(host->iclk)) {
2101 ret = PTR_ERR(host->iclk);
2102 host->iclk = NULL;
2103 goto err1;
2104 }
Russell King6f7607c2009-01-28 10:22:50 +00002105 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002106 if (IS_ERR(host->fclk)) {
2107 ret = PTR_ERR(host->fclk);
2108 host->fclk = NULL;
2109 clk_put(host->iclk);
2110 goto err1;
2111 }
2112
Denis Karpov70a33412009-09-22 16:44:59 -07002113 omap_hsmmc_context_save(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002114
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002115 mmc->caps |= MMC_CAP_DISABLE;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002116 mmc_set_disable_delay(mmc, OMAP_MMC_DISABLED_TIMEOUT);
2117 /* we start off in DISABLED state */
2118 host->dpm_state = DISABLED;
2119
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002120 if (mmc_host_enable(host->mmc) != 0) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002121 clk_put(host->iclk);
2122 clk_put(host->fclk);
2123 goto err1;
2124 }
2125
2126 if (clk_enable(host->iclk) != 0) {
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002127 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002128 clk_put(host->iclk);
2129 clk_put(host->fclk);
2130 goto err1;
2131 }
2132
Adrian Hunter2bec0892009-09-22 16:45:02 -07002133 if (cpu_is_omap2430()) {
2134 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
2135 /*
2136 * MMC can still work without debounce clock.
2137 */
2138 if (IS_ERR(host->dbclk))
2139 dev_warn(mmc_dev(host->mmc),
2140 "Failed to get debounce clock\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002141 else
Adrian Hunter2bec0892009-09-22 16:45:02 -07002142 host->got_dbclk = 1;
2143
2144 if (host->got_dbclk)
2145 if (clk_enable(host->dbclk) != 0)
2146 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
2147 " clk failed\n");
2148 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002149
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002150 /* Since we do only SG emulation, we can have as many segs
2151 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002152 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002153
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002154 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2155 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2156 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2157 mmc->max_seg_size = mmc->max_req_size;
2158
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002159 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e2010-08-11 14:17:48 -07002160 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002161
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002162 mmc->caps |= mmc_slot(host).caps;
2163 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002164 mmc->caps |= MMC_CAP_4_BIT_DATA;
2165
Denis Karpov191d1f12009-09-22 16:44:55 -07002166 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002167 mmc->caps |= MMC_CAP_NONREMOVABLE;
2168
Denis Karpov70a33412009-09-22 16:44:59 -07002169 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002170
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00002171 /* Select DMA lines */
2172 switch (host->id) {
2173 case OMAP_MMC1_DEVID:
2174 host->dma_line_tx = OMAP24XX_DMA_MMC1_TX;
2175 host->dma_line_rx = OMAP24XX_DMA_MMC1_RX;
2176 break;
2177 case OMAP_MMC2_DEVID:
2178 host->dma_line_tx = OMAP24XX_DMA_MMC2_TX;
2179 host->dma_line_rx = OMAP24XX_DMA_MMC2_RX;
2180 break;
2181 case OMAP_MMC3_DEVID:
2182 host->dma_line_tx = OMAP34XX_DMA_MMC3_TX;
2183 host->dma_line_rx = OMAP34XX_DMA_MMC3_RX;
2184 break;
kishore kadiyala82cf8182009-09-22 16:45:25 -07002185 case OMAP_MMC4_DEVID:
2186 host->dma_line_tx = OMAP44XX_DMA_MMC4_TX;
2187 host->dma_line_rx = OMAP44XX_DMA_MMC4_RX;
2188 break;
2189 case OMAP_MMC5_DEVID:
2190 host->dma_line_tx = OMAP44XX_DMA_MMC5_TX;
2191 host->dma_line_rx = OMAP44XX_DMA_MMC5_RX;
2192 break;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00002193 default:
2194 dev_err(mmc_dev(host->mmc), "Invalid MMC id\n");
2195 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002196 }
2197
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002198 /* Request IRQ for MMC operations */
Denis Karpov70a33412009-09-22 16:44:59 -07002199 ret = request_irq(host->irq, omap_hsmmc_irq, IRQF_DISABLED,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002200 mmc_hostname(mmc), host);
2201 if (ret) {
2202 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
2203 goto err_irq;
2204 }
2205
2206 if (pdata->init != NULL) {
2207 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07002208 dev_dbg(mmc_dev(host->mmc),
2209 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002210 goto err_irq_cd_init;
2211 }
2212 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002213
Adrian Hunterb702b102010-02-15 10:03:35 -08002214 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002215 ret = omap_hsmmc_reg_get(host);
2216 if (ret)
2217 goto err_reg;
2218 host->use_reg = 1;
2219 }
2220
David Brownellb583f262009-05-28 14:04:03 -07002221 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002222
2223 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02002224 if ((mmc_slot(host).card_detect_irq)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002225 ret = request_irq(mmc_slot(host).card_detect_irq,
Denis Karpov70a33412009-09-22 16:44:59 -07002226 omap_hsmmc_cd_handler,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002227 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING
2228 | IRQF_DISABLED,
2229 mmc_hostname(mmc), host);
2230 if (ret) {
2231 dev_dbg(mmc_dev(host->mmc),
2232 "Unable to grab MMC CD IRQ\n");
2233 goto err_irq_cd;
2234 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002235 pdata->suspend = omap_hsmmc_suspend_cdirq;
2236 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002237 }
2238
Adrian Hunterb4175772010-05-26 14:42:06 -07002239 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002240
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002241 mmc_host_lazy_disable(host->mmc);
2242
Adrian Hunterb62f6222009-09-22 16:45:01 -07002243 omap_hsmmc_protect_card(host);
2244
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002245 mmc_add_host(mmc);
2246
Denis Karpov191d1f12009-09-22 16:44:55 -07002247 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002248 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2249 if (ret < 0)
2250 goto err_slot_name;
2251 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002252 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002253 ret = device_create_file(&mmc->class_dev,
2254 &dev_attr_cover_switch);
2255 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002256 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002257 }
2258
Denis Karpov70a33412009-09-22 16:44:59 -07002259 omap_hsmmc_debugfs(mmc);
Denis Karpovd900f712009-09-22 16:44:38 -07002260
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002261 return 0;
2262
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002263err_slot_name:
2264 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002265 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002266err_irq_cd:
2267 if (host->use_reg)
2268 omap_hsmmc_reg_put(host);
2269err_reg:
2270 if (host->pdata->cleanup)
2271 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002272err_irq_cd_init:
2273 free_irq(host->irq, host);
2274err_irq:
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002275 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002276 clk_disable(host->iclk);
2277 clk_put(host->fclk);
2278 clk_put(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002279 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002280 clk_disable(host->dbclk);
2281 clk_put(host->dbclk);
2282 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002283err1:
2284 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002285 platform_set_drvdata(pdev, NULL);
2286 mmc_free_host(mmc);
2287err_alloc:
2288 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002289err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002290 release_mem_region(res->start, res->end - res->start + 1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002291 return ret;
2292}
2293
Denis Karpov70a33412009-09-22 16:44:59 -07002294static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002295{
Denis Karpov70a33412009-09-22 16:44:59 -07002296 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002297 struct resource *res;
2298
2299 if (host) {
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002300 mmc_host_enable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002301 mmc_remove_host(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002302 if (host->use_reg)
2303 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002304 if (host->pdata->cleanup)
2305 host->pdata->cleanup(&pdev->dev);
2306 free_irq(host->irq, host);
2307 if (mmc_slot(host).card_detect_irq)
2308 free_irq(mmc_slot(host).card_detect_irq, host);
Tejun Heo0d9ee5b2010-12-24 16:00:17 +01002309 flush_work_sync(&host->mmc_carddetect_work);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002310
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002311 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002312 clk_disable(host->iclk);
2313 clk_put(host->fclk);
2314 clk_put(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002315 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002316 clk_disable(host->dbclk);
2317 clk_put(host->dbclk);
2318 }
2319
2320 mmc_free_host(host->mmc);
2321 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002322 omap_hsmmc_gpio_free(pdev->dev.platform_data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002323 }
2324
2325 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2326 if (res)
2327 release_mem_region(res->start, res->end - res->start + 1);
2328 platform_set_drvdata(pdev, NULL);
2329
2330 return 0;
2331}
2332
2333#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002334static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002335{
2336 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002337 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002338 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002339
2340 if (host && host->suspended)
2341 return 0;
2342
2343 if (host) {
Adrian Huntera6b22402009-09-22 16:44:45 -07002344 host->suspended = 1;
2345 if (host->pdata->suspend) {
2346 ret = host->pdata->suspend(&pdev->dev,
2347 host->slot_id);
2348 if (ret) {
2349 dev_dbg(mmc_dev(host->mmc),
2350 "Unable to handle MMC board"
2351 " level suspend\n");
2352 host->suspended = 0;
2353 return ret;
2354 }
2355 }
2356 cancel_work_sync(&host->mmc_carddetect_work);
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002357 ret = mmc_suspend_host(host->mmc);
Ethan Due7cb7562010-09-09 16:37:49 -07002358 mmc_host_enable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002359 if (ret == 0) {
Adrian Hunterb4175772010-05-26 14:42:06 -07002360 omap_hsmmc_disable_irq(host);
Jarkko Lavinen0683af42009-03-12 15:30:58 +02002361 OMAP_HSMMC_WRITE(host->base, HCTL,
Denis Karpov191d1f12009-09-22 16:44:55 -07002362 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002363 mmc_host_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002364 clk_disable(host->iclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002365 if (host->got_dbclk)
2366 clk_disable(host->dbclk);
Adrian Huntera6b22402009-09-22 16:44:45 -07002367 } else {
2368 host->suspended = 0;
2369 if (host->pdata->resume) {
2370 ret = host->pdata->resume(&pdev->dev,
2371 host->slot_id);
2372 if (ret)
2373 dev_dbg(mmc_dev(host->mmc),
2374 "Unmask interrupt failed\n");
2375 }
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002376 mmc_host_disable(host->mmc);
Adrian Huntera6b22402009-09-22 16:44:45 -07002377 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002378
2379 }
2380 return ret;
2381}
2382
2383/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002384static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002385{
2386 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002387 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002388 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002389
2390 if (host && !host->suspended)
2391 return 0;
2392
2393 if (host) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002394 ret = clk_enable(host->iclk);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002395 if (ret)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002396 goto clk_en_err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002397
Denis Karpov11dd62a2009-09-22 16:44:43 -07002398 if (mmc_host_enable(host->mmc) != 0) {
2399 clk_disable(host->iclk);
2400 goto clk_en_err;
2401 }
2402
Adrian Hunter2bec0892009-09-22 16:45:02 -07002403 if (host->got_dbclk)
2404 clk_enable(host->dbclk);
2405
Denis Karpov70a33412009-09-22 16:44:59 -07002406 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002407
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002408 if (host->pdata->resume) {
2409 ret = host->pdata->resume(&pdev->dev, host->slot_id);
2410 if (ret)
2411 dev_dbg(mmc_dev(host->mmc),
2412 "Unmask interrupt failed\n");
2413 }
2414
Adrian Hunterb62f6222009-09-22 16:45:01 -07002415 omap_hsmmc_protect_card(host);
2416
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002417 /* Notify the core to resume the host */
2418 ret = mmc_resume_host(host->mmc);
2419 if (ret == 0)
2420 host->suspended = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07002421
Adrian Hunter5e2ea612009-09-22 16:44:39 -07002422 mmc_host_lazy_disable(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002423 }
2424
2425 return ret;
2426
2427clk_en_err:
2428 dev_dbg(mmc_dev(host->mmc),
2429 "Failed to enable MMC clocks during resume\n");
2430 return ret;
2431}
2432
2433#else
Denis Karpov70a33412009-09-22 16:44:59 -07002434#define omap_hsmmc_suspend NULL
2435#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002436#endif
2437
Kevin Hilmana791daa2010-05-26 14:42:07 -07002438static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002439 .suspend = omap_hsmmc_suspend,
2440 .resume = omap_hsmmc_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002441};
2442
2443static struct platform_driver omap_hsmmc_driver = {
2444 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002445 .driver = {
2446 .name = DRIVER_NAME,
2447 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002448 .pm = &omap_hsmmc_dev_pm_ops,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002449 },
2450};
2451
Denis Karpov70a33412009-09-22 16:44:59 -07002452static int __init omap_hsmmc_init(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002453{
2454 /* Register the MMC driver */
Roger Quadros87532982009-10-26 16:49:38 -07002455 return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002456}
2457
Denis Karpov70a33412009-09-22 16:44:59 -07002458static void __exit omap_hsmmc_cleanup(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002459{
2460 /* Unregister MMC driver */
Denis Karpov70a33412009-09-22 16:44:59 -07002461 platform_driver_unregister(&omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002462}
2463
Denis Karpov70a33412009-09-22 16:44:59 -07002464module_init(omap_hsmmc_init);
2465module_exit(omap_hsmmc_cleanup);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002466
2467MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2468MODULE_LICENSE("GPL");
2469MODULE_ALIAS("platform:" DRIVER_NAME);
2470MODULE_AUTHOR("Texas Instruments Inc");