blob: 54bfd0cc106b92280cd75818310d81aa56c48ccb [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f442011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
Russell Kingc5c98922012-04-13 12:14:39 +010022#include <linux/dmaengine.h>
Denis Karpovd900f712009-09-22 16:44:38 -070023#include <linux/seq_file.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010024#include <linux/interrupt.h>
25#include <linux/delay.h>
26#include <linux/dma-mapping.h>
27#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010028#include <linux/timer.h>
29#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053030#include <linux/of.h>
31#include <linux/of_gpio.h>
32#include <linux/of_device.h>
Russell King3451c062012-04-21 22:35:42 +010033#include <linux/omap-dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010034#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070035#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070036#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010037#include <linux/io.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080038#include <linux/gpio.h>
39#include <linux/regulator/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053040#include <linux/pm_runtime.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010041#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070042#include <plat/mmc.h>
43#include <plat/cpu.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010044
45/* OMAP HSMMC Host Controller Registers */
Denis Karpov11dd62a2009-09-22 16:44:43 -070046#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010047#define OMAP_HSMMC_CON 0x002C
48#define OMAP_HSMMC_BLK 0x0104
49#define OMAP_HSMMC_ARG 0x0108
50#define OMAP_HSMMC_CMD 0x010C
51#define OMAP_HSMMC_RSP10 0x0110
52#define OMAP_HSMMC_RSP32 0x0114
53#define OMAP_HSMMC_RSP54 0x0118
54#define OMAP_HSMMC_RSP76 0x011C
55#define OMAP_HSMMC_DATA 0x0120
56#define OMAP_HSMMC_HCTL 0x0128
57#define OMAP_HSMMC_SYSCTL 0x012C
58#define OMAP_HSMMC_STAT 0x0130
59#define OMAP_HSMMC_IE 0x0134
60#define OMAP_HSMMC_ISE 0x0138
61#define OMAP_HSMMC_CAPA 0x0140
62
63#define VS18 (1 << 26)
64#define VS30 (1 << 25)
65#define SDVS18 (0x5 << 9)
66#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080067#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010068#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010069#define SDVSCLR 0xFFFFF1FF
70#define SDVSDET 0x00000400
71#define AUTOIDLE 0x1
72#define SDBP (1 << 8)
73#define DTO 0xe
74#define ICE 0x1
75#define ICS 0x2
76#define CEN (1 << 2)
77#define CLKD_MASK 0x0000FFC0
78#define CLKD_SHIFT 6
79#define DTO_MASK 0x000F0000
80#define DTO_SHIFT 16
81#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070082#define BWR_ENABLE (1 << 4)
83#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070084#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010085#define INIT_STREAM (1 << 1)
86#define DP_SELECT (1 << 21)
87#define DDIR (1 << 4)
88#define DMA_EN 0x1
89#define MSBS (1 << 5)
90#define BCE (1 << 1)
91#define FOUR_BIT (1 << 1)
Balaji T K03b5d922012-04-09 12:08:33 +053092#define DDR (1 << 19)
Jarkko Lavinen73153012008-11-21 16:49:54 +020093#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010094#define CC 0x1
95#define TC 0x02
96#define OD 0x1
97#define ERR (1 << 15)
98#define CMD_TIMEOUT (1 << 16)
99#define DATA_TIMEOUT (1 << 20)
100#define CMD_CRC (1 << 17)
101#define DATA_CRC (1 << 21)
102#define CARD_ERR (1 << 28)
103#define STAT_CLEAR 0xFFFFFFFF
104#define INIT_STREAM_CMD 0x00000000
105#define DUAL_VOLT_OCR_BIT 7
106#define SRC (1 << 25)
107#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700108#define SOFTRESET (1 << 1)
109#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100110
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530111#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100112#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400113#define OMAP_MMC_MIN_CLOCK 400000
114#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530115#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100116
117/*
118 * One controller can have multiple slots, like on some omap boards using
119 * omap.c controller driver. Luckily this is not currently done on any known
120 * omap_hsmmc.c device.
121 */
122#define mmc_slot(host) (host->pdata->slots[host->slot_id])
123
124/*
125 * MMC Host controller read/write API's
126 */
127#define OMAP_HSMMC_READ(base, reg) \
128 __raw_readl((base) + OMAP_HSMMC_##reg)
129
130#define OMAP_HSMMC_WRITE(base, reg, val) \
131 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
132
Per Forlin9782aff2011-07-01 18:55:23 +0200133struct omap_hsmmc_next {
134 unsigned int dma_len;
135 s32 cookie;
136};
137
Denis Karpov70a33412009-09-22 16:44:59 -0700138struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100139 struct device *dev;
140 struct mmc_host *mmc;
141 struct mmc_request *mrq;
142 struct mmc_command *cmd;
143 struct mmc_data *data;
144 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100145 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800146 /*
147 * vcc == configured supply
148 * vcc_aux == optional
149 * - MMC1, supply for DAT4..DAT7
150 * - MMC2/MMC2, external level shifter voltage supply, for
151 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
152 */
153 struct regulator *vcc;
154 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155 void __iomem *base;
156 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700157 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100158 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200159 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100160 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700161 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100162 int suspended;
163 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100164 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100165 struct dma_chan *tx_chan;
166 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100167 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200168 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700169 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700170 int protect_card;
171 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800172 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700173 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200174 struct omap_hsmmc_next next_data;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700175
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100176 struct omap_mmc_platform_data *pdata;
177};
178
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800179static int omap_hsmmc_card_detect(struct device *dev, int slot)
180{
181 struct omap_mmc_platform_data *mmc = dev->platform_data;
182
183 /* NOTE: assumes card detect signal is active-low */
184 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
185}
186
187static int omap_hsmmc_get_wp(struct device *dev, int slot)
188{
189 struct omap_mmc_platform_data *mmc = dev->platform_data;
190
191 /* NOTE: assumes write protect signal is active-high */
192 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
193}
194
195static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
196{
197 struct omap_mmc_platform_data *mmc = dev->platform_data;
198
199 /* NOTE: assumes card detect signal is active-low */
200 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
201}
202
203#ifdef CONFIG_PM
204
205static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
206{
207 struct omap_mmc_platform_data *mmc = dev->platform_data;
208
209 disable_irq(mmc->slots[0].card_detect_irq);
210 return 0;
211}
212
213static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
214{
215 struct omap_mmc_platform_data *mmc = dev->platform_data;
216
217 enable_irq(mmc->slots[0].card_detect_irq);
218 return 0;
219}
220
221#else
222
223#define omap_hsmmc_suspend_cdirq NULL
224#define omap_hsmmc_resume_cdirq NULL
225
226#endif
227
Adrian Hunterb702b102010-02-15 10:03:35 -0800228#ifdef CONFIG_REGULATOR
229
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500230static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800231 int vdd)
232{
233 struct omap_hsmmc_host *host =
234 platform_get_drvdata(to_platform_device(dev));
235 int ret = 0;
236
237 /*
238 * If we don't see a Vcc regulator, assume it's a fixed
239 * voltage always-on regulator.
240 */
241 if (!host->vcc)
242 return 0;
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530243 /*
244 * With DT, never turn OFF the regulator. This is because
245 * the pbias cell programming support is still missing when
246 * booting with Device tree
247 */
Rajendra Nayak4d048f92012-04-11 15:33:13 +0530248 if (dev->of_node && !vdd)
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530249 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800250
251 if (mmc_slot(host).before_set_reg)
252 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
253
254 /*
255 * Assume Vcc regulator is used only to power the card ... OMAP
256 * VDDS is used to power the pins, optionally with a transceiver to
257 * support cards using voltages other than VDDS (1.8V nominal). When a
258 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
259 *
260 * In some cases this regulator won't support enable/disable;
261 * e.g. it's a fixed rail for a WLAN chip.
262 *
263 * In other cases vcc_aux switches interface power. Example, for
264 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
265 * chips/cards need an interface voltage rail too.
266 */
267 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400268 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800269 /* Enable interface voltage rail, if needed */
270 if (ret == 0 && host->vcc_aux) {
271 ret = regulator_enable(host->vcc_aux);
272 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400273 ret = mmc_regulator_set_ocr(host->mmc,
274 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800275 }
276 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400277 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800278 if (host->vcc_aux)
279 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400280 if (!ret) {
281 /* Then proceed to shut down the local regulator */
282 ret = mmc_regulator_set_ocr(host->mmc,
283 host->vcc, 0);
284 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800285 }
286
287 if (mmc_slot(host).after_set_reg)
288 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
289
290 return ret;
291}
292
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800293static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
294{
295 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700296 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800297
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800298 reg = regulator_get(host->dev, "vmmc");
299 if (IS_ERR(reg)) {
300 dev_dbg(host->dev, "vmmc regulator missing\n");
NeilBrown1fdc90f2012-08-08 00:06:00 -0400301 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800302 } else {
NeilBrown1fdc90f2012-08-08 00:06:00 -0400303 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800304 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700305 ocr_value = mmc_regulator_get_ocrmask(reg);
306 if (!mmc_slot(host).ocr_mask) {
307 mmc_slot(host).ocr_mask = ocr_value;
308 } else {
309 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530310 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500311 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700312 mmc_slot(host).ocr_mask = 0;
313 return -EINVAL;
314 }
315 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800316
317 /* Allow an aux regulator */
318 reg = regulator_get(host->dev, "vmmc_aux");
319 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
320
Balaji T Kb1c1df72011-05-30 19:55:34 +0530321 /* For eMMC do not power off when not in sleep state */
322 if (mmc_slot(host).no_regulator_off_init)
323 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800324 /*
325 * UGLY HACK: workaround regulator framework bugs.
326 * When the bootloader leaves a supply active, it's
327 * initialized with zero usecount ... and we can't
328 * disable it without first enabling it. Until the
329 * framework is fixed, we need a workaround like this
330 * (which is safe for MMC, but not in general).
331 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300332 if (regulator_is_enabled(host->vcc) > 0 ||
333 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
334 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
335
336 mmc_slot(host).set_power(host->dev, host->slot_id,
337 1, vdd);
338 mmc_slot(host).set_power(host->dev, host->slot_id,
339 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800340 }
341 }
342
343 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800344}
345
346static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
347{
348 regulator_put(host->vcc);
349 regulator_put(host->vcc_aux);
350 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800351}
352
Adrian Hunterb702b102010-02-15 10:03:35 -0800353static inline int omap_hsmmc_have_reg(void)
354{
355 return 1;
356}
357
358#else
359
360static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
361{
362 return -EINVAL;
363}
364
365static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
366{
367}
368
369static inline int omap_hsmmc_have_reg(void)
370{
371 return 0;
372}
373
374#endif
375
376static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
377{
378 int ret;
379
380 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800381 if (pdata->slots[0].cover)
382 pdata->slots[0].get_cover_state =
383 omap_hsmmc_get_cover_state;
384 else
385 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
386 pdata->slots[0].card_detect_irq =
387 gpio_to_irq(pdata->slots[0].switch_pin);
388 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
389 if (ret)
390 return ret;
391 ret = gpio_direction_input(pdata->slots[0].switch_pin);
392 if (ret)
393 goto err_free_sp;
394 } else
395 pdata->slots[0].switch_pin = -EINVAL;
396
397 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
398 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
399 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
400 if (ret)
401 goto err_free_cd;
402 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
403 if (ret)
404 goto err_free_wp;
405 } else
406 pdata->slots[0].gpio_wp = -EINVAL;
407
408 return 0;
409
410err_free_wp:
411 gpio_free(pdata->slots[0].gpio_wp);
412err_free_cd:
413 if (gpio_is_valid(pdata->slots[0].switch_pin))
414err_free_sp:
415 gpio_free(pdata->slots[0].switch_pin);
416 return ret;
417}
418
419static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
420{
421 if (gpio_is_valid(pdata->slots[0].gpio_wp))
422 gpio_free(pdata->slots[0].gpio_wp);
423 if (gpio_is_valid(pdata->slots[0].switch_pin))
424 gpio_free(pdata->slots[0].switch_pin);
425}
426
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100427/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300428 * Start clock to the card
429 */
430static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
431{
432 OMAP_HSMMC_WRITE(host->base, SYSCTL,
433 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
434}
435
436/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100437 * Stop clock to the card
438 */
Denis Karpov70a33412009-09-22 16:44:59 -0700439static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100440{
441 OMAP_HSMMC_WRITE(host->base, SYSCTL,
442 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
443 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900444 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100445}
446
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700447static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
448 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700449{
450 unsigned int irq_mask;
451
452 if (host->use_dma)
453 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
454 else
455 irq_mask = INT_EN_MASK;
456
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700457 /* Disable timeout for erases */
458 if (cmd->opcode == MMC_ERASE)
459 irq_mask &= ~DTO_ENABLE;
460
Adrian Hunterb4175772010-05-26 14:42:06 -0700461 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
462 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
463 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
464}
465
466static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
467{
468 OMAP_HSMMC_WRITE(host->base, ISE, 0);
469 OMAP_HSMMC_WRITE(host->base, IE, 0);
470 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
471}
472
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300473/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530474static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300475{
476 u16 dsor = 0;
477
478 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530479 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300480 if (dsor > 250)
481 dsor = 250;
482 }
483
484 return dsor;
485}
486
Andy Shevchenko5934df22011-05-06 12:14:06 +0300487static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
488{
489 struct mmc_ios *ios = &host->mmc->ios;
490 unsigned long regval;
491 unsigned long timeout;
492
Venkatraman S8986d312012-08-07 19:10:38 +0530493 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300494
495 omap_hsmmc_stop_clock(host);
496
497 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
498 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530499 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300500 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
501 OMAP_HSMMC_WRITE(host->base, SYSCTL,
502 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
503
504 /* Wait till the ICS bit is set */
505 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
506 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
507 && time_before(jiffies, timeout))
508 cpu_relax();
509
510 omap_hsmmc_start_clock(host);
511}
512
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400513static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
514{
515 struct mmc_ios *ios = &host->mmc->ios;
516 u32 con;
517
518 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d922012-04-09 12:08:33 +0530519 if (ios->timing == MMC_TIMING_UHS_DDR50)
520 con |= DDR; /* configure in DDR mode */
521 else
522 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400523 switch (ios->bus_width) {
524 case MMC_BUS_WIDTH_8:
525 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
526 break;
527 case MMC_BUS_WIDTH_4:
528 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
529 OMAP_HSMMC_WRITE(host->base, HCTL,
530 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
531 break;
532 case MMC_BUS_WIDTH_1:
533 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
534 OMAP_HSMMC_WRITE(host->base, HCTL,
535 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
536 break;
537 }
538}
539
540static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
541{
542 struct mmc_ios *ios = &host->mmc->ios;
543 u32 con;
544
545 con = OMAP_HSMMC_READ(host->base, CON);
546 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
547 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
548 else
549 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
550}
551
Denis Karpov11dd62a2009-09-22 16:44:43 -0700552#ifdef CONFIG_PM
553
554/*
555 * Restore the MMC host context, if it was lost as result of a
556 * power state change.
557 */
Denis Karpov70a33412009-09-22 16:44:59 -0700558static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700559{
560 struct mmc_ios *ios = &host->mmc->ios;
561 struct omap_mmc_platform_data *pdata = host->pdata;
562 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400563 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700564 unsigned long timeout;
565
566 if (pdata->get_context_loss_count) {
567 context_loss = pdata->get_context_loss_count(host->dev);
568 if (context_loss < 0)
569 return 1;
570 }
571
572 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
573 context_loss == host->context_loss ? "not " : "");
574 if (host->context_loss == context_loss)
575 return 1;
576
Venkatraman S6c31b212012-08-08 14:26:52 +0530577 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
578 return 1;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700579
Balaji T Kc2200ef2012-03-07 09:55:30 -0500580 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700581 if (host->power_mode != MMC_POWER_OFF &&
582 (1 << ios->vdd) <= MMC_VDD_23_24)
583 hctl = SDVS18;
584 else
585 hctl = SDVS30;
586 capa = VS30 | VS18;
587 } else {
588 hctl = SDVS18;
589 capa = VS18;
590 }
591
592 OMAP_HSMMC_WRITE(host->base, HCTL,
593 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
594
595 OMAP_HSMMC_WRITE(host->base, CAPA,
596 OMAP_HSMMC_READ(host->base, CAPA) | capa);
597
598 OMAP_HSMMC_WRITE(host->base, HCTL,
599 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
600
601 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
602 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
603 && time_before(jiffies, timeout))
604 ;
605
Adrian Hunterb4175772010-05-26 14:42:06 -0700606 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700607
608 /* Do not initialize card-specific things if the power is off */
609 if (host->power_mode == MMC_POWER_OFF)
610 goto out;
611
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400612 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700613
Andy Shevchenko5934df22011-05-06 12:14:06 +0300614 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700615
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400616 omap_hsmmc_set_bus_mode(host);
617
Denis Karpov11dd62a2009-09-22 16:44:43 -0700618out:
619 host->context_loss = context_loss;
620
621 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
622 return 0;
623}
624
625/*
626 * Save the MMC host context (store the number of power state changes so far).
627 */
Denis Karpov70a33412009-09-22 16:44:59 -0700628static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700629{
630 struct omap_mmc_platform_data *pdata = host->pdata;
631 int context_loss;
632
633 if (pdata->get_context_loss_count) {
634 context_loss = pdata->get_context_loss_count(host->dev);
635 if (context_loss < 0)
636 return;
637 host->context_loss = context_loss;
638 }
639}
640
641#else
642
Denis Karpov70a33412009-09-22 16:44:59 -0700643static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700644{
645 return 0;
646}
647
Denis Karpov70a33412009-09-22 16:44:59 -0700648static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700649{
650}
651
652#endif
653
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100654/*
655 * Send init stream sequence to card
656 * before sending IDLE command
657 */
Denis Karpov70a33412009-09-22 16:44:59 -0700658static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100659{
660 int reg = 0;
661 unsigned long timeout;
662
Adrian Hunterb62f6222009-09-22 16:45:01 -0700663 if (host->protect_card)
664 return;
665
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100666 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700667
668 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100669 OMAP_HSMMC_WRITE(host->base, CON,
670 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
671 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
672
673 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
674 while ((reg != CC) && time_before(jiffies, timeout))
675 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
676
677 OMAP_HSMMC_WRITE(host->base, CON,
678 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700679
680 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
681 OMAP_HSMMC_READ(host->base, STAT);
682
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100683 enable_irq(host->irq);
684}
685
686static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700687int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100688{
689 int r = 1;
690
Denis Karpov191d1f12009-09-22 16:44:55 -0700691 if (mmc_slot(host).get_cover_state)
692 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100693 return r;
694}
695
696static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700697omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100698 char *buf)
699{
700 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700701 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100702
Denis Karpov70a33412009-09-22 16:44:59 -0700703 return sprintf(buf, "%s\n",
704 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100705}
706
Denis Karpov70a33412009-09-22 16:44:59 -0700707static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100708
709static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700710omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100711 char *buf)
712{
713 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700714 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100715
Denis Karpov191d1f12009-09-22 16:44:55 -0700716 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100717}
718
Denis Karpov70a33412009-09-22 16:44:59 -0700719static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100720
721/*
722 * Configure the response type and send the cmd.
723 */
724static void
Denis Karpov70a33412009-09-22 16:44:59 -0700725omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100726 struct mmc_data *data)
727{
728 int cmdreg = 0, resptype = 0, cmdtype = 0;
729
Venkatraman S8986d312012-08-07 19:10:38 +0530730 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100731 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
732 host->cmd = cmd;
733
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700734 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100735
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200736 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100737 if (cmd->flags & MMC_RSP_PRESENT) {
738 if (cmd->flags & MMC_RSP_136)
739 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200740 else if (cmd->flags & MMC_RSP_BUSY) {
741 resptype = 3;
742 host->response_busy = 1;
743 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100744 resptype = 2;
745 }
746
747 /*
748 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
749 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
750 * a val of 0x3, rest 0x0.
751 */
752 if (cmd == host->mrq->stop)
753 cmdtype = 0x3;
754
755 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
756
757 if (data) {
758 cmdreg |= DP_SELECT | MSBS | BCE;
759 if (data->flags & MMC_DATA_READ)
760 cmdreg |= DDIR;
761 else
762 cmdreg &= ~(DDIR);
763 }
764
765 if (host->use_dma)
766 cmdreg |= DMA_EN;
767
Adrian Hunterb4175772010-05-26 14:42:06 -0700768 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700769
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100770 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
771 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
772}
773
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200774static int
Denis Karpov70a33412009-09-22 16:44:59 -0700775omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200776{
777 if (data->flags & MMC_DATA_WRITE)
778 return DMA_TO_DEVICE;
779 else
780 return DMA_FROM_DEVICE;
781}
782
Russell Kingc5c98922012-04-13 12:14:39 +0100783static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
784 struct mmc_data *data)
785{
786 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
787}
788
Adrian Hunterb4175772010-05-26 14:42:06 -0700789static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
790{
791 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530792 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700793
Venkatraman S31463b12012-04-09 12:08:34 +0530794 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700795 host->req_in_progress = 0;
796 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530797 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700798
799 omap_hsmmc_disable_irq(host);
800 /* Do not complete the request if DMA is still in progress */
801 if (mrq->data && host->use_dma && dma_ch != -1)
802 return;
803 host->mrq = NULL;
804 mmc_request_done(host->mmc, mrq);
805}
806
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100807/*
808 * Notify the transfer complete to MMC core
809 */
810static void
Denis Karpov70a33412009-09-22 16:44:59 -0700811omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100812{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200813 if (!data) {
814 struct mmc_request *mrq = host->mrq;
815
Adrian Hunter23050102009-09-22 16:44:57 -0700816 /* TC before CC from CMD6 - don't know why, but it happens */
817 if (host->cmd && host->cmd->opcode == 6 &&
818 host->response_busy) {
819 host->response_busy = 0;
820 return;
821 }
822
Adrian Hunterb4175772010-05-26 14:42:06 -0700823 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200824 return;
825 }
826
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100827 host->data = NULL;
828
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100829 if (!data->error)
830 data->bytes_xfered += data->blocks * (data->blksz);
831 else
832 data->bytes_xfered = 0;
833
Ming Leife852272012-06-22 18:49:35 +0800834 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700835 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800836 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100837 }
Ming Leife852272012-06-22 18:49:35 +0800838 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100839}
840
841/*
842 * Notify the core about command completion
843 */
844static void
Denis Karpov70a33412009-09-22 16:44:59 -0700845omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100846{
847 host->cmd = NULL;
848
849 if (cmd->flags & MMC_RSP_PRESENT) {
850 if (cmd->flags & MMC_RSP_136) {
851 /* response type 2 */
852 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
853 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
854 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
855 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
856 } else {
857 /* response types 1, 1b, 3, 4, 5, 6 */
858 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
859 }
860 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700861 if ((host->data == NULL && !host->response_busy) || cmd->error)
862 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100863}
864
865/*
866 * DMA clean up for command errors
867 */
Denis Karpov70a33412009-09-22 16:44:59 -0700868static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100869{
Adrian Hunterb4175772010-05-26 14:42:06 -0700870 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530871 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700872
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200873 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100874
Venkatraman S31463b12012-04-09 12:08:34 +0530875 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700876 dma_ch = host->dma_ch;
877 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530878 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700879
880 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100881 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
882
883 dmaengine_terminate_all(chan);
884 dma_unmap_sg(chan->device->dev,
885 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700886 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +0100887
Per Forlin053bf342011-11-07 21:55:11 +0530888 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100889 }
890 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100891}
892
893/*
894 * Readable error output
895 */
896#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300897static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100898{
899 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700900 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300901 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
902 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
903 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
904 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100905 };
906 char res[256];
907 char *buf = res;
908 int len, i;
909
910 len = sprintf(buf, "MMC IRQ 0x%x :", status);
911 buf += len;
912
Denis Karpov70a33412009-09-22 16:44:59 -0700913 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100914 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700915 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100916 buf += len;
917 }
918
Venkatraman S8986d312012-08-07 19:10:38 +0530919 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100920}
Adrian Hunter699b9582011-05-06 12:14:01 +0300921#else
922static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
923 u32 status)
924{
925}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100926#endif /* CONFIG_MMC_DEBUG */
927
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100928/*
929 * MMC controller internal state machines reset
930 *
931 * Used to reset command or data internal state machines, using respectively
932 * SRC or SRD bit of SYSCTL register
933 * Can be called from interrupt context
934 */
Denis Karpov70a33412009-09-22 16:44:59 -0700935static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
936 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100937{
938 unsigned long i = 0;
939 unsigned long limit = (loops_per_jiffy *
940 msecs_to_jiffies(MMC_TIMEOUT_MS));
941
942 OMAP_HSMMC_WRITE(host->base, SYSCTL,
943 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
944
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700945 /*
946 * OMAP4 ES2 and greater has an updated reset logic.
947 * Monitor a 0->1 transition first
948 */
949 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -0500950 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700951 && (i++ < limit))
952 cpu_relax();
953 }
954 i = 0;
955
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100956 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
957 (i++ < limit))
958 cpu_relax();
959
960 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
961 dev_err(mmc_dev(host->mmc),
962 "Timeout waiting on controller reset in %s\n",
963 __func__);
964}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100965
Venkatraman Sae4bf782012-08-09 20:36:07 +0530966static void hsmmc_command_incomplete(struct omap_hsmmc_host *host, int err)
967{
968 omap_hsmmc_reset_controller_fsm(host, SRC);
969 host->cmd->error = err;
970
971 if (host->data) {
972 omap_hsmmc_reset_controller_fsm(host, SRD);
973 omap_hsmmc_dma_cleanup(host, err);
974 }
975
976}
977
Adrian Hunterb4175772010-05-26 14:42:06 -0700978static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100979{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100980 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -0700981 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100982
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100983 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +0530984 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100985
986 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +0300987 omap_hsmmc_dbg_report_irq(host, status);
Venkatraman Sae4bf782012-08-09 20:36:07 +0530988 if (status & (CMD_TIMEOUT | DATA_TIMEOUT))
989 hsmmc_command_incomplete(host, -ETIMEDOUT);
990 else if (status & (CMD_CRC | DATA_CRC))
991 hsmmc_command_incomplete(host, -EILSEQ);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200992
Venkatraman Sae4bf782012-08-09 20:36:07 +0530993 end_cmd = 1;
994 if (host->data || host->response_busy) {
995 end_trans = 1;
996 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100997 }
998 }
999
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001000 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001001 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001002 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001003 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001004}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001005
Adrian Hunterb4175772010-05-26 14:42:06 -07001006/*
1007 * MMC controller IRQ handler
1008 */
1009static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1010{
1011 struct omap_hsmmc_host *host = dev_id;
1012 int status;
1013
1014 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301015 while (status & INT_EN_MASK && host->req_in_progress) {
Adrian Hunterb4175772010-05-26 14:42:06 -07001016 omap_hsmmc_do_irq(host, status);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301017
Adrian Hunterb4175772010-05-26 14:42:06 -07001018 /* Flush posted write */
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301019 OMAP_HSMMC_WRITE(host->base, STAT, status);
Adrian Hunterb4175772010-05-26 14:42:06 -07001020 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301021 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001022
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001023 return IRQ_HANDLED;
1024}
1025
Denis Karpov70a33412009-09-22 16:44:59 -07001026static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001027{
1028 unsigned long i;
1029
1030 OMAP_HSMMC_WRITE(host->base, HCTL,
1031 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1032 for (i = 0; i < loops_per_jiffy; i++) {
1033 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1034 break;
1035 cpu_relax();
1036 }
1037}
1038
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001039/*
David Brownelleb250822009-02-17 14:49:01 -08001040 * Switch MMC interface voltage ... only relevant for MMC1.
1041 *
1042 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1043 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1044 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001045 */
Denis Karpov70a33412009-09-22 16:44:59 -07001046static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001047{
1048 u32 reg_val = 0;
1049 int ret;
1050
1051 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301052 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301053 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301054 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001055
1056 /* Turn the power off */
1057 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001058
1059 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001060 if (!ret)
1061 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1062 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301063 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301064 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301065 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001066
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001067 if (ret != 0)
1068 goto err;
1069
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001070 OMAP_HSMMC_WRITE(host->base, HCTL,
1071 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1072 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001073
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001074 /*
1075 * If a MMC dual voltage card is detected, the set_ios fn calls
1076 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001077 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001078 *
David Brownelleb250822009-02-17 14:49:01 -08001079 * Cope with a bit of slop in the range ... per data sheets:
1080 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1081 * but recommended values are 1.71V to 1.89V
1082 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1083 * but recommended values are 2.7V to 3.3V
1084 *
1085 * Board setup code shouldn't permit anything very out-of-range.
1086 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1087 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001088 */
David Brownelleb250822009-02-17 14:49:01 -08001089 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001090 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001091 else
1092 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001093
1094 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001095 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001096
1097 return 0;
1098err:
1099 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1100 return ret;
1101}
1102
Adrian Hunterb62f6222009-09-22 16:45:01 -07001103/* Protect the card while the cover is open */
1104static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1105{
1106 if (!mmc_slot(host).get_cover_state)
1107 return;
1108
1109 host->reqs_blocked = 0;
1110 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1111 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301112 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001113 "card is now accessible\n",
1114 mmc_hostname(host->mmc));
1115 host->protect_card = 0;
1116 }
1117 } else {
1118 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301119 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001120 "card is now inaccessible\n",
1121 mmc_hostname(host->mmc));
1122 host->protect_card = 1;
1123 }
1124 }
1125}
1126
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001127/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001128 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001129 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001130static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001131{
NeilBrown7efab4f2011-12-30 12:35:13 +11001132 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001133 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001134 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001135
Adrian Huntera6b22402009-09-22 16:44:45 -07001136 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001137 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001138
1139 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001140
Denis Karpov191d1f12009-09-22 16:44:55 -07001141 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001142 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001143 else {
1144 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001145 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001146 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001147
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001148 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001149 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001150 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001151 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001152 return IRQ_HANDLED;
1153}
1154
Russell Kingc5c98922012-04-13 12:14:39 +01001155static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001156{
Russell Kingc5c98922012-04-13 12:14:39 +01001157 struct omap_hsmmc_host *host = param;
1158 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001159 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001160 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161
Russell Kingc5c98922012-04-13 12:14:39 +01001162 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001163 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001164 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001165 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001166 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001167
Adrian Hunter770d7432011-05-06 12:14:11 +03001168 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001169 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001170 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001171 dma_unmap_sg(chan->device->dev,
1172 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001173 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001174
1175 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001176 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001177 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001178
1179 /* If DMA has finished after TC, complete the request */
1180 if (!req_in_progress) {
1181 struct mmc_request *mrq = host->mrq;
1182
1183 host->mrq = NULL;
1184 mmc_request_done(host->mmc, mrq);
1185 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001186}
1187
Per Forlin9782aff2011-07-01 18:55:23 +02001188static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1189 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001190 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001191 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001192{
1193 int dma_len;
1194
1195 if (!next && data->host_cookie &&
1196 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301197 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001198 " host->next_data.cookie %d\n",
1199 __func__, data->host_cookie, host->next_data.cookie);
1200 data->host_cookie = 0;
1201 }
1202
1203 /* Check if next job is already prepared */
1204 if (next ||
1205 (!next && data->host_cookie != host->next_data.cookie)) {
Russell King26b88522012-04-13 12:27:37 +01001206 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001207 omap_hsmmc_get_dma_dir(host, data));
1208
1209 } else {
1210 dma_len = host->next_data.dma_len;
1211 host->next_data.dma_len = 0;
1212 }
1213
1214
1215 if (dma_len == 0)
1216 return -EINVAL;
1217
1218 if (next) {
1219 next->dma_len = dma_len;
1220 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1221 } else
1222 host->dma_len = dma_len;
1223
1224 return 0;
1225}
1226
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001227/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001228 * Routine to configure and start DMA for the MMC card
1229 */
Denis Karpov70a33412009-09-22 16:44:59 -07001230static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1231 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001232{
Russell King26b88522012-04-13 12:27:37 +01001233 struct dma_slave_config cfg;
1234 struct dma_async_tx_descriptor *tx;
1235 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001236 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001237 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001238
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001239 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001240 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001241 struct scatterlist *sgl;
1242
1243 sgl = data->sg + i;
1244 if (sgl->length % data->blksz)
1245 return -EINVAL;
1246 }
1247 if ((data->blksz % 4) != 0)
1248 /* REVISIT: The MMC buffer increments only when MSB is written.
1249 * Return error for blksz which is non multiple of four.
1250 */
1251 return -EINVAL;
1252
Adrian Hunterb4175772010-05-26 14:42:06 -07001253 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001254
Russell Kingc5c98922012-04-13 12:14:39 +01001255 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001256
Russell King26b88522012-04-13 12:27:37 +01001257 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1258 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1259 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1260 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1261 cfg.src_maxburst = data->blksz / 4;
1262 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001263
Russell King26b88522012-04-13 12:27:37 +01001264 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001265 if (ret)
1266 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001267
Russell King26b88522012-04-13 12:27:37 +01001268 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1269 if (ret)
1270 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001271
Russell King26b88522012-04-13 12:27:37 +01001272 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1273 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1274 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1275 if (!tx) {
1276 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1277 /* FIXME: cleanup */
1278 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001279 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001280
Russell King26b88522012-04-13 12:27:37 +01001281 tx->callback = omap_hsmmc_dma_callback;
1282 tx->callback_param = host;
1283
1284 /* Does not fail */
1285 dmaengine_submit(tx);
1286
1287 host->dma_ch = 1;
1288
1289 dma_async_issue_pending(chan);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001290
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001291 return 0;
1292}
1293
Denis Karpov70a33412009-09-22 16:44:59 -07001294static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001295 unsigned int timeout_ns,
1296 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001297{
1298 unsigned int timeout, cycle_ns;
1299 uint32_t reg, clkd, dto = 0;
1300
1301 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1302 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1303 if (clkd == 0)
1304 clkd = 1;
1305
1306 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001307 timeout = timeout_ns / cycle_ns;
1308 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001309 if (timeout) {
1310 while ((timeout & 0x80000000) == 0) {
1311 dto += 1;
1312 timeout <<= 1;
1313 }
1314 dto = 31 - dto;
1315 timeout <<= 1;
1316 if (timeout && dto)
1317 dto += 1;
1318 if (dto >= 13)
1319 dto -= 13;
1320 else
1321 dto = 0;
1322 if (dto > 14)
1323 dto = 14;
1324 }
1325
1326 reg &= ~DTO_MASK;
1327 reg |= dto << DTO_SHIFT;
1328 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1329}
1330
1331/*
1332 * Configure block length for MMC/SD cards and initiate the transfer.
1333 */
1334static int
Denis Karpov70a33412009-09-22 16:44:59 -07001335omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001336{
1337 int ret;
1338 host->data = req->data;
1339
1340 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001341 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001342 /*
1343 * Set an arbitrary 100ms data timeout for commands with
1344 * busy signal.
1345 */
1346 if (req->cmd->flags & MMC_RSP_BUSY)
1347 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001348 return 0;
1349 }
1350
1351 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1352 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001353 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001354
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001355 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001356 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001357 if (ret != 0) {
1358 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1359 return ret;
1360 }
1361 }
1362 return 0;
1363}
1364
Per Forlin9782aff2011-07-01 18:55:23 +02001365static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1366 int err)
1367{
1368 struct omap_hsmmc_host *host = mmc_priv(mmc);
1369 struct mmc_data *data = mrq->data;
1370
Russell King26b88522012-04-13 12:27:37 +01001371 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001372 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001373
Russell King26b88522012-04-13 12:27:37 +01001374 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1375 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001376 data->host_cookie = 0;
1377 }
1378}
1379
1380static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1381 bool is_first_req)
1382{
1383 struct omap_hsmmc_host *host = mmc_priv(mmc);
1384
1385 if (mrq->data->host_cookie) {
1386 mrq->data->host_cookie = 0;
1387 return ;
1388 }
1389
Russell Kingc5c98922012-04-13 12:14:39 +01001390 if (host->use_dma) {
1391 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001392
Per Forlin9782aff2011-07-01 18:55:23 +02001393 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001394 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001395 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001396 }
Per Forlin9782aff2011-07-01 18:55:23 +02001397}
1398
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001399/*
1400 * Request function. for read/write operation
1401 */
Denis Karpov70a33412009-09-22 16:44:59 -07001402static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001403{
Denis Karpov70a33412009-09-22 16:44:59 -07001404 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001405 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001406
Adrian Hunterb4175772010-05-26 14:42:06 -07001407 BUG_ON(host->req_in_progress);
1408 BUG_ON(host->dma_ch != -1);
1409 if (host->protect_card) {
1410 if (host->reqs_blocked < 3) {
1411 /*
1412 * Ensure the controller is left in a consistent
1413 * state by resetting the command and data state
1414 * machines.
1415 */
1416 omap_hsmmc_reset_controller_fsm(host, SRD);
1417 omap_hsmmc_reset_controller_fsm(host, SRC);
1418 host->reqs_blocked += 1;
1419 }
1420 req->cmd->error = -EBADF;
1421 if (req->data)
1422 req->data->error = -EBADF;
1423 req->cmd->retries = 0;
1424 mmc_request_done(mmc, req);
1425 return;
1426 } else if (host->reqs_blocked)
1427 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001428 WARN_ON(host->mrq != NULL);
1429 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001430 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001431 if (err) {
1432 req->cmd->error = err;
1433 if (req->data)
1434 req->data->error = err;
1435 host->mrq = NULL;
1436 mmc_request_done(mmc, req);
1437 return;
1438 }
1439
Denis Karpov70a33412009-09-22 16:44:59 -07001440 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001441}
1442
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001443/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001444static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001445{
Denis Karpov70a33412009-09-22 16:44:59 -07001446 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001447 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001448
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301449 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001450
Adrian Huntera3621462009-09-22 16:44:42 -07001451 if (ios->power_mode != host->power_mode) {
1452 switch (ios->power_mode) {
1453 case MMC_POWER_OFF:
1454 mmc_slot(host).set_power(host->dev, host->slot_id,
1455 0, 0);
1456 break;
1457 case MMC_POWER_UP:
1458 mmc_slot(host).set_power(host->dev, host->slot_id,
1459 1, ios->vdd);
1460 break;
1461 case MMC_POWER_ON:
1462 do_send_init_stream = 1;
1463 break;
1464 }
1465 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001466 }
1467
Denis Karpovdd498ef2009-09-22 16:44:49 -07001468 /* FIXME: set registers based only on changes to ios */
1469
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001470 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001471
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301472 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001473 /* Only MMC1 can interface at 3V without some flavor
1474 * of external transceiver; but they all handle 1.8V.
1475 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001476 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301477 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1478 /*
1479 * With pbias cell programming missing, this
1480 * can't be allowed when booting with device
1481 * tree.
1482 */
Rajendra Nayak4d048f92012-04-11 15:33:13 +05301483 !host->dev->of_node) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001484 /*
1485 * The mmc_select_voltage fn of the core does
1486 * not seem to set the power_mode to
1487 * MMC_POWER_UP upon recalculating the voltage.
1488 * vdd 1.8v.
1489 */
Denis Karpov70a33412009-09-22 16:44:59 -07001490 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1491 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001492 "Switch operation failed\n");
1493 }
1494 }
1495
Andy Shevchenko5934df22011-05-06 12:14:06 +03001496 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001497
Adrian Huntera3621462009-09-22 16:44:42 -07001498 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001499 send_init_stream(host);
1500
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001501 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001502
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301503 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001504}
1505
1506static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1507{
Denis Karpov70a33412009-09-22 16:44:59 -07001508 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001509
Denis Karpov191d1f12009-09-22 16:44:55 -07001510 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001511 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001512 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001513}
1514
1515static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1516{
Denis Karpov70a33412009-09-22 16:44:59 -07001517 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001518
Denis Karpov191d1f12009-09-22 16:44:55 -07001519 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001520 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001521 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001522}
1523
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001524static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1525{
1526 struct omap_hsmmc_host *host = mmc_priv(mmc);
1527
1528 if (mmc_slot(host).init_card)
1529 mmc_slot(host).init_card(card);
1530}
1531
Denis Karpov70a33412009-09-22 16:44:59 -07001532static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001533{
1534 u32 hctl, capa, value;
1535
1536 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301537 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001538 hctl = SDVS30;
1539 capa = VS30 | VS18;
1540 } else {
1541 hctl = SDVS18;
1542 capa = VS18;
1543 }
1544
1545 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1546 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1547
1548 value = OMAP_HSMMC_READ(host->base, CAPA);
1549 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1550
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001551 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001552 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001553}
1554
Denis Karpov70a33412009-09-22 16:44:59 -07001555static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001556{
Denis Karpov70a33412009-09-22 16:44:59 -07001557 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001558
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301559 pm_runtime_get_sync(host->dev);
1560
Denis Karpovdd498ef2009-09-22 16:44:49 -07001561 return 0;
1562}
1563
Adrian Hunter907d2e72012-02-29 09:17:21 +02001564static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001565{
Denis Karpov70a33412009-09-22 16:44:59 -07001566 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001567
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301568 pm_runtime_mark_last_busy(host->dev);
1569 pm_runtime_put_autosuspend(host->dev);
1570
Denis Karpovdd498ef2009-09-22 16:44:49 -07001571 return 0;
1572}
1573
Denis Karpov70a33412009-09-22 16:44:59 -07001574static const struct mmc_host_ops omap_hsmmc_ops = {
1575 .enable = omap_hsmmc_enable_fclk,
1576 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001577 .post_req = omap_hsmmc_post_req,
1578 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001579 .request = omap_hsmmc_request,
1580 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001581 .get_cd = omap_hsmmc_get_cd,
1582 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001583 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001584 /* NYET -- enable_sdio_irq */
1585};
1586
Denis Karpovd900f712009-09-22 16:44:38 -07001587#ifdef CONFIG_DEBUG_FS
1588
Denis Karpov70a33412009-09-22 16:44:59 -07001589static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001590{
1591 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001592 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001593 int context_loss = 0;
1594
Denis Karpov70a33412009-09-22 16:44:59 -07001595 if (host->pdata->get_context_loss_count)
1596 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001597
Adrian Hunter907d2e72012-02-29 09:17:21 +02001598 seq_printf(s, "mmc%d:\n ctx_loss:\t%d:%d\n\nregs:\n",
1599 mmc->index, host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001600
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301601 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001602 seq_printf(s, "host suspended, can't read registers\n");
1603 return 0;
1604 }
1605
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301606 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001607
Denis Karpovd900f712009-09-22 16:44:38 -07001608 seq_printf(s, "CON:\t\t0x%08x\n",
1609 OMAP_HSMMC_READ(host->base, CON));
1610 seq_printf(s, "HCTL:\t\t0x%08x\n",
1611 OMAP_HSMMC_READ(host->base, HCTL));
1612 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1613 OMAP_HSMMC_READ(host->base, SYSCTL));
1614 seq_printf(s, "IE:\t\t0x%08x\n",
1615 OMAP_HSMMC_READ(host->base, IE));
1616 seq_printf(s, "ISE:\t\t0x%08x\n",
1617 OMAP_HSMMC_READ(host->base, ISE));
1618 seq_printf(s, "CAPA:\t\t0x%08x\n",
1619 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001620
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301621 pm_runtime_mark_last_busy(host->dev);
1622 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001623
Denis Karpovd900f712009-09-22 16:44:38 -07001624 return 0;
1625}
1626
Denis Karpov70a33412009-09-22 16:44:59 -07001627static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001628{
Denis Karpov70a33412009-09-22 16:44:59 -07001629 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001630}
1631
1632static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001633 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001634 .read = seq_read,
1635 .llseek = seq_lseek,
1636 .release = single_release,
1637};
1638
Denis Karpov70a33412009-09-22 16:44:59 -07001639static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001640{
1641 if (mmc->debugfs_root)
1642 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1643 mmc, &mmc_regs_fops);
1644}
1645
1646#else
1647
Denis Karpov70a33412009-09-22 16:44:59 -07001648static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001649{
1650}
1651
1652#endif
1653
Rajendra Nayak46856a62012-03-12 20:32:37 +05301654#ifdef CONFIG_OF
1655static u16 omap4_reg_offset = 0x100;
1656
1657static const struct of_device_id omap_mmc_of_match[] = {
1658 {
1659 .compatible = "ti,omap2-hsmmc",
1660 },
1661 {
1662 .compatible = "ti,omap3-hsmmc",
1663 },
1664 {
1665 .compatible = "ti,omap4-hsmmc",
1666 .data = &omap4_reg_offset,
1667 },
1668 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001669};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301670MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1671
1672static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1673{
1674 struct omap_mmc_platform_data *pdata;
1675 struct device_node *np = dev->of_node;
1676 u32 bus_width;
1677
1678 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1679 if (!pdata)
1680 return NULL; /* out of memory */
1681
1682 if (of_find_property(np, "ti,dual-volt", NULL))
1683 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1684
1685 /* This driver only supports 1 slot */
1686 pdata->nr_slots = 1;
1687 pdata->slots[0].switch_pin = of_get_named_gpio(np, "cd-gpios", 0);
1688 pdata->slots[0].gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
1689
1690 if (of_find_property(np, "ti,non-removable", NULL)) {
1691 pdata->slots[0].nonremovable = true;
1692 pdata->slots[0].no_regulator_off_init = true;
1693 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001694 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301695 if (bus_width == 4)
1696 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1697 else if (bus_width == 8)
1698 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1699
1700 if (of_find_property(np, "ti,needs-special-reset", NULL))
1701 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1702
1703 return pdata;
1704}
1705#else
1706static inline struct omap_mmc_platform_data
1707 *of_get_hsmmc_pdata(struct device *dev)
1708{
1709 return NULL;
1710}
1711#endif
1712
Felipe Balbiefa25fd2012-03-14 11:18:28 +02001713static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001714{
1715 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1716 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001717 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001718 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001719 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301720 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001721 dma_cap_mask_t mask;
1722 unsigned tx_req, rx_req;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301723
1724 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1725 if (match) {
1726 pdata = of_get_hsmmc_pdata(&pdev->dev);
1727 if (match->data) {
Uwe Kleine-Königefc9b732012-05-21 21:57:39 +02001728 const u16 *offsetp = match->data;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301729 pdata->reg_offset = *offsetp;
1730 }
1731 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001732
1733 if (pdata == NULL) {
1734 dev_err(&pdev->dev, "Platform Data is missing\n");
1735 return -ENXIO;
1736 }
1737
1738 if (pdata->nr_slots == 0) {
1739 dev_err(&pdev->dev, "No Slots\n");
1740 return -ENXIO;
1741 }
1742
1743 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1744 irq = platform_get_irq(pdev, 0);
1745 if (res == NULL || irq < 0)
1746 return -ENXIO;
1747
Chris Ball984b2032011-03-22 16:34:42 -07001748 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001749 if (res == NULL)
1750 return -EBUSY;
1751
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001752 ret = omap_hsmmc_gpio_init(pdata);
1753 if (ret)
1754 goto err;
1755
Denis Karpov70a33412009-09-22 16:44:59 -07001756 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001757 if (!mmc) {
1758 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001759 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001760 }
1761
1762 host = mmc_priv(mmc);
1763 host->mmc = mmc;
1764 host->pdata = pdata;
1765 host->dev = &pdev->dev;
1766 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001767 host->dma_ch = -1;
1768 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001769 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301770 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001771 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001772 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001773 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001774
1775 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001776
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301777 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001778
Adrian Huntere0eb2422010-02-15 10:03:34 -08001779 /*
1780 * If regulator_disable can only put vcc_aux to sleep then there is
1781 * no off state.
1782 */
1783 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1784 mmc_slot(host).no_off = 1;
1785
Daniel Mackd418ed82012-02-19 13:20:33 +01001786 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1787
1788 if (pdata->max_freq > 0)
1789 mmc->f_max = pdata->max_freq;
1790 else
1791 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001792
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001793 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001794
Russell King6f7607c2009-01-28 10:22:50 +00001795 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001796 if (IS_ERR(host->fclk)) {
1797 ret = PTR_ERR(host->fclk);
1798 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001799 goto err1;
1800 }
1801
Paul Walmsley9b682562011-10-06 14:50:35 -06001802 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1803 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1804 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1805 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001806
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301807 pm_runtime_enable(host->dev);
1808 pm_runtime_get_sync(host->dev);
1809 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1810 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001811
Balaji T K92a3aeb2012-02-24 21:14:34 +05301812 omap_hsmmc_context_save(host);
1813
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301814 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1815 /*
1816 * MMC can still work without debounce clock.
1817 */
1818 if (IS_ERR(host->dbclk)) {
1819 dev_warn(mmc_dev(host->mmc), "Failed to get debounce clk\n");
1820 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05301821 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301822 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1823 clk_put(host->dbclk);
1824 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001825 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001826
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001827 /* Since we do only SG emulation, we can have as many segs
1828 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001829 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001830
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001831 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1832 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1833 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1834 mmc->max_seg_size = mmc->max_req_size;
1835
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001836 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001837 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001838
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001839 mmc->caps |= mmc_slot(host).caps;
1840 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001841 mmc->caps |= MMC_CAP_4_BIT_DATA;
1842
Denis Karpov191d1f12009-09-22 16:44:55 -07001843 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001844 mmc->caps |= MMC_CAP_NONREMOVABLE;
1845
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001846 mmc->pm_caps = mmc_slot(host).pm_caps;
1847
Denis Karpov70a33412009-09-22 16:44:59 -07001848 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001849
Balaji T Kb7bf7732012-03-07 09:55:30 -05001850 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1851 if (!res) {
1852 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
Kevin Hilman9c17d082012-07-10 16:40:56 -07001853 ret = -ENXIO;
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001854 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001855 }
Russell King26b88522012-04-13 12:27:37 +01001856 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001857
1858 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1859 if (!res) {
1860 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
Kevin Hilman9c17d082012-07-10 16:40:56 -07001861 ret = -ENXIO;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001862 goto err_irq;
1863 }
Russell King26b88522012-04-13 12:27:37 +01001864 rx_req = res->start;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001865
Russell King26b88522012-04-13 12:27:37 +01001866 dma_cap_zero(mask);
1867 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001868
Russell King26b88522012-04-13 12:27:37 +01001869 host->rx_chan = dma_request_channel(mask, omap_dma_filter_fn, &rx_req);
1870 if (!host->rx_chan) {
1871 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001872 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001873 goto err_irq;
1874 }
1875
1876 host->tx_chan = dma_request_channel(mask, omap_dma_filter_fn, &tx_req);
1877 if (!host->tx_chan) {
1878 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001879 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001880 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001881 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001882
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001883 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001884 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001885 mmc_hostname(mmc), host);
1886 if (ret) {
1887 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
1888 goto err_irq;
1889 }
1890
1891 if (pdata->init != NULL) {
1892 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07001893 dev_dbg(mmc_dev(host->mmc),
1894 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001895 goto err_irq_cd_init;
1896 }
1897 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001898
Adrian Hunterb702b102010-02-15 10:03:35 -08001899 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001900 ret = omap_hsmmc_reg_get(host);
1901 if (ret)
1902 goto err_reg;
1903 host->use_reg = 1;
1904 }
1905
David Brownellb583f262009-05-28 14:04:03 -07001906 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001907
1908 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001909 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001910 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1911 NULL,
1912 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08001913 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11001914 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001915 if (ret) {
1916 dev_dbg(mmc_dev(host->mmc),
1917 "Unable to grab MMC CD IRQ\n");
1918 goto err_irq_cd;
1919 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001920 pdata->suspend = omap_hsmmc_suspend_cdirq;
1921 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001922 }
1923
Adrian Hunterb4175772010-05-26 14:42:06 -07001924 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001925
Adrian Hunterb62f6222009-09-22 16:45:01 -07001926 omap_hsmmc_protect_card(host);
1927
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001928 mmc_add_host(mmc);
1929
Denis Karpov191d1f12009-09-22 16:44:55 -07001930 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001931 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1932 if (ret < 0)
1933 goto err_slot_name;
1934 }
Denis Karpov191d1f12009-09-22 16:44:55 -07001935 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001936 ret = device_create_file(&mmc->class_dev,
1937 &dev_attr_cover_switch);
1938 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001939 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001940 }
1941
Denis Karpov70a33412009-09-22 16:44:59 -07001942 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301943 pm_runtime_mark_last_busy(host->dev);
1944 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001945
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001946 return 0;
1947
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001948err_slot_name:
1949 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001950 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001951err_irq_cd:
1952 if (host->use_reg)
1953 omap_hsmmc_reg_put(host);
1954err_reg:
1955 if (host->pdata->cleanup)
1956 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001957err_irq_cd_init:
1958 free_irq(host->irq, host);
1959err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01001960 if (host->tx_chan)
1961 dma_release_channel(host->tx_chan);
1962 if (host->rx_chan)
1963 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05301964 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05001965 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001966 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301967 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05301968 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001969 clk_put(host->dbclk);
1970 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001971err1:
1972 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001973 platform_set_drvdata(pdev, NULL);
1974 mmc_free_host(mmc);
1975err_alloc:
1976 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001977err:
Russell King48b332f2012-04-18 11:11:57 +01001978 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1979 if (res)
1980 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001981 return ret;
1982}
1983
Felipe Balbiefa25fd2012-03-14 11:18:28 +02001984static int __devexit omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001985{
Denis Karpov70a33412009-09-22 16:44:59 -07001986 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001987 struct resource *res;
1988
Felipe Balbi927ce942012-03-14 11:18:27 +02001989 pm_runtime_get_sync(host->dev);
1990 mmc_remove_host(host->mmc);
1991 if (host->use_reg)
1992 omap_hsmmc_reg_put(host);
1993 if (host->pdata->cleanup)
1994 host->pdata->cleanup(&pdev->dev);
1995 free_irq(host->irq, host);
1996 if (mmc_slot(host).card_detect_irq)
1997 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001998
Russell Kingc5c98922012-04-13 12:14:39 +01001999 if (host->tx_chan)
2000 dma_release_channel(host->tx_chan);
2001 if (host->rx_chan)
2002 dma_release_channel(host->rx_chan);
2003
Felipe Balbi927ce942012-03-14 11:18:27 +02002004 pm_runtime_put_sync(host->dev);
2005 pm_runtime_disable(host->dev);
2006 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302007 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302008 clk_disable_unprepare(host->dbclk);
Felipe Balbi927ce942012-03-14 11:18:27 +02002009 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002010 }
2011
Felipe Balbi927ce942012-03-14 11:18:27 +02002012 mmc_free_host(host->mmc);
2013 iounmap(host->base);
2014 omap_hsmmc_gpio_free(pdev->dev.platform_data);
2015
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002016 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2017 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002018 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002019 platform_set_drvdata(pdev, NULL);
2020
2021 return 0;
2022}
2023
2024#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002025static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002026{
2027 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002028 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2029
2030 if (!host)
2031 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002032
2033 if (host && host->suspended)
2034 return 0;
2035
Felipe Balbi927ce942012-03-14 11:18:27 +02002036 pm_runtime_get_sync(host->dev);
2037 host->suspended = 1;
2038 if (host->pdata->suspend) {
2039 ret = host->pdata->suspend(dev, host->slot_id);
Eliad Peller31f9d462011-11-22 16:02:17 +02002040 if (ret) {
Felipe Balbi927ce942012-03-14 11:18:27 +02002041 dev_dbg(dev, "Unable to handle MMC board"
2042 " level suspend\n");
Adrian Huntera6b22402009-09-22 16:44:45 -07002043 host->suspended = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002044 return ret;
Adrian Huntera6b22402009-09-22 16:44:45 -07002045 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002046 }
Felipe Balbi927ce942012-03-14 11:18:27 +02002047 ret = mmc_suspend_host(host->mmc);
2048
2049 if (ret) {
2050 host->suspended = 0;
2051 if (host->pdata->resume) {
Vaibhav Bediac4c8eeb2012-09-13 06:31:03 +00002052 if (host->pdata->resume(dev, host->slot_id))
Felipe Balbi927ce942012-03-14 11:18:27 +02002053 dev_dbg(dev, "Unmask interrupt failed\n");
2054 }
2055 goto err;
2056 }
2057
2058 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2059 omap_hsmmc_disable_irq(host);
2060 OMAP_HSMMC_WRITE(host->base, HCTL,
2061 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2062 }
2063
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302064 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302065 clk_disable_unprepare(host->dbclk);
Eliad Peller31f9d462011-11-22 16:02:17 +02002066err:
2067 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002068 return ret;
2069}
2070
2071/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002072static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002073{
2074 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002075 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2076
2077 if (!host)
2078 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002079
2080 if (host && !host->suspended)
2081 return 0;
2082
Felipe Balbi927ce942012-03-14 11:18:27 +02002083 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002084
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302085 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302086 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002087
Felipe Balbi927ce942012-03-14 11:18:27 +02002088 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2089 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002090
Felipe Balbi927ce942012-03-14 11:18:27 +02002091 if (host->pdata->resume) {
2092 ret = host->pdata->resume(dev, host->slot_id);
2093 if (ret)
2094 dev_dbg(dev, "Unmask interrupt failed\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002095 }
2096
Felipe Balbi927ce942012-03-14 11:18:27 +02002097 omap_hsmmc_protect_card(host);
2098
2099 /* Notify the core to resume the host */
2100 ret = mmc_resume_host(host->mmc);
2101 if (ret == 0)
2102 host->suspended = 0;
2103
2104 pm_runtime_mark_last_busy(host->dev);
2105 pm_runtime_put_autosuspend(host->dev);
2106
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002107 return ret;
2108
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002109}
2110
2111#else
Denis Karpov70a33412009-09-22 16:44:59 -07002112#define omap_hsmmc_suspend NULL
2113#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002114#endif
2115
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302116static int omap_hsmmc_runtime_suspend(struct device *dev)
2117{
2118 struct omap_hsmmc_host *host;
2119
2120 host = platform_get_drvdata(to_platform_device(dev));
2121 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002122 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302123
2124 return 0;
2125}
2126
2127static int omap_hsmmc_runtime_resume(struct device *dev)
2128{
2129 struct omap_hsmmc_host *host;
2130
2131 host = platform_get_drvdata(to_platform_device(dev));
2132 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002133 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302134
2135 return 0;
2136}
2137
Kevin Hilmana791daa2010-05-26 14:42:07 -07002138static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002139 .suspend = omap_hsmmc_suspend,
2140 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302141 .runtime_suspend = omap_hsmmc_runtime_suspend,
2142 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002143};
2144
2145static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002146 .probe = omap_hsmmc_probe,
2147 .remove = __devexit_p(omap_hsmmc_remove),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002148 .driver = {
2149 .name = DRIVER_NAME,
2150 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002151 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302152 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002153 },
2154};
2155
Felipe Balbib7964502012-03-14 11:18:32 +02002156module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002157MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2158MODULE_LICENSE("GPL");
2159MODULE_ALIAS("platform:" DRIVER_NAME);
2160MODULE_AUTHOR("Texas Instruments Inc");