blob: 11e8c8fe46dc1c104c93ce3dcdf45009fa22fd2e [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
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500244static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800245 int vdd)
246{
247 struct omap_hsmmc_host *host =
248 platform_get_drvdata(to_platform_device(dev));
249 int ret = 0;
250
251 /*
252 * If we don't see a Vcc regulator, assume it's a fixed
253 * voltage always-on regulator.
254 */
255 if (!host->vcc)
256 return 0;
257
258 if (mmc_slot(host).before_set_reg)
259 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
260
261 /*
262 * Assume Vcc regulator is used only to power the card ... OMAP
263 * VDDS is used to power the pins, optionally with a transceiver to
264 * support cards using voltages other than VDDS (1.8V nominal). When a
265 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
266 *
267 * In some cases this regulator won't support enable/disable;
268 * e.g. it's a fixed rail for a WLAN chip.
269 *
270 * In other cases vcc_aux switches interface power. Example, for
271 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
272 * chips/cards need an interface voltage rail too.
273 */
274 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400275 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800276 /* Enable interface voltage rail, if needed */
277 if (ret == 0 && host->vcc_aux) {
278 ret = regulator_enable(host->vcc_aux);
279 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400280 ret = mmc_regulator_set_ocr(host->mmc,
281 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800282 }
283 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400284 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800285 if (host->vcc_aux)
286 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400287 if (!ret) {
288 /* Then proceed to shut down the local regulator */
289 ret = mmc_regulator_set_ocr(host->mmc,
290 host->vcc, 0);
291 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800292 }
293
294 if (mmc_slot(host).after_set_reg)
295 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
296
297 return ret;
298}
299
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500300static int omap_hsmmc_4_set_power(struct device *dev, int slot, int power_on,
301 int vdd)
302{
303 return 0;
304}
305
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800306static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
307{
308 struct regulator *reg;
309 int ret = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700310 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800311
312 switch (host->id) {
313 case OMAP_MMC1_DEVID:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800314 case OMAP_MMC2_DEVID:
315 case OMAP_MMC3_DEVID:
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500316 case OMAP_MMC5_DEVID:
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500317 /* On-chip level shifting via PBIAS0/PBIAS1 */
318 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800319 break;
Kishore Kadiyala7715db52011-02-15 03:40:36 -0500320 case OMAP_MMC4_DEVID:
321 mmc_slot(host).set_power = omap_hsmmc_4_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800322 default:
323 pr_err("MMC%d configuration not supported!\n", host->id);
324 return -EINVAL;
325 }
326
327 reg = regulator_get(host->dev, "vmmc");
328 if (IS_ERR(reg)) {
329 dev_dbg(host->dev, "vmmc regulator missing\n");
330 /*
331 * HACK: until fixed.c regulator is usable,
332 * we don't require a main regulator
333 * for MMC2 or MMC3
334 */
335 if (host->id == OMAP_MMC1_DEVID) {
336 ret = PTR_ERR(reg);
337 goto err;
338 }
339 } else {
340 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700341 ocr_value = mmc_regulator_get_ocrmask(reg);
342 if (!mmc_slot(host).ocr_mask) {
343 mmc_slot(host).ocr_mask = ocr_value;
344 } else {
345 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
346 pr_err("MMC%d ocrmask %x is not supported\n",
347 host->id, mmc_slot(host).ocr_mask);
348 mmc_slot(host).ocr_mask = 0;
349 return -EINVAL;
350 }
351 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800352
353 /* Allow an aux regulator */
354 reg = regulator_get(host->dev, "vmmc_aux");
355 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
356
Balaji T Kb1c1df72011-05-30 19:55:34 +0530357 /* For eMMC do not power off when not in sleep state */
358 if (mmc_slot(host).no_regulator_off_init)
359 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800360 /*
361 * UGLY HACK: workaround regulator framework bugs.
362 * When the bootloader leaves a supply active, it's
363 * initialized with zero usecount ... and we can't
364 * disable it without first enabling it. Until the
365 * framework is fixed, we need a workaround like this
366 * (which is safe for MMC, but not in general).
367 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300368 if (regulator_is_enabled(host->vcc) > 0 ||
369 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
370 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
371
372 mmc_slot(host).set_power(host->dev, host->slot_id,
373 1, vdd);
374 mmc_slot(host).set_power(host->dev, host->slot_id,
375 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800376 }
377 }
378
379 return 0;
380
381err:
382 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800383 return ret;
384}
385
386static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
387{
388 regulator_put(host->vcc);
389 regulator_put(host->vcc_aux);
390 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800391}
392
Adrian Hunterb702b102010-02-15 10:03:35 -0800393static inline int omap_hsmmc_have_reg(void)
394{
395 return 1;
396}
397
398#else
399
400static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
401{
402 return -EINVAL;
403}
404
405static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
406{
407}
408
409static inline int omap_hsmmc_have_reg(void)
410{
411 return 0;
412}
413
414#endif
415
416static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
417{
418 int ret;
419
420 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800421 if (pdata->slots[0].cover)
422 pdata->slots[0].get_cover_state =
423 omap_hsmmc_get_cover_state;
424 else
425 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
426 pdata->slots[0].card_detect_irq =
427 gpio_to_irq(pdata->slots[0].switch_pin);
428 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
429 if (ret)
430 return ret;
431 ret = gpio_direction_input(pdata->slots[0].switch_pin);
432 if (ret)
433 goto err_free_sp;
434 } else
435 pdata->slots[0].switch_pin = -EINVAL;
436
437 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
438 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
439 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
440 if (ret)
441 goto err_free_cd;
442 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
443 if (ret)
444 goto err_free_wp;
445 } else
446 pdata->slots[0].gpio_wp = -EINVAL;
447
448 return 0;
449
450err_free_wp:
451 gpio_free(pdata->slots[0].gpio_wp);
452err_free_cd:
453 if (gpio_is_valid(pdata->slots[0].switch_pin))
454err_free_sp:
455 gpio_free(pdata->slots[0].switch_pin);
456 return ret;
457}
458
459static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
460{
461 if (gpio_is_valid(pdata->slots[0].gpio_wp))
462 gpio_free(pdata->slots[0].gpio_wp);
463 if (gpio_is_valid(pdata->slots[0].switch_pin))
464 gpio_free(pdata->slots[0].switch_pin);
465}
466
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100467/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300468 * Start clock to the card
469 */
470static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
471{
472 OMAP_HSMMC_WRITE(host->base, SYSCTL,
473 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
474}
475
476/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100477 * Stop clock to the card
478 */
Denis Karpov70a33412009-09-22 16:44:59 -0700479static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100480{
481 OMAP_HSMMC_WRITE(host->base, SYSCTL,
482 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
483 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
484 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
485}
486
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700487static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
488 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700489{
490 unsigned int irq_mask;
491
492 if (host->use_dma)
493 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
494 else
495 irq_mask = INT_EN_MASK;
496
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700497 /* Disable timeout for erases */
498 if (cmd->opcode == MMC_ERASE)
499 irq_mask &= ~DTO_ENABLE;
500
Adrian Hunterb4175772010-05-26 14:42:06 -0700501 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
502 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
503 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
504}
505
506static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
507{
508 OMAP_HSMMC_WRITE(host->base, ISE, 0);
509 OMAP_HSMMC_WRITE(host->base, IE, 0);
510 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
511}
512
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300513/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530514static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300515{
516 u16 dsor = 0;
517
518 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530519 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300520 if (dsor > 250)
521 dsor = 250;
522 }
523
524 return dsor;
525}
526
Andy Shevchenko5934df22011-05-06 12:14:06 +0300527static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
528{
529 struct mmc_ios *ios = &host->mmc->ios;
530 unsigned long regval;
531 unsigned long timeout;
532
533 dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
534
535 omap_hsmmc_stop_clock(host);
536
537 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
538 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530539 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300540 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
541 OMAP_HSMMC_WRITE(host->base, SYSCTL,
542 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
543
544 /* Wait till the ICS bit is set */
545 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
546 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
547 && time_before(jiffies, timeout))
548 cpu_relax();
549
550 omap_hsmmc_start_clock(host);
551}
552
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400553static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
554{
555 struct mmc_ios *ios = &host->mmc->ios;
556 u32 con;
557
558 con = OMAP_HSMMC_READ(host->base, CON);
559 switch (ios->bus_width) {
560 case MMC_BUS_WIDTH_8:
561 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
562 break;
563 case MMC_BUS_WIDTH_4:
564 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
565 OMAP_HSMMC_WRITE(host->base, HCTL,
566 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
567 break;
568 case MMC_BUS_WIDTH_1:
569 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
570 OMAP_HSMMC_WRITE(host->base, HCTL,
571 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
572 break;
573 }
574}
575
576static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
577{
578 struct mmc_ios *ios = &host->mmc->ios;
579 u32 con;
580
581 con = OMAP_HSMMC_READ(host->base, CON);
582 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
583 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
584 else
585 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
586}
587
Denis Karpov11dd62a2009-09-22 16:44:43 -0700588#ifdef CONFIG_PM
589
590/*
591 * Restore the MMC host context, if it was lost as result of a
592 * power state change.
593 */
Denis Karpov70a33412009-09-22 16:44:59 -0700594static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700595{
596 struct mmc_ios *ios = &host->mmc->ios;
597 struct omap_mmc_platform_data *pdata = host->pdata;
598 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400599 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700600 unsigned long timeout;
601
602 if (pdata->get_context_loss_count) {
603 context_loss = pdata->get_context_loss_count(host->dev);
604 if (context_loss < 0)
605 return 1;
606 }
607
608 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
609 context_loss == host->context_loss ? "not " : "");
610 if (host->context_loss == context_loss)
611 return 1;
612
613 /* Wait for hardware reset */
614 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
615 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
616 && time_before(jiffies, timeout))
617 ;
618
619 /* Do software reset */
620 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
621 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
622 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
623 && time_before(jiffies, timeout))
624 ;
625
626 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
627 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
628
Balaji T Kc2200ef2012-03-07 09:55:30 -0500629 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700630 if (host->power_mode != MMC_POWER_OFF &&
631 (1 << ios->vdd) <= MMC_VDD_23_24)
632 hctl = SDVS18;
633 else
634 hctl = SDVS30;
635 capa = VS30 | VS18;
636 } else {
637 hctl = SDVS18;
638 capa = VS18;
639 }
640
641 OMAP_HSMMC_WRITE(host->base, HCTL,
642 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
643
644 OMAP_HSMMC_WRITE(host->base, CAPA,
645 OMAP_HSMMC_READ(host->base, CAPA) | capa);
646
647 OMAP_HSMMC_WRITE(host->base, HCTL,
648 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
649
650 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
651 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
652 && time_before(jiffies, timeout))
653 ;
654
Adrian Hunterb4175772010-05-26 14:42:06 -0700655 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700656
657 /* Do not initialize card-specific things if the power is off */
658 if (host->power_mode == MMC_POWER_OFF)
659 goto out;
660
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400661 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700662
Andy Shevchenko5934df22011-05-06 12:14:06 +0300663 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700664
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400665 omap_hsmmc_set_bus_mode(host);
666
Denis Karpov11dd62a2009-09-22 16:44:43 -0700667out:
668 host->context_loss = context_loss;
669
670 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
671 return 0;
672}
673
674/*
675 * Save the MMC host context (store the number of power state changes so far).
676 */
Denis Karpov70a33412009-09-22 16:44:59 -0700677static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700678{
679 struct omap_mmc_platform_data *pdata = host->pdata;
680 int context_loss;
681
682 if (pdata->get_context_loss_count) {
683 context_loss = pdata->get_context_loss_count(host->dev);
684 if (context_loss < 0)
685 return;
686 host->context_loss = context_loss;
687 }
688}
689
690#else
691
Denis Karpov70a33412009-09-22 16:44:59 -0700692static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700693{
694 return 0;
695}
696
Denis Karpov70a33412009-09-22 16:44:59 -0700697static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700698{
699}
700
701#endif
702
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100703/*
704 * Send init stream sequence to card
705 * before sending IDLE command
706 */
Denis Karpov70a33412009-09-22 16:44:59 -0700707static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100708{
709 int reg = 0;
710 unsigned long timeout;
711
Adrian Hunterb62f6222009-09-22 16:45:01 -0700712 if (host->protect_card)
713 return;
714
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100715 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700716
717 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100718 OMAP_HSMMC_WRITE(host->base, CON,
719 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
720 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
721
722 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
723 while ((reg != CC) && time_before(jiffies, timeout))
724 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
725
726 OMAP_HSMMC_WRITE(host->base, CON,
727 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700728
729 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
730 OMAP_HSMMC_READ(host->base, STAT);
731
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100732 enable_irq(host->irq);
733}
734
735static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700736int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100737{
738 int r = 1;
739
Denis Karpov191d1f12009-09-22 16:44:55 -0700740 if (mmc_slot(host).get_cover_state)
741 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100742 return r;
743}
744
745static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700746omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100747 char *buf)
748{
749 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700750 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100751
Denis Karpov70a33412009-09-22 16:44:59 -0700752 return sprintf(buf, "%s\n",
753 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100754}
755
Denis Karpov70a33412009-09-22 16:44:59 -0700756static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100757
758static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700759omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100760 char *buf)
761{
762 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700763 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100764
Denis Karpov191d1f12009-09-22 16:44:55 -0700765 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100766}
767
Denis Karpov70a33412009-09-22 16:44:59 -0700768static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100769
770/*
771 * Configure the response type and send the cmd.
772 */
773static void
Denis Karpov70a33412009-09-22 16:44:59 -0700774omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100775 struct mmc_data *data)
776{
777 int cmdreg = 0, resptype = 0, cmdtype = 0;
778
779 dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
780 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
781 host->cmd = cmd;
782
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700783 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100784
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200785 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100786 if (cmd->flags & MMC_RSP_PRESENT) {
787 if (cmd->flags & MMC_RSP_136)
788 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200789 else if (cmd->flags & MMC_RSP_BUSY) {
790 resptype = 3;
791 host->response_busy = 1;
792 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100793 resptype = 2;
794 }
795
796 /*
797 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
798 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
799 * a val of 0x3, rest 0x0.
800 */
801 if (cmd == host->mrq->stop)
802 cmdtype = 0x3;
803
804 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
805
806 if (data) {
807 cmdreg |= DP_SELECT | MSBS | BCE;
808 if (data->flags & MMC_DATA_READ)
809 cmdreg |= DDIR;
810 else
811 cmdreg &= ~(DDIR);
812 }
813
814 if (host->use_dma)
815 cmdreg |= DMA_EN;
816
Adrian Hunterb4175772010-05-26 14:42:06 -0700817 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700818
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100819 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
820 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
821}
822
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200823static int
Denis Karpov70a33412009-09-22 16:44:59 -0700824omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200825{
826 if (data->flags & MMC_DATA_WRITE)
827 return DMA_TO_DEVICE;
828 else
829 return DMA_FROM_DEVICE;
830}
831
Adrian Hunterb4175772010-05-26 14:42:06 -0700832static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
833{
834 int dma_ch;
835
836 spin_lock(&host->irq_lock);
837 host->req_in_progress = 0;
838 dma_ch = host->dma_ch;
839 spin_unlock(&host->irq_lock);
840
841 omap_hsmmc_disable_irq(host);
842 /* Do not complete the request if DMA is still in progress */
843 if (mrq->data && host->use_dma && dma_ch != -1)
844 return;
845 host->mrq = NULL;
846 mmc_request_done(host->mmc, mrq);
847}
848
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100849/*
850 * Notify the transfer complete to MMC core
851 */
852static void
Denis Karpov70a33412009-09-22 16:44:59 -0700853omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100854{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200855 if (!data) {
856 struct mmc_request *mrq = host->mrq;
857
Adrian Hunter23050102009-09-22 16:44:57 -0700858 /* TC before CC from CMD6 - don't know why, but it happens */
859 if (host->cmd && host->cmd->opcode == 6 &&
860 host->response_busy) {
861 host->response_busy = 0;
862 return;
863 }
864
Adrian Hunterb4175772010-05-26 14:42:06 -0700865 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200866 return;
867 }
868
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100869 host->data = NULL;
870
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100871 if (!data->error)
872 data->bytes_xfered += data->blocks * (data->blksz);
873 else
874 data->bytes_xfered = 0;
875
876 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700877 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100878 return;
879 }
Denis Karpov70a33412009-09-22 16:44:59 -0700880 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100881}
882
883/*
884 * Notify the core about command completion
885 */
886static void
Denis Karpov70a33412009-09-22 16:44:59 -0700887omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100888{
889 host->cmd = NULL;
890
891 if (cmd->flags & MMC_RSP_PRESENT) {
892 if (cmd->flags & MMC_RSP_136) {
893 /* response type 2 */
894 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
895 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
896 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
897 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
898 } else {
899 /* response types 1, 1b, 3, 4, 5, 6 */
900 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
901 }
902 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700903 if ((host->data == NULL && !host->response_busy) || cmd->error)
904 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100905}
906
907/*
908 * DMA clean up for command errors
909 */
Denis Karpov70a33412009-09-22 16:44:59 -0700910static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100911{
Adrian Hunterb4175772010-05-26 14:42:06 -0700912 int dma_ch;
913
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200914 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100915
Adrian Hunterb4175772010-05-26 14:42:06 -0700916 spin_lock(&host->irq_lock);
917 dma_ch = host->dma_ch;
918 host->dma_ch = -1;
919 spin_unlock(&host->irq_lock);
920
921 if (host->use_dma && dma_ch != -1) {
Per Forlina9120c32011-06-17 20:14:21 +0200922 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg,
923 host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700924 omap_hsmmc_get_dma_dir(host, host->data));
Adrian Hunterb4175772010-05-26 14:42:06 -0700925 omap_free_dma(dma_ch);
Per Forlin053bf342011-11-07 21:55:11 +0530926 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100927 }
928 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100929}
930
931/*
932 * Readable error output
933 */
934#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300935static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100936{
937 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700938 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300939 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
940 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
941 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
942 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100943 };
944 char res[256];
945 char *buf = res;
946 int len, i;
947
948 len = sprintf(buf, "MMC IRQ 0x%x :", status);
949 buf += len;
950
Denis Karpov70a33412009-09-22 16:44:59 -0700951 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100952 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700953 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100954 buf += len;
955 }
956
957 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
958}
Adrian Hunter699b9582011-05-06 12:14:01 +0300959#else
960static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
961 u32 status)
962{
963}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100964#endif /* CONFIG_MMC_DEBUG */
965
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100966/*
967 * MMC controller internal state machines reset
968 *
969 * Used to reset command or data internal state machines, using respectively
970 * SRC or SRD bit of SYSCTL register
971 * Can be called from interrupt context
972 */
Denis Karpov70a33412009-09-22 16:44:59 -0700973static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
974 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100975{
976 unsigned long i = 0;
977 unsigned long limit = (loops_per_jiffy *
978 msecs_to_jiffies(MMC_TIMEOUT_MS));
979
980 OMAP_HSMMC_WRITE(host->base, SYSCTL,
981 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
982
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700983 /*
984 * OMAP4 ES2 and greater has an updated reset logic.
985 * Monitor a 0->1 transition first
986 */
987 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -0500988 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700989 && (i++ < limit))
990 cpu_relax();
991 }
992 i = 0;
993
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100994 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
995 (i++ < limit))
996 cpu_relax();
997
998 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
999 dev_err(mmc_dev(host->mmc),
1000 "Timeout waiting on controller reset in %s\n",
1001 __func__);
1002}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001003
Adrian Hunterb4175772010-05-26 14:42:06 -07001004static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001005{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001006 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001007 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001008
Adrian Hunterb4175772010-05-26 14:42:06 -07001009 if (!host->req_in_progress) {
1010 do {
1011 OMAP_HSMMC_WRITE(host->base, STAT, status);
1012 /* Flush posted write */
1013 status = OMAP_HSMMC_READ(host->base, STAT);
1014 } while (status & INT_EN_MASK);
1015 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001016 }
1017
1018 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001019 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1020
1021 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001022 omap_hsmmc_dbg_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001023 if ((status & CMD_TIMEOUT) ||
1024 (status & CMD_CRC)) {
1025 if (host->cmd) {
1026 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001027 omap_hsmmc_reset_controller_fsm(host,
1028 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001029 host->cmd->error = -ETIMEDOUT;
1030 } else {
1031 host->cmd->error = -EILSEQ;
1032 }
1033 end_cmd = 1;
1034 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001035 if (host->data || host->response_busy) {
1036 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001037 omap_hsmmc_dma_cleanup(host,
1038 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001039 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001040 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001041 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001042 }
1043 if ((status & DATA_TIMEOUT) ||
1044 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001045 if (host->data || host->response_busy) {
1046 int err = (status & DATA_TIMEOUT) ?
1047 -ETIMEDOUT : -EILSEQ;
1048
1049 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001050 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001051 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001052 host->mrq->cmd->error = err;
1053 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001054 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001055 end_trans = 1;
1056 }
1057 }
1058 if (status & CARD_ERR) {
1059 dev_dbg(mmc_dev(host->mmc),
1060 "Ignoring card err CMD%d\n", host->cmd->opcode);
1061 if (host->cmd)
1062 end_cmd = 1;
1063 if (host->data)
1064 end_trans = 1;
1065 }
1066 }
1067
1068 OMAP_HSMMC_WRITE(host->base, STAT, status);
1069
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001070 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001071 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001072 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001073 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001074}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001075
Adrian Hunterb4175772010-05-26 14:42:06 -07001076/*
1077 * MMC controller IRQ handler
1078 */
1079static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1080{
1081 struct omap_hsmmc_host *host = dev_id;
1082 int status;
1083
1084 status = OMAP_HSMMC_READ(host->base, STAT);
1085 do {
1086 omap_hsmmc_do_irq(host, status);
1087 /* Flush posted write */
1088 status = OMAP_HSMMC_READ(host->base, STAT);
1089 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001090
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001091 return IRQ_HANDLED;
1092}
1093
Denis Karpov70a33412009-09-22 16:44:59 -07001094static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001095{
1096 unsigned long i;
1097
1098 OMAP_HSMMC_WRITE(host->base, HCTL,
1099 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1100 for (i = 0; i < loops_per_jiffy; i++) {
1101 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1102 break;
1103 cpu_relax();
1104 }
1105}
1106
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001107/*
David Brownelleb250822009-02-17 14:49:01 -08001108 * Switch MMC interface voltage ... only relevant for MMC1.
1109 *
1110 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1111 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1112 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001113 */
Denis Karpov70a33412009-09-22 16:44:59 -07001114static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001115{
1116 u32 reg_val = 0;
1117 int ret;
1118
1119 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301120 pm_runtime_put_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001121 if (host->got_dbclk)
1122 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001123
1124 /* Turn the power off */
1125 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001126
1127 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001128 if (!ret)
1129 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1130 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301131 pm_runtime_get_sync(host->dev);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001132 if (host->got_dbclk)
1133 clk_enable(host->dbclk);
1134
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001135 if (ret != 0)
1136 goto err;
1137
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001138 OMAP_HSMMC_WRITE(host->base, HCTL,
1139 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1140 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001141
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001142 /*
1143 * If a MMC dual voltage card is detected, the set_ios fn calls
1144 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001145 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001146 *
David Brownelleb250822009-02-17 14:49:01 -08001147 * Cope with a bit of slop in the range ... per data sheets:
1148 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1149 * but recommended values are 1.71V to 1.89V
1150 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1151 * but recommended values are 2.7V to 3.3V
1152 *
1153 * Board setup code shouldn't permit anything very out-of-range.
1154 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1155 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001156 */
David Brownelleb250822009-02-17 14:49:01 -08001157 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001158 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001159 else
1160 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161
1162 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001163 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001164
1165 return 0;
1166err:
1167 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1168 return ret;
1169}
1170
Adrian Hunterb62f6222009-09-22 16:45:01 -07001171/* Protect the card while the cover is open */
1172static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1173{
1174 if (!mmc_slot(host).get_cover_state)
1175 return;
1176
1177 host->reqs_blocked = 0;
1178 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1179 if (host->protect_card) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301180 pr_info("%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001181 "card is now accessible\n",
1182 mmc_hostname(host->mmc));
1183 host->protect_card = 0;
1184 }
1185 } else {
1186 if (!host->protect_card) {
Linus Torvalds3f8ddb02011-11-03 08:05:35 -07001187 pr_info("%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001188 "card is now inaccessible\n",
1189 mmc_hostname(host->mmc));
1190 host->protect_card = 1;
1191 }
1192 }
1193}
1194
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001195/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001196 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001197 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001198static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001199{
NeilBrown7efab4f2011-12-30 12:35:13 +11001200 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001201 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001202 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001203
Adrian Huntera6b22402009-09-22 16:44:45 -07001204 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001205 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001206
1207 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001208
Denis Karpov191d1f12009-09-22 16:44:55 -07001209 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001210 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001211 else {
1212 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001213 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001214 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001215
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001216 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001217 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001218 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001219 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001220 return IRQ_HANDLED;
1221}
1222
Denis Karpov70a33412009-09-22 16:44:59 -07001223static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001224 struct mmc_data *data)
1225{
1226 int sync_dev;
1227
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001228 if (data->flags & MMC_DATA_WRITE)
1229 sync_dev = host->dma_line_tx;
1230 else
1231 sync_dev = host->dma_line_rx;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001232 return sync_dev;
1233}
1234
Denis Karpov70a33412009-09-22 16:44:59 -07001235static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001236 struct mmc_data *data,
1237 struct scatterlist *sgl)
1238{
1239 int blksz, nblk, dma_ch;
1240
1241 dma_ch = host->dma_ch;
1242 if (data->flags & MMC_DATA_WRITE) {
1243 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1244 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1245 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1246 sg_dma_address(sgl), 0, 0);
1247 } else {
1248 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
Denis Karpov191d1f12009-09-22 16:44:55 -07001249 (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001250 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1251 sg_dma_address(sgl), 0, 0);
1252 }
1253
1254 blksz = host->data->blksz;
1255 nblk = sg_dma_len(sgl) / blksz;
1256
1257 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1258 blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
Denis Karpov70a33412009-09-22 16:44:59 -07001259 omap_hsmmc_get_dma_sync_dev(host, data),
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001260 !(data->flags & MMC_DATA_WRITE));
1261
1262 omap_start_dma(dma_ch);
1263}
1264
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001265/*
1266 * DMA call back function
1267 */
Adrian Hunterb4175772010-05-26 14:42:06 -07001268static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001269{
Adrian Hunterb4175772010-05-26 14:42:06 -07001270 struct omap_hsmmc_host *host = cb_data;
Adrian Hunter770d7432011-05-06 12:14:11 +03001271 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001272 int dma_ch, req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001273
Venkatraman Sf3584e52010-08-10 18:01:54 -07001274 if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1275 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1276 ch_status);
1277 return;
1278 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001279
Adrian Hunterb4175772010-05-26 14:42:06 -07001280 spin_lock(&host->irq_lock);
1281 if (host->dma_ch < 0) {
1282 spin_unlock(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001283 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001284 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001285
Adrian Hunter770d7432011-05-06 12:14:11 +03001286 data = host->mrq->data;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001287 host->dma_sg_idx++;
1288 if (host->dma_sg_idx < host->dma_len) {
1289 /* Fire up the next transfer. */
Adrian Hunterb4175772010-05-26 14:42:06 -07001290 omap_hsmmc_config_dma_params(host, data,
1291 data->sg + host->dma_sg_idx);
1292 spin_unlock(&host->irq_lock);
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001293 return;
1294 }
1295
Per Forlin9782aff2011-07-01 18:55:23 +02001296 if (!data->host_cookie)
1297 dma_unmap_sg(mmc_dev(host->mmc), data->sg, data->sg_len,
1298 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001299
1300 req_in_progress = host->req_in_progress;
1301 dma_ch = host->dma_ch;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001302 host->dma_ch = -1;
Adrian Hunterb4175772010-05-26 14:42:06 -07001303 spin_unlock(&host->irq_lock);
1304
1305 omap_free_dma(dma_ch);
1306
1307 /* If DMA has finished after TC, complete the request */
1308 if (!req_in_progress) {
1309 struct mmc_request *mrq = host->mrq;
1310
1311 host->mrq = NULL;
1312 mmc_request_done(host->mmc, mrq);
1313 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001314}
1315
Per Forlin9782aff2011-07-01 18:55:23 +02001316static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1317 struct mmc_data *data,
1318 struct omap_hsmmc_next *next)
1319{
1320 int dma_len;
1321
1322 if (!next && data->host_cookie &&
1323 data->host_cookie != host->next_data.cookie) {
Girish K Sa3c76eb2011-10-11 11:44:09 +05301324 pr_warning("[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001325 " host->next_data.cookie %d\n",
1326 __func__, data->host_cookie, host->next_data.cookie);
1327 data->host_cookie = 0;
1328 }
1329
1330 /* Check if next job is already prepared */
1331 if (next ||
1332 (!next && data->host_cookie != host->next_data.cookie)) {
1333 dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1334 data->sg_len,
1335 omap_hsmmc_get_dma_dir(host, data));
1336
1337 } else {
1338 dma_len = host->next_data.dma_len;
1339 host->next_data.dma_len = 0;
1340 }
1341
1342
1343 if (dma_len == 0)
1344 return -EINVAL;
1345
1346 if (next) {
1347 next->dma_len = dma_len;
1348 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1349 } else
1350 host->dma_len = dma_len;
1351
1352 return 0;
1353}
1354
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001355/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001356 * Routine to configure and start DMA for the MMC card
1357 */
Denis Karpov70a33412009-09-22 16:44:59 -07001358static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1359 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001360{
Adrian Hunterb4175772010-05-26 14:42:06 -07001361 int dma_ch = 0, ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001362 struct mmc_data *data = req->data;
1363
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001364 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001365 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001366 struct scatterlist *sgl;
1367
1368 sgl = data->sg + i;
1369 if (sgl->length % data->blksz)
1370 return -EINVAL;
1371 }
1372 if ((data->blksz % 4) != 0)
1373 /* REVISIT: The MMC buffer increments only when MSB is written.
1374 * Return error for blksz which is non multiple of four.
1375 */
1376 return -EINVAL;
1377
Adrian Hunterb4175772010-05-26 14:42:06 -07001378 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001379
Denis Karpov70a33412009-09-22 16:44:59 -07001380 ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1381 "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001382 if (ret != 0) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001383 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001384 "%s: omap_request_dma() failed with %d\n",
1385 mmc_hostname(host->mmc), ret);
1386 return ret;
1387 }
Per Forlin9782aff2011-07-01 18:55:23 +02001388 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL);
1389 if (ret)
1390 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001391
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001392 host->dma_ch = dma_ch;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001393 host->dma_sg_idx = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001394
Denis Karpov70a33412009-09-22 16:44:59 -07001395 omap_hsmmc_config_dma_params(host, data, data->sg);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001396
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001397 return 0;
1398}
1399
Denis Karpov70a33412009-09-22 16:44:59 -07001400static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001401 unsigned int timeout_ns,
1402 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001403{
1404 unsigned int timeout, cycle_ns;
1405 uint32_t reg, clkd, dto = 0;
1406
1407 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1408 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1409 if (clkd == 0)
1410 clkd = 1;
1411
1412 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001413 timeout = timeout_ns / cycle_ns;
1414 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001415 if (timeout) {
1416 while ((timeout & 0x80000000) == 0) {
1417 dto += 1;
1418 timeout <<= 1;
1419 }
1420 dto = 31 - dto;
1421 timeout <<= 1;
1422 if (timeout && dto)
1423 dto += 1;
1424 if (dto >= 13)
1425 dto -= 13;
1426 else
1427 dto = 0;
1428 if (dto > 14)
1429 dto = 14;
1430 }
1431
1432 reg &= ~DTO_MASK;
1433 reg |= dto << DTO_SHIFT;
1434 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1435}
1436
1437/*
1438 * Configure block length for MMC/SD cards and initiate the transfer.
1439 */
1440static int
Denis Karpov70a33412009-09-22 16:44:59 -07001441omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001442{
1443 int ret;
1444 host->data = req->data;
1445
1446 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001447 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001448 /*
1449 * Set an arbitrary 100ms data timeout for commands with
1450 * busy signal.
1451 */
1452 if (req->cmd->flags & MMC_RSP_BUSY)
1453 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001454 return 0;
1455 }
1456
1457 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1458 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001459 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001460
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001461 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001462 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001463 if (ret != 0) {
1464 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1465 return ret;
1466 }
1467 }
1468 return 0;
1469}
1470
Per Forlin9782aff2011-07-01 18:55:23 +02001471static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1472 int err)
1473{
1474 struct omap_hsmmc_host *host = mmc_priv(mmc);
1475 struct mmc_data *data = mrq->data;
1476
1477 if (host->use_dma) {
Per Forlin053bf342011-11-07 21:55:11 +05301478 if (data->host_cookie)
1479 dma_unmap_sg(mmc_dev(host->mmc), data->sg,
1480 data->sg_len,
1481 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001482 data->host_cookie = 0;
1483 }
1484}
1485
1486static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1487 bool is_first_req)
1488{
1489 struct omap_hsmmc_host *host = mmc_priv(mmc);
1490
1491 if (mrq->data->host_cookie) {
1492 mrq->data->host_cookie = 0;
1493 return ;
1494 }
1495
1496 if (host->use_dma)
1497 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
1498 &host->next_data))
1499 mrq->data->host_cookie = 0;
1500}
1501
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001502/*
1503 * Request function. for read/write operation
1504 */
Denis Karpov70a33412009-09-22 16:44:59 -07001505static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001506{
Denis Karpov70a33412009-09-22 16:44:59 -07001507 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001508 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001509
Adrian Hunterb4175772010-05-26 14:42:06 -07001510 BUG_ON(host->req_in_progress);
1511 BUG_ON(host->dma_ch != -1);
1512 if (host->protect_card) {
1513 if (host->reqs_blocked < 3) {
1514 /*
1515 * Ensure the controller is left in a consistent
1516 * state by resetting the command and data state
1517 * machines.
1518 */
1519 omap_hsmmc_reset_controller_fsm(host, SRD);
1520 omap_hsmmc_reset_controller_fsm(host, SRC);
1521 host->reqs_blocked += 1;
1522 }
1523 req->cmd->error = -EBADF;
1524 if (req->data)
1525 req->data->error = -EBADF;
1526 req->cmd->retries = 0;
1527 mmc_request_done(mmc, req);
1528 return;
1529 } else if (host->reqs_blocked)
1530 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001531 WARN_ON(host->mrq != NULL);
1532 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001533 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001534 if (err) {
1535 req->cmd->error = err;
1536 if (req->data)
1537 req->data->error = err;
1538 host->mrq = NULL;
1539 mmc_request_done(mmc, req);
1540 return;
1541 }
1542
Denis Karpov70a33412009-09-22 16:44:59 -07001543 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001544}
1545
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001546/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001547static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001548{
Denis Karpov70a33412009-09-22 16:44:59 -07001549 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001550 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001551
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301552 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001553
Adrian Huntera3621462009-09-22 16:44:42 -07001554 if (ios->power_mode != host->power_mode) {
1555 switch (ios->power_mode) {
1556 case MMC_POWER_OFF:
1557 mmc_slot(host).set_power(host->dev, host->slot_id,
1558 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001559 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001560 break;
1561 case MMC_POWER_UP:
1562 mmc_slot(host).set_power(host->dev, host->slot_id,
1563 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001564 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001565 break;
1566 case MMC_POWER_ON:
1567 do_send_init_stream = 1;
1568 break;
1569 }
1570 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001571 }
1572
Denis Karpovdd498ef2009-09-22 16:44:49 -07001573 /* FIXME: set registers based only on changes to ios */
1574
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001575 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001576
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301577 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001578 /* Only MMC1 can interface at 3V without some flavor
1579 * of external transceiver; but they all handle 1.8V.
1580 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001581 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1582 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1583 /*
1584 * The mmc_select_voltage fn of the core does
1585 * not seem to set the power_mode to
1586 * MMC_POWER_UP upon recalculating the voltage.
1587 * vdd 1.8v.
1588 */
Denis Karpov70a33412009-09-22 16:44:59 -07001589 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1590 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001591 "Switch operation failed\n");
1592 }
1593 }
1594
Andy Shevchenko5934df22011-05-06 12:14:06 +03001595 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001596
Adrian Huntera3621462009-09-22 16:44:42 -07001597 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001598 send_init_stream(host);
1599
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001600 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001601
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301602 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001603}
1604
1605static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1606{
Denis Karpov70a33412009-09-22 16:44:59 -07001607 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001608
Denis Karpov191d1f12009-09-22 16:44:55 -07001609 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001610 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001611 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001612}
1613
1614static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1615{
Denis Karpov70a33412009-09-22 16:44:59 -07001616 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001617
Denis Karpov191d1f12009-09-22 16:44:55 -07001618 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001619 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001620 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001621}
1622
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001623static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1624{
1625 struct omap_hsmmc_host *host = mmc_priv(mmc);
1626
1627 if (mmc_slot(host).init_card)
1628 mmc_slot(host).init_card(card);
1629}
1630
Denis Karpov70a33412009-09-22 16:44:59 -07001631static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001632{
1633 u32 hctl, capa, value;
1634
1635 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301636 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001637 hctl = SDVS30;
1638 capa = VS30 | VS18;
1639 } else {
1640 hctl = SDVS18;
1641 capa = VS18;
1642 }
1643
1644 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1645 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1646
1647 value = OMAP_HSMMC_READ(host->base, CAPA);
1648 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1649
1650 /* Set the controller to AUTO IDLE mode */
1651 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1652 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1653
1654 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001655 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001656}
1657
Denis Karpov70a33412009-09-22 16:44:59 -07001658static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001659{
Denis Karpov70a33412009-09-22 16:44:59 -07001660 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001661
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301662 pm_runtime_get_sync(host->dev);
1663
Denis Karpovdd498ef2009-09-22 16:44:49 -07001664 return 0;
1665}
1666
Denis Karpov70a33412009-09-22 16:44:59 -07001667static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001668{
Denis Karpov70a33412009-09-22 16:44:59 -07001669 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001670
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301671 pm_runtime_mark_last_busy(host->dev);
1672 pm_runtime_put_autosuspend(host->dev);
1673
Denis Karpovdd498ef2009-09-22 16:44:49 -07001674 return 0;
1675}
1676
Denis Karpov70a33412009-09-22 16:44:59 -07001677static const struct mmc_host_ops omap_hsmmc_ops = {
1678 .enable = omap_hsmmc_enable_fclk,
1679 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001680 .post_req = omap_hsmmc_post_req,
1681 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001682 .request = omap_hsmmc_request,
1683 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001684 .get_cd = omap_hsmmc_get_cd,
1685 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001686 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001687 /* NYET -- enable_sdio_irq */
1688};
1689
Denis Karpovd900f712009-09-22 16:44:38 -07001690#ifdef CONFIG_DEBUG_FS
1691
Denis Karpov70a33412009-09-22 16:44:59 -07001692static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001693{
1694 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001695 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001696 int context_loss = 0;
1697
Denis Karpov70a33412009-09-22 16:44:59 -07001698 if (host->pdata->get_context_loss_count)
1699 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001700
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001701 seq_printf(s, "mmc%d:\n"
1702 " enabled:\t%d\n"
Denis Karpovdd498ef2009-09-22 16:44:49 -07001703 " dpm_state:\t%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001704 " nesting_cnt:\t%d\n"
Denis Karpov11dd62a2009-09-22 16:44:43 -07001705 " ctx_loss:\t%d:%d\n"
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001706 "\nregs:\n",
Denis Karpovdd498ef2009-09-22 16:44:49 -07001707 mmc->index, mmc->enabled ? 1 : 0,
1708 host->dpm_state, mmc->nesting_cnt,
Denis Karpov11dd62a2009-09-22 16:44:43 -07001709 host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001710
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301711 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001712 seq_printf(s, "host suspended, can't read registers\n");
1713 return 0;
1714 }
1715
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301716 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001717
1718 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1719 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1720 seq_printf(s, "CON:\t\t0x%08x\n",
1721 OMAP_HSMMC_READ(host->base, CON));
1722 seq_printf(s, "HCTL:\t\t0x%08x\n",
1723 OMAP_HSMMC_READ(host->base, HCTL));
1724 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1725 OMAP_HSMMC_READ(host->base, SYSCTL));
1726 seq_printf(s, "IE:\t\t0x%08x\n",
1727 OMAP_HSMMC_READ(host->base, IE));
1728 seq_printf(s, "ISE:\t\t0x%08x\n",
1729 OMAP_HSMMC_READ(host->base, ISE));
1730 seq_printf(s, "CAPA:\t\t0x%08x\n",
1731 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001732
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301733 pm_runtime_mark_last_busy(host->dev);
1734 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001735
Denis Karpovd900f712009-09-22 16:44:38 -07001736 return 0;
1737}
1738
Denis Karpov70a33412009-09-22 16:44:59 -07001739static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001740{
Denis Karpov70a33412009-09-22 16:44:59 -07001741 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001742}
1743
1744static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001745 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001746 .read = seq_read,
1747 .llseek = seq_lseek,
1748 .release = single_release,
1749};
1750
Denis Karpov70a33412009-09-22 16:44:59 -07001751static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001752{
1753 if (mmc->debugfs_root)
1754 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1755 mmc, &mmc_regs_fops);
1756}
1757
1758#else
1759
Denis Karpov70a33412009-09-22 16:44:59 -07001760static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001761{
1762}
1763
1764#endif
1765
Denis Karpov70a33412009-09-22 16:44:59 -07001766static int __init omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001767{
1768 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1769 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001770 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001771 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001772 int ret, irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001773
1774 if (pdata == NULL) {
1775 dev_err(&pdev->dev, "Platform Data is missing\n");
1776 return -ENXIO;
1777 }
1778
1779 if (pdata->nr_slots == 0) {
1780 dev_err(&pdev->dev, "No Slots\n");
1781 return -ENXIO;
1782 }
1783
1784 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1785 irq = platform_get_irq(pdev, 0);
1786 if (res == NULL || irq < 0)
1787 return -ENXIO;
1788
kishore kadiyala91a0b082010-10-01 16:35:28 -07001789 res->start += pdata->reg_offset;
1790 res->end += pdata->reg_offset;
Chris Ball984b2032011-03-22 16:34:42 -07001791 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001792 if (res == NULL)
1793 return -EBUSY;
1794
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001795 ret = omap_hsmmc_gpio_init(pdata);
1796 if (ret)
1797 goto err;
1798
Denis Karpov70a33412009-09-22 16:44:59 -07001799 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001800 if (!mmc) {
1801 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001802 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001803 }
1804
1805 host = mmc_priv(mmc);
1806 host->mmc = mmc;
1807 host->pdata = pdata;
1808 host->dev = &pdev->dev;
1809 host->use_dma = 1;
1810 host->dev->dma_mask = &pdata->dma_mask;
1811 host->dma_ch = -1;
1812 host->irq = irq;
1813 host->id = pdev->id;
1814 host->slot_id = 0;
1815 host->mapbase = res->start;
1816 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001817 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001818 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001819
1820 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001821
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301822 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001823
Adrian Huntere0eb2422010-02-15 10:03:34 -08001824 /*
1825 * If regulator_disable can only put vcc_aux to sleep then there is
1826 * no off state.
1827 */
1828 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1829 mmc_slot(host).no_off = 1;
1830
Daniel Mackd418ed82012-02-19 13:20:33 +01001831 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1832
1833 if (pdata->max_freq > 0)
1834 mmc->f_max = pdata->max_freq;
1835 else
1836 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001837
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001838 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001839
Russell King6f7607c2009-01-28 10:22:50 +00001840 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001841 if (IS_ERR(host->fclk)) {
1842 ret = PTR_ERR(host->fclk);
1843 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001844 goto err1;
1845 }
1846
Denis Karpov70a33412009-09-22 16:44:59 -07001847 omap_hsmmc_context_save(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001848
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001849 mmc->caps |= MMC_CAP_DISABLE;
Paul Walmsley9b682562011-10-06 14:50:35 -06001850 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1851 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1852 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1853 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001854
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301855 pm_runtime_enable(host->dev);
1856 pm_runtime_get_sync(host->dev);
1857 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1858 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001859
Adrian Hunter2bec0892009-09-22 16:45:02 -07001860 if (cpu_is_omap2430()) {
1861 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1862 /*
1863 * MMC can still work without debounce clock.
1864 */
1865 if (IS_ERR(host->dbclk))
1866 dev_warn(mmc_dev(host->mmc),
1867 "Failed to get debounce clock\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001868 else
Adrian Hunter2bec0892009-09-22 16:45:02 -07001869 host->got_dbclk = 1;
1870
1871 if (host->got_dbclk)
1872 if (clk_enable(host->dbclk) != 0)
1873 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
1874 " clk failed\n");
1875 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001876
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001877 /* Since we do only SG emulation, we can have as many segs
1878 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001879 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001880
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001881 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1882 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1883 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1884 mmc->max_seg_size = mmc->max_req_size;
1885
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001886 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001887 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001888
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001889 mmc->caps |= mmc_slot(host).caps;
1890 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001891 mmc->caps |= MMC_CAP_4_BIT_DATA;
1892
Denis Karpov191d1f12009-09-22 16:44:55 -07001893 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001894 mmc->caps |= MMC_CAP_NONREMOVABLE;
1895
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001896 mmc->pm_caps = mmc_slot(host).pm_caps;
1897
Denis Karpov70a33412009-09-22 16:44:59 -07001898 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001899
Balaji T Kb7bf7732012-03-07 09:55:30 -05001900 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1901 if (!res) {
1902 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001903 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001904 }
Balaji T Kb7bf7732012-03-07 09:55:30 -05001905 host->dma_line_tx = res->start;
1906
1907 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1908 if (!res) {
1909 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1910 goto err_irq;
1911 }
1912 host->dma_line_rx = res->start;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001913
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001914 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001915 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001916 mmc_hostname(mmc), host);
1917 if (ret) {
1918 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
1919 goto err_irq;
1920 }
1921
1922 if (pdata->init != NULL) {
1923 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07001924 dev_dbg(mmc_dev(host->mmc),
1925 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001926 goto err_irq_cd_init;
1927 }
1928 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001929
Adrian Hunterb702b102010-02-15 10:03:35 -08001930 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001931 ret = omap_hsmmc_reg_get(host);
1932 if (ret)
1933 goto err_reg;
1934 host->use_reg = 1;
1935 }
1936
David Brownellb583f262009-05-28 14:04:03 -07001937 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001938
1939 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001940 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001941 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1942 NULL,
1943 omap_hsmmc_detect,
1944 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
1945 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001946 if (ret) {
1947 dev_dbg(mmc_dev(host->mmc),
1948 "Unable to grab MMC CD IRQ\n");
1949 goto err_irq_cd;
1950 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001951 pdata->suspend = omap_hsmmc_suspend_cdirq;
1952 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001953 }
1954
Adrian Hunterb4175772010-05-26 14:42:06 -07001955 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001956
Adrian Hunterb62f6222009-09-22 16:45:01 -07001957 omap_hsmmc_protect_card(host);
1958
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001959 mmc_add_host(mmc);
1960
Denis Karpov191d1f12009-09-22 16:44:55 -07001961 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001962 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1963 if (ret < 0)
1964 goto err_slot_name;
1965 }
Denis Karpov191d1f12009-09-22 16:44:55 -07001966 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001967 ret = device_create_file(&mmc->class_dev,
1968 &dev_attr_cover_switch);
1969 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001970 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001971 }
1972
Denis Karpov70a33412009-09-22 16:44:59 -07001973 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301974 pm_runtime_mark_last_busy(host->dev);
1975 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001976
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001977 return 0;
1978
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001979err_slot_name:
1980 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001981 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001982err_irq_cd:
1983 if (host->use_reg)
1984 omap_hsmmc_reg_put(host);
1985err_reg:
1986 if (host->pdata->cleanup)
1987 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001988err_irq_cd_init:
1989 free_irq(host->irq, host);
1990err_irq:
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301991 pm_runtime_mark_last_busy(host->dev);
1992 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001993 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001994 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001995 clk_disable(host->dbclk);
1996 clk_put(host->dbclk);
1997 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001998err1:
1999 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002000 platform_set_drvdata(pdev, NULL);
2001 mmc_free_host(mmc);
2002err_alloc:
2003 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002004err:
Chris Ball984b2032011-03-22 16:34:42 -07002005 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002006 return ret;
2007}
2008
Denis Karpov70a33412009-09-22 16:44:59 -07002009static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002010{
Denis Karpov70a33412009-09-22 16:44:59 -07002011 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002012 struct resource *res;
2013
2014 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302015 pm_runtime_get_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002016 mmc_remove_host(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002017 if (host->use_reg)
2018 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002019 if (host->pdata->cleanup)
2020 host->pdata->cleanup(&pdev->dev);
2021 free_irq(host->irq, host);
2022 if (mmc_slot(host).card_detect_irq)
2023 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302025 pm_runtime_put_sync(host->dev);
2026 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002027 clk_put(host->fclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002028 if (host->got_dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002029 clk_disable(host->dbclk);
2030 clk_put(host->dbclk);
2031 }
2032
2033 mmc_free_host(host->mmc);
2034 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002035 omap_hsmmc_gpio_free(pdev->dev.platform_data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002036 }
2037
2038 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2039 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002040 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002041 platform_set_drvdata(pdev, NULL);
2042
2043 return 0;
2044}
2045
2046#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002047static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002048{
2049 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002050 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002051 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002052
2053 if (host && host->suspended)
2054 return 0;
2055
2056 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302057 pm_runtime_get_sync(host->dev);
Adrian Huntera6b22402009-09-22 16:44:45 -07002058 host->suspended = 1;
2059 if (host->pdata->suspend) {
2060 ret = host->pdata->suspend(&pdev->dev,
2061 host->slot_id);
2062 if (ret) {
2063 dev_dbg(mmc_dev(host->mmc),
2064 "Unable to handle MMC board"
2065 " level suspend\n");
2066 host->suspended = 0;
2067 return ret;
2068 }
2069 }
Matt Fleming1a13f8f2010-05-26 14:42:08 -07002070 ret = mmc_suspend_host(host->mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302071
Eliad Peller31f9d462011-11-22 16:02:17 +02002072 if (ret) {
Adrian Huntera6b22402009-09-22 16:44:45 -07002073 host->suspended = 0;
2074 if (host->pdata->resume) {
2075 ret = host->pdata->resume(&pdev->dev,
2076 host->slot_id);
2077 if (ret)
2078 dev_dbg(mmc_dev(host->mmc),
2079 "Unmask interrupt failed\n");
2080 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002081 goto err;
Adrian Huntera6b22402009-09-22 16:44:45 -07002082 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002083
2084 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2085 omap_hsmmc_disable_irq(host);
2086 OMAP_HSMMC_WRITE(host->base, HCTL,
2087 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2088 }
2089 if (host->got_dbclk)
2090 clk_disable(host->dbclk);
2091
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002092 }
Eliad Peller31f9d462011-11-22 16:02:17 +02002093err:
2094 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002095 return ret;
2096}
2097
2098/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002099static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002100{
2101 int ret = 0;
Kevin Hilmana791daa2010-05-26 14:42:07 -07002102 struct platform_device *pdev = to_platform_device(dev);
Denis Karpov70a33412009-09-22 16:44:59 -07002103 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002104
2105 if (host && !host->suspended)
2106 return 0;
2107
2108 if (host) {
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302109 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002110
Adrian Hunter2bec0892009-09-22 16:45:02 -07002111 if (host->got_dbclk)
2112 clk_enable(host->dbclk);
2113
Eliad Peller31f9d462011-11-22 16:02:17 +02002114 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2115 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002116
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002117 if (host->pdata->resume) {
2118 ret = host->pdata->resume(&pdev->dev, host->slot_id);
2119 if (ret)
2120 dev_dbg(mmc_dev(host->mmc),
2121 "Unmask interrupt failed\n");
2122 }
2123
Adrian Hunterb62f6222009-09-22 16:45:01 -07002124 omap_hsmmc_protect_card(host);
2125
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002126 /* Notify the core to resume the host */
2127 ret = mmc_resume_host(host->mmc);
2128 if (ret == 0)
2129 host->suspended = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302130
2131 pm_runtime_mark_last_busy(host->dev);
2132 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002133 }
2134
2135 return ret;
2136
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002137}
2138
2139#else
Denis Karpov70a33412009-09-22 16:44:59 -07002140#define omap_hsmmc_suspend NULL
2141#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002142#endif
2143
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302144static int omap_hsmmc_runtime_suspend(struct device *dev)
2145{
2146 struct omap_hsmmc_host *host;
2147
2148 host = platform_get_drvdata(to_platform_device(dev));
2149 omap_hsmmc_context_save(host);
2150 dev_dbg(mmc_dev(host->mmc), "disabled\n");
2151
2152 return 0;
2153}
2154
2155static int omap_hsmmc_runtime_resume(struct device *dev)
2156{
2157 struct omap_hsmmc_host *host;
2158
2159 host = platform_get_drvdata(to_platform_device(dev));
2160 omap_hsmmc_context_restore(host);
2161 dev_dbg(mmc_dev(host->mmc), "enabled\n");
2162
2163 return 0;
2164}
2165
Kevin Hilmana791daa2010-05-26 14:42:07 -07002166static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002167 .suspend = omap_hsmmc_suspend,
2168 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302169 .runtime_suspend = omap_hsmmc_runtime_suspend,
2170 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002171};
2172
2173static struct platform_driver omap_hsmmc_driver = {
2174 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002175 .driver = {
2176 .name = DRIVER_NAME,
2177 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002178 .pm = &omap_hsmmc_dev_pm_ops,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002179 },
2180};
2181
Denis Karpov70a33412009-09-22 16:44:59 -07002182static int __init omap_hsmmc_init(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002183{
2184 /* Register the MMC driver */
Roger Quadros87532982009-10-26 16:49:38 -07002185 return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002186}
2187
Denis Karpov70a33412009-09-22 16:44:59 -07002188static void __exit omap_hsmmc_cleanup(void)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002189{
2190 /* Unregister MMC driver */
Denis Karpov70a33412009-09-22 16:44:59 -07002191 platform_driver_unregister(&omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002192}
2193
Denis Karpov70a33412009-09-22 16:44:59 -07002194module_init(omap_hsmmc_init);
2195module_exit(omap_hsmmc_cleanup);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002196
2197MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2198MODULE_LICENSE("GPL");
2199MODULE_ALIAS("platform:" DRIVER_NAME);
2200MODULE_AUTHOR("Texas Instruments Inc");