blob: f46190cfae17a2c7593fad5b01c4d47e8ef457ce [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f442011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
Russell Kingc5c98922012-04-13 12:14:39 +010022#include <linux/dmaengine.h>
Denis Karpovd900f712009-09-22 16:44:38 -070023#include <linux/seq_file.h>
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
Balaji T Ke99448f2014-02-19 20:26:40 +0530129#define VDD_1V8 1800000 /* 180000 uV */
130#define VDD_3V0 3000000 /* 300000 uV */
131#define VDD_165_195 (ffs(MMC_VDD_165_195) - 1)
132
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100133/*
134 * One controller can have multiple slots, like on some omap boards using
135 * omap.c controller driver. Luckily this is not currently done on any known
136 * omap_hsmmc.c device.
137 */
138#define mmc_slot(host) (host->pdata->slots[host->slot_id])
139
140/*
141 * MMC Host controller read/write API's
142 */
143#define OMAP_HSMMC_READ(base, reg) \
144 __raw_readl((base) + OMAP_HSMMC_##reg)
145
146#define OMAP_HSMMC_WRITE(base, reg, val) \
147 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
148
Per Forlin9782aff2011-07-01 18:55:23 +0200149struct omap_hsmmc_next {
150 unsigned int dma_len;
151 s32 cookie;
152};
153
Denis Karpov70a33412009-09-22 16:44:59 -0700154struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155 struct device *dev;
156 struct mmc_host *mmc;
157 struct mmc_request *mrq;
158 struct mmc_command *cmd;
159 struct mmc_data *data;
160 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100161 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800162 /*
163 * vcc == configured supply
164 * vcc_aux == optional
165 * - MMC1, supply for DAT4..DAT7
166 * - MMC2/MMC2, external level shifter voltage supply, for
167 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
168 */
169 struct regulator *vcc;
170 struct regulator *vcc_aux;
Balaji T Ke99448f2014-02-19 20:26:40 +0530171 struct regulator *pbias;
172 bool pbias_enabled;
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530173 int pbias_disable;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100174 void __iomem *base;
175 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700176 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100177 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200178 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100179 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700180 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100181 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530182 u32 con;
183 u32 hctl;
184 u32 sysctl;
185 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100186 int irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100187 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100188 struct dma_chan *tx_chan;
189 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100190 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200191 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700192 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700193 int protect_card;
194 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800195 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700196 int req_in_progress;
Per Forlin9782aff2011-07-01 18:55:23 +0200197 struct omap_hsmmc_next next_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100198 struct omap_mmc_platform_data *pdata;
199};
200
Nishanth Menon59445b12014-02-13 23:45:48 -0600201struct omap_mmc_of_data {
202 u32 reg_offset;
203 u8 controller_flags;
204};
205
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800206static int omap_hsmmc_card_detect(struct device *dev, int slot)
207{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530208 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
209 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800210
211 /* NOTE: assumes card detect signal is active-low */
212 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
213}
214
215static int omap_hsmmc_get_wp(struct device *dev, int slot)
216{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530217 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
218 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800219
220 /* NOTE: assumes write protect signal is active-high */
221 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
222}
223
224static int omap_hsmmc_get_cover_state(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 /* NOTE: assumes card detect signal is active-low */
230 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
231}
232
233#ifdef CONFIG_PM
234
235static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
236{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530237 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
238 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800239
240 disable_irq(mmc->slots[0].card_detect_irq);
241 return 0;
242}
243
244static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
245{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530246 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
247 struct omap_mmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800248
249 enable_irq(mmc->slots[0].card_detect_irq);
250 return 0;
251}
252
253#else
254
255#define omap_hsmmc_suspend_cdirq NULL
256#define omap_hsmmc_resume_cdirq NULL
257
258#endif
259
Adrian Hunterb702b102010-02-15 10:03:35 -0800260#ifdef CONFIG_REGULATOR
261
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500262static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800263 int vdd)
264{
265 struct omap_hsmmc_host *host =
266 platform_get_drvdata(to_platform_device(dev));
267 int ret = 0;
268
269 /*
270 * If we don't see a Vcc regulator, assume it's a fixed
271 * voltage always-on regulator.
272 */
273 if (!host->vcc)
274 return 0;
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530275 /*
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530276 * With DT, never turn OFF the regulator for MMC1. This is because
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530277 * the pbias cell programming support is still missing when
278 * booting with Device tree
279 */
Tony Lindgrencf5ae402013-05-10 17:42:33 +0530280 if (host->pbias_disable && !vdd)
Rajendra Nayak1f84b712012-03-12 20:32:38 +0530281 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800282
283 if (mmc_slot(host).before_set_reg)
284 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
285
Balaji T Ke99448f2014-02-19 20:26:40 +0530286 if (host->pbias) {
287 if (host->pbias_enabled == 1) {
288 ret = regulator_disable(host->pbias);
289 if (!ret)
290 host->pbias_enabled = 0;
291 }
292 regulator_set_voltage(host->pbias, VDD_3V0, VDD_3V0);
293 }
294
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800295 /*
296 * Assume Vcc regulator is used only to power the card ... OMAP
297 * VDDS is used to power the pins, optionally with a transceiver to
298 * support cards using voltages other than VDDS (1.8V nominal). When a
299 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
300 *
301 * In some cases this regulator won't support enable/disable;
302 * e.g. it's a fixed rail for a WLAN chip.
303 *
304 * In other cases vcc_aux switches interface power. Example, for
305 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
306 * chips/cards need an interface voltage rail too.
307 */
308 if (power_on) {
Balaji T K987fd492014-02-19 20:26:40 +0530309 if (host->vcc)
310 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800311 /* Enable interface voltage rail, if needed */
312 if (ret == 0 && host->vcc_aux) {
313 ret = regulator_enable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530314 if (ret < 0 && host->vcc)
Linus Walleij99fc5132010-09-29 01:08:27 -0400315 ret = mmc_regulator_set_ocr(host->mmc,
316 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800317 }
318 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400319 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800320 if (host->vcc_aux)
321 ret = regulator_disable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530322 if (host->vcc) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400323 /* Then proceed to shut down the local regulator */
324 ret = mmc_regulator_set_ocr(host->mmc,
325 host->vcc, 0);
326 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800327 }
328
Balaji T Ke99448f2014-02-19 20:26:40 +0530329 if (host->pbias) {
330 if (vdd <= VDD_165_195)
331 ret = regulator_set_voltage(host->pbias, VDD_1V8,
332 VDD_1V8);
333 else
334 ret = regulator_set_voltage(host->pbias, VDD_3V0,
335 VDD_3V0);
336 if (ret < 0)
337 goto error_set_power;
338
339 if (host->pbias_enabled == 0) {
340 ret = regulator_enable(host->pbias);
341 if (!ret)
342 host->pbias_enabled = 1;
343 }
344 }
345
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800346 if (mmc_slot(host).after_set_reg)
347 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
348
Balaji T Ke99448f2014-02-19 20:26:40 +0530349error_set_power:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800350 return ret;
351}
352
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800353static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
354{
355 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700356 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800357
Balaji T Kf2ddc1d2014-02-19 20:26:40 +0530358 reg = devm_regulator_get(host->dev, "vmmc");
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800359 if (IS_ERR(reg)) {
Balaji T K987fd492014-02-19 20:26:40 +0530360 dev_err(host->dev, "unable to get vmmc regulator %ld\n",
361 PTR_ERR(reg));
NeilBrown1fdc90f2012-08-08 00:06:00 -0400362 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800363 } else {
364 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700365 ocr_value = mmc_regulator_get_ocrmask(reg);
366 if (!mmc_slot(host).ocr_mask) {
367 mmc_slot(host).ocr_mask = ocr_value;
368 } else {
369 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530370 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500371 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700372 mmc_slot(host).ocr_mask = 0;
373 return -EINVAL;
374 }
375 }
Balaji T K987fd492014-02-19 20:26:40 +0530376 }
377 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800378
Balaji T K987fd492014-02-19 20:26:40 +0530379 /* Allow an aux regulator */
380 reg = devm_regulator_get_optional(host->dev, "vmmc_aux");
381 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800382
Balaji T Ke99448f2014-02-19 20:26:40 +0530383 reg = devm_regulator_get_optional(host->dev, "pbias");
384 host->pbias = IS_ERR(reg) ? NULL : reg;
385
Balaji T K987fd492014-02-19 20:26:40 +0530386 /* For eMMC do not power off when not in sleep state */
387 if (mmc_slot(host).no_regulator_off_init)
388 return 0;
389 /*
390 * To disable boot_on regulator, enable regulator
391 * to increase usecount and then disable it.
392 */
393 if ((host->vcc && regulator_is_enabled(host->vcc) > 0) ||
394 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
395 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
Adrian Huntere840ce12011-05-06 12:14:10 +0300396
Balaji T K987fd492014-02-19 20:26:40 +0530397 mmc_slot(host).set_power(host->dev, host->slot_id, 1, vdd);
398 mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800399 }
400
401 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800402}
403
404static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
405{
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800406 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800407}
408
Adrian Hunterb702b102010-02-15 10:03:35 -0800409static inline int omap_hsmmc_have_reg(void)
410{
411 return 1;
412}
413
414#else
415
416static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
417{
418 return -EINVAL;
419}
420
421static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
422{
423}
424
425static inline int omap_hsmmc_have_reg(void)
426{
427 return 0;
428}
429
430#endif
431
432static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
433{
434 int ret;
435
436 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800437 if (pdata->slots[0].cover)
438 pdata->slots[0].get_cover_state =
439 omap_hsmmc_get_cover_state;
440 else
441 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
442 pdata->slots[0].card_detect_irq =
443 gpio_to_irq(pdata->slots[0].switch_pin);
444 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
445 if (ret)
446 return ret;
447 ret = gpio_direction_input(pdata->slots[0].switch_pin);
448 if (ret)
449 goto err_free_sp;
450 } else
451 pdata->slots[0].switch_pin = -EINVAL;
452
453 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
454 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
455 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
456 if (ret)
457 goto err_free_cd;
458 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
459 if (ret)
460 goto err_free_wp;
461 } else
462 pdata->slots[0].gpio_wp = -EINVAL;
463
464 return 0;
465
466err_free_wp:
467 gpio_free(pdata->slots[0].gpio_wp);
468err_free_cd:
469 if (gpio_is_valid(pdata->slots[0].switch_pin))
470err_free_sp:
471 gpio_free(pdata->slots[0].switch_pin);
472 return ret;
473}
474
475static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
476{
477 if (gpio_is_valid(pdata->slots[0].gpio_wp))
478 gpio_free(pdata->slots[0].gpio_wp);
479 if (gpio_is_valid(pdata->slots[0].switch_pin))
480 gpio_free(pdata->slots[0].switch_pin);
481}
482
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100483/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300484 * Start clock to the card
485 */
486static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
487{
488 OMAP_HSMMC_WRITE(host->base, SYSCTL,
489 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
490}
491
492/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100493 * Stop clock to the card
494 */
Denis Karpov70a33412009-09-22 16:44:59 -0700495static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100496{
497 OMAP_HSMMC_WRITE(host->base, SYSCTL,
498 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
499 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900500 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100501}
502
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700503static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
504 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700505{
506 unsigned int irq_mask;
507
508 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530509 irq_mask = INT_EN_MASK & ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700510 else
511 irq_mask = INT_EN_MASK;
512
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700513 /* Disable timeout for erases */
514 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530515 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700516
Adrian Hunterb4175772010-05-26 14:42:06 -0700517 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
518 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
519 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
520}
521
522static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
523{
524 OMAP_HSMMC_WRITE(host->base, ISE, 0);
525 OMAP_HSMMC_WRITE(host->base, IE, 0);
526 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
527}
528
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300529/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530530static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300531{
532 u16 dsor = 0;
533
534 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530535 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530536 if (dsor > CLKD_MAX)
537 dsor = CLKD_MAX;
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300538 }
539
540 return dsor;
541}
542
Andy Shevchenko5934df22011-05-06 12:14:06 +0300543static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
544{
545 struct mmc_ios *ios = &host->mmc->ios;
546 unsigned long regval;
547 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530548 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300549
Venkatraman S8986d312012-08-07 19:10:38 +0530550 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300551
552 omap_hsmmc_stop_clock(host);
553
554 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
555 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530556 clkdiv = calc_divisor(host, ios);
557 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300558 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
559 OMAP_HSMMC_WRITE(host->base, SYSCTL,
560 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
561
562 /* Wait till the ICS bit is set */
563 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
564 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
565 && time_before(jiffies, timeout))
566 cpu_relax();
567
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530568 /*
569 * Enable High-Speed Support
570 * Pre-Requisites
571 * - Controller should support High-Speed-Enable Bit
572 * - Controller should not be using DDR Mode
573 * - Controller should advertise that it supports High Speed
574 * in capabilities register
575 * - MMC/SD clock coming out of controller > 25MHz
576 */
577 if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) &&
578 (ios->timing != MMC_TIMING_UHS_DDR50) &&
579 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
580 regval = OMAP_HSMMC_READ(host->base, HCTL);
581 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
582 regval |= HSPE;
583 else
584 regval &= ~HSPE;
585
586 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
587 }
588
Andy Shevchenko5934df22011-05-06 12:14:06 +0300589 omap_hsmmc_start_clock(host);
590}
591
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400592static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
593{
594 struct mmc_ios *ios = &host->mmc->ios;
595 u32 con;
596
597 con = OMAP_HSMMC_READ(host->base, CON);
Balaji T K03b5d922012-04-09 12:08:33 +0530598 if (ios->timing == MMC_TIMING_UHS_DDR50)
599 con |= DDR; /* configure in DDR mode */
600 else
601 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400602 switch (ios->bus_width) {
603 case MMC_BUS_WIDTH_8:
604 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
605 break;
606 case MMC_BUS_WIDTH_4:
607 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
608 OMAP_HSMMC_WRITE(host->base, HCTL,
609 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
610 break;
611 case MMC_BUS_WIDTH_1:
612 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
613 OMAP_HSMMC_WRITE(host->base, HCTL,
614 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
615 break;
616 }
617}
618
619static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
620{
621 struct mmc_ios *ios = &host->mmc->ios;
622 u32 con;
623
624 con = OMAP_HSMMC_READ(host->base, CON);
625 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
626 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
627 else
628 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
629}
630
Denis Karpov11dd62a2009-09-22 16:44:43 -0700631#ifdef CONFIG_PM
632
633/*
634 * Restore the MMC host context, if it was lost as result of a
635 * power state change.
636 */
Denis Karpov70a33412009-09-22 16:44:59 -0700637static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700638{
639 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400640 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700641 unsigned long timeout;
642
Venkatraman S6c31b212012-08-08 14:26:52 +0530643 if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE)
644 return 1;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700645
Tony Lindgren0a82e062013-10-21 00:25:19 +0530646 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
647 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
648 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
649 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
650 return 0;
651
652 host->context_loss++;
653
Balaji T Kc2200ef2012-03-07 09:55:30 -0500654 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700655 if (host->power_mode != MMC_POWER_OFF &&
656 (1 << ios->vdd) <= MMC_VDD_23_24)
657 hctl = SDVS18;
658 else
659 hctl = SDVS30;
660 capa = VS30 | VS18;
661 } else {
662 hctl = SDVS18;
663 capa = VS18;
664 }
665
666 OMAP_HSMMC_WRITE(host->base, HCTL,
667 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
668
669 OMAP_HSMMC_WRITE(host->base, CAPA,
670 OMAP_HSMMC_READ(host->base, CAPA) | capa);
671
672 OMAP_HSMMC_WRITE(host->base, HCTL,
673 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
674
675 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
676 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
677 && time_before(jiffies, timeout))
678 ;
679
Adrian Hunterb4175772010-05-26 14:42:06 -0700680 omap_hsmmc_disable_irq(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700681
682 /* Do not initialize card-specific things if the power is off */
683 if (host->power_mode == MMC_POWER_OFF)
684 goto out;
685
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400686 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700687
Andy Shevchenko5934df22011-05-06 12:14:06 +0300688 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700689
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400690 omap_hsmmc_set_bus_mode(host);
691
Denis Karpov11dd62a2009-09-22 16:44:43 -0700692out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530693 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
694 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700695 return 0;
696}
697
698/*
699 * Save the MMC host context (store the number of power state changes so far).
700 */
Denis Karpov70a33412009-09-22 16:44:59 -0700701static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700702{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530703 host->con = OMAP_HSMMC_READ(host->base, CON);
704 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
705 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
706 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700707}
708
709#else
710
Denis Karpov70a33412009-09-22 16:44:59 -0700711static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700712{
713 return 0;
714}
715
Denis Karpov70a33412009-09-22 16:44:59 -0700716static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700717{
718}
719
720#endif
721
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100722/*
723 * Send init stream sequence to card
724 * before sending IDLE command
725 */
Denis Karpov70a33412009-09-22 16:44:59 -0700726static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100727{
728 int reg = 0;
729 unsigned long timeout;
730
Adrian Hunterb62f6222009-09-22 16:45:01 -0700731 if (host->protect_card)
732 return;
733
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100734 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700735
736 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100737 OMAP_HSMMC_WRITE(host->base, CON,
738 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
739 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
740
741 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530742 while ((reg != CC_EN) && time_before(jiffies, timeout))
743 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100744
745 OMAP_HSMMC_WRITE(host->base, CON,
746 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700747
748 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
749 OMAP_HSMMC_READ(host->base, STAT);
750
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100751 enable_irq(host->irq);
752}
753
754static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700755int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100756{
757 int r = 1;
758
Denis Karpov191d1f12009-09-22 16:44:55 -0700759 if (mmc_slot(host).get_cover_state)
760 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100761 return r;
762}
763
764static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700765omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100766 char *buf)
767{
768 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700769 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100770
Denis Karpov70a33412009-09-22 16:44:59 -0700771 return sprintf(buf, "%s\n",
772 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100773}
774
Denis Karpov70a33412009-09-22 16:44:59 -0700775static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100776
777static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700778omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100779 char *buf)
780{
781 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700782 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100783
Denis Karpov191d1f12009-09-22 16:44:55 -0700784 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100785}
786
Denis Karpov70a33412009-09-22 16:44:59 -0700787static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100788
789/*
790 * Configure the response type and send the cmd.
791 */
792static void
Denis Karpov70a33412009-09-22 16:44:59 -0700793omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100794 struct mmc_data *data)
795{
796 int cmdreg = 0, resptype = 0, cmdtype = 0;
797
Venkatraman S8986d312012-08-07 19:10:38 +0530798 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100799 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
800 host->cmd = cmd;
801
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700802 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100803
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200804 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100805 if (cmd->flags & MMC_RSP_PRESENT) {
806 if (cmd->flags & MMC_RSP_136)
807 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200808 else if (cmd->flags & MMC_RSP_BUSY) {
809 resptype = 3;
810 host->response_busy = 1;
811 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100812 resptype = 2;
813 }
814
815 /*
816 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
817 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
818 * a val of 0x3, rest 0x0.
819 */
820 if (cmd == host->mrq->stop)
821 cmdtype = 0x3;
822
823 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
824
825 if (data) {
826 cmdreg |= DP_SELECT | MSBS | BCE;
827 if (data->flags & MMC_DATA_READ)
828 cmdreg |= DDIR;
829 else
830 cmdreg &= ~(DDIR);
831 }
832
833 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530834 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100835
Adrian Hunterb4175772010-05-26 14:42:06 -0700836 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700837
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100838 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
839 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
840}
841
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200842static int
Denis Karpov70a33412009-09-22 16:44:59 -0700843omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200844{
845 if (data->flags & MMC_DATA_WRITE)
846 return DMA_TO_DEVICE;
847 else
848 return DMA_FROM_DEVICE;
849}
850
Russell Kingc5c98922012-04-13 12:14:39 +0100851static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
852 struct mmc_data *data)
853{
854 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
855}
856
Adrian Hunterb4175772010-05-26 14:42:06 -0700857static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
858{
859 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530860 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700861
Venkatraman S31463b12012-04-09 12:08:34 +0530862 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700863 host->req_in_progress = 0;
864 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530865 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700866
867 omap_hsmmc_disable_irq(host);
868 /* Do not complete the request if DMA is still in progress */
869 if (mrq->data && host->use_dma && dma_ch != -1)
870 return;
871 host->mrq = NULL;
872 mmc_request_done(host->mmc, mrq);
873}
874
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100875/*
876 * Notify the transfer complete to MMC core
877 */
878static void
Denis Karpov70a33412009-09-22 16:44:59 -0700879omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100880{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200881 if (!data) {
882 struct mmc_request *mrq = host->mrq;
883
Adrian Hunter23050102009-09-22 16:44:57 -0700884 /* TC before CC from CMD6 - don't know why, but it happens */
885 if (host->cmd && host->cmd->opcode == 6 &&
886 host->response_busy) {
887 host->response_busy = 0;
888 return;
889 }
890
Adrian Hunterb4175772010-05-26 14:42:06 -0700891 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200892 return;
893 }
894
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100895 host->data = NULL;
896
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100897 if (!data->error)
898 data->bytes_xfered += data->blocks * (data->blksz);
899 else
900 data->bytes_xfered = 0;
901
Ming Leife852272012-06-22 18:49:35 +0800902 if (!data->stop) {
Adrian Hunterb4175772010-05-26 14:42:06 -0700903 omap_hsmmc_request_done(host, data->mrq);
Ming Leife852272012-06-22 18:49:35 +0800904 return;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100905 }
Ming Leife852272012-06-22 18:49:35 +0800906 omap_hsmmc_start_command(host, data->stop, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100907}
908
909/*
910 * Notify the core about command completion
911 */
912static void
Denis Karpov70a33412009-09-22 16:44:59 -0700913omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100914{
915 host->cmd = NULL;
916
917 if (cmd->flags & MMC_RSP_PRESENT) {
918 if (cmd->flags & MMC_RSP_136) {
919 /* response type 2 */
920 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
921 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
922 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
923 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
924 } else {
925 /* response types 1, 1b, 3, 4, 5, 6 */
926 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
927 }
928 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700929 if ((host->data == NULL && !host->response_busy) || cmd->error)
930 omap_hsmmc_request_done(host, cmd->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100931}
932
933/*
934 * DMA clean up for command errors
935 */
Denis Karpov70a33412009-09-22 16:44:59 -0700936static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100937{
Adrian Hunterb4175772010-05-26 14:42:06 -0700938 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530939 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700940
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200941 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100942
Venkatraman S31463b12012-04-09 12:08:34 +0530943 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700944 dma_ch = host->dma_ch;
945 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530946 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700947
948 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100949 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
950
951 dmaengine_terminate_all(chan);
952 dma_unmap_sg(chan->device->dev,
953 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -0700954 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +0100955
Per Forlin053bf342011-11-07 21:55:11 +0530956 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100957 }
958 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100959}
960
961/*
962 * Readable error output
963 */
964#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +0300965static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100966{
967 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -0700968 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +0300969 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
970 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
971 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
972 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100973 };
974 char res[256];
975 char *buf = res;
976 int len, i;
977
978 len = sprintf(buf, "MMC IRQ 0x%x :", status);
979 buf += len;
980
Denis Karpov70a33412009-09-22 16:44:59 -0700981 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100982 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -0700983 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100984 buf += len;
985 }
986
Venkatraman S8986d312012-08-07 19:10:38 +0530987 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100988}
Adrian Hunter699b9582011-05-06 12:14:01 +0300989#else
990static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
991 u32 status)
992{
993}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100994#endif /* CONFIG_MMC_DEBUG */
995
Jean Pihet3ebf74b2009-02-06 16:42:51 +0100996/*
997 * MMC controller internal state machines reset
998 *
999 * Used to reset command or data internal state machines, using respectively
1000 * SRC or SRD bit of SYSCTL register
1001 * Can be called from interrupt context
1002 */
Denis Karpov70a33412009-09-22 16:44:59 -07001003static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1004 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001005{
1006 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +05301007 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001008
1009 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1010 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1011
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001012 /*
1013 * OMAP4 ES2 and greater has an updated reset logic.
1014 * Monitor a 0->1 transition first
1015 */
1016 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001017 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001018 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301019 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001020 }
1021 i = 0;
1022
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001023 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1024 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301025 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001026
1027 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1028 dev_err(mmc_dev(host->mmc),
1029 "Timeout waiting on controller reset in %s\n",
1030 __func__);
1031}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001032
Balaji T K25e18972012-11-19 21:59:55 +05301033static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1034 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301035{
Balaji T K25e18972012-11-19 21:59:55 +05301036 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301037 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301038 if (host->cmd)
1039 host->cmd->error = err;
1040 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301041
1042 if (host->data) {
1043 omap_hsmmc_reset_controller_fsm(host, SRD);
1044 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301045 } else if (host->mrq && host->mrq->cmd)
1046 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301047}
1048
Adrian Hunterb4175772010-05-26 14:42:06 -07001049static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001050{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001051 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001052 int end_cmd = 0, end_trans = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001053
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001054 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301055 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001056
Venkatraman Sa7e96872012-11-19 22:00:01 +05301057 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001058 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001059
Venkatraman Sa7e96872012-11-19 22:00:01 +05301060 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301061 end_cmd = 1;
Venkatraman Sa7e96872012-11-19 22:00:01 +05301062 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301063 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301064 else if (status & (CCRC_EN | DCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301065 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1066
Venkatraman Sae4bf782012-08-09 20:36:07 +05301067 if (host->data || host->response_busy) {
Balaji T K25e18972012-11-19 21:59:55 +05301068 end_trans = !end_cmd;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301069 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001070 }
1071 }
1072
Francesco Lavra7472bab2013-06-29 08:25:12 +02001073 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301074 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001075 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301076 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001077 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001078}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001079
Adrian Hunterb4175772010-05-26 14:42:06 -07001080/*
1081 * MMC controller IRQ handler
1082 */
1083static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1084{
1085 struct omap_hsmmc_host *host = dev_id;
1086 int status;
1087
1088 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301089 while (status & INT_EN_MASK && host->req_in_progress) {
Adrian Hunterb4175772010-05-26 14:42:06 -07001090 omap_hsmmc_do_irq(host, status);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301091
Adrian Hunterb4175772010-05-26 14:42:06 -07001092 /* Flush posted write */
1093 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301094 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001095
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001096 return IRQ_HANDLED;
1097}
1098
Denis Karpov70a33412009-09-22 16:44:59 -07001099static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001100{
1101 unsigned long i;
1102
1103 OMAP_HSMMC_WRITE(host->base, HCTL,
1104 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1105 for (i = 0; i < loops_per_jiffy; i++) {
1106 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1107 break;
1108 cpu_relax();
1109 }
1110}
1111
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001112/*
David Brownelleb250822009-02-17 14:49:01 -08001113 * Switch MMC interface voltage ... only relevant for MMC1.
1114 *
1115 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1116 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1117 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001118 */
Denis Karpov70a33412009-09-22 16:44:59 -07001119static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001120{
1121 u32 reg_val = 0;
1122 int ret;
1123
1124 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301125 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301126 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301127 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001128
1129 /* Turn the power off */
1130 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001131
1132 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001133 if (!ret)
1134 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1135 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301136 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301137 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301138 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001139
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001140 if (ret != 0)
1141 goto err;
1142
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001143 OMAP_HSMMC_WRITE(host->base, HCTL,
1144 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1145 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001146
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001147 /*
1148 * If a MMC dual voltage card is detected, the set_ios fn calls
1149 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001150 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001151 *
David Brownelleb250822009-02-17 14:49:01 -08001152 * Cope with a bit of slop in the range ... per data sheets:
1153 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1154 * but recommended values are 1.71V to 1.89V
1155 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1156 * but recommended values are 2.7V to 3.3V
1157 *
1158 * Board setup code shouldn't permit anything very out-of-range.
1159 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1160 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161 */
David Brownelleb250822009-02-17 14:49:01 -08001162 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001163 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001164 else
1165 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001166
1167 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001168 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001169
1170 return 0;
1171err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301172 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001173 return ret;
1174}
1175
Adrian Hunterb62f6222009-09-22 16:45:01 -07001176/* Protect the card while the cover is open */
1177static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1178{
1179 if (!mmc_slot(host).get_cover_state)
1180 return;
1181
1182 host->reqs_blocked = 0;
1183 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1184 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301185 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001186 "card is now accessible\n",
1187 mmc_hostname(host->mmc));
1188 host->protect_card = 0;
1189 }
1190 } else {
1191 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301192 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001193 "card is now inaccessible\n",
1194 mmc_hostname(host->mmc));
1195 host->protect_card = 1;
1196 }
1197 }
1198}
1199
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001200/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001201 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001202 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001203static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001204{
NeilBrown7efab4f2011-12-30 12:35:13 +11001205 struct omap_hsmmc_host *host = dev_id;
David Brownell249d0fa2009-02-04 14:42:03 -08001206 struct omap_mmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001207 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001208
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001209 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001210
Denis Karpov191d1f12009-09-22 16:44:55 -07001211 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001212 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001213 else {
1214 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001215 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001216 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001217
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001218 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001219 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001220 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001221 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001222 return IRQ_HANDLED;
1223}
1224
Russell Kingc5c98922012-04-13 12:14:39 +01001225static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001226{
Russell Kingc5c98922012-04-13 12:14:39 +01001227 struct omap_hsmmc_host *host = param;
1228 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001229 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001230 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001231
Russell Kingc5c98922012-04-13 12:14:39 +01001232 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001233 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001234 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001235 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001236 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001237
Adrian Hunter770d7432011-05-06 12:14:11 +03001238 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001239 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001240 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001241 dma_unmap_sg(chan->device->dev,
1242 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001243 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001244
1245 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001246 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001247 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001248
1249 /* If DMA has finished after TC, complete the request */
1250 if (!req_in_progress) {
1251 struct mmc_request *mrq = host->mrq;
1252
1253 host->mrq = NULL;
1254 mmc_request_done(host->mmc, mrq);
1255 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001256}
1257
Per Forlin9782aff2011-07-01 18:55:23 +02001258static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1259 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001260 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001261 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001262{
1263 int dma_len;
1264
1265 if (!next && data->host_cookie &&
1266 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301267 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001268 " host->next_data.cookie %d\n",
1269 __func__, data->host_cookie, host->next_data.cookie);
1270 data->host_cookie = 0;
1271 }
1272
1273 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001274 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001275 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001276 omap_hsmmc_get_dma_dir(host, data));
1277
1278 } else {
1279 dma_len = host->next_data.dma_len;
1280 host->next_data.dma_len = 0;
1281 }
1282
1283
1284 if (dma_len == 0)
1285 return -EINVAL;
1286
1287 if (next) {
1288 next->dma_len = dma_len;
1289 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1290 } else
1291 host->dma_len = dma_len;
1292
1293 return 0;
1294}
1295
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001296/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001297 * Routine to configure and start DMA for the MMC card
1298 */
Denis Karpov70a33412009-09-22 16:44:59 -07001299static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1300 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001301{
Russell King26b88522012-04-13 12:27:37 +01001302 struct dma_slave_config cfg;
1303 struct dma_async_tx_descriptor *tx;
1304 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001305 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001306 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001307
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001308 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001309 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001310 struct scatterlist *sgl;
1311
1312 sgl = data->sg + i;
1313 if (sgl->length % data->blksz)
1314 return -EINVAL;
1315 }
1316 if ((data->blksz % 4) != 0)
1317 /* REVISIT: The MMC buffer increments only when MSB is written.
1318 * Return error for blksz which is non multiple of four.
1319 */
1320 return -EINVAL;
1321
Adrian Hunterb4175772010-05-26 14:42:06 -07001322 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001323
Russell Kingc5c98922012-04-13 12:14:39 +01001324 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001325
Russell King26b88522012-04-13 12:27:37 +01001326 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1327 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1328 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1329 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1330 cfg.src_maxburst = data->blksz / 4;
1331 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001332
Russell King26b88522012-04-13 12:27:37 +01001333 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001334 if (ret)
1335 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001336
Russell King26b88522012-04-13 12:27:37 +01001337 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1338 if (ret)
1339 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001340
Russell King26b88522012-04-13 12:27:37 +01001341 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1342 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1343 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1344 if (!tx) {
1345 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1346 /* FIXME: cleanup */
1347 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001348 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001349
Russell King26b88522012-04-13 12:27:37 +01001350 tx->callback = omap_hsmmc_dma_callback;
1351 tx->callback_param = host;
1352
1353 /* Does not fail */
1354 dmaengine_submit(tx);
1355
1356 host->dma_ch = 1;
1357
1358 dma_async_issue_pending(chan);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001359
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001360 return 0;
1361}
1362
Denis Karpov70a33412009-09-22 16:44:59 -07001363static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001364 unsigned int timeout_ns,
1365 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001366{
1367 unsigned int timeout, cycle_ns;
1368 uint32_t reg, clkd, dto = 0;
1369
1370 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1371 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1372 if (clkd == 0)
1373 clkd = 1;
1374
1375 cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001376 timeout = timeout_ns / cycle_ns;
1377 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001378 if (timeout) {
1379 while ((timeout & 0x80000000) == 0) {
1380 dto += 1;
1381 timeout <<= 1;
1382 }
1383 dto = 31 - dto;
1384 timeout <<= 1;
1385 if (timeout && dto)
1386 dto += 1;
1387 if (dto >= 13)
1388 dto -= 13;
1389 else
1390 dto = 0;
1391 if (dto > 14)
1392 dto = 14;
1393 }
1394
1395 reg &= ~DTO_MASK;
1396 reg |= dto << DTO_SHIFT;
1397 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1398}
1399
1400/*
1401 * Configure block length for MMC/SD cards and initiate the transfer.
1402 */
1403static int
Denis Karpov70a33412009-09-22 16:44:59 -07001404omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001405{
1406 int ret;
1407 host->data = req->data;
1408
1409 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001410 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001411 /*
1412 * Set an arbitrary 100ms data timeout for commands with
1413 * busy signal.
1414 */
1415 if (req->cmd->flags & MMC_RSP_BUSY)
1416 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001417 return 0;
1418 }
1419
1420 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1421 | (req->data->blocks << 16));
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001422 set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001423
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001424 if (host->use_dma) {
Denis Karpov70a33412009-09-22 16:44:59 -07001425 ret = omap_hsmmc_start_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001426 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301427 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001428 return ret;
1429 }
1430 }
1431 return 0;
1432}
1433
Per Forlin9782aff2011-07-01 18:55:23 +02001434static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1435 int err)
1436{
1437 struct omap_hsmmc_host *host = mmc_priv(mmc);
1438 struct mmc_data *data = mrq->data;
1439
Russell King26b88522012-04-13 12:27:37 +01001440 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001441 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001442
Russell King26b88522012-04-13 12:27:37 +01001443 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1444 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001445 data->host_cookie = 0;
1446 }
1447}
1448
1449static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1450 bool is_first_req)
1451{
1452 struct omap_hsmmc_host *host = mmc_priv(mmc);
1453
1454 if (mrq->data->host_cookie) {
1455 mrq->data->host_cookie = 0;
1456 return ;
1457 }
1458
Russell Kingc5c98922012-04-13 12:14:39 +01001459 if (host->use_dma) {
1460 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001461
Per Forlin9782aff2011-07-01 18:55:23 +02001462 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001463 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001464 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001465 }
Per Forlin9782aff2011-07-01 18:55:23 +02001466}
1467
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001468/*
1469 * Request function. for read/write operation
1470 */
Denis Karpov70a33412009-09-22 16:44:59 -07001471static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001472{
Denis Karpov70a33412009-09-22 16:44:59 -07001473 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001474 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001475
Adrian Hunterb4175772010-05-26 14:42:06 -07001476 BUG_ON(host->req_in_progress);
1477 BUG_ON(host->dma_ch != -1);
1478 if (host->protect_card) {
1479 if (host->reqs_blocked < 3) {
1480 /*
1481 * Ensure the controller is left in a consistent
1482 * state by resetting the command and data state
1483 * machines.
1484 */
1485 omap_hsmmc_reset_controller_fsm(host, SRD);
1486 omap_hsmmc_reset_controller_fsm(host, SRC);
1487 host->reqs_blocked += 1;
1488 }
1489 req->cmd->error = -EBADF;
1490 if (req->data)
1491 req->data->error = -EBADF;
1492 req->cmd->retries = 0;
1493 mmc_request_done(mmc, req);
1494 return;
1495 } else if (host->reqs_blocked)
1496 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001497 WARN_ON(host->mrq != NULL);
1498 host->mrq = req;
Denis Karpov70a33412009-09-22 16:44:59 -07001499 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001500 if (err) {
1501 req->cmd->error = err;
1502 if (req->data)
1503 req->data->error = err;
1504 host->mrq = NULL;
1505 mmc_request_done(mmc, req);
1506 return;
1507 }
1508
Denis Karpov70a33412009-09-22 16:44:59 -07001509 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001510}
1511
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001512/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001513static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001514{
Denis Karpov70a33412009-09-22 16:44:59 -07001515 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001516 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001517
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301518 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001519
Adrian Huntera3621462009-09-22 16:44:42 -07001520 if (ios->power_mode != host->power_mode) {
1521 switch (ios->power_mode) {
1522 case MMC_POWER_OFF:
1523 mmc_slot(host).set_power(host->dev, host->slot_id,
1524 0, 0);
1525 break;
1526 case MMC_POWER_UP:
1527 mmc_slot(host).set_power(host->dev, host->slot_id,
1528 1, ios->vdd);
1529 break;
1530 case MMC_POWER_ON:
1531 do_send_init_stream = 1;
1532 break;
1533 }
1534 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001535 }
1536
Denis Karpovdd498ef2009-09-22 16:44:49 -07001537 /* FIXME: set registers based only on changes to ios */
1538
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001539 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001540
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301541 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001542 /* Only MMC1 can interface at 3V without some flavor
1543 * of external transceiver; but they all handle 1.8V.
1544 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001545 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301546 (ios->vdd == DUAL_VOLT_OCR_BIT) &&
1547 /*
1548 * With pbias cell programming missing, this
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301549 * can't be allowed on MMC1 when booting with device
Rajendra Nayak1f84b712012-03-12 20:32:38 +05301550 * tree.
1551 */
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301552 !host->pbias_disable) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001553 /*
1554 * The mmc_select_voltage fn of the core does
1555 * not seem to set the power_mode to
1556 * MMC_POWER_UP upon recalculating the voltage.
1557 * vdd 1.8v.
1558 */
Denis Karpov70a33412009-09-22 16:44:59 -07001559 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1560 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001561 "Switch operation failed\n");
1562 }
1563 }
1564
Andy Shevchenko5934df22011-05-06 12:14:06 +03001565 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001566
Adrian Huntera3621462009-09-22 16:44:42 -07001567 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001568 send_init_stream(host);
1569
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001570 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001571
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301572 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001573}
1574
1575static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1576{
Denis Karpov70a33412009-09-22 16:44:59 -07001577 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001578
Denis Karpov191d1f12009-09-22 16:44:55 -07001579 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001580 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001581 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001582}
1583
1584static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1585{
Denis Karpov70a33412009-09-22 16:44:59 -07001586 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001587
Denis Karpov191d1f12009-09-22 16:44:55 -07001588 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001589 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001590 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001591}
1592
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001593static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1594{
1595 struct omap_hsmmc_host *host = mmc_priv(mmc);
1596
1597 if (mmc_slot(host).init_card)
1598 mmc_slot(host).init_card(card);
1599}
1600
Denis Karpov70a33412009-09-22 16:44:59 -07001601static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001602{
1603 u32 hctl, capa, value;
1604
1605 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301606 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001607 hctl = SDVS30;
1608 capa = VS30 | VS18;
1609 } else {
1610 hctl = SDVS18;
1611 capa = VS18;
1612 }
1613
1614 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1615 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1616
1617 value = OMAP_HSMMC_READ(host->base, CAPA);
1618 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1619
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001620 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001621 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001622}
1623
Denis Karpov70a33412009-09-22 16:44:59 -07001624static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001625{
Denis Karpov70a33412009-09-22 16:44:59 -07001626 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001627
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301628 pm_runtime_get_sync(host->dev);
1629
Denis Karpovdd498ef2009-09-22 16:44:49 -07001630 return 0;
1631}
1632
Adrian Hunter907d2e72012-02-29 09:17:21 +02001633static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001634{
Denis Karpov70a33412009-09-22 16:44:59 -07001635 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001636
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301637 pm_runtime_mark_last_busy(host->dev);
1638 pm_runtime_put_autosuspend(host->dev);
1639
Denis Karpovdd498ef2009-09-22 16:44:49 -07001640 return 0;
1641}
1642
Denis Karpov70a33412009-09-22 16:44:59 -07001643static const struct mmc_host_ops omap_hsmmc_ops = {
1644 .enable = omap_hsmmc_enable_fclk,
1645 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001646 .post_req = omap_hsmmc_post_req,
1647 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001648 .request = omap_hsmmc_request,
1649 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001650 .get_cd = omap_hsmmc_get_cd,
1651 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001652 .init_card = omap_hsmmc_init_card,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001653 /* NYET -- enable_sdio_irq */
1654};
1655
Denis Karpovd900f712009-09-22 16:44:38 -07001656#ifdef CONFIG_DEBUG_FS
1657
Denis Karpov70a33412009-09-22 16:44:59 -07001658static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001659{
1660 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001661 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001662
Tony Lindgren0a82e062013-10-21 00:25:19 +05301663 seq_printf(s, "mmc%d:\n ctx_loss:\t%d\n\nregs:\n",
1664 mmc->index, host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001665
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301666 pm_runtime_get_sync(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07001667
Denis Karpovd900f712009-09-22 16:44:38 -07001668 seq_printf(s, "CON:\t\t0x%08x\n",
1669 OMAP_HSMMC_READ(host->base, CON));
1670 seq_printf(s, "HCTL:\t\t0x%08x\n",
1671 OMAP_HSMMC_READ(host->base, HCTL));
1672 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1673 OMAP_HSMMC_READ(host->base, SYSCTL));
1674 seq_printf(s, "IE:\t\t0x%08x\n",
1675 OMAP_HSMMC_READ(host->base, IE));
1676 seq_printf(s, "ISE:\t\t0x%08x\n",
1677 OMAP_HSMMC_READ(host->base, ISE));
1678 seq_printf(s, "CAPA:\t\t0x%08x\n",
1679 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001680
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301681 pm_runtime_mark_last_busy(host->dev);
1682 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001683
Denis Karpovd900f712009-09-22 16:44:38 -07001684 return 0;
1685}
1686
Denis Karpov70a33412009-09-22 16:44:59 -07001687static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001688{
Denis Karpov70a33412009-09-22 16:44:59 -07001689 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001690}
1691
1692static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001693 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001694 .read = seq_read,
1695 .llseek = seq_lseek,
1696 .release = single_release,
1697};
1698
Denis Karpov70a33412009-09-22 16:44:59 -07001699static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001700{
1701 if (mmc->debugfs_root)
1702 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1703 mmc, &mmc_regs_fops);
1704}
1705
1706#else
1707
Denis Karpov70a33412009-09-22 16:44:59 -07001708static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001709{
1710}
1711
1712#endif
1713
Rajendra Nayak46856a62012-03-12 20:32:37 +05301714#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001715static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1716 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1717 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1718};
1719
1720static const struct omap_mmc_of_data omap4_mmc_of_data = {
1721 .reg_offset = 0x100,
1722};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301723
1724static const struct of_device_id omap_mmc_of_match[] = {
1725 {
1726 .compatible = "ti,omap2-hsmmc",
1727 },
1728 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001729 .compatible = "ti,omap3-pre-es3-hsmmc",
1730 .data = &omap3_pre_es3_mmc_of_data,
1731 },
1732 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301733 .compatible = "ti,omap3-hsmmc",
1734 },
1735 {
1736 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001737 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301738 },
1739 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001740};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301741MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1742
1743static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
1744{
1745 struct omap_mmc_platform_data *pdata;
1746 struct device_node *np = dev->of_node;
Daniel Mackd8714e82012-10-15 21:35:06 +05301747 u32 bus_width, max_freq;
Jan Luebbedc642c22013-01-30 10:07:17 +01001748 int cd_gpio, wp_gpio;
1749
1750 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1751 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1752 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1753 return ERR_PTR(-EPROBE_DEFER);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301754
1755 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1756 if (!pdata)
1757 return NULL; /* out of memory */
1758
1759 if (of_find_property(np, "ti,dual-volt", NULL))
1760 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1761
1762 /* This driver only supports 1 slot */
1763 pdata->nr_slots = 1;
Jan Luebbedc642c22013-01-30 10:07:17 +01001764 pdata->slots[0].switch_pin = cd_gpio;
1765 pdata->slots[0].gpio_wp = wp_gpio;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301766
1767 if (of_find_property(np, "ti,non-removable", NULL)) {
1768 pdata->slots[0].nonremovable = true;
1769 pdata->slots[0].no_regulator_off_init = true;
1770 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001771 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301772 if (bus_width == 4)
1773 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1774 else if (bus_width == 8)
1775 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1776
1777 if (of_find_property(np, "ti,needs-special-reset", NULL))
1778 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1779
Daniel Mackd8714e82012-10-15 21:35:06 +05301780 if (!of_property_read_u32(np, "max-frequency", &max_freq))
1781 pdata->max_freq = max_freq;
1782
Hebbar, Gururajacd587092012-11-19 21:59:58 +05301783 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
1784 pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
1785
Daniel Mackc9ae64d2014-02-17 12:36:33 +01001786 if (of_find_property(np, "keep-power-in-suspend", NULL))
1787 pdata->slots[0].pm_caps |= MMC_PM_KEEP_POWER;
1788
1789 if (of_find_property(np, "enable-sdio-wakeup", NULL))
1790 pdata->slots[0].pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
1791
Rajendra Nayak46856a62012-03-12 20:32:37 +05301792 return pdata;
1793}
1794#else
1795static inline struct omap_mmc_platform_data
1796 *of_get_hsmmc_pdata(struct device *dev)
1797{
1798 return NULL;
1799}
1800#endif
1801
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001802static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001803{
1804 struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
1805 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07001806 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001807 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001808 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301809 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01001810 dma_cap_mask_t mask;
1811 unsigned tx_req, rx_req;
Daniel Mack46b76032012-10-15 21:35:05 +05301812 struct pinctrl *pinctrl;
Nishanth Menon59445b12014-02-13 23:45:48 -06001813 const struct omap_mmc_of_data *data;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301814
1815 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
1816 if (match) {
1817 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01001818
1819 if (IS_ERR(pdata))
1820 return PTR_ERR(pdata);
1821
Rajendra Nayak46856a62012-03-12 20:32:37 +05301822 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06001823 data = match->data;
1824 pdata->reg_offset = data->reg_offset;
1825 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301826 }
1827 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001828
1829 if (pdata == NULL) {
1830 dev_err(&pdev->dev, "Platform Data is missing\n");
1831 return -ENXIO;
1832 }
1833
1834 if (pdata->nr_slots == 0) {
1835 dev_err(&pdev->dev, "No Slots\n");
1836 return -ENXIO;
1837 }
1838
1839 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1840 irq = platform_get_irq(pdev, 0);
1841 if (res == NULL || irq < 0)
1842 return -ENXIO;
1843
Chris Ball984b2032011-03-22 16:34:42 -07001844 res = request_mem_region(res->start, resource_size(res), pdev->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001845 if (res == NULL)
1846 return -EBUSY;
1847
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001848 ret = omap_hsmmc_gpio_init(pdata);
1849 if (ret)
1850 goto err;
1851
Denis Karpov70a33412009-09-22 16:44:59 -07001852 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001853 if (!mmc) {
1854 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001855 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001856 }
1857
1858 host = mmc_priv(mmc);
1859 host->mmc = mmc;
1860 host->pdata = pdata;
1861 host->dev = &pdev->dev;
1862 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001863 host->dma_ch = -1;
1864 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001865 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05301866 host->mapbase = res->start + pdata->reg_offset;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001867 host->base = ioremap(host->mapbase, SZ_4K);
Adrian Hunter6da20c82010-02-15 10:03:34 -08001868 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02001869 host->next_data.cookie = 1;
Balaji T Ke99448f2014-02-19 20:26:40 +05301870 host->pbias_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001871
1872 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001873
Balaji T K7a8c2ce2011-07-01 22:09:34 +05301874 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07001875
Daniel Mackd418ed82012-02-19 13:20:33 +01001876 mmc->f_min = OMAP_MMC_MIN_CLOCK;
1877
1878 if (pdata->max_freq > 0)
1879 mmc->f_max = pdata->max_freq;
1880 else
1881 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001882
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001883 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001884
Russell King6f7607c2009-01-28 10:22:50 +00001885 host->fclk = clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001886 if (IS_ERR(host->fclk)) {
1887 ret = PTR_ERR(host->fclk);
1888 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001889 goto err1;
1890 }
1891
Paul Walmsley9b682562011-10-06 14:50:35 -06001892 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
1893 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
1894 mmc->caps2 |= MMC_CAP2_NO_MULTI_READ;
1895 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07001896
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301897 pm_runtime_enable(host->dev);
1898 pm_runtime_get_sync(host->dev);
1899 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
1900 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001901
Balaji T K92a3aeb2012-02-24 21:14:34 +05301902 omap_hsmmc_context_save(host);
1903
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301904 /* This can be removed once we support PBIAS with DT */
Balaji T Ke0022642013-10-21 00:25:18 +05301905 if (host->dev->of_node && res->start == 0x4809c000)
Tony Lindgrencf5ae402013-05-10 17:42:33 +05301906 host->pbias_disable = 1;
1907
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301908 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
1909 /*
1910 * MMC can still work without debounce clock.
1911 */
1912 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301913 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05301914 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301915 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
1916 clk_put(host->dbclk);
1917 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07001918 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001919
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001920 /* Since we do only SG emulation, we can have as many segs
1921 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04001922 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001923
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001924 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
1925 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
1926 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
1927 mmc->max_seg_size = mmc->max_req_size;
1928
Jarkko Lavinen13189e72009-09-22 16:44:53 -07001929 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07001930 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001931
Sukumar Ghorai3a638332010-09-15 14:49:23 +00001932 mmc->caps |= mmc_slot(host).caps;
1933 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001934 mmc->caps |= MMC_CAP_4_BIT_DATA;
1935
Denis Karpov191d1f12009-09-22 16:44:55 -07001936 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07001937 mmc->caps |= MMC_CAP_NONREMOVABLE;
1938
Eliad Peller6fdc75d2011-11-22 16:02:18 +02001939 mmc->pm_caps = mmc_slot(host).pm_caps;
1940
Denis Karpov70a33412009-09-22 16:44:59 -07001941 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001942
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301943 if (!pdev->dev.of_node) {
1944 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
1945 if (!res) {
1946 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
1947 ret = -ENXIO;
1948 goto err_irq;
1949 }
1950 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001951
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05301952 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
1953 if (!res) {
1954 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
1955 ret = -ENXIO;
1956 goto err_irq;
1957 }
1958 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05001959 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001960
Russell King26b88522012-04-13 12:27:37 +01001961 dma_cap_zero(mask);
1962 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01001963
Matt Porterd272fbf2013-05-10 17:42:34 +05301964 host->rx_chan =
1965 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1966 &rx_req, &pdev->dev, "rx");
1967
Russell King26b88522012-04-13 12:27:37 +01001968 if (!host->rx_chan) {
1969 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001970 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001971 goto err_irq;
1972 }
1973
Matt Porterd272fbf2013-05-10 17:42:34 +05301974 host->tx_chan =
1975 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
1976 &tx_req, &pdev->dev, "tx");
1977
Russell King26b88522012-04-13 12:27:37 +01001978 if (!host->tx_chan) {
1979 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01001980 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01001981 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01001982 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001983
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001984 /* Request IRQ for MMC operations */
Yong Zhangd9618e92011-09-22 16:59:04 +08001985 ret = request_irq(host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001986 mmc_hostname(mmc), host);
1987 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301988 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001989 goto err_irq;
1990 }
1991
1992 if (pdata->init != NULL) {
1993 if (pdata->init(&pdev->dev) != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301994 dev_err(mmc_dev(host->mmc),
Denis Karpov70a33412009-09-22 16:44:59 -07001995 "Unable to configure MMC IRQs\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001996 goto err_irq_cd_init;
1997 }
1998 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001999
Adrian Hunterb702b102010-02-15 10:03:35 -08002000 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002001 ret = omap_hsmmc_reg_get(host);
2002 if (ret)
2003 goto err_reg;
2004 host->use_reg = 1;
2005 }
2006
David Brownellb583f262009-05-28 14:04:03 -07002007 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002008
2009 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02002010 if ((mmc_slot(host).card_detect_irq)) {
NeilBrown7efab4f2011-12-30 12:35:13 +11002011 ret = request_threaded_irq(mmc_slot(host).card_detect_irq,
2012 NULL,
2013 omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08002014 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11002015 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002016 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302017 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002018 "Unable to grab MMC CD IRQ\n");
2019 goto err_irq_cd;
2020 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002021 pdata->suspend = omap_hsmmc_suspend_cdirq;
2022 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002023 }
2024
Adrian Hunterb4175772010-05-26 14:42:06 -07002025 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002026
Daniel Mack46b76032012-10-15 21:35:05 +05302027 pinctrl = devm_pinctrl_get_select_default(&pdev->dev);
2028 if (IS_ERR(pinctrl))
2029 dev_warn(&pdev->dev,
2030 "pins are not configured from the driver\n");
2031
Adrian Hunterb62f6222009-09-22 16:45:01 -07002032 omap_hsmmc_protect_card(host);
2033
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002034 mmc_add_host(mmc);
2035
Denis Karpov191d1f12009-09-22 16:44:55 -07002036 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002037 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2038 if (ret < 0)
2039 goto err_slot_name;
2040 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002041 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002042 ret = device_create_file(&mmc->class_dev,
2043 &dev_attr_cover_switch);
2044 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002045 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002046 }
2047
Denis Karpov70a33412009-09-22 16:44:59 -07002048 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302049 pm_runtime_mark_last_busy(host->dev);
2050 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002051
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002052 return 0;
2053
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002054err_slot_name:
2055 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002056 free_irq(mmc_slot(host).card_detect_irq, host);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002057err_irq_cd:
2058 if (host->use_reg)
2059 omap_hsmmc_reg_put(host);
2060err_reg:
2061 if (host->pdata->cleanup)
2062 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002063err_irq_cd_init:
2064 free_irq(host->irq, host);
2065err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002066 if (host->tx_chan)
2067 dma_release_channel(host->tx_chan);
2068 if (host->rx_chan)
2069 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302070 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002071 pm_runtime_disable(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002072 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);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002075 clk_put(host->dbclk);
2076 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002077err1:
2078 iounmap(host->base);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002079 mmc_free_host(mmc);
2080err_alloc:
2081 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002082err:
Russell King48b332f2012-04-18 11:11:57 +01002083 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2084 if (res)
2085 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002086 return ret;
2087}
2088
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002089static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002090{
Denis Karpov70a33412009-09-22 16:44:59 -07002091 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002092 struct resource *res;
2093
Felipe Balbi927ce942012-03-14 11:18:27 +02002094 pm_runtime_get_sync(host->dev);
2095 mmc_remove_host(host->mmc);
2096 if (host->use_reg)
2097 omap_hsmmc_reg_put(host);
2098 if (host->pdata->cleanup)
2099 host->pdata->cleanup(&pdev->dev);
2100 free_irq(host->irq, host);
2101 if (mmc_slot(host).card_detect_irq)
2102 free_irq(mmc_slot(host).card_detect_irq, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002103
Russell Kingc5c98922012-04-13 12:14:39 +01002104 if (host->tx_chan)
2105 dma_release_channel(host->tx_chan);
2106 if (host->rx_chan)
2107 dma_release_channel(host->rx_chan);
2108
Felipe Balbi927ce942012-03-14 11:18:27 +02002109 pm_runtime_put_sync(host->dev);
2110 pm_runtime_disable(host->dev);
2111 clk_put(host->fclk);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302112 if (host->dbclk) {
Rajendra Nayak94c18142012-06-27 14:19:54 +05302113 clk_disable_unprepare(host->dbclk);
Felipe Balbi927ce942012-03-14 11:18:27 +02002114 clk_put(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002115 }
2116
Balaji T K9ea28ec2012-10-15 21:35:08 +05302117 omap_hsmmc_gpio_free(host->pdata);
Felipe Balbi927ce942012-03-14 11:18:27 +02002118 iounmap(host->base);
Balaji T K9d1f0282012-10-15 21:35:07 +05302119 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002120
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002121 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2122 if (res)
Chris Ball984b2032011-03-22 16:34:42 -07002123 release_mem_region(res->start, resource_size(res));
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002124
2125 return 0;
2126}
2127
2128#ifdef CONFIG_PM
Felipe Balbia48ce882012-11-19 21:59:59 +05302129static int omap_hsmmc_prepare(struct device *dev)
2130{
2131 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2132
2133 if (host->pdata->suspend)
2134 return host->pdata->suspend(dev, host->slot_id);
2135
2136 return 0;
2137}
2138
2139static void omap_hsmmc_complete(struct device *dev)
2140{
2141 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2142
2143 if (host->pdata->resume)
2144 host->pdata->resume(dev, host->slot_id);
2145
2146}
2147
Kevin Hilmana791daa2010-05-26 14:42:07 -07002148static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002149{
Felipe Balbi927ce942012-03-14 11:18:27 +02002150 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2151
2152 if (!host)
2153 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002154
Felipe Balbi927ce942012-03-14 11:18:27 +02002155 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002156
2157 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
2158 omap_hsmmc_disable_irq(host);
2159 OMAP_HSMMC_WRITE(host->base, HCTL,
2160 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2161 }
2162
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302163 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302164 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002165
Eliad Peller31f9d462011-11-22 16:02:17 +02002166 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002167 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002168}
2169
2170/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002171static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002172{
Felipe Balbi927ce942012-03-14 11:18:27 +02002173 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2174
2175 if (!host)
2176 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002177
Felipe Balbi927ce942012-03-14 11:18:27 +02002178 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002179
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302180 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302181 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002182
Felipe Balbi927ce942012-03-14 11:18:27 +02002183 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2184 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002185
Felipe Balbi927ce942012-03-14 11:18:27 +02002186 omap_hsmmc_protect_card(host);
2187
Felipe Balbi927ce942012-03-14 11:18:27 +02002188 pm_runtime_mark_last_busy(host->dev);
2189 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002190 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002191}
2192
2193#else
Felipe Balbia48ce882012-11-19 21:59:59 +05302194#define omap_hsmmc_prepare NULL
2195#define omap_hsmmc_complete NULL
Denis Karpov70a33412009-09-22 16:44:59 -07002196#define omap_hsmmc_suspend NULL
Felipe Balbia48ce882012-11-19 21:59:59 +05302197#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002198#endif
2199
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302200static int omap_hsmmc_runtime_suspend(struct device *dev)
2201{
2202 struct omap_hsmmc_host *host;
2203
2204 host = platform_get_drvdata(to_platform_device(dev));
2205 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002206 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302207
2208 return 0;
2209}
2210
2211static int omap_hsmmc_runtime_resume(struct device *dev)
2212{
2213 struct omap_hsmmc_host *host;
2214
2215 host = platform_get_drvdata(to_platform_device(dev));
2216 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002217 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302218
2219 return 0;
2220}
2221
Kevin Hilmana791daa2010-05-26 14:42:07 -07002222static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002223 .suspend = omap_hsmmc_suspend,
2224 .resume = omap_hsmmc_resume,
Felipe Balbia48ce882012-11-19 21:59:59 +05302225 .prepare = omap_hsmmc_prepare,
2226 .complete = omap_hsmmc_complete,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302227 .runtime_suspend = omap_hsmmc_runtime_suspend,
2228 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002229};
2230
2231static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002232 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002233 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002234 .driver = {
2235 .name = DRIVER_NAME,
2236 .owner = THIS_MODULE,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002237 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302238 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002239 },
2240};
2241
Felipe Balbib7964502012-03-14 11:18:32 +02002242module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002243MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2244MODULE_LICENSE("GPL");
2245MODULE_ALIAS("platform:" DRIVER_NAME);
2246MODULE_AUTHOR("Texas Instruments Inc");