blob: 823d21cb87c01cf9673d90f682479fd234470cb3 [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f42011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
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>
38#include <linux/semaphore.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080039#include <linux/gpio.h>
40#include <linux/regulator/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053041#include <linux/pm_runtime.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010042#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070043#include <plat/board.h>
44#include <plat/mmc.h>
45#include <plat/cpu.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010046
47/* OMAP HSMMC Host Controller Registers */
48#define OMAP_HSMMC_SYSCONFIG 0x0010
Denis Karpov11dd62a2009-09-22 16:44:43 -070049#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010050#define OMAP_HSMMC_CON 0x002C
51#define OMAP_HSMMC_BLK 0x0104
52#define OMAP_HSMMC_ARG 0x0108
53#define OMAP_HSMMC_CMD 0x010C
54#define OMAP_HSMMC_RSP10 0x0110
55#define OMAP_HSMMC_RSP32 0x0114
56#define OMAP_HSMMC_RSP54 0x0118
57#define OMAP_HSMMC_RSP76 0x011C
58#define OMAP_HSMMC_DATA 0x0120
59#define OMAP_HSMMC_HCTL 0x0128
60#define OMAP_HSMMC_SYSCTL 0x012C
61#define OMAP_HSMMC_STAT 0x0130
62#define OMAP_HSMMC_IE 0x0134
63#define OMAP_HSMMC_ISE 0x0138
64#define OMAP_HSMMC_CAPA 0x0140
65
66#define VS18 (1 << 26)
67#define VS30 (1 << 25)
68#define SDVS18 (0x5 << 9)
69#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080070#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010071#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010072#define SDVSCLR 0xFFFFF1FF
73#define SDVSDET 0x00000400
74#define AUTOIDLE 0x1
75#define SDBP (1 << 8)
76#define DTO 0xe
77#define ICE 0x1
78#define ICS 0x2
79#define CEN (1 << 2)
80#define CLKD_MASK 0x0000FFC0
81#define CLKD_SHIFT 6
82#define DTO_MASK 0x000F0000
83#define DTO_SHIFT 16
84#define INT_EN_MASK 0x307F0033
Anand Gadiyarccdfe3a2009-09-22 16:44:21 -070085#define BWR_ENABLE (1 << 4)
86#define BRR_ENABLE (1 << 5)
Adrian Hunter93caf8e692010-08-11 14:17:48 -070087#define DTO_ENABLE (1 << 20)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010088#define INIT_STREAM (1 << 1)
89#define DP_SELECT (1 << 21)
90#define DDIR (1 << 4)
91#define DMA_EN 0x1
92#define MSBS (1 << 5)
93#define BCE (1 << 1)
94#define FOUR_BIT (1 << 1)
Balaji T K03b5d922012-04-09 12:08:33 +053095#define DDR (1 << 19)
Jarkko Lavinen73153012008-11-21 16:49:54 +020096#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010097#define CC 0x1
98#define TC 0x02
99#define OD 0x1
100#define ERR (1 << 15)
101#define CMD_TIMEOUT (1 << 16)
102#define DATA_TIMEOUT (1 << 20)
103#define CMD_CRC (1 << 17)
104#define DATA_CRC (1 << 21)
105#define CARD_ERR (1 << 28)
106#define STAT_CLEAR 0xFFFFFFFF
107#define INIT_STREAM_CMD 0x00000000
108#define DUAL_VOLT_OCR_BIT 7
109#define SRC (1 << 25)
110#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700111#define SOFTRESET (1 << 1)
112#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100113
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530114#define MMC_AUTOSUSPEND_DELAY 100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100115#define MMC_TIMEOUT_MS 20
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400116#define OMAP_MMC_MIN_CLOCK 400000
117#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530118#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100119
120/*
121 * One controller can have multiple slots, like on some omap boards using
122 * omap.c controller driver. Luckily this is not currently done on any known
123 * omap_hsmmc.c device.
124 */
125#define mmc_slot(host) (host->pdata->slots[host->slot_id])
126
127/*
128 * MMC Host controller read/write API's
129 */
130#define OMAP_HSMMC_READ(base, reg) \
131 __raw_readl((base) + OMAP_HSMMC_##reg)
132
133#define OMAP_HSMMC_WRITE(base, reg, val) \
134 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
135
Per Forlin9782aff2011-07-01 18:55:23 +0200136struct omap_hsmmc_next {
137 unsigned int dma_len;
138 s32 cookie;
139};
140
Denis Karpov70a33412009-09-22 16:44:59 -0700141struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100142 struct device *dev;
143 struct mmc_host *mmc;
144 struct mmc_request *mrq;
145 struct mmc_command *cmd;
146 struct mmc_data *data;
147 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100148 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800149 /*
150 * vcc == configured supply
151 * vcc_aux == optional
152 * - MMC1, supply for DAT4..DAT7
153 * - MMC2/MMC2, external level shifter voltage supply, for
154 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
155 */
156 struct regulator *vcc;
157 struct regulator *vcc_aux;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100158 void __iomem *base;
159 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700160 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100161 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200162 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100163 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700164 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100165 u32 *buffer;
166 u32 bytesleft;
167 int suspended;
168 int irq;
Russell King26b88522012-04-13 12:27:37 +0100169 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100170 struct dma_chan *tx_chan;
171 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100172 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200173 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700174 int context_loss;
Adrian Hunter623821f2009-09-22 16:44:51 -0700175 int vdd;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700176 int protect_card;
177 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800178 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700179 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200180 struct omap_hsmmc_next next_data;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700181
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100182 struct omap_mmc_platform_data *pdata;
183};
184
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800185static int omap_hsmmc_card_detect(struct device *dev, int slot)
186{
187 struct omap_mmc_platform_data *mmc = dev->platform_data;
188
189 /* NOTE: assumes card detect signal is active-low */
190 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
191}
192
193static int omap_hsmmc_get_wp(struct device *dev, int slot)
194{
195 struct omap_mmc_platform_data *mmc = dev->platform_data;
196
197 /* NOTE: assumes write protect signal is active-high */
198 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
199}
200
201static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
202{
203 struct omap_mmc_platform_data *mmc = dev->platform_data;
204
205 /* NOTE: assumes card detect signal is active-low */
206 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
207}
208
209#ifdef CONFIG_PM
210
211static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
212{
213 struct omap_mmc_platform_data *mmc = dev->platform_data;
214
215 disable_irq(mmc->slots[0].card_detect_irq);
216 return 0;
217}
218
219static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
220{
221 struct omap_mmc_platform_data *mmc = dev->platform_data;
222
223 enable_irq(mmc->slots[0].card_detect_irq);
224 return 0;
225}
226
227#else
228
229#define omap_hsmmc_suspend_cdirq NULL
230#define omap_hsmmc_resume_cdirq NULL
231
232#endif
233
Adrian Hunterb702b102010-02-15 10:03:35 -0800234#ifdef CONFIG_REGULATOR
235
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500236static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800237 int vdd)
238{
239 struct omap_hsmmc_host *host =
240 platform_get_drvdata(to_platform_device(dev));
241 int ret = 0;
242
243 /*
244 * If we don't see a Vcc regulator, assume it's a fixed
245 * voltage always-on regulator.
246 */
247 if (!host->vcc)
248 return 0;
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530249 /*
250 * With DT, never turn OFF the regulator. This is because
251 * the pbias cell programming support is still missing when
252 * booting with Device tree
253 */
Rajendra Nayak4d048f92012-04-11 15:33:13 +0530254 if (dev->of_node && !vdd)
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530255 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800256
257 if (mmc_slot(host).before_set_reg)
258 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
259
260 /*
261 * Assume Vcc regulator is used only to power the card ... OMAP
262 * VDDS is used to power the pins, optionally with a transceiver to
263 * support cards using voltages other than VDDS (1.8V nominal). When a
264 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
265 *
266 * In some cases this regulator won't support enable/disable;
267 * e.g. it's a fixed rail for a WLAN chip.
268 *
269 * In other cases vcc_aux switches interface power. Example, for
270 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
271 * chips/cards need an interface voltage rail too.
272 */
273 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400274 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800275 /* Enable interface voltage rail, if needed */
276 if (ret == 0 && host->vcc_aux) {
277 ret = regulator_enable(host->vcc_aux);
278 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400279 ret = mmc_regulator_set_ocr(host->mmc,
280 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800281 }
282 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400283 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800284 if (host->vcc_aux)
285 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400286 if (!ret) {
287 /* Then proceed to shut down the local regulator */
288 ret = mmc_regulator_set_ocr(host->mmc,
289 host->vcc, 0);
290 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800291 }
292
293 if (mmc_slot(host).after_set_reg)
294 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
295
296 return ret;
297}
298
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800299static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
300{
301 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700302 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800303
Rajendra Nayak1cb9af42012-03-07 09:55:31 -0500304 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800305
306 reg = regulator_get(host->dev, "vmmc");
307 if (IS_ERR(reg)) {
308 dev_dbg(host->dev, "vmmc regulator missing\n");
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800309 } else {
310 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700311 ocr_value = mmc_regulator_get_ocrmask(reg);
312 if (!mmc_slot(host).ocr_mask) {
313 mmc_slot(host).ocr_mask = ocr_value;
314 } else {
315 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530316 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500317 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700318 mmc_slot(host).ocr_mask = 0;
319 return -EINVAL;
320 }
321 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800322
323 /* Allow an aux regulator */
324 reg = regulator_get(host->dev, "vmmc_aux");
325 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
326
Balaji T Kb1c1df72011-05-30 19:55:34 +0530327 /* For eMMC do not power off when not in sleep state */
328 if (mmc_slot(host).no_regulator_off_init)
329 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800330 /*
331 * UGLY HACK: workaround regulator framework bugs.
332 * When the bootloader leaves a supply active, it's
333 * initialized with zero usecount ... and we can't
334 * disable it without first enabling it. Until the
335 * framework is fixed, we need a workaround like this
336 * (which is safe for MMC, but not in general).
337 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300338 if (regulator_is_enabled(host->vcc) > 0 ||
339 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
340 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
341
342 mmc_slot(host).set_power(host->dev, host->slot_id,
343 1, vdd);
344 mmc_slot(host).set_power(host->dev, host->slot_id,
345 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800346 }
347 }
348
349 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800350}
351
352static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
353{
354 regulator_put(host->vcc);
355 regulator_put(host->vcc_aux);
356 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800357}
358
Adrian Hunterb702b102010-02-15 10:03:35 -0800359static inline int omap_hsmmc_have_reg(void)
360{
361 return 1;
362}
363
364#else
365
366static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
367{
368 return -EINVAL;
369}
370
371static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
372{
373}
374
375static inline int omap_hsmmc_have_reg(void)
376{
377 return 0;
378}
379
380#endif
381
382static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
383{
384 int ret;
385
386 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800387 if (pdata->slots[0].cover)
388 pdata->slots[0].get_cover_state =
389 omap_hsmmc_get_cover_state;
390 else
391 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
392 pdata->slots[0].card_detect_irq =
393 gpio_to_irq(pdata->slots[0].switch_pin);
394 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
395 if (ret)
396 return ret;
397 ret = gpio_direction_input(pdata->slots[0].switch_pin);
398 if (ret)
399 goto err_free_sp;
400 } else
401 pdata->slots[0].switch_pin = -EINVAL;
402
403 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
404 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
405 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
406 if (ret)
407 goto err_free_cd;
408 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
409 if (ret)
410 goto err_free_wp;
411 } else
412 pdata->slots[0].gpio_wp = -EINVAL;
413
414 return 0;
415
416err_free_wp:
417 gpio_free(pdata->slots[0].gpio_wp);
418err_free_cd:
419 if (gpio_is_valid(pdata->slots[0].switch_pin))
420err_free_sp:
421 gpio_free(pdata->slots[0].switch_pin);
422 return ret;
423}
424
425static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
426{
427 if (gpio_is_valid(pdata->slots[0].gpio_wp))
428 gpio_free(pdata->slots[0].gpio_wp);
429 if (gpio_is_valid(pdata->slots[0].switch_pin))
430 gpio_free(pdata->slots[0].switch_pin);
431}
432
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100433/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300434 * Start clock to the card
435 */
436static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
437{
438 OMAP_HSMMC_WRITE(host->base, SYSCTL,
439 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
440}
441
442/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100443 * Stop clock to the card
444 */
Denis Karpov70a33412009-09-22 16:44:59 -0700445static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100446{
447 OMAP_HSMMC_WRITE(host->base, SYSCTL,
448 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
449 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
450 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
451}
452
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700453static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
454 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700455{
456 unsigned int irq_mask;
457
458 if (host->use_dma)
459 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
460 else
461 irq_mask = INT_EN_MASK;
462
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700463 /* Disable timeout for erases */
464 if (cmd->opcode == MMC_ERASE)
465 irq_mask &= ~DTO_ENABLE;
466
Adrian Hunterb4175772010-05-26 14:42:06 -0700467 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
468 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
469 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
470}
471
472static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
473{
474 OMAP_HSMMC_WRITE(host->base, ISE, 0);
475 OMAP_HSMMC_WRITE(host->base, IE, 0);
476 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
477}
478
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300479/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530480static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300481{
482 u16 dsor = 0;
483
484 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530485 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300486 if (dsor > 250)
487 dsor = 250;
488 }
489
490 return dsor;
491}
492
Andy Shevchenko5934df22011-05-06 12:14:06 +0300493static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
494{
495 struct mmc_ios *ios = &host->mmc->ios;
496 unsigned long regval;
497 unsigned long timeout;
498
499 dev_dbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
500
501 omap_hsmmc_stop_clock(host);
502
503 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
504 regval = regval & ~(CLKD_MASK | DTO_MASK);
Balaji TKd83b6e02011-12-20 15:12:00 +0530505 regval = regval | (calc_divisor(host, ios) << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300506 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
507 OMAP_HSMMC_WRITE(host->base, SYSCTL,
508 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
509
510 /* Wait till the ICS bit is set */
511 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
512 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
513 && time_before(jiffies, timeout))
514 cpu_relax();
515
516 omap_hsmmc_start_clock(host);
517}
518
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400519static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
520{
521 struct mmc_ios *ios = &host->mmc->ios;
522 u32 con;
523
524 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d922012-04-09 12:08:33 +0530525 if (ios->timing == MMC_TIMING_UHS_DDR50)
526 con |= DDR; /* configure in DDR mode */
527 else
528 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400529 switch (ios->bus_width) {
530 case MMC_BUS_WIDTH_8:
531 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
532 break;
533 case MMC_BUS_WIDTH_4:
534 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
535 OMAP_HSMMC_WRITE(host->base, HCTL,
536 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
537 break;
538 case MMC_BUS_WIDTH_1:
539 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
540 OMAP_HSMMC_WRITE(host->base, HCTL,
541 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
542 break;
543 }
544}
545
546static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
547{
548 struct mmc_ios *ios = &host->mmc->ios;
549 u32 con;
550
551 con = OMAP_HSMMC_READ(host->base, CON);
552 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
553 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
554 else
555 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
556}
557
Denis Karpov11dd62a2009-09-22 16:44:43 -0700558#ifdef CONFIG_PM
559
560/*
561 * Restore the MMC host context, if it was lost as result of a
562 * power state change.
563 */
Denis Karpov70a33412009-09-22 16:44:59 -0700564static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700565{
566 struct mmc_ios *ios = &host->mmc->ios;
567 struct omap_mmc_platform_data *pdata = host->pdata;
568 int context_loss = 0;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400569 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700570 unsigned long timeout;
571
572 if (pdata->get_context_loss_count) {
573 context_loss = pdata->get_context_loss_count(host->dev);
574 if (context_loss < 0)
575 return 1;
576 }
577
578 dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
579 context_loss == host->context_loss ? "not " : "");
580 if (host->context_loss == context_loss)
581 return 1;
582
583 /* Wait for hardware reset */
584 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
585 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
586 && time_before(jiffies, timeout))
587 ;
588
589 /* Do software reset */
590 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
591 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
592 while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
593 && time_before(jiffies, timeout))
594 ;
595
596 OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
597 OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
598
Balaji T Kc2200ef2012-03-07 09:55:30 -0500599 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700600 if (host->power_mode != MMC_POWER_OFF &&
601 (1 << ios->vdd) <= MMC_VDD_23_24)
602 hctl = SDVS18;
603 else
604 hctl = SDVS30;
605 capa = VS30 | VS18;
606 } else {
607 hctl = SDVS18;
608 capa = VS18;
609 }
610
611 OMAP_HSMMC_WRITE(host->base, HCTL,
612 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
613
614 OMAP_HSMMC_WRITE(host->base, CAPA,
615 OMAP_HSMMC_READ(host->base, CAPA) | capa);
616
617 OMAP_HSMMC_WRITE(host->base, HCTL,
618 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
619
620 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
621 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
622 && time_before(jiffies, timeout))
623 ;
624
Adrian Hunterb4175772010-05-26 14:42:06 -0700625 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700626
627 /* Do not initialize card-specific things if the power is off */
628 if (host->power_mode == MMC_POWER_OFF)
629 goto out;
630
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400631 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700632
Andy Shevchenko5934df22011-05-06 12:14:06 +0300633 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700634
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400635 omap_hsmmc_set_bus_mode(host);
636
Denis Karpov11dd62a2009-09-22 16:44:43 -0700637out:
638 host->context_loss = context_loss;
639
640 dev_dbg(mmc_dev(host->mmc), "context is restored\n");
641 return 0;
642}
643
644/*
645 * Save the MMC host context (store the number of power state changes so far).
646 */
Denis Karpov70a33412009-09-22 16:44:59 -0700647static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700648{
649 struct omap_mmc_platform_data *pdata = host->pdata;
650 int context_loss;
651
652 if (pdata->get_context_loss_count) {
653 context_loss = pdata->get_context_loss_count(host->dev);
654 if (context_loss < 0)
655 return;
656 host->context_loss = context_loss;
657 }
658}
659
660#else
661
Denis Karpov70a33412009-09-22 16:44:59 -0700662static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700663{
664 return 0;
665}
666
Denis Karpov70a33412009-09-22 16:44:59 -0700667static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700668{
669}
670
671#endif
672
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100673/*
674 * Send init stream sequence to card
675 * before sending IDLE command
676 */
Denis Karpov70a33412009-09-22 16:44:59 -0700677static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100678{
679 int reg = 0;
680 unsigned long timeout;
681
Adrian Hunterb62f6222009-09-22 16:45:01 -0700682 if (host->protect_card)
683 return;
684
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100685 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700686
687 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100688 OMAP_HSMMC_WRITE(host->base, CON,
689 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
690 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
691
692 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
693 while ((reg != CC) && time_before(jiffies, timeout))
694 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
695
696 OMAP_HSMMC_WRITE(host->base, CON,
697 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700698
699 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
700 OMAP_HSMMC_READ(host->base, STAT);
701
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100702 enable_irq(host->irq);
703}
704
705static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700706int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100707{
708 int r = 1;
709
Denis Karpov191d1f12009-09-22 16:44:55 -0700710 if (mmc_slot(host).get_cover_state)
711 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100712 return r;
713}
714
715static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700716omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100717 char *buf)
718{
719 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700720 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100721
Denis Karpov70a33412009-09-22 16:44:59 -0700722 return sprintf(buf, "%s\n",
723 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100724}
725
Denis Karpov70a33412009-09-22 16:44:59 -0700726static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100727
728static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700729omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100730 char *buf)
731{
732 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700733 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100734
Denis Karpov191d1f12009-09-22 16:44:55 -0700735 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100736}
737
Denis Karpov70a33412009-09-22 16:44:59 -0700738static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100739
740/*
741 * Configure the response type and send the cmd.
742 */
743static void
Denis Karpov70a33412009-09-22 16:44:59 -0700744omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100745 struct mmc_data *data)
746{
747 int cmdreg = 0, resptype = 0, cmdtype = 0;
748
749 dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
750 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
751 host->cmd = cmd;
752
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700753 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100754
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200755 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100756 if (cmd->flags & MMC_RSP_PRESENT) {
757 if (cmd->flags & MMC_RSP_136)
758 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200759 else if (cmd->flags & MMC_RSP_BUSY) {
760 resptype = 3;
761 host->response_busy = 1;
762 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100763 resptype = 2;
764 }
765
766 /*
767 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
768 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
769 * a val of 0x3, rest 0x0.
770 */
771 if (cmd == host->mrq->stop)
772 cmdtype = 0x3;
773
774 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
775
776 if (data) {
777 cmdreg |= DP_SELECT | MSBS | BCE;
778 if (data->flags & MMC_DATA_READ)
779 cmdreg |= DDIR;
780 else
781 cmdreg &= ~(DDIR);
782 }
783
784 if (host->use_dma)
785 cmdreg |= DMA_EN;
786
Adrian Hunterb4175772010-05-26 14:42:06 -0700787 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700788
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100789 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
790 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
791}
792
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200793static int
Denis Karpov70a33412009-09-22 16:44:59 -0700794omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200795{
796 if (data->flags & MMC_DATA_WRITE)
797 return DMA_TO_DEVICE;
798 else
799 return DMA_FROM_DEVICE;
800}
801
Russell Kingc5c98922012-04-13 12:14:39 +0100802static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
803 struct mmc_data *data)
804{
805 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
806}
807
Adrian Hunterb4175772010-05-26 14:42:06 -0700808static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
809{
Russell King26b88522012-04-13 12:27:37 +0100810 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530811 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700812
Venkatraman S31463b12012-04-09 12:08:34 +0530813 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700814 host->req_in_progress = 0;
815 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530816 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700817
818 omap_hsmmc_disable_irq(host);
819 /* Do not complete the request if DMA is still in progress */
Russell King26b88522012-04-13 12:27:37 +0100820 if (mrq->data && host->use_dma && dma_ch != -1)
Adrian Hunterb4175772010-05-26 14:42:06 -0700821 return;
822 host->mrq = NULL;
823 mmc_request_done(host->mmc, mrq);
824}
825
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100826/*
827 * Notify the transfer complete to MMC core
828 */
829static void
Denis Karpov70a33412009-09-22 16:44:59 -0700830omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100831{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200832 if (!data) {
833 struct mmc_request *mrq = host->mrq;
834
Adrian Hunter23050102009-09-22 16:44:57 -0700835 /* TC before CC from CMD6 - don't know why, but it happens */
836 if (host->cmd && host->cmd->opcode == 6 &&
837 host->response_busy) {
838 host->response_busy = 0;
839 return;
840 }
841
Adrian Hunterb4175772010-05-26 14:42:06 -0700842 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200843 return;
844 }
845
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100846 host->data = NULL;
847
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100848 if (!data->error)
849 data->bytes_xfered += data->blocks * (data->blksz);
850 else
851 data->bytes_xfered = 0;
852
Ming Leife852272012-06-22 18:49:35 +0800853 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700854 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800855 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100856 }
Ming Leife852272012-06-22 18:49:35 +0800857 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100858}
859
860/*
861 * Notify the core about command completion
862 */
863static void
Denis Karpov70a33412009-09-22 16:44:59 -0700864omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100865{
866 host->cmd = NULL;
867
868 if (cmd->flags & MMC_RSP_PRESENT) {
869 if (cmd->flags & MMC_RSP_136) {
870 /* response type 2 */
871 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
872 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
873 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
874 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
875 } else {
876 /* response types 1, 1b, 3, 4, 5, 6 */
877 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
878 }
879 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700880 if ((host->data == NULL && !host->response_busy) || cmd->error)
881 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100882}
883
884/*
885 * DMA clean up for command errors
886 */
Denis Karpov70a33412009-09-22 16:44:59 -0700887static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100888{
Russell King26b88522012-04-13 12:27:37 +0100889 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530890 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700891
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200892 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100893
Venkatraman S31463b12012-04-09 12:08:34 +0530894 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700895 dma_ch = host->dma_ch;
896 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530897 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700898
Russell King26b88522012-04-13 12:27:37 +0100899 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100900 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
901
902 dmaengine_terminate_all(chan);
903 dma_unmap_sg(chan->device->dev,
904 host->data->sg, host->data->sg_len,
905 omap_hsmmc_get_dma_dir(host, host->data));
906
907 host->data->host_cookie = 0;
908 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100909 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100910}
911
912/*
913 * Readable error output
914 */
915#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300916static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100917{
918 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700919 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300920 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
921 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
922 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
923 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100924 };
925 char res[256];
926 char *buf = res;
927 int len, i;
928
929 len = sprintf(buf, "MMC IRQ 0x%x :", status);
930 buf += len;
931
Denis Karpov70a33412009-09-22 16:44:59 -0700932 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100933 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700934 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100935 buf += len;
936 }
937
938 dev_dbg(mmc_dev(host->mmc), "%s\n", res);
939}
Adrian Hunter699b9582011-05-06 12:14:01 +0300940#else
941static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
942 u32 status)
943{
944}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100945#endif /* CONFIG_MMC_DEBUG */
946
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100947/*
948 * MMC controller internal state machines reset
949 *
950 * Used to reset command or data internal state machines, using respectively
951 * SRC or SRD bit of SYSCTL register
952 * Can be called from interrupt context
953 */
Denis Karpov70a33412009-09-22 16:44:59 -0700954static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
955 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100956{
957 unsigned long i = 0;
958 unsigned long limit = (loops_per_jiffy *
959 msecs_to_jiffies(MMC_TIMEOUT_MS));
960
961 OMAP_HSMMC_WRITE(host->base, SYSCTL,
962 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
963
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700964 /*
965 * OMAP4 ES2 and greater has an updated reset logic.
966 * Monitor a 0->1 transition first
967 */
968 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -0500969 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700970 && (i++ < limit))
971 cpu_relax();
972 }
973 i = 0;
974
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100975 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
976 (i++ < limit))
977 cpu_relax();
978
979 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
980 dev_err(mmc_dev(host->mmc),
981 "Timeout waiting on controller reset in %s\n",
982 __func__);
983}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100984
Adrian Hunterb4175772010-05-26 14:42:06 -0700985static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100986{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100987 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -0700988 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100989
Adrian Hunterb4175772010-05-26 14:42:06 -0700990 if (!host->req_in_progress) {
991 do {
992 OMAP_HSMMC_WRITE(host->base, STAT, status);
993 /* Flush posted write */
994 status = OMAP_HSMMC_READ(host->base, STAT);
995 } while (status & INT_EN_MASK);
996 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100997 }
998
999 data = host->data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001000 dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1001
1002 if (status & ERR) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001003 omap_hsmmc_dbg_report_irq(host, status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001004 if ((status & CMD_TIMEOUT) ||
1005 (status & CMD_CRC)) {
1006 if (host->cmd) {
1007 if (status & CMD_TIMEOUT) {
Denis Karpov70a33412009-09-22 16:44:59 -07001008 omap_hsmmc_reset_controller_fsm(host,
1009 SRC);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001010 host->cmd->error = -ETIMEDOUT;
1011 } else {
1012 host->cmd->error = -EILSEQ;
1013 }
1014 end_cmd = 1;
1015 }
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001016 if (host->data || host->response_busy) {
1017 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001018 omap_hsmmc_dma_cleanup(host,
1019 -ETIMEDOUT);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001020 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001021 omap_hsmmc_reset_controller_fsm(host, SRD);
Jean Pihetc232f452009-02-11 13:11:39 -08001022 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001023 }
1024 if ((status & DATA_TIMEOUT) ||
1025 (status & DATA_CRC)) {
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001026 if (host->data || host->response_busy) {
1027 int err = (status & DATA_TIMEOUT) ?
1028 -ETIMEDOUT : -EILSEQ;
1029
1030 if (host->data)
Denis Karpov70a33412009-09-22 16:44:59 -07001031 omap_hsmmc_dma_cleanup(host, err);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001032 else
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001033 host->mrq->cmd->error = err;
1034 host->response_busy = 0;
Denis Karpov70a33412009-09-22 16:44:59 -07001035 omap_hsmmc_reset_controller_fsm(host, SRD);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001036 end_trans = 1;
1037 }
1038 }
1039 if (status & CARD_ERR) {
1040 dev_dbg(mmc_dev(host->mmc),
1041 "Ignoring card err CMD%d\n", host->cmd->opcode);
1042 if (host->cmd)
1043 end_cmd = 1;
1044 if (host->data)
1045 end_trans = 1;
1046 }
1047 }
1048
1049 OMAP_HSMMC_WRITE(host->base, STAT, status);
1050
Jarkko Lavinena8fe29d2009-04-08 11:18:32 +03001051 if (end_cmd || ((status & CC) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001052 omap_hsmmc_cmd_done(host, host->cmd);
Jarkko Lavinen0a40e642009-09-22 16:44:54 -07001053 if ((end_trans || (status & TC)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001054 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001055}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001056
Adrian Hunterb4175772010-05-26 14:42:06 -07001057/*
1058 * MMC controller IRQ handler
1059 */
1060static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1061{
1062 struct omap_hsmmc_host *host = dev_id;
1063 int status;
1064
1065 status = OMAP_HSMMC_READ(host->base, STAT);
1066 do {
1067 omap_hsmmc_do_irq(host, status);
1068 /* Flush posted write */
1069 status = OMAP_HSMMC_READ(host->base, STAT);
1070 } while (status & INT_EN_MASK);
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001071
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001072 return IRQ_HANDLED;
1073}
1074
Denis Karpov70a33412009-09-22 16:44:59 -07001075static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001076{
1077 unsigned long i;
1078
1079 OMAP_HSMMC_WRITE(host->base, HCTL,
1080 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1081 for (i = 0; i < loops_per_jiffy; i++) {
1082 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1083 break;
1084 cpu_relax();
1085 }
1086}
1087
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001088/*
David Brownelleb250822009-02-17 14:49:01 -08001089 * Switch MMC interface voltage ... only relevant for MMC1.
1090 *
1091 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1092 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1093 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001094 */
Denis Karpov70a33412009-09-22 16:44:59 -07001095static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001096{
1097 u32 reg_val = 0;
1098 int ret;
1099
1100 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301101 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301102 if (host->dbclk)
Adrian Hunter2bec0892009-09-22 16:45:02 -07001103 clk_disable(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001104
1105 /* Turn the power off */
1106 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001107
1108 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001109 if (!ret)
1110 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1111 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301112 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301113 if (host->dbclk)
Adrian Hunter2bec0892009-09-22 16:45:02 -07001114 clk_enable(host->dbclk);
1115
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001116 if (ret != 0)
1117 goto err;
1118
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001119 OMAP_HSMMC_WRITE(host->base, HCTL,
1120 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1121 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001122
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001123 /*
1124 * If a MMC dual voltage card is detected, the set_ios fn calls
1125 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001126 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001127 *
David Brownelleb250822009-02-17 14:49:01 -08001128 * Cope with a bit of slop in the range ... per data sheets:
1129 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1130 * but recommended values are 1.71V to 1.89V
1131 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1132 * but recommended values are 2.7V to 3.3V
1133 *
1134 * Board setup code shouldn't permit anything very out-of-range.
1135 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1136 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001137 */
David Brownelleb250822009-02-17 14:49:01 -08001138 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001139 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001140 else
1141 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001142
1143 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001144 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001145
1146 return 0;
1147err:
1148 dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1149 return ret;
1150}
1151
Adrian Hunterb62f6222009-09-22 16:45:01 -07001152/* Protect the card while the cover is open */
1153static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1154{
1155 if (!mmc_slot(host).get_cover_state)
1156 return;
1157
1158 host->reqs_blocked = 0;
1159 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1160 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301161 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001162 "card is now accessible\n",
1163 mmc_hostname(host->mmc));
1164 host->protect_card = 0;
1165 }
1166 } else {
1167 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301168 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001169 "card is now inaccessible\n",
1170 mmc_hostname(host->mmc));
1171 host->protect_card = 1;
1172 }
1173 }
1174}
1175
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001176/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001177 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001178 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001179static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001180{
NeilBrown7efab4f2011-12-30 12:35:13 +11001181 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001182 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001183 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001184
Adrian Huntera6b22402009-09-22 16:44:45 -07001185 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001186 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001187
1188 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001189
Denis Karpov191d1f12009-09-22 16:44:55 -07001190 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001191 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001192 else {
1193 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001194 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001195 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001196
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001197 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001198 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001199 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001200 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001201 return IRQ_HANDLED;
1202}
1203
Russell Kingc5c98922012-04-13 12:14:39 +01001204static void omap_hsmmc_dma_callback(void *param)
1205{
1206 struct omap_hsmmc_host *host = param;
1207 struct dma_chan *chan;
1208 struct mmc_data *data;
1209 int req_in_progress;
1210
1211 spin_lock_irq(&host->irq_lock);
Russell King26b88522012-04-13 12:27:37 +01001212 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001213 spin_unlock_irq(&host->irq_lock);
1214 return;
1215 }
1216
1217 data = host->mrq->data;
1218 chan = omap_hsmmc_get_dma_chan(host, data);
1219 if (!data->host_cookie)
1220 dma_unmap_sg(chan->device->dev,
1221 data->sg, data->sg_len,
1222 omap_hsmmc_get_dma_dir(host, data));
1223
1224 req_in_progress = host->req_in_progress;
Russell King26b88522012-04-13 12:27:37 +01001225 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001226 spin_unlock_irq(&host->irq_lock);
1227
1228 /* If DMA has finished after TC, complete the request */
1229 if (!req_in_progress) {
1230 struct mmc_request *mrq = host->mrq;
1231
1232 host->mrq = NULL;
1233 mmc_request_done(host->mmc, mrq);
1234 }
1235}
1236
Per Forlin9782aff2011-07-01 18:55:23 +02001237static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1238 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001239 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001240 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001241{
1242 int dma_len;
1243
1244 if (!next && data->host_cookie &&
1245 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301246 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001247 " host->next_data.cookie %d\n",
1248 __func__, data->host_cookie, host->next_data.cookie);
1249 data->host_cookie = 0;
1250 }
1251
1252 /* Check if next job is already prepared */
1253 if (next ||
1254 (!next && data->host_cookie != host->next_data.cookie)) {
Russell King26b88522012-04-13 12:27:37 +01001255 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001256 omap_hsmmc_get_dma_dir(host, data));
1257
1258 } else {
1259 dma_len = host->next_data.dma_len;
1260 host->next_data.dma_len = 0;
1261 }
1262
1263
1264 if (dma_len == 0)
1265 return -EINVAL;
1266
1267 if (next) {
1268 next->dma_len = dma_len;
1269 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1270 } else
1271 host->dma_len = dma_len;
1272
1273 return 0;
1274}
1275
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001276/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001277 * Routine to configure and start DMA for the MMC card
1278 */
Denis Karpov70a33412009-09-22 16:44:59 -07001279static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1280 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001281{
Russell King26b88522012-04-13 12:27:37 +01001282 struct dma_slave_config cfg;
1283 struct dma_async_tx_descriptor *tx;
1284 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001285 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001286 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001287
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001288 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001289 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001290 struct scatterlist *sgl;
1291
1292 sgl = data->sg + i;
1293 if (sgl->length % data->blksz)
1294 return -EINVAL;
1295 }
1296 if ((data->blksz % 4) != 0)
1297 /* REVISIT: The MMC buffer increments only when MSB is written.
1298 * Return error for blksz which is non multiple of four.
1299 */
1300 return -EINVAL;
1301
Russell King26b88522012-04-13 12:27:37 +01001302 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001303
Russell Kingc5c98922012-04-13 12:14:39 +01001304 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001305
Russell King26b88522012-04-13 12:27:37 +01001306 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1307 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1308 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1309 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1310 cfg.src_maxburst = data->blksz / 4;
1311 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001312
Russell King26b88522012-04-13 12:27:37 +01001313 ret = dmaengine_slave_config(chan, &cfg);
1314 if (ret)
1315 return ret;
Russell Kingc5c98922012-04-13 12:14:39 +01001316
Russell King26b88522012-04-13 12:27:37 +01001317 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1318 if (ret)
1319 return ret;
Russell Kingc5c98922012-04-13 12:14:39 +01001320
Russell King26b88522012-04-13 12:27:37 +01001321 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1322 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1323 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1324 if (!tx) {
1325 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1326 /* FIXME: cleanup */
1327 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001328 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001329
Russell King26b88522012-04-13 12:27:37 +01001330 tx->callback = omap_hsmmc_dma_callback;
1331 tx->callback_param = host;
1332
1333 /* Does not fail */
1334 dmaengine_submit(tx);
1335
1336 host->dma_ch = 1;
1337
1338 dma_async_issue_pending(chan);
1339
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001340 return 0;
1341}
1342
Denis Karpov70a33412009-09-22 16:44:59 -07001343static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001344 unsigned int timeout_ns,
1345 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001346{
1347 unsigned int timeout, cycle_ns;
1348 uint32_t reg, clkd, dto = 0;
1349
1350 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1351 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1352 if (clkd == 0)
1353 clkd = 1;
1354
1355 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001356 timeout = timeout_ns / cycle_ns;
1357 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001358 if (timeout) {
1359 while ((timeout & 0x80000000) == 0) {
1360 dto += 1;
1361 timeout <<= 1;
1362 }
1363 dto = 31 - dto;
1364 timeout <<= 1;
1365 if (timeout && dto)
1366 dto += 1;
1367 if (dto >= 13)
1368 dto -= 13;
1369 else
1370 dto = 0;
1371 if (dto > 14)
1372 dto = 14;
1373 }
1374
1375 reg &= ~DTO_MASK;
1376 reg |= dto << DTO_SHIFT;
1377 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1378}
1379
1380/*
1381 * Configure block length for MMC/SD cards and initiate the transfer.
1382 */
1383static int
Denis Karpov70a33412009-09-22 16:44:59 -07001384omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001385{
1386 int ret;
1387 host->data = req->data;
1388
1389 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001390 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001391 /*
1392 * Set an arbitrary 100ms data timeout for commands with
1393 * busy signal.
1394 */
1395 if (req->cmd->flags & MMC_RSP_BUSY)
1396 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001397 return 0;
1398 }
1399
1400 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1401 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001402 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001403
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001404 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001405 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001406 if (ret != 0) {
1407 dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1408 return ret;
1409 }
1410 }
1411 return 0;
1412}
1413
Per Forlin9782aff2011-07-01 18:55:23 +02001414static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1415 int err)
1416{
1417 struct omap_hsmmc_host *host = mmc_priv(mmc);
1418 struct mmc_data *data = mrq->data;
1419
Russell King26b88522012-04-13 12:27:37 +01001420 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001421 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001422
Russell King26b88522012-04-13 12:27:37 +01001423 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1424 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001425 data->host_cookie = 0;
1426 }
1427}
1428
1429static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1430 bool is_first_req)
1431{
1432 struct omap_hsmmc_host *host = mmc_priv(mmc);
1433
1434 if (mrq->data->host_cookie) {
1435 mrq->data->host_cookie = 0;
1436 return ;
1437 }
1438
Russell Kingc5c98922012-04-13 12:14:39 +01001439 if (host->use_dma) {
1440 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001441
Per Forlin9782aff2011-07-01 18:55:23 +02001442 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001443 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001444 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001445 }
Per Forlin9782aff2011-07-01 18:55:23 +02001446}
1447
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001448/*
1449 * Request function. for read/write operation
1450 */
Denis Karpov70a33412009-09-22 16:44:59 -07001451static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001452{
Denis Karpov70a33412009-09-22 16:44:59 -07001453 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001454 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001455
Adrian Hunterb4175772010-05-26 14:42:06 -07001456 BUG_ON(host->req_in_progress);
Russell King26b88522012-04-13 12:27:37 +01001457 BUG_ON(host->dma_ch != -1);
Adrian Hunterb4175772010-05-26 14:42:06 -07001458 if (host->protect_card) {
1459 if (host->reqs_blocked < 3) {
1460 /*
1461 * Ensure the controller is left in a consistent
1462 * state by resetting the command and data state
1463 * machines.
1464 */
1465 omap_hsmmc_reset_controller_fsm(host, SRD);
1466 omap_hsmmc_reset_controller_fsm(host, SRC);
1467 host->reqs_blocked += 1;
1468 }
1469 req->cmd->error = -EBADF;
1470 if (req->data)
1471 req->data->error = -EBADF;
1472 req->cmd->retries = 0;
1473 mmc_request_done(mmc, req);
1474 return;
1475 } else if (host->reqs_blocked)
1476 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001477 WARN_ON(host->mrq != NULL);
1478 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001479 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001480 if (err) {
1481 req->cmd->error = err;
1482 if (req->data)
1483 req->data->error = err;
1484 host->mrq = NULL;
1485 mmc_request_done(mmc, req);
1486 return;
1487 }
1488
Denis Karpov70a33412009-09-22 16:44:59 -07001489 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001490}
1491
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001492/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001493static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001494{
Denis Karpov70a33412009-09-22 16:44:59 -07001495 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001496 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001497
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301498 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001499
Adrian Huntera3621462009-09-22 16:44:42 -07001500 if (ios->power_mode != host->power_mode) {
1501 switch (ios->power_mode) {
1502 case MMC_POWER_OFF:
1503 mmc_slot(host).set_power(host->dev, host->slot_id,
1504 0, 0);
Adrian Hunter623821f2009-09-22 16:44:51 -07001505 host->vdd = 0;
Adrian Huntera3621462009-09-22 16:44:42 -07001506 break;
1507 case MMC_POWER_UP:
1508 mmc_slot(host).set_power(host->dev, host->slot_id,
1509 1, ios->vdd);
Adrian Hunter623821f2009-09-22 16:44:51 -07001510 host->vdd = ios->vdd;
Adrian Huntera3621462009-09-22 16:44:42 -07001511 break;
1512 case MMC_POWER_ON:
1513 do_send_init_stream = 1;
1514 break;
1515 }
1516 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001517 }
1518
Denis Karpovdd498ef2009-09-22 16:44:49 -07001519 /* FIXME: set registers based only on changes to ios */
1520
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001521 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001522
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301523 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001524 /* Only MMC1 can interface at 3V without some flavor
1525 * of external transceiver; but they all handle 1.8V.
1526 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001527 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301528 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1529 /*
1530 * With pbias cell programming missing, this
1531 * can't be allowed when booting with device
1532 * tree.
1533 */
Rajendra Nayak4d048f92012-04-11 15:33:13 +05301534 !host->dev->of_node) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001535 /*
1536 * The mmc_select_voltage fn of the core does
1537 * not seem to set the power_mode to
1538 * MMC_POWER_UP upon recalculating the voltage.
1539 * vdd 1.8v.
1540 */
Denis Karpov70a33412009-09-22 16:44:59 -07001541 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1542 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001543 "Switch operation failed\n");
1544 }
1545 }
1546
Andy Shevchenko5934df22011-05-06 12:14:06 +03001547 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001548
Adrian Huntera3621462009-09-22 16:44:42 -07001549 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001550 send_init_stream(host);
1551
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001552 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001553
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301554 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001555}
1556
1557static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1558{
Denis Karpov70a33412009-09-22 16:44:59 -07001559 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001560
Denis Karpov191d1f12009-09-22 16:44:55 -07001561 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001562 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001563 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001564}
1565
1566static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1567{
Denis Karpov70a33412009-09-22 16:44:59 -07001568 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001569
Denis Karpov191d1f12009-09-22 16:44:55 -07001570 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001571 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001572 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001573}
1574
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001575static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1576{
1577 struct omap_hsmmc_host *host = mmc_priv(mmc);
1578
1579 if (mmc_slot(host).init_card)
1580 mmc_slot(host).init_card(card);
1581}
1582
Denis Karpov70a33412009-09-22 16:44:59 -07001583static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001584{
1585 u32 hctl, capa, value;
1586
1587 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301588 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001589 hctl = SDVS30;
1590 capa = VS30 | VS18;
1591 } else {
1592 hctl = SDVS18;
1593 capa = VS18;
1594 }
1595
1596 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1597 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1598
1599 value = OMAP_HSMMC_READ(host->base, CAPA);
1600 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1601
1602 /* Set the controller to AUTO IDLE mode */
1603 value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1604 OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1605
1606 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001607 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001608}
1609
Denis Karpov70a33412009-09-22 16:44:59 -07001610static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001611{
Denis Karpov70a33412009-09-22 16:44:59 -07001612 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001613
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301614 pm_runtime_get_sync(host->dev);
1615
Denis Karpovdd498ef2009-09-22 16:44:49 -07001616 return 0;
1617}
1618
Adrian Hunter907d2e72012-02-29 09:17:21 +02001619static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001620{
Denis Karpov70a33412009-09-22 16:44:59 -07001621 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001622
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301623 pm_runtime_mark_last_busy(host->dev);
1624 pm_runtime_put_autosuspend(host->dev);
1625
Denis Karpovdd498ef2009-09-22 16:44:49 -07001626 return 0;
1627}
1628
Denis Karpov70a33412009-09-22 16:44:59 -07001629static const struct mmc_host_ops omap_hsmmc_ops = {
1630 .enable = omap_hsmmc_enable_fclk,
1631 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001632 .post_req = omap_hsmmc_post_req,
1633 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001634 .request = omap_hsmmc_request,
1635 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001636 .get_cd = omap_hsmmc_get_cd,
1637 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001638 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001639 /* NYET -- enable_sdio_irq */
1640};
1641
Denis Karpovd900f712009-09-22 16:44:38 -07001642#ifdef CONFIG_DEBUG_FS
1643
Denis Karpov70a33412009-09-22 16:44:59 -07001644static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001645{
1646 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001647 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001648 int context_loss = 0;
1649
Denis Karpov70a33412009-09-22 16:44:59 -07001650 if (host->pdata->get_context_loss_count)
1651 context_loss = host->pdata->get_context_loss_count(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001652
Adrian Hunter907d2e72012-02-29 09:17:21 +02001653 seq_printf(s, "mmc%d:\n ctx_loss:\t%d:%d\n\nregs:\n",
1654 mmc->index, host->context_loss, context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001655
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301656 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001657 seq_printf(s, "host suspended, can't read registers\n");
1658 return 0;
1659 }
1660
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301661 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001662
1663 seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1664 OMAP_HSMMC_READ(host->base, SYSCONFIG));
1665 seq_printf(s, "CON:\t\t0x%08x\n",
1666 OMAP_HSMMC_READ(host->base, CON));
1667 seq_printf(s, "HCTL:\t\t0x%08x\n",
1668 OMAP_HSMMC_READ(host->base, HCTL));
1669 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1670 OMAP_HSMMC_READ(host->base, SYSCTL));
1671 seq_printf(s, "IE:\t\t0x%08x\n",
1672 OMAP_HSMMC_READ(host->base, IE));
1673 seq_printf(s, "ISE:\t\t0x%08x\n",
1674 OMAP_HSMMC_READ(host->base, ISE));
1675 seq_printf(s, "CAPA:\t\t0x%08x\n",
1676 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001677
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301678 pm_runtime_mark_last_busy(host->dev);
1679 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001680
Denis Karpovd900f712009-09-22 16:44:38 -07001681 return 0;
1682}
1683
Denis Karpov70a33412009-09-22 16:44:59 -07001684static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001685{
Denis Karpov70a33412009-09-22 16:44:59 -07001686 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001687}
1688
1689static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001690 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001691 .read = seq_read,
1692 .llseek = seq_lseek,
1693 .release = single_release,
1694};
1695
Denis Karpov70a33412009-09-22 16:44:59 -07001696static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001697{
1698 if (mmc->debugfs_root)
1699 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1700 mmc, &mmc_regs_fops);
1701}
1702
1703#else
1704
Denis Karpov70a33412009-09-22 16:44:59 -07001705static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001706{
1707}
1708
1709#endif
1710
Rajendra Nayak46856a62012-03-12 20:32:37 +05301711#ifdef CONFIG_OF
1712static u16 omap4_reg_offset = 0x100;
1713
1714static const struct of_device_id omap_mmc_of_match[] = {
1715 {
1716 .compatible = "ti,omap2-hsmmc",
1717 },
1718 {
1719 .compatible = "ti,omap3-hsmmc",
1720 },
1721 {
1722 .compatible = "ti,omap4-hsmmc",
1723 .data = &omap4_reg_offset,
1724 },
1725 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001726};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301727MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1728
1729static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1730{
1731 struct omap_mmc_platform_data *pdata;
1732 struct device_node *np = dev->of_node;
1733 u32 bus_width;
1734
1735 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1736 if (!pdata)
1737 return NULL; /* out of memory */
1738
1739 if (of_find_property(np, "ti,dual-volt", NULL))
1740 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1741
1742 /* This driver only supports 1 slot */
1743 pdata->nr_slots = 1;
1744 pdata->slots[0].switch_pin = of_get_named_gpio(np, "cd-gpios", 0);
1745 pdata->slots[0].gpio_wp = of_get_named_gpio(np, "wp-gpios", 0);
1746
1747 if (of_find_property(np, "ti,non-removable", NULL)) {
1748 pdata->slots[0].nonremovable = true;
1749 pdata->slots[0].no_regulator_off_init = true;
1750 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001751 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301752 if (bus_width == 4)
1753 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1754 else if (bus_width == 8)
1755 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1756
1757 if (of_find_property(np, "ti,needs-special-reset", NULL))
1758 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1759
1760 return pdata;
1761}
1762#else
1763static inline struct omap_mmc_platform_data
1764 *of_get_hsmmc_pdata(struct device *dev)
1765{
1766 return NULL;
1767}
1768#endif
1769
Felipe Balbiefa25fd2012-03-14 11:18:28 +02001770static int __devinit omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001771{
1772 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1773 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001774 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001775 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001776 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301777 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001778 dma_cap_mask_t mask;
1779 unsigned tx_req, rx_req;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301780
1781 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1782 if (match) {
1783 pdata = of_get_hsmmc_pdata(&pdev->dev);
1784 if (match->data) {
1785 u16 *offsetp = match->data;
1786 pdata->reg_offset = *offsetp;
1787 }
1788 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001789
1790 if (pdata == NULL) {
1791 dev_err(&pdev->dev, "Platform Data is missing\n");
1792 return -ENXIO;
1793 }
1794
1795 if (pdata->nr_slots == 0) {
1796 dev_err(&pdev->dev, "No Slots\n");
1797 return -ENXIO;
1798 }
1799
1800 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1801 irq = platform_get_irq(pdev, 0);
1802 if (res == NULL || irq < 0)
1803 return -ENXIO;
1804
Chris Ball984b2032011-03-22 16:34:42 -07001805 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001806 if (res == NULL)
1807 return -EBUSY;
1808
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001809 ret = omap_hsmmc_gpio_init(pdata);
1810 if (ret)
1811 goto err;
1812
Denis Karpov70a33412009-09-22 16:44:59 -07001813 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001814 if (!mmc) {
1815 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001816 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001817 }
1818
1819 host = mmc_priv(mmc);
1820 host->mmc = mmc;
1821 host->pdata = pdata;
1822 host->dev = &pdev->dev;
1823 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001824 host->dma_ch = -1;
1825 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001826 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301827 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001828 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001829 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001830 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001831
1832 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001833
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301834 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001835
Adrian Huntere0eb2422010-02-15 10:03:34 -08001836 /*
1837 * If regulator_disable can only put vcc_aux to sleep then there is
1838 * no off state.
1839 */
1840 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1841 mmc_slot(host).no_off = 1;
1842
Daniel Mackd418ed82012-02-19 13:20:33 +01001843 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1844
1845 if (pdata->max_freq > 0)
1846 mmc->f_max = pdata->max_freq;
1847 else
1848 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001849
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001850 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001851
Russell King6f7607c2009-01-28 10:22:50 +00001852 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001853 if (IS_ERR(host->fclk)) {
1854 ret = PTR_ERR(host->fclk);
1855 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001856 goto err1;
1857 }
1858
Paul Walmsley9b682562011-10-06 14:50:35 -06001859 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1860 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1861 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1862 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001863
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301864 pm_runtime_enable(host->dev);
1865 pm_runtime_get_sync(host->dev);
1866 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1867 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001868
Balaji T K92a3aeb2012-02-24 21:14:34 +05301869 omap_hsmmc_context_save(host);
1870
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301871 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1872 /*
1873 * MMC can still work without debounce clock.
1874 */
1875 if (IS_ERR(host->dbclk)) {
1876 dev_warn(mmc_dev(host->mmc), "Failed to get debounce clk\n");
1877 host->dbclk = NULL;
1878 } else if (clk_enable(host->dbclk) != 0) {
1879 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1880 clk_put(host->dbclk);
1881 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001882 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001883
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001884 /* Since we do only SG emulation, we can have as many segs
1885 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001886 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001887
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001888 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1889 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1890 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1891 mmc->max_seg_size = mmc->max_req_size;
1892
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001893 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001894 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001895
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001896 mmc->caps |= mmc_slot(host).caps;
1897 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001898 mmc->caps |= MMC_CAP_4_BIT_DATA;
1899
Denis Karpov191d1f12009-09-22 16:44:55 -07001900 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001901 mmc->caps |= MMC_CAP_NONREMOVABLE;
1902
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001903 mmc->pm_caps = mmc_slot(host).pm_caps;
1904
Denis Karpov70a33412009-09-22 16:44:59 -07001905 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001906
Balaji T Kb7bf7732012-03-07 09:55:30 -05001907 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1908 if (!res) {
1909 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
Grazvydas Ignotasf3e2f1d2009-01-03 10:36:13 +00001910 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001911 }
Russell King26b88522012-04-13 12:27:37 +01001912 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001913
1914 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1915 if (!res) {
1916 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1917 goto err_irq;
1918 }
Russell King26b88522012-04-13 12:27:37 +01001919 rx_req = res->start;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001920
Russell King26b88522012-04-13 12:27:37 +01001921 dma_cap_zero(mask);
1922 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001923
Russell King26b88522012-04-13 12:27:37 +01001924 host->rx_chan = dma_request_channel(mask, omap_dma_filter_fn, &rx_req);
1925 if (!host->rx_chan) {
1926 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001927 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001928 goto err_irq;
1929 }
1930
1931 host->tx_chan = dma_request_channel(mask, omap_dma_filter_fn, &tx_req);
1932 if (!host->tx_chan) {
1933 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001934 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001935 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001936 }
1937
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001938 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001939 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001940 mmc_hostname(mmc), host);
1941 if (ret) {
1942 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
1943 goto err_irq;
1944 }
1945
1946 if (pdata->init != NULL) {
1947 if (pdata->init(&pdev->dev) != 0) {
Denis Karpov70a33412009-09-22 16:44:59 -07001948 dev_dbg(mmc_dev(host->mmc),
1949 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001950 goto err_irq_cd_init;
1951 }
1952 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001953
Adrian Hunterb702b102010-02-15 10:03:35 -08001954 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001955 ret = omap_hsmmc_reg_get(host);
1956 if (ret)
1957 goto err_reg;
1958 host->use_reg = 1;
1959 }
1960
David Brownellb583f262009-05-28 14:04:03 -07001961 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001962
1963 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001964 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001965 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1966 NULL,
1967 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08001968 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11001969 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001970 if (ret) {
1971 dev_dbg(mmc_dev(host->mmc),
1972 "Unable to grab MMC CD IRQ\n");
1973 goto err_irq_cd;
1974 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001975 pdata->suspend = omap_hsmmc_suspend_cdirq;
1976 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001977 }
1978
Adrian Hunterb4175772010-05-26 14:42:06 -07001979 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001980
Adrian Hunterb62f6222009-09-22 16:45:01 -07001981 omap_hsmmc_protect_card(host);
1982
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001983 mmc_add_host(mmc);
1984
Denis Karpov191d1f12009-09-22 16:44:55 -07001985 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001986 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1987 if (ret < 0)
1988 goto err_slot_name;
1989 }
Denis Karpov191d1f12009-09-22 16:44:55 -07001990 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001991 ret = device_create_file(&mmc->class_dev,
1992 &dev_attr_cover_switch);
1993 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001994 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001995 }
1996
Denis Karpov70a33412009-09-22 16:44:59 -07001997 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301998 pm_runtime_mark_last_busy(host->dev);
1999 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002000
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002001 return 0;
2002
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002003err_slot_name:
2004 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002005 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002006err_irq_cd:
2007 if (host->use_reg)
2008 omap_hsmmc_reg_put(host);
2009err_reg:
2010 if (host->pdata->cleanup)
2011 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002012err_irq_cd_init:
2013 free_irq(host->irq, host);
2014err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002015 if (host->tx_chan)
2016 dma_release_channel(host->tx_chan);
2017 if (host->rx_chan)
2018 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302019 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002020 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002021 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302022 if (host->dbclk) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002023 clk_disable(host->dbclk);
2024 clk_put(host->dbclk);
2025 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002026err1:
2027 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002028 platform_set_drvdata(pdev, NULL);
2029 mmc_free_host(mmc);
2030err_alloc:
2031 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002032err:
Russell King48b332f2012-04-18 11:11:57 +01002033 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2034 if (res)
2035 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002036 return ret;
2037}
2038
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002039static int __devexit omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002040{
Denis Karpov70a33412009-09-22 16:44:59 -07002041 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002042 struct resource *res;
2043
Felipe Balbi927ce942012-03-14 11:18:27 +02002044 pm_runtime_get_sync(host->dev);
2045 mmc_remove_host(host->mmc);
2046 if (host->use_reg)
2047 omap_hsmmc_reg_put(host);
2048 if (host->pdata->cleanup)
2049 host->pdata->cleanup(&pdev->dev);
2050 free_irq(host->irq, host);
2051 if (mmc_slot(host).card_detect_irq)
2052 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002053
Russell Kingc5c98922012-04-13 12:14:39 +01002054 if (host->tx_chan)
2055 dma_release_channel(host->tx_chan);
2056 if (host->rx_chan)
2057 dma_release_channel(host->rx_chan);
2058
Felipe Balbi927ce942012-03-14 11:18:27 +02002059 pm_runtime_put_sync(host->dev);
2060 pm_runtime_disable(host->dev);
2061 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302062 if (host->dbclk) {
Felipe Balbi927ce942012-03-14 11:18:27 +02002063 clk_disable(host->dbclk);
2064 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002065 }
2066
Felipe Balbi927ce942012-03-14 11:18:27 +02002067 mmc_free_host(host->mmc);
2068 iounmap(host->base);
2069 omap_hsmmc_gpio_free(pdev->dev.platform_data);
2070
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002071 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2072 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002073 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002074 platform_set_drvdata(pdev, NULL);
2075
2076 return 0;
2077}
2078
2079#ifdef CONFIG_PM
Kevin Hilmana791daa2010-05-26 14:42:07 -07002080static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002081{
2082 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002083 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2084
2085 if (!host)
2086 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002087
2088 if (host && host->suspended)
2089 return 0;
2090
Felipe Balbi927ce942012-03-14 11:18:27 +02002091 pm_runtime_get_sync(host->dev);
2092 host->suspended = 1;
2093 if (host->pdata->suspend) {
2094 ret = host->pdata->suspend(dev, host->slot_id);
Eliad Peller31f9d462011-11-22 16:02:17 +02002095 if (ret) {
Felipe Balbi927ce942012-03-14 11:18:27 +02002096 dev_dbg(dev, "Unable to handle MMC board"
2097 " level suspend\n");
Adrian Huntera6b22402009-09-22 16:44:45 -07002098 host->suspended = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002099 return ret;
Adrian Huntera6b22402009-09-22 16:44:45 -07002100 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002101 }
Felipe Balbi927ce942012-03-14 11:18:27 +02002102 ret = mmc_suspend_host(host->mmc);
2103
2104 if (ret) {
2105 host->suspended = 0;
2106 if (host->pdata->resume) {
2107 ret = host->pdata->resume(dev, host->slot_id);
2108 if (ret)
2109 dev_dbg(dev, "Unmask interrupt failed\n");
2110 }
2111 goto err;
2112 }
2113
2114 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2115 omap_hsmmc_disable_irq(host);
2116 OMAP_HSMMC_WRITE(host->base, HCTL,
2117 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2118 }
2119
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302120 if (host->dbclk)
Felipe Balbi927ce942012-03-14 11:18:27 +02002121 clk_disable(host->dbclk);
Eliad Peller31f9d462011-11-22 16:02:17 +02002122err:
2123 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002124 return ret;
2125}
2126
2127/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002128static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002129{
2130 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002131 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2132
2133 if (!host)
2134 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002135
2136 if (host && !host->suspended)
2137 return 0;
2138
Felipe Balbi927ce942012-03-14 11:18:27 +02002139 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002140
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302141 if (host->dbclk)
Felipe Balbi927ce942012-03-14 11:18:27 +02002142 clk_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002143
Felipe Balbi927ce942012-03-14 11:18:27 +02002144 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2145 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002146
Felipe Balbi927ce942012-03-14 11:18:27 +02002147 if (host->pdata->resume) {
2148 ret = host->pdata->resume(dev, host->slot_id);
2149 if (ret)
2150 dev_dbg(dev, "Unmask interrupt failed\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002151 }
2152
Felipe Balbi927ce942012-03-14 11:18:27 +02002153 omap_hsmmc_protect_card(host);
2154
2155 /* Notify the core to resume the host */
2156 ret = mmc_resume_host(host->mmc);
2157 if (ret == 0)
2158 host->suspended = 0;
2159
2160 pm_runtime_mark_last_busy(host->dev);
2161 pm_runtime_put_autosuspend(host->dev);
2162
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002163 return ret;
2164
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002165}
2166
2167#else
Denis Karpov70a33412009-09-22 16:44:59 -07002168#define omap_hsmmc_suspend NULL
2169#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002170#endif
2171
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302172static int omap_hsmmc_runtime_suspend(struct device *dev)
2173{
2174 struct omap_hsmmc_host *host;
2175
2176 host = platform_get_drvdata(to_platform_device(dev));
2177 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002178 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302179
2180 return 0;
2181}
2182
2183static int omap_hsmmc_runtime_resume(struct device *dev)
2184{
2185 struct omap_hsmmc_host *host;
2186
2187 host = platform_get_drvdata(to_platform_device(dev));
2188 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002189 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302190
2191 return 0;
2192}
2193
Kevin Hilmana791daa2010-05-26 14:42:07 -07002194static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002195 .suspend = omap_hsmmc_suspend,
2196 .resume = omap_hsmmc_resume,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302197 .runtime_suspend = omap_hsmmc_runtime_suspend,
2198 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002199};
2200
2201static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002202 .probe = omap_hsmmc_probe,
2203 .remove = __devexit_p(omap_hsmmc_remove),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002204 .driver = {
2205 .name = DRIVER_NAME,
2206 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002207 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302208 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002209 },
2210};
2211
Felipe Balbib7964502012-03-14 11:18:32 +02002212module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002213MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2214MODULE_LICENSE("GPL");
2215MODULE_ALIAS("platform:" DRIVER_NAME);
2216MODULE_AUTHOR("Texas Instruments Inc");