blob: a6f19f17f0d80242ff366af4a5ba7202044f02d9 [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f42011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
22#include <linux/seq_file.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010023#include <linux/interrupt.h>
24#include <linux/delay.h>
25#include <linux/dma-mapping.h>
26#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010027#include <linux/timer.h>
28#include <linux/clk.h>
29#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070030#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070031#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010032#include <linux/io.h>
33#include <linux/semaphore.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080034#include <linux/gpio.h>
35#include <linux/regulator/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053036#include <linux/pm_runtime.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070037#include <plat/dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010038#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070039#include <plat/board.h>
40#include <plat/mmc.h>
41#include <plat/cpu.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010042
43/* OMAP HSMMC Host Controller Registers */
44#define OMAP_HSMMC_SYSCONFIG 0x0010
Denis Karpov11dd62a2009-09-22 16:44:43 -070045#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010046#define OMAP_HSMMC_CON 0x002C
47#define OMAP_HSMMC_BLK 0x0104
48#define OMAP_HSMMC_ARG 0x0108
49#define OMAP_HSMMC_CMD 0x010C
50#define OMAP_HSMMC_RSP10 0x0110
51#define OMAP_HSMMC_RSP32 0x0114
52#define OMAP_HSMMC_RSP54 0x0118
53#define OMAP_HSMMC_RSP76 0x011C
54#define OMAP_HSMMC_DATA 0x0120
55#define OMAP_HSMMC_HCTL 0x0128
56#define OMAP_HSMMC_SYSCTL 0x012C
57#define OMAP_HSMMC_STAT 0x0130
58#define OMAP_HSMMC_IE 0x0134
59#define OMAP_HSMMC_ISE 0x0138
60#define OMAP_HSMMC_CAPA 0x0140
61
62#define VS18 (1 << 26)
63#define VS30 (1 << 25)
64#define SDVS18 (0x5 << 9)
65#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080066#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010067#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010068#define SDVSCLR 0xFFFFF1FF
69#define SDVSDET 0x00000400
70#define AUTOIDLE 0x1
71#define SDBP (1 << 8)
72#define DTO 0xe
73#define ICE 0x1
74#define ICS 0x2
75#define CEN (1 << 2)
76#define CLKD_MASK 0x0000FFC0
77#define CLKD_SHIFT 6
78#define DTO_MASK 0x000F0000
79#define DTO_SHIFT 16
80#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070081#define BWR_ENABLE (1 << 4)
82#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070083#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010084#define INIT_STREAM (1 << 1)
85#define DP_SELECT (1 << 21)
86#define DDIR (1 << 4)
87#define DMA_EN 0x1
88#define MSBS (1 << 5)
89#define BCE (1 << 1)
90#define FOUR_BIT (1 << 1)
Jarkko Lavinen73153012008-11-21 16:49:54 +020091#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010092#define CC 0x1
93#define TC 0x02
94#define OD 0x1
95#define ERR (1 << 15)
96#define CMD_TIMEOUT (1 << 16)
97#define DATA_TIMEOUT (1 << 20)
98#define CMD_CRC (1 << 17)
99#define DATA_CRC (1 << 21)
100#define CARD_ERR (1 << 28)
101#define STAT_CLEAR 0xFFFFFFFF
102#define INIT_STREAM_CMD 0x00000000
103#define DUAL_VOLT_OCR_BIT 7
104#define SRC (1 << 25)
105#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700106#define SOFTRESET (1 << 1)
107#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100108
109/*
110 * FIXME: Most likely all the data using these _DEVID defines should come
111 * from the platform_data, or implemented in controller and slot specific
112 * functions.
113 */
114#define OMAP_MMC1_DEVID 0
115#define OMAP_MMC2_DEVID 1
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000116#define OMAP_MMC3_DEVID 2
kishore kadiyala82cf8182009-09-22 16:45:25 -0700117#define OMAP_MMC4_DEVID 3
118#define OMAP_MMC5_DEVID 4
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100119
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530120#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100121#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400122#define OMAP_MMC_MIN_CLOCK 400000
123#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530124#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100125
126/*
127 * One controller can have multiple slots, like on some omap boards using
128 * omap.c controller driver. Luckily this is not currently done on any known
129 * omap_hsmmc.c device.
130 */
131#define mmc_slot(host) (host->pdata->slots[host->slot_id])
132
133/*
134 * MMC Host controller read/write API's
135 */
136#define OMAP_HSMMC_READ(base, reg) \
137 __raw_readl((base) + OMAP_HSMMC_##reg)
138
139#define OMAP_HSMMC_WRITE(base, reg, val) \
140 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
141
Per Forlin9782aff2011-07-01 18:55:23 +0200142struct omap_hsmmc_next {
143 unsigned int dma_len;
144 s32 cookie;
145};
146
Denis Karpov70a33412009-09-22 16:44:59 -0700147struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100148 struct device *dev;
149 struct mmc_host *mmc;
150 struct mmc_request *mrq;
151 struct mmc_command *cmd;
152 struct mmc_data *data;
153 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100154 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800155 /*
156 * vcc == configured supply
157 * vcc_aux == optional
158 * - MMC1, supply for DAT4..DAT7
159 * - MMC2/MMC2, external level shifter voltage supply, for
160 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
161 */
162 struct regulator *vcc;
163 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100164 void __iomem *base;
165 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700166 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100167 unsigned int id;
168 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200169 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100170 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700171 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100172 u32 *buffer;
173 u32 bytesleft;
174 int suspended;
175 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100176 int use_dma, dma_ch;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +0000177 int dma_line_tx, dma_line_rx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100178 int slot_id;
Adrian Hunter2bec0892009-09-22 16:45:02 -0700179 int got_dbclk;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200180 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700181 int context_loss;
Denis Karpovdd498ef2009-09-22 16:44:49 -0700182 int dpm_state;
Adrian Hunter623821f2009-09-22 16:44:51 -0700183 int vdd;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700184 int protect_card;
185 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800186 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700187 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200188 struct omap_hsmmc_next next_data;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700189
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100190 struct omap_mmc_platform_data *pdata;
191};
192
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800193static int omap_hsmmc_card_detect(struct device *dev, int slot)
194{
195 struct omap_mmc_platform_data *mmc = dev->platform_data;
196
197 /* NOTE: assumes card detect signal is active-low */
198 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
199}
200
201static int omap_hsmmc_get_wp(struct device *dev, int slot)
202{
203 struct omap_mmc_platform_data *mmc = dev->platform_data;
204
205 /* NOTE: assumes write protect signal is active-high */
206 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
207}
208
209static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
210{
211 struct omap_mmc_platform_data *mmc = dev->platform_data;
212
213 /* NOTE: assumes card detect signal is active-low */
214 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
215}
216
217#ifdef CONFIG_PM
218
219static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
220{
221 struct omap_mmc_platform_data *mmc = dev->platform_data;
222
223 disable_irq(mmc->slots[0].card_detect_irq);
224 return 0;
225}
226
227static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
228{
229 struct omap_mmc_platform_data *mmc = dev->platform_data;
230
231 enable_irq(mmc->slots[0].card_detect_irq);
232 return 0;
233}
234
235#else
236
237#define omap_hsmmc_suspend_cdirq NULL
238#define omap_hsmmc_resume_cdirq NULL
239
240#endif
241
Adrian Hunterb702b102010-02-15 10:03:35 -0800242#ifdef CONFIG_REGULATOR
243
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800244static int omap_hsmmc_1_set_power(struct device *dev, int slot, int power_on,
245 int vdd)
246{
247 struct omap_hsmmc_host *host =
248 platform_get_drvdata(to_platform_device(dev));
249 int ret;
250
251 if (mmc_slot(host).before_set_reg)
252 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
253
254 if (power_on)
Linus Walleij99fc5132010-09-29 01:08:27 -0400255 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800256 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400257 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800258
259 if (mmc_slot(host).after_set_reg)
260 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
261
262 return ret;
263}
264
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500265static int omap_hsmmc_235_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800266 int vdd)
267{
268 struct omap_hsmmc_host *host =
269 platform_get_drvdata(to_platform_device(dev));
270 int ret = 0;
271
272 /*
273 * If we don't see a Vcc regulator, assume it's a fixed
274 * voltage always-on regulator.
275 */
276 if (!host->vcc)
277 return 0;
278
279 if (mmc_slot(host).before_set_reg)
280 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
281
282 /*
283 * Assume Vcc regulator is used only to power the card ... OMAP
284 * VDDS is used to power the pins, optionally with a transceiver to
285 * support cards using voltages other than VDDS (1.8V nominal). When a
286 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
287 *
288 * In some cases this regulator won't support enable/disable;
289 * e.g. it's a fixed rail for a WLAN chip.
290 *
291 * In other cases vcc_aux switches interface power. Example, for
292 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
293 * chips/cards need an interface voltage rail too.
294 */
295 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400296 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800297 /* Enable interface voltage rail, if needed */
298 if (ret == 0 && host->vcc_aux) {
299 ret = regulator_enable(host->vcc_aux);
300 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400301 ret = mmc_regulator_set_ocr(host->mmc,
302 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800303 }
304 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400305 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800306 if (host->vcc_aux)
307 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400308 if (!ret) {
309 /* Then proceed to shut down the local regulator */
310 ret = mmc_regulator_set_ocr(host->mmc,
311 host->vcc, 0);
312 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800313 }
314
315 if (mmc_slot(host).after_set_reg)
316 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
317
318 return ret;
319}
320
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500321static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on,
322 int vdd)
323{
324 return 0;
325}
326
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800327static int omap_hsmmc_1_set_sleep(struct device *dev, int slot, int sleep,
328 int vdd, int cardsleep)
329{
330 struct omap_hsmmc_host *host =
331 platform_get_drvdata(to_platform_device(dev));
332 int mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
333
334 return regulator_set_mode(host->vcc, mode);
335}
336
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500337static int omap_hsmmc_235_set_sleep(struct device *dev, int slot, int sleep,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800338 int vdd, int cardsleep)
339{
340 struct omap_hsmmc_host *host =
341 platform_get_drvdata(to_platform_device(dev));
342 int err, mode;
343
344 /*
345 * If we don't see a Vcc regulator, assume it's a fixed
346 * voltage always-on regulator.
347 */
348 if (!host->vcc)
349 return 0;
350
351 mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
352
353 if (!host->vcc_aux)
354 return regulator_set_mode(host->vcc, mode);
355
356 if (cardsleep) {
357 /* VCC can be turned off if card is asleep */
358 if (sleep)
Linus Walleij99fc5132010-09-29 01:08:27 -0400359 err = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800360 else
Linus Walleij99fc5132010-09-29 01:08:27 -0400361 err = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800362 } else
363 err = regulator_set_mode(host->vcc, mode);
364 if (err)
365 return err;
Adrian Huntere0eb2422010-02-15 10:03:34 -0800366
367 if (!mmc_slot(host).vcc_aux_disable_is_sleep)
368 return regulator_set_mode(host->vcc_aux, mode);
369
370 if (sleep)
371 return regulator_disable(host->vcc_aux);
372 else
373 return regulator_enable(host->vcc_aux);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800374}
375
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500376static int omap_hsmmc_4_set_sleep(struct device *dev, int slot, int sleep,
377 int vdd, int cardsleep)
378{
379 return 0;
380}
381
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800382static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
383{
384 struct regulator *reg;
385 int ret = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700386 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800387
388 switch (host->id) {
389 case OMAP_MMC1_DEVID:
390 /* On-chip level shifting via PBIAS0/PBIAS1 */
391 mmc_slot(host).set_power = omap_hsmmc_1_set_power;
392 mmc_slot(host).set_sleep = omap_hsmmc_1_set_sleep;
393 break;
394 case OMAP_MMC2_DEVID:
395 case OMAP_MMC3_DEVID:
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500396 case OMAP_MMC5_DEVID:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800397 /* Off-chip level shifting, or none */
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500398 mmc_slot(host).set_power = omap_hsmmc_235_set_power;
399 mmc_slot(host).set_sleep = omap_hsmmc_235_set_sleep;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800400 break;
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500401 case OMAP_MMC4_DEVID:
402 mmc_slot(host).set_power = omap_hsmmc_4_set_power;
403 mmc_slot(host).set_sleep = omap_hsmmc_4_set_sleep;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800404 default:
405 pr_err("MMC%d configuration not supported!\n", host->id);
406 return -EINVAL;
407 }
408
409 reg = regulator_get(host->dev, "vmmc");
410 if (IS_ERR(reg)) {
411 dev_dbg(host->dev, "vmmc regulator missing\n");
412 /*
413 * HACK: until fixed.c regulator is usable,
414 * we don't require a main regulator
415 * for MMC2 or MMC3
416 */
417 if (host->id == OMAP_MMC1_DEVID) {
418 ret = PTR_ERR(reg);
419 goto err;
420 }
421 } else {
422 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700423 ocr_value = mmc_regulator_get_ocrmask(reg);
424 if (!mmc_slot(host).ocr_mask) {
425 mmc_slot(host).ocr_mask = ocr_value;
426 } else {
427 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
428 pr_err("MMC%d ocrmask %x is not supported\n",
429 host->id, mmc_slot(host).ocr_mask);
430 mmc_slot(host).ocr_mask = 0;
431 return -EINVAL;
432 }
433 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800434
435 /* Allow an aux regulator */
436 reg = regulator_get(host->dev, "vmmc_aux");
437 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
438
Balaji T Kb1c1df72011-05-30 19:55:34 +0530439 /* For eMMC do not power off when not in sleep state */
440 if (mmc_slot(host).no_regulator_off_init)
441 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800442 /*
443 * UGLY HACK: workaround regulator framework bugs.
444 * When the bootloader leaves a supply active, it's
445 * initialized with zero usecount ... and we can't
446 * disable it without first enabling it. Until the
447 * framework is fixed, we need a workaround like this
448 * (which is safe for MMC, but not in general).
449 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300450 if (regulator_is_enabled(host->vcc) > 0 ||
451 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
452 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
453
454 mmc_slot(host).set_power(host->dev, host->slot_id,
455 1, vdd);
456 mmc_slot(host).set_power(host->dev, host->slot_id,
457 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800458 }
459 }
460
461 return 0;
462
463err:
464 mmc_slot(host).set_power = NULL;
465 mmc_slot(host).set_sleep = NULL;
466 return ret;
467}
468
469static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
470{
471 regulator_put(host->vcc);
472 regulator_put(host->vcc_aux);
473 mmc_slot(host).set_power = NULL;
474 mmc_slot(host).set_sleep = NULL;
475}
476
Adrian Hunterb702b102010-02-15 10:03:35 -0800477static inline int omap_hsmmc_have_reg(void)
478{
479 return 1;
480}
481
482#else
483
484static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
485{
486 return -EINVAL;
487}
488
489static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
490{
491}
492
493static inline int omap_hsmmc_have_reg(void)
494{
495 return 0;
496}
497
498#endif
499
500static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
501{
502 int ret;
503
504 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800505 if (pdata->slots[0].cover)
506 pdata->slots[0].get_cover_state =
507 omap_hsmmc_get_cover_state;
508 else
509 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
510 pdata->slots[0].card_detect_irq =
511 gpio_to_irq(pdata->slots[0].switch_pin);
512 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
513 if (ret)
514 return ret;
515 ret = gpio_direction_input(pdata->slots[0].switch_pin);
516 if (ret)
517 goto err_free_sp;
518 } else
519 pdata->slots[0].switch_pin = -EINVAL;
520
521 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
522 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
523 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
524 if (ret)
525 goto err_free_cd;
526 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
527 if (ret)
528 goto err_free_wp;
529 } else
530 pdata->slots[0].gpio_wp = -EINVAL;
531
532 return 0;
533
534err_free_wp:
535 gpio_free(pdata->slots[0].gpio_wp);
536err_free_cd:
537 if (gpio_is_valid(pdata->slots[0].switch_pin))
538err_free_sp:
539 gpio_free(pdata->slots[0].switch_pin);
540 return ret;
541}
542
543static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
544{
545 if (gpio_is_valid(pdata->slots[0].gpio_wp))
546 gpio_free(pdata->slots[0].gpio_wp);
547 if (gpio_is_valid(pdata->slots[0].switch_pin))
548 gpio_free(pdata->slots[0].switch_pin);
549}
550
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100551/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300552 * Start clock to the card
553 */
554static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
555{
556 OMAP_HSMMC_WRITE(host->base, SYSCTL,
557 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
558}
559
560/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100561 * Stop clock to the card
562 */
Denis Karpov70a33412009-09-22 16:44:59 -0700563static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100564{
565 OMAP_HSMMC_WRITE(host->base, SYSCTL,
566 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
567 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
568 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
569}
570
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700571static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
572 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700573{
574 unsigned int irq_mask;
575
576 if (host->use_dma)
577 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
578 else
579 irq_mask = INT_EN_MASK;
580
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700581 /* Disable timeout for erases */
582 if (cmd->opcode == MMC_ERASE)
583 irq_mask &= ~DTO_ENABLE;
584
Adrian Hunterb4175772010-05-26 14:42:06 -0700585 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
586 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
587 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
588}
589
590static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
591{
592 OMAP_HSMMC_WRITE(host->base, ISE, 0);
593 OMAP_HSMMC_WRITE(host->base, IE, 0);
594 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
595}
596
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300597/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530598static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300599{
600 u16 dsor = 0;
601
602 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530603 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300604 if (dsor > 250)
605 dsor = 250;
606 }
607
608 return dsor;
609}
610
Andy Shevchenko5934df22011-05-06 12:14:06 +0300611static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
612{
613 struct mmc_ios *ios = &host->mmc->ios;
614 unsigned long regval;
615 unsigned long timeout;
616
617 dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
618
619 omap_hsmmc_stop_clock(host);
620
621 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
622 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530623 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300624 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
625 OMAP_HSMMC_WRITE(host->base, SYSCTL,
626 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
627
628 /* Wait till the ICS bit is set */
629 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
630 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
631 && time_before(jiffies, timeout))
632 cpu_relax();
633
634 omap_hsmmc_start_clock(host);
635}
636
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400637static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
638{
639 struct mmc_ios *ios = &host->mmc->ios;
640 u32 con;
641
642 con = OMAP_HSMMC_READ(host->base, CON);
643 switch (ios->bus_width) {
644 case MMC_BUS_WIDTH_8:
645 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
646 break;
647 case MMC_BUS_WIDTH_4:
648 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
649 OMAP_HSMMC_WRITE(host->base, HCTL,
650 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
651 break;
652 case MMC_BUS_WIDTH_1:
653 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
654 OMAP_HSMMC_WRITE(host->base, HCTL,
655 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
656 break;
657 }
658}
659
660static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
661{
662 struct mmc_ios *ios = &host->mmc->ios;
663 u32 con;
664
665 con = OMAP_HSMMC_READ(host->base, CON);
666 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
667 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
668 else
669 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
670}
671
Denis Karpov11dd62a2009-09-22 16:44:43 -0700672#ifdef CONFIG_PM
673
674/*
675 * Restore the MMC host context, if it was lost as result of a
676 * power state change.
677 */
Denis Karpov70a33412009-09-22 16:44:59 -0700678static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700679{
680 struct mmc_ios *ios = &host->mmc->ios;
681 struct omap_mmc_platform_data *pdata = host->pdata;
682 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400683 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700684 unsigned long timeout;
685
686 if (pdata->get_context_loss_count) {
687 context_loss = pdata->get_context_loss_count(host->dev);
688 if (context_loss < 0)
689 return 1;
690 }
691
692 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
693 context_loss == host->context_loss ? "not " : "");
694 if (host->context_loss == context_loss)
695 return 1;
696
697 /* Wait for hardware reset */
698 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
699 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
700 && time_before(jiffies, timeout))
701 ;
702
703 /* Do software reset */
704 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
705 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
706 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
707 && time_before(jiffies, timeout))
708 ;
709
710 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
711 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
712
713 if (host->id == OMAP_MMC1_DEVID) {
714 if (host->power_mode != MMC_POWER_OFF &&
715 (1 << ios->vdd) <= MMC_VDD_23_24)
716 hctl = SDVS18;
717 else
718 hctl = SDVS30;
719 capa = VS30 | VS18;
720 } else {
721 hctl = SDVS18;
722 capa = VS18;
723 }
724
725 OMAP_HSMMC_WRITE(host->base, HCTL,
726 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
727
728 OMAP_HSMMC_WRITE(host->base, CAPA,
729 OMAP_HSMMC_READ(host->base, CAPA) | capa);
730
731 OMAP_HSMMC_WRITE(host->base, HCTL,
732 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
733
734 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
735 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
736 && time_before(jiffies, timeout))
737 ;
738
Adrian Hunterb4175772010-05-26 14:42:06 -0700739 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700740
741 /* Do not initialize card-specific things if the power is off */
742 if (host->power_mode == MMC_POWER_OFF)
743 goto out;
744
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400745 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700746
Andy Shevchenko5934df22011-05-06 12:14:06 +0300747 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700748
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400749 omap_hsmmc_set_bus_mode(host);
750
Denis Karpov11dd62a2009-09-22 16:44:43 -0700751out:
752 host->context_loss = context_loss;
753
754 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
755 return 0;
756}
757
758/*
759 * Save the MMC host context (store the number of power state changes so far).
760 */
Denis Karpov70a33412009-09-22 16:44:59 -0700761static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700762{
763 struct omap_mmc_platform_data *pdata = host->pdata;
764 int context_loss;
765
766 if (pdata->get_context_loss_count) {
767 context_loss = pdata->get_context_loss_count(host->dev);
768 if (context_loss < 0)
769 return;
770 host->context_loss = context_loss;
771 }
772}
773
774#else
775
Denis Karpov70a33412009-09-22 16:44:59 -0700776static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700777{
778 return 0;
779}
780
Denis Karpov70a33412009-09-22 16:44:59 -0700781static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700782{
783}
784
785#endif
786
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100787/*
788 * Send init stream sequence to card
789 * before sending IDLE command
790 */
Denis Karpov70a33412009-09-22 16:44:59 -0700791static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100792{
793 int reg = 0;
794 unsigned long timeout;
795
Adrian Hunterb62f6222009-09-22 16:45:01 -0700796 if (host->protect_card)
797 return;
798
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100799 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700800
801 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100802 OMAP_HSMMC_WRITE(host->base, CON,
803 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
804 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
805
806 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
807 while ((reg != CC) && time_before(jiffies, timeout))
808 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
809
810 OMAP_HSMMC_WRITE(host->base, CON,
811 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700812
813 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
814 OMAP_HSMMC_READ(host->base, STAT);
815
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100816 enable_irq(host->irq);
817}
818
819static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700820int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100821{
822 int r = 1;
823
Denis Karpov191d1f12009-09-22 16:44:55 -0700824 if (mmc_slot(host).get_cover_state)
825 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100826 return r;
827}
828
829static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700830omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100831 char *buf)
832{
833 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700834 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100835
Denis Karpov70a33412009-09-22 16:44:59 -0700836 return sprintf(buf, "%s\n",
837 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100838}
839
Denis Karpov70a33412009-09-22 16:44:59 -0700840static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100841
842static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700843omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100844 char *buf)
845{
846 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700847 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100848
Denis Karpov191d1f12009-09-22 16:44:55 -0700849 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100850}
851
Denis Karpov70a33412009-09-22 16:44:59 -0700852static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100853
854/*
855 * Configure the response type and send the cmd.
856 */
857static void
Denis Karpov70a33412009-09-22 16:44:59 -0700858omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100859 struct mmc_data *data)
860{
861 int cmdreg = 0, resptype = 0, cmdtype = 0;
862
863 dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
864 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
865 host->cmd = cmd;
866
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700867 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100868
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200869 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100870 if (cmd->flags & MMC_RSP_PRESENT) {
871 if (cmd->flags & MMC_RSP_136)
872 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200873 else if (cmd->flags & MMC_RSP_BUSY) {
874 resptype = 3;
875 host->response_busy = 1;
876 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100877 resptype = 2;
878 }
879
880 /*
881 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
882 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
883 * a val of 0x3, rest 0x0.
884 */
885 if (cmd == host->mrq->stop)
886 cmdtype = 0x3;
887
888 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
889
890 if (data) {
891 cmdreg |= DP_SELECT | MSBS | BCE;
892 if (data->flags & MMC_DATA_READ)
893 cmdreg |= DDIR;
894 else
895 cmdreg &= ~(DDIR);
896 }
897
898 if (host->use_dma)
899 cmdreg |= DMA_EN;
900
Adrian Hunterb4175772010-05-26 14:42:06 -0700901 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700902
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100903 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
904 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
905}
906
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200907static int
Denis Karpov70a33412009-09-22 16:44:59 -0700908omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200909{
910 if (data->flags & MMC_DATA_WRITE)
911 return DMA_TO_DEVICE;
912 else
913 return DMA_FROM_DEVICE;
914}
915
Adrian Hunterb4175772010-05-26 14:42:06 -0700916static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
917{
918 int dma_ch;
919
920 spin_lock(&host->irq_lock);
921 host->req_in_progress = 0;
922 dma_ch = host->dma_ch;
923 spin_unlock(&host->irq_lock);
924
925 omap_hsmmc_disable_irq(host);
926 /* Do not complete the request if DMA is still in progress */
927 if (mrq->data && host->use_dma && dma_ch != -1)
928 return;
929 host->mrq = NULL;
930 mmc_request_done(host->mmc, mrq);
931}
932
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100933/*
934 * Notify the transfer complete to MMC core
935 */
936static void
Denis Karpov70a33412009-09-22 16:44:59 -0700937omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100938{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200939 if (!data) {
940 struct mmc_request *mrq = host->mrq;
941
Adrian Hunter23050102009-09-22 16:44:57 -0700942 /* TC before CC from CMD6 - don't know why, but it happens */
943 if (host->cmd && host->cmd->opcode == 6 &&
944 host->response_busy) {
945 host->response_busy = 0;
946 return;
947 }
948
Adrian Hunterb4175772010-05-26 14:42:06 -0700949 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200950 return;
951 }
952
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100953 host->data = NULL;
954
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100955 if (!data->error)
956 data->bytes_xfered += data->blocks * (data->blksz);
957 else
958 data->bytes_xfered = 0;
959
960 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700961 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100962 return;
963 }
Denis Karpov70a33412009-09-22 16:44:59 -0700964 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100965}
966
967/*
968 * Notify the core about command completion
969 */
970static void
Denis Karpov70a33412009-09-22 16:44:59 -0700971omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100972{
973 host->cmd = NULL;
974
975 if (cmd->flags & MMC_RSP_PRESENT) {
976 if (cmd->flags & MMC_RSP_136) {
977 /* response type 2 */
978 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
979 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
980 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
981 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
982 } else {
983 /* response types 1, 1b, 3, 4, 5, 6 */
984 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
985 }
986 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700987 if ((host->data == NULL && !host->response_busy) || cmd->error)
988 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100989}
990
991/*
992 * DMA clean up for command errors
993 */
Denis Karpov70a33412009-09-22 16:44:59 -0700994static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100995{
Adrian Hunterb4175772010-05-26 14:42:06 -0700996 int dma_ch;
997
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200998 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100999
Adrian Hunterb4175772010-05-26 14:42:06 -07001000 spin_lock(&host->irq_lock);
1001 dma_ch = host->dma_ch;
1002 host->dma_ch = -1;
1003 spin_unlock(&host->irq_lock);
1004
1005 if (host->use_dma && dma_ch != -1) {
Per Forlina9120c32011-06-17 20:14:21 +02001006 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg,
1007 host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001008 omap_hsmmc_get_dma_dir(host, host->data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001009 omap_free_dma(dma_ch);
Per Forlin053bf342011-11-07 21:55:11 +05301010 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001011 }
1012 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001013}
1014
1015/*
1016 * Readable error output
1017 */
1018#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001019static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001020{
1021 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001022 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001023 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1024 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1025 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1026 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001027 };
1028 char res[256];
1029 char *buf = res;
1030 int len, i;
1031
1032 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1033 buf += len;
1034
Denis Karpov70a33412009-09-22 16:44:59 -07001035 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001036 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001037 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001038 buf += len;
1039 }
1040
1041 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
1042}
Adrian Hunter699b9582011-05-06 12:14:01 +03001043#else
1044static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1045 u32 status)
1046{
1047}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001048#endif /* CONFIG_MMC_DEBUG */
1049
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001050/*
1051 * MMC controller internal state machines reset
1052 *
1053 * Used to reset command or data internal state machines, using respectively
1054 * SRC or SRD bit of SYSCTL register
1055 * Can be called from interrupt context
1056 */
Denis Karpov70a33412009-09-22 16:44:59 -07001057static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1058 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001059{
1060 unsigned long i = 0;
1061 unsigned long limit = (loops_per_jiffy *
1062 msecs_to_jiffies(MMC_TIMEOUT_MS));
1063
1064 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1065 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1066
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001067 /*
1068 * OMAP4 ES2 and greater has an updated reset logic.
1069 * Monitor a 0->1 transition first
1070 */
1071 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001072 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001073 && (i++ < limit))
1074 cpu_relax();
1075 }
1076 i = 0;
1077
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001078 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1079 (i++ < limit))
1080 cpu_relax();
1081
1082 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1083 dev_err(mmc_dev(host->mmc),
1084 "Timeout waiting on controller reset in %s\n",
1085 __func__);
1086}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001087
Adrian Hunterb4175772010-05-26 14:42:06 -07001088static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001089{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001090 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001091 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001092
Adrian Hunterb4175772010-05-26 14:42:06 -07001093 if (!host->req_in_progress) {
1094 do {
1095 OMAP_HSMMC_WRITE(host->base, STAT, status);
1096 /* Flush posted write */
1097 status = OMAP_HSMMC_READ(host->base, STAT);
1098 } while (status & INT_EN_MASK);
1099 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001100 }
1101
1102 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001103 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1104
1105 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001106 omap_hsmmc_dbg_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001107 if ((status & CMD_TIMEOUT) ||
1108 (status & CMD_CRC)) {
1109 if (host->cmd) {
1110 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001111 omap_hsmmc_reset_controller_fsm(host,
1112 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001113 host->cmd->error = -ETIMEDOUT;
1114 } else {
1115 host->cmd->error = -EILSEQ;
1116 }
1117 end_cmd = 1;
1118 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001119 if (host->data || host->response_busy) {
1120 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001121 omap_hsmmc_dma_cleanup(host,
1122 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001123 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001124 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001125 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001126 }
1127 if ((status & DATA_TIMEOUT) ||
1128 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001129 if (host->data || host->response_busy) {
1130 int err = (status & DATA_TIMEOUT) ?
1131 -ETIMEDOUT : -EILSEQ;
1132
1133 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001134 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001135 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001136 host->mrq->cmd->error = err;
1137 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001138 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001139 end_trans = 1;
1140 }
1141 }
1142 if (status & CARD_ERR) {
1143 dev_dbg(mmc_dev(host->mmc),
1144 "Ignoring card err CMD%d\n", host->cmd->opcode);
1145 if (host->cmd)
1146 end_cmd = 1;
1147 if (host->data)
1148 end_trans = 1;
1149 }
1150 }
1151
1152 OMAP_HSMMC_WRITE(host->base, STAT, status);
1153
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001154 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001155 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001156 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001157 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001158}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001159
Adrian Hunterb4175772010-05-26 14:42:06 -07001160/*
1161 * MMC controller IRQ handler
1162 */
1163static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1164{
1165 struct omap_hsmmc_host *host = dev_id;
1166 int status;
1167
1168 status = OMAP_HSMMC_READ(host->base, STAT);
1169 do {
1170 omap_hsmmc_do_irq(host, status);
1171 /* Flush posted write */
1172 status = OMAP_HSMMC_READ(host->base, STAT);
1173 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001174
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001175 return IRQ_HANDLED;
1176}
1177
Denis Karpov70a33412009-09-22 16:44:59 -07001178static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001179{
1180 unsigned long i;
1181
1182 OMAP_HSMMC_WRITE(host->base, HCTL,
1183 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1184 for (i = 0; i < loops_per_jiffy; i++) {
1185 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1186 break;
1187 cpu_relax();
1188 }
1189}
1190
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001191/*
David Brownelleb250822009-02-17 14:49:01 -08001192 * Switch MMC interface voltage ... only relevant for MMC1.
1193 *
1194 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1195 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1196 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001197 */
Denis Karpov70a33412009-09-22 16:44:59 -07001198static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001199{
1200 u32 reg_val = 0;
1201 int ret;
1202
1203 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301204 pm_runtime_put_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001205 if (host->got_dbclk)
1206 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001207
1208 /* Turn the power off */
1209 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001210
1211 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001212 if (!ret)
1213 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1214 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301215 pm_runtime_get_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001216 if (host->got_dbclk)
1217 clk_enable(host->dbclk);
1218
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001219 if (ret != 0)
1220 goto err;
1221
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001222 OMAP_HSMMC_WRITE(host->base, HCTL,
1223 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1224 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001225
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001226 /*
1227 * If a MMC dual voltage card is detected, the set_ios fn calls
1228 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001229 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001230 *
David Brownelleb250822009-02-17 14:49:01 -08001231 * Cope with a bit of slop in the range ... per data sheets:
1232 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1233 * but recommended values are 1.71V to 1.89V
1234 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1235 * but recommended values are 2.7V to 3.3V
1236 *
1237 * Board setup code shouldn't permit anything very out-of-range.
1238 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1239 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001240 */
David Brownelleb250822009-02-17 14:49:01 -08001241 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001242 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001243 else
1244 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001245
1246 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001247 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001248
1249 return 0;
1250err:
1251 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1252 return ret;
1253}
1254
Adrian Hunterb62f6222009-09-22 16:45:01 -07001255/* Protect the card while the cover is open */
1256static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1257{
1258 if (!mmc_slot(host).get_cover_state)
1259 return;
1260
1261 host->reqs_blocked = 0;
1262 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1263 if (host->protect_card) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301264 pr_info("%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001265 "card is now accessible\n",
1266 mmc_hostname(host->mmc));
1267 host->protect_card = 0;
1268 }
1269 } else {
1270 if (!host->protect_card) {
Linus Torvalds3f8ddb02011-11-03 08:05:35 -07001271 pr_info("%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001272 "card is now inaccessible\n",
1273 mmc_hostname(host->mmc));
1274 host->protect_card = 1;
1275 }
1276 }
1277}
1278
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001279/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001280 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001281 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001282static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001283{
NeilBrown7efab4f2011-12-30 12:35:13 +11001284 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001285 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001286 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001287
Adrian Huntera6b22402009-09-22 16:44:45 -07001288 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001289 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001290
1291 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001292
Denis Karpov191d1f12009-09-22 16:44:55 -07001293 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001294 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001295 else {
1296 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001297 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001298 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001299
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001300 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001301 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001302 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001303 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001304 return IRQ_HANDLED;
1305}
1306
Denis Karpov70a33412009-09-22 16:44:59 -07001307static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001308 struct mmc_data *data)
1309{
1310 int sync_dev;
1311
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001312 if (data->flags & MMC_DATA_WRITE)
1313 sync_dev = host->dma_line_tx;
1314 else
1315 sync_dev = host->dma_line_rx;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001316 return sync_dev;
1317}
1318
Denis Karpov70a33412009-09-22 16:44:59 -07001319static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001320 struct mmc_data *data,
1321 struct scatterlist *sgl)
1322{
1323 int blksz, nblk, dma_ch;
1324
1325 dma_ch = host->dma_ch;
1326 if (data->flags & MMC_DATA_WRITE) {
1327 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1328 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1329 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1330 sg_dma_address(sgl), 0, 0);
1331 } else {
1332 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
Denis Karpov191d1f12009-09-22 16:44:55 -07001333 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001334 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1335 sg_dma_address(sgl), 0, 0);
1336 }
1337
1338 blksz = host->data->blksz;
1339 nblk = sg_dma_len(sgl) / blksz;
1340
1341 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1342 blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
Denis Karpov70a33412009-09-22 16:44:59 -07001343 omap_hsmmc_get_dma_sync_dev(host, data),
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001344 !(data->flags & MMC_DATA_WRITE));
1345
1346 omap_start_dma(dma_ch);
1347}
1348
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001349/*
1350 * DMA call back function
1351 */
Adrian Hunterb4175772010-05-26 14:42:06 -07001352static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001353{
Adrian Hunterb4175772010-05-26 14:42:06 -07001354 struct omap_hsmmc_host *host = cb_data;
Adrian Hunter770d7432011-05-06 12:14:11 +03001355 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001356 int dma_ch, req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001357
Venkatraman Sf3584e52010-08-10 18:01:54 -07001358 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1359 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1360 ch_status);
1361 return;
1362 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001363
Adrian Hunterb4175772010-05-26 14:42:06 -07001364 spin_lock(&host->irq_lock);
1365 if (host->dma_ch < 0) {
1366 spin_unlock(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001367 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001368 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001369
Adrian Hunter770d7432011-05-06 12:14:11 +03001370 data = host->mrq->data;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001371 host->dma_sg_idx++;
1372 if (host->dma_sg_idx < host->dma_len) {
1373 /* Fire up the next transfer. */
Adrian Hunterb4175772010-05-26 14:42:06 -07001374 omap_hsmmc_config_dma_params(host, data,
1375 data->sg + host->dma_sg_idx);
1376 spin_unlock(&host->irq_lock);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001377 return;
1378 }
1379
Per Forlin9782aff2011-07-01 18:55:23 +02001380 if (!data->host_cookie)
1381 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1382 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001383
1384 req_in_progress = host->req_in_progress;
1385 dma_ch = host->dma_ch;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001386 host->dma_ch = -1;
Adrian Hunterb4175772010-05-26 14:42:06 -07001387 spin_unlock(&host->irq_lock);
1388
1389 omap_free_dma(dma_ch);
1390
1391 /* If DMA has finished after TC, complete the request */
1392 if (!req_in_progress) {
1393 struct mmc_request *mrq = host->mrq;
1394
1395 host->mrq = NULL;
1396 mmc_request_done(host->mmc, mrq);
1397 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001398}
1399
Per Forlin9782aff2011-07-01 18:55:23 +02001400static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1401 struct mmc_data *data,
1402 struct omap_hsmmc_next *next)
1403{
1404 int dma_len;
1405
1406 if (!next && data->host_cookie &&
1407 data->host_cookie != host->next_data.cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301408 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001409 " host->next_data.cookie %d\n",
1410 __func__, data->host_cookie, host->next_data.cookie);
1411 data->host_cookie = 0;
1412 }
1413
1414 /* Check if next job is already prepared */
1415 if (next ||
1416 (!next && data->host_cookie != host->next_data.cookie)) {
1417 dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1418 data->sg_len,
1419 omap_hsmmc_get_dma_dir(host, data));
1420
1421 } else {
1422 dma_len = host->next_data.dma_len;
1423 host->next_data.dma_len = 0;
1424 }
1425
1426
1427 if (dma_len == 0)
1428 return -EINVAL;
1429
1430 if (next) {
1431 next->dma_len = dma_len;
1432 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1433 } else
1434 host->dma_len = dma_len;
1435
1436 return 0;
1437}
1438
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001439/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001440 * Routine to configure and start DMA for the MMC card
1441 */
Denis Karpov70a33412009-09-22 16:44:59 -07001442static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1443 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001444{
Adrian Hunterb4175772010-05-26 14:42:06 -07001445 int dma_ch = 0, ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001446 struct mmc_data *data = req->data;
1447
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001448 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001449 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001450 struct scatterlist *sgl;
1451
1452 sgl = data->sg + i;
1453 if (sgl->length % data->blksz)
1454 return -EINVAL;
1455 }
1456 if ((data->blksz % 4) != 0)
1457 /* REVISIT: The MMC buffer increments only when MSB is written.
1458 * Return error for blksz which is non multiple of four.
1459 */
1460 return -EINVAL;
1461
Adrian Hunterb4175772010-05-26 14:42:06 -07001462 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001463
Denis Karpov70a33412009-09-22 16:44:59 -07001464 ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1465 "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001466 if (ret != 0) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001467 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001468 "%s: omap_request_dma() failed with %d\n",
1469 mmc_hostname(host->mmc), ret);
1470 return ret;
1471 }
Per Forlin9782aff2011-07-01 18:55:23 +02001472 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL);
1473 if (ret)
1474 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001475
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001476 host->dma_ch = dma_ch;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001477 host->dma_sg_idx = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001478
Denis Karpov70a33412009-09-22 16:44:59 -07001479 omap_hsmmc_config_dma_params(host, data, data->sg);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001480
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001481 return 0;
1482}
1483
Denis Karpov70a33412009-09-22 16:44:59 -07001484static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001485 unsigned int timeout_ns,
1486 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001487{
1488 unsigned int timeout, cycle_ns;
1489 uint32_t reg, clkd, dto = 0;
1490
1491 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1492 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1493 if (clkd == 0)
1494 clkd = 1;
1495
1496 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001497 timeout = timeout_ns / cycle_ns;
1498 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001499 if (timeout) {
1500 while ((timeout & 0x80000000) == 0) {
1501 dto += 1;
1502 timeout <<= 1;
1503 }
1504 dto = 31 - dto;
1505 timeout <<= 1;
1506 if (timeout && dto)
1507 dto += 1;
1508 if (dto >= 13)
1509 dto -= 13;
1510 else
1511 dto = 0;
1512 if (dto > 14)
1513 dto = 14;
1514 }
1515
1516 reg &= ~DTO_MASK;
1517 reg |= dto << DTO_SHIFT;
1518 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1519}
1520
1521/*
1522 * Configure block length for MMC/SD cards and initiate the transfer.
1523 */
1524static int
Denis Karpov70a33412009-09-22 16:44:59 -07001525omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001526{
1527 int ret;
1528 host->data = req->data;
1529
1530 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001531 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001532 /*
1533 * Set an arbitrary 100ms data timeout for commands with
1534 * busy signal.
1535 */
1536 if (req->cmd->flags & MMC_RSP_BUSY)
1537 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001538 return 0;
1539 }
1540
1541 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1542 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001543 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001544
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001545 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001546 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001547 if (ret != 0) {
1548 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1549 return ret;
1550 }
1551 }
1552 return 0;
1553}
1554
Per Forlin9782aff2011-07-01 18:55:23 +02001555static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1556 int err)
1557{
1558 struct omap_hsmmc_host *host = mmc_priv(mmc);
1559 struct mmc_data *data = mrq->data;
1560
1561 if (host->use_dma) {
Per Forlin053bf342011-11-07 21:55:11 +05301562 if (data->host_cookie)
1563 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
1564 data->sg_len,
1565 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001566 data->host_cookie = 0;
1567 }
1568}
1569
1570static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1571 bool is_first_req)
1572{
1573 struct omap_hsmmc_host *host = mmc_priv(mmc);
1574
1575 if (mrq->data->host_cookie) {
1576 mrq->data->host_cookie = 0;
1577 return ;
1578 }
1579
1580 if (host->use_dma)
1581 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
1582 &host->next_data))
1583 mrq->data->host_cookie = 0;
1584}
1585
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001586/*
1587 * Request function. for read/write operation
1588 */
Denis Karpov70a33412009-09-22 16:44:59 -07001589static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001590{
Denis Karpov70a33412009-09-22 16:44:59 -07001591 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001592 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001593
Adrian Hunterb4175772010-05-26 14:42:06 -07001594 BUG_ON(host->req_in_progress);
1595 BUG_ON(host->dma_ch != -1);
1596 if (host->protect_card) {
1597 if (host->reqs_blocked < 3) {
1598 /*
1599 * Ensure the controller is left in a consistent
1600 * state by resetting the command and data state
1601 * machines.
1602 */
1603 omap_hsmmc_reset_controller_fsm(host, SRD);
1604 omap_hsmmc_reset_controller_fsm(host, SRC);
1605 host->reqs_blocked += 1;
1606 }
1607 req->cmd->error = -EBADF;
1608 if (req->data)
1609 req->data->error = -EBADF;
1610 req->cmd->retries = 0;
1611 mmc_request_done(mmc, req);
1612 return;
1613 } else if (host->reqs_blocked)
1614 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001615 WARN_ON(host->mrq != NULL);
1616 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001617 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001618 if (err) {
1619 req->cmd->error = err;
1620 if (req->data)
1621 req->data->error = err;
1622 host->mrq = NULL;
1623 mmc_request_done(mmc, req);
1624 return;
1625 }
1626
Denis Karpov70a33412009-09-22 16:44:59 -07001627 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001628}
1629
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001630/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001631static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001632{
Denis Karpov70a33412009-09-22 16:44:59 -07001633 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001634 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001635
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301636 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001637
Adrian Huntera3621462009-09-22 16:44:42 -07001638 if (ios->power_mode != host->power_mode) {
1639 switch (ios->power_mode) {
1640 case MMC_POWER_OFF:
1641 mmc_slot(host).set_power(host->dev, host->slot_id,
1642 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001643 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001644 break;
1645 case MMC_POWER_UP:
1646 mmc_slot(host).set_power(host->dev, host->slot_id,
1647 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001648 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001649 break;
1650 case MMC_POWER_ON:
1651 do_send_init_stream = 1;
1652 break;
1653 }
1654 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001655 }
1656
Denis Karpovdd498ef2009-09-22 16:44:49 -07001657 /* FIXME: set registers based only on changes to ios */
1658
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001659 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001660
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301661 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001662 /* Only MMC1 can interface at 3V without some flavor
1663 * of external transceiver; but they all handle 1.8V.
1664 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001665 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1666 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1667 /*
1668 * The mmc_select_voltage fn of the core does
1669 * not seem to set the power_mode to
1670 * MMC_POWER_UP upon recalculating the voltage.
1671 * vdd 1.8v.
1672 */
Denis Karpov70a33412009-09-22 16:44:59 -07001673 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1674 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001675 "Switch operation failed\n");
1676 }
1677 }
1678
Andy Shevchenko5934df22011-05-06 12:14:06 +03001679 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001680
Adrian Huntera3621462009-09-22 16:44:42 -07001681 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001682 send_init_stream(host);
1683
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001684 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001685
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301686 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001687}
1688
1689static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1690{
Denis Karpov70a33412009-09-22 16:44:59 -07001691 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001692
Denis Karpov191d1f12009-09-22 16:44:55 -07001693 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001694 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001695 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001696}
1697
1698static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1699{
Denis Karpov70a33412009-09-22 16:44:59 -07001700 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001701
Denis Karpov191d1f12009-09-22 16:44:55 -07001702 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001703 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001704 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001705}
1706
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001707static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1708{
1709 struct omap_hsmmc_host *host = mmc_priv(mmc);
1710
1711 if (mmc_slot(host).init_card)
1712 mmc_slot(host).init_card(card);
1713}
1714
Denis Karpov70a33412009-09-22 16:44:59 -07001715static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001716{
1717 u32 hctl, capa, value;
1718
1719 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301720 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001721 hctl = SDVS30;
1722 capa = VS30 | VS18;
1723 } else {
1724 hctl = SDVS18;
1725 capa = VS18;
1726 }
1727
1728 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1729 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1730
1731 value = OMAP_HSMMC_READ(host->base, CAPA);
1732 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1733
1734 /* Set the controller to AUTO IDLE mode */
1735 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1736 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1737
1738 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001739 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001740}
1741
Denis Karpov70a33412009-09-22 16:44:59 -07001742static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001743{
Denis Karpov70a33412009-09-22 16:44:59 -07001744 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001745
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301746 pm_runtime_get_sync(host->dev);
1747
Denis Karpovdd498ef2009-09-22 16:44:49 -07001748 return 0;
1749}
1750
Denis Karpov70a33412009-09-22 16:44:59 -07001751static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001752{
Denis Karpov70a33412009-09-22 16:44:59 -07001753 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001754
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301755 pm_runtime_mark_last_busy(host->dev);
1756 pm_runtime_put_autosuspend(host->dev);
1757
Denis Karpovdd498ef2009-09-22 16:44:49 -07001758 return 0;
1759}
1760
Denis Karpov70a33412009-09-22 16:44:59 -07001761static const struct mmc_host_ops omap_hsmmc_ops = {
1762 .enable = omap_hsmmc_enable_fclk,
1763 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001764 .post_req = omap_hsmmc_post_req,
1765 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001766 .request = omap_hsmmc_request,
1767 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001768 .get_cd = omap_hsmmc_get_cd,
1769 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001770 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001771 /* NYET -- enable_sdio_irq */
1772};
1773
Denis Karpovd900f712009-09-22 16:44:38 -07001774#ifdef CONFIG_DEBUG_FS
1775
Denis Karpov70a33412009-09-22 16:44:59 -07001776static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001777{
1778 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001779 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001780 int context_loss = 0;
1781
Denis Karpov70a33412009-09-22 16:44:59 -07001782 if (host->pdata->get_context_loss_count)
1783 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001784
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001785 seq_printf(s, "mmc%d:\n"
1786 " enabled:\t%d\n"
Denis Karpovdd498ef2009-09-22 16:44:49 -07001787 " dpm_state:\t%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001788 " nesting_cnt:\t%d\n"
Denis Karpov11dd62a2009-09-22 16:44:43 -07001789 " ctx_loss:\t%d:%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001790 "\nregs:\n",
Denis Karpovdd498ef2009-09-22 16:44:49 -07001791 mmc->index, mmc->enabled ? 1 : 0,
1792 host->dpm_state, mmc->nesting_cnt,
Denis Karpov11dd62a2009-09-22 16:44:43 -07001793 host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001794
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301795 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001796 seq_printf(s, "host suspended, can't read registers\n");
1797 return 0;
1798 }
1799
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301800 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001801
1802 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1803 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1804 seq_printf(s, "CON:\t\t0x%08x\n",
1805 OMAP_HSMMC_READ(host->base, CON));
1806 seq_printf(s, "HCTL:\t\t0x%08x\n",
1807 OMAP_HSMMC_READ(host->base, HCTL));
1808 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1809 OMAP_HSMMC_READ(host->base, SYSCTL));
1810 seq_printf(s, "IE:\t\t0x%08x\n",
1811 OMAP_HSMMC_READ(host->base, IE));
1812 seq_printf(s, "ISE:\t\t0x%08x\n",
1813 OMAP_HSMMC_READ(host->base, ISE));
1814 seq_printf(s, "CAPA:\t\t0x%08x\n",
1815 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001816
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301817 pm_runtime_mark_last_busy(host->dev);
1818 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001819
Denis Karpovd900f712009-09-22 16:44:38 -07001820 return 0;
1821}
1822
Denis Karpov70a33412009-09-22 16:44:59 -07001823static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001824{
Denis Karpov70a33412009-09-22 16:44:59 -07001825 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001826}
1827
1828static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001829 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001830 .read = seq_read,
1831 .llseek = seq_lseek,
1832 .release = single_release,
1833};
1834
Denis Karpov70a33412009-09-22 16:44:59 -07001835static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001836{
1837 if (mmc->debugfs_root)
1838 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1839 mmc, &mmc_regs_fops);
1840}
1841
1842#else
1843
Denis Karpov70a33412009-09-22 16:44:59 -07001844static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001845{
1846}
1847
1848#endif
1849
Denis Karpov70a33412009-09-22 16:44:59 -07001850static int __init omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001851{
1852 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1853 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001854 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001855 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001856 int ret, irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001857
1858 if (pdata == NULL) {
1859 dev_err(&pdev->dev, "Platform Data is missing\n");
1860 return -ENXIO;
1861 }
1862
1863 if (pdata->nr_slots == 0) {
1864 dev_err(&pdev->dev, "No Slots\n");
1865 return -ENXIO;
1866 }
1867
1868 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1869 irq = platform_get_irq(pdev, 0);
1870 if (res == NULL || irq < 0)
1871 return -ENXIO;
1872
kishore kadiyala91a0b082010-10-01 16:35:28 -07001873 res->start += pdata->reg_offset;
1874 res->end += pdata->reg_offset;
Chris Ball984b2032011-03-22 16:34:42 -07001875 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001876 if (res == NULL)
1877 return -EBUSY;
1878
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001879 ret = omap_hsmmc_gpio_init(pdata);
1880 if (ret)
1881 goto err;
1882
Denis Karpov70a33412009-09-22 16:44:59 -07001883 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001884 if (!mmc) {
1885 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001886 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001887 }
1888
1889 host = mmc_priv(mmc);
1890 host->mmc = mmc;
1891 host->pdata = pdata;
1892 host->dev = &pdev->dev;
1893 host->use_dma = 1;
1894 host->dev->dma_mask = &pdata->dma_mask;
1895 host->dma_ch = -1;
1896 host->irq = irq;
1897 host->id = pdev->id;
1898 host->slot_id = 0;
1899 host->mapbase = res->start;
1900 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001901 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001902 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001903
1904 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001905
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301906 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001907
Adrian Huntere0eb2422010-02-15 10:03:34 -08001908 /*
1909 * If regulator_disable can only put vcc_aux to sleep then there is
1910 * no off state.
1911 */
1912 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1913 mmc_slot(host).no_off = 1;
1914
Daniel Mackd418ed82012-02-19 13:20:33 +01001915 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1916
1917 if (pdata->max_freq > 0)
1918 mmc->f_max = pdata->max_freq;
1919 else
1920 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001921
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001922 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001923
Russell King6f7607c2009-01-28 10:22:50 +00001924 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001925 if (IS_ERR(host->fclk)) {
1926 ret = PTR_ERR(host->fclk);
1927 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001928 goto err1;
1929 }
1930
Denis Karpov70a33412009-09-22 16:44:59 -07001931 omap_hsmmc_context_save(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001932
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001933 mmc->caps |= MMC_CAP_DISABLE;
Paul Walmsley9b682562011-10-06 14:50:35 -06001934 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1935 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1936 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1937 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001938
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301939 pm_runtime_enable(host->dev);
1940 pm_runtime_get_sync(host->dev);
1941 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1942 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001943
Adrian Hunter2bec0892009-09-22 16:45:02 -07001944 if (cpu_is_omap2430()) {
1945 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1946 /*
1947 * MMC can still work without debounce clock.
1948 */
1949 if (IS_ERR(host->dbclk))
1950 dev_warn(mmc_dev(host->mmc),
1951 "Failed to get debounce clock\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001952 else
Adrian Hunter2bec0892009-09-22 16:45:02 -07001953 host->got_dbclk = 1;
1954
1955 if (host->got_dbclk)
1956 if (clk_enable(host->dbclk) != 0)
1957 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
1958 " clk failed\n");
1959 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001960
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001961 /* Since we do only SG emulation, we can have as many segs
1962 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001963 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001964
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001965 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1966 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1967 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1968 mmc->max_seg_size = mmc->max_req_size;
1969
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001970 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001971 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001972
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001973 mmc->caps |= mmc_slot(host).caps;
1974 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001975 mmc->caps |= MMC_CAP_4_BIT_DATA;
1976
Denis Karpov191d1f12009-09-22 16:44:55 -07001977 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001978 mmc->caps |= MMC_CAP_NONREMOVABLE;
1979
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001980 mmc->pm_caps = mmc_slot(host).pm_caps;
1981
Denis Karpov70a33412009-09-22 16:44:59 -07001982 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001983
Balaji T Kb7bf7732012-03-07 09:55:30 -05001984 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1985 if (!res) {
1986 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001987 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001988 }
Balaji T Kb7bf7732012-03-07 09:55:30 -05001989 host->dma_line_tx = res->start;
1990
1991 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1992 if (!res) {
1993 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1994 goto err_irq;
1995 }
1996 host->dma_line_rx = res->start;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001997
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001998 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001999 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002000 mmc_hostname(mmc), host);
2001 if (ret) {
2002 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
2003 goto err_irq;
2004 }
2005
2006 if (pdata->init != NULL) {
2007 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07002008 dev_dbg(mmc_dev(host->mmc),
2009 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002010 goto err_irq_cd_init;
2011 }
2012 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002013
Adrian Hunterb702b102010-02-15 10:03:35 -08002014 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002015 ret = omap_hsmmc_reg_get(host);
2016 if (ret)
2017 goto err_reg;
2018 host->use_reg = 1;
2019 }
2020
David Brownellb583f262009-05-28 14:04:03 -07002021 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002022
2023 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02002024 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11002025 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
2026 NULL,
2027 omap_hsmmc_detect,
2028 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
2029 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002030 if (ret) {
2031 dev_dbg(mmc_dev(host->mmc),
2032 "Unable to grab MMC CD IRQ\n");
2033 goto err_irq_cd;
2034 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002035 pdata->suspend = omap_hsmmc_suspend_cdirq;
2036 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002037 }
2038
Adrian Hunterb4175772010-05-26 14:42:06 -07002039 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002040
Adrian Hunterb62f6222009-09-22 16:45:01 -07002041 omap_hsmmc_protect_card(host);
2042
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002043 mmc_add_host(mmc);
2044
Denis Karpov191d1f12009-09-22 16:44:55 -07002045 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002046 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2047 if (ret < 0)
2048 goto err_slot_name;
2049 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002050 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002051 ret = device_create_file(&mmc->class_dev,
2052 &dev_attr_cover_switch);
2053 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002054 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002055 }
2056
Denis Karpov70a33412009-09-22 16:44:59 -07002057 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302058 pm_runtime_mark_last_busy(host->dev);
2059 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002060
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002061 return 0;
2062
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002063err_slot_name:
2064 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002065 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002066err_irq_cd:
2067 if (host->use_reg)
2068 omap_hsmmc_reg_put(host);
2069err_reg:
2070 if (host->pdata->cleanup)
2071 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002072err_irq_cd_init:
2073 free_irq(host->irq, host);
2074err_irq:
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302075 pm_runtime_mark_last_busy(host->dev);
2076 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002077 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002078 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002079 clk_disable(host->dbclk);
2080 clk_put(host->dbclk);
2081 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002082err1:
2083 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002084 platform_set_drvdata(pdev, NULL);
2085 mmc_free_host(mmc);
2086err_alloc:
2087 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002088err:
Chris Ball984b2032011-03-22 16:34:42 -07002089 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002090 return ret;
2091}
2092
Denis Karpov70a33412009-09-22 16:44:59 -07002093static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002094{
Denis Karpov70a33412009-09-22 16:44:59 -07002095 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002096 struct resource *res;
2097
2098 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302099 pm_runtime_get_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002100 mmc_remove_host(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002101 if (host->use_reg)
2102 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002103 if (host->pdata->cleanup)
2104 host->pdata->cleanup(&pdev->dev);
2105 free_irq(host->irq, host);
2106 if (mmc_slot(host).card_detect_irq)
2107 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002108
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302109 pm_runtime_put_sync(host->dev);
2110 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002111 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002112 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002113 clk_disable(host->dbclk);
2114 clk_put(host->dbclk);
2115 }
2116
2117 mmc_free_host(host->mmc);
2118 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002119 omap_hsmmc_gpio_free(pdev->dev.platform_data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002120 }
2121
2122 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2123 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002124 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002125 platform_set_drvdata(pdev, NULL);
2126
2127 return 0;
2128}
2129
2130#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002131static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002132{
2133 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002134 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002135 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002136
2137 if (host && host->suspended)
2138 return 0;
2139
2140 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302141 pm_runtime_get_sync(host->dev);
Adrian Huntera6b22402009-09-22 16:44:45 -07002142 host->suspended = 1;
2143 if (host->pdata->suspend) {
2144 ret = host->pdata->suspend(&pdev->dev,
2145 host->slot_id);
2146 if (ret) {
2147 dev_dbg(mmc_dev(host->mmc),
2148 "Unable to handle MMC board"
2149 " level suspend\n");
2150 host->suspended = 0;
2151 return ret;
2152 }
2153 }
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002154 ret = mmc_suspend_host(host->mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302155
Eliad Peller31f9d462011-11-22 16:02:17 +02002156 if (ret) {
Adrian Huntera6b22402009-09-22 16:44:45 -07002157 host->suspended = 0;
2158 if (host->pdata->resume) {
2159 ret = host->pdata->resume(&pdev->dev,
2160 host->slot_id);
2161 if (ret)
2162 dev_dbg(mmc_dev(host->mmc),
2163 "Unmask interrupt failed\n");
2164 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002165 goto err;
Adrian Huntera6b22402009-09-22 16:44:45 -07002166 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002167
2168 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2169 omap_hsmmc_disable_irq(host);
2170 OMAP_HSMMC_WRITE(host->base, HCTL,
2171 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2172 }
2173 if (host->got_dbclk)
2174 clk_disable(host->dbclk);
2175
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002176 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002177err:
2178 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002179 return ret;
2180}
2181
2182/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002183static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002184{
2185 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002186 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002187 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002188
2189 if (host && !host->suspended)
2190 return 0;
2191
2192 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302193 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002194
Adrian Hunter2bec0892009-09-22 16:45:02 -07002195 if (host->got_dbclk)
2196 clk_enable(host->dbclk);
2197
Eliad Peller31f9d462011-11-22 16:02:17 +02002198 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2199 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002200
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002201 if (host->pdata->resume) {
2202 ret = host->pdata->resume(&pdev->dev, host->slot_id);
2203 if (ret)
2204 dev_dbg(mmc_dev(host->mmc),
2205 "Unmask interrupt failed\n");
2206 }
2207
Adrian Hunterb62f6222009-09-22 16:45:01 -07002208 omap_hsmmc_protect_card(host);
2209
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002210 /* Notify the core to resume the host */
2211 ret = mmc_resume_host(host->mmc);
2212 if (ret == 0)
2213 host->suspended = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302214
2215 pm_runtime_mark_last_busy(host->dev);
2216 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002217 }
2218
2219 return ret;
2220
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002221}
2222
2223#else
Denis Karpov70a33412009-09-22 16:44:59 -07002224#define omap_hsmmc_suspend NULL
2225#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002226#endif
2227
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302228static int omap_hsmmc_runtime_suspend(struct device *dev)
2229{
2230 struct omap_hsmmc_host *host;
2231
2232 host = platform_get_drvdata(to_platform_device(dev));
2233 omap_hsmmc_context_save(host);
2234 dev_dbg(mmc_dev(host->mmc), "disabled\n");
2235
2236 return 0;
2237}
2238
2239static int omap_hsmmc_runtime_resume(struct device *dev)
2240{
2241 struct omap_hsmmc_host *host;
2242
2243 host = platform_get_drvdata(to_platform_device(dev));
2244 omap_hsmmc_context_restore(host);
2245 dev_dbg(mmc_dev(host->mmc), "enabled\n");
2246
2247 return 0;
2248}
2249
Kevin Hilmana791daa2010-05-26 14:42:07 -07002250static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002251 .suspend = omap_hsmmc_suspend,
2252 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302253 .runtime_suspend = omap_hsmmc_runtime_suspend,
2254 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002255};
2256
2257static struct platform_driver omap_hsmmc_driver = {
2258 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002259 .driver = {
2260 .name = DRIVER_NAME,
2261 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002262 .pm = &omap_hsmmc_dev_pm_ops,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002263 },
2264};
2265
Denis Karpov70a33412009-09-22 16:44:59 -07002266static int __init omap_hsmmc_init(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002267{
2268 /* Register the MMC driver */
Roger Quadros87532982009-10-26 16:49:38 -07002269 return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002270}
2271
Denis Karpov70a33412009-09-22 16:44:59 -07002272static void __exit omap_hsmmc_cleanup(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002273{
2274 /* Unregister MMC driver */
Denis Karpov70a33412009-09-22 16:44:59 -07002275 platform_driver_unregister(&omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002276}
2277
Denis Karpov70a33412009-09-22 16:44:59 -07002278module_init(omap_hsmmc_init);
2279module_exit(omap_hsmmc_cleanup);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002280
2281MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2282MODULE_LICENSE("GPL");
2283MODULE_ALIAS("platform:" DRIVER_NAME);
2284MODULE_AUTHOR("Texas Instruments Inc");