blob: 4cd7a5805de8dceca6e3569ac3a900cb02fa8e10 [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;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100185 void __iomem *base;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530186 int vqmmc_enabled;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100187 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700188 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100189 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200190 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100191 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700192 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100193 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530194 u32 con;
195 u32 hctl;
196 u32 sysctl;
197 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100198 int irq;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200199 int wake_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100200 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100201 struct dma_chan *tx_chan;
202 struct dma_chan *rx_chan;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200203 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700204 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700205 int protect_card;
206 int reqs_blocked;
Adrian Hunterb4175772010-05-26 14:42:06 -0700207 int req_in_progress;
Balaji T K6e3076c2014-01-21 19:54:42 +0530208 unsigned long clk_rate;
Balaji T Ka2e77152014-01-21 19:54:42 +0530209 unsigned int flags;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200210#define AUTO_CMD23 (1 << 0) /* Auto CMD23 support */
211#define HSMMC_SDIO_IRQ_ENABLED (1 << 1) /* SDIO irq enabled */
Per Forlin9782aff2011-07-01 18:55:23 +0200212 struct omap_hsmmc_next next_data;
Andreas Fenkart551434382014-11-08 15:33:09 +0100213 struct omap_hsmmc_platform_data *pdata;
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100214
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100215 /* return MMC cover switch state, can be NULL if not supported.
216 *
217 * possible return values:
218 * 0 - closed
219 * 1 - open
220 */
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100221 int (*get_cover_state)(struct device *dev);
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100222
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100223 int (*card_detect)(struct device *dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100224};
225
Nishanth Menon59445b12014-02-13 23:45:48 -0600226struct omap_mmc_of_data {
227 u32 reg_offset;
228 u8 controller_flags;
229};
230
Balaji T Kbf129e12014-01-21 19:54:42 +0530231static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host);
232
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100233static int omap_hsmmc_card_detect(struct device *dev)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800234{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530235 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800236
NeilBrown41afa3142015-01-13 08:23:18 +1300237 return mmc_gpio_get_cd(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800238}
239
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100240static int omap_hsmmc_get_cover_state(struct device *dev)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800241{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530242 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800243
NeilBrown41afa3142015-01-13 08:23:18 +1300244 return mmc_gpio_get_cd(host->mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800245}
246
Adrian Hunterb702b102010-02-15 10:03:35 -0800247#ifdef CONFIG_REGULATOR
248
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530249static int omap_hsmmc_enable_supply(struct mmc_host *mmc, int vdd)
250{
251 int ret;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530252 struct omap_hsmmc_host *host = mmc_priv(mmc);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530253
254 if (mmc->supply.vmmc) {
255 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, vdd);
256 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
Kishon Vijay Abraham Ic55d7a02015-08-27 14:44:05 +0530332 if (!regulator_is_enabled(host->pbias)) {
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 }
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530338 }
339 } else {
Kishon Vijay Abraham Ic55d7a02015-08-27 14:44:05 +0530340 if (regulator_is_enabled(host->pbias)) {
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530341 ret = regulator_disable(host->pbias);
342 if (ret) {
343 dev_err(host->dev, "pbias reg disable fail\n");
344 return ret;
345 }
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530346 }
347 }
348
349 return 0;
350}
351
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100352static int omap_hsmmc_set_power(struct device *dev, int power_on, int vdd)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800353{
354 struct omap_hsmmc_host *host =
355 platform_get_drvdata(to_platform_device(dev));
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530356 struct mmc_host *mmc = host->mmc;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800357 int ret = 0;
358
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200359 if (mmc_pdata(host)->set_power)
360 return mmc_pdata(host)->set_power(dev, power_on, vdd);
361
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800362 /*
363 * If we don't see a Vcc regulator, assume it's a fixed
364 * voltage always-on regulator.
365 */
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530366 if (!mmc->supply.vmmc)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800367 return 0;
368
Andreas Fenkart326119c2014-11-08 15:33:14 +0100369 if (mmc_pdata(host)->before_set_reg)
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100370 mmc_pdata(host)->before_set_reg(dev, power_on, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800371
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530372 ret = omap_hsmmc_set_pbias(host, false, 0);
373 if (ret)
374 return ret;
Balaji T Ke99448f2014-02-19 20:26:40 +0530375
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800376 /*
377 * Assume Vcc regulator is used only to power the card ... OMAP
378 * VDDS is used to power the pins, optionally with a transceiver to
379 * support cards using voltages other than VDDS (1.8V nominal). When a
380 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
381 *
382 * In some cases this regulator won't support enable/disable;
383 * e.g. it's a fixed rail for a WLAN chip.
384 *
385 * In other cases vcc_aux switches interface power. Example, for
386 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
387 * chips/cards need an interface voltage rail too.
388 */
389 if (power_on) {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530390 ret = omap_hsmmc_enable_supply(mmc, vdd);
391 if (ret)
392 return ret;
Kishon Vijay Abraham I97fe7e52015-08-27 14:44:02 +0530393
394 ret = omap_hsmmc_set_pbias(host, true, vdd);
395 if (ret)
396 goto err_set_voltage;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800397 } else {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530398 ret = omap_hsmmc_disable_supply(mmc);
399 if (ret)
400 return ret;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800401 }
402
Andreas Fenkart326119c2014-11-08 15:33:14 +0100403 if (mmc_pdata(host)->after_set_reg)
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100404 mmc_pdata(host)->after_set_reg(dev, power_on, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800405
Kishon Vijay Abraham I229f3292015-08-27 14:43:59 +0530406 return 0;
407
408err_set_voltage:
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530409 omap_hsmmc_disable_supply(mmc);
Kishon Vijay Abraham I229f3292015-08-27 14:43:59 +0530410
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800411 return ret;
412}
413
Kishon Vijay Abraham Ic8518ef2015-08-27 14:44:03 +0530414static int omap_hsmmc_disable_boot_regulator(struct regulator *reg)
415{
416 int ret;
417
418 if (!reg)
419 return 0;
420
421 if (regulator_is_enabled(reg)) {
422 ret = regulator_enable(reg);
423 if (ret)
424 return ret;
425
426 ret = regulator_disable(reg);
427 if (ret)
428 return ret;
429 }
430
431 return 0;
432}
433
434static int omap_hsmmc_disable_boot_regulators(struct omap_hsmmc_host *host)
435{
436 struct mmc_host *mmc = host->mmc;
437 int ret;
438
439 /*
440 * disable regulators enabled during boot and get the usecount
441 * right so that regulators can be enabled/disabled by checking
442 * the return value of regulator_is_enabled
443 */
444 ret = omap_hsmmc_disable_boot_regulator(mmc->supply.vmmc);
445 if (ret) {
446 dev_err(host->dev, "fail to disable boot enabled vmmc reg\n");
447 return ret;
448 }
449
450 ret = omap_hsmmc_disable_boot_regulator(mmc->supply.vqmmc);
451 if (ret) {
452 dev_err(host->dev,
453 "fail to disable boot enabled vmmc_aux reg\n");
454 return ret;
455 }
456
457 ret = omap_hsmmc_disable_boot_regulator(host->pbias);
458 if (ret) {
459 dev_err(host->dev,
460 "failed to disable boot enabled pbias reg\n");
461 return ret;
462 }
463
464 return 0;
465}
466
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800467static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
468{
kishore kadiyala64be9782010-10-01 16:35:28 -0700469 int ocr_value = 0;
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530470 int ret;
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530471 struct mmc_host *mmc = host->mmc;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800472
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200473 if (mmc_pdata(host)->set_power)
474 return 0;
475
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530476 mmc->supply.vmmc = devm_regulator_get_optional(host->dev, "vmmc");
477 if (IS_ERR(mmc->supply.vmmc)) {
478 ret = PTR_ERR(mmc->supply.vmmc);
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530479 if (ret != -ENODEV)
480 return ret;
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530481 dev_dbg(host->dev, "unable to get vmmc regulator %ld\n",
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530482 PTR_ERR(mmc->supply.vmmc));
483 mmc->supply.vmmc = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800484 } else {
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530485 ocr_value = mmc_regulator_get_ocrmask(mmc->supply.vmmc);
Kishon Vijay Abraham Ib49069f2015-08-27 14:43:56 +0530486 if (ocr_value > 0)
Andreas Fenkart326119c2014-11-08 15:33:14 +0100487 mmc_pdata(host)->ocr_mask = ocr_value;
Balaji T K987fd492014-02-19 20:26:40 +0530488 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800489
Balaji T K987fd492014-02-19 20:26:40 +0530490 /* Allow an aux regulator */
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530491 mmc->supply.vqmmc = devm_regulator_get_optional(host->dev, "vmmc_aux");
492 if (IS_ERR(mmc->supply.vqmmc)) {
493 ret = PTR_ERR(mmc->supply.vqmmc);
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530494 if (ret != -ENODEV)
495 return ret;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530496 dev_dbg(host->dev, "unable to get vmmc_aux regulator %ld\n",
Kishon Vijay Abraham Iaa9a6802015-08-27 14:43:57 +0530497 PTR_ERR(mmc->supply.vqmmc));
498 mmc->supply.vqmmc = NULL;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530499 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800500
Kishon Vijay Abraham Ic299dc32015-08-27 14:43:55 +0530501 host->pbias = devm_regulator_get_optional(host->dev, "pbias");
502 if (IS_ERR(host->pbias)) {
503 ret = PTR_ERR(host->pbias);
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530504 if (ret != -ENODEV)
505 return ret;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530506 dev_dbg(host->dev, "unable to get pbias regulator %ld\n",
Kishon Vijay Abraham Ic299dc32015-08-27 14:43:55 +0530507 PTR_ERR(host->pbias));
508 host->pbias = NULL;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530509 }
Balaji T Ke99448f2014-02-19 20:26:40 +0530510
Balaji T K987fd492014-02-19 20:26:40 +0530511 /* For eMMC do not power off when not in sleep state */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100512 if (mmc_pdata(host)->no_regulator_off_init)
Balaji T K987fd492014-02-19 20:26:40 +0530513 return 0;
Adrian Huntere840ce12011-05-06 12:14:10 +0300514
Kishon Vijay Abraham Ic8518ef2015-08-27 14:44:03 +0530515 ret = omap_hsmmc_disable_boot_regulators(host);
516 if (ret)
517 return ret;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800518
519 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800520}
521
Adrian Hunterb702b102010-02-15 10:03:35 -0800522static inline int omap_hsmmc_have_reg(void)
523{
524 return 1;
525}
526
527#else
528
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200529static int omap_hsmmc_set_power(struct device *dev, int power_on, int vdd)
530{
531 return 0;
532}
533
Adrian Hunterb702b102010-02-15 10:03:35 -0800534static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
535{
536 return -EINVAL;
537}
538
Adrian Hunterb702b102010-02-15 10:03:35 -0800539static inline int omap_hsmmc_have_reg(void)
540{
541 return 0;
542}
543
544#endif
545
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100546static irqreturn_t omap_hsmmc_cover_irq(int irq, void *dev_id);
NeilBrown41afa3142015-01-13 08:23:18 +1300547
548static int omap_hsmmc_gpio_init(struct mmc_host *mmc,
549 struct omap_hsmmc_host *host,
Andreas Fenkart1e363e32014-11-08 15:33:15 +0100550 struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800551{
552 int ret;
553
Andreas Fenkartb7a56462015-03-20 15:53:54 +0100554 if (gpio_is_valid(pdata->gpio_cod)) {
555 ret = mmc_gpio_request_cd(mmc, pdata->gpio_cod, 0);
Adrian Hunterb702b102010-02-15 10:03:35 -0800556 if (ret)
557 return ret;
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100558
559 host->get_cover_state = omap_hsmmc_get_cover_state;
560 mmc_gpio_set_cd_isr(mmc, omap_hsmmc_cover_irq);
Andreas Fenkartb7a56462015-03-20 15:53:54 +0100561 } else if (gpio_is_valid(pdata->gpio_cd)) {
562 ret = mmc_gpio_request_cd(mmc, pdata->gpio_cd, 0);
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100563 if (ret)
564 return ret;
565
566 host->card_detect = omap_hsmmc_card_detect;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100567 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800568
Andreas Fenkart326119c2014-11-08 15:33:14 +0100569 if (gpio_is_valid(pdata->gpio_wp)) {
NeilBrown41afa3142015-01-13 08:23:18 +1300570 ret = mmc_gpio_request_ro(mmc, pdata->gpio_wp);
Adrian Hunterb702b102010-02-15 10:03:35 -0800571 if (ret)
NeilBrown41afa3142015-01-13 08:23:18 +1300572 return ret;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100573 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800574
575 return 0;
Adrian Hunterb702b102010-02-15 10:03:35 -0800576}
577
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100578/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300579 * Start clock to the card
580 */
581static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
582{
583 OMAP_HSMMC_WRITE(host->base, SYSCTL,
584 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
585}
586
587/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100588 * Stop clock to the card
589 */
Denis Karpov70a33412009-09-22 16:44:59 -0700590static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100591{
592 OMAP_HSMMC_WRITE(host->base, SYSCTL,
593 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
594 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900595 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100596}
597
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700598static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
599 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700600{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200601 u32 irq_mask = INT_EN_MASK;
602 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700603
604 if (host->use_dma)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200605 irq_mask &= ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700606
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700607 /* Disable timeout for erases */
608 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530609 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700610
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200611 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700612 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
613 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200614
615 /* latch pending CIRQ, but don't signal MMC core */
616 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
617 irq_mask |= CIRQ_EN;
Adrian Hunterb4175772010-05-26 14:42:06 -0700618 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200619 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700620}
621
622static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
623{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200624 u32 irq_mask = 0;
625 unsigned long flags;
626
627 spin_lock_irqsave(&host->irq_lock, flags);
628 /* no transfer running but need to keep cirq if enabled */
629 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
630 irq_mask |= CIRQ_EN;
631 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
632 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Adrian Hunterb4175772010-05-26 14:42:06 -0700633 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200634 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700635}
636
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300637/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530638static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300639{
640 u16 dsor = 0;
641
642 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530643 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530644 if (dsor > CLKD_MAX)
645 dsor = CLKD_MAX;
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300646 }
647
648 return dsor;
649}
650
Andy Shevchenko5934df22011-05-06 12:14:06 +0300651static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
652{
653 struct mmc_ios *ios = &host->mmc->ios;
654 unsigned long regval;
655 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530656 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300657
Venkatraman S8986d312012-08-07 19:10:38 +0530658 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300659
660 omap_hsmmc_stop_clock(host);
661
662 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
663 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530664 clkdiv = calc_divisor(host, ios);
665 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300666 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
667 OMAP_HSMMC_WRITE(host->base, SYSCTL,
668 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
669
670 /* Wait till the ICS bit is set */
671 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
672 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
673 && time_before(jiffies, timeout))
674 cpu_relax();
675
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530676 /*
677 * Enable High-Speed Support
678 * Pre-Requisites
679 * - Controller should support High-Speed-Enable Bit
680 * - Controller should not be using DDR Mode
681 * - Controller should advertise that it supports High Speed
682 * in capabilities register
683 * - MMC/SD clock coming out of controller > 25MHz
684 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100685 if ((mmc_pdata(host)->features & HSMMC_HAS_HSPE_SUPPORT) &&
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900686 (ios->timing != MMC_TIMING_MMC_DDR52) &&
Ulf Hansson903101a2014-11-25 13:05:13 +0100687 (ios->timing != MMC_TIMING_UHS_DDR50) &&
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530688 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
689 regval = OMAP_HSMMC_READ(host->base, HCTL);
690 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
691 regval |= HSPE;
692 else
693 regval &= ~HSPE;
694
695 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
696 }
697
Andy Shevchenko5934df22011-05-06 12:14:06 +0300698 omap_hsmmc_start_clock(host);
699}
700
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400701static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
702{
703 struct mmc_ios *ios = &host->mmc->ios;
704 u32 con;
705
706 con = OMAP_HSMMC_READ(host->base, CON);
Ulf Hansson903101a2014-11-25 13:05:13 +0100707 if (ios->timing == MMC_TIMING_MMC_DDR52 ||
708 ios->timing == MMC_TIMING_UHS_DDR50)
Balaji T K03b5d922012-04-09 12:08:33 +0530709 con |= DDR; /* configure in DDR mode */
710 else
711 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400712 switch (ios->bus_width) {
713 case MMC_BUS_WIDTH_8:
714 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
715 break;
716 case MMC_BUS_WIDTH_4:
717 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
718 OMAP_HSMMC_WRITE(host->base, HCTL,
719 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
720 break;
721 case MMC_BUS_WIDTH_1:
722 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
723 OMAP_HSMMC_WRITE(host->base, HCTL,
724 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
725 break;
726 }
727}
728
729static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
730{
731 struct mmc_ios *ios = &host->mmc->ios;
732 u32 con;
733
734 con = OMAP_HSMMC_READ(host->base, CON);
735 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
736 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
737 else
738 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
739}
740
Denis Karpov11dd62a2009-09-22 16:44:43 -0700741#ifdef CONFIG_PM
742
743/*
744 * Restore the MMC host context, if it was lost as result of a
745 * power state change.
746 */
Denis Karpov70a33412009-09-22 16:44:59 -0700747static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700748{
749 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400750 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700751 unsigned long timeout;
752
Tony Lindgren0a82e062013-10-21 00:25:19 +0530753 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
754 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
755 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
756 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
757 return 0;
758
759 host->context_loss++;
760
Balaji T Kc2200ef2012-03-07 09:55:30 -0500761 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700762 if (host->power_mode != MMC_POWER_OFF &&
763 (1 << ios->vdd) <= MMC_VDD_23_24)
764 hctl = SDVS18;
765 else
766 hctl = SDVS30;
767 capa = VS30 | VS18;
768 } else {
769 hctl = SDVS18;
770 capa = VS18;
771 }
772
Balaji T K5a52b082014-05-29 10:28:02 +0200773 if (host->mmc->caps & MMC_CAP_SDIO_IRQ)
774 hctl |= IWE;
775
Denis Karpov11dd62a2009-09-22 16:44:43 -0700776 OMAP_HSMMC_WRITE(host->base, HCTL,
777 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
778
779 OMAP_HSMMC_WRITE(host->base, CAPA,
780 OMAP_HSMMC_READ(host->base, CAPA) | capa);
781
782 OMAP_HSMMC_WRITE(host->base, HCTL,
783 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
784
785 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
786 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
787 && time_before(jiffies, timeout))
788 ;
789
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200790 OMAP_HSMMC_WRITE(host->base, ISE, 0);
791 OMAP_HSMMC_WRITE(host->base, IE, 0);
792 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700793
794 /* Do not initialize card-specific things if the power is off */
795 if (host->power_mode == MMC_POWER_OFF)
796 goto out;
797
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400798 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700799
Andy Shevchenko5934df22011-05-06 12:14:06 +0300800 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700801
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400802 omap_hsmmc_set_bus_mode(host);
803
Denis Karpov11dd62a2009-09-22 16:44:43 -0700804out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530805 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
806 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700807 return 0;
808}
809
810/*
811 * Save the MMC host context (store the number of power state changes so far).
812 */
Denis Karpov70a33412009-09-22 16:44:59 -0700813static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700814{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530815 host->con = OMAP_HSMMC_READ(host->base, CON);
816 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
817 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
818 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700819}
820
821#else
822
Denis Karpov70a33412009-09-22 16:44:59 -0700823static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700824{
825 return 0;
826}
827
Denis Karpov70a33412009-09-22 16:44:59 -0700828static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700829{
830}
831
832#endif
833
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100834/*
835 * Send init stream sequence to card
836 * before sending IDLE command
837 */
Denis Karpov70a33412009-09-22 16:44:59 -0700838static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100839{
840 int reg = 0;
841 unsigned long timeout;
842
Adrian Hunterb62f6222009-09-22 16:45:01 -0700843 if (host->protect_card)
844 return;
845
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100846 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700847
848 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100849 OMAP_HSMMC_WRITE(host->base, CON,
850 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
851 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
852
853 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530854 while ((reg != CC_EN) && time_before(jiffies, timeout))
855 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100856
857 OMAP_HSMMC_WRITE(host->base, CON,
858 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700859
860 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
861 OMAP_HSMMC_READ(host->base, STAT);
862
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100863 enable_irq(host->irq);
864}
865
866static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700867int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100868{
869 int r = 1;
870
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100871 if (host->get_cover_state)
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100872 r = host->get_cover_state(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100873 return r;
874}
875
876static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700877omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100878 char *buf)
879{
880 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700881 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100882
Denis Karpov70a33412009-09-22 16:44:59 -0700883 return sprintf(buf, "%s\n",
884 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100885}
886
Denis Karpov70a33412009-09-22 16:44:59 -0700887static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100888
889static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700890omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100891 char *buf)
892{
893 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700894 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100895
Andreas Fenkart326119c2014-11-08 15:33:14 +0100896 return sprintf(buf, "%s\n", mmc_pdata(host)->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100897}
898
Denis Karpov70a33412009-09-22 16:44:59 -0700899static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100900
901/*
902 * Configure the response type and send the cmd.
903 */
904static void
Denis Karpov70a33412009-09-22 16:44:59 -0700905omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100906 struct mmc_data *data)
907{
908 int cmdreg = 0, resptype = 0, cmdtype = 0;
909
Venkatraman S8986d312012-08-07 19:10:38 +0530910 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100911 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
912 host->cmd = cmd;
913
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700914 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100915
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200916 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100917 if (cmd->flags & MMC_RSP_PRESENT) {
918 if (cmd->flags & MMC_RSP_136)
919 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200920 else if (cmd->flags & MMC_RSP_BUSY) {
921 resptype = 3;
922 host->response_busy = 1;
923 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100924 resptype = 2;
925 }
926
927 /*
928 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
929 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
930 * a val of 0x3, rest 0x0.
931 */
932 if (cmd == host->mrq->stop)
933 cmdtype = 0x3;
934
935 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
936
Balaji T Ka2e77152014-01-21 19:54:42 +0530937 if ((host->flags & AUTO_CMD23) && mmc_op_multi(cmd->opcode) &&
938 host->mrq->sbc) {
939 cmdreg |= ACEN_ACMD23;
940 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg);
941 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100942 if (data) {
943 cmdreg |= DP_SELECT | MSBS | BCE;
944 if (data->flags & MMC_DATA_READ)
945 cmdreg |= DDIR;
946 else
947 cmdreg &= ~(DDIR);
948 }
949
950 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530951 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100952
Adrian Hunterb4175772010-05-26 14:42:06 -0700953 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700954
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100955 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
956 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
957}
958
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200959static int
Denis Karpov70a33412009-09-22 16:44:59 -0700960omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200961{
962 if (data->flags & MMC_DATA_WRITE)
963 return DMA_TO_DEVICE;
964 else
965 return DMA_FROM_DEVICE;
966}
967
Russell Kingc5c98922012-04-13 12:14:39 +0100968static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
969 struct mmc_data *data)
970{
971 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
972}
973
Adrian Hunterb4175772010-05-26 14:42:06 -0700974static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
975{
976 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530977 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700978
Venkatraman S31463b12012-04-09 12:08:34 +0530979 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700980 host->req_in_progress = 0;
981 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530982 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700983
984 omap_hsmmc_disable_irq(host);
985 /* Do not complete the request if DMA is still in progress */
986 if (mrq->data && host->use_dma && dma_ch != -1)
987 return;
988 host->mrq = NULL;
989 mmc_request_done(host->mmc, mrq);
NeilBrownf57ba4c2015-03-26 12:18:23 +1100990 pm_runtime_mark_last_busy(host->dev);
991 pm_runtime_put_autosuspend(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -0700992}
993
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100994/*
995 * Notify the transfer complete to MMC core
996 */
997static void
Denis Karpov70a33412009-09-22 16:44:59 -0700998omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100999{
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001000 if (!data) {
1001 struct mmc_request *mrq = host->mrq;
1002
Adrian Hunter23050102009-09-22 16:44:57 -07001003 /* TC before CC from CMD6 - don't know why, but it happens */
1004 if (host->cmd && host->cmd->opcode == 6 &&
1005 host->response_busy) {
1006 host->response_busy = 0;
1007 return;
1008 }
1009
Adrian Hunterb4175772010-05-26 14:42:06 -07001010 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001011 return;
1012 }
1013
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001014 host->data = NULL;
1015
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001016 if (!data->error)
1017 data->bytes_xfered += data->blocks * (data->blksz);
1018 else
1019 data->bytes_xfered = 0;
1020
Balaji T Kbf129e12014-01-21 19:54:42 +05301021 if (data->stop && (data->error || !host->mrq->sbc))
1022 omap_hsmmc_start_command(host, data->stop, NULL);
1023 else
Adrian Hunterb4175772010-05-26 14:42:06 -07001024 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001025}
1026
1027/*
1028 * Notify the core about command completion
1029 */
1030static void
Denis Karpov70a33412009-09-22 16:44:59 -07001031omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001032{
Balaji T Kbf129e12014-01-21 19:54:42 +05301033 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) &&
Balaji T Ka2e77152014-01-21 19:54:42 +05301034 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) {
Balaji T K2177fa92014-05-09 22:16:52 +05301035 host->cmd = NULL;
Balaji T Kbf129e12014-01-21 19:54:42 +05301036 omap_hsmmc_start_dma_transfer(host);
1037 omap_hsmmc_start_command(host, host->mrq->cmd,
1038 host->mrq->data);
1039 return;
1040 }
1041
Balaji T K2177fa92014-05-09 22:16:52 +05301042 host->cmd = NULL;
1043
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001044 if (cmd->flags & MMC_RSP_PRESENT) {
1045 if (cmd->flags & MMC_RSP_136) {
1046 /* response type 2 */
1047 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
1048 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
1049 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
1050 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
1051 } else {
1052 /* response types 1, 1b, 3, 4, 5, 6 */
1053 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
1054 }
1055 }
Adrian Hunterb4175772010-05-26 14:42:06 -07001056 if ((host->data == NULL && !host->response_busy) || cmd->error)
Balaji T Kd4b2c372014-01-21 19:54:42 +05301057 omap_hsmmc_request_done(host, host->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001058}
1059
1060/*
1061 * DMA clean up for command errors
1062 */
Denis Karpov70a33412009-09-22 16:44:59 -07001063static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001064{
Adrian Hunterb4175772010-05-26 14:42:06 -07001065 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +05301066 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -07001067
Jarkko Lavinen82788ff2008-12-05 12:31:46 +02001068 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001069
Venkatraman S31463b12012-04-09 12:08:34 +05301070 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001071 dma_ch = host->dma_ch;
1072 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +05301073 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001074
1075 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +01001076 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
1077
1078 dmaengine_terminate_all(chan);
1079 dma_unmap_sg(chan->device->dev,
1080 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001081 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +01001082
Per Forlin053bf342011-11-07 21:55:11 +05301083 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001084 }
1085 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001086}
1087
1088/*
1089 * Readable error output
1090 */
1091#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001092static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001093{
1094 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001095 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001096 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1097 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1098 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1099 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001100 };
1101 char res[256];
1102 char *buf = res;
1103 int len, i;
1104
1105 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1106 buf += len;
1107
Denis Karpov70a33412009-09-22 16:44:59 -07001108 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001109 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001110 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001111 buf += len;
1112 }
1113
Venkatraman S8986d312012-08-07 19:10:38 +05301114 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001115}
Adrian Hunter699b9582011-05-06 12:14:01 +03001116#else
1117static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1118 u32 status)
1119{
1120}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001121#endif /* CONFIG_MMC_DEBUG */
1122
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001123/*
1124 * MMC controller internal state machines reset
1125 *
1126 * Used to reset command or data internal state machines, using respectively
1127 * SRC or SRD bit of SYSCTL register
1128 * Can be called from interrupt context
1129 */
Denis Karpov70a33412009-09-22 16:44:59 -07001130static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1131 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001132{
1133 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +05301134 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001135
1136 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1137 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1138
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001139 /*
1140 * OMAP4 ES2 and greater has an updated reset logic.
1141 * Monitor a 0->1 transition first
1142 */
Andreas Fenkart326119c2014-11-08 15:33:14 +01001143 if (mmc_pdata(host)->features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001144 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001145 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301146 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001147 }
1148 i = 0;
1149
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001150 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1151 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301152 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001153
1154 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1155 dev_err(mmc_dev(host->mmc),
1156 "Timeout waiting on controller reset in %s\n",
1157 __func__);
1158}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001159
Balaji T K25e18972012-11-19 21:59:55 +05301160static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1161 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301162{
Balaji T K25e18972012-11-19 21:59:55 +05301163 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301164 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301165 if (host->cmd)
1166 host->cmd->error = err;
1167 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301168
1169 if (host->data) {
1170 omap_hsmmc_reset_controller_fsm(host, SRD);
1171 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301172 } else if (host->mrq && host->mrq->cmd)
1173 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301174}
1175
Adrian Hunterb4175772010-05-26 14:42:06 -07001176static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001177{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001178 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001179 int end_cmd = 0, end_trans = 0;
Balaji T Ka2e77152014-01-21 19:54:42 +05301180 int error = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001181
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001182 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301183 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001184
Venkatraman Sa7e96872012-11-19 22:00:01 +05301185 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001186 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001187
Venkatraman Sa7e96872012-11-19 22:00:01 +05301188 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301189 end_cmd = 1;
Kishon Vijay Abraham I408806f2015-06-16 16:07:17 +05301190 if (host->data || host->response_busy) {
1191 end_trans = !end_cmd;
1192 host->response_busy = 0;
1193 }
Venkatraman Sa7e96872012-11-19 22:00:01 +05301194 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301195 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Vignesh R5027cd12015-06-16 16:07:18 +05301196 else if (status & (CCRC_EN | DCRC_EN | DEB_EN | CEB_EN |
1197 BADA_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301198 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1199
Balaji T Ka2e77152014-01-21 19:54:42 +05301200 if (status & ACE_EN) {
1201 u32 ac12;
1202 ac12 = OMAP_HSMMC_READ(host->base, AC12);
1203 if (!(ac12 & ACNE) && host->mrq->sbc) {
1204 end_cmd = 1;
1205 if (ac12 & ACTO)
1206 error = -ETIMEDOUT;
1207 else if (ac12 & (ACCE | ACEB | ACIE))
1208 error = -EILSEQ;
1209 host->mrq->sbc->error = error;
1210 hsmmc_command_incomplete(host, error, end_cmd);
1211 }
1212 dev_dbg(mmc_dev(host->mmc), "AC12 err: 0x%x\n", ac12);
1213 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001214 }
1215
Francesco Lavra7472bab2013-06-29 08:25:12 +02001216 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301217 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001218 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301219 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001220 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001221}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001222
Adrian Hunterb4175772010-05-26 14:42:06 -07001223/*
1224 * MMC controller IRQ handler
1225 */
1226static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1227{
1228 struct omap_hsmmc_host *host = dev_id;
1229 int status;
1230
1231 status = OMAP_HSMMC_READ(host->base, STAT);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001232 while (status & (INT_EN_MASK | CIRQ_EN)) {
1233 if (host->req_in_progress)
1234 omap_hsmmc_do_irq(host, status);
1235
1236 if (status & CIRQ_EN)
1237 mmc_signal_sdio_irq(host->mmc);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301238
Adrian Hunterb4175772010-05-26 14:42:06 -07001239 /* Flush posted write */
1240 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301241 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001242
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001243 return IRQ_HANDLED;
1244}
1245
Denis Karpov70a33412009-09-22 16:44:59 -07001246static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001247{
1248 unsigned long i;
1249
1250 OMAP_HSMMC_WRITE(host->base, HCTL,
1251 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1252 for (i = 0; i < loops_per_jiffy; i++) {
1253 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1254 break;
1255 cpu_relax();
1256 }
1257}
1258
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001259/*
David Brownelleb250822009-02-17 14:49:01 -08001260 * Switch MMC interface voltage ... only relevant for MMC1.
1261 *
1262 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1263 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1264 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001265 */
Denis Karpov70a33412009-09-22 16:44:59 -07001266static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001267{
1268 u32 reg_val = 0;
1269 int ret;
1270
1271 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301272 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301273 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301274 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001275
1276 /* Turn the power off */
Andreas Fenkartf7f0f032015-07-07 20:38:43 +02001277 ret = omap_hsmmc_set_power(host->dev, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001278
1279 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001280 if (!ret)
Andreas Fenkartf7f0f032015-07-07 20:38:43 +02001281 ret = omap_hsmmc_set_power(host->dev, 1, vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301282 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301283 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301284 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001285
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001286 if (ret != 0)
1287 goto err;
1288
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001289 OMAP_HSMMC_WRITE(host->base, HCTL,
1290 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1291 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001292
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001293 /*
1294 * If a MMC dual voltage card is detected, the set_ios fn calls
1295 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001296 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001297 *
David Brownelleb250822009-02-17 14:49:01 -08001298 * Cope with a bit of slop in the range ... per data sheets:
1299 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1300 * but recommended values are 1.71V to 1.89V
1301 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1302 * but recommended values are 2.7V to 3.3V
1303 *
1304 * Board setup code shouldn't permit anything very out-of-range.
1305 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1306 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001307 */
David Brownelleb250822009-02-17 14:49:01 -08001308 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001309 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001310 else
1311 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001312
1313 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001314 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001315
1316 return 0;
1317err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301318 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001319 return ret;
1320}
1321
Adrian Hunterb62f6222009-09-22 16:45:01 -07001322/* Protect the card while the cover is open */
1323static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1324{
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001325 if (!host->get_cover_state)
Adrian Hunterb62f6222009-09-22 16:45:01 -07001326 return;
1327
1328 host->reqs_blocked = 0;
Andreas Fenkart80412ca2014-11-08 15:33:17 +01001329 if (host->get_cover_state(host->dev)) {
Adrian Hunterb62f6222009-09-22 16:45:01 -07001330 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301331 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001332 "card is now accessible\n",
1333 mmc_hostname(host->mmc));
1334 host->protect_card = 0;
1335 }
1336 } else {
1337 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301338 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001339 "card is now inaccessible\n",
1340 mmc_hostname(host->mmc));
1341 host->protect_card = 1;
1342 }
1343 }
1344}
1345
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001346/*
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001347 * irq handler when (cell-phone) cover is mounted/removed
1348 */
1349static irqreturn_t omap_hsmmc_cover_irq(int irq, void *dev_id)
1350{
1351 struct omap_hsmmc_host *host = dev_id;
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001352
1353 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
1354
Andreas Fenkart11227d12015-03-03 13:28:17 +01001355 omap_hsmmc_protect_card(host);
1356 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001357 return IRQ_HANDLED;
1358}
1359
Russell Kingc5c98922012-04-13 12:14:39 +01001360static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001361{
Russell Kingc5c98922012-04-13 12:14:39 +01001362 struct omap_hsmmc_host *host = param;
1363 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001364 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001365 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001366
Russell Kingc5c98922012-04-13 12:14:39 +01001367 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001368 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001369 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001370 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001371 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001372
Adrian Hunter770d7432011-05-06 12:14:11 +03001373 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001374 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001375 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001376 dma_unmap_sg(chan->device->dev,
1377 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001378 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001379
1380 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001381 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001382 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001383
1384 /* If DMA has finished after TC, complete the request */
1385 if (!req_in_progress) {
1386 struct mmc_request *mrq = host->mrq;
1387
1388 host->mrq = NULL;
1389 mmc_request_done(host->mmc, mrq);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001390 pm_runtime_mark_last_busy(host->dev);
1391 pm_runtime_put_autosuspend(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -07001392 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001393}
1394
Per Forlin9782aff2011-07-01 18:55:23 +02001395static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1396 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001397 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001398 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001399{
1400 int dma_len;
1401
1402 if (!next && data->host_cookie &&
1403 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301404 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001405 " host->next_data.cookie %d\n",
1406 __func__, data->host_cookie, host->next_data.cookie);
1407 data->host_cookie = 0;
1408 }
1409
1410 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001411 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001412 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001413 omap_hsmmc_get_dma_dir(host, data));
1414
1415 } else {
1416 dma_len = host->next_data.dma_len;
1417 host->next_data.dma_len = 0;
1418 }
1419
1420
1421 if (dma_len == 0)
1422 return -EINVAL;
1423
1424 if (next) {
1425 next->dma_len = dma_len;
1426 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1427 } else
1428 host->dma_len = dma_len;
1429
1430 return 0;
1431}
1432
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001433/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001434 * Routine to configure and start DMA for the MMC card
1435 */
Balaji T K9d025332014-01-21 19:54:42 +05301436static int omap_hsmmc_setup_dma_transfer(struct omap_hsmmc_host *host,
Denis Karpov70a33412009-09-22 16:44:59 -07001437 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001438{
Russell King26b88522012-04-13 12:27:37 +01001439 struct dma_slave_config cfg;
1440 struct dma_async_tx_descriptor *tx;
1441 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001442 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001443 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001444
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001445 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001446 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001447 struct scatterlist *sgl;
1448
1449 sgl = data->sg + i;
1450 if (sgl->length % data->blksz)
1451 return -EINVAL;
1452 }
1453 if ((data->blksz % 4) != 0)
1454 /* REVISIT: The MMC buffer increments only when MSB is written.
1455 * Return error for blksz which is non multiple of four.
1456 */
1457 return -EINVAL;
1458
Adrian Hunterb4175772010-05-26 14:42:06 -07001459 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001460
Russell Kingc5c98922012-04-13 12:14:39 +01001461 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001462
Russell King26b88522012-04-13 12:27:37 +01001463 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1464 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1465 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1466 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1467 cfg.src_maxburst = data->blksz / 4;
1468 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001469
Russell King26b88522012-04-13 12:27:37 +01001470 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001471 if (ret)
1472 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001473
Russell King26b88522012-04-13 12:27:37 +01001474 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1475 if (ret)
1476 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001477
Russell King26b88522012-04-13 12:27:37 +01001478 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1479 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1480 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1481 if (!tx) {
1482 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1483 /* FIXME: cleanup */
1484 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001485 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001486
Russell King26b88522012-04-13 12:27:37 +01001487 tx->callback = omap_hsmmc_dma_callback;
1488 tx->callback_param = host;
1489
1490 /* Does not fail */
1491 dmaengine_submit(tx);
1492
1493 host->dma_ch = 1;
1494
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001495 return 0;
1496}
1497
Denis Karpov70a33412009-09-22 16:44:59 -07001498static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001499 unsigned int timeout_ns,
1500 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001501{
1502 unsigned int timeout, cycle_ns;
1503 uint32_t reg, clkd, dto = 0;
1504
1505 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1506 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1507 if (clkd == 0)
1508 clkd = 1;
1509
Balaji T K6e3076c2014-01-21 19:54:42 +05301510 cycle_ns = 1000000000 / (host->clk_rate / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001511 timeout = timeout_ns / cycle_ns;
1512 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001513 if (timeout) {
1514 while ((timeout & 0x80000000) == 0) {
1515 dto += 1;
1516 timeout <<= 1;
1517 }
1518 dto = 31 - dto;
1519 timeout <<= 1;
1520 if (timeout && dto)
1521 dto += 1;
1522 if (dto >= 13)
1523 dto -= 13;
1524 else
1525 dto = 0;
1526 if (dto > 14)
1527 dto = 14;
1528 }
1529
1530 reg &= ~DTO_MASK;
1531 reg |= dto << DTO_SHIFT;
1532 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1533}
1534
Balaji T K9d025332014-01-21 19:54:42 +05301535static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host)
1536{
1537 struct mmc_request *req = host->mrq;
1538 struct dma_chan *chan;
1539
1540 if (!req->data)
1541 return;
1542 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1543 | (req->data->blocks << 16));
1544 set_data_timeout(host, req->data->timeout_ns,
1545 req->data->timeout_clks);
1546 chan = omap_hsmmc_get_dma_chan(host, req->data);
1547 dma_async_issue_pending(chan);
1548}
1549
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001550/*
1551 * Configure block length for MMC/SD cards and initiate the transfer.
1552 */
1553static int
Denis Karpov70a33412009-09-22 16:44:59 -07001554omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001555{
1556 int ret;
1557 host->data = req->data;
1558
1559 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001560 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001561 /*
1562 * Set an arbitrary 100ms data timeout for commands with
1563 * busy signal.
1564 */
1565 if (req->cmd->flags & MMC_RSP_BUSY)
1566 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001567 return 0;
1568 }
1569
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001570 if (host->use_dma) {
Balaji T K9d025332014-01-21 19:54:42 +05301571 ret = omap_hsmmc_setup_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001572 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301573 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001574 return ret;
1575 }
1576 }
1577 return 0;
1578}
1579
Per Forlin9782aff2011-07-01 18:55:23 +02001580static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1581 int err)
1582{
1583 struct omap_hsmmc_host *host = mmc_priv(mmc);
1584 struct mmc_data *data = mrq->data;
1585
Russell King26b88522012-04-13 12:27:37 +01001586 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001587 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001588
Russell King26b88522012-04-13 12:27:37 +01001589 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1590 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001591 data->host_cookie = 0;
1592 }
1593}
1594
1595static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1596 bool is_first_req)
1597{
1598 struct omap_hsmmc_host *host = mmc_priv(mmc);
1599
1600 if (mrq->data->host_cookie) {
1601 mrq->data->host_cookie = 0;
1602 return ;
1603 }
1604
Russell Kingc5c98922012-04-13 12:14:39 +01001605 if (host->use_dma) {
1606 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001607
Per Forlin9782aff2011-07-01 18:55:23 +02001608 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001609 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001610 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001611 }
Per Forlin9782aff2011-07-01 18:55:23 +02001612}
1613
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001614/*
1615 * Request function. for read/write operation
1616 */
Denis Karpov70a33412009-09-22 16:44:59 -07001617static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001618{
Denis Karpov70a33412009-09-22 16:44:59 -07001619 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001620 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001621
Adrian Hunterb4175772010-05-26 14:42:06 -07001622 BUG_ON(host->req_in_progress);
1623 BUG_ON(host->dma_ch != -1);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001624 pm_runtime_get_sync(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -07001625 if (host->protect_card) {
1626 if (host->reqs_blocked < 3) {
1627 /*
1628 * Ensure the controller is left in a consistent
1629 * state by resetting the command and data state
1630 * machines.
1631 */
1632 omap_hsmmc_reset_controller_fsm(host, SRD);
1633 omap_hsmmc_reset_controller_fsm(host, SRC);
1634 host->reqs_blocked += 1;
1635 }
1636 req->cmd->error = -EBADF;
1637 if (req->data)
1638 req->data->error = -EBADF;
1639 req->cmd->retries = 0;
1640 mmc_request_done(mmc, req);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001641 pm_runtime_mark_last_busy(host->dev);
1642 pm_runtime_put_autosuspend(host->dev);
Adrian Hunterb4175772010-05-26 14:42:06 -07001643 return;
1644 } else if (host->reqs_blocked)
1645 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001646 WARN_ON(host->mrq != NULL);
1647 host->mrq = req;
Balaji T K6e3076c2014-01-21 19:54:42 +05301648 host->clk_rate = clk_get_rate(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001649 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001650 if (err) {
1651 req->cmd->error = err;
1652 if (req->data)
1653 req->data->error = err;
1654 host->mrq = NULL;
1655 mmc_request_done(mmc, req);
NeilBrownf57ba4c2015-03-26 12:18:23 +11001656 pm_runtime_mark_last_busy(host->dev);
1657 pm_runtime_put_autosuspend(host->dev);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001658 return;
1659 }
Balaji T Ka2e77152014-01-21 19:54:42 +05301660 if (req->sbc && !(host->flags & AUTO_CMD23)) {
Balaji T Kbf129e12014-01-21 19:54:42 +05301661 omap_hsmmc_start_command(host, req->sbc, NULL);
1662 return;
1663 }
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001664
Balaji T K9d025332014-01-21 19:54:42 +05301665 omap_hsmmc_start_dma_transfer(host);
Denis Karpov70a33412009-09-22 16:44:59 -07001666 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001667}
1668
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001669/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001670static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001671{
Denis Karpov70a33412009-09-22 16:44:59 -07001672 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001673 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001674
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301675 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001676
Adrian Huntera3621462009-09-22 16:44:42 -07001677 if (ios->power_mode != host->power_mode) {
1678 switch (ios->power_mode) {
1679 case MMC_POWER_OFF:
Andreas Fenkartf7f0f032015-07-07 20:38:43 +02001680 omap_hsmmc_set_power(host->dev, 0, 0);
Adrian Huntera3621462009-09-22 16:44:42 -07001681 break;
1682 case MMC_POWER_UP:
Andreas Fenkartf7f0f032015-07-07 20:38:43 +02001683 omap_hsmmc_set_power(host->dev, 1, ios->vdd);
Adrian Huntera3621462009-09-22 16:44:42 -07001684 break;
1685 case MMC_POWER_ON:
1686 do_send_init_stream = 1;
1687 break;
1688 }
1689 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001690 }
1691
Denis Karpovdd498ef2009-09-22 16:44:49 -07001692 /* FIXME: set registers based only on changes to ios */
1693
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001694 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001695
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301696 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001697 /* Only MMC1 can interface at 3V without some flavor
1698 * of external transceiver; but they all handle 1.8V.
1699 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001700 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Balaji T K2cf171c2014-02-19 20:26:40 +05301701 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001702 /*
1703 * The mmc_select_voltage fn of the core does
1704 * not seem to set the power_mode to
1705 * MMC_POWER_UP upon recalculating the voltage.
1706 * vdd 1.8v.
1707 */
Denis Karpov70a33412009-09-22 16:44:59 -07001708 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1709 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001710 "Switch operation failed\n");
1711 }
1712 }
1713
Andy Shevchenko5934df22011-05-06 12:14:06 +03001714 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001715
Adrian Huntera3621462009-09-22 16:44:42 -07001716 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001717 send_init_stream(host);
1718
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001719 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001720
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301721 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001722}
1723
1724static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1725{
Denis Karpov70a33412009-09-22 16:44:59 -07001726 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001727
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001728 if (!host->card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001729 return -ENOSYS;
Andreas Fenkart80412ca2014-11-08 15:33:17 +01001730 return host->card_detect(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001731}
1732
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001733static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1734{
1735 struct omap_hsmmc_host *host = mmc_priv(mmc);
1736
Andreas Fenkart326119c2014-11-08 15:33:14 +01001737 if (mmc_pdata(host)->init_card)
1738 mmc_pdata(host)->init_card(card);
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001739}
1740
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001741static void omap_hsmmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
1742{
1743 struct omap_hsmmc_host *host = mmc_priv(mmc);
Balaji T K5a52b082014-05-29 10:28:02 +02001744 u32 irq_mask, con;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001745 unsigned long flags;
1746
1747 spin_lock_irqsave(&host->irq_lock, flags);
1748
Balaji T K5a52b082014-05-29 10:28:02 +02001749 con = OMAP_HSMMC_READ(host->base, CON);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001750 irq_mask = OMAP_HSMMC_READ(host->base, ISE);
1751 if (enable) {
1752 host->flags |= HSMMC_SDIO_IRQ_ENABLED;
1753 irq_mask |= CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001754 con |= CTPL | CLKEXTFREE;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001755 } else {
1756 host->flags &= ~HSMMC_SDIO_IRQ_ENABLED;
1757 irq_mask &= ~CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001758 con &= ~(CTPL | CLKEXTFREE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001759 }
Balaji T K5a52b082014-05-29 10:28:02 +02001760 OMAP_HSMMC_WRITE(host->base, CON, con);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001761 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
1762
1763 /*
1764 * if enable, piggy back detection on current request
1765 * but always disable immediately
1766 */
1767 if (!host->req_in_progress || !enable)
1768 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
1769
1770 /* flush posted write */
1771 OMAP_HSMMC_READ(host->base, IE);
1772
1773 spin_unlock_irqrestore(&host->irq_lock, flags);
1774}
1775
1776static int omap_hsmmc_configure_wake_irq(struct omap_hsmmc_host *host)
1777{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001778 int ret;
1779
1780 /*
1781 * For omaps with wake-up path, wakeirq will be irq from pinctrl and
1782 * for other omaps, wakeirq will be from GPIO (dat line remuxed to
1783 * gpio). wakeirq is needed to detect sdio irq in runtime suspend state
1784 * with functional clock disabled.
1785 */
1786 if (!host->dev->of_node || !host->wake_irq)
1787 return -ENODEV;
1788
Tony Lindgren5b83b222015-05-21 15:51:52 -07001789 ret = dev_pm_set_dedicated_wake_irq(host->dev, host->wake_irq);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001790 if (ret) {
1791 dev_err(mmc_dev(host->mmc), "Unable to request wake IRQ\n");
1792 goto err;
1793 }
1794
1795 /*
1796 * Some omaps don't have wake-up path from deeper idle states
1797 * and need to remux SDIO DAT1 to GPIO for wake-up from idle.
1798 */
1799 if (host->pdata->controller_flags & OMAP_HSMMC_SWAKEUP_MISSING) {
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001800 struct pinctrl *p = devm_pinctrl_get(host->dev);
1801 if (!p) {
1802 ret = -ENODEV;
1803 goto err_free_irq;
1804 }
1805 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_DEFAULT))) {
1806 dev_info(host->dev, "missing default pinctrl state\n");
1807 devm_pinctrl_put(p);
1808 ret = -EINVAL;
1809 goto err_free_irq;
1810 }
1811
1812 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_IDLE))) {
1813 dev_info(host->dev, "missing idle pinctrl state\n");
1814 devm_pinctrl_put(p);
1815 ret = -EINVAL;
1816 goto err_free_irq;
1817 }
1818 devm_pinctrl_put(p);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001819 }
1820
Balaji T K5a52b082014-05-29 10:28:02 +02001821 OMAP_HSMMC_WRITE(host->base, HCTL,
1822 OMAP_HSMMC_READ(host->base, HCTL) | IWE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001823 return 0;
1824
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001825err_free_irq:
Tony Lindgren5b83b222015-05-21 15:51:52 -07001826 dev_pm_clear_wake_irq(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001827err:
1828 dev_warn(host->dev, "no SDIO IRQ support, falling back to polling\n");
1829 host->wake_irq = 0;
1830 return ret;
1831}
1832
Denis Karpov70a33412009-09-22 16:44:59 -07001833static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001834{
1835 u32 hctl, capa, value;
1836
1837 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301838 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001839 hctl = SDVS30;
1840 capa = VS30 | VS18;
1841 } else {
1842 hctl = SDVS18;
1843 capa = VS18;
1844 }
1845
1846 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1847 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1848
1849 value = OMAP_HSMMC_READ(host->base, CAPA);
1850 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1851
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001852 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001853 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001854}
1855
Kuninori Morimotoafd8c292014-09-08 23:44:51 -07001856static int omap_hsmmc_multi_io_quirk(struct mmc_card *card,
1857 unsigned int direction, int blk_size)
1858{
1859 /* This controller can't do multiblock reads due to hw bugs */
1860 if (direction == MMC_DATA_READ)
1861 return 1;
1862
1863 return blk_size;
1864}
1865
1866static struct mmc_host_ops omap_hsmmc_ops = {
Per Forlin9782aff2011-07-01 18:55:23 +02001867 .post_req = omap_hsmmc_post_req,
1868 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001869 .request = omap_hsmmc_request,
1870 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001871 .get_cd = omap_hsmmc_get_cd,
Andreas Fenkarta49d8352015-03-03 13:28:14 +01001872 .get_ro = mmc_gpio_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001873 .init_card = omap_hsmmc_init_card,
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001874 .enable_sdio_irq = omap_hsmmc_enable_sdio_irq,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001875};
1876
Denis Karpovd900f712009-09-22 16:44:38 -07001877#ifdef CONFIG_DEBUG_FS
1878
Denis Karpov70a33412009-09-22 16:44:59 -07001879static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001880{
1881 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001882 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001883
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001884 seq_printf(s, "mmc%d:\n", mmc->index);
1885 seq_printf(s, "sdio irq mode\t%s\n",
1886 (mmc->caps & MMC_CAP_SDIO_IRQ) ? "interrupt" : "polling");
1887
1888 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1889 seq_printf(s, "sdio irq \t%s\n",
1890 (host->flags & HSMMC_SDIO_IRQ_ENABLED) ? "enabled"
1891 : "disabled");
1892 }
1893 seq_printf(s, "ctx_loss:\t%d\n", host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001894
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301895 pm_runtime_get_sync(host->dev);
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001896 seq_puts(s, "\nregs:\n");
Denis Karpovd900f712009-09-22 16:44:38 -07001897 seq_printf(s, "CON:\t\t0x%08x\n",
1898 OMAP_HSMMC_READ(host->base, CON));
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001899 seq_printf(s, "PSTATE:\t\t0x%08x\n",
1900 OMAP_HSMMC_READ(host->base, PSTATE));
Denis Karpovd900f712009-09-22 16:44:38 -07001901 seq_printf(s, "HCTL:\t\t0x%08x\n",
1902 OMAP_HSMMC_READ(host->base, HCTL));
1903 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1904 OMAP_HSMMC_READ(host->base, SYSCTL));
1905 seq_printf(s, "IE:\t\t0x%08x\n",
1906 OMAP_HSMMC_READ(host->base, IE));
1907 seq_printf(s, "ISE:\t\t0x%08x\n",
1908 OMAP_HSMMC_READ(host->base, ISE));
1909 seq_printf(s, "CAPA:\t\t0x%08x\n",
1910 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001911
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301912 pm_runtime_mark_last_busy(host->dev);
1913 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001914
Denis Karpovd900f712009-09-22 16:44:38 -07001915 return 0;
1916}
1917
Denis Karpov70a33412009-09-22 16:44:59 -07001918static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001919{
Denis Karpov70a33412009-09-22 16:44:59 -07001920 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001921}
1922
1923static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001924 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001925 .read = seq_read,
1926 .llseek = seq_lseek,
1927 .release = single_release,
1928};
1929
Denis Karpov70a33412009-09-22 16:44:59 -07001930static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001931{
1932 if (mmc->debugfs_root)
1933 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1934 mmc, &mmc_regs_fops);
1935}
1936
1937#else
1938
Denis Karpov70a33412009-09-22 16:44:59 -07001939static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001940{
1941}
1942
1943#endif
1944
Rajendra Nayak46856a62012-03-12 20:32:37 +05301945#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001946static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1947 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1948 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1949};
1950
1951static const struct omap_mmc_of_data omap4_mmc_of_data = {
1952 .reg_offset = 0x100,
1953};
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001954static const struct omap_mmc_of_data am33xx_mmc_of_data = {
1955 .reg_offset = 0x100,
1956 .controller_flags = OMAP_HSMMC_SWAKEUP_MISSING,
1957};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301958
1959static const struct of_device_id omap_mmc_of_match[] = {
1960 {
1961 .compatible = "ti,omap2-hsmmc",
1962 },
1963 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001964 .compatible = "ti,omap3-pre-es3-hsmmc",
1965 .data = &omap3_pre_es3_mmc_of_data,
1966 },
1967 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301968 .compatible = "ti,omap3-hsmmc",
1969 },
1970 {
1971 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001972 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301973 },
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001974 {
1975 .compatible = "ti,am33xx-hsmmc",
1976 .data = &am33xx_mmc_of_data,
1977 },
Rajendra Nayak46856a62012-03-12 20:32:37 +05301978 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001979};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301980MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1981
Andreas Fenkart551434382014-11-08 15:33:09 +01001982static struct omap_hsmmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
Rajendra Nayak46856a62012-03-12 20:32:37 +05301983{
Andreas Fenkart551434382014-11-08 15:33:09 +01001984 struct omap_hsmmc_platform_data *pdata;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301985 struct device_node *np = dev->of_node;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301986
1987 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1988 if (!pdata)
Balaji T K19df45b2014-02-28 19:08:18 +05301989 return ERR_PTR(-ENOMEM); /* out of memory */
Rajendra Nayak46856a62012-03-12 20:32:37 +05301990
1991 if (of_find_property(np, "ti,dual-volt", NULL))
1992 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1993
Andreas Fenkartb7a56462015-03-20 15:53:54 +01001994 pdata->gpio_cd = -EINVAL;
1995 pdata->gpio_cod = -EINVAL;
NeilBrownfdb9de12015-01-13 08:23:18 +13001996 pdata->gpio_wp = -EINVAL;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301997
1998 if (of_find_property(np, "ti,non-removable", NULL)) {
Andreas Fenkart326119c2014-11-08 15:33:14 +01001999 pdata->nonremovable = true;
2000 pdata->no_regulator_off_init = true;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302001 }
Rajendra Nayak46856a62012-03-12 20:32:37 +05302002
2003 if (of_find_property(np, "ti,needs-special-reset", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002004 pdata->features |= HSMMC_HAS_UPDATED_RESET;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302005
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302006 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002007 pdata->features |= HSMMC_HAS_HSPE_SUPPORT;
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302008
Rajendra Nayak46856a62012-03-12 20:32:37 +05302009 return pdata;
2010}
2011#else
Andreas Fenkart551434382014-11-08 15:33:09 +01002012static inline struct omap_hsmmc_platform_data
Rajendra Nayak46856a62012-03-12 20:32:37 +05302013 *of_get_hsmmc_pdata(struct device *dev)
2014{
Balaji T K19df45b2014-02-28 19:08:18 +05302015 return ERR_PTR(-EINVAL);
Rajendra Nayak46856a62012-03-12 20:32:37 +05302016}
2017#endif
2018
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05002019static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002020{
Andreas Fenkart551434382014-11-08 15:33:09 +01002021 struct omap_hsmmc_platform_data *pdata = pdev->dev.platform_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002022 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002023 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002025 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302026 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01002027 dma_cap_mask_t mask;
2028 unsigned tx_req, rx_req;
Nishanth Menon59445b12014-02-13 23:45:48 -06002029 const struct omap_mmc_of_data *data;
Balaji T K77fae212014-05-09 22:16:51 +05302030 void __iomem *base;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302031
2032 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
2033 if (match) {
2034 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01002035
2036 if (IS_ERR(pdata))
2037 return PTR_ERR(pdata);
2038
Rajendra Nayak46856a62012-03-12 20:32:37 +05302039 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06002040 data = match->data;
2041 pdata->reg_offset = data->reg_offset;
2042 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302043 }
2044 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002045
2046 if (pdata == NULL) {
2047 dev_err(&pdev->dev, "Platform Data is missing\n");
2048 return -ENXIO;
2049 }
2050
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002051 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2052 irq = platform_get_irq(pdev, 0);
2053 if (res == NULL || irq < 0)
2054 return -ENXIO;
2055
Balaji T K77fae212014-05-09 22:16:51 +05302056 base = devm_ioremap_resource(&pdev->dev, res);
2057 if (IS_ERR(base))
2058 return PTR_ERR(base);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002059
Denis Karpov70a33412009-09-22 16:44:59 -07002060 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002061 if (!mmc) {
2062 ret = -ENOMEM;
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002063 goto err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002064 }
2065
NeilBrownfdb9de12015-01-13 08:23:18 +13002066 ret = mmc_of_parse(mmc);
2067 if (ret)
2068 goto err1;
2069
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002070 host = mmc_priv(mmc);
2071 host->mmc = mmc;
2072 host->pdata = pdata;
2073 host->dev = &pdev->dev;
2074 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002075 host->dma_ch = -1;
2076 host->irq = irq;
Balaji T Kfc307df2012-04-02 12:26:47 +05302077 host->mapbase = res->start + pdata->reg_offset;
Balaji T K77fae212014-05-09 22:16:51 +05302078 host->base = base + pdata->reg_offset;
Adrian Hunter6da20c82010-02-15 10:03:34 -08002079 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02002080 host->next_data.cookie = 1;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +05302081 host->vqmmc_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002082
NeilBrown41afa3142015-01-13 08:23:18 +13002083 ret = omap_hsmmc_gpio_init(mmc, host, pdata);
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002084 if (ret)
2085 goto err_gpio;
2086
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002087 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002088
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002089 if (pdev->dev.of_node)
2090 host->wake_irq = irq_of_parse_and_map(pdev->dev.of_node, 1);
2091
Balaji T K7a8c2ce2011-07-01 22:09:34 +05302092 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002093
Daniel Mackd418ed82012-02-19 13:20:33 +01002094 mmc->f_min = OMAP_MMC_MIN_CLOCK;
2095
2096 if (pdata->max_freq > 0)
2097 mmc->f_max = pdata->max_freq;
NeilBrownfdb9de12015-01-13 08:23:18 +13002098 else if (mmc->f_max == 0)
Daniel Mackd418ed82012-02-19 13:20:33 +01002099 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002100
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002101 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002102
Balaji T K96181952014-05-09 22:16:48 +05302103 host->fclk = devm_clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002104 if (IS_ERR(host->fclk)) {
2105 ret = PTR_ERR(host->fclk);
2106 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002107 goto err1;
2108 }
2109
Paul Walmsley9b682562011-10-06 14:50:35 -06002110 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
2111 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 -07002112 omap_hsmmc_ops.multi_io_quirk = omap_hsmmc_multi_io_quirk;
Paul Walmsley9b682562011-10-06 14:50:35 -06002113 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07002114
Tony Lindgren5b83b222015-05-21 15:51:52 -07002115 device_init_wakeup(&pdev->dev, true);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302116 pm_runtime_enable(host->dev);
2117 pm_runtime_get_sync(host->dev);
2118 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
2119 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002120
Balaji T K92a3aeb2012-02-24 21:14:34 +05302121 omap_hsmmc_context_save(host);
2122
Balaji T K96181952014-05-09 22:16:48 +05302123 host->dbclk = devm_clk_get(&pdev->dev, "mmchsdb_fck");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302124 /*
2125 * MMC can still work without debounce clock.
2126 */
2127 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302128 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05302129 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302130 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302131 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07002132 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002133
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002134 /* Since we do only SG emulation, we can have as many segs
2135 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002136 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002137
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002138 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2139 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2140 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2141 mmc->max_seg_size = mmc->max_req_size;
2142
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002143 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07002144 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002145
Andreas Fenkart326119c2014-11-08 15:33:14 +01002146 mmc->caps |= mmc_pdata(host)->caps;
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002147 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002148 mmc->caps |= MMC_CAP_4_BIT_DATA;
2149
Andreas Fenkart326119c2014-11-08 15:33:14 +01002150 if (mmc_pdata(host)->nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002151 mmc->caps |= MMC_CAP_NONREMOVABLE;
2152
NeilBrownfdb9de12015-01-13 08:23:18 +13002153 mmc->pm_caps |= mmc_pdata(host)->pm_caps;
Eliad Peller6fdc75d2011-11-22 16:02:18 +02002154
Denis Karpov70a33412009-09-22 16:44:59 -07002155 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002156
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302157 if (!pdev->dev.of_node) {
2158 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
2159 if (!res) {
2160 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
2161 ret = -ENXIO;
2162 goto err_irq;
2163 }
2164 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002165
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302166 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
2167 if (!res) {
2168 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
2169 ret = -ENXIO;
2170 goto err_irq;
2171 }
2172 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002173 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002174
Russell King26b88522012-04-13 12:27:37 +01002175 dma_cap_zero(mask);
2176 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01002177
Matt Porterd272fbf2013-05-10 17:42:34 +05302178 host->rx_chan =
2179 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2180 &rx_req, &pdev->dev, "rx");
2181
Russell King26b88522012-04-13 12:27:37 +01002182 if (!host->rx_chan) {
2183 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002184 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002185 goto err_irq;
2186 }
2187
Matt Porterd272fbf2013-05-10 17:42:34 +05302188 host->tx_chan =
2189 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2190 &tx_req, &pdev->dev, "tx");
2191
Russell King26b88522012-04-13 12:27:37 +01002192 if (!host->tx_chan) {
2193 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002194 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002195 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01002196 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002197
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002198 /* Request IRQ for MMC operations */
Balaji T Ke1538ed2014-05-09 22:16:49 +05302199 ret = devm_request_irq(&pdev->dev, host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002200 mmc_hostname(mmc), host);
2201 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302202 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002203 goto err_irq;
2204 }
2205
Andreas Fenkartf7f0f032015-07-07 20:38:43 +02002206 if (omap_hsmmc_have_reg()) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002207 ret = omap_hsmmc_reg_get(host);
2208 if (ret)
Andreas Fenkartbb09d152014-11-08 15:33:11 +01002209 goto err_irq;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002210 }
2211
Andreas Fenkart326119c2014-11-08 15:33:14 +01002212 mmc->ocr_avail = mmc_pdata(host)->ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002213
Adrian Hunterb4175772010-05-26 14:42:06 -07002214 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002215
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002216 /*
2217 * For now, only support SDIO interrupt if we have a separate
2218 * wake-up interrupt configured from device tree. This is because
2219 * the wake-up interrupt is needed for idle state and some
2220 * platforms need special quirks. And we don't want to add new
2221 * legacy mux platform init code callbacks any longer as we
2222 * are moving to DT based booting anyways.
2223 */
2224 ret = omap_hsmmc_configure_wake_irq(host);
2225 if (!ret)
2226 mmc->caps |= MMC_CAP_SDIO_IRQ;
2227
Adrian Hunterb62f6222009-09-22 16:45:01 -07002228 omap_hsmmc_protect_card(host);
2229
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002230 mmc_add_host(mmc);
2231
Andreas Fenkart326119c2014-11-08 15:33:14 +01002232 if (mmc_pdata(host)->name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002233 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2234 if (ret < 0)
2235 goto err_slot_name;
2236 }
Andreas Fenkartcde592c2015-03-03 13:28:15 +01002237 if (host->get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002238 ret = device_create_file(&mmc->class_dev,
Andreas Fenkartcde592c2015-03-03 13:28:15 +01002239 &dev_attr_cover_switch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002240 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002241 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002242 }
2243
Denis Karpov70a33412009-09-22 16:44:59 -07002244 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302245 pm_runtime_mark_last_busy(host->dev);
2246 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002247
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002248 return 0;
2249
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002250err_slot_name:
2251 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002252err_irq:
Tony Lindgren5b83b222015-05-21 15:51:52 -07002253 device_init_wakeup(&pdev->dev, false);
Russell Kingc5c98922012-04-13 12:14:39 +01002254 if (host->tx_chan)
2255 dma_release_channel(host->tx_chan);
2256 if (host->rx_chan)
2257 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302258 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002259 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302260 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302261 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002262err1:
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002263err_gpio:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002264 mmc_free_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002265err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002266 return ret;
2267}
2268
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002269static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002270{
Denis Karpov70a33412009-09-22 16:44:59 -07002271 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002272
Felipe Balbi927ce942012-03-14 11:18:27 +02002273 pm_runtime_get_sync(host->dev);
2274 mmc_remove_host(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002275
Russell Kingc5c98922012-04-13 12:14:39 +01002276 if (host->tx_chan)
2277 dma_release_channel(host->tx_chan);
2278 if (host->rx_chan)
2279 dma_release_channel(host->rx_chan);
2280
Felipe Balbi927ce942012-03-14 11:18:27 +02002281 pm_runtime_put_sync(host->dev);
2282 pm_runtime_disable(host->dev);
Tony Lindgren5b83b222015-05-21 15:51:52 -07002283 device_init_wakeup(&pdev->dev, false);
Balaji T K96181952014-05-09 22:16:48 +05302284 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302285 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002286
Balaji T K9d1f0282012-10-15 21:35:07 +05302287 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002288
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002289 return 0;
2290}
2291
Russ Dill3d3bbfb2015-02-27 13:24:34 +02002292#ifdef CONFIG_PM_SLEEP
Kevin Hilmana791daa2010-05-26 14:42:07 -07002293static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002294{
Felipe Balbi927ce942012-03-14 11:18:27 +02002295 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2296
2297 if (!host)
2298 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002299
Felipe Balbi927ce942012-03-14 11:18:27 +02002300 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002301
2302 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002303 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2304 OMAP_HSMMC_WRITE(host->base, IE, 0);
2305 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Felipe Balbi927ce942012-03-14 11:18:27 +02002306 OMAP_HSMMC_WRITE(host->base, HCTL,
2307 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2308 }
2309
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302310 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302311 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002312
Eliad Peller31f9d462011-11-22 16:02:17 +02002313 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002314 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002315}
2316
2317/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002318static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002319{
Felipe Balbi927ce942012-03-14 11:18:27 +02002320 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2321
2322 if (!host)
2323 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002324
Felipe Balbi927ce942012-03-14 11:18:27 +02002325 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002326
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302327 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302328 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002329
Felipe Balbi927ce942012-03-14 11:18:27 +02002330 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2331 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002332
Felipe Balbi927ce942012-03-14 11:18:27 +02002333 omap_hsmmc_protect_card(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002334 pm_runtime_mark_last_busy(host->dev);
2335 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002336 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002337}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002338#endif
2339
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302340static int omap_hsmmc_runtime_suspend(struct device *dev)
2341{
2342 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002343 unsigned long flags;
Andreas Fenkartf9459012014-05-29 10:28:03 +02002344 int ret = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302345
2346 host = platform_get_drvdata(to_platform_device(dev));
2347 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002348 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302349
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002350 spin_lock_irqsave(&host->irq_lock, flags);
2351 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2352 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2353 /* disable sdio irq handling to prevent race */
2354 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2355 OMAP_HSMMC_WRITE(host->base, IE, 0);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002356
2357 if (!(OMAP_HSMMC_READ(host->base, PSTATE) & DLEV_DAT(1))) {
2358 /*
2359 * dat1 line low, pending sdio irq
2360 * race condition: possible irq handler running on
2361 * multi-core, abort
2362 */
2363 dev_dbg(dev, "pending sdio irq, abort suspend\n");
2364 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2365 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2366 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
2367 pm_runtime_mark_last_busy(dev);
2368 ret = -EBUSY;
2369 goto abort;
2370 }
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002371
Andreas Fenkart97978a42014-05-29 10:28:04 +02002372 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002373 } else {
2374 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002375 }
Andreas Fenkart97978a42014-05-29 10:28:04 +02002376
Andreas Fenkartf9459012014-05-29 10:28:03 +02002377abort:
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002378 spin_unlock_irqrestore(&host->irq_lock, flags);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002379 return ret;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302380}
2381
2382static int omap_hsmmc_runtime_resume(struct device *dev)
2383{
2384 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002385 unsigned long flags;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302386
2387 host = platform_get_drvdata(to_platform_device(dev));
2388 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002389 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302390
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002391 spin_lock_irqsave(&host->irq_lock, flags);
2392 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2393 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002394
Andreas Fenkart97978a42014-05-29 10:28:04 +02002395 pinctrl_pm_select_default_state(host->dev);
2396
2397 /* irq lost, if pinmux incorrect */
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002398 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2399 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2400 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002401 } else {
2402 pinctrl_pm_select_default_state(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002403 }
2404 spin_unlock_irqrestore(&host->irq_lock, flags);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302405 return 0;
2406}
2407
Kevin Hilmana791daa2010-05-26 14:42:07 -07002408static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Russ Dill3d3bbfb2015-02-27 13:24:34 +02002409 SET_SYSTEM_SLEEP_PM_OPS(omap_hsmmc_suspend, omap_hsmmc_resume)
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302410 .runtime_suspend = omap_hsmmc_runtime_suspend,
2411 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002412};
2413
2414static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002415 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002416 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002417 .driver = {
2418 .name = DRIVER_NAME,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002419 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302420 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002421 },
2422};
2423
Felipe Balbib7964502012-03-14 11:18:32 +02002424module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002425MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2426MODULE_LICENSE("GPL");
2427MODULE_ALIAS("platform:" DRIVER_NAME);
2428MODULE_AUTHOR("Texas Instruments Inc");