blob: 65c0742356b99d52154de4cba808b8d76d7f3a49 [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f42011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
Russell Kingc5c98922012-04-13 12:14:39 +010022#include <linux/dmaengine.h>
Denis Karpovd900f712009-09-22 16:44:38 -070023#include <linux/seq_file.h>
Felipe Balbi031cd032013-07-11 16:09:05 +030024#include <linux/sizes.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010025#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/dma-mapping.h>
28#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010029#include <linux/timer.h>
30#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053031#include <linux/of.h>
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>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010035#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070036#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070037#include <linux/mmc/mmc.h>
NeilBrown41afa3142015-01-13 08:23:18 +130038#include <linux/mmc/slot-gpio.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010039#include <linux/io.h>
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +020040#include <linux/irq.h>
Adrian Hunterdb0fefc2010-02-15 10:03:34 -080041#include <linux/gpio.h>
42#include <linux/regulator/consumer.h>
Daniel Mack46b76032012-10-15 21:35:05 +053043#include <linux/pinctrl/consumer.h>
Balaji T Kfa4aa2d2011-07-01 22:09:35 +053044#include <linux/pm_runtime.h>
Tony Lindgren5b83b222015-05-21 15:51:52 -070045#include <linux/pm_wakeirq.h>
Andreas Fenkart55143432014-11-08 15:33:09 +010046#include <linux/platform_data/hsmmc-omap.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010047
48/* OMAP HSMMC Host Controller Registers */
Denis Karpov11dd62a2009-09-22 16:44:43 -070049#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010050#define OMAP_HSMMC_CON 0x002C
Balaji T Ka2e77152014-01-21 19:54:42 +053051#define OMAP_HSMMC_SDMASA 0x0100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010052#define OMAP_HSMMC_BLK 0x0104
53#define OMAP_HSMMC_ARG 0x0108
54#define OMAP_HSMMC_CMD 0x010C
55#define OMAP_HSMMC_RSP10 0x0110
56#define OMAP_HSMMC_RSP32 0x0114
57#define OMAP_HSMMC_RSP54 0x0118
58#define OMAP_HSMMC_RSP76 0x011C
59#define OMAP_HSMMC_DATA 0x0120
Andreas Fenkartbb0635f2014-05-29 10:28:01 +020060#define OMAP_HSMMC_PSTATE 0x0124
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010061#define OMAP_HSMMC_HCTL 0x0128
62#define OMAP_HSMMC_SYSCTL 0x012C
63#define OMAP_HSMMC_STAT 0x0130
64#define OMAP_HSMMC_IE 0x0134
65#define OMAP_HSMMC_ISE 0x0138
Balaji T Ka2e77152014-01-21 19:54:42 +053066#define OMAP_HSMMC_AC12 0x013C
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010067#define OMAP_HSMMC_CAPA 0x0140
68
69#define VS18 (1 << 26)
70#define VS30 (1 << 25)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053071#define HSS (1 << 21)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010072#define SDVS18 (0x5 << 9)
73#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080074#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010075#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010076#define SDVSCLR 0xFFFFF1FF
77#define SDVSDET 0x00000400
78#define AUTOIDLE 0x1
79#define SDBP (1 << 8)
80#define DTO 0xe
81#define ICE 0x1
82#define ICS 0x2
83#define CEN (1 << 2)
Balaji T Ked164182013-10-21 00:25:21 +053084#define CLKD_MAX 0x3FF /* max clock divisor: 1023 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010085#define CLKD_MASK 0x0000FFC0
86#define CLKD_SHIFT 6
87#define DTO_MASK 0x000F0000
88#define DTO_SHIFT 16
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010089#define INIT_STREAM (1 << 1)
Balaji T Ka2e77152014-01-21 19:54:42 +053090#define ACEN_ACMD23 (2 << 2)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010091#define DP_SELECT (1 << 21)
92#define DDIR (1 << 4)
Venkatraman Sa7e96872012-11-19 22:00:01 +053093#define DMAE 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010094#define MSBS (1 << 5)
95#define BCE (1 << 1)
96#define FOUR_BIT (1 << 1)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053097#define HSPE (1 << 2)
Balaji T K5a52b082014-05-29 10:28:02 +020098#define IWE (1 << 24)
Balaji T K03b5d922012-04-09 12:08:33 +053099#define DDR (1 << 19)
Balaji T K5a52b082014-05-29 10:28:02 +0200100#define CLKEXTFREE (1 << 16)
101#define CTPL (1 << 11)
Jarkko Lavinen73153012008-11-21 16:49:54 +0200102#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100103#define OD 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100104#define STAT_CLEAR 0xFFFFFFFF
105#define INIT_STREAM_CMD 0x00000000
106#define DUAL_VOLT_OCR_BIT 7
107#define SRC (1 << 25)
108#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700109#define SOFTRESET (1 << 1)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100110
Andreas Fenkartf9459012014-05-29 10:28:03 +0200111/* PSTATE */
112#define DLEV_DAT(x) (1 << (20 + (x)))
113
Venkatraman Sa7e96872012-11-19 22:00:01 +0530114/* Interrupt masks for IE and ISE register */
115#define CC_EN (1 << 0)
116#define TC_EN (1 << 1)
117#define BWR_EN (1 << 4)
118#define BRR_EN (1 << 5)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200119#define CIRQ_EN (1 << 8)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530120#define ERR_EN (1 << 15)
121#define CTO_EN (1 << 16)
122#define CCRC_EN (1 << 17)
123#define CEB_EN (1 << 18)
124#define CIE_EN (1 << 19)
125#define DTO_EN (1 << 20)
126#define DCRC_EN (1 << 21)
127#define DEB_EN (1 << 22)
Balaji T Ka2e77152014-01-21 19:54:42 +0530128#define ACE_EN (1 << 24)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530129#define CERR_EN (1 << 28)
130#define BADA_EN (1 << 29)
131
Balaji T Ka2e77152014-01-21 19:54:42 +0530132#define INT_EN_MASK (BADA_EN | CERR_EN | ACE_EN | DEB_EN | DCRC_EN |\
Venkatraman Sa7e96872012-11-19 22:00:01 +0530133 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
134 BRR_EN | BWR_EN | TC_EN | CC_EN)
135
Balaji T Ka2e77152014-01-21 19:54:42 +0530136#define CNI (1 << 7)
137#define ACIE (1 << 4)
138#define ACEB (1 << 3)
139#define ACCE (1 << 2)
140#define ACTO (1 << 1)
141#define ACNE (1 << 0)
142
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530143#define MMC_AUTOSUSPEND_DELAY 100
Jianpeng Ma1e881782013-10-21 00:25:20 +0530144#define MMC_TIMEOUT_MS 20 /* 20 mSec */
145#define MMC_TIMEOUT_US 20000 /* 20000 micro Sec */
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400146#define OMAP_MMC_MIN_CLOCK 400000
147#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530148#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100149
Balaji T Ke99448f2014-02-19 20:26:40 +0530150#define VDD_1V8 1800000 /* 180000 uV */
151#define VDD_3V0 3000000 /* 300000 uV */
152#define VDD_165_195 (ffs(MMC_VDD_165_195) - 1)
153
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100154/*
155 * One controller can have multiple slots, like on some omap boards using
156 * omap.c controller driver. Luckily this is not currently done on any known
157 * omap_hsmmc.c device.
158 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100159#define mmc_pdata(host) host->pdata
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100160
161/*
162 * MMC Host controller read/write API's
163 */
164#define OMAP_HSMMC_READ(base, reg) \
165 __raw_readl((base) + OMAP_HSMMC_##reg)
166
167#define OMAP_HSMMC_WRITE(base, reg, val) \
168 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
169
Per Forlin9782aff2011-07-01 18:55:23 +0200170struct omap_hsmmc_next {
171 unsigned int dma_len;
172 s32 cookie;
173};
174
Denis Karpov70a33412009-09-22 16:44:59 -0700175struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100176 struct device *dev;
177 struct mmc_host *mmc;
178 struct mmc_request *mrq;
179 struct mmc_command *cmd;
180 struct mmc_data *data;
181 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100182 struct clk *dbclk;
Balaji T Ke99448f2014-02-19 20:26:40 +0530183 struct regulator *pbias;
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700184 bool pbias_enabled;
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 Fenkart55143432014-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
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530247static int omap_hsmmc_enable_supply(struct mmc_host *mmc)
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530248{
249 int ret;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530250 struct omap_hsmmc_host *host = mmc_priv(mmc);
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530251 struct mmc_ios *ios = &mmc->ios;
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530252
253 if (mmc->supply.vmmc) {
Kishon Vijay Abraham I1d17f302015-08-27 14:44:06 +0530254 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, ios->vdd);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530255 if (ret)
256 return ret;
257 }
258
259 /* Enable interface voltage rail, if needed */
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530260 if (mmc->supply.vqmmc && !host->vqmmc_enabled) {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530261 ret = regulator_enable(mmc->supply.vqmmc);
262 if (ret) {
263 dev_err(mmc_dev(mmc), "vmmc_aux reg enable failed\n");
264 goto err_vqmmc;
265 }
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530266 host->vqmmc_enabled = 1;
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530267 }
268
269 return 0;
270
271err_vqmmc:
272 if (mmc->supply.vmmc)
273 mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
274
275 return ret;
276}
277
278static int omap_hsmmc_disable_supply(struct mmc_host *mmc)
279{
280 int ret;
281 int status;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530282 struct omap_hsmmc_host *host = mmc_priv(mmc);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530283
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530284 if (mmc->supply.vqmmc && host->vqmmc_enabled) {
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530285 ret = regulator_disable(mmc->supply.vqmmc);
286 if (ret) {
287 dev_err(mmc_dev(mmc), "vmmc_aux reg disable failed\n");
288 return ret;
289 }
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +0530290 host->vqmmc_enabled = 0;
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530291 }
292
293 if (mmc->supply.vmmc) {
294 ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0);
295 if (ret)
296 goto err_set_ocr;
297 }
298
299 return 0;
300
301err_set_ocr:
302 if (mmc->supply.vqmmc) {
303 status = regulator_enable(mmc->supply.vqmmc);
304 if (status)
305 dev_err(mmc_dev(mmc), "vmmc_aux re-enable failed\n");
306 }
307
308 return ret;
309}
310
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530311static int omap_hsmmc_set_pbias(struct omap_hsmmc_host *host, bool power_on,
312 int vdd)
313{
314 int ret;
315
316 if (!host->pbias)
317 return 0;
318
319 if (power_on) {
320 if (vdd <= VDD_165_195)
321 ret = regulator_set_voltage(host->pbias, VDD_1V8,
322 VDD_1V8);
323 else
324 ret = regulator_set_voltage(host->pbias, VDD_3V0,
325 VDD_3V0);
326 if (ret < 0) {
327 dev_err(host->dev, "pbias set voltage fail\n");
328 return ret;
329 }
330
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700331 if (host->pbias_enabled == 0) {
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530332 ret = regulator_enable(host->pbias);
333 if (ret) {
334 dev_err(host->dev, "pbias reg enable fail\n");
335 return ret;
336 }
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700337 host->pbias_enabled = 1;
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530338 }
339 } else {
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700340 if (host->pbias_enabled == 1) {
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 }
Tony Lindgrenbb2726b2015-10-07 06:22:24 -0700346 host->pbias_enabled = 0;
Kishon Vijay Abraham Iec85c952015-08-27 14:44:01 +0530347 }
348 }
349
350 return 0;
351}
352
Andreas Fenkart1ca4d352016-03-21 00:58:08 +0100353static int omap_hsmmc_set_power(struct omap_hsmmc_host *host, int power_on,
354 int vdd)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800355{
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)
Andreas Fenkart1ca4d352016-03-21 00:58:08 +0100360 return mmc_pdata(host)->set_power(host->dev, power_on, vdd);
Andreas Fenkartf7f0f032015-07-07 20:38:43 +0200361
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 Fenkart1ca4d352016-03-21 00:58:08 +0100370 mmc_pdata(host)->before_set_reg(host->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 I1d17f302015-08-27 14:44:06 +0530390 ret = omap_hsmmc_enable_supply(mmc);
Kishon Vijay Abraham I2a17f842015-08-27 14:44:00 +0530391 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 Fenkart1ca4d352016-03-21 00:58:08 +0100404 mmc_pdata(host)->after_set_reg(host->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);
Tony Lindgren123e20b2015-10-07 06:22:25 -0700479 if ((ret != -ENODEV) && host->dev->of_node)
Kishon Vijay Abraham I7d607f92015-08-27 14:43:53 +0530480 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);
Tony Lindgren123e20b2015-10-07 06:22:25 -0700494 if ((ret != -ENODEV) && host->dev->of_node)
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530495 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 I91437572016-01-14 14:45:20 +0530504 if ((ret != -ENODEV) && host->dev->of_node) {
505 dev_err(host->dev,
506 "SD card detect fail? enable CONFIG_REGULATOR_PBIAS\n");
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530507 return ret;
Kishon Vijay Abraham I91437572016-01-14 14:45:20 +0530508 }
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530509 dev_dbg(host->dev, "unable to get pbias regulator %ld\n",
Kishon Vijay Abraham Ic299dc32015-08-27 14:43:55 +0530510 PTR_ERR(host->pbias));
511 host->pbias = NULL;
Kishon Vijay Abraham I6a9b2ff2015-08-27 14:43:54 +0530512 }
Balaji T Ke99448f2014-02-19 20:26:40 +0530513
Balaji T K987fd492014-02-19 20:26:40 +0530514 /* For eMMC do not power off when not in sleep state */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100515 if (mmc_pdata(host)->no_regulator_off_init)
Balaji T K987fd492014-02-19 20:26:40 +0530516 return 0;
Adrian Huntere840ce12011-05-06 12:14:10 +0300517
Kishon Vijay Abraham Ic8518ef2015-08-27 14:44:03 +0530518 ret = omap_hsmmc_disable_boot_regulators(host);
519 if (ret)
520 return ret;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800521
522 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800523}
524
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100525static irqreturn_t omap_hsmmc_cover_irq(int irq, void *dev_id);
NeilBrown41afa3142015-01-13 08:23:18 +1300526
527static int omap_hsmmc_gpio_init(struct mmc_host *mmc,
528 struct omap_hsmmc_host *host,
Andreas Fenkart1e363e32014-11-08 15:33:15 +0100529 struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800530{
531 int ret;
532
Andreas Fenkartb7a56462015-03-20 15:53:54 +0100533 if (gpio_is_valid(pdata->gpio_cod)) {
534 ret = mmc_gpio_request_cd(mmc, pdata->gpio_cod, 0);
Adrian Hunterb702b102010-02-15 10:03:35 -0800535 if (ret)
536 return ret;
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100537
538 host->get_cover_state = omap_hsmmc_get_cover_state;
539 mmc_gpio_set_cd_isr(mmc, omap_hsmmc_cover_irq);
Andreas Fenkartb7a56462015-03-20 15:53:54 +0100540 } else if (gpio_is_valid(pdata->gpio_cd)) {
541 ret = mmc_gpio_request_cd(mmc, pdata->gpio_cd, 0);
Andreas Fenkartcde592c2015-03-03 13:28:15 +0100542 if (ret)
543 return ret;
544
545 host->card_detect = omap_hsmmc_card_detect;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100546 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800547
Andreas Fenkart326119c2014-11-08 15:33:14 +0100548 if (gpio_is_valid(pdata->gpio_wp)) {
NeilBrown41afa3142015-01-13 08:23:18 +1300549 ret = mmc_gpio_request_ro(mmc, pdata->gpio_wp);
Adrian Hunterb702b102010-02-15 10:03:35 -0800550 if (ret)
NeilBrown41afa3142015-01-13 08:23:18 +1300551 return ret;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100552 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800553
554 return 0;
Adrian Hunterb702b102010-02-15 10:03:35 -0800555}
556
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100557/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300558 * Start clock to the card
559 */
560static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
561{
562 OMAP_HSMMC_WRITE(host->base, SYSCTL,
563 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
564}
565
566/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100567 * Stop clock to the card
568 */
Denis Karpov70a33412009-09-22 16:44:59 -0700569static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100570{
571 OMAP_HSMMC_WRITE(host->base, SYSCTL,
572 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
573 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900574 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100575}
576
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700577static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
578 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700579{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200580 u32 irq_mask = INT_EN_MASK;
581 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700582
583 if (host->use_dma)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200584 irq_mask &= ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700585
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700586 /* Disable timeout for erases */
587 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530588 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700589
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200590 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700591 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
592 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200593
594 /* latch pending CIRQ, but don't signal MMC core */
595 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
596 irq_mask |= CIRQ_EN;
Adrian Hunterb4175772010-05-26 14:42:06 -0700597 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200598 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700599}
600
601static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
602{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200603 u32 irq_mask = 0;
604 unsigned long flags;
605
606 spin_lock_irqsave(&host->irq_lock, flags);
607 /* no transfer running but need to keep cirq if enabled */
608 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
609 irq_mask |= CIRQ_EN;
610 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
611 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Adrian Hunterb4175772010-05-26 14:42:06 -0700612 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200613 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700614}
615
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300616/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530617static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300618{
619 u16 dsor = 0;
620
621 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530622 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530623 if (dsor > CLKD_MAX)
624 dsor = CLKD_MAX;
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300625 }
626
627 return dsor;
628}
629
Andy Shevchenko5934df22011-05-06 12:14:06 +0300630static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
631{
632 struct mmc_ios *ios = &host->mmc->ios;
633 unsigned long regval;
634 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530635 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300636
Venkatraman S8986d312012-08-07 19:10:38 +0530637 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300638
639 omap_hsmmc_stop_clock(host);
640
641 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
642 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530643 clkdiv = calc_divisor(host, ios);
644 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300645 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
646 OMAP_HSMMC_WRITE(host->base, SYSCTL,
647 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
648
649 /* Wait till the ICS bit is set */
650 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
651 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
652 && time_before(jiffies, timeout))
653 cpu_relax();
654
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530655 /*
656 * Enable High-Speed Support
657 * Pre-Requisites
658 * - Controller should support High-Speed-Enable Bit
659 * - Controller should not be using DDR Mode
660 * - Controller should advertise that it supports High Speed
661 * in capabilities register
662 * - MMC/SD clock coming out of controller > 25MHz
663 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100664 if ((mmc_pdata(host)->features & HSMMC_HAS_HSPE_SUPPORT) &&
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900665 (ios->timing != MMC_TIMING_MMC_DDR52) &&
Ulf Hansson903101a2014-11-25 13:05:13 +0100666 (ios->timing != MMC_TIMING_UHS_DDR50) &&
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530667 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
668 regval = OMAP_HSMMC_READ(host->base, HCTL);
669 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
670 regval |= HSPE;
671 else
672 regval &= ~HSPE;
673
674 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
675 }
676
Andy Shevchenko5934df22011-05-06 12:14:06 +0300677 omap_hsmmc_start_clock(host);
678}
679
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400680static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
681{
682 struct mmc_ios *ios = &host->mmc->ios;
683 u32 con;
684
685 con = OMAP_HSMMC_READ(host->base, CON);
Ulf Hansson903101a2014-11-25 13:05:13 +0100686 if (ios->timing == MMC_TIMING_MMC_DDR52 ||
687 ios->timing == MMC_TIMING_UHS_DDR50)
Balaji T K03b5d922012-04-09 12:08:33 +0530688 con |= DDR; /* configure in DDR mode */
689 else
690 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400691 switch (ios->bus_width) {
692 case MMC_BUS_WIDTH_8:
693 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
694 break;
695 case MMC_BUS_WIDTH_4:
696 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
697 OMAP_HSMMC_WRITE(host->base, HCTL,
698 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
699 break;
700 case MMC_BUS_WIDTH_1:
701 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
702 OMAP_HSMMC_WRITE(host->base, HCTL,
703 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
704 break;
705 }
706}
707
708static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
709{
710 struct mmc_ios *ios = &host->mmc->ios;
711 u32 con;
712
713 con = OMAP_HSMMC_READ(host->base, CON);
714 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
715 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
716 else
717 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
718}
719
Denis Karpov11dd62a2009-09-22 16:44:43 -0700720#ifdef CONFIG_PM
721
722/*
723 * Restore the MMC host context, if it was lost as result of a
724 * power state change.
725 */
Denis Karpov70a33412009-09-22 16:44:59 -0700726static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700727{
728 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400729 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700730 unsigned long timeout;
731
Tony Lindgren0a82e062013-10-21 00:25:19 +0530732 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
733 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
734 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
735 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
736 return 0;
737
738 host->context_loss++;
739
Balaji T Kc2200ef2012-03-07 09:55:30 -0500740 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700741 if (host->power_mode != MMC_POWER_OFF &&
742 (1 << ios->vdd) <= MMC_VDD_23_24)
743 hctl = SDVS18;
744 else
745 hctl = SDVS30;
746 capa = VS30 | VS18;
747 } else {
748 hctl = SDVS18;
749 capa = VS18;
750 }
751
Balaji T K5a52b082014-05-29 10:28:02 +0200752 if (host->mmc->caps & MMC_CAP_SDIO_IRQ)
753 hctl |= IWE;
754
Denis Karpov11dd62a2009-09-22 16:44:43 -0700755 OMAP_HSMMC_WRITE(host->base, HCTL,
756 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
757
758 OMAP_HSMMC_WRITE(host->base, CAPA,
759 OMAP_HSMMC_READ(host->base, CAPA) | capa);
760
761 OMAP_HSMMC_WRITE(host->base, HCTL,
762 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
763
764 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
765 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
766 && time_before(jiffies, timeout))
767 ;
768
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200769 OMAP_HSMMC_WRITE(host->base, ISE, 0);
770 OMAP_HSMMC_WRITE(host->base, IE, 0);
771 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700772
773 /* Do not initialize card-specific things if the power is off */
774 if (host->power_mode == MMC_POWER_OFF)
775 goto out;
776
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400777 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700778
Andy Shevchenko5934df22011-05-06 12:14:06 +0300779 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700780
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400781 omap_hsmmc_set_bus_mode(host);
782
Denis Karpov11dd62a2009-09-22 16:44:43 -0700783out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530784 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
785 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700786 return 0;
787}
788
789/*
790 * Save the MMC host context (store the number of power state changes so far).
791 */
Denis Karpov70a33412009-09-22 16:44:59 -0700792static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700793{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530794 host->con = OMAP_HSMMC_READ(host->base, CON);
795 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
796 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
797 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700798}
799
800#else
801
Denis Karpov70a33412009-09-22 16:44:59 -0700802static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700803{
804 return 0;
805}
806
Denis Karpov70a33412009-09-22 16:44:59 -0700807static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700808{
809}
810
811#endif
812
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100813/*
814 * Send init stream sequence to card
815 * before sending IDLE command
816 */
Denis Karpov70a33412009-09-22 16:44:59 -0700817static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100818{
819 int reg = 0;
820 unsigned long timeout;
821
Adrian Hunterb62f6222009-09-22 16:45:01 -0700822 if (host->protect_card)
823 return;
824
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100825 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700826
827 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100828 OMAP_HSMMC_WRITE(host->base, CON,
829 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
830 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
831
832 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530833 while ((reg != CC_EN) && time_before(jiffies, timeout))
834 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100835
836 OMAP_HSMMC_WRITE(host->base, CON,
837 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700838
839 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
840 OMAP_HSMMC_READ(host->base, STAT);
841
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100842 enable_irq(host->irq);
843}
844
845static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700846int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100847{
848 int r = 1;
849
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100850 if (host->get_cover_state)
Andreas Fenkart80412ca2014-11-08 15:33:17 +0100851 r = host->get_cover_state(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100852 return r;
853}
854
855static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700856omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100857 char *buf)
858{
859 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700860 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100861
Denis Karpov70a33412009-09-22 16:44:59 -0700862 return sprintf(buf, "%s\n",
863 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100864}
865
Denis Karpov70a33412009-09-22 16:44:59 -0700866static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100867
868static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700869omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100870 char *buf)
871{
872 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700873 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100874
Andreas Fenkart326119c2014-11-08 15:33:14 +0100875 return sprintf(buf, "%s\n", mmc_pdata(host)->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100876}
877
Denis Karpov70a33412009-09-22 16:44:59 -0700878static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100879
880/*
881 * Configure the response type and send the cmd.
882 */
883static void
Denis Karpov70a33412009-09-22 16:44:59 -0700884omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100885 struct mmc_data *data)
886{
887 int cmdreg = 0, resptype = 0, cmdtype = 0;
888
Venkatraman S8986d312012-08-07 19:10:38 +0530889 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100890 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
891 host->cmd = cmd;
892
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700893 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100894
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200895 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100896 if (cmd->flags & MMC_RSP_PRESENT) {
897 if (cmd->flags & MMC_RSP_136)
898 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200899 else if (cmd->flags & MMC_RSP_BUSY) {
900 resptype = 3;
901 host->response_busy = 1;
902 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100903 resptype = 2;
904 }
905
906 /*
907 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
908 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
909 * a val of 0x3, rest 0x0.
910 */
911 if (cmd == host->mrq->stop)
912 cmdtype = 0x3;
913
914 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
915
Balaji T Ka2e77152014-01-21 19:54:42 +0530916 if ((host->flags & AUTO_CMD23) && mmc_op_multi(cmd->opcode) &&
917 host->mrq->sbc) {
918 cmdreg |= ACEN_ACMD23;
919 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg);
920 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100921 if (data) {
922 cmdreg |= DP_SELECT | MSBS | BCE;
923 if (data->flags & MMC_DATA_READ)
924 cmdreg |= DDIR;
925 else
926 cmdreg &= ~(DDIR);
927 }
928
929 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530930 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100931
Adrian Hunterb4175772010-05-26 14:42:06 -0700932 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700933
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100934 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
935 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
936}
937
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200938static int
Denis Karpov70a33412009-09-22 16:44:59 -0700939omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200940{
941 if (data->flags & MMC_DATA_WRITE)
942 return DMA_TO_DEVICE;
943 else
944 return DMA_FROM_DEVICE;
945}
946
Russell Kingc5c98922012-04-13 12:14:39 +0100947static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
948 struct mmc_data *data)
949{
950 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
951}
952
Adrian Hunterb4175772010-05-26 14:42:06 -0700953static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
954{
955 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530956 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700957
Venkatraman S31463b12012-04-09 12:08:34 +0530958 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700959 host->req_in_progress = 0;
960 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530961 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700962
963 omap_hsmmc_disable_irq(host);
964 /* Do not complete the request if DMA is still in progress */
965 if (mrq->data && host->use_dma && dma_ch != -1)
966 return;
967 host->mrq = NULL;
968 mmc_request_done(host->mmc, mrq);
969}
970
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100971/*
972 * Notify the transfer complete to MMC core
973 */
974static void
Denis Karpov70a33412009-09-22 16:44:59 -0700975omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100976{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200977 if (!data) {
978 struct mmc_request *mrq = host->mrq;
979
Adrian Hunter23050102009-09-22 16:44:57 -0700980 /* TC before CC from CMD6 - don't know why, but it happens */
981 if (host->cmd && host->cmd->opcode == 6 &&
982 host->response_busy) {
983 host->response_busy = 0;
984 return;
985 }
986
Adrian Hunterb4175772010-05-26 14:42:06 -0700987 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200988 return;
989 }
990
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100991 host->data = NULL;
992
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100993 if (!data->error)
994 data->bytes_xfered += data->blocks * (data->blksz);
995 else
996 data->bytes_xfered = 0;
997
Balaji T Kbf129e12014-01-21 19:54:42 +0530998 if (data->stop && (data->error || !host->mrq->sbc))
999 omap_hsmmc_start_command(host, data->stop, NULL);
1000 else
Adrian Hunterb4175772010-05-26 14:42:06 -07001001 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001002}
1003
1004/*
1005 * Notify the core about command completion
1006 */
1007static void
Denis Karpov70a33412009-09-22 16:44:59 -07001008omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001009{
Balaji T Kbf129e12014-01-21 19:54:42 +05301010 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) &&
Balaji T Ka2e77152014-01-21 19:54:42 +05301011 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) {
Balaji T K2177fa92014-05-09 22:16:52 +05301012 host->cmd = NULL;
Balaji T Kbf129e12014-01-21 19:54:42 +05301013 omap_hsmmc_start_dma_transfer(host);
1014 omap_hsmmc_start_command(host, host->mrq->cmd,
1015 host->mrq->data);
1016 return;
1017 }
1018
Balaji T K2177fa92014-05-09 22:16:52 +05301019 host->cmd = NULL;
1020
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001021 if (cmd->flags & MMC_RSP_PRESENT) {
1022 if (cmd->flags & MMC_RSP_136) {
1023 /* response type 2 */
1024 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
1025 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
1026 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
1027 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
1028 } else {
1029 /* response types 1, 1b, 3, 4, 5, 6 */
1030 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
1031 }
1032 }
Adrian Hunterb4175772010-05-26 14:42:06 -07001033 if ((host->data == NULL && !host->response_busy) || cmd->error)
Balaji T Kd4b2c372014-01-21 19:54:42 +05301034 omap_hsmmc_request_done(host, host->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001035}
1036
1037/*
1038 * DMA clean up for command errors
1039 */
Denis Karpov70a33412009-09-22 16:44:59 -07001040static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001041{
Adrian Hunterb4175772010-05-26 14:42:06 -07001042 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +05301043 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -07001044
Jarkko Lavinen82788ff2008-12-05 12:31:46 +02001045 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001046
Venkatraman S31463b12012-04-09 12:08:34 +05301047 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001048 dma_ch = host->dma_ch;
1049 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +05301050 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001051
1052 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +01001053 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
1054
1055 dmaengine_terminate_all(chan);
1056 dma_unmap_sg(chan->device->dev,
1057 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001058 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +01001059
Per Forlin053bf342011-11-07 21:55:11 +05301060 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001061 }
1062 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001063}
1064
1065/*
1066 * Readable error output
1067 */
1068#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001069static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001070{
1071 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001072 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001073 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1074 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1075 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1076 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001077 };
1078 char res[256];
1079 char *buf = res;
1080 int len, i;
1081
1082 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1083 buf += len;
1084
Denis Karpov70a33412009-09-22 16:44:59 -07001085 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001086 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001087 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001088 buf += len;
1089 }
1090
Venkatraman S8986d312012-08-07 19:10:38 +05301091 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001092}
Adrian Hunter699b9582011-05-06 12:14:01 +03001093#else
1094static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1095 u32 status)
1096{
1097}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001098#endif /* CONFIG_MMC_DEBUG */
1099
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001100/*
1101 * MMC controller internal state machines reset
1102 *
1103 * Used to reset command or data internal state machines, using respectively
1104 * SRC or SRD bit of SYSCTL register
1105 * Can be called from interrupt context
1106 */
Denis Karpov70a33412009-09-22 16:44:59 -07001107static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1108 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001109{
1110 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +05301111 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001112
1113 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1114 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1115
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001116 /*
1117 * OMAP4 ES2 and greater has an updated reset logic.
1118 * Monitor a 0->1 transition first
1119 */
Andreas Fenkart326119c2014-11-08 15:33:14 +01001120 if (mmc_pdata(host)->features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001121 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001122 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301123 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001124 }
1125 i = 0;
1126
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001127 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1128 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301129 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001130
1131 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1132 dev_err(mmc_dev(host->mmc),
1133 "Timeout waiting on controller reset in %s\n",
1134 __func__);
1135}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001136
Balaji T K25e18972012-11-19 21:59:55 +05301137static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1138 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301139{
Balaji T K25e18972012-11-19 21:59:55 +05301140 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301141 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301142 if (host->cmd)
1143 host->cmd->error = err;
1144 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301145
1146 if (host->data) {
1147 omap_hsmmc_reset_controller_fsm(host, SRD);
1148 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301149 } else if (host->mrq && host->mrq->cmd)
1150 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301151}
1152
Adrian Hunterb4175772010-05-26 14:42:06 -07001153static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001154{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001155 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001156 int end_cmd = 0, end_trans = 0;
Balaji T Ka2e77152014-01-21 19:54:42 +05301157 int error = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001158
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001159 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301160 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001161
Venkatraman Sa7e96872012-11-19 22:00:01 +05301162 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001163 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001164
Venkatraman Sa7e96872012-11-19 22:00:01 +05301165 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301166 end_cmd = 1;
Kishon Vijay Abraham I408806f2015-06-16 16:07:17 +05301167 if (host->data || host->response_busy) {
1168 end_trans = !end_cmd;
1169 host->response_busy = 0;
1170 }
Venkatraman Sa7e96872012-11-19 22:00:01 +05301171 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301172 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Vignesh R5027cd12015-06-16 16:07:18 +05301173 else if (status & (CCRC_EN | DCRC_EN | DEB_EN | CEB_EN |
1174 BADA_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301175 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1176
Balaji T Ka2e77152014-01-21 19:54:42 +05301177 if (status & ACE_EN) {
1178 u32 ac12;
1179 ac12 = OMAP_HSMMC_READ(host->base, AC12);
1180 if (!(ac12 & ACNE) && host->mrq->sbc) {
1181 end_cmd = 1;
1182 if (ac12 & ACTO)
1183 error = -ETIMEDOUT;
1184 else if (ac12 & (ACCE | ACEB | ACIE))
1185 error = -EILSEQ;
1186 host->mrq->sbc->error = error;
1187 hsmmc_command_incomplete(host, error, end_cmd);
1188 }
1189 dev_dbg(mmc_dev(host->mmc), "AC12 err: 0x%x\n", ac12);
1190 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001191 }
1192
Francesco Lavra7472bab2013-06-29 08:25:12 +02001193 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301194 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001195 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301196 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001197 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001198}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001199
Adrian Hunterb4175772010-05-26 14:42:06 -07001200/*
1201 * MMC controller IRQ handler
1202 */
1203static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1204{
1205 struct omap_hsmmc_host *host = dev_id;
1206 int status;
1207
1208 status = OMAP_HSMMC_READ(host->base, STAT);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001209 while (status & (INT_EN_MASK | CIRQ_EN)) {
1210 if (host->req_in_progress)
1211 omap_hsmmc_do_irq(host, status);
1212
1213 if (status & CIRQ_EN)
1214 mmc_signal_sdio_irq(host->mmc);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301215
Adrian Hunterb4175772010-05-26 14:42:06 -07001216 /* Flush posted write */
1217 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301218 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001219
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001220 return IRQ_HANDLED;
1221}
1222
Denis Karpov70a33412009-09-22 16:44:59 -07001223static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001224{
1225 unsigned long i;
1226
1227 OMAP_HSMMC_WRITE(host->base, HCTL,
1228 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1229 for (i = 0; i < loops_per_jiffy; i++) {
1230 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1231 break;
1232 cpu_relax();
1233 }
1234}
1235
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001236/*
David Brownelleb250822009-02-17 14:49:01 -08001237 * Switch MMC interface voltage ... only relevant for MMC1.
1238 *
1239 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1240 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1241 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001242 */
Denis Karpov70a33412009-09-22 16:44:59 -07001243static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001244{
1245 u32 reg_val = 0;
1246 int ret;
1247
1248 /* Disable the clocks */
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301249 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301250 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001251
1252 /* Turn the power off */
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001253 ret = omap_hsmmc_set_power(host, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001254
1255 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001256 if (!ret)
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001257 ret = omap_hsmmc_set_power(host, 1, vdd);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301258 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301259 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001260
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001261 if (ret != 0)
1262 goto err;
1263
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001264 OMAP_HSMMC_WRITE(host->base, HCTL,
1265 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1266 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001267
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001268 /*
1269 * If a MMC dual voltage card is detected, the set_ios fn calls
1270 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001271 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001272 *
David Brownelleb250822009-02-17 14:49:01 -08001273 * Cope with a bit of slop in the range ... per data sheets:
1274 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1275 * but recommended values are 1.71V to 1.89V
1276 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1277 * but recommended values are 2.7V to 3.3V
1278 *
1279 * Board setup code shouldn't permit anything very out-of-range.
1280 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1281 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001282 */
David Brownelleb250822009-02-17 14:49:01 -08001283 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001284 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001285 else
1286 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001287
1288 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001289 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001290
1291 return 0;
1292err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301293 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001294 return ret;
1295}
1296
Adrian Hunterb62f6222009-09-22 16:45:01 -07001297/* Protect the card while the cover is open */
1298static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1299{
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001300 if (!host->get_cover_state)
Adrian Hunterb62f6222009-09-22 16:45:01 -07001301 return;
1302
1303 host->reqs_blocked = 0;
Andreas Fenkart80412ca2014-11-08 15:33:17 +01001304 if (host->get_cover_state(host->dev)) {
Adrian Hunterb62f6222009-09-22 16:45:01 -07001305 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301306 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001307 "card is now accessible\n",
1308 mmc_hostname(host->mmc));
1309 host->protect_card = 0;
1310 }
1311 } else {
1312 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301313 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001314 "card is now inaccessible\n",
1315 mmc_hostname(host->mmc));
1316 host->protect_card = 1;
1317 }
1318 }
1319}
1320
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001321/*
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001322 * irq handler when (cell-phone) cover is mounted/removed
1323 */
1324static irqreturn_t omap_hsmmc_cover_irq(int irq, void *dev_id)
1325{
1326 struct omap_hsmmc_host *host = dev_id;
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001327
1328 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
1329
Andreas Fenkart11227d12015-03-03 13:28:17 +01001330 omap_hsmmc_protect_card(host);
1331 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Andreas Fenkartcde592c2015-03-03 13:28:15 +01001332 return IRQ_HANDLED;
1333}
1334
Russell Kingc5c98922012-04-13 12:14:39 +01001335static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001336{
Russell Kingc5c98922012-04-13 12:14:39 +01001337 struct omap_hsmmc_host *host = param;
1338 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001339 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001340 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001341
Russell Kingc5c98922012-04-13 12:14:39 +01001342 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001343 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001344 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001345 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001346 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001347
Adrian Hunter770d7432011-05-06 12:14:11 +03001348 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001349 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001350 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001351 dma_unmap_sg(chan->device->dev,
1352 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001353 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001354
1355 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001356 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001357 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001358
1359 /* If DMA has finished after TC, complete the request */
1360 if (!req_in_progress) {
1361 struct mmc_request *mrq = host->mrq;
1362
1363 host->mrq = NULL;
1364 mmc_request_done(host->mmc, mrq);
1365 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001366}
1367
Per Forlin9782aff2011-07-01 18:55:23 +02001368static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1369 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001370 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001371 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001372{
1373 int dma_len;
1374
1375 if (!next && data->host_cookie &&
1376 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301377 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001378 " host->next_data.cookie %d\n",
1379 __func__, data->host_cookie, host->next_data.cookie);
1380 data->host_cookie = 0;
1381 }
1382
1383 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001384 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001385 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001386 omap_hsmmc_get_dma_dir(host, data));
1387
1388 } else {
1389 dma_len = host->next_data.dma_len;
1390 host->next_data.dma_len = 0;
1391 }
1392
1393
1394 if (dma_len == 0)
1395 return -EINVAL;
1396
1397 if (next) {
1398 next->dma_len = dma_len;
1399 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1400 } else
1401 host->dma_len = dma_len;
1402
1403 return 0;
1404}
1405
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001406/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001407 * Routine to configure and start DMA for the MMC card
1408 */
Balaji T K9d025332014-01-21 19:54:42 +05301409static int omap_hsmmc_setup_dma_transfer(struct omap_hsmmc_host *host,
Denis Karpov70a33412009-09-22 16:44:59 -07001410 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001411{
Russell King26b88522012-04-13 12:27:37 +01001412 struct dma_async_tx_descriptor *tx;
1413 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001414 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001415 struct dma_chan *chan;
Peter Ujfalusie5789602016-09-14 14:22:07 +03001416 struct dma_slave_config cfg = {
1417 .src_addr = host->mapbase + OMAP_HSMMC_DATA,
1418 .dst_addr = host->mapbase + OMAP_HSMMC_DATA,
1419 .src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
1420 .dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES,
1421 .src_maxburst = data->blksz / 4,
1422 .dst_maxburst = data->blksz / 4,
1423 };
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001424
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001425 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001426 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001427 struct scatterlist *sgl;
1428
1429 sgl = data->sg + i;
1430 if (sgl->length % data->blksz)
1431 return -EINVAL;
1432 }
1433 if ((data->blksz % 4) != 0)
1434 /* REVISIT: The MMC buffer increments only when MSB is written.
1435 * Return error for blksz which is non multiple of four.
1436 */
1437 return -EINVAL;
1438
Adrian Hunterb4175772010-05-26 14:42:06 -07001439 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001440
Russell Kingc5c98922012-04-13 12:14:39 +01001441 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001442
Russell King26b88522012-04-13 12:27:37 +01001443 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001444 if (ret)
1445 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001446
Russell King26b88522012-04-13 12:27:37 +01001447 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1448 if (ret)
1449 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001450
Russell King26b88522012-04-13 12:27:37 +01001451 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1452 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1453 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1454 if (!tx) {
1455 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1456 /* FIXME: cleanup */
1457 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001458 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001459
Russell King26b88522012-04-13 12:27:37 +01001460 tx->callback = omap_hsmmc_dma_callback;
1461 tx->callback_param = host;
1462
1463 /* Does not fail */
1464 dmaengine_submit(tx);
1465
1466 host->dma_ch = 1;
1467
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001468 return 0;
1469}
1470
Denis Karpov70a33412009-09-22 16:44:59 -07001471static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001472 unsigned int timeout_ns,
1473 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001474{
1475 unsigned int timeout, cycle_ns;
1476 uint32_t reg, clkd, dto = 0;
1477
1478 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1479 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1480 if (clkd == 0)
1481 clkd = 1;
1482
Balaji T K6e3076c2014-01-21 19:54:42 +05301483 cycle_ns = 1000000000 / (host->clk_rate / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001484 timeout = timeout_ns / cycle_ns;
1485 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001486 if (timeout) {
1487 while ((timeout & 0x80000000) == 0) {
1488 dto += 1;
1489 timeout <<= 1;
1490 }
1491 dto = 31 - dto;
1492 timeout <<= 1;
1493 if (timeout && dto)
1494 dto += 1;
1495 if (dto >= 13)
1496 dto -= 13;
1497 else
1498 dto = 0;
1499 if (dto > 14)
1500 dto = 14;
1501 }
1502
1503 reg &= ~DTO_MASK;
1504 reg |= dto << DTO_SHIFT;
1505 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1506}
1507
Balaji T K9d025332014-01-21 19:54:42 +05301508static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host)
1509{
1510 struct mmc_request *req = host->mrq;
1511 struct dma_chan *chan;
1512
1513 if (!req->data)
1514 return;
1515 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1516 | (req->data->blocks << 16));
1517 set_data_timeout(host, req->data->timeout_ns,
1518 req->data->timeout_clks);
1519 chan = omap_hsmmc_get_dma_chan(host, req->data);
1520 dma_async_issue_pending(chan);
1521}
1522
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001523/*
1524 * Configure block length for MMC/SD cards and initiate the transfer.
1525 */
1526static int
Denis Karpov70a33412009-09-22 16:44:59 -07001527omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001528{
1529 int ret;
1530 host->data = req->data;
1531
1532 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001533 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001534 /*
1535 * Set an arbitrary 100ms data timeout for commands with
1536 * busy signal.
1537 */
1538 if (req->cmd->flags & MMC_RSP_BUSY)
1539 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001540 return 0;
1541 }
1542
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001543 if (host->use_dma) {
Balaji T K9d025332014-01-21 19:54:42 +05301544 ret = omap_hsmmc_setup_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001545 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301546 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001547 return ret;
1548 }
1549 }
1550 return 0;
1551}
1552
Per Forlin9782aff2011-07-01 18:55:23 +02001553static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1554 int err)
1555{
1556 struct omap_hsmmc_host *host = mmc_priv(mmc);
1557 struct mmc_data *data = mrq->data;
1558
Russell King26b88522012-04-13 12:27:37 +01001559 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001560 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001561
Russell King26b88522012-04-13 12:27:37 +01001562 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1563 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001564 data->host_cookie = 0;
1565 }
1566}
1567
1568static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1569 bool is_first_req)
1570{
1571 struct omap_hsmmc_host *host = mmc_priv(mmc);
1572
1573 if (mrq->data->host_cookie) {
1574 mrq->data->host_cookie = 0;
1575 return ;
1576 }
1577
Russell Kingc5c98922012-04-13 12:14:39 +01001578 if (host->use_dma) {
1579 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001580
Per Forlin9782aff2011-07-01 18:55:23 +02001581 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001582 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001583 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001584 }
Per Forlin9782aff2011-07-01 18:55:23 +02001585}
1586
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001587/*
1588 * Request function. for read/write operation
1589 */
Denis Karpov70a33412009-09-22 16:44:59 -07001590static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001591{
Denis Karpov70a33412009-09-22 16:44:59 -07001592 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001593 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001594
Adrian Hunterb4175772010-05-26 14:42:06 -07001595 BUG_ON(host->req_in_progress);
1596 BUG_ON(host->dma_ch != -1);
1597 if (host->protect_card) {
1598 if (host->reqs_blocked < 3) {
1599 /*
1600 * Ensure the controller is left in a consistent
1601 * state by resetting the command and data state
1602 * machines.
1603 */
1604 omap_hsmmc_reset_controller_fsm(host, SRD);
1605 omap_hsmmc_reset_controller_fsm(host, SRC);
1606 host->reqs_blocked += 1;
1607 }
1608 req->cmd->error = -EBADF;
1609 if (req->data)
1610 req->data->error = -EBADF;
1611 req->cmd->retries = 0;
1612 mmc_request_done(mmc, req);
1613 return;
1614 } else if (host->reqs_blocked)
1615 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001616 WARN_ON(host->mrq != NULL);
1617 host->mrq = req;
Balaji T K6e3076c2014-01-21 19:54:42 +05301618 host->clk_rate = clk_get_rate(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001619 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001620 if (err) {
1621 req->cmd->error = err;
1622 if (req->data)
1623 req->data->error = err;
1624 host->mrq = NULL;
1625 mmc_request_done(mmc, req);
1626 return;
1627 }
Balaji T Ka2e77152014-01-21 19:54:42 +05301628 if (req->sbc && !(host->flags & AUTO_CMD23)) {
Balaji T Kbf129e12014-01-21 19:54:42 +05301629 omap_hsmmc_start_command(host, req->sbc, NULL);
1630 return;
1631 }
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001632
Balaji T K9d025332014-01-21 19:54:42 +05301633 omap_hsmmc_start_dma_transfer(host);
Denis Karpov70a33412009-09-22 16:44:59 -07001634 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001635}
1636
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001637/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001638static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001639{
Denis Karpov70a33412009-09-22 16:44:59 -07001640 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001641 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001642
Adrian Huntera3621462009-09-22 16:44:42 -07001643 if (ios->power_mode != host->power_mode) {
1644 switch (ios->power_mode) {
1645 case MMC_POWER_OFF:
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001646 omap_hsmmc_set_power(host, 0, 0);
Adrian Huntera3621462009-09-22 16:44:42 -07001647 break;
1648 case MMC_POWER_UP:
Andreas Fenkart1ca4d352016-03-21 00:58:08 +01001649 omap_hsmmc_set_power(host, 1, ios->vdd);
Adrian Huntera3621462009-09-22 16:44:42 -07001650 break;
1651 case MMC_POWER_ON:
1652 do_send_init_stream = 1;
1653 break;
1654 }
1655 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001656 }
1657
Denis Karpovdd498ef2009-09-22 16:44:49 -07001658 /* FIXME: set registers based only on changes to ios */
1659
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001660 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001661
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301662 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001663 /* Only MMC1 can interface at 3V without some flavor
1664 * of external transceiver; but they all handle 1.8V.
1665 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001666 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Balaji T K2cf171c2014-02-19 20:26:40 +05301667 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001668 /*
1669 * The mmc_select_voltage fn of the core does
1670 * not seem to set the power_mode to
1671 * MMC_POWER_UP upon recalculating the voltage.
1672 * vdd 1.8v.
1673 */
Denis Karpov70a33412009-09-22 16:44:59 -07001674 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1675 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001676 "Switch operation failed\n");
1677 }
1678 }
1679
Andy Shevchenko5934df22011-05-06 12:14:06 +03001680 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001681
Adrian Huntera3621462009-09-22 16:44:42 -07001682 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001683 send_init_stream(host);
1684
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001685 omap_hsmmc_set_bus_mode(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001686}
1687
1688static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1689{
Denis Karpov70a33412009-09-22 16:44:59 -07001690 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001691
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001692 if (!host->card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001693 return -ENOSYS;
Andreas Fenkart80412ca2014-11-08 15:33:17 +01001694 return host->card_detect(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001695}
1696
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001697static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1698{
1699 struct omap_hsmmc_host *host = mmc_priv(mmc);
1700
Andreas Fenkart326119c2014-11-08 15:33:14 +01001701 if (mmc_pdata(host)->init_card)
1702 mmc_pdata(host)->init_card(card);
H. Nikolaus Schaller67c05e82019-11-07 11:30:37 +01001703 else if (card->type == MMC_TYPE_SDIO ||
1704 card->type == MMC_TYPE_SD_COMBO) {
1705 struct device_node *np = mmc_dev(mmc)->of_node;
1706
1707 /*
1708 * REVISIT: should be moved to sdio core and made more
1709 * general e.g. by expanding the DT bindings of child nodes
1710 * to provide a mechanism to provide this information:
1711 * Documentation/devicetree/bindings/mmc/mmc-card.txt
1712 */
1713
1714 np = of_get_compatible_child(np, "ti,wl1251");
1715 if (np) {
1716 /*
1717 * We have TI wl1251 attached to MMC3. Pass this
1718 * information to the SDIO core because it can't be
1719 * probed by normal methods.
1720 */
1721
1722 dev_info(host->dev, "found wl1251\n");
1723 card->quirks |= MMC_QUIRK_NONSTD_SDIO;
1724 card->cccr.wide_bus = 1;
1725 card->cis.vendor = 0x104c;
1726 card->cis.device = 0x9066;
1727 card->cis.blksize = 512;
1728 card->cis.max_dtr = 24000000;
1729 card->ocr = 0x80;
1730 of_node_put(np);
1731 }
1732 }
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001733}
1734
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001735static void omap_hsmmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
1736{
1737 struct omap_hsmmc_host *host = mmc_priv(mmc);
Balaji T K5a52b082014-05-29 10:28:02 +02001738 u32 irq_mask, con;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001739 unsigned long flags;
1740
1741 spin_lock_irqsave(&host->irq_lock, flags);
1742
Balaji T K5a52b082014-05-29 10:28:02 +02001743 con = OMAP_HSMMC_READ(host->base, CON);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001744 irq_mask = OMAP_HSMMC_READ(host->base, ISE);
1745 if (enable) {
1746 host->flags |= HSMMC_SDIO_IRQ_ENABLED;
1747 irq_mask |= CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001748 con |= CTPL | CLKEXTFREE;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001749 } else {
1750 host->flags &= ~HSMMC_SDIO_IRQ_ENABLED;
1751 irq_mask &= ~CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001752 con &= ~(CTPL | CLKEXTFREE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001753 }
Balaji T K5a52b082014-05-29 10:28:02 +02001754 OMAP_HSMMC_WRITE(host->base, CON, con);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001755 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
1756
1757 /*
1758 * if enable, piggy back detection on current request
1759 * but always disable immediately
1760 */
1761 if (!host->req_in_progress || !enable)
1762 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
1763
1764 /* flush posted write */
1765 OMAP_HSMMC_READ(host->base, IE);
1766
1767 spin_unlock_irqrestore(&host->irq_lock, flags);
1768}
1769
1770static int omap_hsmmc_configure_wake_irq(struct omap_hsmmc_host *host)
1771{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001772 int ret;
1773
1774 /*
1775 * For omaps with wake-up path, wakeirq will be irq from pinctrl and
1776 * for other omaps, wakeirq will be from GPIO (dat line remuxed to
1777 * gpio). wakeirq is needed to detect sdio irq in runtime suspend state
1778 * with functional clock disabled.
1779 */
1780 if (!host->dev->of_node || !host->wake_irq)
1781 return -ENODEV;
1782
Tony Lindgren5b83b222015-05-21 15:51:52 -07001783 ret = dev_pm_set_dedicated_wake_irq(host->dev, host->wake_irq);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001784 if (ret) {
1785 dev_err(mmc_dev(host->mmc), "Unable to request wake IRQ\n");
1786 goto err;
1787 }
1788
1789 /*
1790 * Some omaps don't have wake-up path from deeper idle states
1791 * and need to remux SDIO DAT1 to GPIO for wake-up from idle.
1792 */
1793 if (host->pdata->controller_flags & OMAP_HSMMC_SWAKEUP_MISSING) {
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001794 struct pinctrl *p = devm_pinctrl_get(host->dev);
Dan Carpenterabff7f52017-04-10 16:54:17 +03001795 if (IS_ERR(p)) {
1796 ret = PTR_ERR(p);
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001797 goto err_free_irq;
1798 }
1799 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_DEFAULT))) {
1800 dev_info(host->dev, "missing default pinctrl state\n");
1801 devm_pinctrl_put(p);
1802 ret = -EINVAL;
1803 goto err_free_irq;
1804 }
1805
1806 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_IDLE))) {
1807 dev_info(host->dev, "missing idle pinctrl state\n");
1808 devm_pinctrl_put(p);
1809 ret = -EINVAL;
1810 goto err_free_irq;
1811 }
1812 devm_pinctrl_put(p);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001813 }
1814
Balaji T K5a52b082014-05-29 10:28:02 +02001815 OMAP_HSMMC_WRITE(host->base, HCTL,
1816 OMAP_HSMMC_READ(host->base, HCTL) | IWE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001817 return 0;
1818
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001819err_free_irq:
Tony Lindgren5b83b222015-05-21 15:51:52 -07001820 dev_pm_clear_wake_irq(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001821err:
1822 dev_warn(host->dev, "no SDIO IRQ support, falling back to polling\n");
1823 host->wake_irq = 0;
1824 return ret;
1825}
1826
Denis Karpov70a33412009-09-22 16:44:59 -07001827static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001828{
1829 u32 hctl, capa, value;
1830
1831 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301832 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001833 hctl = SDVS30;
1834 capa = VS30 | VS18;
1835 } else {
1836 hctl = SDVS18;
1837 capa = VS18;
1838 }
1839
1840 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1841 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1842
1843 value = OMAP_HSMMC_READ(host->base, CAPA);
1844 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1845
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001846 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001847 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001848}
1849
Kuninori Morimotoafd8c292014-09-08 23:44:51 -07001850static int omap_hsmmc_multi_io_quirk(struct mmc_card *card,
1851 unsigned int direction, int blk_size)
1852{
1853 /* This controller can't do multiblock reads due to hw bugs */
1854 if (direction == MMC_DATA_READ)
1855 return 1;
1856
1857 return blk_size;
1858}
1859
1860static struct mmc_host_ops omap_hsmmc_ops = {
Per Forlin9782aff2011-07-01 18:55:23 +02001861 .post_req = omap_hsmmc_post_req,
1862 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001863 .request = omap_hsmmc_request,
1864 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001865 .get_cd = omap_hsmmc_get_cd,
Andreas Fenkarta49d8352015-03-03 13:28:14 +01001866 .get_ro = mmc_gpio_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001867 .init_card = omap_hsmmc_init_card,
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001868 .enable_sdio_irq = omap_hsmmc_enable_sdio_irq,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001869};
1870
Denis Karpovd900f712009-09-22 16:44:38 -07001871#ifdef CONFIG_DEBUG_FS
1872
Denis Karpov70a33412009-09-22 16:44:59 -07001873static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001874{
1875 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001876 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001877
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001878 seq_printf(s, "mmc%d:\n", mmc->index);
1879 seq_printf(s, "sdio irq mode\t%s\n",
1880 (mmc->caps & MMC_CAP_SDIO_IRQ) ? "interrupt" : "polling");
1881
1882 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1883 seq_printf(s, "sdio irq \t%s\n",
1884 (host->flags & HSMMC_SDIO_IRQ_ENABLED) ? "enabled"
1885 : "disabled");
1886 }
1887 seq_printf(s, "ctx_loss:\t%d\n", host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001888
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301889 pm_runtime_get_sync(host->dev);
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001890 seq_puts(s, "\nregs:\n");
Denis Karpovd900f712009-09-22 16:44:38 -07001891 seq_printf(s, "CON:\t\t0x%08x\n",
1892 OMAP_HSMMC_READ(host->base, CON));
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001893 seq_printf(s, "PSTATE:\t\t0x%08x\n",
1894 OMAP_HSMMC_READ(host->base, PSTATE));
Denis Karpovd900f712009-09-22 16:44:38 -07001895 seq_printf(s, "HCTL:\t\t0x%08x\n",
1896 OMAP_HSMMC_READ(host->base, HCTL));
1897 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1898 OMAP_HSMMC_READ(host->base, SYSCTL));
1899 seq_printf(s, "IE:\t\t0x%08x\n",
1900 OMAP_HSMMC_READ(host->base, IE));
1901 seq_printf(s, "ISE:\t\t0x%08x\n",
1902 OMAP_HSMMC_READ(host->base, ISE));
1903 seq_printf(s, "CAPA:\t\t0x%08x\n",
1904 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001905
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301906 pm_runtime_mark_last_busy(host->dev);
1907 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001908
Denis Karpovd900f712009-09-22 16:44:38 -07001909 return 0;
1910}
1911
Denis Karpov70a33412009-09-22 16:44:59 -07001912static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001913{
Denis Karpov70a33412009-09-22 16:44:59 -07001914 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001915}
1916
1917static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001918 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001919 .read = seq_read,
1920 .llseek = seq_lseek,
1921 .release = single_release,
1922};
1923
Denis Karpov70a33412009-09-22 16:44:59 -07001924static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001925{
1926 if (mmc->debugfs_root)
1927 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1928 mmc, &mmc_regs_fops);
1929}
1930
1931#else
1932
Denis Karpov70a33412009-09-22 16:44:59 -07001933static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001934{
1935}
1936
1937#endif
1938
Rajendra Nayak46856a62012-03-12 20:32:37 +05301939#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001940static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1941 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1942 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1943};
1944
1945static const struct omap_mmc_of_data omap4_mmc_of_data = {
1946 .reg_offset = 0x100,
1947};
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001948static const struct omap_mmc_of_data am33xx_mmc_of_data = {
1949 .reg_offset = 0x100,
1950 .controller_flags = OMAP_HSMMC_SWAKEUP_MISSING,
1951};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301952
1953static const struct of_device_id omap_mmc_of_match[] = {
1954 {
1955 .compatible = "ti,omap2-hsmmc",
1956 },
1957 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001958 .compatible = "ti,omap3-pre-es3-hsmmc",
1959 .data = &omap3_pre_es3_mmc_of_data,
1960 },
1961 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301962 .compatible = "ti,omap3-hsmmc",
1963 },
1964 {
1965 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001966 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301967 },
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001968 {
1969 .compatible = "ti,am33xx-hsmmc",
1970 .data = &am33xx_mmc_of_data,
1971 },
Rajendra Nayak46856a62012-03-12 20:32:37 +05301972 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001973};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301974MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1975
Andreas Fenkart55143432014-11-08 15:33:09 +01001976static struct omap_hsmmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
Rajendra Nayak46856a62012-03-12 20:32:37 +05301977{
Tony Lindgrendb863d82016-04-26 16:46:23 -07001978 struct omap_hsmmc_platform_data *pdata, *legacy;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301979 struct device_node *np = dev->of_node;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301980
1981 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1982 if (!pdata)
Balaji T K19df45b2014-02-28 19:08:18 +05301983 return ERR_PTR(-ENOMEM); /* out of memory */
Rajendra Nayak46856a62012-03-12 20:32:37 +05301984
Tony Lindgrendb863d82016-04-26 16:46:23 -07001985 legacy = dev_get_platdata(dev);
1986 if (legacy && legacy->name)
1987 pdata->name = legacy->name;
1988
Rajendra Nayak46856a62012-03-12 20:32:37 +05301989 if (of_find_property(np, "ti,dual-volt", NULL))
1990 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1991
Andreas Fenkartb7a56462015-03-20 15:53:54 +01001992 pdata->gpio_cd = -EINVAL;
1993 pdata->gpio_cod = -EINVAL;
NeilBrownfdb9de12015-01-13 08:23:18 +13001994 pdata->gpio_wp = -EINVAL;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301995
1996 if (of_find_property(np, "ti,non-removable", NULL)) {
Andreas Fenkart326119c2014-11-08 15:33:14 +01001997 pdata->nonremovable = true;
1998 pdata->no_regulator_off_init = true;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301999 }
Rajendra Nayak46856a62012-03-12 20:32:37 +05302000
2001 if (of_find_property(np, "ti,needs-special-reset", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002002 pdata->features |= HSMMC_HAS_UPDATED_RESET;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302003
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302004 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002005 pdata->features |= HSMMC_HAS_HSPE_SUPPORT;
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302006
Rajendra Nayak46856a62012-03-12 20:32:37 +05302007 return pdata;
2008}
2009#else
Andreas Fenkart55143432014-11-08 15:33:09 +01002010static inline struct omap_hsmmc_platform_data
Rajendra Nayak46856a62012-03-12 20:32:37 +05302011 *of_get_hsmmc_pdata(struct device *dev)
2012{
Balaji T K19df45b2014-02-28 19:08:18 +05302013 return ERR_PTR(-EINVAL);
Rajendra Nayak46856a62012-03-12 20:32:37 +05302014}
2015#endif
2016
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05002017static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002018{
Andreas Fenkart55143432014-11-08 15:33:09 +01002019 struct omap_hsmmc_platform_data *pdata = pdev->dev.platform_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002020 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002021 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002022 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002023 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302024 const struct of_device_id *match;
Nishanth Menon59445b12014-02-13 23:45:48 -06002025 const struct omap_mmc_of_data *data;
Balaji T K77fae212014-05-09 22:16:51 +05302026 void __iomem *base;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302027
2028 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
2029 if (match) {
2030 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01002031
2032 if (IS_ERR(pdata))
2033 return PTR_ERR(pdata);
2034
Rajendra Nayak46856a62012-03-12 20:32:37 +05302035 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06002036 data = match->data;
2037 pdata->reg_offset = data->reg_offset;
2038 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302039 }
2040 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002041
2042 if (pdata == NULL) {
2043 dev_err(&pdev->dev, "Platform Data is missing\n");
2044 return -ENXIO;
2045 }
2046
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002047 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2048 irq = platform_get_irq(pdev, 0);
2049 if (res == NULL || irq < 0)
2050 return -ENXIO;
2051
Balaji T K77fae212014-05-09 22:16:51 +05302052 base = devm_ioremap_resource(&pdev->dev, res);
2053 if (IS_ERR(base))
2054 return PTR_ERR(base);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002055
Denis Karpov70a33412009-09-22 16:44:59 -07002056 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002057 if (!mmc) {
2058 ret = -ENOMEM;
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002059 goto err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002060 }
2061
NeilBrownfdb9de12015-01-13 08:23:18 +13002062 ret = mmc_of_parse(mmc);
2063 if (ret)
2064 goto err1;
2065
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002066 host = mmc_priv(mmc);
2067 host->mmc = mmc;
2068 host->pdata = pdata;
2069 host->dev = &pdev->dev;
2070 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002071 host->dma_ch = -1;
2072 host->irq = irq;
Balaji T Kfc307df2012-04-02 12:26:47 +05302073 host->mapbase = res->start + pdata->reg_offset;
Balaji T K77fae212014-05-09 22:16:51 +05302074 host->base = base + pdata->reg_offset;
Adrian Hunter6da20c82010-02-15 10:03:34 -08002075 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02002076 host->next_data.cookie = 1;
Tony Lindgrenbb2726b2015-10-07 06:22:24 -07002077 host->pbias_enabled = 0;
Kishon Vijay Abraham I3f77f702015-08-27 14:44:04 +05302078 host->vqmmc_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002079
NeilBrown41afa3142015-01-13 08:23:18 +13002080 ret = omap_hsmmc_gpio_init(mmc, host, pdata);
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002081 if (ret)
2082 goto err_gpio;
2083
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002084 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002085
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002086 if (pdev->dev.of_node)
2087 host->wake_irq = irq_of_parse_and_map(pdev->dev.of_node, 1);
2088
Balaji T K7a8c2ce2011-07-01 22:09:34 +05302089 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002090
Daniel Mackd418ed82012-02-19 13:20:33 +01002091 mmc->f_min = OMAP_MMC_MIN_CLOCK;
2092
2093 if (pdata->max_freq > 0)
2094 mmc->f_max = pdata->max_freq;
NeilBrownfdb9de12015-01-13 08:23:18 +13002095 else if (mmc->f_max == 0)
Daniel Mackd418ed82012-02-19 13:20:33 +01002096 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002097
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002098 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002099
Balaji T K96181952014-05-09 22:16:48 +05302100 host->fclk = devm_clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002101 if (IS_ERR(host->fclk)) {
2102 ret = PTR_ERR(host->fclk);
2103 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002104 goto err1;
2105 }
2106
Paul Walmsley9b682562011-10-06 14:50:35 -06002107 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
2108 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 -07002109 omap_hsmmc_ops.multi_io_quirk = omap_hsmmc_multi_io_quirk;
Paul Walmsley9b682562011-10-06 14:50:35 -06002110 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07002111
Tony Lindgren5b83b222015-05-21 15:51:52 -07002112 device_init_wakeup(&pdev->dev, true);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302113 pm_runtime_enable(host->dev);
2114 pm_runtime_get_sync(host->dev);
2115 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
2116 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002117
Balaji T K92a3aeb2012-02-24 21:14:34 +05302118 omap_hsmmc_context_save(host);
2119
Balaji T K96181952014-05-09 22:16:48 +05302120 host->dbclk = devm_clk_get(&pdev->dev, "mmchsdb_fck");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302121 /*
2122 * MMC can still work without debounce clock.
2123 */
2124 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302125 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05302126 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302127 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302128 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07002129 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002130
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002131 /* Since we do only SG emulation, we can have as many segs
2132 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002133 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002134
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002135 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2136 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2137 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002138
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002139 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07002140 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002141
Andreas Fenkart326119c2014-11-08 15:33:14 +01002142 mmc->caps |= mmc_pdata(host)->caps;
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002143 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002144 mmc->caps |= MMC_CAP_4_BIT_DATA;
2145
Andreas Fenkart326119c2014-11-08 15:33:14 +01002146 if (mmc_pdata(host)->nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002147 mmc->caps |= MMC_CAP_NONREMOVABLE;
2148
NeilBrownfdb9de12015-01-13 08:23:18 +13002149 mmc->pm_caps |= mmc_pdata(host)->pm_caps;
Eliad Peller6fdc75d2011-11-22 16:02:18 +02002150
Denis Karpov70a33412009-09-22 16:44:59 -07002151 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002152
Peter Ujfalusi81eef6c2016-04-29 16:06:18 +03002153 host->rx_chan = dma_request_chan(&pdev->dev, "rx");
2154 if (IS_ERR(host->rx_chan)) {
2155 dev_err(mmc_dev(host->mmc), "RX DMA channel request failed\n");
2156 ret = PTR_ERR(host->rx_chan);
Russell King26b88522012-04-13 12:27:37 +01002157 goto err_irq;
2158 }
2159
Peter Ujfalusi81eef6c2016-04-29 16:06:18 +03002160 host->tx_chan = dma_request_chan(&pdev->dev, "tx");
2161 if (IS_ERR(host->tx_chan)) {
2162 dev_err(mmc_dev(host->mmc), "TX DMA channel request failed\n");
2163 ret = PTR_ERR(host->tx_chan);
Russell King26b88522012-04-13 12:27:37 +01002164 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01002165 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002166
Russell King78d2d272018-12-11 14:41:31 +00002167 /*
2168 * Limit the maximum segment size to the lower of the request size
2169 * and the DMA engine device segment size limits. In reality, with
2170 * 32-bit transfers, the DMA engine can do longer segments than this
2171 * but there is no way to represent that in the DMA model - if we
2172 * increase this figure here, we get warnings from the DMA API debug.
2173 */
2174 mmc->max_seg_size = min3(mmc->max_req_size,
2175 dma_get_max_seg_size(host->rx_chan->device->dev),
2176 dma_get_max_seg_size(host->tx_chan->device->dev));
2177
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002178 /* Request IRQ for MMC operations */
Balaji T Ke1538ed2014-05-09 22:16:49 +05302179 ret = devm_request_irq(&pdev->dev, host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002180 mmc_hostname(mmc), host);
2181 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302182 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002183 goto err_irq;
2184 }
2185
Kishon Vijay Abraham I987e05c2015-08-27 14:44:07 +05302186 ret = omap_hsmmc_reg_get(host);
2187 if (ret)
2188 goto err_irq;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002189
Andreas Fenkart326119c2014-11-08 15:33:14 +01002190 mmc->ocr_avail = mmc_pdata(host)->ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002191
Adrian Hunterb4175772010-05-26 14:42:06 -07002192 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002193
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002194 /*
2195 * For now, only support SDIO interrupt if we have a separate
2196 * wake-up interrupt configured from device tree. This is because
2197 * the wake-up interrupt is needed for idle state and some
2198 * platforms need special quirks. And we don't want to add new
2199 * legacy mux platform init code callbacks any longer as we
2200 * are moving to DT based booting anyways.
2201 */
2202 ret = omap_hsmmc_configure_wake_irq(host);
2203 if (!ret)
2204 mmc->caps |= MMC_CAP_SDIO_IRQ;
2205
Adrian Hunterb62f6222009-09-22 16:45:01 -07002206 omap_hsmmc_protect_card(host);
2207
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002208 mmc_add_host(mmc);
2209
Andreas Fenkart326119c2014-11-08 15:33:14 +01002210 if (mmc_pdata(host)->name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002211 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2212 if (ret < 0)
2213 goto err_slot_name;
2214 }
Andreas Fenkartcde592c2015-03-03 13:28:15 +01002215 if (host->get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002216 ret = device_create_file(&mmc->class_dev,
Andreas Fenkartcde592c2015-03-03 13:28:15 +01002217 &dev_attr_cover_switch);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002218 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002219 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002220 }
2221
Denis Karpov70a33412009-09-22 16:44:59 -07002222 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302223 pm_runtime_mark_last_busy(host->dev);
2224 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002225
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002226 return 0;
2227
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002228err_slot_name:
2229 mmc_remove_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002230err_irq:
Tony Lindgren5b83b222015-05-21 15:51:52 -07002231 device_init_wakeup(&pdev->dev, false);
Peter Ujfalusi81eef6c2016-04-29 16:06:18 +03002232 if (!IS_ERR_OR_NULL(host->tx_chan))
Russell Kingc5c98922012-04-13 12:14:39 +01002233 dma_release_channel(host->tx_chan);
Peter Ujfalusi81eef6c2016-04-29 16:06:18 +03002234 if (!IS_ERR_OR_NULL(host->rx_chan))
Russell Kingc5c98922012-04-13 12:14:39 +01002235 dma_release_channel(host->rx_chan);
Tony Lindgren814a3c02016-02-10 15:02:44 -08002236 pm_runtime_dont_use_autosuspend(host->dev);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302237 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002238 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302239 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302240 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002241err1:
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002242err_gpio:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002243 mmc_free_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002244err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002245 return ret;
2246}
2247
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002248static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002249{
Denis Karpov70a33412009-09-22 16:44:59 -07002250 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002251
Felipe Balbi927ce942012-03-14 11:18:27 +02002252 pm_runtime_get_sync(host->dev);
2253 mmc_remove_host(host->mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002254
Peter Ujfalusidc285622015-11-03 13:37:31 +02002255 dma_release_channel(host->tx_chan);
2256 dma_release_channel(host->rx_chan);
Russell Kingc5c98922012-04-13 12:14:39 +01002257
Andreas Kemnade590872d2018-09-02 09:30:58 +02002258 dev_pm_clear_wake_irq(host->dev);
Tony Lindgren814a3c02016-02-10 15:02:44 -08002259 pm_runtime_dont_use_autosuspend(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002260 pm_runtime_put_sync(host->dev);
2261 pm_runtime_disable(host->dev);
Tony Lindgren5b83b222015-05-21 15:51:52 -07002262 device_init_wakeup(&pdev->dev, false);
Balaji T K96181952014-05-09 22:16:48 +05302263 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302264 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002265
Balaji T K9d1f0282012-10-15 21:35:07 +05302266 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002267
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002268 return 0;
2269}
2270
Russ Dill3d3bbfb2015-02-27 13:24:34 +02002271#ifdef CONFIG_PM_SLEEP
Kevin Hilmana791daa2010-05-26 14:42:07 -07002272static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002273{
Felipe Balbi927ce942012-03-14 11:18:27 +02002274 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2275
2276 if (!host)
2277 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002278
Felipe Balbi927ce942012-03-14 11:18:27 +02002279 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002280
2281 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002282 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2283 OMAP_HSMMC_WRITE(host->base, IE, 0);
2284 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Felipe Balbi927ce942012-03-14 11:18:27 +02002285 OMAP_HSMMC_WRITE(host->base, HCTL,
2286 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2287 }
2288
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302289 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302290 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002291
Eliad Peller31f9d462011-11-22 16:02:17 +02002292 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002293 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002294}
2295
2296/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002297static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002298{
Felipe Balbi927ce942012-03-14 11:18:27 +02002299 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2300
2301 if (!host)
2302 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002303
Felipe Balbi927ce942012-03-14 11:18:27 +02002304 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002305
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302306 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302307 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002308
Felipe Balbi927ce942012-03-14 11:18:27 +02002309 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2310 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002311
Felipe Balbi927ce942012-03-14 11:18:27 +02002312 omap_hsmmc_protect_card(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002313 pm_runtime_mark_last_busy(host->dev);
2314 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002315 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002316}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002317#endif
2318
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302319static int omap_hsmmc_runtime_suspend(struct device *dev)
2320{
2321 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002322 unsigned long flags;
Andreas Fenkartf9459012014-05-29 10:28:03 +02002323 int ret = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302324
2325 host = platform_get_drvdata(to_platform_device(dev));
2326 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002327 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302328
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002329 spin_lock_irqsave(&host->irq_lock, flags);
2330 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2331 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2332 /* disable sdio irq handling to prevent race */
2333 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2334 OMAP_HSMMC_WRITE(host->base, IE, 0);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002335
2336 if (!(OMAP_HSMMC_READ(host->base, PSTATE) & DLEV_DAT(1))) {
2337 /*
2338 * dat1 line low, pending sdio irq
2339 * race condition: possible irq handler running on
2340 * multi-core, abort
2341 */
2342 dev_dbg(dev, "pending sdio irq, abort suspend\n");
2343 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2344 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2345 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
2346 pm_runtime_mark_last_busy(dev);
2347 ret = -EBUSY;
2348 goto abort;
2349 }
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002350
Andreas Fenkart97978a42014-05-29 10:28:04 +02002351 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002352 } else {
2353 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002354 }
Andreas Fenkart97978a42014-05-29 10:28:04 +02002355
Andreas Fenkartf9459012014-05-29 10:28:03 +02002356abort:
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002357 spin_unlock_irqrestore(&host->irq_lock, flags);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002358 return ret;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302359}
2360
2361static int omap_hsmmc_runtime_resume(struct device *dev)
2362{
2363 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002364 unsigned long flags;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302365
2366 host = platform_get_drvdata(to_platform_device(dev));
2367 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002368 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302369
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002370 spin_lock_irqsave(&host->irq_lock, flags);
2371 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2372 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002373
Andreas Fenkart97978a42014-05-29 10:28:04 +02002374 pinctrl_pm_select_default_state(host->dev);
2375
2376 /* irq lost, if pinmux incorrect */
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002377 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2378 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2379 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002380 } else {
2381 pinctrl_pm_select_default_state(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002382 }
2383 spin_unlock_irqrestore(&host->irq_lock, flags);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302384 return 0;
2385}
2386
Kevin Hilmana791daa2010-05-26 14:42:07 -07002387static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Russ Dill3d3bbfb2015-02-27 13:24:34 +02002388 SET_SYSTEM_SLEEP_PM_OPS(omap_hsmmc_suspend, omap_hsmmc_resume)
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302389 .runtime_suspend = omap_hsmmc_runtime_suspend,
2390 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002391};
2392
2393static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002394 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002395 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002396 .driver = {
2397 .name = DRIVER_NAME,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002398 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302399 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002400 },
2401};
2402
Felipe Balbib7964502012-03-14 11:18:32 +02002403module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002404MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2405MODULE_LICENSE("GPL");
2406MODULE_ALIAS("platform:" DRIVER_NAME);
2407MODULE_AUTHOR("Texas Instruments Inc");