blob: 5b35c7e5a26d897850a21638ed4d6e135472013b [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f442011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
22#include <linux/seq_file.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010023#include <linux/interrupt.h>
24#include <linux/delay.h>
25#include <linux/dma-mapping.h>
26#include <linux/platform_device.h>
27#include <linux/workqueue.h>
28#include <linux/timer.h>
29#include <linux/clk.h>
30#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070031#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070032#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010033#include <linux/io.h>
34#include <linux/semaphore.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080035#include <linux/gpio.h>
36#include <linux/regulator/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053037#include <linux/pm_runtime.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070038#include <plat/dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010039#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070040#include <plat/board.h>
41#include <plat/mmc.h>
42#include <plat/cpu.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010043
44/* OMAP HSMMC Host Controller Registers */
45#define OMAP_HSMMC_SYSCONFIG 0x0010
Denis Karpov11dd62a2009-09-22 16:44:43 -070046#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010047#define OMAP_HSMMC_CON 0x002C
48#define OMAP_HSMMC_BLK 0x0104
49#define OMAP_HSMMC_ARG 0x0108
50#define OMAP_HSMMC_CMD 0x010C
51#define OMAP_HSMMC_RSP10 0x0110
52#define OMAP_HSMMC_RSP32 0x0114
53#define OMAP_HSMMC_RSP54 0x0118
54#define OMAP_HSMMC_RSP76 0x011C
55#define OMAP_HSMMC_DATA 0x0120
56#define OMAP_HSMMC_HCTL 0x0128
57#define OMAP_HSMMC_SYSCTL 0x012C
58#define OMAP_HSMMC_STAT 0x0130
59#define OMAP_HSMMC_IE 0x0134
60#define OMAP_HSMMC_ISE 0x0138
61#define OMAP_HSMMC_CAPA 0x0140
62
63#define VS18 (1 << 26)
64#define VS30 (1 << 25)
65#define SDVS18 (0x5 << 9)
66#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080067#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010068#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010069#define SDVSCLR 0xFFFFF1FF
70#define SDVSDET 0x00000400
71#define AUTOIDLE 0x1
72#define SDBP (1 << 8)
73#define DTO 0xe
74#define ICE 0x1
75#define ICS 0x2
76#define CEN (1 << 2)
77#define CLKD_MASK 0x0000FFC0
78#define CLKD_SHIFT 6
79#define DTO_MASK 0x000F0000
80#define DTO_SHIFT 16
81#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070082#define BWR_ENABLE (1 << 4)
83#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070084#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010085#define INIT_STREAM (1 << 1)
86#define DP_SELECT (1 << 21)
87#define DDIR (1 << 4)
88#define DMA_EN 0x1
89#define MSBS (1 << 5)
90#define BCE (1 << 1)
91#define FOUR_BIT (1 << 1)
Jarkko Lavinen73153012008-11-21 16:49:54 +020092#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010093#define CC 0x1
94#define TC 0x02
95#define OD 0x1
96#define ERR (1 << 15)
97#define CMD_TIMEOUT (1 << 16)
98#define DATA_TIMEOUT (1 << 20)
99#define CMD_CRC (1 << 17)
100#define DATA_CRC (1 << 21)
101#define CARD_ERR (1 << 28)
102#define STAT_CLEAR 0xFFFFFFFF
103#define INIT_STREAM_CMD 0x00000000
104#define DUAL_VOLT_OCR_BIT 7
105#define SRC (1 << 25)
106#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700107#define SOFTRESET (1 << 1)
108#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100109
110/*
111 * FIXME: Most likely all the data using these _DEVID defines should come
112 * from the platform_data, or implemented in controller and slot specific
113 * functions.
114 */
115#define OMAP_MMC1_DEVID 0
116#define OMAP_MMC2_DEVID 1
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000117#define OMAP_MMC3_DEVID 2
kishore kadiyala82cf8182009-09-22 16:45:25 -0700118#define OMAP_MMC4_DEVID 3
119#define OMAP_MMC5_DEVID 4
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100120
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530121#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100122#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400123#define OMAP_MMC_MIN_CLOCK 400000
124#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530125#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100126
127/*
128 * One controller can have multiple slots, like on some omap boards using
129 * omap.c controller driver. Luckily this is not currently done on any known
130 * omap_hsmmc.c device.
131 */
132#define mmc_slot(host) (host->pdata->slots[host->slot_id])
133
134/*
135 * MMC Host controller read/write API's
136 */
137#define OMAP_HSMMC_READ(base, reg) \
138 __raw_readl((base) + OMAP_HSMMC_##reg)
139
140#define OMAP_HSMMC_WRITE(base, reg, val) \
141 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
142
Per Forlin9782aff2011-07-01 18:55:23 +0200143struct omap_hsmmc_next {
144 unsigned int dma_len;
145 s32 cookie;
146};
147
Denis Karpov70a33412009-09-22 16:44:59 -0700148struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100149 struct device *dev;
150 struct mmc_host *mmc;
151 struct mmc_request *mrq;
152 struct mmc_command *cmd;
153 struct mmc_data *data;
154 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800156 /*
157 * vcc == configured supply
158 * vcc_aux == optional
159 * - MMC1, supply for DAT4..DAT7
160 * - MMC2/MMC2, external level shifter voltage supply, for
161 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
162 */
163 struct regulator *vcc;
164 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100165 struct work_struct mmc_carddetect_work;
166 void __iomem *base;
167 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700168 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100169 unsigned int id;
170 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200171 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100172 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700173 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100174 u32 *buffer;
175 u32 bytesleft;
176 int suspended;
177 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100178 int use_dma, dma_ch;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000179 int dma_line_tx, dma_line_rx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100180 int slot_id;
Adrian Hunter2bec0892009-09-22 16:45:02 -0700181 int got_dbclk;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200182 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700183 int context_loss;
Denis Karpovdd498ef2009-09-22 16:44:49 -0700184 int dpm_state;
Adrian Hunter623821f2009-09-22 16:44:51 -0700185 int vdd;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700186 int protect_card;
187 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800188 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700189 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200190 struct omap_hsmmc_next next_data;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700191
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100192 struct omap_mmc_platform_data *pdata;
193};
194
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800195static int omap_hsmmc_card_detect(struct device *dev, int slot)
196{
197 struct omap_mmc_platform_data *mmc = dev->platform_data;
198
199 /* NOTE: assumes card detect signal is active-low */
200 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
201}
202
203static int omap_hsmmc_get_wp(struct device *dev, int slot)
204{
205 struct omap_mmc_platform_data *mmc = dev->platform_data;
206
207 /* NOTE: assumes write protect signal is active-high */
208 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
209}
210
211static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
212{
213 struct omap_mmc_platform_data *mmc = dev->platform_data;
214
215 /* NOTE: assumes card detect signal is active-low */
216 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
217}
218
219#ifdef CONFIG_PM
220
221static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
222{
223 struct omap_mmc_platform_data *mmc = dev->platform_data;
224
225 disable_irq(mmc->slots[0].card_detect_irq);
226 return 0;
227}
228
229static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
230{
231 struct omap_mmc_platform_data *mmc = dev->platform_data;
232
233 enable_irq(mmc->slots[0].card_detect_irq);
234 return 0;
235}
236
237#else
238
239#define omap_hsmmc_suspend_cdirq NULL
240#define omap_hsmmc_resume_cdirq NULL
241
242#endif
243
Adrian Hunterb702b102010-02-15 10:03:35 -0800244#ifdef CONFIG_REGULATOR
245
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800246static int omap_hsmmc_1_set_power(struct device *dev, int slot, int power_on,
247 int vdd)
248{
249 struct omap_hsmmc_host *host =
250 platform_get_drvdata(to_platform_device(dev));
251 int ret;
252
253 if (mmc_slot(host).before_set_reg)
254 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
255
256 if (power_on)
Linus Walleij99fc5132010-09-29 01:08:27 -0400257 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800258 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400259 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800260
261 if (mmc_slot(host).after_set_reg)
262 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
263
264 return ret;
265}
266
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500267static int omap_hsmmc_235_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800268 int vdd)
269{
270 struct omap_hsmmc_host *host =
271 platform_get_drvdata(to_platform_device(dev));
272 int ret = 0;
273
274 /*
275 * If we don't see a Vcc regulator, assume it's a fixed
276 * voltage always-on regulator.
277 */
278 if (!host->vcc)
279 return 0;
280
281 if (mmc_slot(host).before_set_reg)
282 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
283
284 /*
285 * Assume Vcc regulator is used only to power the card ... OMAP
286 * VDDS is used to power the pins, optionally with a transceiver to
287 * support cards using voltages other than VDDS (1.8V nominal). When a
288 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
289 *
290 * In some cases this regulator won't support enable/disable;
291 * e.g. it's a fixed rail for a WLAN chip.
292 *
293 * In other cases vcc_aux switches interface power. Example, for
294 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
295 * chips/cards need an interface voltage rail too.
296 */
297 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400298 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800299 /* Enable interface voltage rail, if needed */
300 if (ret == 0 && host->vcc_aux) {
301 ret = regulator_enable(host->vcc_aux);
302 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400303 ret = mmc_regulator_set_ocr(host->mmc,
304 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800305 }
306 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400307 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800308 if (host->vcc_aux)
309 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400310 if (!ret) {
311 /* Then proceed to shut down the local regulator */
312 ret = mmc_regulator_set_ocr(host->mmc,
313 host->vcc, 0);
314 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800315 }
316
317 if (mmc_slot(host).after_set_reg)
318 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
319
320 return ret;
321}
322
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500323static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on,
324 int vdd)
325{
326 return 0;
327}
328
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800329static int omap_hsmmc_1_set_sleep(struct device *dev, int slot, int sleep,
330 int vdd, int cardsleep)
331{
332 struct omap_hsmmc_host *host =
333 platform_get_drvdata(to_platform_device(dev));
334 int mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
335
336 return regulator_set_mode(host->vcc, mode);
337}
338
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500339static int omap_hsmmc_235_set_sleep(struct device *dev, int slot, int sleep,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800340 int vdd, int cardsleep)
341{
342 struct omap_hsmmc_host *host =
343 platform_get_drvdata(to_platform_device(dev));
344 int err, mode;
345
346 /*
347 * If we don't see a Vcc regulator, assume it's a fixed
348 * voltage always-on regulator.
349 */
350 if (!host->vcc)
351 return 0;
352
353 mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
354
355 if (!host->vcc_aux)
356 return regulator_set_mode(host->vcc, mode);
357
358 if (cardsleep) {
359 /* VCC can be turned off if card is asleep */
360 if (sleep)
Linus Walleij99fc5132010-09-29 01:08:27 -0400361 err = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800362 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400363 err = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800364 } else
365 err = regulator_set_mode(host->vcc, mode);
366 if (err)
367 return err;
Adrian Huntere0eb2422010-02-15 10:03:34 -0800368
369 if (!mmc_slot(host).vcc_aux_disable_is_sleep)
370 return regulator_set_mode(host->vcc_aux, mode);
371
372 if (sleep)
373 return regulator_disable(host->vcc_aux);
374 else
375 return regulator_enable(host->vcc_aux);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800376}
377
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500378static int omap_hsmmc_4_set_sleep(struct device *dev, int slot, int sleep,
379 int vdd, int cardsleep)
380{
381 return 0;
382}
383
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800384static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
385{
386 struct regulator *reg;
387 int ret = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700388 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800389
390 switch (host->id) {
391 case OMAP_MMC1_DEVID:
392 /* On-chip level shifting via PBIAS0/PBIAS1 */
393 mmc_slot(host).set_power = omap_hsmmc_1_set_power;
394 mmc_slot(host).set_sleep = omap_hsmmc_1_set_sleep;
395 break;
396 case OMAP_MMC2_DEVID:
397 case OMAP_MMC3_DEVID:
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500398 case OMAP_MMC5_DEVID:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800399 /* Off-chip level shifting, or none */
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500400 mmc_slot(host).set_power = omap_hsmmc_235_set_power;
401 mmc_slot(host).set_sleep = omap_hsmmc_235_set_sleep;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800402 break;
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500403 case OMAP_MMC4_DEVID:
404 mmc_slot(host).set_power = omap_hsmmc_4_set_power;
405 mmc_slot(host).set_sleep = omap_hsmmc_4_set_sleep;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800406 default:
407 pr_err("MMC%d configuration not supported!\n", host->id);
408 return -EINVAL;
409 }
410
411 reg = regulator_get(host->dev, "vmmc");
412 if (IS_ERR(reg)) {
413 dev_dbg(host->dev, "vmmc regulator missing\n");
414 /*
415 * HACK: until fixed.c regulator is usable,
416 * we don't require a main regulator
417 * for MMC2 or MMC3
418 */
419 if (host->id == OMAP_MMC1_DEVID) {
420 ret = PTR_ERR(reg);
421 goto err;
422 }
423 } else {
424 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700425 ocr_value = mmc_regulator_get_ocrmask(reg);
426 if (!mmc_slot(host).ocr_mask) {
427 mmc_slot(host).ocr_mask = ocr_value;
428 } else {
429 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
430 pr_err("MMC%d ocrmask %x is not supported\n",
431 host->id, mmc_slot(host).ocr_mask);
432 mmc_slot(host).ocr_mask = 0;
433 return -EINVAL;
434 }
435 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800436
437 /* Allow an aux regulator */
438 reg = regulator_get(host->dev, "vmmc_aux");
439 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
440
Balaji T Kb1c1df72011-05-30 19:55:34 +0530441 /* For eMMC do not power off when not in sleep state */
442 if (mmc_slot(host).no_regulator_off_init)
443 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800444 /*
445 * UGLY HACK: workaround regulator framework bugs.
446 * When the bootloader leaves a supply active, it's
447 * initialized with zero usecount ... and we can't
448 * disable it without first enabling it. Until the
449 * framework is fixed, we need a workaround like this
450 * (which is safe for MMC, but not in general).
451 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300452 if (regulator_is_enabled(host->vcc) > 0 ||
453 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
454 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
455
456 mmc_slot(host).set_power(host->dev, host->slot_id,
457 1, vdd);
458 mmc_slot(host).set_power(host->dev, host->slot_id,
459 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800460 }
461 }
462
463 return 0;
464
465err:
466 mmc_slot(host).set_power = NULL;
467 mmc_slot(host).set_sleep = NULL;
468 return ret;
469}
470
471static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
472{
473 regulator_put(host->vcc);
474 regulator_put(host->vcc_aux);
475 mmc_slot(host).set_power = NULL;
476 mmc_slot(host).set_sleep = NULL;
477}
478
Adrian Hunterb702b102010-02-15 10:03:35 -0800479static inline int omap_hsmmc_have_reg(void)
480{
481 return 1;
482}
483
484#else
485
486static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
487{
488 return -EINVAL;
489}
490
491static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
492{
493}
494
495static inline int omap_hsmmc_have_reg(void)
496{
497 return 0;
498}
499
500#endif
501
502static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
503{
504 int ret;
505
506 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800507 if (pdata->slots[0].cover)
508 pdata->slots[0].get_cover_state =
509 omap_hsmmc_get_cover_state;
510 else
511 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
512 pdata->slots[0].card_detect_irq =
513 gpio_to_irq(pdata->slots[0].switch_pin);
514 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
515 if (ret)
516 return ret;
517 ret = gpio_direction_input(pdata->slots[0].switch_pin);
518 if (ret)
519 goto err_free_sp;
520 } else
521 pdata->slots[0].switch_pin = -EINVAL;
522
523 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
524 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
525 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
526 if (ret)
527 goto err_free_cd;
528 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
529 if (ret)
530 goto err_free_wp;
531 } else
532 pdata->slots[0].gpio_wp = -EINVAL;
533
534 return 0;
535
536err_free_wp:
537 gpio_free(pdata->slots[0].gpio_wp);
538err_free_cd:
539 if (gpio_is_valid(pdata->slots[0].switch_pin))
540err_free_sp:
541 gpio_free(pdata->slots[0].switch_pin);
542 return ret;
543}
544
545static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
546{
547 if (gpio_is_valid(pdata->slots[0].gpio_wp))
548 gpio_free(pdata->slots[0].gpio_wp);
549 if (gpio_is_valid(pdata->slots[0].switch_pin))
550 gpio_free(pdata->slots[0].switch_pin);
551}
552
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100553/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300554 * Start clock to the card
555 */
556static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
557{
558 OMAP_HSMMC_WRITE(host->base, SYSCTL,
559 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
560}
561
562/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100563 * Stop clock to the card
564 */
Denis Karpov70a33412009-09-22 16:44:59 -0700565static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100566{
567 OMAP_HSMMC_WRITE(host->base, SYSCTL,
568 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
569 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
570 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
571}
572
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700573static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
574 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700575{
576 unsigned int irq_mask;
577
578 if (host->use_dma)
579 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
580 else
581 irq_mask = INT_EN_MASK;
582
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700583 /* Disable timeout for erases */
584 if (cmd->opcode == MMC_ERASE)
585 irq_mask &= ~DTO_ENABLE;
586
Adrian Hunterb4175772010-05-26 14:42:06 -0700587 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
588 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
589 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
590}
591
592static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
593{
594 OMAP_HSMMC_WRITE(host->base, ISE, 0);
595 OMAP_HSMMC_WRITE(host->base, IE, 0);
596 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
597}
598
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300599/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530600static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300601{
602 u16 dsor = 0;
603
604 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530605 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300606 if (dsor > 250)
607 dsor = 250;
608 }
609
610 return dsor;
611}
612
Andy Shevchenko5934df22011-05-06 12:14:06 +0300613static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
614{
615 struct mmc_ios *ios = &host->mmc->ios;
616 unsigned long regval;
617 unsigned long timeout;
618
619 dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
620
621 omap_hsmmc_stop_clock(host);
622
623 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
624 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530625 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300626 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
627 OMAP_HSMMC_WRITE(host->base, SYSCTL,
628 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
629
630 /* Wait till the ICS bit is set */
631 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
632 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
633 && time_before(jiffies, timeout))
634 cpu_relax();
635
636 omap_hsmmc_start_clock(host);
637}
638
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400639static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
640{
641 struct mmc_ios *ios = &host->mmc->ios;
642 u32 con;
643
644 con = OMAP_HSMMC_READ(host->base, CON);
645 switch (ios->bus_width) {
646 case MMC_BUS_WIDTH_8:
647 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
648 break;
649 case MMC_BUS_WIDTH_4:
650 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
651 OMAP_HSMMC_WRITE(host->base, HCTL,
652 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
653 break;
654 case MMC_BUS_WIDTH_1:
655 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
656 OMAP_HSMMC_WRITE(host->base, HCTL,
657 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
658 break;
659 }
660}
661
662static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
663{
664 struct mmc_ios *ios = &host->mmc->ios;
665 u32 con;
666
667 con = OMAP_HSMMC_READ(host->base, CON);
668 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
669 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
670 else
671 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
672}
673
Denis Karpov11dd62a2009-09-22 16:44:43 -0700674#ifdef CONFIG_PM
675
676/*
677 * Restore the MMC host context, if it was lost as result of a
678 * power state change.
679 */
Denis Karpov70a33412009-09-22 16:44:59 -0700680static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700681{
682 struct mmc_ios *ios = &host->mmc->ios;
683 struct omap_mmc_platform_data *pdata = host->pdata;
684 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400685 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700686 unsigned long timeout;
687
688 if (pdata->get_context_loss_count) {
689 context_loss = pdata->get_context_loss_count(host->dev);
690 if (context_loss < 0)
691 return 1;
692 }
693
694 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
695 context_loss == host->context_loss ? "not " : "");
696 if (host->context_loss == context_loss)
697 return 1;
698
699 /* Wait for hardware reset */
700 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
701 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
702 && time_before(jiffies, timeout))
703 ;
704
705 /* Do software reset */
706 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
707 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
708 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
709 && time_before(jiffies, timeout))
710 ;
711
712 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
713 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
714
715 if (host->id == OMAP_MMC1_DEVID) {
716 if (host->power_mode != MMC_POWER_OFF &&
717 (1 << ios->vdd) <= MMC_VDD_23_24)
718 hctl = SDVS18;
719 else
720 hctl = SDVS30;
721 capa = VS30 | VS18;
722 } else {
723 hctl = SDVS18;
724 capa = VS18;
725 }
726
727 OMAP_HSMMC_WRITE(host->base, HCTL,
728 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
729
730 OMAP_HSMMC_WRITE(host->base, CAPA,
731 OMAP_HSMMC_READ(host->base, CAPA) | capa);
732
733 OMAP_HSMMC_WRITE(host->base, HCTL,
734 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
735
736 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
737 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
738 && time_before(jiffies, timeout))
739 ;
740
Adrian Hunterb4175772010-05-26 14:42:06 -0700741 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700742
743 /* Do not initialize card-specific things if the power is off */
744 if (host->power_mode == MMC_POWER_OFF)
745 goto out;
746
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400747 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700748
Andy Shevchenko5934df22011-05-06 12:14:06 +0300749 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700750
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400751 omap_hsmmc_set_bus_mode(host);
752
Denis Karpov11dd62a2009-09-22 16:44:43 -0700753out:
754 host->context_loss = context_loss;
755
756 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
757 return 0;
758}
759
760/*
761 * Save the MMC host context (store the number of power state changes so far).
762 */
Denis Karpov70a33412009-09-22 16:44:59 -0700763static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700764{
765 struct omap_mmc_platform_data *pdata = host->pdata;
766 int context_loss;
767
768 if (pdata->get_context_loss_count) {
769 context_loss = pdata->get_context_loss_count(host->dev);
770 if (context_loss < 0)
771 return;
772 host->context_loss = context_loss;
773 }
774}
775
776#else
777
Denis Karpov70a33412009-09-22 16:44:59 -0700778static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700779{
780 return 0;
781}
782
Denis Karpov70a33412009-09-22 16:44:59 -0700783static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700784{
785}
786
787#endif
788
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100789/*
790 * Send init stream sequence to card
791 * before sending IDLE command
792 */
Denis Karpov70a33412009-09-22 16:44:59 -0700793static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100794{
795 int reg = 0;
796 unsigned long timeout;
797
Adrian Hunterb62f6222009-09-22 16:45:01 -0700798 if (host->protect_card)
799 return;
800
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100801 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700802
803 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100804 OMAP_HSMMC_WRITE(host->base, CON,
805 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
806 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
807
808 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
809 while ((reg != CC) && time_before(jiffies, timeout))
810 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
811
812 OMAP_HSMMC_WRITE(host->base, CON,
813 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700814
815 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
816 OMAP_HSMMC_READ(host->base, STAT);
817
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100818 enable_irq(host->irq);
819}
820
821static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700822int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100823{
824 int r = 1;
825
Denis Karpov191d1f12009-09-22 16:44:55 -0700826 if (mmc_slot(host).get_cover_state)
827 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100828 return r;
829}
830
831static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700832omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100833 char *buf)
834{
835 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700836 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100837
Denis Karpov70a33412009-09-22 16:44:59 -0700838 return sprintf(buf, "%s\n",
839 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100840}
841
Denis Karpov70a33412009-09-22 16:44:59 -0700842static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100843
844static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700845omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100846 char *buf)
847{
848 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700849 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100850
Denis Karpov191d1f12009-09-22 16:44:55 -0700851 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100852}
853
Denis Karpov70a33412009-09-22 16:44:59 -0700854static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100855
856/*
857 * Configure the response type and send the cmd.
858 */
859static void
Denis Karpov70a33412009-09-22 16:44:59 -0700860omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100861 struct mmc_data *data)
862{
863 int cmdreg = 0, resptype = 0, cmdtype = 0;
864
865 dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
866 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
867 host->cmd = cmd;
868
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700869 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100870
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200871 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100872 if (cmd->flags & MMC_RSP_PRESENT) {
873 if (cmd->flags & MMC_RSP_136)
874 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200875 else if (cmd->flags & MMC_RSP_BUSY) {
876 resptype = 3;
877 host->response_busy = 1;
878 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100879 resptype = 2;
880 }
881
882 /*
883 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
884 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
885 * a val of 0x3, rest 0x0.
886 */
887 if (cmd == host->mrq->stop)
888 cmdtype = 0x3;
889
890 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
891
892 if (data) {
893 cmdreg |= DP_SELECT | MSBS | BCE;
894 if (data->flags & MMC_DATA_READ)
895 cmdreg |= DDIR;
896 else
897 cmdreg &= ~(DDIR);
898 }
899
900 if (host->use_dma)
901 cmdreg |= DMA_EN;
902
Adrian Hunterb4175772010-05-26 14:42:06 -0700903 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700904
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100905 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
906 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
907}
908
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200909static int
Denis Karpov70a33412009-09-22 16:44:59 -0700910omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200911{
912 if (data->flags & MMC_DATA_WRITE)
913 return DMA_TO_DEVICE;
914 else
915 return DMA_FROM_DEVICE;
916}
917
Adrian Hunterb4175772010-05-26 14:42:06 -0700918static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
919{
920 int dma_ch;
921
922 spin_lock(&host->irq_lock);
923 host->req_in_progress = 0;
924 dma_ch = host->dma_ch;
925 spin_unlock(&host->irq_lock);
926
927 omap_hsmmc_disable_irq(host);
928 /* Do not complete the request if DMA is still in progress */
929 if (mrq->data && host->use_dma && dma_ch != -1)
930 return;
931 host->mrq = NULL;
932 mmc_request_done(host->mmc, mrq);
933}
934
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100935/*
936 * Notify the transfer complete to MMC core
937 */
938static void
Denis Karpov70a33412009-09-22 16:44:59 -0700939omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100940{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200941 if (!data) {
942 struct mmc_request *mrq = host->mrq;
943
Adrian Hunter23050102009-09-22 16:44:57 -0700944 /* TC before CC from CMD6 - don't know why, but it happens */
945 if (host->cmd && host->cmd->opcode == 6 &&
946 host->response_busy) {
947 host->response_busy = 0;
948 return;
949 }
950
Adrian Hunterb4175772010-05-26 14:42:06 -0700951 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200952 return;
953 }
954
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100955 host->data = NULL;
956
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100957 if (!data->error)
958 data->bytes_xfered += data->blocks * (data->blksz);
959 else
960 data->bytes_xfered = 0;
961
962 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700963 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100964 return;
965 }
Denis Karpov70a33412009-09-22 16:44:59 -0700966 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100967}
968
969/*
970 * Notify the core about command completion
971 */
972static void
Denis Karpov70a33412009-09-22 16:44:59 -0700973omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100974{
975 host->cmd = NULL;
976
977 if (cmd->flags & MMC_RSP_PRESENT) {
978 if (cmd->flags & MMC_RSP_136) {
979 /* response type 2 */
980 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
981 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
982 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
983 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
984 } else {
985 /* response types 1, 1b, 3, 4, 5, 6 */
986 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
987 }
988 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700989 if ((host->data == NULL && !host->response_busy) || cmd->error)
990 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100991}
992
993/*
994 * DMA clean up for command errors
995 */
Denis Karpov70a33412009-09-22 16:44:59 -0700996static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100997{
Adrian Hunterb4175772010-05-26 14:42:06 -0700998 int dma_ch;
999
Jarkko Lavinen82788ff2008-12-05 12:31:46 +02001000 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001001
Adrian Hunterb4175772010-05-26 14:42:06 -07001002 spin_lock(&host->irq_lock);
1003 dma_ch = host->dma_ch;
1004 host->dma_ch = -1;
1005 spin_unlock(&host->irq_lock);
1006
1007 if (host->use_dma && dma_ch != -1) {
Per Forlina9120c32011-06-17 20:14:21 +02001008 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg,
1009 host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001010 omap_hsmmc_get_dma_dir(host, host->data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001011 omap_free_dma(dma_ch);
Per Forlin053bf342011-11-07 21:55:11 +05301012 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001013 }
1014 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001015}
1016
1017/*
1018 * Readable error output
1019 */
1020#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001021static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001022{
1023 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001024 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001025 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1026 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1027 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1028 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001029 };
1030 char res[256];
1031 char *buf = res;
1032 int len, i;
1033
1034 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1035 buf += len;
1036
Denis Karpov70a33412009-09-22 16:44:59 -07001037 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001038 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001039 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001040 buf += len;
1041 }
1042
1043 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
1044}
Adrian Hunter699b9582011-05-06 12:14:01 +03001045#else
1046static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1047 u32 status)
1048{
1049}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001050#endif /* CONFIG_MMC_DEBUG */
1051
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001052/*
1053 * MMC controller internal state machines reset
1054 *
1055 * Used to reset command or data internal state machines, using respectively
1056 * SRC or SRD bit of SYSCTL register
1057 * Can be called from interrupt context
1058 */
Denis Karpov70a33412009-09-22 16:44:59 -07001059static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1060 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001061{
1062 unsigned long i = 0;
1063 unsigned long limit = (loops_per_jiffy *
1064 msecs_to_jiffies(MMC_TIMEOUT_MS));
1065
1066 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1067 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1068
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001069 /*
1070 * OMAP4 ES2 and greater has an updated reset logic.
1071 * Monitor a 0->1 transition first
1072 */
1073 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001074 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001075 && (i++ < limit))
1076 cpu_relax();
1077 }
1078 i = 0;
1079
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001080 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1081 (i++ < limit))
1082 cpu_relax();
1083
1084 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1085 dev_err(mmc_dev(host->mmc),
1086 "Timeout waiting on controller reset in %s\n",
1087 __func__);
1088}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001089
Adrian Hunterb4175772010-05-26 14:42:06 -07001090static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001091{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001092 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001093 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001094
Adrian Hunterb4175772010-05-26 14:42:06 -07001095 if (!host->req_in_progress) {
1096 do {
1097 OMAP_HSMMC_WRITE(host->base, STAT, status);
1098 /* Flush posted write */
1099 status = OMAP_HSMMC_READ(host->base, STAT);
1100 } while (status & INT_EN_MASK);
1101 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001102 }
1103
1104 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001105 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1106
1107 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001108 omap_hsmmc_dbg_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001109 if ((status & CMD_TIMEOUT) ||
1110 (status & CMD_CRC)) {
1111 if (host->cmd) {
1112 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001113 omap_hsmmc_reset_controller_fsm(host,
1114 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001115 host->cmd->error = -ETIMEDOUT;
1116 } else {
1117 host->cmd->error = -EILSEQ;
1118 }
1119 end_cmd = 1;
1120 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001121 if (host->data || host->response_busy) {
1122 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001123 omap_hsmmc_dma_cleanup(host,
1124 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001125 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001126 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001127 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001128 }
1129 if ((status & DATA_TIMEOUT) ||
1130 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001131 if (host->data || host->response_busy) {
1132 int err = (status & DATA_TIMEOUT) ?
1133 -ETIMEDOUT : -EILSEQ;
1134
1135 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001136 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001137 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001138 host->mrq->cmd->error = err;
1139 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001140 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001141 end_trans = 1;
1142 }
1143 }
1144 if (status & CARD_ERR) {
1145 dev_dbg(mmc_dev(host->mmc),
1146 "Ignoring card err CMD%d\n", host->cmd->opcode);
1147 if (host->cmd)
1148 end_cmd = 1;
1149 if (host->data)
1150 end_trans = 1;
1151 }
1152 }
1153
1154 OMAP_HSMMC_WRITE(host->base, STAT, status);
1155
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001156 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001157 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001158 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001159 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001160}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161
Adrian Hunterb4175772010-05-26 14:42:06 -07001162/*
1163 * MMC controller IRQ handler
1164 */
1165static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1166{
1167 struct omap_hsmmc_host *host = dev_id;
1168 int status;
1169
1170 status = OMAP_HSMMC_READ(host->base, STAT);
1171 do {
1172 omap_hsmmc_do_irq(host, status);
1173 /* Flush posted write */
1174 status = OMAP_HSMMC_READ(host->base, STAT);
1175 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001176
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001177 return IRQ_HANDLED;
1178}
1179
Denis Karpov70a33412009-09-22 16:44:59 -07001180static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001181{
1182 unsigned long i;
1183
1184 OMAP_HSMMC_WRITE(host->base, HCTL,
1185 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1186 for (i = 0; i < loops_per_jiffy; i++) {
1187 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1188 break;
1189 cpu_relax();
1190 }
1191}
1192
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001193/*
David Brownelleb250822009-02-17 14:49:01 -08001194 * Switch MMC interface voltage ... only relevant for MMC1.
1195 *
1196 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1197 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1198 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001199 */
Denis Karpov70a33412009-09-22 16:44:59 -07001200static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001201{
1202 u32 reg_val = 0;
1203 int ret;
1204
1205 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301206 pm_runtime_put_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001207 if (host->got_dbclk)
1208 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001209
1210 /* Turn the power off */
1211 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001212
1213 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001214 if (!ret)
1215 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1216 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301217 pm_runtime_get_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001218 if (host->got_dbclk)
1219 clk_enable(host->dbclk);
1220
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001221 if (ret != 0)
1222 goto err;
1223
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001224 OMAP_HSMMC_WRITE(host->base, HCTL,
1225 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1226 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001227
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001228 /*
1229 * If a MMC dual voltage card is detected, the set_ios fn calls
1230 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001231 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001232 *
David Brownelleb250822009-02-17 14:49:01 -08001233 * Cope with a bit of slop in the range ... per data sheets:
1234 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1235 * but recommended values are 1.71V to 1.89V
1236 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1237 * but recommended values are 2.7V to 3.3V
1238 *
1239 * Board setup code shouldn't permit anything very out-of-range.
1240 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1241 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001242 */
David Brownelleb250822009-02-17 14:49:01 -08001243 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001244 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001245 else
1246 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001247
1248 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001249 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001250
1251 return 0;
1252err:
1253 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1254 return ret;
1255}
1256
Adrian Hunterb62f6222009-09-22 16:45:01 -07001257/* Protect the card while the cover is open */
1258static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1259{
1260 if (!mmc_slot(host).get_cover_state)
1261 return;
1262
1263 host->reqs_blocked = 0;
1264 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1265 if (host->protect_card) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301266 pr_info("%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001267 "card is now accessible\n",
1268 mmc_hostname(host->mmc));
1269 host->protect_card = 0;
1270 }
1271 } else {
1272 if (!host->protect_card) {
Linus Torvalds3f8ddb02011-11-03 08:05:35 -07001273 pr_info("%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001274 "card is now inaccessible\n",
1275 mmc_hostname(host->mmc));
1276 host->protect_card = 1;
1277 }
1278 }
1279}
1280
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001281/*
1282 * Work Item to notify the core about card insertion/removal
1283 */
Denis Karpov70a33412009-09-22 16:44:59 -07001284static void omap_hsmmc_detect(struct work_struct *work)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001285{
Denis Karpov70a33412009-09-22 16:44:59 -07001286 struct omap_hsmmc_host *host =
1287 container_of(work, struct omap_hsmmc_host, mmc_carddetect_work);
David Brownell249d0fa2009-02-04 14:42:03 -08001288 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001289 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001290
Adrian Huntera6b22402009-09-22 16:44:45 -07001291 if (host->suspended)
1292 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001293
1294 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001295
Denis Karpov191d1f12009-09-22 16:44:55 -07001296 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001297 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001298 else {
1299 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001300 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001301 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001302
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001303 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001304 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001305 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001306 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001307}
1308
1309/*
1310 * ISR for handling card insertion and removal
1311 */
Denis Karpov70a33412009-09-22 16:44:59 -07001312static irqreturn_t omap_hsmmc_cd_handler(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001313{
Denis Karpov70a33412009-09-22 16:44:59 -07001314 struct omap_hsmmc_host *host = (struct omap_hsmmc_host *)dev_id;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001315
Adrian Huntera6b22402009-09-22 16:44:45 -07001316 if (host->suspended)
1317 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001318 schedule_work(&host->mmc_carddetect_work);
1319
1320 return IRQ_HANDLED;
1321}
1322
Denis Karpov70a33412009-09-22 16:44:59 -07001323static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001324 struct mmc_data *data)
1325{
1326 int sync_dev;
1327
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001328 if (data->flags & MMC_DATA_WRITE)
1329 sync_dev = host->dma_line_tx;
1330 else
1331 sync_dev = host->dma_line_rx;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001332 return sync_dev;
1333}
1334
Denis Karpov70a33412009-09-22 16:44:59 -07001335static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001336 struct mmc_data *data,
1337 struct scatterlist *sgl)
1338{
1339 int blksz, nblk, dma_ch;
1340
1341 dma_ch = host->dma_ch;
1342 if (data->flags & MMC_DATA_WRITE) {
1343 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1344 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1345 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1346 sg_dma_address(sgl), 0, 0);
1347 } else {
1348 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
Denis Karpov191d1f12009-09-22 16:44:55 -07001349 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001350 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1351 sg_dma_address(sgl), 0, 0);
1352 }
1353
1354 blksz = host->data->blksz;
1355 nblk = sg_dma_len(sgl) / blksz;
1356
1357 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1358 blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
Denis Karpov70a33412009-09-22 16:44:59 -07001359 omap_hsmmc_get_dma_sync_dev(host, data),
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001360 !(data->flags & MMC_DATA_WRITE));
1361
1362 omap_start_dma(dma_ch);
1363}
1364
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001365/*
1366 * DMA call back function
1367 */
Adrian Hunterb4175772010-05-26 14:42:06 -07001368static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001369{
Adrian Hunterb4175772010-05-26 14:42:06 -07001370 struct omap_hsmmc_host *host = cb_data;
Adrian Hunter770d7432011-05-06 12:14:11 +03001371 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001372 int dma_ch, req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001373
Venkatraman Sf3584e52010-08-10 18:01:54 -07001374 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1375 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1376 ch_status);
1377 return;
1378 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001379
Adrian Hunterb4175772010-05-26 14:42:06 -07001380 spin_lock(&host->irq_lock);
1381 if (host->dma_ch < 0) {
1382 spin_unlock(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001383 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001384 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001385
Adrian Hunter770d7432011-05-06 12:14:11 +03001386 data = host->mrq->data;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001387 host->dma_sg_idx++;
1388 if (host->dma_sg_idx < host->dma_len) {
1389 /* Fire up the next transfer. */
Adrian Hunterb4175772010-05-26 14:42:06 -07001390 omap_hsmmc_config_dma_params(host, data,
1391 data->sg + host->dma_sg_idx);
1392 spin_unlock(&host->irq_lock);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001393 return;
1394 }
1395
Per Forlin9782aff2011-07-01 18:55:23 +02001396 if (!data->host_cookie)
1397 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1398 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001399
1400 req_in_progress = host->req_in_progress;
1401 dma_ch = host->dma_ch;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001402 host->dma_ch = -1;
Adrian Hunterb4175772010-05-26 14:42:06 -07001403 spin_unlock(&host->irq_lock);
1404
1405 omap_free_dma(dma_ch);
1406
1407 /* If DMA has finished after TC, complete the request */
1408 if (!req_in_progress) {
1409 struct mmc_request *mrq = host->mrq;
1410
1411 host->mrq = NULL;
1412 mmc_request_done(host->mmc, mrq);
1413 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001414}
1415
Per Forlin9782aff2011-07-01 18:55:23 +02001416static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1417 struct mmc_data *data,
1418 struct omap_hsmmc_next *next)
1419{
1420 int dma_len;
1421
1422 if (!next && data->host_cookie &&
1423 data->host_cookie != host->next_data.cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301424 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001425 " host->next_data.cookie %d\n",
1426 __func__, data->host_cookie, host->next_data.cookie);
1427 data->host_cookie = 0;
1428 }
1429
1430 /* Check if next job is already prepared */
1431 if (next ||
1432 (!next && data->host_cookie != host->next_data.cookie)) {
1433 dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1434 data->sg_len,
1435 omap_hsmmc_get_dma_dir(host, data));
1436
1437 } else {
1438 dma_len = host->next_data.dma_len;
1439 host->next_data.dma_len = 0;
1440 }
1441
1442
1443 if (dma_len == 0)
1444 return -EINVAL;
1445
1446 if (next) {
1447 next->dma_len = dma_len;
1448 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1449 } else
1450 host->dma_len = dma_len;
1451
1452 return 0;
1453}
1454
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001455/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001456 * Routine to configure and start DMA for the MMC card
1457 */
Denis Karpov70a33412009-09-22 16:44:59 -07001458static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1459 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001460{
Adrian Hunterb4175772010-05-26 14:42:06 -07001461 int dma_ch = 0, ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001462 struct mmc_data *data = req->data;
1463
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001464 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001465 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001466 struct scatterlist *sgl;
1467
1468 sgl = data->sg + i;
1469 if (sgl->length % data->blksz)
1470 return -EINVAL;
1471 }
1472 if ((data->blksz % 4) != 0)
1473 /* REVISIT: The MMC buffer increments only when MSB is written.
1474 * Return error for blksz which is non multiple of four.
1475 */
1476 return -EINVAL;
1477
Adrian Hunterb4175772010-05-26 14:42:06 -07001478 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001479
Denis Karpov70a33412009-09-22 16:44:59 -07001480 ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1481 "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001482 if (ret != 0) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001483 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001484 "%s: omap_request_dma() failed with %d\n",
1485 mmc_hostname(host->mmc), ret);
1486 return ret;
1487 }
Per Forlin9782aff2011-07-01 18:55:23 +02001488 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL);
1489 if (ret)
1490 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001491
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001492 host->dma_ch = dma_ch;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001493 host->dma_sg_idx = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001494
Denis Karpov70a33412009-09-22 16:44:59 -07001495 omap_hsmmc_config_dma_params(host, data, data->sg);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001496
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001497 return 0;
1498}
1499
Denis Karpov70a33412009-09-22 16:44:59 -07001500static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001501 unsigned int timeout_ns,
1502 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001503{
1504 unsigned int timeout, cycle_ns;
1505 uint32_t reg, clkd, dto = 0;
1506
1507 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1508 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1509 if (clkd == 0)
1510 clkd = 1;
1511
1512 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001513 timeout = timeout_ns / cycle_ns;
1514 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001515 if (timeout) {
1516 while ((timeout & 0x80000000) == 0) {
1517 dto += 1;
1518 timeout <<= 1;
1519 }
1520 dto = 31 - dto;
1521 timeout <<= 1;
1522 if (timeout && dto)
1523 dto += 1;
1524 if (dto >= 13)
1525 dto -= 13;
1526 else
1527 dto = 0;
1528 if (dto > 14)
1529 dto = 14;
1530 }
1531
1532 reg &= ~DTO_MASK;
1533 reg |= dto << DTO_SHIFT;
1534 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1535}
1536
1537/*
1538 * Configure block length for MMC/SD cards and initiate the transfer.
1539 */
1540static int
Denis Karpov70a33412009-09-22 16:44:59 -07001541omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001542{
1543 int ret;
1544 host->data = req->data;
1545
1546 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001547 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001548 /*
1549 * Set an arbitrary 100ms data timeout for commands with
1550 * busy signal.
1551 */
1552 if (req->cmd->flags & MMC_RSP_BUSY)
1553 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001554 return 0;
1555 }
1556
1557 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1558 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001559 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001560
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001561 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001562 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001563 if (ret != 0) {
1564 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1565 return ret;
1566 }
1567 }
1568 return 0;
1569}
1570
Per Forlin9782aff2011-07-01 18:55:23 +02001571static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1572 int err)
1573{
1574 struct omap_hsmmc_host *host = mmc_priv(mmc);
1575 struct mmc_data *data = mrq->data;
1576
1577 if (host->use_dma) {
Per Forlin053bf342011-11-07 21:55:11 +05301578 if (data->host_cookie)
1579 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
1580 data->sg_len,
1581 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001582 data->host_cookie = 0;
1583 }
1584}
1585
1586static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1587 bool is_first_req)
1588{
1589 struct omap_hsmmc_host *host = mmc_priv(mmc);
1590
1591 if (mrq->data->host_cookie) {
1592 mrq->data->host_cookie = 0;
1593 return ;
1594 }
1595
1596 if (host->use_dma)
1597 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
1598 &host->next_data))
1599 mrq->data->host_cookie = 0;
1600}
1601
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001602/*
1603 * Request function. for read/write operation
1604 */
Denis Karpov70a33412009-09-22 16:44:59 -07001605static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001606{
Denis Karpov70a33412009-09-22 16:44:59 -07001607 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001608 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001609
Adrian Hunterb4175772010-05-26 14:42:06 -07001610 BUG_ON(host->req_in_progress);
1611 BUG_ON(host->dma_ch != -1);
1612 if (host->protect_card) {
1613 if (host->reqs_blocked < 3) {
1614 /*
1615 * Ensure the controller is left in a consistent
1616 * state by resetting the command and data state
1617 * machines.
1618 */
1619 omap_hsmmc_reset_controller_fsm(host, SRD);
1620 omap_hsmmc_reset_controller_fsm(host, SRC);
1621 host->reqs_blocked += 1;
1622 }
1623 req->cmd->error = -EBADF;
1624 if (req->data)
1625 req->data->error = -EBADF;
1626 req->cmd->retries = 0;
1627 mmc_request_done(mmc, req);
1628 return;
1629 } else if (host->reqs_blocked)
1630 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001631 WARN_ON(host->mrq != NULL);
1632 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001633 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001634 if (err) {
1635 req->cmd->error = err;
1636 if (req->data)
1637 req->data->error = err;
1638 host->mrq = NULL;
1639 mmc_request_done(mmc, req);
1640 return;
1641 }
1642
Denis Karpov70a33412009-09-22 16:44:59 -07001643 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001644}
1645
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001646/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001647static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001648{
Denis Karpov70a33412009-09-22 16:44:59 -07001649 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001650 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001651
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301652 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001653
Adrian Huntera3621462009-09-22 16:44:42 -07001654 if (ios->power_mode != host->power_mode) {
1655 switch (ios->power_mode) {
1656 case MMC_POWER_OFF:
1657 mmc_slot(host).set_power(host->dev, host->slot_id,
1658 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001659 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001660 break;
1661 case MMC_POWER_UP:
1662 mmc_slot(host).set_power(host->dev, host->slot_id,
1663 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001664 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001665 break;
1666 case MMC_POWER_ON:
1667 do_send_init_stream = 1;
1668 break;
1669 }
1670 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001671 }
1672
Denis Karpovdd498ef2009-09-22 16:44:49 -07001673 /* FIXME: set registers based only on changes to ios */
1674
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001675 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001676
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301677 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001678 /* Only MMC1 can interface at 3V without some flavor
1679 * of external transceiver; but they all handle 1.8V.
1680 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001681 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1682 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1683 /*
1684 * The mmc_select_voltage fn of the core does
1685 * not seem to set the power_mode to
1686 * MMC_POWER_UP upon recalculating the voltage.
1687 * vdd 1.8v.
1688 */
Denis Karpov70a33412009-09-22 16:44:59 -07001689 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1690 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001691 "Switch operation failed\n");
1692 }
1693 }
1694
Andy Shevchenko5934df22011-05-06 12:14:06 +03001695 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001696
Adrian Huntera3621462009-09-22 16:44:42 -07001697 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001698 send_init_stream(host);
1699
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001700 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001701
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301702 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001703}
1704
1705static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1706{
Denis Karpov70a33412009-09-22 16:44:59 -07001707 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001708
Denis Karpov191d1f12009-09-22 16:44:55 -07001709 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001710 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001711 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001712}
1713
1714static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1715{
Denis Karpov70a33412009-09-22 16:44:59 -07001716 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001717
Denis Karpov191d1f12009-09-22 16:44:55 -07001718 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001719 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001720 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001721}
1722
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001723static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1724{
1725 struct omap_hsmmc_host *host = mmc_priv(mmc);
1726
1727 if (mmc_slot(host).init_card)
1728 mmc_slot(host).init_card(card);
1729}
1730
Denis Karpov70a33412009-09-22 16:44:59 -07001731static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001732{
1733 u32 hctl, capa, value;
1734
1735 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301736 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001737 hctl = SDVS30;
1738 capa = VS30 | VS18;
1739 } else {
1740 hctl = SDVS18;
1741 capa = VS18;
1742 }
1743
1744 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1745 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1746
1747 value = OMAP_HSMMC_READ(host->base, CAPA);
1748 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1749
1750 /* Set the controller to AUTO IDLE mode */
1751 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1752 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1753
1754 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001755 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001756}
1757
Denis Karpov70a33412009-09-22 16:44:59 -07001758static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001759{
Denis Karpov70a33412009-09-22 16:44:59 -07001760 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001761
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301762 pm_runtime_get_sync(host->dev);
1763
Denis Karpovdd498ef2009-09-22 16:44:49 -07001764 return 0;
1765}
1766
Denis Karpov70a33412009-09-22 16:44:59 -07001767static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001768{
Denis Karpov70a33412009-09-22 16:44:59 -07001769 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001770
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301771 pm_runtime_mark_last_busy(host->dev);
1772 pm_runtime_put_autosuspend(host->dev);
1773
Denis Karpovdd498ef2009-09-22 16:44:49 -07001774 return 0;
1775}
1776
Denis Karpov70a33412009-09-22 16:44:59 -07001777static const struct mmc_host_ops omap_hsmmc_ops = {
1778 .enable = omap_hsmmc_enable_fclk,
1779 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001780 .post_req = omap_hsmmc_post_req,
1781 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001782 .request = omap_hsmmc_request,
1783 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001784 .get_cd = omap_hsmmc_get_cd,
1785 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001786 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001787 /* NYET -- enable_sdio_irq */
1788};
1789
Denis Karpovd900f712009-09-22 16:44:38 -07001790#ifdef CONFIG_DEBUG_FS
1791
Denis Karpov70a33412009-09-22 16:44:59 -07001792static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001793{
1794 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001795 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001796 int context_loss = 0;
1797
Denis Karpov70a33412009-09-22 16:44:59 -07001798 if (host->pdata->get_context_loss_count)
1799 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001800
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001801 seq_printf(s, "mmc%d:\n"
1802 " enabled:\t%d\n"
Denis Karpovdd498ef2009-09-22 16:44:49 -07001803 " dpm_state:\t%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001804 " nesting_cnt:\t%d\n"
Denis Karpov11dd62a2009-09-22 16:44:43 -07001805 " ctx_loss:\t%d:%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001806 "\nregs:\n",
Denis Karpovdd498ef2009-09-22 16:44:49 -07001807 mmc->index, mmc->enabled ? 1 : 0,
1808 host->dpm_state, mmc->nesting_cnt,
Denis Karpov11dd62a2009-09-22 16:44:43 -07001809 host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001810
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301811 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001812 seq_printf(s, "host suspended, can't read registers\n");
1813 return 0;
1814 }
1815
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301816 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001817
1818 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1819 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1820 seq_printf(s, "CON:\t\t0x%08x\n",
1821 OMAP_HSMMC_READ(host->base, CON));
1822 seq_printf(s, "HCTL:\t\t0x%08x\n",
1823 OMAP_HSMMC_READ(host->base, HCTL));
1824 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1825 OMAP_HSMMC_READ(host->base, SYSCTL));
1826 seq_printf(s, "IE:\t\t0x%08x\n",
1827 OMAP_HSMMC_READ(host->base, IE));
1828 seq_printf(s, "ISE:\t\t0x%08x\n",
1829 OMAP_HSMMC_READ(host->base, ISE));
1830 seq_printf(s, "CAPA:\t\t0x%08x\n",
1831 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001832
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301833 pm_runtime_mark_last_busy(host->dev);
1834 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001835
Denis Karpovd900f712009-09-22 16:44:38 -07001836 return 0;
1837}
1838
Denis Karpov70a33412009-09-22 16:44:59 -07001839static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001840{
Denis Karpov70a33412009-09-22 16:44:59 -07001841 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001842}
1843
1844static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001845 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001846 .read = seq_read,
1847 .llseek = seq_lseek,
1848 .release = single_release,
1849};
1850
Denis Karpov70a33412009-09-22 16:44:59 -07001851static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001852{
1853 if (mmc->debugfs_root)
1854 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1855 mmc, &mmc_regs_fops);
1856}
1857
1858#else
1859
Denis Karpov70a33412009-09-22 16:44:59 -07001860static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001861{
1862}
1863
1864#endif
1865
Denis Karpov70a33412009-09-22 16:44:59 -07001866static int __init omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001867{
1868 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1869 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001870 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001871 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001872 int ret, irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001873
1874 if (pdata == NULL) {
1875 dev_err(&pdev->dev, "Platform Data is missing\n");
1876 return -ENXIO;
1877 }
1878
1879 if (pdata->nr_slots == 0) {
1880 dev_err(&pdev->dev, "No Slots\n");
1881 return -ENXIO;
1882 }
1883
1884 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1885 irq = platform_get_irq(pdev, 0);
1886 if (res == NULL || irq < 0)
1887 return -ENXIO;
1888
kishore kadiyala91a0b082010-10-01 16:35:28 -07001889 res->start += pdata->reg_offset;
1890 res->end += pdata->reg_offset;
Chris Ball984b2032011-03-22 16:34:42 -07001891 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001892 if (res == NULL)
1893 return -EBUSY;
1894
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001895 ret = omap_hsmmc_gpio_init(pdata);
1896 if (ret)
1897 goto err;
1898
Denis Karpov70a33412009-09-22 16:44:59 -07001899 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001900 if (!mmc) {
1901 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001902 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001903 }
1904
1905 host = mmc_priv(mmc);
1906 host->mmc = mmc;
1907 host->pdata = pdata;
1908 host->dev = &pdev->dev;
1909 host->use_dma = 1;
1910 host->dev->dma_mask = &pdata->dma_mask;
1911 host->dma_ch = -1;
1912 host->irq = irq;
1913 host->id = pdev->id;
1914 host->slot_id = 0;
1915 host->mapbase = res->start;
1916 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001917 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001918 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001919
1920 platform_set_drvdata(pdev, host);
Denis Karpov70a33412009-09-22 16:44:59 -07001921 INIT_WORK(&host->mmc_carddetect_work, omap_hsmmc_detect);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001922
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301923 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001924
Adrian Huntere0eb2422010-02-15 10:03:34 -08001925 /*
1926 * If regulator_disable can only put vcc_aux to sleep then there is
1927 * no off state.
1928 */
1929 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1930 mmc_slot(host).no_off = 1;
1931
Andy Shevchenko6b206ef2011-07-13 11:16:29 -04001932 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1933 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001934
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001935 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001936
Russell King6f7607c2009-01-28 10:22:50 +00001937 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001938 if (IS_ERR(host->fclk)) {
1939 ret = PTR_ERR(host->fclk);
1940 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001941 goto err1;
1942 }
1943
Denis Karpov70a33412009-09-22 16:44:59 -07001944 omap_hsmmc_context_save(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001945
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001946 mmc->caps |= MMC_CAP_DISABLE;
Paul Walmsley9b682562011-10-06 14:50:35 -06001947 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1948 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1949 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1950 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001951
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301952 pm_runtime_enable(host->dev);
1953 pm_runtime_get_sync(host->dev);
1954 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1955 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001956
Adrian Hunter2bec0892009-09-22 16:45:02 -07001957 if (cpu_is_omap2430()) {
1958 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1959 /*
1960 * MMC can still work without debounce clock.
1961 */
1962 if (IS_ERR(host->dbclk))
1963 dev_warn(mmc_dev(host->mmc),
1964 "Failed to get debounce clock\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001965 else
Adrian Hunter2bec0892009-09-22 16:45:02 -07001966 host->got_dbclk = 1;
1967
1968 if (host->got_dbclk)
1969 if (clk_enable(host->dbclk) != 0)
1970 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
1971 " clk failed\n");
1972 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001973
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001974 /* Since we do only SG emulation, we can have as many segs
1975 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001976 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001977
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001978 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1979 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1980 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1981 mmc->max_seg_size = mmc->max_req_size;
1982
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001983 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001984 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001985
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001986 mmc->caps |= mmc_slot(host).caps;
1987 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001988 mmc->caps |= MMC_CAP_4_BIT_DATA;
1989
Denis Karpov191d1f12009-09-22 16:44:55 -07001990 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001991 mmc->caps |= MMC_CAP_NONREMOVABLE;
1992
Denis Karpov70a33412009-09-22 16:44:59 -07001993 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001994
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001995 /* Select DMA lines */
1996 switch (host->id) {
1997 case OMAP_MMC1_DEVID:
1998 host->dma_line_tx = OMAP24XX_DMA_MMC1_TX;
1999 host->dma_line_rx = OMAP24XX_DMA_MMC1_RX;
2000 break;
2001 case OMAP_MMC2_DEVID:
2002 host->dma_line_tx = OMAP24XX_DMA_MMC2_TX;
2003 host->dma_line_rx = OMAP24XX_DMA_MMC2_RX;
2004 break;
2005 case OMAP_MMC3_DEVID:
2006 host->dma_line_tx = OMAP34XX_DMA_MMC3_TX;
2007 host->dma_line_rx = OMAP34XX_DMA_MMC3_RX;
2008 break;
kishore kadiyala82cf8182009-09-22 16:45:25 -07002009 case OMAP_MMC4_DEVID:
2010 host->dma_line_tx = OMAP44XX_DMA_MMC4_TX;
2011 host->dma_line_rx = OMAP44XX_DMA_MMC4_RX;
2012 break;
2013 case OMAP_MMC5_DEVID:
2014 host->dma_line_tx = OMAP44XX_DMA_MMC5_TX;
2015 host->dma_line_rx = OMAP44XX_DMA_MMC5_RX;
2016 break;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00002017 default:
2018 dev_err(mmc_dev(host->mmc), "Invalid MMC id\n");
2019 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002020 }
2021
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002022 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08002023 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024 mmc_hostname(mmc), host);
2025 if (ret) {
2026 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
2027 goto err_irq;
2028 }
2029
2030 if (pdata->init != NULL) {
2031 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07002032 dev_dbg(mmc_dev(host->mmc),
2033 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002034 goto err_irq_cd_init;
2035 }
2036 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002037
Adrian Hunterb702b102010-02-15 10:03:35 -08002038 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002039 ret = omap_hsmmc_reg_get(host);
2040 if (ret)
2041 goto err_reg;
2042 host->use_reg = 1;
2043 }
2044
David Brownellb583f262009-05-28 14:04:03 -07002045 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002046
2047 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02002048 if ((mmc_slot(host).card_detect_irq)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002049 ret = request_irq(mmc_slot(host).card_detect_irq,
Denis Karpov70a33412009-09-22 16:44:59 -07002050 omap_hsmmc_cd_handler,
Yong Zhangd9618e92011-09-22 16:59:04 +08002051 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002052 mmc_hostname(mmc), host);
2053 if (ret) {
2054 dev_dbg(mmc_dev(host->mmc),
2055 "Unable to grab MMC CD IRQ\n");
2056 goto err_irq_cd;
2057 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002058 pdata->suspend = omap_hsmmc_suspend_cdirq;
2059 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002060 }
2061
Adrian Hunterb4175772010-05-26 14:42:06 -07002062 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002063
Adrian Hunterb62f6222009-09-22 16:45:01 -07002064 omap_hsmmc_protect_card(host);
2065
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002066 mmc_add_host(mmc);
2067
Denis Karpov191d1f12009-09-22 16:44:55 -07002068 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002069 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2070 if (ret < 0)
2071 goto err_slot_name;
2072 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002073 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002074 ret = device_create_file(&mmc->class_dev,
2075 &dev_attr_cover_switch);
2076 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002077 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002078 }
2079
Denis Karpov70a33412009-09-22 16:44:59 -07002080 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302081 pm_runtime_mark_last_busy(host->dev);
2082 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002083
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002084 return 0;
2085
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002086err_slot_name:
2087 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002088 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002089err_irq_cd:
2090 if (host->use_reg)
2091 omap_hsmmc_reg_put(host);
2092err_reg:
2093 if (host->pdata->cleanup)
2094 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002095err_irq_cd_init:
2096 free_irq(host->irq, host);
2097err_irq:
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302098 pm_runtime_mark_last_busy(host->dev);
2099 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002100 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002101 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002102 clk_disable(host->dbclk);
2103 clk_put(host->dbclk);
2104 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002105err1:
2106 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002107 platform_set_drvdata(pdev, NULL);
2108 mmc_free_host(mmc);
2109err_alloc:
2110 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002111err:
Chris Ball984b2032011-03-22 16:34:42 -07002112 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002113 return ret;
2114}
2115
Denis Karpov70a33412009-09-22 16:44:59 -07002116static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002117{
Denis Karpov70a33412009-09-22 16:44:59 -07002118 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002119 struct resource *res;
2120
2121 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302122 pm_runtime_get_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002123 mmc_remove_host(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002124 if (host->use_reg)
2125 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002126 if (host->pdata->cleanup)
2127 host->pdata->cleanup(&pdev->dev);
2128 free_irq(host->irq, host);
2129 if (mmc_slot(host).card_detect_irq)
2130 free_irq(mmc_slot(host).card_detect_irq, host);
Tejun Heo0d9ee5b2010-12-24 16:00:17 +01002131 flush_work_sync(&host->mmc_carddetect_work);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002132
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302133 pm_runtime_put_sync(host->dev);
2134 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002135 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002136 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002137 clk_disable(host->dbclk);
2138 clk_put(host->dbclk);
2139 }
2140
2141 mmc_free_host(host->mmc);
2142 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002143 omap_hsmmc_gpio_free(pdev->dev.platform_data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002144 }
2145
2146 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2147 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002148 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002149 platform_set_drvdata(pdev, NULL);
2150
2151 return 0;
2152}
2153
2154#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002155static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002156{
2157 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002158 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002159 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002160
2161 if (host && host->suspended)
2162 return 0;
2163
2164 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302165 pm_runtime_get_sync(host->dev);
Adrian Huntera6b22402009-09-22 16:44:45 -07002166 host->suspended = 1;
2167 if (host->pdata->suspend) {
2168 ret = host->pdata->suspend(&pdev->dev,
2169 host->slot_id);
2170 if (ret) {
2171 dev_dbg(mmc_dev(host->mmc),
2172 "Unable to handle MMC board"
2173 " level suspend\n");
2174 host->suspended = 0;
2175 return ret;
2176 }
2177 }
2178 cancel_work_sync(&host->mmc_carddetect_work);
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002179 ret = mmc_suspend_host(host->mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302180
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002181 if (ret == 0) {
Adrian Hunterb4175772010-05-26 14:42:06 -07002182 omap_hsmmc_disable_irq(host);
Jarkko Lavinen0683af42009-03-12 15:30:58 +02002183 OMAP_HSMMC_WRITE(host->base, HCTL,
Denis Karpov191d1f12009-09-22 16:44:55 -07002184 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002185 if (host->got_dbclk)
2186 clk_disable(host->dbclk);
Adrian Huntera6b22402009-09-22 16:44:45 -07002187 } else {
2188 host->suspended = 0;
2189 if (host->pdata->resume) {
2190 ret = host->pdata->resume(&pdev->dev,
2191 host->slot_id);
2192 if (ret)
2193 dev_dbg(mmc_dev(host->mmc),
2194 "Unmask interrupt failed\n");
2195 }
Adrian Huntera6b22402009-09-22 16:44:45 -07002196 }
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302197 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002198 }
2199 return ret;
2200}
2201
2202/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002203static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002204{
2205 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002206 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002207 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002208
2209 if (host && !host->suspended)
2210 return 0;
2211
2212 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302213 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002214
Adrian Hunter2bec0892009-09-22 16:45:02 -07002215 if (host->got_dbclk)
2216 clk_enable(host->dbclk);
2217
Denis Karpov70a33412009-09-22 16:44:59 -07002218 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002219
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002220 if (host->pdata->resume) {
2221 ret = host->pdata->resume(&pdev->dev, host->slot_id);
2222 if (ret)
2223 dev_dbg(mmc_dev(host->mmc),
2224 "Unmask interrupt failed\n");
2225 }
2226
Adrian Hunterb62f6222009-09-22 16:45:01 -07002227 omap_hsmmc_protect_card(host);
2228
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002229 /* Notify the core to resume the host */
2230 ret = mmc_resume_host(host->mmc);
2231 if (ret == 0)
2232 host->suspended = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302233
2234 pm_runtime_mark_last_busy(host->dev);
2235 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002236 }
2237
2238 return ret;
2239
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002240}
2241
2242#else
Denis Karpov70a33412009-09-22 16:44:59 -07002243#define omap_hsmmc_suspend NULL
2244#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002245#endif
2246
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302247static int omap_hsmmc_runtime_suspend(struct device *dev)
2248{
2249 struct omap_hsmmc_host *host;
2250
2251 host = platform_get_drvdata(to_platform_device(dev));
2252 omap_hsmmc_context_save(host);
2253 dev_dbg(mmc_dev(host->mmc), "disabled\n");
2254
2255 return 0;
2256}
2257
2258static int omap_hsmmc_runtime_resume(struct device *dev)
2259{
2260 struct omap_hsmmc_host *host;
2261
2262 host = platform_get_drvdata(to_platform_device(dev));
2263 omap_hsmmc_context_restore(host);
2264 dev_dbg(mmc_dev(host->mmc), "enabled\n");
2265
2266 return 0;
2267}
2268
Kevin Hilmana791daa2010-05-26 14:42:07 -07002269static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002270 .suspend = omap_hsmmc_suspend,
2271 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302272 .runtime_suspend = omap_hsmmc_runtime_suspend,
2273 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002274};
2275
2276static struct platform_driver omap_hsmmc_driver = {
2277 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002278 .driver = {
2279 .name = DRIVER_NAME,
2280 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002281 .pm = &omap_hsmmc_dev_pm_ops,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002282 },
2283};
2284
Denis Karpov70a33412009-09-22 16:44:59 -07002285static int __init omap_hsmmc_init(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002286{
2287 /* Register the MMC driver */
Roger Quadros87532982009-10-26 16:49:38 -07002288 return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002289}
2290
Denis Karpov70a33412009-09-22 16:44:59 -07002291static void __exit omap_hsmmc_cleanup(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002292{
2293 /* Unregister MMC driver */
Denis Karpov70a33412009-09-22 16:44:59 -07002294 platform_driver_unregister(&omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002295}
2296
Denis Karpov70a33412009-09-22 16:44:59 -07002297module_init(omap_hsmmc_init);
2298module_exit(omap_hsmmc_cleanup);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002299
2300MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2301MODULE_LICENSE("GPL");
2302MODULE_ALIAS("platform:" DRIVER_NAME);
2303MODULE_AUTHOR("Texas Instruments Inc");