blob: fbd2d89017a9385ef0b992165fef1e979988b092 [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>
Felipe Balbi031cd032013-07-11 16:09:05 +030024#include <linux/sizes.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010025#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/dma-mapping.h>
28#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010029#include <linux/timer.h>
30#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053031#include <linux/of.h>
32#include <linux/of_gpio.h>
33#include <linux/of_device.h>
Russell King3451c062012-04-21 22:35:42 +010034#include <linux/omap-dma.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010035#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070036#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070037#include <linux/mmc/mmc.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010038#include <linux/io.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080039#include <linux/gpio.h>
40#include <linux/regulator/consumer.h>
Daniel Mack46b76032012-10-15 21:35:05 +053041#include <linux/pinctrl/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053042#include <linux/pm_runtime.h>
Tony Lindgren68f39e72012-10-15 12:09:43 -070043#include <linux/platform_data/mmc-omap.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010044
45/* OMAP HSMMC Host Controller Registers */
Denis Karpov11dd62a2009-09-22 16:44:43 -070046#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010047#define OMAP_HSMMC_CON 0x002C
48#define OMAP_HSMMC_BLK 0x0104
49#define OMAP_HSMMC_ARG 0x0108
50#define OMAP_HSMMC_CMD 0x010C
51#define OMAP_HSMMC_RSP10 0x0110
52#define OMAP_HSMMC_RSP32 0x0114
53#define OMAP_HSMMC_RSP54 0x0118
54#define OMAP_HSMMC_RSP76 0x011C
55#define OMAP_HSMMC_DATA 0x0120
56#define OMAP_HSMMC_HCTL 0x0128
57#define OMAP_HSMMC_SYSCTL 0x012C
58#define OMAP_HSMMC_STAT 0x0130
59#define OMAP_HSMMC_IE 0x0134
60#define OMAP_HSMMC_ISE 0x0138
61#define OMAP_HSMMC_CAPA 0x0140
62
63#define VS18 (1 << 26)
64#define VS30 (1 << 25)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053065#define HSS (1 << 21)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010066#define SDVS18 (0x5 << 9)
67#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080068#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010069#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010070#define SDVSCLR 0xFFFFF1FF
71#define SDVSDET 0x00000400
72#define AUTOIDLE 0x1
73#define SDBP (1 << 8)
74#define DTO 0xe
75#define ICE 0x1
76#define ICS 0x2
77#define CEN (1 << 2)
Balaji T Ked164182013-10-21 00:25:21 +053078#define CLKD_MAX 0x3FF /* max clock divisor: 1023 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010079#define CLKD_MASK 0x0000FFC0
80#define CLKD_SHIFT 6
81#define DTO_MASK 0x000F0000
82#define DTO_SHIFT 16
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010083#define INIT_STREAM (1 << 1)
84#define DP_SELECT (1 << 21)
85#define DDIR (1 << 4)
Venkatraman Sa7e96872012-11-19 22:00:01 +053086#define DMAE 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010087#define MSBS (1 << 5)
88#define BCE (1 << 1)
89#define FOUR_BIT (1 << 1)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053090#define HSPE (1 << 2)
Balaji T K03b5d922012-04-09 12:08:33 +053091#define DDR (1 << 19)
Jarkko Lavinen73153012008-11-21 16:49:54 +020092#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010093#define OD 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010094#define STAT_CLEAR 0xFFFFFFFF
95#define INIT_STREAM_CMD 0x00000000
96#define DUAL_VOLT_OCR_BIT 7
97#define SRC (1 << 25)
98#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -070099#define SOFTRESET (1 << 1)
100#define RESETDONE (1 << 0)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100101
Venkatraman Sa7e96872012-11-19 22:00:01 +0530102/* Interrupt masks for IE and ISE register */
103#define CC_EN (1 << 0)
104#define TC_EN (1 << 1)
105#define BWR_EN (1 << 4)
106#define BRR_EN (1 << 5)
107#define ERR_EN (1 << 15)
108#define CTO_EN (1 << 16)
109#define CCRC_EN (1 << 17)
110#define CEB_EN (1 << 18)
111#define CIE_EN (1 << 19)
112#define DTO_EN (1 << 20)
113#define DCRC_EN (1 << 21)
114#define DEB_EN (1 << 22)
115#define CERR_EN (1 << 28)
116#define BADA_EN (1 << 29)
117
118#define INT_EN_MASK (BADA_EN | CERR_EN | DEB_EN | DCRC_EN |\
119 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
120 BRR_EN | BWR_EN | TC_EN | CC_EN)
121
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530122#define MMC_AUTOSUSPEND_DELAY 100
Jianpeng Ma1e881782013-10-21 00:25:20 +0530123#define MMC_TIMEOUT_MS 20 /* 20 mSec */
124#define MMC_TIMEOUT_US 20000 /* 20000 micro Sec */
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400125#define OMAP_MMC_MIN_CLOCK 400000
126#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530127#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100128
129/*
130 * One controller can have multiple slots, like on some omap boards using
131 * omap.c controller driver. Luckily this is not currently done on any known
132 * omap_hsmmc.c device.
133 */
134#define mmc_slot(host) (host->pdata->slots[host->slot_id])
135
136/*
137 * MMC Host controller read/write API's
138 */
139#define OMAP_HSMMC_READ(base, reg) \
140 __raw_readl((base) + OMAP_HSMMC_##reg)
141
142#define OMAP_HSMMC_WRITE(base, reg, val) \
143 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
144
Per Forlin9782aff2011-07-01 18:55:23 +0200145struct omap_hsmmc_next {
146 unsigned int dma_len;
147 s32 cookie;
148};
149
Denis Karpov70a33412009-09-22 16:44:59 -0700150struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100151 struct device *dev;
152 struct mmc_host *mmc;
153 struct mmc_request *mrq;
154 struct mmc_command *cmd;
155 struct mmc_data *data;
156 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100157 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800158 /*
159 * vcc == configured supply
160 * vcc_aux == optional
161 * - MMC1, supply for DAT4..DAT7
162 * - MMC2/MMC2, external level shifter voltage supply, for
163 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
164 */
165 struct regulator *vcc;
166 struct regulator *vcc_aux;
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530167 int pbias_disable;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100168 void __iomem *base;
169 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700170 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100171 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200172 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100173 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700174 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100175 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530176 u32 con;
177 u32 hctl;
178 u32 sysctl;
179 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100180 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100181 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100182 struct dma_chan *tx_chan;
183 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100184 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200185 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700186 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700187 int protect_card;
188 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800189 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700190 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200191 struct omap_hsmmc_next next_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100192 struct omap_mmc_platform_data *pdata;
193};
194
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800195static int omap_hsmmc_card_detect(struct device *dev, int slot)
196{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530197 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
198 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800199
200 /* NOTE: assumes card detect signal is active-low */
201 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
202}
203
204static int omap_hsmmc_get_wp(struct device *dev, int slot)
205{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530206 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
207 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800208
209 /* NOTE: assumes write protect signal is active-high */
210 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
211}
212
213static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
214{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530215 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
216 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800217
218 /* NOTE: assumes card detect signal is active-low */
219 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
220}
221
222#ifdef CONFIG_PM
223
224static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
225{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530226 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
227 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800228
229 disable_irq(mmc->slots[0].card_detect_irq);
230 return 0;
231}
232
233static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
234{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530235 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
236 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800237
238 enable_irq(mmc->slots[0].card_detect_irq);
239 return 0;
240}
241
242#else
243
244#define omap_hsmmc_suspend_cdirq NULL
245#define omap_hsmmc_resume_cdirq NULL
246
247#endif
248
Adrian Hunterb702b102010-02-15 10:03:35 -0800249#ifdef CONFIG_REGULATOR
250
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500251static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800252 int vdd)
253{
254 struct omap_hsmmc_host *host =
255 platform_get_drvdata(to_platform_device(dev));
256 int ret = 0;
257
258 /*
259 * If we don't see a Vcc regulator, assume it's a fixed
260 * voltage always-on regulator.
261 */
262 if (!host->vcc)
263 return 0;
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530264 /*
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530265 * With DT, never turn OFF the regulator for MMC1. This is because
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530266 * the pbias cell programming support is still missing when
267 * booting with Device tree
268 */
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530269 if (host->pbias_disable && !vdd)
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530270 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800271
272 if (mmc_slot(host).before_set_reg)
273 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
274
275 /*
276 * Assume Vcc regulator is used only to power the card ... OMAP
277 * VDDS is used to power the pins, optionally with a transceiver to
278 * support cards using voltages other than VDDS (1.8V nominal). When a
279 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
280 *
281 * In some cases this regulator won't support enable/disable;
282 * e.g. it's a fixed rail for a WLAN chip.
283 *
284 * In other cases vcc_aux switches interface power. Example, for
285 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
286 * chips/cards need an interface voltage rail too.
287 */
288 if (power_on) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400289 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800290 /* Enable interface voltage rail, if needed */
291 if (ret == 0 && host->vcc_aux) {
292 ret = regulator_enable(host->vcc_aux);
293 if (ret < 0)
Linus Walleij99fc5132010-09-29 01:08:27 -0400294 ret = mmc_regulator_set_ocr(host->mmc,
295 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800296 }
297 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400298 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800299 if (host->vcc_aux)
300 ret = regulator_disable(host->vcc_aux);
Linus Walleij99fc5132010-09-29 01:08:27 -0400301 if (!ret) {
302 /* Then proceed to shut down the local regulator */
303 ret = mmc_regulator_set_ocr(host->mmc,
304 host->vcc, 0);
305 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800306 }
307
308 if (mmc_slot(host).after_set_reg)
309 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
310
311 return ret;
312}
313
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800314static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
315{
316 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700317 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800318
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800319 reg = regulator_get(host->dev, "vmmc");
320 if (IS_ERR(reg)) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +0530321 dev_err(host->dev, "vmmc regulator missing\n");
NeilBrown1fdc90f2012-08-08 00:06:00 -0400322 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800323 } else {
NeilBrown1fdc90f2012-08-08 00:06:00 -0400324 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800325 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700326 ocr_value = mmc_regulator_get_ocrmask(reg);
327 if (!mmc_slot(host).ocr_mask) {
328 mmc_slot(host).ocr_mask = ocr_value;
329 } else {
330 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530331 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500332 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700333 mmc_slot(host).ocr_mask = 0;
334 return -EINVAL;
335 }
336 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800337
338 /* Allow an aux regulator */
339 reg = regulator_get(host->dev, "vmmc_aux");
340 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
341
Balaji T Kb1c1df72011-05-30 19:55:34 +0530342 /* For eMMC do not power off when not in sleep state */
343 if (mmc_slot(host).no_regulator_off_init)
344 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800345 /*
346 * UGLY HACK: workaround regulator framework bugs.
347 * When the bootloader leaves a supply active, it's
348 * initialized with zero usecount ... and we can't
349 * disable it without first enabling it. Until the
350 * framework is fixed, we need a workaround like this
351 * (which is safe for MMC, but not in general).
352 */
Adrian Huntere840ce12011-05-06 12:14:10 +0300353 if (regulator_is_enabled(host->vcc) > 0 ||
354 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
355 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
356
357 mmc_slot(host).set_power(host->dev, host->slot_id,
358 1, vdd);
359 mmc_slot(host).set_power(host->dev, host->slot_id,
360 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800361 }
362 }
363
364 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800365}
366
367static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
368{
369 regulator_put(host->vcc);
370 regulator_put(host->vcc_aux);
371 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800372}
373
Adrian Hunterb702b102010-02-15 10:03:35 -0800374static inline int omap_hsmmc_have_reg(void)
375{
376 return 1;
377}
378
379#else
380
381static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
382{
383 return -EINVAL;
384}
385
386static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
387{
388}
389
390static inline int omap_hsmmc_have_reg(void)
391{
392 return 0;
393}
394
395#endif
396
397static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
398{
399 int ret;
400
401 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800402 if (pdata->slots[0].cover)
403 pdata->slots[0].get_cover_state =
404 omap_hsmmc_get_cover_state;
405 else
406 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
407 pdata->slots[0].card_detect_irq =
408 gpio_to_irq(pdata->slots[0].switch_pin);
409 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
410 if (ret)
411 return ret;
412 ret = gpio_direction_input(pdata->slots[0].switch_pin);
413 if (ret)
414 goto err_free_sp;
415 } else
416 pdata->slots[0].switch_pin = -EINVAL;
417
418 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
419 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
420 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
421 if (ret)
422 goto err_free_cd;
423 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
424 if (ret)
425 goto err_free_wp;
426 } else
427 pdata->slots[0].gpio_wp = -EINVAL;
428
429 return 0;
430
431err_free_wp:
432 gpio_free(pdata->slots[0].gpio_wp);
433err_free_cd:
434 if (gpio_is_valid(pdata->slots[0].switch_pin))
435err_free_sp:
436 gpio_free(pdata->slots[0].switch_pin);
437 return ret;
438}
439
440static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
441{
442 if (gpio_is_valid(pdata->slots[0].gpio_wp))
443 gpio_free(pdata->slots[0].gpio_wp);
444 if (gpio_is_valid(pdata->slots[0].switch_pin))
445 gpio_free(pdata->slots[0].switch_pin);
446}
447
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100448/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300449 * Start clock to the card
450 */
451static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
452{
453 OMAP_HSMMC_WRITE(host->base, SYSCTL,
454 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
455}
456
457/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100458 * Stop clock to the card
459 */
Denis Karpov70a33412009-09-22 16:44:59 -0700460static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100461{
462 OMAP_HSMMC_WRITE(host->base, SYSCTL,
463 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
464 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900465 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100466}
467
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700468static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
469 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700470{
471 unsigned int irq_mask;
472
473 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530474 irq_mask = INT_EN_MASK & ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700475 else
476 irq_mask = INT_EN_MASK;
477
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700478 /* Disable timeout for erases */
479 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530480 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700481
Adrian Hunterb4175772010-05-26 14:42:06 -0700482 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
483 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
484 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
485}
486
487static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
488{
489 OMAP_HSMMC_WRITE(host->base, ISE, 0);
490 OMAP_HSMMC_WRITE(host->base, IE, 0);
491 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
492}
493
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300494/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530495static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300496{
497 u16 dsor = 0;
498
499 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530500 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530501 if (dsor > CLKD_MAX)
502 dsor = CLKD_MAX;
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300503 }
504
505 return dsor;
506}
507
Andy Shevchenko5934df22011-05-06 12:14:06 +0300508static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
509{
510 struct mmc_ios *ios = &host->mmc->ios;
511 unsigned long regval;
512 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530513 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300514
Venkatraman S8986d312012-08-07 19:10:38 +0530515 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300516
517 omap_hsmmc_stop_clock(host);
518
519 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
520 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530521 clkdiv = calc_divisor(host, ios);
522 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300523 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
524 OMAP_HSMMC_WRITE(host->base, SYSCTL,
525 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
526
527 /* Wait till the ICS bit is set */
528 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
529 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
530 && time_before(jiffies, timeout))
531 cpu_relax();
532
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530533 /*
534 * Enable High-Speed Support
535 * Pre-Requisites
536 * - Controller should support High-Speed-Enable Bit
537 * - Controller should not be using DDR Mode
538 * - Controller should advertise that it supports High Speed
539 * in capabilities register
540 * - MMC/SD clock coming out of controller > 25MHz
541 */
542 if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) &&
543 (ios->timing != MMC_TIMING_UHS_DDR50) &&
544 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
545 regval = OMAP_HSMMC_READ(host->base, HCTL);
546 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
547 regval |= HSPE;
548 else
549 regval &= ~HSPE;
550
551 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
552 }
553
Andy Shevchenko5934df22011-05-06 12:14:06 +0300554 omap_hsmmc_start_clock(host);
555}
556
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400557static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
558{
559 struct mmc_ios *ios = &host->mmc->ios;
560 u32 con;
561
562 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d922012-04-09 12:08:33 +0530563 if (ios->timing == MMC_TIMING_UHS_DDR50)
564 con |= DDR; /* configure in DDR mode */
565 else
566 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400567 switch (ios->bus_width) {
568 case MMC_BUS_WIDTH_8:
569 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
570 break;
571 case MMC_BUS_WIDTH_4:
572 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
573 OMAP_HSMMC_WRITE(host->base, HCTL,
574 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
575 break;
576 case MMC_BUS_WIDTH_1:
577 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
578 OMAP_HSMMC_WRITE(host->base, HCTL,
579 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
580 break;
581 }
582}
583
584static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
585{
586 struct mmc_ios *ios = &host->mmc->ios;
587 u32 con;
588
589 con = OMAP_HSMMC_READ(host->base, CON);
590 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
591 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
592 else
593 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
594}
595
Denis Karpov11dd62a2009-09-22 16:44:43 -0700596#ifdef CONFIG_PM
597
598/*
599 * Restore the MMC host context, if it was lost as result of a
600 * power state change.
601 */
Denis Karpov70a33412009-09-22 16:44:59 -0700602static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700603{
604 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400605 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700606 unsigned long timeout;
607
Venkatraman S6c31b212012-08-08 14:26:52 +0530608 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
609 return 1;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700610
Tony Lindgren0a82e062013-10-21 00:25:19 +0530611 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
612 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
613 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
614 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
615 return 0;
616
617 host->context_loss++;
618
Balaji T Kc2200ef2012-03-07 09:55:30 -0500619 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700620 if (host->power_mode != MMC_POWER_OFF &&
621 (1 << ios->vdd) <= MMC_VDD_23_24)
622 hctl = SDVS18;
623 else
624 hctl = SDVS30;
625 capa = VS30 | VS18;
626 } else {
627 hctl = SDVS18;
628 capa = VS18;
629 }
630
631 OMAP_HSMMC_WRITE(host->base, HCTL,
632 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
633
634 OMAP_HSMMC_WRITE(host->base, CAPA,
635 OMAP_HSMMC_READ(host->base, CAPA) | capa);
636
637 OMAP_HSMMC_WRITE(host->base, HCTL,
638 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
639
640 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
641 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
642 && time_before(jiffies, timeout))
643 ;
644
Adrian Hunterb4175772010-05-26 14:42:06 -0700645 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700646
647 /* Do not initialize card-specific things if the power is off */
648 if (host->power_mode == MMC_POWER_OFF)
649 goto out;
650
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400651 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700652
Andy Shevchenko5934df22011-05-06 12:14:06 +0300653 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700654
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400655 omap_hsmmc_set_bus_mode(host);
656
Denis Karpov11dd62a2009-09-22 16:44:43 -0700657out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530658 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
659 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700660 return 0;
661}
662
663/*
664 * Save the MMC host context (store the number of power state changes so far).
665 */
Denis Karpov70a33412009-09-22 16:44:59 -0700666static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700667{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530668 host->con = OMAP_HSMMC_READ(host->base, CON);
669 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
670 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
671 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700672}
673
674#else
675
Denis Karpov70a33412009-09-22 16:44:59 -0700676static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700677{
678 return 0;
679}
680
Denis Karpov70a33412009-09-22 16:44:59 -0700681static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700682{
683}
684
685#endif
686
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100687/*
688 * Send init stream sequence to card
689 * before sending IDLE command
690 */
Denis Karpov70a33412009-09-22 16:44:59 -0700691static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100692{
693 int reg = 0;
694 unsigned long timeout;
695
Adrian Hunterb62f6222009-09-22 16:45:01 -0700696 if (host->protect_card)
697 return;
698
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100699 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700700
701 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100702 OMAP_HSMMC_WRITE(host->base, CON,
703 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
704 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
705
706 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530707 while ((reg != CC_EN) && time_before(jiffies, timeout))
708 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100709
710 OMAP_HSMMC_WRITE(host->base, CON,
711 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700712
713 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
714 OMAP_HSMMC_READ(host->base, STAT);
715
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100716 enable_irq(host->irq);
717}
718
719static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700720int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100721{
722 int r = 1;
723
Denis Karpov191d1f12009-09-22 16:44:55 -0700724 if (mmc_slot(host).get_cover_state)
725 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100726 return r;
727}
728
729static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700730omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100731 char *buf)
732{
733 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700734 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100735
Denis Karpov70a33412009-09-22 16:44:59 -0700736 return sprintf(buf, "%s\n",
737 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100738}
739
Denis Karpov70a33412009-09-22 16:44:59 -0700740static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100741
742static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700743omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100744 char *buf)
745{
746 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700747 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100748
Denis Karpov191d1f12009-09-22 16:44:55 -0700749 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100750}
751
Denis Karpov70a33412009-09-22 16:44:59 -0700752static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100753
754/*
755 * Configure the response type and send the cmd.
756 */
757static void
Denis Karpov70a33412009-09-22 16:44:59 -0700758omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100759 struct mmc_data *data)
760{
761 int cmdreg = 0, resptype = 0, cmdtype = 0;
762
Venkatraman S8986d312012-08-07 19:10:38 +0530763 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100764 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
765 host->cmd = cmd;
766
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700767 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100768
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200769 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100770 if (cmd->flags & MMC_RSP_PRESENT) {
771 if (cmd->flags & MMC_RSP_136)
772 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200773 else if (cmd->flags & MMC_RSP_BUSY) {
774 resptype = 3;
775 host->response_busy = 1;
776 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100777 resptype = 2;
778 }
779
780 /*
781 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
782 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
783 * a val of 0x3, rest 0x0.
784 */
785 if (cmd == host->mrq->stop)
786 cmdtype = 0x3;
787
788 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
789
790 if (data) {
791 cmdreg |= DP_SELECT | MSBS | BCE;
792 if (data->flags & MMC_DATA_READ)
793 cmdreg |= DDIR;
794 else
795 cmdreg &= ~(DDIR);
796 }
797
798 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530799 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100800
Adrian Hunterb4175772010-05-26 14:42:06 -0700801 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700802
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100803 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
804 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
805}
806
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200807static int
Denis Karpov70a33412009-09-22 16:44:59 -0700808omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200809{
810 if (data->flags & MMC_DATA_WRITE)
811 return DMA_TO_DEVICE;
812 else
813 return DMA_FROM_DEVICE;
814}
815
Russell Kingc5c98922012-04-13 12:14:39 +0100816static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
817 struct mmc_data *data)
818{
819 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
820}
821
Adrian Hunterb4175772010-05-26 14:42:06 -0700822static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
823{
824 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530825 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700826
Venkatraman S31463b12012-04-09 12:08:34 +0530827 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700828 host->req_in_progress = 0;
829 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530830 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700831
832 omap_hsmmc_disable_irq(host);
833 /* Do not complete the request if DMA is still in progress */
834 if (mrq->data && host->use_dma && dma_ch != -1)
835 return;
836 host->mrq = NULL;
837 mmc_request_done(host->mmc, mrq);
838}
839
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100840/*
841 * Notify the transfer complete to MMC core
842 */
843static void
Denis Karpov70a33412009-09-22 16:44:59 -0700844omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100845{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200846 if (!data) {
847 struct mmc_request *mrq = host->mrq;
848
Adrian Hunter23050102009-09-22 16:44:57 -0700849 /* TC before CC from CMD6 - don't know why, but it happens */
850 if (host->cmd && host->cmd->opcode == 6 &&
851 host->response_busy) {
852 host->response_busy = 0;
853 return;
854 }
855
Adrian Hunterb4175772010-05-26 14:42:06 -0700856 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200857 return;
858 }
859
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100860 host->data = NULL;
861
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100862 if (!data->error)
863 data->bytes_xfered += data->blocks * (data->blksz);
864 else
865 data->bytes_xfered = 0;
866
Ming Leife852272012-06-22 18:49:35 +0800867 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700868 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800869 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100870 }
Ming Leife852272012-06-22 18:49:35 +0800871 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100872}
873
874/*
875 * Notify the core about command completion
876 */
877static void
Denis Karpov70a33412009-09-22 16:44:59 -0700878omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100879{
880 host->cmd = NULL;
881
882 if (cmd->flags & MMC_RSP_PRESENT) {
883 if (cmd->flags & MMC_RSP_136) {
884 /* response type 2 */
885 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
886 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
887 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
888 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
889 } else {
890 /* response types 1, 1b, 3, 4, 5, 6 */
891 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
892 }
893 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700894 if ((host->data == NULL && !host->response_busy) || cmd->error)
895 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100896}
897
898/*
899 * DMA clean up for command errors
900 */
Denis Karpov70a33412009-09-22 16:44:59 -0700901static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100902{
Adrian Hunterb4175772010-05-26 14:42:06 -0700903 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530904 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700905
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200906 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100907
Venkatraman S31463b12012-04-09 12:08:34 +0530908 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700909 dma_ch = host->dma_ch;
910 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530911 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700912
913 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100914 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
915
916 dmaengine_terminate_all(chan);
917 dma_unmap_sg(chan->device->dev,
918 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700919 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +0100920
Per Forlin053bf342011-11-07 21:55:11 +0530921 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100922 }
923 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100924}
925
926/*
927 * Readable error output
928 */
929#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300930static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100931{
932 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700933 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300934 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
935 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
936 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
937 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100938 };
939 char res[256];
940 char *buf = res;
941 int len, i;
942
943 len = sprintf(buf, "MMC IRQ 0x%x :", status);
944 buf += len;
945
Denis Karpov70a33412009-09-22 16:44:59 -0700946 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100947 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700948 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100949 buf += len;
950 }
951
Venkatraman S8986d312012-08-07 19:10:38 +0530952 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100953}
Adrian Hunter699b9582011-05-06 12:14:01 +0300954#else
955static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
956 u32 status)
957{
958}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100959#endif /* CONFIG_MMC_DEBUG */
960
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100961/*
962 * MMC controller internal state machines reset
963 *
964 * Used to reset command or data internal state machines, using respectively
965 * SRC or SRD bit of SYSCTL register
966 * Can be called from interrupt context
967 */
Denis Karpov70a33412009-09-22 16:44:59 -0700968static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
969 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100970{
971 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +0530972 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100973
974 OMAP_HSMMC_WRITE(host->base, SYSCTL,
975 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
976
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700977 /*
978 * OMAP4 ES2 and greater has an updated reset logic.
979 * Monitor a 0->1 transition first
980 */
981 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -0500982 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700983 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +0530984 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -0700985 }
986 i = 0;
987
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100988 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
989 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +0530990 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100991
992 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
993 dev_err(mmc_dev(host->mmc),
994 "Timeout waiting on controller reset in %s\n",
995 __func__);
996}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100997
Balaji T K25e18972012-11-19 21:59:55 +0530998static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
999 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301000{
Balaji T K25e18972012-11-19 21:59:55 +05301001 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301002 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301003 if (host->cmd)
1004 host->cmd->error = err;
1005 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301006
1007 if (host->data) {
1008 omap_hsmmc_reset_controller_fsm(host, SRD);
1009 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301010 } else if (host->mrq && host->mrq->cmd)
1011 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301012}
1013
Adrian Hunterb4175772010-05-26 14:42:06 -07001014static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001015{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001016 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001017 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001018
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001019 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301020 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001021
Venkatraman Sa7e96872012-11-19 22:00:01 +05301022 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001023 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001024
Venkatraman Sa7e96872012-11-19 22:00:01 +05301025 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301026 end_cmd = 1;
Venkatraman Sa7e96872012-11-19 22:00:01 +05301027 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301028 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301029 else if (status & (CCRC_EN | DCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301030 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1031
Venkatraman Sae4bf782012-08-09 20:36:07 +05301032 if (host->data || host->response_busy) {
Balaji T K25e18972012-11-19 21:59:55 +05301033 end_trans = !end_cmd;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301034 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001035 }
1036 }
1037
Francesco Lavra7472bab2013-06-29 08:25:12 +02001038 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301039 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001040 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301041 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001042 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001043}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001044
Adrian Hunterb4175772010-05-26 14:42:06 -07001045/*
1046 * MMC controller IRQ handler
1047 */
1048static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1049{
1050 struct omap_hsmmc_host *host = dev_id;
1051 int status;
1052
1053 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301054 while (status & INT_EN_MASK && host->req_in_progress) {
Adrian Hunterb4175772010-05-26 14:42:06 -07001055 omap_hsmmc_do_irq(host, status);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301056
Adrian Hunterb4175772010-05-26 14:42:06 -07001057 /* Flush posted write */
1058 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301059 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001060
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001061 return IRQ_HANDLED;
1062}
1063
Denis Karpov70a33412009-09-22 16:44:59 -07001064static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001065{
1066 unsigned long i;
1067
1068 OMAP_HSMMC_WRITE(host->base, HCTL,
1069 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1070 for (i = 0; i < loops_per_jiffy; i++) {
1071 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1072 break;
1073 cpu_relax();
1074 }
1075}
1076
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001077/*
David Brownelleb250822009-02-17 14:49:01 -08001078 * Switch MMC interface voltage ... only relevant for MMC1.
1079 *
1080 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1081 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1082 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001083 */
Denis Karpov70a33412009-09-22 16:44:59 -07001084static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001085{
1086 u32 reg_val = 0;
1087 int ret;
1088
1089 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301090 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301091 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301092 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001093
1094 /* Turn the power off */
1095 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001096
1097 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001098 if (!ret)
1099 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1100 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301101 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301102 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301103 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001104
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001105 if (ret != 0)
1106 goto err;
1107
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001108 OMAP_HSMMC_WRITE(host->base, HCTL,
1109 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1110 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001111
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001112 /*
1113 * If a MMC dual voltage card is detected, the set_ios fn calls
1114 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001115 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001116 *
David Brownelleb250822009-02-17 14:49:01 -08001117 * Cope with a bit of slop in the range ... per data sheets:
1118 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1119 * but recommended values are 1.71V to 1.89V
1120 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1121 * but recommended values are 2.7V to 3.3V
1122 *
1123 * Board setup code shouldn't permit anything very out-of-range.
1124 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1125 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001126 */
David Brownelleb250822009-02-17 14:49:01 -08001127 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001128 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001129 else
1130 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001131
1132 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001133 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001134
1135 return 0;
1136err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301137 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001138 return ret;
1139}
1140
Adrian Hunterb62f6222009-09-22 16:45:01 -07001141/* Protect the card while the cover is open */
1142static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1143{
1144 if (!mmc_slot(host).get_cover_state)
1145 return;
1146
1147 host->reqs_blocked = 0;
1148 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1149 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301150 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001151 "card is now accessible\n",
1152 mmc_hostname(host->mmc));
1153 host->protect_card = 0;
1154 }
1155 } else {
1156 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301157 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001158 "card is now inaccessible\n",
1159 mmc_hostname(host->mmc));
1160 host->protect_card = 1;
1161 }
1162 }
1163}
1164
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001165/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001166 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001167 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001168static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001169{
NeilBrown7efab4f2011-12-30 12:35:13 +11001170 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001171 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001172 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001173
Adrian Huntera6b22402009-09-22 16:44:45 -07001174 if (host->suspended)
NeilBrown7efab4f2011-12-30 12:35:13 +11001175 return IRQ_HANDLED;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001176
1177 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001178
Denis Karpov191d1f12009-09-22 16:44:55 -07001179 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001180 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001181 else {
1182 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001183 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001184 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001185
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001186 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001187 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001188 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001189 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001190 return IRQ_HANDLED;
1191}
1192
Russell Kingc5c98922012-04-13 12:14:39 +01001193static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001194{
Russell Kingc5c98922012-04-13 12:14:39 +01001195 struct omap_hsmmc_host *host = param;
1196 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001197 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001198 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001199
Russell Kingc5c98922012-04-13 12:14:39 +01001200 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001201 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001202 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001203 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001204 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001205
Adrian Hunter770d7432011-05-06 12:14:11 +03001206 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001207 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001208 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001209 dma_unmap_sg(chan->device->dev,
1210 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001211 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001212
1213 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001214 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001215 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001216
1217 /* If DMA has finished after TC, complete the request */
1218 if (!req_in_progress) {
1219 struct mmc_request *mrq = host->mrq;
1220
1221 host->mrq = NULL;
1222 mmc_request_done(host->mmc, mrq);
1223 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001224}
1225
Per Forlin9782aff2011-07-01 18:55:23 +02001226static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1227 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001228 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001229 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001230{
1231 int dma_len;
1232
1233 if (!next && data->host_cookie &&
1234 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301235 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001236 " host->next_data.cookie %d\n",
1237 __func__, data->host_cookie, host->next_data.cookie);
1238 data->host_cookie = 0;
1239 }
1240
1241 /* Check if next job is already prepared */
1242 if (next ||
1243 (!next && data->host_cookie != host->next_data.cookie)) {
Russell King26b88522012-04-13 12:27:37 +01001244 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001245 omap_hsmmc_get_dma_dir(host, data));
1246
1247 } else {
1248 dma_len = host->next_data.dma_len;
1249 host->next_data.dma_len = 0;
1250 }
1251
1252
1253 if (dma_len == 0)
1254 return -EINVAL;
1255
1256 if (next) {
1257 next->dma_len = dma_len;
1258 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1259 } else
1260 host->dma_len = dma_len;
1261
1262 return 0;
1263}
1264
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001265/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001266 * Routine to configure and start DMA for the MMC card
1267 */
Denis Karpov70a33412009-09-22 16:44:59 -07001268static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1269 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001270{
Russell King26b88522012-04-13 12:27:37 +01001271 struct dma_slave_config cfg;
1272 struct dma_async_tx_descriptor *tx;
1273 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001274 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001275 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001276
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001277 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001278 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001279 struct scatterlist *sgl;
1280
1281 sgl = data->sg + i;
1282 if (sgl->length % data->blksz)
1283 return -EINVAL;
1284 }
1285 if ((data->blksz % 4) != 0)
1286 /* REVISIT: The MMC buffer increments only when MSB is written.
1287 * Return error for blksz which is non multiple of four.
1288 */
1289 return -EINVAL;
1290
Adrian Hunterb4175772010-05-26 14:42:06 -07001291 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001292
Russell Kingc5c98922012-04-13 12:14:39 +01001293 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001294
Russell King26b88522012-04-13 12:27:37 +01001295 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1296 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1297 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1298 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1299 cfg.src_maxburst = data->blksz / 4;
1300 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001301
Russell King26b88522012-04-13 12:27:37 +01001302 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001303 if (ret)
1304 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001305
Russell King26b88522012-04-13 12:27:37 +01001306 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1307 if (ret)
1308 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001309
Russell King26b88522012-04-13 12:27:37 +01001310 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1311 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1312 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1313 if (!tx) {
1314 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1315 /* FIXME: cleanup */
1316 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001317 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001318
Russell King26b88522012-04-13 12:27:37 +01001319 tx->callback = omap_hsmmc_dma_callback;
1320 tx->callback_param = host;
1321
1322 /* Does not fail */
1323 dmaengine_submit(tx);
1324
1325 host->dma_ch = 1;
1326
1327 dma_async_issue_pending(chan);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001328
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001329 return 0;
1330}
1331
Denis Karpov70a33412009-09-22 16:44:59 -07001332static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001333 unsigned int timeout_ns,
1334 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001335{
1336 unsigned int timeout, cycle_ns;
1337 uint32_t reg, clkd, dto = 0;
1338
1339 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1340 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1341 if (clkd == 0)
1342 clkd = 1;
1343
1344 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001345 timeout = timeout_ns / cycle_ns;
1346 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001347 if (timeout) {
1348 while ((timeout & 0x80000000) == 0) {
1349 dto += 1;
1350 timeout <<= 1;
1351 }
1352 dto = 31 - dto;
1353 timeout <<= 1;
1354 if (timeout && dto)
1355 dto += 1;
1356 if (dto >= 13)
1357 dto -= 13;
1358 else
1359 dto = 0;
1360 if (dto > 14)
1361 dto = 14;
1362 }
1363
1364 reg &= ~DTO_MASK;
1365 reg |= dto << DTO_SHIFT;
1366 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1367}
1368
1369/*
1370 * Configure block length for MMC/SD cards and initiate the transfer.
1371 */
1372static int
Denis Karpov70a33412009-09-22 16:44:59 -07001373omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001374{
1375 int ret;
1376 host->data = req->data;
1377
1378 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001379 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001380 /*
1381 * Set an arbitrary 100ms data timeout for commands with
1382 * busy signal.
1383 */
1384 if (req->cmd->flags & MMC_RSP_BUSY)
1385 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001386 return 0;
1387 }
1388
1389 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1390 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001391 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001392
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001393 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001394 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001395 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301396 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001397 return ret;
1398 }
1399 }
1400 return 0;
1401}
1402
Per Forlin9782aff2011-07-01 18:55:23 +02001403static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1404 int err)
1405{
1406 struct omap_hsmmc_host *host = mmc_priv(mmc);
1407 struct mmc_data *data = mrq->data;
1408
Russell King26b88522012-04-13 12:27:37 +01001409 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001410 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001411
Russell King26b88522012-04-13 12:27:37 +01001412 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1413 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001414 data->host_cookie = 0;
1415 }
1416}
1417
1418static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1419 bool is_first_req)
1420{
1421 struct omap_hsmmc_host *host = mmc_priv(mmc);
1422
1423 if (mrq->data->host_cookie) {
1424 mrq->data->host_cookie = 0;
1425 return ;
1426 }
1427
Russell Kingc5c98922012-04-13 12:14:39 +01001428 if (host->use_dma) {
1429 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001430
Per Forlin9782aff2011-07-01 18:55:23 +02001431 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001432 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001433 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001434 }
Per Forlin9782aff2011-07-01 18:55:23 +02001435}
1436
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001437/*
1438 * Request function. for read/write operation
1439 */
Denis Karpov70a33412009-09-22 16:44:59 -07001440static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001441{
Denis Karpov70a33412009-09-22 16:44:59 -07001442 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001443 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001444
Adrian Hunterb4175772010-05-26 14:42:06 -07001445 BUG_ON(host->req_in_progress);
1446 BUG_ON(host->dma_ch != -1);
1447 if (host->protect_card) {
1448 if (host->reqs_blocked < 3) {
1449 /*
1450 * Ensure the controller is left in a consistent
1451 * state by resetting the command and data state
1452 * machines.
1453 */
1454 omap_hsmmc_reset_controller_fsm(host, SRD);
1455 omap_hsmmc_reset_controller_fsm(host, SRC);
1456 host->reqs_blocked += 1;
1457 }
1458 req->cmd->error = -EBADF;
1459 if (req->data)
1460 req->data->error = -EBADF;
1461 req->cmd->retries = 0;
1462 mmc_request_done(mmc, req);
1463 return;
1464 } else if (host->reqs_blocked)
1465 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001466 WARN_ON(host->mrq != NULL);
1467 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001468 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001469 if (err) {
1470 req->cmd->error = err;
1471 if (req->data)
1472 req->data->error = err;
1473 host->mrq = NULL;
1474 mmc_request_done(mmc, req);
1475 return;
1476 }
1477
Denis Karpov70a33412009-09-22 16:44:59 -07001478 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001479}
1480
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001481/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001482static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001483{
Denis Karpov70a33412009-09-22 16:44:59 -07001484 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001485 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001486
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301487 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001488
Adrian Huntera3621462009-09-22 16:44:42 -07001489 if (ios->power_mode != host->power_mode) {
1490 switch (ios->power_mode) {
1491 case MMC_POWER_OFF:
1492 mmc_slot(host).set_power(host->dev, host->slot_id,
1493 0, 0);
1494 break;
1495 case MMC_POWER_UP:
1496 mmc_slot(host).set_power(host->dev, host->slot_id,
1497 1, ios->vdd);
1498 break;
1499 case MMC_POWER_ON:
1500 do_send_init_stream = 1;
1501 break;
1502 }
1503 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001504 }
1505
Denis Karpovdd498ef2009-09-22 16:44:49 -07001506 /* FIXME: set registers based only on changes to ios */
1507
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001508 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001509
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301510 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001511 /* Only MMC1 can interface at 3V without some flavor
1512 * of external transceiver; but they all handle 1.8V.
1513 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001514 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301515 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1516 /*
1517 * With pbias cell programming missing, this
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301518 * can't be allowed on MMC1 when booting with device
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301519 * tree.
1520 */
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301521 !host->pbias_disable) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001522 /*
1523 * The mmc_select_voltage fn of the core does
1524 * not seem to set the power_mode to
1525 * MMC_POWER_UP upon recalculating the voltage.
1526 * vdd 1.8v.
1527 */
Denis Karpov70a33412009-09-22 16:44:59 -07001528 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1529 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001530 "Switch operation failed\n");
1531 }
1532 }
1533
Andy Shevchenko5934df22011-05-06 12:14:06 +03001534 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001535
Adrian Huntera3621462009-09-22 16:44:42 -07001536 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001537 send_init_stream(host);
1538
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001539 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001540
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301541 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001542}
1543
1544static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1545{
Denis Karpov70a33412009-09-22 16:44:59 -07001546 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001547
Denis Karpov191d1f12009-09-22 16:44:55 -07001548 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001549 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001550 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001551}
1552
1553static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1554{
Denis Karpov70a33412009-09-22 16:44:59 -07001555 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001556
Denis Karpov191d1f12009-09-22 16:44:55 -07001557 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001558 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001559 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001560}
1561
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001562static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1563{
1564 struct omap_hsmmc_host *host = mmc_priv(mmc);
1565
1566 if (mmc_slot(host).init_card)
1567 mmc_slot(host).init_card(card);
1568}
1569
Denis Karpov70a33412009-09-22 16:44:59 -07001570static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001571{
1572 u32 hctl, capa, value;
1573
1574 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301575 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001576 hctl = SDVS30;
1577 capa = VS30 | VS18;
1578 } else {
1579 hctl = SDVS18;
1580 capa = VS18;
1581 }
1582
1583 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1584 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1585
1586 value = OMAP_HSMMC_READ(host->base, CAPA);
1587 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1588
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001589 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001590 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001591}
1592
Denis Karpov70a33412009-09-22 16:44:59 -07001593static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001594{
Denis Karpov70a33412009-09-22 16:44:59 -07001595 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001596
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301597 pm_runtime_get_sync(host->dev);
1598
Denis Karpovdd498ef2009-09-22 16:44:49 -07001599 return 0;
1600}
1601
Adrian Hunter907d2e72012-02-29 09:17:21 +02001602static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001603{
Denis Karpov70a33412009-09-22 16:44:59 -07001604 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001605
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301606 pm_runtime_mark_last_busy(host->dev);
1607 pm_runtime_put_autosuspend(host->dev);
1608
Denis Karpovdd498ef2009-09-22 16:44:49 -07001609 return 0;
1610}
1611
Denis Karpov70a33412009-09-22 16:44:59 -07001612static const struct mmc_host_ops omap_hsmmc_ops = {
1613 .enable = omap_hsmmc_enable_fclk,
1614 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001615 .post_req = omap_hsmmc_post_req,
1616 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001617 .request = omap_hsmmc_request,
1618 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001619 .get_cd = omap_hsmmc_get_cd,
1620 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001621 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001622 /* NYET -- enable_sdio_irq */
1623};
1624
Denis Karpovd900f712009-09-22 16:44:38 -07001625#ifdef CONFIG_DEBUG_FS
1626
Denis Karpov70a33412009-09-22 16:44:59 -07001627static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001628{
1629 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001630 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001631
Tony Lindgren0a82e062013-10-21 00:25:19 +05301632 seq_printf(s, "mmc%d:\n ctx_loss:\t%d\n\nregs:\n",
1633 mmc->index, host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001634
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301635 if (host->suspended) {
Denis Karpovdd498ef2009-09-22 16:44:49 -07001636 seq_printf(s, "host suspended, can't read registers\n");
1637 return 0;
1638 }
1639
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301640 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001641
Denis Karpovd900f712009-09-22 16:44:38 -07001642 seq_printf(s, "CON:\t\t0x%08x\n",
1643 OMAP_HSMMC_READ(host->base, CON));
1644 seq_printf(s, "HCTL:\t\t0x%08x\n",
1645 OMAP_HSMMC_READ(host->base, HCTL));
1646 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1647 OMAP_HSMMC_READ(host->base, SYSCTL));
1648 seq_printf(s, "IE:\t\t0x%08x\n",
1649 OMAP_HSMMC_READ(host->base, IE));
1650 seq_printf(s, "ISE:\t\t0x%08x\n",
1651 OMAP_HSMMC_READ(host->base, ISE));
1652 seq_printf(s, "CAPA:\t\t0x%08x\n",
1653 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001654
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301655 pm_runtime_mark_last_busy(host->dev);
1656 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001657
Denis Karpovd900f712009-09-22 16:44:38 -07001658 return 0;
1659}
1660
Denis Karpov70a33412009-09-22 16:44:59 -07001661static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001662{
Denis Karpov70a33412009-09-22 16:44:59 -07001663 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001664}
1665
1666static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001667 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001668 .read = seq_read,
1669 .llseek = seq_lseek,
1670 .release = single_release,
1671};
1672
Denis Karpov70a33412009-09-22 16:44:59 -07001673static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001674{
1675 if (mmc->debugfs_root)
1676 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1677 mmc, &mmc_regs_fops);
1678}
1679
1680#else
1681
Denis Karpov70a33412009-09-22 16:44:59 -07001682static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001683{
1684}
1685
1686#endif
1687
Rajendra Nayak46856a62012-03-12 20:32:37 +05301688#ifdef CONFIG_OF
1689static u16 omap4_reg_offset = 0x100;
1690
1691static const struct of_device_id omap_mmc_of_match[] = {
1692 {
1693 .compatible = "ti,omap2-hsmmc",
1694 },
1695 {
1696 .compatible = "ti,omap3-hsmmc",
1697 },
1698 {
1699 .compatible = "ti,omap4-hsmmc",
1700 .data = &omap4_reg_offset,
1701 },
1702 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001703};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301704MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1705
1706static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1707{
1708 struct omap_mmc_platform_data *pdata;
1709 struct device_node *np = dev->of_node;
Daniel Mackd8714e82012-10-15 21:35:06 +05301710 u32 bus_width, max_freq;
Jan Luebbedc642c22013-01-30 10:07:17 +01001711 int cd_gpio, wp_gpio;
1712
1713 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1714 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1715 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1716 return ERR_PTR(-EPROBE_DEFER);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301717
1718 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1719 if (!pdata)
1720 return NULL; /* out of memory */
1721
1722 if (of_find_property(np, "ti,dual-volt", NULL))
1723 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1724
1725 /* This driver only supports 1 slot */
1726 pdata->nr_slots = 1;
Jan Luebbedc642c22013-01-30 10:07:17 +01001727 pdata->slots[0].switch_pin = cd_gpio;
1728 pdata->slots[0].gpio_wp = wp_gpio;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301729
1730 if (of_find_property(np, "ti,non-removable", NULL)) {
1731 pdata->slots[0].nonremovable = true;
1732 pdata->slots[0].no_regulator_off_init = true;
1733 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001734 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301735 if (bus_width == 4)
1736 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1737 else if (bus_width == 8)
1738 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1739
1740 if (of_find_property(np, "ti,needs-special-reset", NULL))
1741 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1742
Daniel Mackd8714e82012-10-15 21:35:06 +05301743 if (!of_property_read_u32(np, "max-frequency", &max_freq))
1744 pdata->max_freq = max_freq;
1745
Hebbar, Gururajacd587092012-11-19 21:59:58 +05301746 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
1747 pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
1748
Rajendra Nayak46856a62012-03-12 20:32:37 +05301749 return pdata;
1750}
1751#else
1752static inline struct omap_mmc_platform_data
1753 *of_get_hsmmc_pdata(struct device *dev)
1754{
1755 return NULL;
1756}
1757#endif
1758
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001759static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001760{
1761 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1762 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001763 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001764 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001765 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301766 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001767 dma_cap_mask_t mask;
1768 unsigned tx_req, rx_req;
Daniel Mack46b76032012-10-15 21:35:05 +05301769 struct pinctrl *pinctrl;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301770
1771 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1772 if (match) {
1773 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01001774
1775 if (IS_ERR(pdata))
1776 return PTR_ERR(pdata);
1777
Rajendra Nayak46856a62012-03-12 20:32:37 +05301778 if (match->data) {
Uwe Kleine-Königefc9b732012-05-21 21:57:39 +02001779 const u16 *offsetp = match->data;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301780 pdata->reg_offset = *offsetp;
1781 }
1782 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001783
1784 if (pdata == NULL) {
1785 dev_err(&pdev->dev, "Platform Data is missing\n");
1786 return -ENXIO;
1787 }
1788
1789 if (pdata->nr_slots == 0) {
1790 dev_err(&pdev->dev, "No Slots\n");
1791 return -ENXIO;
1792 }
1793
1794 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1795 irq = platform_get_irq(pdev, 0);
1796 if (res == NULL || irq < 0)
1797 return -ENXIO;
1798
Chris Ball984b2032011-03-22 16:34:42 -07001799 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001800 if (res == NULL)
1801 return -EBUSY;
1802
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001803 ret = omap_hsmmc_gpio_init(pdata);
1804 if (ret)
1805 goto err;
1806
Denis Karpov70a33412009-09-22 16:44:59 -07001807 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001808 if (!mmc) {
1809 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001810 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001811 }
1812
1813 host = mmc_priv(mmc);
1814 host->mmc = mmc;
1815 host->pdata = pdata;
1816 host->dev = &pdev->dev;
1817 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001818 host->dma_ch = -1;
1819 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001820 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301821 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001822 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001823 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001824 host->next_data.cookie = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001825
1826 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001827
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301828 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001829
Adrian Huntere0eb2422010-02-15 10:03:34 -08001830 /*
1831 * If regulator_disable can only put vcc_aux to sleep then there is
1832 * no off state.
1833 */
1834 if (mmc_slot(host).vcc_aux_disable_is_sleep)
1835 mmc_slot(host).no_off = 1;
1836
Daniel Mackd418ed82012-02-19 13:20:33 +01001837 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1838
1839 if (pdata->max_freq > 0)
1840 mmc->f_max = pdata->max_freq;
1841 else
1842 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001843
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001844 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001845
Russell King6f7607c2009-01-28 10:22:50 +00001846 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001847 if (IS_ERR(host->fclk)) {
1848 ret = PTR_ERR(host->fclk);
1849 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001850 goto err1;
1851 }
1852
Paul Walmsley9b682562011-10-06 14:50:35 -06001853 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1854 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1855 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1856 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001857
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301858 pm_runtime_enable(host->dev);
1859 pm_runtime_get_sync(host->dev);
1860 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1861 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001862
Balaji T K92a3aeb2012-02-24 21:14:34 +05301863 omap_hsmmc_context_save(host);
1864
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301865 /* This can be removed once we support PBIAS with DT */
Balaji T Ke0022642013-10-21 00:25:18 +05301866 if (host->dev->of_node && res->start == 0x4809c000)
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301867 host->pbias_disable = 1;
1868
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301869 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1870 /*
1871 * MMC can still work without debounce clock.
1872 */
1873 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301874 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05301875 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301876 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1877 clk_put(host->dbclk);
1878 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001879 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001880
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001881 /* Since we do only SG emulation, we can have as many segs
1882 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001883 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001884
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001885 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1886 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1887 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1888 mmc->max_seg_size = mmc->max_req_size;
1889
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001890 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001891 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001892
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001893 mmc->caps |= mmc_slot(host).caps;
1894 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001895 mmc->caps |= MMC_CAP_4_BIT_DATA;
1896
Denis Karpov191d1f12009-09-22 16:44:55 -07001897 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001898 mmc->caps |= MMC_CAP_NONREMOVABLE;
1899
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001900 mmc->pm_caps = mmc_slot(host).pm_caps;
1901
Denis Karpov70a33412009-09-22 16:44:59 -07001902 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001903
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301904 if (!pdev->dev.of_node) {
1905 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1906 if (!res) {
1907 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
1908 ret = -ENXIO;
1909 goto err_irq;
1910 }
1911 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001912
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301913 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1914 if (!res) {
1915 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1916 ret = -ENXIO;
1917 goto err_irq;
1918 }
1919 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001920 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001921
Russell King26b88522012-04-13 12:27:37 +01001922 dma_cap_zero(mask);
1923 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001924
Matt Porterd272fbf2013-05-10 17:42:34 +05301925 host->rx_chan =
1926 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1927 &rx_req, &pdev->dev, "rx");
1928
Russell King26b88522012-04-13 12:27:37 +01001929 if (!host->rx_chan) {
1930 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001931 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001932 goto err_irq;
1933 }
1934
Matt Porterd272fbf2013-05-10 17:42:34 +05301935 host->tx_chan =
1936 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1937 &tx_req, &pdev->dev, "tx");
1938
Russell King26b88522012-04-13 12:27:37 +01001939 if (!host->tx_chan) {
1940 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001941 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001942 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001943 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001944
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001945 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001946 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001947 mmc_hostname(mmc), host);
1948 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301949 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001950 goto err_irq;
1951 }
1952
1953 if (pdata->init != NULL) {
1954 if (pdata->init(&pdev->dev) != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301955 dev_err(mmc_dev(host->mmc),
Denis Karpov70a33412009-09-22 16:44:59 -07001956 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001957 goto err_irq_cd_init;
1958 }
1959 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001960
Adrian Hunterb702b102010-02-15 10:03:35 -08001961 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001962 ret = omap_hsmmc_reg_get(host);
1963 if (ret)
1964 goto err_reg;
1965 host->use_reg = 1;
1966 }
1967
David Brownellb583f262009-05-28 14:04:03 -07001968 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001969
1970 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02001971 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11001972 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
1973 NULL,
1974 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08001975 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11001976 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001977 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301978 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001979 "Unable to grab MMC CD IRQ\n");
1980 goto err_irq_cd;
1981 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00001982 pdata->suspend = omap_hsmmc_suspend_cdirq;
1983 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001984 }
1985
Adrian Hunterb4175772010-05-26 14:42:06 -07001986 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001987
Daniel Mack46b76032012-10-15 21:35:05 +05301988 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
1989 if (IS_ERR(pinctrl))
1990 dev_warn(&pdev->dev,
1991 "pins are not configured from the driver\n");
1992
Adrian Hunterb62f6222009-09-22 16:45:01 -07001993 omap_hsmmc_protect_card(host);
1994
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001995 mmc_add_host(mmc);
1996
Denis Karpov191d1f12009-09-22 16:44:55 -07001997 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001998 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
1999 if (ret < 0)
2000 goto err_slot_name;
2001 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002002 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002003 ret = device_create_file(&mmc->class_dev,
2004 &dev_attr_cover_switch);
2005 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002006 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002007 }
2008
Denis Karpov70a33412009-09-22 16:44:59 -07002009 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302010 pm_runtime_mark_last_busy(host->dev);
2011 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002012
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002013 return 0;
2014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002015err_slot_name:
2016 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002017 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002018err_irq_cd:
2019 if (host->use_reg)
2020 omap_hsmmc_reg_put(host);
2021err_reg:
2022 if (host->pdata->cleanup)
2023 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024err_irq_cd_init:
2025 free_irq(host->irq, host);
2026err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002027 if (host->tx_chan)
2028 dma_release_channel(host->tx_chan);
2029 if (host->rx_chan)
2030 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302031 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002032 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002033 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302034 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302035 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002036 clk_put(host->dbclk);
2037 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002038err1:
2039 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002040 mmc_free_host(mmc);
2041err_alloc:
2042 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002043err:
Russell King48b332f2012-04-18 11:11:57 +01002044 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2045 if (res)
2046 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002047 return ret;
2048}
2049
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002050static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002051{
Denis Karpov70a33412009-09-22 16:44:59 -07002052 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002053 struct resource *res;
2054
Felipe Balbi927ce942012-03-14 11:18:27 +02002055 pm_runtime_get_sync(host->dev);
2056 mmc_remove_host(host->mmc);
2057 if (host->use_reg)
2058 omap_hsmmc_reg_put(host);
2059 if (host->pdata->cleanup)
2060 host->pdata->cleanup(&pdev->dev);
2061 free_irq(host->irq, host);
2062 if (mmc_slot(host).card_detect_irq)
2063 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002064
Russell Kingc5c98922012-04-13 12:14:39 +01002065 if (host->tx_chan)
2066 dma_release_channel(host->tx_chan);
2067 if (host->rx_chan)
2068 dma_release_channel(host->rx_chan);
2069
Felipe Balbi927ce942012-03-14 11:18:27 +02002070 pm_runtime_put_sync(host->dev);
2071 pm_runtime_disable(host->dev);
2072 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302073 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302074 clk_disable_unprepare(host->dbclk);
Felipe Balbi927ce942012-03-14 11:18:27 +02002075 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002076 }
2077
Balaji T K9ea28ec2012-10-15 21:35:08 +05302078 omap_hsmmc_gpio_free(host->pdata);
Felipe Balbi927ce942012-03-14 11:18:27 +02002079 iounmap(host->base);
Balaji T K9d1f0282012-10-15 21:35:07 +05302080 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002081
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002082 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2083 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002084 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002085
2086 return 0;
2087}
2088
2089#ifdef CONFIG_PM
Felipe Balbia48ce882012-11-19 21:59:59 +05302090static int omap_hsmmc_prepare(struct device *dev)
2091{
2092 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2093
2094 if (host->pdata->suspend)
2095 return host->pdata->suspend(dev, host->slot_id);
2096
2097 return 0;
2098}
2099
2100static void omap_hsmmc_complete(struct device *dev)
2101{
2102 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2103
2104 if (host->pdata->resume)
2105 host->pdata->resume(dev, host->slot_id);
2106
2107}
2108
Kevin Hilmana791daa2010-05-26 14:42:07 -07002109static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002110{
2111 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002112 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2113
2114 if (!host)
2115 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002116
2117 if (host && host->suspended)
2118 return 0;
2119
Felipe Balbi927ce942012-03-14 11:18:27 +02002120 pm_runtime_get_sync(host->dev);
2121 host->suspended = 1;
Felipe Balbi927ce942012-03-14 11:18:27 +02002122 ret = mmc_suspend_host(host->mmc);
2123
2124 if (ret) {
2125 host->suspended = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002126 goto err;
2127 }
2128
2129 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2130 omap_hsmmc_disable_irq(host);
2131 OMAP_HSMMC_WRITE(host->base, HCTL,
2132 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2133 }
2134
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302135 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302136 clk_disable_unprepare(host->dbclk);
Eliad Peller31f9d462011-11-22 16:02:17 +02002137err:
2138 pm_runtime_put_sync(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002139 return ret;
2140}
2141
2142/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002143static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002144{
2145 int ret = 0;
Felipe Balbi927ce942012-03-14 11:18:27 +02002146 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2147
2148 if (!host)
2149 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002150
2151 if (host && !host->suspended)
2152 return 0;
2153
Felipe Balbi927ce942012-03-14 11:18:27 +02002154 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002155
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302156 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302157 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002158
Felipe Balbi927ce942012-03-14 11:18:27 +02002159 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2160 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002161
Felipe Balbi927ce942012-03-14 11:18:27 +02002162 omap_hsmmc_protect_card(host);
2163
2164 /* Notify the core to resume the host */
2165 ret = mmc_resume_host(host->mmc);
2166 if (ret == 0)
2167 host->suspended = 0;
2168
2169 pm_runtime_mark_last_busy(host->dev);
2170 pm_runtime_put_autosuspend(host->dev);
2171
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002172 return ret;
2173
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002174}
2175
2176#else
Felipe Balbia48ce882012-11-19 21:59:59 +05302177#define omap_hsmmc_prepare NULL
2178#define omap_hsmmc_complete NULL
Denis Karpov70a33412009-09-22 16:44:59 -07002179#define omap_hsmmc_suspend NULL
Felipe Balbia48ce882012-11-19 21:59:59 +05302180#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002181#endif
2182
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302183static int omap_hsmmc_runtime_suspend(struct device *dev)
2184{
2185 struct omap_hsmmc_host *host;
2186
2187 host = platform_get_drvdata(to_platform_device(dev));
2188 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002189 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302190
2191 return 0;
2192}
2193
2194static int omap_hsmmc_runtime_resume(struct device *dev)
2195{
2196 struct omap_hsmmc_host *host;
2197
2198 host = platform_get_drvdata(to_platform_device(dev));
2199 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002200 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302201
2202 return 0;
2203}
2204
Kevin Hilmana791daa2010-05-26 14:42:07 -07002205static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002206 .suspend = omap_hsmmc_suspend,
2207 .resume = omap_hsmmc_resume,
Felipe Balbia48ce882012-11-19 21:59:59 +05302208 .prepare = omap_hsmmc_prepare,
2209 .complete = omap_hsmmc_complete,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302210 .runtime_suspend = omap_hsmmc_runtime_suspend,
2211 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002212};
2213
2214static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002215 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002216 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002217 .driver = {
2218 .name = DRIVER_NAME,
2219 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002220 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302221 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002222 },
2223};
2224
Felipe Balbib7964502012-03-14 11:18:32 +02002225module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002226MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2227MODULE_LICENSE("GPL");
2228MODULE_ALIAS("platform:" DRIVER_NAME);
2229MODULE_AUTHOR("Texas Instruments Inc");