blob: bcb02a6a331b0dc074f1dede37d0063d25998ba2 [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>
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +020032#include <linux/of_irq.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053033#include <linux/of_gpio.h>
34#include <linux/of_device.h>
Balaji T Kee526d52014-05-09 22:16:53 +053035#include <linux/omap-dmaengine.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010036#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070037#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070038#include <linux/mmc/mmc.h>
NeilBrown41afa3142015-01-13 08:23:18 +130039#include <linux/mmc/slot-gpio.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010040#include <linux/io.h>
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +020041#include <linux/irq.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080042#include <linux/gpio.h>
43#include <linux/regulator/consumer.h>
Daniel Mack46b76032012-10-15 21:35:05 +053044#include <linux/pinctrl/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053045#include <linux/pm_runtime.h>
Tony Lindgren5b83b222015-05-21 15:51:52 -070046#include <linux/pm_wakeirq.h>
Andreas Fenkart551434382014-11-08 15:33:09 +010047#include <linux/platform_data/hsmmc-omap.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010048
49/* OMAP HSMMC Host Controller Registers */
Denis Karpov11dd62a2009-09-22 16:44:43 -070050#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010051#define OMAP_HSMMC_CON 0x002C
Balaji T Ka2e77152014-01-21 19:54:42 +053052#define OMAP_HSMMC_SDMASA 0x0100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010053#define OMAP_HSMMC_BLK 0x0104
54#define OMAP_HSMMC_ARG 0x0108
55#define OMAP_HSMMC_CMD 0x010C
56#define OMAP_HSMMC_RSP10 0x0110
57#define OMAP_HSMMC_RSP32 0x0114
58#define OMAP_HSMMC_RSP54 0x0118
59#define OMAP_HSMMC_RSP76 0x011C
60#define OMAP_HSMMC_DATA 0x0120
Andreas Fenkartbb0635f2014-05-29 10:28:01 +020061#define OMAP_HSMMC_PSTATE 0x0124
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010062#define OMAP_HSMMC_HCTL 0x0128
63#define OMAP_HSMMC_SYSCTL 0x012C
64#define OMAP_HSMMC_STAT 0x0130
65#define OMAP_HSMMC_IE 0x0134
66#define OMAP_HSMMC_ISE 0x0138
Balaji T Ka2e77152014-01-21 19:54:42 +053067#define OMAP_HSMMC_AC12 0x013C
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010068#define OMAP_HSMMC_CAPA 0x0140
69
70#define VS18 (1 << 26)
71#define VS30 (1 << 25)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053072#define HSS (1 << 21)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010073#define SDVS18 (0x5 << 9)
74#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080075#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010076#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010077#define SDVSCLR 0xFFFFF1FF
78#define SDVSDET 0x00000400
79#define AUTOIDLE 0x1
80#define SDBP (1 << 8)
81#define DTO 0xe
82#define ICE 0x1
83#define ICS 0x2
84#define CEN (1 << 2)
Balaji T Ked164182013-10-21 00:25:21 +053085#define CLKD_MAX 0x3FF /* max clock divisor: 1023 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010086#define CLKD_MASK 0x0000FFC0
87#define CLKD_SHIFT 6
88#define DTO_MASK 0x000F0000
89#define DTO_SHIFT 16
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010090#define INIT_STREAM (1 << 1)
Balaji T Ka2e77152014-01-21 19:54:42 +053091#define ACEN_ACMD23 (2 << 2)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010092#define DP_SELECT (1 << 21)
93#define DDIR (1 << 4)
Venkatraman Sa7e96872012-11-19 22:00:01 +053094#define DMAE 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010095#define MSBS (1 << 5)
96#define BCE (1 << 1)
97#define FOUR_BIT (1 << 1)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053098#define HSPE (1 << 2)
Balaji T K5a52b082014-05-29 10:28:02 +020099#define IWE (1 << 24)
Balaji T K03b5d922012-04-09 12:08:33 +0530100#define DDR (1 << 19)
Balaji T K5a52b082014-05-29 10:28:02 +0200101#define CLKEXTFREE (1 << 16)
102#define CTPL (1 << 11)
Jarkko Lavinen73153012008-11-21 16:49:54 +0200103#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100104#define OD 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100105#define STAT_CLEAR 0xFFFFFFFF
106#define INIT_STREAM_CMD 0x00000000
107#define DUAL_VOLT_OCR_BIT 7
108#define SRC (1 << 25)
109#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700110#define SOFTRESET (1 << 1)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100111
Andreas Fenkartf9459012014-05-29 10:28:03 +0200112/* PSTATE */
113#define DLEV_DAT(x) (1 << (20 + (x)))
114
Venkatraman Sa7e96872012-11-19 22:00:01 +0530115/* Interrupt masks for IE and ISE register */
116#define CC_EN (1 << 0)
117#define TC_EN (1 << 1)
118#define BWR_EN (1 << 4)
119#define BRR_EN (1 << 5)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200120#define CIRQ_EN (1 << 8)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530121#define ERR_EN (1 << 15)
122#define CTO_EN (1 << 16)
123#define CCRC_EN (1 << 17)
124#define CEB_EN (1 << 18)
125#define CIE_EN (1 << 19)
126#define DTO_EN (1 << 20)
127#define DCRC_EN (1 << 21)
128#define DEB_EN (1 << 22)
Balaji T Ka2e77152014-01-21 19:54:42 +0530129#define ACE_EN (1 << 24)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530130#define CERR_EN (1 << 28)
131#define BADA_EN (1 << 29)
132
Balaji T Ka2e77152014-01-21 19:54:42 +0530133#define INT_EN_MASK (BADA_EN | CERR_EN | ACE_EN | DEB_EN | DCRC_EN |\
Venkatraman Sa7e96872012-11-19 22:00:01 +0530134 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
135 BRR_EN | BWR_EN | TC_EN | CC_EN)
136
Balaji T Ka2e77152014-01-21 19:54:42 +0530137#define CNI (1 << 7)
138#define ACIE (1 << 4)
139#define ACEB (1 << 3)
140#define ACCE (1 << 2)
141#define ACTO (1 << 1)
142#define ACNE (1 << 0)
143
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530144#define MMC_AUTOSUSPEND_DELAY 100
Jianpeng Ma1e881782013-10-21 00:25:20 +0530145#define MMC_TIMEOUT_MS 20 /* 20 mSec */
146#define MMC_TIMEOUT_US 20000 /* 20000 micro Sec */
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400147#define OMAP_MMC_MIN_CLOCK 400000
148#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530149#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100150
Balaji T Ke99448f2014-02-19 20:26:40 +0530151#define VDD_1V8 1800000 /* 180000 uV */
152#define VDD_3V0 3000000 /* 300000 uV */
153#define VDD_165_195 (ffs(MMC_VDD_165_195) - 1)
154
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100155/*
156 * One controller can have multiple slots, like on some omap boards using
157 * omap.c controller driver. Luckily this is not currently done on any known
158 * omap_hsmmc.c device.
159 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100160#define mmc_pdata(host) host->pdata
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100161
162/*
163 * MMC Host controller read/write API's
164 */
165#define OMAP_HSMMC_READ(base, reg) \
166 __raw_readl((base) + OMAP_HSMMC_##reg)
167
168#define OMAP_HSMMC_WRITE(base, reg, val) \
169 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
170
Per Forlin9782aff2011-07-01 18:55:23 +0200171struct omap_hsmmc_next {
172 unsigned int dma_len;
173 s32 cookie;
174};
175
Denis Karpov70a33412009-09-22 16:44:59 -0700176struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100177 struct device *dev;
178 struct mmc_host *mmc;
179 struct mmc_request *mrq;
180 struct mmc_command *cmd;
181 struct mmc_data *data;
182 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100183 struct clk *dbclk;
Balaji T Ke99448f2014-02-19 20:26:40 +0530184 struct regulator *pbias;
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700185 bool pbias_enabled;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100186 void __iomem *base;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530187 int vqmmc_enabled;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100188 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700189 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100190 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200191 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100192 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700193 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100194 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530195 u32 con;
196 u32 hctl;
197 u32 sysctl;
198 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100199 int irq;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200200 int wake_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100201 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100202 struct dma_chan *tx_chan;
203 struct dma_chan *rx_chan;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200204 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700205 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700206 int protect_card;
207 int reqs_blocked;
Adrian Hunterb4175772010-05-26 14:42:06 -0700208 int req_in_progress;
Balaji T K6e3076c2014-01-21 19:54:42 +0530209 unsigned long clk_rate;
Balaji T Ka2e77152014-01-21 19:54:42 +0530210 unsigned int flags;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200211#define AUTO_CMD23 (1 << 0) /* Auto CMD23 support */
212#define HSMMC_SDIO_IRQ_ENABLED (1 << 1) /* SDIO irq enabled */
Per Forlin9782aff2011-07-01 18:55:23 +0200213 struct omap_hsmmc_next next_data;
Andreas Fenkart551434382014-11-08 15:33:09 +0100214 struct omap_hsmmc_platform_data *pdata;
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100215
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100216 /* return MMC cover switch state, can be NULL if not supported.
217 *
218 * possible return values:
219 * 0 - closed
220 * 1 - open
221 */
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100222 int (*get_cover_state)(struct device *dev);
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100223
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100224 int (*card_detect)(struct device *dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100225};
226
Nishanth Menon59445b12014-02-13 23:45:48 -0600227struct omap_mmc_of_data {
228 u32 reg_offset;
229 u8 controller_flags;
230};
231
Balaji T Kbf129e12014-01-21 19:54:42 +0530232static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host);
233
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100234static int omap_hsmmc_card_detect(struct device *dev)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800235{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530236 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800237
NeilBrown41afa3142015-01-13 08:23:18 +1300238 return mmc_gpio_get_cd(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800239}
240
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100241static int omap_hsmmc_get_cover_state(struct device *dev)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800242{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530243 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800244
NeilBrown41afa3142015-01-13 08:23:18 +1300245 return mmc_gpio_get_cd(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800246}
247
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530248static int omap_hsmmc_enable_supply(struct mmc_host *mmc)
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530249{
250 int ret;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530251 struct omap_hsmmc_host *host = mmc_priv(mmc);
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530252 struct mmc_ios *ios = &mmc->ios;
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530253
254 if (mmc->supply.vmmc) {
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530255 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530256 if (ret)
257 return ret;
258 }
259
260 /* Enable interface voltage rail, if needed */
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530261 if (mmc->supply.vqmmc && !host->vqmmc_enabled) {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530262 ret = regulator_enable(mmc->supply.vqmmc);
263 if (ret) {
264 dev_err(mmc_dev(mmc), "vmmc_aux reg enable failed\n");
265 goto err_vqmmc;
266 }
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530267 host->vqmmc_enabled = 1;
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530268 }
269
270 return 0;
271
272err_vqmmc:
273 if (mmc->supply.vmmc)
274 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
275
276 return ret;
277}
278
279static int omap_hsmmc_disable_supply(struct mmc_host *mmc)
280{
281 int ret;
282 int status;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530283 struct omap_hsmmc_host *host = mmc_priv(mmc);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530284
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530285 if (mmc->supply.vqmmc && host->vqmmc_enabled) {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530286 ret = regulator_disable(mmc->supply.vqmmc);
287 if (ret) {
288 dev_err(mmc_dev(mmc), "vmmc_aux reg disable failed\n");
289 return ret;
290 }
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530291 host->vqmmc_enabled = 0;
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530292 }
293
294 if (mmc->supply.vmmc) {
295 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
296 if (ret)
297 goto err_set_ocr;
298 }
299
300 return 0;
301
302err_set_ocr:
303 if (mmc->supply.vqmmc) {
304 status = regulator_enable(mmc->supply.vqmmc);
305 if (status)
306 dev_err(mmc_dev(mmc), "vmmc_aux re-enable failed\n");
307 }
308
309 return ret;
310}
311
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530312static int omap_hsmmc_set_pbias(struct omap_hsmmc_host *host, bool power_on,
313 int vdd)
314{
315 int ret;
316
317 if (!host->pbias)
318 return 0;
319
320 if (power_on) {
321 if (vdd <= VDD_165_195)
322 ret = regulator_set_voltage(host->pbias, VDD_1V8,
323 VDD_1V8);
324 else
325 ret = regulator_set_voltage(host->pbias, VDD_3V0,
326 VDD_3V0);
327 if (ret < 0) {
328 dev_err(host->dev, "pbias set voltage fail\n");
329 return ret;
330 }
331
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700332 if (host->pbias_enabled == 0) {
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530333 ret = regulator_enable(host->pbias);
334 if (ret) {
335 dev_err(host->dev, "pbias reg enable fail\n");
336 return ret;
337 }
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700338 host->pbias_enabled = 1;
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530339 }
340 } else {
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700341 if (host->pbias_enabled == 1) {
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530342 ret = regulator_disable(host->pbias);
343 if (ret) {
344 dev_err(host->dev, "pbias reg disable fail\n");
345 return ret;
346 }
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700347 host->pbias_enabled = 0;
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530348 }
349 }
350
351 return 0;
352}
353
Andreas Fenkart1ca4d352016-03-21 00:58:08 +0100354static int omap_hsmmc_set_power(struct omap_hsmmc_host *host, int power_on,
355 int vdd)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800356{
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530357 struct mmc_host *mmc = host->mmc;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800358 int ret = 0;
359
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200360 if (mmc_pdata(host)->set_power)
Andreas Fenkart1ca4d352016-03-21 00:58:08 +0100361 return mmc_pdata(host)->set_power(host->dev, power_on, vdd);
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200362
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800363 /*
364 * If we don't see a Vcc regulator, assume it's a fixed
365 * voltage always-on regulator.
366 */
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530367 if (!mmc->supply.vmmc)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800368 return 0;
369
Andreas Fenkart326119c2014-11-08 15:33:14 +0100370 if (mmc_pdata(host)->before_set_reg)
Andreas Fenkart1ca4d352016-03-21 00:58:08 +0100371 mmc_pdata(host)->before_set_reg(host->dev, power_on, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800372
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530373 ret = omap_hsmmc_set_pbias(host, false, 0);
374 if (ret)
375 return ret;
Balaji T Ke99448f2014-02-19 20:26:40 +0530376
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800377 /*
378 * Assume Vcc regulator is used only to power the card ... OMAP
379 * VDDS is used to power the pins, optionally with a transceiver to
380 * support cards using voltages other than VDDS (1.8V nominal). When a
381 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
382 *
383 * In some cases this regulator won't support enable/disable;
384 * e.g. it's a fixed rail for a WLAN chip.
385 *
386 * In other cases vcc_aux switches interface power. Example, for
387 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
388 * chips/cards need an interface voltage rail too.
389 */
390 if (power_on) {
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530391 ret = omap_hsmmc_enable_supply(mmc);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530392 if (ret)
393 return ret;
Kishon Vijay Abraham I97fe7e52015-08-27 14:44:02 +0530394
395 ret = omap_hsmmc_set_pbias(host, true, vdd);
396 if (ret)
397 goto err_set_voltage;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800398 } else {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530399 ret = omap_hsmmc_disable_supply(mmc);
400 if (ret)
401 return ret;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800402 }
403
Andreas Fenkart326119c2014-11-08 15:33:14 +0100404 if (mmc_pdata(host)->after_set_reg)
Andreas Fenkart1ca4d352016-03-21 00:58:08 +0100405 mmc_pdata(host)->after_set_reg(host->dev, power_on, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800406
Kishon Vijay Abraham I229f3292015-08-27 14:43:59 +0530407 return 0;
408
409err_set_voltage:
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530410 omap_hsmmc_disable_supply(mmc);
Kishon Vijay Abraham I229f3292015-08-27 14:43:59 +0530411
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800412 return ret;
413}
414
Kishon Vijay Abraham Ic8518ef2015-08-27 14:44:03 +0530415static int omap_hsmmc_disable_boot_regulator(struct regulator *reg)
416{
417 int ret;
418
419 if (!reg)
420 return 0;
421
422 if (regulator_is_enabled(reg)) {
423 ret = regulator_enable(reg);
424 if (ret)
425 return ret;
426
427 ret = regulator_disable(reg);
428 if (ret)
429 return ret;
430 }
431
432 return 0;
433}
434
435static int omap_hsmmc_disable_boot_regulators(struct omap_hsmmc_host *host)
436{
437 struct mmc_host *mmc = host->mmc;
438 int ret;
439
440 /*
441 * disable regulators enabled during boot and get the usecount
442 * right so that regulators can be enabled/disabled by checking
443 * the return value of regulator_is_enabled
444 */
445 ret = omap_hsmmc_disable_boot_regulator(mmc->supply.vmmc);
446 if (ret) {
447 dev_err(host->dev, "fail to disable boot enabled vmmc reg\n");
448 return ret;
449 }
450
451 ret = omap_hsmmc_disable_boot_regulator(mmc->supply.vqmmc);
452 if (ret) {
453 dev_err(host->dev,
454 "fail to disable boot enabled vmmc_aux reg\n");
455 return ret;
456 }
457
458 ret = omap_hsmmc_disable_boot_regulator(host->pbias);
459 if (ret) {
460 dev_err(host->dev,
461 "failed to disable boot enabled pbias reg\n");
462 return ret;
463 }
464
465 return 0;
466}
467
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800468static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
469{
kishore kadiyala64be9782010-10-01 16:35:28 -0700470 int ocr_value = 0;
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530471 int ret;
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530472 struct mmc_host *mmc = host->mmc;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800473
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200474 if (mmc_pdata(host)->set_power)
475 return 0;
476
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530477 mmc->supply.vmmc = devm_regulator_get_optional(host->dev, "vmmc");
478 if (IS_ERR(mmc->supply.vmmc)) {
479 ret = PTR_ERR(mmc->supply.vmmc);
Tony Lindgren123e20b2015-10-07 06:22:25 -0700480 if ((ret != -ENODEV) && host->dev->of_node)
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530481 return ret;
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530482 dev_dbg(host->dev, "unable to get vmmc regulator %ld\n",
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530483 PTR_ERR(mmc->supply.vmmc));
484 mmc->supply.vmmc = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800485 } else {
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530486 ocr_value = mmc_regulator_get_ocrmask(mmc->supply.vmmc);
Kishon Vijay Abraham Ib49069f2015-08-27 14:43:56 +0530487 if (ocr_value > 0)
Andreas Fenkart326119c2014-11-08 15:33:14 +0100488 mmc_pdata(host)->ocr_mask = ocr_value;
Balaji T K987fd492014-02-19 20:26:40 +0530489 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800490
Balaji T K987fd492014-02-19 20:26:40 +0530491 /* Allow an aux regulator */
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530492 mmc->supply.vqmmc = devm_regulator_get_optional(host->dev, "vmmc_aux");
493 if (IS_ERR(mmc->supply.vqmmc)) {
494 ret = PTR_ERR(mmc->supply.vqmmc);
Tony Lindgren123e20b2015-10-07 06:22:25 -0700495 if ((ret != -ENODEV) && host->dev->of_node)
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530496 return ret;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530497 dev_dbg(host->dev, "unable to get vmmc_aux regulator %ld\n",
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530498 PTR_ERR(mmc->supply.vqmmc));
499 mmc->supply.vqmmc = NULL;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530500 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800501
Kishon Vijay Abraham Ic299dc32015-08-27 14:43:55 +0530502 host->pbias = devm_regulator_get_optional(host->dev, "pbias");
503 if (IS_ERR(host->pbias)) {
504 ret = PTR_ERR(host->pbias);
Kishon Vijay Abraham I91437572016-01-14 14:45:20 +0530505 if ((ret != -ENODEV) && host->dev->of_node) {
506 dev_err(host->dev,
507 "SD card detect fail? enable CONFIG_REGULATOR_PBIAS\n");
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530508 return ret;
Kishon Vijay Abraham I91437572016-01-14 14:45:20 +0530509 }
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530510 dev_dbg(host->dev, "unable to get pbias regulator %ld\n",
Kishon Vijay Abraham Ic299dc32015-08-27 14:43:55 +0530511 PTR_ERR(host->pbias));
512 host->pbias = NULL;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530513 }
Balaji T Ke99448f2014-02-19 20:26:40 +0530514
Balaji T K987fd492014-02-19 20:26:40 +0530515 /* For eMMC do not power off when not in sleep state */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100516 if (mmc_pdata(host)->no_regulator_off_init)
Balaji T K987fd492014-02-19 20:26:40 +0530517 return 0;
Adrian Huntere840ce12011-05-06 12:14:10 +0300518
Kishon Vijay Abraham Ic8518ef2015-08-27 14:44:03 +0530519 ret = omap_hsmmc_disable_boot_regulators(host);
520 if (ret)
521 return ret;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800522
523 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800524}
525
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100526static irqreturn_t omap_hsmmc_cover_irq(int irq, void *dev_id);
NeilBrown41afa3142015-01-13 08:23:18 +1300527
528static int omap_hsmmc_gpio_init(struct mmc_host *mmc,
529 struct omap_hsmmc_host *host,
Andreas Fenkart1e363e32014-11-08 15:33:15 +0100530 struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800531{
532 int ret;
533
Andreas Fenkartb7a56462015-03-20 15:53:54 +0100534 if (gpio_is_valid(pdata->gpio_cod)) {
535 ret = mmc_gpio_request_cd(mmc, pdata->gpio_cod, 0);
Adrian Hunterb702b102010-02-15 10:03:35 -0800536 if (ret)
537 return ret;
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100538
539 host->get_cover_state = omap_hsmmc_get_cover_state;
540 mmc_gpio_set_cd_isr(mmc, omap_hsmmc_cover_irq);
Andreas Fenkartb7a56462015-03-20 15:53:54 +0100541 } else if (gpio_is_valid(pdata->gpio_cd)) {
542 ret = mmc_gpio_request_cd(mmc, pdata->gpio_cd, 0);
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100543 if (ret)
544 return ret;
545
546 host->card_detect = omap_hsmmc_card_detect;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100547 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800548
Andreas Fenkart326119c2014-11-08 15:33:14 +0100549 if (gpio_is_valid(pdata->gpio_wp)) {
NeilBrown41afa3142015-01-13 08:23:18 +1300550 ret = mmc_gpio_request_ro(mmc, pdata->gpio_wp);
Adrian Hunterb702b102010-02-15 10:03:35 -0800551 if (ret)
NeilBrown41afa3142015-01-13 08:23:18 +1300552 return ret;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100553 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800554
555 return 0;
Adrian Hunterb702b102010-02-15 10:03:35 -0800556}
557
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100558/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300559 * Start clock to the card
560 */
561static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
562{
563 OMAP_HSMMC_WRITE(host->base, SYSCTL,
564 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
565}
566
567/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100568 * Stop clock to the card
569 */
Denis Karpov70a33412009-09-22 16:44:59 -0700570static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100571{
572 OMAP_HSMMC_WRITE(host->base, SYSCTL,
573 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
574 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900575 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100576}
577
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700578static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
579 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700580{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200581 u32 irq_mask = INT_EN_MASK;
582 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700583
584 if (host->use_dma)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200585 irq_mask &= ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700586
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700587 /* Disable timeout for erases */
588 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530589 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700590
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200591 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700592 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
593 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200594
595 /* latch pending CIRQ, but don't signal MMC core */
596 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
597 irq_mask |= CIRQ_EN;
Adrian Hunterb4175772010-05-26 14:42:06 -0700598 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200599 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700600}
601
602static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
603{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200604 u32 irq_mask = 0;
605 unsigned long flags;
606
607 spin_lock_irqsave(&host->irq_lock, flags);
608 /* no transfer running but need to keep cirq if enabled */
609 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
610 irq_mask |= CIRQ_EN;
611 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
612 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Adrian Hunterb4175772010-05-26 14:42:06 -0700613 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200614 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700615}
616
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300617/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530618static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300619{
620 u16 dsor = 0;
621
622 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530623 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530624 if (dsor > CLKD_MAX)
625 dsor = CLKD_MAX;
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300626 }
627
628 return dsor;
629}
630
Andy Shevchenko5934df22011-05-06 12:14:06 +0300631static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
632{
633 struct mmc_ios *ios = &host->mmc->ios;
634 unsigned long regval;
635 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530636 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300637
Venkatraman S8986d312012-08-07 19:10:38 +0530638 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300639
640 omap_hsmmc_stop_clock(host);
641
642 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
643 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530644 clkdiv = calc_divisor(host, ios);
645 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300646 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
647 OMAP_HSMMC_WRITE(host->base, SYSCTL,
648 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
649
650 /* Wait till the ICS bit is set */
651 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
652 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
653 && time_before(jiffies, timeout))
654 cpu_relax();
655
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530656 /*
657 * Enable High-Speed Support
658 * Pre-Requisites
659 * - Controller should support High-Speed-Enable Bit
660 * - Controller should not be using DDR Mode
661 * - Controller should advertise that it supports High Speed
662 * in capabilities register
663 * - MMC/SD clock coming out of controller > 25MHz
664 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100665 if ((mmc_pdata(host)->features & HSMMC_HAS_HSPE_SUPPORT) &&
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900666 (ios->timing != MMC_TIMING_MMC_DDR52) &&
Ulf Hansson903101a2014-11-25 13:05:13 +0100667 (ios->timing != MMC_TIMING_UHS_DDR50) &&
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530668 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
669 regval = OMAP_HSMMC_READ(host->base, HCTL);
670 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
671 regval |= HSPE;
672 else
673 regval &= ~HSPE;
674
675 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
676 }
677
Andy Shevchenko5934df22011-05-06 12:14:06 +0300678 omap_hsmmc_start_clock(host);
679}
680
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400681static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
682{
683 struct mmc_ios *ios = &host->mmc->ios;
684 u32 con;
685
686 con = OMAP_HSMMC_READ(host->base, CON);
Ulf Hansson903101a2014-11-25 13:05:13 +0100687 if (ios->timing == MMC_TIMING_MMC_DDR52 ||
688 ios->timing == MMC_TIMING_UHS_DDR50)
Balaji T K03b5d922012-04-09 12:08:33 +0530689 con |= DDR; /* configure in DDR mode */
690 else
691 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400692 switch (ios->bus_width) {
693 case MMC_BUS_WIDTH_8:
694 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
695 break;
696 case MMC_BUS_WIDTH_4:
697 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
698 OMAP_HSMMC_WRITE(host->base, HCTL,
699 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
700 break;
701 case MMC_BUS_WIDTH_1:
702 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
703 OMAP_HSMMC_WRITE(host->base, HCTL,
704 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
705 break;
706 }
707}
708
709static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
710{
711 struct mmc_ios *ios = &host->mmc->ios;
712 u32 con;
713
714 con = OMAP_HSMMC_READ(host->base, CON);
715 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
716 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
717 else
718 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
719}
720
Denis Karpov11dd62a2009-09-22 16:44:43 -0700721#ifdef CONFIG_PM
722
723/*
724 * Restore the MMC host context, if it was lost as result of a
725 * power state change.
726 */
Denis Karpov70a33412009-09-22 16:44:59 -0700727static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700728{
729 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400730 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700731 unsigned long timeout;
732
Tony Lindgren0a82e062013-10-21 00:25:19 +0530733 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
734 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
735 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
736 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
737 return 0;
738
739 host->context_loss++;
740
Balaji T Kc2200ef2012-03-07 09:55:30 -0500741 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700742 if (host->power_mode != MMC_POWER_OFF &&
743 (1 << ios->vdd) <= MMC_VDD_23_24)
744 hctl = SDVS18;
745 else
746 hctl = SDVS30;
747 capa = VS30 | VS18;
748 } else {
749 hctl = SDVS18;
750 capa = VS18;
751 }
752
Balaji T K5a52b082014-05-29 10:28:02 +0200753 if (host->mmc->caps & MMC_CAP_SDIO_IRQ)
754 hctl |= IWE;
755
Denis Karpov11dd62a2009-09-22 16:44:43 -0700756 OMAP_HSMMC_WRITE(host->base, HCTL,
757 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
758
759 OMAP_HSMMC_WRITE(host->base, CAPA,
760 OMAP_HSMMC_READ(host->base, CAPA) | capa);
761
762 OMAP_HSMMC_WRITE(host->base, HCTL,
763 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
764
765 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
766 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
767 && time_before(jiffies, timeout))
768 ;
769
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200770 OMAP_HSMMC_WRITE(host->base, ISE, 0);
771 OMAP_HSMMC_WRITE(host->base, IE, 0);
772 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700773
774 /* Do not initialize card-specific things if the power is off */
775 if (host->power_mode == MMC_POWER_OFF)
776 goto out;
777
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400778 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700779
Andy Shevchenko5934df22011-05-06 12:14:06 +0300780 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700781
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400782 omap_hsmmc_set_bus_mode(host);
783
Denis Karpov11dd62a2009-09-22 16:44:43 -0700784out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530785 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
786 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700787 return 0;
788}
789
790/*
791 * Save the MMC host context (store the number of power state changes so far).
792 */
Denis Karpov70a33412009-09-22 16:44:59 -0700793static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700794{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530795 host->con = OMAP_HSMMC_READ(host->base, CON);
796 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
797 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
798 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700799}
800
801#else
802
Denis Karpov70a33412009-09-22 16:44:59 -0700803static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700804{
805 return 0;
806}
807
Denis Karpov70a33412009-09-22 16:44:59 -0700808static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700809{
810}
811
812#endif
813
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100814/*
815 * Send init stream sequence to card
816 * before sending IDLE command
817 */
Denis Karpov70a33412009-09-22 16:44:59 -0700818static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100819{
820 int reg = 0;
821 unsigned long timeout;
822
Adrian Hunterb62f6222009-09-22 16:45:01 -0700823 if (host->protect_card)
824 return;
825
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100826 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700827
828 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100829 OMAP_HSMMC_WRITE(host->base, CON,
830 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
831 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
832
833 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530834 while ((reg != CC_EN) && time_before(jiffies, timeout))
835 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100836
837 OMAP_HSMMC_WRITE(host->base, CON,
838 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700839
840 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
841 OMAP_HSMMC_READ(host->base, STAT);
842
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100843 enable_irq(host->irq);
844}
845
846static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700847int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100848{
849 int r = 1;
850
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100851 if (host->get_cover_state)
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100852 r = host->get_cover_state(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100853 return r;
854}
855
856static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700857omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100858 char *buf)
859{
860 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700861 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100862
Denis Karpov70a33412009-09-22 16:44:59 -0700863 return sprintf(buf, "%s\n",
864 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100865}
866
Denis Karpov70a33412009-09-22 16:44:59 -0700867static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100868
869static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700870omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100871 char *buf)
872{
873 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700874 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100875
Andreas Fenkart326119c2014-11-08 15:33:14 +0100876 return sprintf(buf, "%s\n", mmc_pdata(host)->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100877}
878
Denis Karpov70a33412009-09-22 16:44:59 -0700879static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100880
881/*
882 * Configure the response type and send the cmd.
883 */
884static void
Denis Karpov70a33412009-09-22 16:44:59 -0700885omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100886 struct mmc_data *data)
887{
888 int cmdreg = 0, resptype = 0, cmdtype = 0;
889
Venkatraman S8986d312012-08-07 19:10:38 +0530890 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100891 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
892 host->cmd = cmd;
893
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700894 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100895
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200896 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100897 if (cmd->flags & MMC_RSP_PRESENT) {
898 if (cmd->flags & MMC_RSP_136)
899 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200900 else if (cmd->flags & MMC_RSP_BUSY) {
901 resptype = 3;
902 host->response_busy = 1;
903 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100904 resptype = 2;
905 }
906
907 /*
908 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
909 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
910 * a val of 0x3, rest 0x0.
911 */
912 if (cmd == host->mrq->stop)
913 cmdtype = 0x3;
914
915 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
916
Balaji T Ka2e77152014-01-21 19:54:42 +0530917 if ((host->flags & AUTO_CMD23) && mmc_op_multi(cmd->opcode) &&
918 host->mrq->sbc) {
919 cmdreg |= ACEN_ACMD23;
920 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg);
921 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100922 if (data) {
923 cmdreg |= DP_SELECT | MSBS | BCE;
924 if (data->flags & MMC_DATA_READ)
925 cmdreg |= DDIR;
926 else
927 cmdreg &= ~(DDIR);
928 }
929
930 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530931 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100932
Adrian Hunterb4175772010-05-26 14:42:06 -0700933 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700934
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100935 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
936 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
937}
938
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200939static int
Denis Karpov70a33412009-09-22 16:44:59 -0700940omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200941{
942 if (data->flags & MMC_DATA_WRITE)
943 return DMA_TO_DEVICE;
944 else
945 return DMA_FROM_DEVICE;
946}
947
Russell Kingc5c98922012-04-13 12:14:39 +0100948static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
949 struct mmc_data *data)
950{
951 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
952}
953
Adrian Hunterb4175772010-05-26 14:42:06 -0700954static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
955{
956 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530957 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700958
Venkatraman S31463b12012-04-09 12:08:34 +0530959 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700960 host->req_in_progress = 0;
961 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530962 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700963
964 omap_hsmmc_disable_irq(host);
965 /* Do not complete the request if DMA is still in progress */
966 if (mrq->data && host->use_dma && dma_ch != -1)
967 return;
968 host->mrq = NULL;
969 mmc_request_done(host->mmc, mrq);
NeilBrownf57ba4c2015-03-26 12:18:23 +1100970 pm_runtime_mark_last_busy(host->dev);
971 pm_runtime_put_autosuspend(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -0700972}
973
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100974/*
975 * Notify the transfer complete to MMC core
976 */
977static void
Denis Karpov70a33412009-09-22 16:44:59 -0700978omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100979{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200980 if (!data) {
981 struct mmc_request *mrq = host->mrq;
982
Adrian Hunter23050102009-09-22 16:44:57 -0700983 /* TC before CC from CMD6 - don't know why, but it happens */
984 if (host->cmd && host->cmd->opcode == 6 &&
985 host->response_busy) {
986 host->response_busy = 0;
987 return;
988 }
989
Adrian Hunterb4175772010-05-26 14:42:06 -0700990 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200991 return;
992 }
993
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100994 host->data = NULL;
995
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100996 if (!data->error)
997 data->bytes_xfered += data->blocks * (data->blksz);
998 else
999 data->bytes_xfered = 0;
1000
Balaji T Kbf129e12014-01-21 19:54:42 +05301001 if (data->stop && (data->error || !host->mrq->sbc))
1002 omap_hsmmc_start_command(host, data->stop, NULL);
1003 else
Adrian Hunterb4175772010-05-26 14:42:06 -07001004 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001005}
1006
1007/*
1008 * Notify the core about command completion
1009 */
1010static void
Denis Karpov70a33412009-09-22 16:44:59 -07001011omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001012{
Balaji T Kbf129e12014-01-21 19:54:42 +05301013 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) &&
Balaji T Ka2e77152014-01-21 19:54:42 +05301014 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) {
Balaji T K2177fa92014-05-09 22:16:52 +05301015 host->cmd = NULL;
Balaji T Kbf129e12014-01-21 19:54:42 +05301016 omap_hsmmc_start_dma_transfer(host);
1017 omap_hsmmc_start_command(host, host->mrq->cmd,
1018 host->mrq->data);
1019 return;
1020 }
1021
Balaji T K2177fa92014-05-09 22:16:52 +05301022 host->cmd = NULL;
1023
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001024 if (cmd->flags & MMC_RSP_PRESENT) {
1025 if (cmd->flags & MMC_RSP_136) {
1026 /* response type 2 */
1027 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
1028 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
1029 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
1030 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
1031 } else {
1032 /* response types 1, 1b, 3, 4, 5, 6 */
1033 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
1034 }
1035 }
Adrian Hunterb4175772010-05-26 14:42:06 -07001036 if ((host->data == NULL && !host->response_busy) || cmd->error)
Balaji T Kd4b2c372014-01-21 19:54:42 +05301037 omap_hsmmc_request_done(host, host->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001038}
1039
1040/*
1041 * DMA clean up for command errors
1042 */
Denis Karpov70a33412009-09-22 16:44:59 -07001043static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001044{
Adrian Hunterb4175772010-05-26 14:42:06 -07001045 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +05301046 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -07001047
Jarkko Lavinen82788ff2008-12-05 12:31:46 +02001048 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001049
Venkatraman S31463b12012-04-09 12:08:34 +05301050 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001051 dma_ch = host->dma_ch;
1052 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +05301053 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001054
1055 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +01001056 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
1057
1058 dmaengine_terminate_all(chan);
1059 dma_unmap_sg(chan->device->dev,
1060 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001061 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +01001062
Per Forlin053bf342011-11-07 21:55:11 +05301063 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001064 }
1065 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001066}
1067
1068/*
1069 * Readable error output
1070 */
1071#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001072static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001073{
1074 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001075 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001076 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1077 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1078 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1079 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001080 };
1081 char res[256];
1082 char *buf = res;
1083 int len, i;
1084
1085 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1086 buf += len;
1087
Denis Karpov70a33412009-09-22 16:44:59 -07001088 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001089 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001090 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001091 buf += len;
1092 }
1093
Venkatraman S8986d312012-08-07 19:10:38 +05301094 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001095}
Adrian Hunter699b9582011-05-06 12:14:01 +03001096#else
1097static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1098 u32 status)
1099{
1100}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001101#endif /* CONFIG_MMC_DEBUG */
1102
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001103/*
1104 * MMC controller internal state machines reset
1105 *
1106 * Used to reset command or data internal state machines, using respectively
1107 * SRC or SRD bit of SYSCTL register
1108 * Can be called from interrupt context
1109 */
Denis Karpov70a33412009-09-22 16:44:59 -07001110static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1111 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001112{
1113 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +05301114 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001115
1116 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1117 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1118
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001119 /*
1120 * OMAP4 ES2 and greater has an updated reset logic.
1121 * Monitor a 0->1 transition first
1122 */
Andreas Fenkart326119c2014-11-08 15:33:14 +01001123 if (mmc_pdata(host)->features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001124 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001125 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301126 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001127 }
1128 i = 0;
1129
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001130 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1131 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301132 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001133
1134 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1135 dev_err(mmc_dev(host->mmc),
1136 "Timeout waiting on controller reset in %s\n",
1137 __func__);
1138}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001139
Balaji T K25e18972012-11-19 21:59:55 +05301140static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1141 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301142{
Balaji T K25e18972012-11-19 21:59:55 +05301143 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301144 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301145 if (host->cmd)
1146 host->cmd->error = err;
1147 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301148
1149 if (host->data) {
1150 omap_hsmmc_reset_controller_fsm(host, SRD);
1151 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301152 } else if (host->mrq && host->mrq->cmd)
1153 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301154}
1155
Adrian Hunterb4175772010-05-26 14:42:06 -07001156static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001157{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001158 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001159 int end_cmd = 0, end_trans = 0;
Balaji T Ka2e77152014-01-21 19:54:42 +05301160 int error = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001162 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301163 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001164
Venkatraman Sa7e96872012-11-19 22:00:01 +05301165 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001166 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001167
Venkatraman Sa7e96872012-11-19 22:00:01 +05301168 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301169 end_cmd = 1;
Kishon Vijay Abraham I408806f2015-06-16 16:07:17 +05301170 if (host->data || host->response_busy) {
1171 end_trans = !end_cmd;
1172 host->response_busy = 0;
1173 }
Venkatraman Sa7e96872012-11-19 22:00:01 +05301174 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301175 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Vignesh R5027cd12015-06-16 16:07:18 +05301176 else if (status & (CCRC_EN | DCRC_EN | DEB_EN | CEB_EN |
1177 BADA_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301178 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1179
Balaji T Ka2e77152014-01-21 19:54:42 +05301180 if (status & ACE_EN) {
1181 u32 ac12;
1182 ac12 = OMAP_HSMMC_READ(host->base, AC12);
1183 if (!(ac12 & ACNE) && host->mrq->sbc) {
1184 end_cmd = 1;
1185 if (ac12 & ACTO)
1186 error = -ETIMEDOUT;
1187 else if (ac12 & (ACCE | ACEB | ACIE))
1188 error = -EILSEQ;
1189 host->mrq->sbc->error = error;
1190 hsmmc_command_incomplete(host, error, end_cmd);
1191 }
1192 dev_dbg(mmc_dev(host->mmc), "AC12 err: 0x%x\n", ac12);
1193 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001194 }
1195
Francesco Lavra7472bab2013-06-29 08:25:12 +02001196 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301197 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001198 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301199 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001200 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001201}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001202
Adrian Hunterb4175772010-05-26 14:42:06 -07001203/*
1204 * MMC controller IRQ handler
1205 */
1206static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1207{
1208 struct omap_hsmmc_host *host = dev_id;
1209 int status;
1210
1211 status = OMAP_HSMMC_READ(host->base, STAT);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001212 while (status & (INT_EN_MASK | CIRQ_EN)) {
1213 if (host->req_in_progress)
1214 omap_hsmmc_do_irq(host, status);
1215
1216 if (status & CIRQ_EN)
1217 mmc_signal_sdio_irq(host->mmc);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301218
Adrian Hunterb4175772010-05-26 14:42:06 -07001219 /* Flush posted write */
1220 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301221 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001222
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001223 return IRQ_HANDLED;
1224}
1225
Denis Karpov70a33412009-09-22 16:44:59 -07001226static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001227{
1228 unsigned long i;
1229
1230 OMAP_HSMMC_WRITE(host->base, HCTL,
1231 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1232 for (i = 0; i < loops_per_jiffy; i++) {
1233 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1234 break;
1235 cpu_relax();
1236 }
1237}
1238
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001239/*
David Brownelleb250822009-02-17 14:49:01 -08001240 * Switch MMC interface voltage ... only relevant for MMC1.
1241 *
1242 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1243 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1244 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001245 */
Denis Karpov70a33412009-09-22 16:44:59 -07001246static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001247{
1248 u32 reg_val = 0;
1249 int ret;
1250
1251 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301252 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301253 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301254 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001255
1256 /* Turn the power off */
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001257 ret = omap_hsmmc_set_power(host, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001258
1259 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001260 if (!ret)
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001261 ret = omap_hsmmc_set_power(host, 1, vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301262 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301263 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301264 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001265
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001266 if (ret != 0)
1267 goto err;
1268
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001269 OMAP_HSMMC_WRITE(host->base, HCTL,
1270 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1271 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001272
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001273 /*
1274 * If a MMC dual voltage card is detected, the set_ios fn calls
1275 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001276 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001277 *
David Brownelleb250822009-02-17 14:49:01 -08001278 * Cope with a bit of slop in the range ... per data sheets:
1279 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1280 * but recommended values are 1.71V to 1.89V
1281 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1282 * but recommended values are 2.7V to 3.3V
1283 *
1284 * Board setup code shouldn't permit anything very out-of-range.
1285 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1286 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001287 */
David Brownelleb250822009-02-17 14:49:01 -08001288 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001289 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001290 else
1291 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001292
1293 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001294 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001295
1296 return 0;
1297err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301298 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001299 return ret;
1300}
1301
Adrian Hunterb62f6222009-09-22 16:45:01 -07001302/* Protect the card while the cover is open */
1303static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1304{
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001305 if (!host->get_cover_state)
Adrian Hunterb62f6222009-09-22 16:45:01 -07001306 return;
1307
1308 host->reqs_blocked = 0;
Andreas Fenkart80412ca2014-11-08 15:33:17 +01001309 if (host->get_cover_state(host->dev)) {
Adrian Hunterb62f6222009-09-22 16:45:01 -07001310 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301311 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001312 "card is now accessible\n",
1313 mmc_hostname(host->mmc));
1314 host->protect_card = 0;
1315 }
1316 } else {
1317 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301318 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001319 "card is now inaccessible\n",
1320 mmc_hostname(host->mmc));
1321 host->protect_card = 1;
1322 }
1323 }
1324}
1325
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001326/*
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001327 * irq handler when (cell-phone) cover is mounted/removed
1328 */
1329static irqreturn_t omap_hsmmc_cover_irq(int irq, void *dev_id)
1330{
1331 struct omap_hsmmc_host *host = dev_id;
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001332
1333 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
1334
Andreas Fenkart11227d12015-03-03 13:28:17 +01001335 omap_hsmmc_protect_card(host);
1336 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001337 return IRQ_HANDLED;
1338}
1339
Russell Kingc5c98922012-04-13 12:14:39 +01001340static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001341{
Russell Kingc5c98922012-04-13 12:14:39 +01001342 struct omap_hsmmc_host *host = param;
1343 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001344 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001345 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001346
Russell Kingc5c98922012-04-13 12:14:39 +01001347 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001348 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001349 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001350 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001351 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001352
Adrian Hunter770d7432011-05-06 12:14:11 +03001353 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001354 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001355 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001356 dma_unmap_sg(chan->device->dev,
1357 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001358 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001359
1360 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001361 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001362 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001363
1364 /* If DMA has finished after TC, complete the request */
1365 if (!req_in_progress) {
1366 struct mmc_request *mrq = host->mrq;
1367
1368 host->mrq = NULL;
1369 mmc_request_done(host->mmc, mrq);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001370 pm_runtime_mark_last_busy(host->dev);
1371 pm_runtime_put_autosuspend(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -07001372 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001373}
1374
Per Forlin9782aff2011-07-01 18:55:23 +02001375static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1376 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001377 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001378 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001379{
1380 int dma_len;
1381
1382 if (!next && data->host_cookie &&
1383 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301384 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001385 " host->next_data.cookie %d\n",
1386 __func__, data->host_cookie, host->next_data.cookie);
1387 data->host_cookie = 0;
1388 }
1389
1390 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001391 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001392 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001393 omap_hsmmc_get_dma_dir(host, data));
1394
1395 } else {
1396 dma_len = host->next_data.dma_len;
1397 host->next_data.dma_len = 0;
1398 }
1399
1400
1401 if (dma_len == 0)
1402 return -EINVAL;
1403
1404 if (next) {
1405 next->dma_len = dma_len;
1406 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1407 } else
1408 host->dma_len = dma_len;
1409
1410 return 0;
1411}
1412
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001413/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001414 * Routine to configure and start DMA for the MMC card
1415 */
Balaji T K9d025332014-01-21 19:54:42 +05301416static int omap_hsmmc_setup_dma_transfer(struct omap_hsmmc_host *host,
Denis Karpov70a33412009-09-22 16:44:59 -07001417 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001418{
Russell King26b88522012-04-13 12:27:37 +01001419 struct dma_slave_config cfg;
1420 struct dma_async_tx_descriptor *tx;
1421 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001422 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001423 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001424
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001425 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001426 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001427 struct scatterlist *sgl;
1428
1429 sgl = data->sg + i;
1430 if (sgl->length % data->blksz)
1431 return -EINVAL;
1432 }
1433 if ((data->blksz % 4) != 0)
1434 /* REVISIT: The MMC buffer increments only when MSB is written.
1435 * Return error for blksz which is non multiple of four.
1436 */
1437 return -EINVAL;
1438
Adrian Hunterb4175772010-05-26 14:42:06 -07001439 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001440
Russell Kingc5c98922012-04-13 12:14:39 +01001441 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001442
Russell King26b88522012-04-13 12:27:37 +01001443 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1444 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1445 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1446 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1447 cfg.src_maxburst = data->blksz / 4;
1448 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001449
Russell King26b88522012-04-13 12:27:37 +01001450 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001451 if (ret)
1452 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001453
Russell King26b88522012-04-13 12:27:37 +01001454 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1455 if (ret)
1456 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001457
Russell King26b88522012-04-13 12:27:37 +01001458 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1459 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1460 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1461 if (!tx) {
1462 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1463 /* FIXME: cleanup */
1464 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001465 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001466
Russell King26b88522012-04-13 12:27:37 +01001467 tx->callback = omap_hsmmc_dma_callback;
1468 tx->callback_param = host;
1469
1470 /* Does not fail */
1471 dmaengine_submit(tx);
1472
1473 host->dma_ch = 1;
1474
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001475 return 0;
1476}
1477
Denis Karpov70a33412009-09-22 16:44:59 -07001478static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001479 unsigned int timeout_ns,
1480 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001481{
1482 unsigned int timeout, cycle_ns;
1483 uint32_t reg, clkd, dto = 0;
1484
1485 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1486 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1487 if (clkd == 0)
1488 clkd = 1;
1489
Balaji T K6e3076c2014-01-21 19:54:42 +05301490 cycle_ns = 1000000000 / (host->clk_rate / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001491 timeout = timeout_ns / cycle_ns;
1492 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001493 if (timeout) {
1494 while ((timeout & 0x80000000) == 0) {
1495 dto += 1;
1496 timeout <<= 1;
1497 }
1498 dto = 31 - dto;
1499 timeout <<= 1;
1500 if (timeout && dto)
1501 dto += 1;
1502 if (dto >= 13)
1503 dto -= 13;
1504 else
1505 dto = 0;
1506 if (dto > 14)
1507 dto = 14;
1508 }
1509
1510 reg &= ~DTO_MASK;
1511 reg |= dto << DTO_SHIFT;
1512 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1513}
1514
Balaji T K9d025332014-01-21 19:54:42 +05301515static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host)
1516{
1517 struct mmc_request *req = host->mrq;
1518 struct dma_chan *chan;
1519
1520 if (!req->data)
1521 return;
1522 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1523 | (req->data->blocks << 16));
1524 set_data_timeout(host, req->data->timeout_ns,
1525 req->data->timeout_clks);
1526 chan = omap_hsmmc_get_dma_chan(host, req->data);
1527 dma_async_issue_pending(chan);
1528}
1529
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001530/*
1531 * Configure block length for MMC/SD cards and initiate the transfer.
1532 */
1533static int
Denis Karpov70a33412009-09-22 16:44:59 -07001534omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001535{
1536 int ret;
1537 host->data = req->data;
1538
1539 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001540 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001541 /*
1542 * Set an arbitrary 100ms data timeout for commands with
1543 * busy signal.
1544 */
1545 if (req->cmd->flags & MMC_RSP_BUSY)
1546 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001547 return 0;
1548 }
1549
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001550 if (host->use_dma) {
Balaji T K9d025332014-01-21 19:54:42 +05301551 ret = omap_hsmmc_setup_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001552 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301553 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001554 return ret;
1555 }
1556 }
1557 return 0;
1558}
1559
Per Forlin9782aff2011-07-01 18:55:23 +02001560static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1561 int err)
1562{
1563 struct omap_hsmmc_host *host = mmc_priv(mmc);
1564 struct mmc_data *data = mrq->data;
1565
Russell King26b88522012-04-13 12:27:37 +01001566 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001567 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001568
Russell King26b88522012-04-13 12:27:37 +01001569 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1570 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001571 data->host_cookie = 0;
1572 }
1573}
1574
1575static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1576 bool is_first_req)
1577{
1578 struct omap_hsmmc_host *host = mmc_priv(mmc);
1579
1580 if (mrq->data->host_cookie) {
1581 mrq->data->host_cookie = 0;
1582 return ;
1583 }
1584
Russell Kingc5c98922012-04-13 12:14:39 +01001585 if (host->use_dma) {
1586 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001587
Per Forlin9782aff2011-07-01 18:55:23 +02001588 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001589 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001590 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001591 }
Per Forlin9782aff2011-07-01 18:55:23 +02001592}
1593
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001594/*
1595 * Request function. for read/write operation
1596 */
Denis Karpov70a33412009-09-22 16:44:59 -07001597static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001598{
Denis Karpov70a33412009-09-22 16:44:59 -07001599 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001600 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001601
Adrian Hunterb4175772010-05-26 14:42:06 -07001602 BUG_ON(host->req_in_progress);
1603 BUG_ON(host->dma_ch != -1);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001604 pm_runtime_get_sync(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -07001605 if (host->protect_card) {
1606 if (host->reqs_blocked < 3) {
1607 /*
1608 * Ensure the controller is left in a consistent
1609 * state by resetting the command and data state
1610 * machines.
1611 */
1612 omap_hsmmc_reset_controller_fsm(host, SRD);
1613 omap_hsmmc_reset_controller_fsm(host, SRC);
1614 host->reqs_blocked += 1;
1615 }
1616 req->cmd->error = -EBADF;
1617 if (req->data)
1618 req->data->error = -EBADF;
1619 req->cmd->retries = 0;
1620 mmc_request_done(mmc, req);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001621 pm_runtime_mark_last_busy(host->dev);
1622 pm_runtime_put_autosuspend(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -07001623 return;
1624 } else if (host->reqs_blocked)
1625 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001626 WARN_ON(host->mrq != NULL);
1627 host->mrq = req;
Balaji T K6e3076c2014-01-21 19:54:42 +05301628 host->clk_rate = clk_get_rate(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001629 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001630 if (err) {
1631 req->cmd->error = err;
1632 if (req->data)
1633 req->data->error = err;
1634 host->mrq = NULL;
1635 mmc_request_done(mmc, req);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001636 pm_runtime_mark_last_busy(host->dev);
1637 pm_runtime_put_autosuspend(host->dev);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001638 return;
1639 }
Balaji T Ka2e77152014-01-21 19:54:42 +05301640 if (req->sbc && !(host->flags & AUTO_CMD23)) {
Balaji T Kbf129e12014-01-21 19:54:42 +05301641 omap_hsmmc_start_command(host, req->sbc, NULL);
1642 return;
1643 }
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001644
Balaji T K9d025332014-01-21 19:54:42 +05301645 omap_hsmmc_start_dma_transfer(host);
Denis Karpov70a33412009-09-22 16:44:59 -07001646 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001647}
1648
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001649/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001650static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001651{
Denis Karpov70a33412009-09-22 16:44:59 -07001652 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001653 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001654
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301655 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001656
Adrian Huntera3621462009-09-22 16:44:42 -07001657 if (ios->power_mode != host->power_mode) {
1658 switch (ios->power_mode) {
1659 case MMC_POWER_OFF:
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001660 omap_hsmmc_set_power(host, 0, 0);
Adrian Huntera3621462009-09-22 16:44:42 -07001661 break;
1662 case MMC_POWER_UP:
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001663 omap_hsmmc_set_power(host, 1, ios->vdd);
Adrian Huntera3621462009-09-22 16:44:42 -07001664 break;
1665 case MMC_POWER_ON:
1666 do_send_init_stream = 1;
1667 break;
1668 }
1669 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001670 }
1671
Denis Karpovdd498ef2009-09-22 16:44:49 -07001672 /* FIXME: set registers based only on changes to ios */
1673
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001674 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001675
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301676 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001677 /* Only MMC1 can interface at 3V without some flavor
1678 * of external transceiver; but they all handle 1.8V.
1679 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001680 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Balaji T K2cf171c2014-02-19 20:26:40 +05301681 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001682 /*
1683 * The mmc_select_voltage fn of the core does
1684 * not seem to set the power_mode to
1685 * MMC_POWER_UP upon recalculating the voltage.
1686 * vdd 1.8v.
1687 */
Denis Karpov70a33412009-09-22 16:44:59 -07001688 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1689 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001690 "Switch operation failed\n");
1691 }
1692 }
1693
Andy Shevchenko5934df22011-05-06 12:14:06 +03001694 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001695
Adrian Huntera3621462009-09-22 16:44:42 -07001696 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001697 send_init_stream(host);
1698
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001699 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001700
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301701 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001702}
1703
1704static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1705{
Denis Karpov70a33412009-09-22 16:44:59 -07001706 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001707
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001708 if (!host->card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001709 return -ENOSYS;
Andreas Fenkart80412ca2014-11-08 15:33:17 +01001710 return host->card_detect(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001711}
1712
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001713static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1714{
1715 struct omap_hsmmc_host *host = mmc_priv(mmc);
1716
Andreas Fenkart326119c2014-11-08 15:33:14 +01001717 if (mmc_pdata(host)->init_card)
1718 mmc_pdata(host)->init_card(card);
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001719}
1720
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001721static void omap_hsmmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
1722{
1723 struct omap_hsmmc_host *host = mmc_priv(mmc);
Balaji T K5a52b082014-05-29 10:28:02 +02001724 u32 irq_mask, con;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001725 unsigned long flags;
1726
1727 spin_lock_irqsave(&host->irq_lock, flags);
1728
Balaji T K5a52b082014-05-29 10:28:02 +02001729 con = OMAP_HSMMC_READ(host->base, CON);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001730 irq_mask = OMAP_HSMMC_READ(host->base, ISE);
1731 if (enable) {
1732 host->flags |= HSMMC_SDIO_IRQ_ENABLED;
1733 irq_mask |= CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001734 con |= CTPL | CLKEXTFREE;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001735 } else {
1736 host->flags &= ~HSMMC_SDIO_IRQ_ENABLED;
1737 irq_mask &= ~CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001738 con &= ~(CTPL | CLKEXTFREE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001739 }
Balaji T K5a52b082014-05-29 10:28:02 +02001740 OMAP_HSMMC_WRITE(host->base, CON, con);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001741 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
1742
1743 /*
1744 * if enable, piggy back detection on current request
1745 * but always disable immediately
1746 */
1747 if (!host->req_in_progress || !enable)
1748 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
1749
1750 /* flush posted write */
1751 OMAP_HSMMC_READ(host->base, IE);
1752
1753 spin_unlock_irqrestore(&host->irq_lock, flags);
1754}
1755
1756static int omap_hsmmc_configure_wake_irq(struct omap_hsmmc_host *host)
1757{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001758 int ret;
1759
1760 /*
1761 * For omaps with wake-up path, wakeirq will be irq from pinctrl and
1762 * for other omaps, wakeirq will be from GPIO (dat line remuxed to
1763 * gpio). wakeirq is needed to detect sdio irq in runtime suspend state
1764 * with functional clock disabled.
1765 */
1766 if (!host->dev->of_node || !host->wake_irq)
1767 return -ENODEV;
1768
Tony Lindgren5b83b222015-05-21 15:51:52 -07001769 ret = dev_pm_set_dedicated_wake_irq(host->dev, host->wake_irq);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001770 if (ret) {
1771 dev_err(mmc_dev(host->mmc), "Unable to request wake IRQ\n");
1772 goto err;
1773 }
1774
1775 /*
1776 * Some omaps don't have wake-up path from deeper idle states
1777 * and need to remux SDIO DAT1 to GPIO for wake-up from idle.
1778 */
1779 if (host->pdata->controller_flags & OMAP_HSMMC_SWAKEUP_MISSING) {
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001780 struct pinctrl *p = devm_pinctrl_get(host->dev);
1781 if (!p) {
1782 ret = -ENODEV;
1783 goto err_free_irq;
1784 }
1785 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_DEFAULT))) {
1786 dev_info(host->dev, "missing default pinctrl state\n");
1787 devm_pinctrl_put(p);
1788 ret = -EINVAL;
1789 goto err_free_irq;
1790 }
1791
1792 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_IDLE))) {
1793 dev_info(host->dev, "missing idle pinctrl state\n");
1794 devm_pinctrl_put(p);
1795 ret = -EINVAL;
1796 goto err_free_irq;
1797 }
1798 devm_pinctrl_put(p);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001799 }
1800
Balaji T K5a52b082014-05-29 10:28:02 +02001801 OMAP_HSMMC_WRITE(host->base, HCTL,
1802 OMAP_HSMMC_READ(host->base, HCTL) | IWE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001803 return 0;
1804
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001805err_free_irq:
Tony Lindgren5b83b222015-05-21 15:51:52 -07001806 dev_pm_clear_wake_irq(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001807err:
1808 dev_warn(host->dev, "no SDIO IRQ support, falling back to polling\n");
1809 host->wake_irq = 0;
1810 return ret;
1811}
1812
Denis Karpov70a33412009-09-22 16:44:59 -07001813static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001814{
1815 u32 hctl, capa, value;
1816
1817 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301818 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001819 hctl = SDVS30;
1820 capa = VS30 | VS18;
1821 } else {
1822 hctl = SDVS18;
1823 capa = VS18;
1824 }
1825
1826 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1827 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1828
1829 value = OMAP_HSMMC_READ(host->base, CAPA);
1830 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1831
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001832 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001833 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001834}
1835
Kuninori Morimotoafd8c292014-09-08 23:44:51 -07001836static int omap_hsmmc_multi_io_quirk(struct mmc_card *card,
1837 unsigned int direction, int blk_size)
1838{
1839 /* This controller can't do multiblock reads due to hw bugs */
1840 if (direction == MMC_DATA_READ)
1841 return 1;
1842
1843 return blk_size;
1844}
1845
1846static struct mmc_host_ops omap_hsmmc_ops = {
Per Forlin9782aff2011-07-01 18:55:23 +02001847 .post_req = omap_hsmmc_post_req,
1848 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001849 .request = omap_hsmmc_request,
1850 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001851 .get_cd = omap_hsmmc_get_cd,
Andreas Fenkarta49d8352015-03-03 13:28:14 +01001852 .get_ro = mmc_gpio_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001853 .init_card = omap_hsmmc_init_card,
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001854 .enable_sdio_irq = omap_hsmmc_enable_sdio_irq,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001855};
1856
Denis Karpovd900f712009-09-22 16:44:38 -07001857#ifdef CONFIG_DEBUG_FS
1858
Denis Karpov70a33412009-09-22 16:44:59 -07001859static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001860{
1861 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001862 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001863
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001864 seq_printf(s, "mmc%d:\n", mmc->index);
1865 seq_printf(s, "sdio irq mode\t%s\n",
1866 (mmc->caps & MMC_CAP_SDIO_IRQ) ? "interrupt" : "polling");
1867
1868 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1869 seq_printf(s, "sdio irq \t%s\n",
1870 (host->flags & HSMMC_SDIO_IRQ_ENABLED) ? "enabled"
1871 : "disabled");
1872 }
1873 seq_printf(s, "ctx_loss:\t%d\n", host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001874
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301875 pm_runtime_get_sync(host->dev);
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001876 seq_puts(s, "\nregs:\n");
Denis Karpovd900f712009-09-22 16:44:38 -07001877 seq_printf(s, "CON:\t\t0x%08x\n",
1878 OMAP_HSMMC_READ(host->base, CON));
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001879 seq_printf(s, "PSTATE:\t\t0x%08x\n",
1880 OMAP_HSMMC_READ(host->base, PSTATE));
Denis Karpovd900f712009-09-22 16:44:38 -07001881 seq_printf(s, "HCTL:\t\t0x%08x\n",
1882 OMAP_HSMMC_READ(host->base, HCTL));
1883 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1884 OMAP_HSMMC_READ(host->base, SYSCTL));
1885 seq_printf(s, "IE:\t\t0x%08x\n",
1886 OMAP_HSMMC_READ(host->base, IE));
1887 seq_printf(s, "ISE:\t\t0x%08x\n",
1888 OMAP_HSMMC_READ(host->base, ISE));
1889 seq_printf(s, "CAPA:\t\t0x%08x\n",
1890 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001891
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301892 pm_runtime_mark_last_busy(host->dev);
1893 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001894
Denis Karpovd900f712009-09-22 16:44:38 -07001895 return 0;
1896}
1897
Denis Karpov70a33412009-09-22 16:44:59 -07001898static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001899{
Denis Karpov70a33412009-09-22 16:44:59 -07001900 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001901}
1902
1903static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001904 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001905 .read = seq_read,
1906 .llseek = seq_lseek,
1907 .release = single_release,
1908};
1909
Denis Karpov70a33412009-09-22 16:44:59 -07001910static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001911{
1912 if (mmc->debugfs_root)
1913 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1914 mmc, &mmc_regs_fops);
1915}
1916
1917#else
1918
Denis Karpov70a33412009-09-22 16:44:59 -07001919static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001920{
1921}
1922
1923#endif
1924
Rajendra Nayak46856a62012-03-12 20:32:37 +05301925#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001926static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1927 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1928 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1929};
1930
1931static const struct omap_mmc_of_data omap4_mmc_of_data = {
1932 .reg_offset = 0x100,
1933};
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001934static const struct omap_mmc_of_data am33xx_mmc_of_data = {
1935 .reg_offset = 0x100,
1936 .controller_flags = OMAP_HSMMC_SWAKEUP_MISSING,
1937};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301938
1939static const struct of_device_id omap_mmc_of_match[] = {
1940 {
1941 .compatible = "ti,omap2-hsmmc",
1942 },
1943 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001944 .compatible = "ti,omap3-pre-es3-hsmmc",
1945 .data = &omap3_pre_es3_mmc_of_data,
1946 },
1947 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301948 .compatible = "ti,omap3-hsmmc",
1949 },
1950 {
1951 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001952 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301953 },
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001954 {
1955 .compatible = "ti,am33xx-hsmmc",
1956 .data = &am33xx_mmc_of_data,
1957 },
Rajendra Nayak46856a62012-03-12 20:32:37 +05301958 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001959};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301960MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1961
Andreas Fenkart551434382014-11-08 15:33:09 +01001962static struct omap_hsmmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
Rajendra Nayak46856a62012-03-12 20:32:37 +05301963{
Andreas Fenkart551434382014-11-08 15:33:09 +01001964 struct omap_hsmmc_platform_data *pdata;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301965 struct device_node *np = dev->of_node;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301966
1967 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1968 if (!pdata)
Balaji T K19df45b2014-02-28 19:08:18 +05301969 return ERR_PTR(-ENOMEM); /* out of memory */
Rajendra Nayak46856a62012-03-12 20:32:37 +05301970
1971 if (of_find_property(np, "ti,dual-volt", NULL))
1972 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1973
Andreas Fenkartb7a56462015-03-20 15:53:54 +01001974 pdata->gpio_cd = -EINVAL;
1975 pdata->gpio_cod = -EINVAL;
NeilBrownfdb9de12015-01-13 08:23:18 +13001976 pdata->gpio_wp = -EINVAL;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301977
1978 if (of_find_property(np, "ti,non-removable", NULL)) {
Andreas Fenkart326119c2014-11-08 15:33:14 +01001979 pdata->nonremovable = true;
1980 pdata->no_regulator_off_init = true;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301981 }
Rajendra Nayak46856a62012-03-12 20:32:37 +05301982
1983 if (of_find_property(np, "ti,needs-special-reset", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01001984 pdata->features |= HSMMC_HAS_UPDATED_RESET;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301985
Hebbar, Gururajacd587092012-11-19 21:59:58 +05301986 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01001987 pdata->features |= HSMMC_HAS_HSPE_SUPPORT;
Hebbar, Gururajacd587092012-11-19 21:59:58 +05301988
Rajendra Nayak46856a62012-03-12 20:32:37 +05301989 return pdata;
1990}
1991#else
Andreas Fenkart551434382014-11-08 15:33:09 +01001992static inline struct omap_hsmmc_platform_data
Rajendra Nayak46856a62012-03-12 20:32:37 +05301993 *of_get_hsmmc_pdata(struct device *dev)
1994{
Balaji T K19df45b2014-02-28 19:08:18 +05301995 return ERR_PTR(-EINVAL);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301996}
1997#endif
1998
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05001999static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002000{
Andreas Fenkart551434382014-11-08 15:33:09 +01002001 struct omap_hsmmc_platform_data *pdata = pdev->dev.platform_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002002 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002003 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002004 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002005 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302006 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01002007 dma_cap_mask_t mask;
2008 unsigned tx_req, rx_req;
Nishanth Menon59445b12014-02-13 23:45:48 -06002009 const struct omap_mmc_of_data *data;
Balaji T K77fae212014-05-09 22:16:51 +05302010 void __iomem *base;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302011
2012 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
2013 if (match) {
2014 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01002015
2016 if (IS_ERR(pdata))
2017 return PTR_ERR(pdata);
2018
Rajendra Nayak46856a62012-03-12 20:32:37 +05302019 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06002020 data = match->data;
2021 pdata->reg_offset = data->reg_offset;
2022 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302023 }
2024 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002025
2026 if (pdata == NULL) {
2027 dev_err(&pdev->dev, "Platform Data is missing\n");
2028 return -ENXIO;
2029 }
2030
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002031 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2032 irq = platform_get_irq(pdev, 0);
2033 if (res == NULL || irq < 0)
2034 return -ENXIO;
2035
Balaji T K77fae212014-05-09 22:16:51 +05302036 base = devm_ioremap_resource(&pdev->dev, res);
2037 if (IS_ERR(base))
2038 return PTR_ERR(base);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002039
Denis Karpov70a33412009-09-22 16:44:59 -07002040 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002041 if (!mmc) {
2042 ret = -ENOMEM;
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002043 goto err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002044 }
2045
NeilBrownfdb9de12015-01-13 08:23:18 +13002046 ret = mmc_of_parse(mmc);
2047 if (ret)
2048 goto err1;
2049
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002050 host = mmc_priv(mmc);
2051 host->mmc = mmc;
2052 host->pdata = pdata;
2053 host->dev = &pdev->dev;
2054 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002055 host->dma_ch = -1;
2056 host->irq = irq;
Balaji T Kfc307df2012-04-02 12:26:47 +05302057 host->mapbase = res->start + pdata->reg_offset;
Balaji T K77fae212014-05-09 22:16:51 +05302058 host->base = base + pdata->reg_offset;
Adrian Hunter6da20c82010-02-15 10:03:34 -08002059 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02002060 host->next_data.cookie = 1;
Tony Lindgrenbb2726b2015-10-07 06:22:24 -07002061 host->pbias_enabled = 0;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +05302062 host->vqmmc_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002063
NeilBrown41afa3142015-01-13 08:23:18 +13002064 ret = omap_hsmmc_gpio_init(mmc, host, pdata);
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002065 if (ret)
2066 goto err_gpio;
2067
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002068 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002069
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002070 if (pdev->dev.of_node)
2071 host->wake_irq = irq_of_parse_and_map(pdev->dev.of_node, 1);
2072
Balaji T K7a8c2ce2011-07-01 22:09:34 +05302073 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002074
Daniel Mackd418ed82012-02-19 13:20:33 +01002075 mmc->f_min = OMAP_MMC_MIN_CLOCK;
2076
2077 if (pdata->max_freq > 0)
2078 mmc->f_max = pdata->max_freq;
NeilBrownfdb9de12015-01-13 08:23:18 +13002079 else if (mmc->f_max == 0)
Daniel Mackd418ed82012-02-19 13:20:33 +01002080 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002081
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002082 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002083
Balaji T K96181952014-05-09 22:16:48 +05302084 host->fclk = devm_clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002085 if (IS_ERR(host->fclk)) {
2086 ret = PTR_ERR(host->fclk);
2087 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002088 goto err1;
2089 }
2090
Paul Walmsley9b682562011-10-06 14:50:35 -06002091 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
2092 dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n");
Kuninori Morimotoafd8c292014-09-08 23:44:51 -07002093 omap_hsmmc_ops.multi_io_quirk = omap_hsmmc_multi_io_quirk;
Paul Walmsley9b682562011-10-06 14:50:35 -06002094 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07002095
Tony Lindgren5b83b222015-05-21 15:51:52 -07002096 device_init_wakeup(&pdev->dev, true);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302097 pm_runtime_enable(host->dev);
2098 pm_runtime_get_sync(host->dev);
2099 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
2100 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002101
Balaji T K92a3aeb2012-02-24 21:14:34 +05302102 omap_hsmmc_context_save(host);
2103
Balaji T K96181952014-05-09 22:16:48 +05302104 host->dbclk = devm_clk_get(&pdev->dev, "mmchsdb_fck");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302105 /*
2106 * MMC can still work without debounce clock.
2107 */
2108 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302109 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05302110 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302111 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302112 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07002113 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002114
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002115 /* Since we do only SG emulation, we can have as many segs
2116 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002117 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002118
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002119 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2120 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2121 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2122 mmc->max_seg_size = mmc->max_req_size;
2123
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002124 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07002125 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002126
Andreas Fenkart326119c2014-11-08 15:33:14 +01002127 mmc->caps |= mmc_pdata(host)->caps;
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002128 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002129 mmc->caps |= MMC_CAP_4_BIT_DATA;
2130
Andreas Fenkart326119c2014-11-08 15:33:14 +01002131 if (mmc_pdata(host)->nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002132 mmc->caps |= MMC_CAP_NONREMOVABLE;
2133
NeilBrownfdb9de12015-01-13 08:23:18 +13002134 mmc->pm_caps |= mmc_pdata(host)->pm_caps;
Eliad Peller6fdc75d2011-11-22 16:02:18 +02002135
Denis Karpov70a33412009-09-22 16:44:59 -07002136 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002137
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302138 if (!pdev->dev.of_node) {
2139 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
2140 if (!res) {
2141 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
2142 ret = -ENXIO;
2143 goto err_irq;
2144 }
2145 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002146
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302147 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
2148 if (!res) {
2149 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
2150 ret = -ENXIO;
2151 goto err_irq;
2152 }
2153 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002154 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002155
Russell King26b88522012-04-13 12:27:37 +01002156 dma_cap_zero(mask);
2157 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01002158
Matt Porterd272fbf2013-05-10 17:42:34 +05302159 host->rx_chan =
2160 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2161 &rx_req, &pdev->dev, "rx");
2162
Russell King26b88522012-04-13 12:27:37 +01002163 if (!host->rx_chan) {
Arnd Bergmann358399f2016-01-26 16:26:31 +01002164 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel\n");
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002165 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002166 goto err_irq;
2167 }
2168
Matt Porterd272fbf2013-05-10 17:42:34 +05302169 host->tx_chan =
2170 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2171 &tx_req, &pdev->dev, "tx");
2172
Russell King26b88522012-04-13 12:27:37 +01002173 if (!host->tx_chan) {
Arnd Bergmann358399f2016-01-26 16:26:31 +01002174 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel\n");
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002175 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002176 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01002177 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002178
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002179 /* Request IRQ for MMC operations */
Balaji T Ke1538ed2014-05-09 22:16:49 +05302180 ret = devm_request_irq(&pdev->dev, host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002181 mmc_hostname(mmc), host);
2182 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302183 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002184 goto err_irq;
2185 }
2186
Kishon Vijay Abraham I987e05c2015-08-27 14:44:07 +05302187 ret = omap_hsmmc_reg_get(host);
2188 if (ret)
2189 goto err_irq;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002190
Andreas Fenkart326119c2014-11-08 15:33:14 +01002191 mmc->ocr_avail = mmc_pdata(host)->ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002192
Adrian Hunterb4175772010-05-26 14:42:06 -07002193 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002194
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002195 /*
2196 * For now, only support SDIO interrupt if we have a separate
2197 * wake-up interrupt configured from device tree. This is because
2198 * the wake-up interrupt is needed for idle state and some
2199 * platforms need special quirks. And we don't want to add new
2200 * legacy mux platform init code callbacks any longer as we
2201 * are moving to DT based booting anyways.
2202 */
2203 ret = omap_hsmmc_configure_wake_irq(host);
2204 if (!ret)
2205 mmc->caps |= MMC_CAP_SDIO_IRQ;
2206
Adrian Hunterb62f6222009-09-22 16:45:01 -07002207 omap_hsmmc_protect_card(host);
2208
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002209 mmc_add_host(mmc);
2210
Andreas Fenkart326119c2014-11-08 15:33:14 +01002211 if (mmc_pdata(host)->name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002212 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2213 if (ret < 0)
2214 goto err_slot_name;
2215 }
Andreas Fenkartcde592c2015-03-03 13:28:15 +01002216 if (host->get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002217 ret = device_create_file(&mmc->class_dev,
Andreas Fenkartcde592c2015-03-03 13:28:15 +01002218 &dev_attr_cover_switch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002219 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002220 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002221 }
2222
Denis Karpov70a33412009-09-22 16:44:59 -07002223 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302224 pm_runtime_mark_last_busy(host->dev);
2225 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002226
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002227 return 0;
2228
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002229err_slot_name:
2230 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002231err_irq:
Tony Lindgren5b83b222015-05-21 15:51:52 -07002232 device_init_wakeup(&pdev->dev, false);
Russell Kingc5c98922012-04-13 12:14:39 +01002233 if (host->tx_chan)
2234 dma_release_channel(host->tx_chan);
2235 if (host->rx_chan)
2236 dma_release_channel(host->rx_chan);
Tony Lindgren814a3c02016-02-10 15:02:44 -08002237 pm_runtime_dont_use_autosuspend(host->dev);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302238 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002239 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302240 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302241 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002242err1:
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002243err_gpio:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002244 mmc_free_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002245err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002246 return ret;
2247}
2248
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002249static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002250{
Denis Karpov70a33412009-09-22 16:44:59 -07002251 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002252
Felipe Balbi927ce942012-03-14 11:18:27 +02002253 pm_runtime_get_sync(host->dev);
2254 mmc_remove_host(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002255
Peter Ujfalusidc285622015-11-03 13:37:31 +02002256 dma_release_channel(host->tx_chan);
2257 dma_release_channel(host->rx_chan);
Russell Kingc5c98922012-04-13 12:14:39 +01002258
Tony Lindgren814a3c02016-02-10 15:02:44 -08002259 pm_runtime_dont_use_autosuspend(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002260 pm_runtime_put_sync(host->dev);
2261 pm_runtime_disable(host->dev);
Tony Lindgren5b83b222015-05-21 15:51:52 -07002262 device_init_wakeup(&pdev->dev, false);
Balaji T K96181952014-05-09 22:16:48 +05302263 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302264 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002265
Balaji T K9d1f0282012-10-15 21:35:07 +05302266 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002267
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002268 return 0;
2269}
2270
Russ Dill3d3bbfb2015-02-27 13:24:34 +02002271#ifdef CONFIG_PM_SLEEP
Kevin Hilmana791daa2010-05-26 14:42:07 -07002272static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002273{
Felipe Balbi927ce942012-03-14 11:18:27 +02002274 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2275
2276 if (!host)
2277 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002278
Felipe Balbi927ce942012-03-14 11:18:27 +02002279 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002280
2281 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002282 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2283 OMAP_HSMMC_WRITE(host->base, IE, 0);
2284 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Felipe Balbi927ce942012-03-14 11:18:27 +02002285 OMAP_HSMMC_WRITE(host->base, HCTL,
2286 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2287 }
2288
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302289 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302290 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002291
Eliad Peller31f9d462011-11-22 16:02:17 +02002292 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002293 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002294}
2295
2296/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002297static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002298{
Felipe Balbi927ce942012-03-14 11:18:27 +02002299 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2300
2301 if (!host)
2302 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002303
Felipe Balbi927ce942012-03-14 11:18:27 +02002304 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002305
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302306 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302307 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002308
Felipe Balbi927ce942012-03-14 11:18:27 +02002309 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2310 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002311
Felipe Balbi927ce942012-03-14 11:18:27 +02002312 omap_hsmmc_protect_card(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002313 pm_runtime_mark_last_busy(host->dev);
2314 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002315 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002316}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002317#endif
2318
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302319static int omap_hsmmc_runtime_suspend(struct device *dev)
2320{
2321 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002322 unsigned long flags;
Andreas Fenkartf9459012014-05-29 10:28:03 +02002323 int ret = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302324
2325 host = platform_get_drvdata(to_platform_device(dev));
2326 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002327 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302328
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002329 spin_lock_irqsave(&host->irq_lock, flags);
2330 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2331 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2332 /* disable sdio irq handling to prevent race */
2333 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2334 OMAP_HSMMC_WRITE(host->base, IE, 0);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002335
2336 if (!(OMAP_HSMMC_READ(host->base, PSTATE) & DLEV_DAT(1))) {
2337 /*
2338 * dat1 line low, pending sdio irq
2339 * race condition: possible irq handler running on
2340 * multi-core, abort
2341 */
2342 dev_dbg(dev, "pending sdio irq, abort suspend\n");
2343 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2344 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2345 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
2346 pm_runtime_mark_last_busy(dev);
2347 ret = -EBUSY;
2348 goto abort;
2349 }
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002350
Andreas Fenkart97978a42014-05-29 10:28:04 +02002351 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002352 } else {
2353 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002354 }
Andreas Fenkart97978a42014-05-29 10:28:04 +02002355
Andreas Fenkartf9459012014-05-29 10:28:03 +02002356abort:
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002357 spin_unlock_irqrestore(&host->irq_lock, flags);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002358 return ret;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302359}
2360
2361static int omap_hsmmc_runtime_resume(struct device *dev)
2362{
2363 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002364 unsigned long flags;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302365
2366 host = platform_get_drvdata(to_platform_device(dev));
2367 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002368 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302369
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002370 spin_lock_irqsave(&host->irq_lock, flags);
2371 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2372 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002373
Andreas Fenkart97978a42014-05-29 10:28:04 +02002374 pinctrl_pm_select_default_state(host->dev);
2375
2376 /* irq lost, if pinmux incorrect */
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002377 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2378 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2379 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002380 } else {
2381 pinctrl_pm_select_default_state(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002382 }
2383 spin_unlock_irqrestore(&host->irq_lock, flags);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302384 return 0;
2385}
2386
Kevin Hilmana791daa2010-05-26 14:42:07 -07002387static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Russ Dill3d3bbfb2015-02-27 13:24:34 +02002388 SET_SYSTEM_SLEEP_PM_OPS(omap_hsmmc_suspend, omap_hsmmc_resume)
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302389 .runtime_suspend = omap_hsmmc_runtime_suspend,
2390 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002391};
2392
2393static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002394 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002395 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002396 .driver = {
2397 .name = DRIVER_NAME,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002398 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302399 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002400 },
2401};
2402
Felipe Balbib7964502012-03-14 11:18:32 +02002403module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002404MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2405MODULE_LICENSE("GPL");
2406MODULE_ALIAS("platform:" DRIVER_NAME);
2407MODULE_AUTHOR("Texas Instruments Inc");