blob: 4957c5fe555b8994fbda92f7fe4d4cbd841ac799 [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f442011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
Russell Kingc5c98922012-04-13 12:14:39 +010022#include <linux/dmaengine.h>
Denis Karpovd900f712009-09-22 16:44:38 -070023#include <linux/seq_file.h>
Felipe Balbi031cd032013-07-11 16:09:05 +030024#include <linux/sizes.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010025#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/dma-mapping.h>
28#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010029#include <linux/timer.h>
30#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053031#include <linux/of.h>
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +020032#include <linux/of_irq.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053033#include <linux/of_gpio.h>
34#include <linux/of_device.h>
Balaji T Kee526d52014-05-09 22:16:53 +053035#include <linux/omap-dmaengine.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010036#include <linux/mmc/host.h>
Jarkko Lavinen13189e72009-09-22 16:44:53 -070037#include <linux/mmc/core.h>
Adrian Hunter93caf8e692010-08-11 14:17:48 -070038#include <linux/mmc/mmc.h>
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>
Andreas Fenkart551434382014-11-08 15:33:09 +010045#include <linux/platform_data/hsmmc-omap.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010046
47/* OMAP HSMMC Host Controller Registers */
Denis Karpov11dd62a2009-09-22 16:44:43 -070048#define OMAP_HSMMC_SYSSTATUS 0x0014
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010049#define OMAP_HSMMC_CON 0x002C
Balaji T Ka2e77152014-01-21 19:54:42 +053050#define OMAP_HSMMC_SDMASA 0x0100
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010051#define OMAP_HSMMC_BLK 0x0104
52#define OMAP_HSMMC_ARG 0x0108
53#define OMAP_HSMMC_CMD 0x010C
54#define OMAP_HSMMC_RSP10 0x0110
55#define OMAP_HSMMC_RSP32 0x0114
56#define OMAP_HSMMC_RSP54 0x0118
57#define OMAP_HSMMC_RSP76 0x011C
58#define OMAP_HSMMC_DATA 0x0120
Andreas Fenkartbb0635f2014-05-29 10:28:01 +020059#define OMAP_HSMMC_PSTATE 0x0124
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010060#define OMAP_HSMMC_HCTL 0x0128
61#define OMAP_HSMMC_SYSCTL 0x012C
62#define OMAP_HSMMC_STAT 0x0130
63#define OMAP_HSMMC_IE 0x0134
64#define OMAP_HSMMC_ISE 0x0138
Balaji T Ka2e77152014-01-21 19:54:42 +053065#define OMAP_HSMMC_AC12 0x013C
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010066#define OMAP_HSMMC_CAPA 0x0140
67
68#define VS18 (1 << 26)
69#define VS30 (1 << 25)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053070#define HSS (1 << 21)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010071#define SDVS18 (0x5 << 9)
72#define SDVS30 (0x6 << 9)
David Brownelleb250822009-02-17 14:49:01 -080073#define SDVS33 (0x7 << 9)
Kim Kyuwon1b331e62009-02-20 13:10:08 +010074#define SDVS_MASK 0x00000E00
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010075#define SDVSCLR 0xFFFFF1FF
76#define SDVSDET 0x00000400
77#define AUTOIDLE 0x1
78#define SDBP (1 << 8)
79#define DTO 0xe
80#define ICE 0x1
81#define ICS 0x2
82#define CEN (1 << 2)
Balaji T Ked164182013-10-21 00:25:21 +053083#define CLKD_MAX 0x3FF /* max clock divisor: 1023 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010084#define CLKD_MASK 0x0000FFC0
85#define CLKD_SHIFT 6
86#define DTO_MASK 0x000F0000
87#define DTO_SHIFT 16
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010088#define INIT_STREAM (1 << 1)
Balaji T Ka2e77152014-01-21 19:54:42 +053089#define ACEN_ACMD23 (2 << 2)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010090#define DP_SELECT (1 << 21)
91#define DDIR (1 << 4)
Venkatraman Sa7e96872012-11-19 22:00:01 +053092#define DMAE 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010093#define MSBS (1 << 5)
94#define BCE (1 << 1)
95#define FOUR_BIT (1 << 1)
Hebbar, Gururajacd587092012-11-19 21:59:58 +053096#define HSPE (1 << 2)
Balaji T K5a52b082014-05-29 10:28:02 +020097#define IWE (1 << 24)
Balaji T K03b5d922012-04-09 12:08:33 +053098#define DDR (1 << 19)
Balaji T K5a52b082014-05-29 10:28:02 +020099#define CLKEXTFREE (1 << 16)
100#define CTPL (1 << 11)
Jarkko Lavinen73153012008-11-21 16:49:54 +0200101#define DW8 (1 << 5)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100102#define OD 0x1
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100103#define STAT_CLEAR 0xFFFFFFFF
104#define INIT_STREAM_CMD 0x00000000
105#define DUAL_VOLT_OCR_BIT 7
106#define SRC (1 << 25)
107#define SRD (1 << 26)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700108#define SOFTRESET (1 << 1)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100109
Andreas Fenkartf9459012014-05-29 10:28:03 +0200110/* PSTATE */
111#define DLEV_DAT(x) (1 << (20 + (x)))
112
Venkatraman Sa7e96872012-11-19 22:00:01 +0530113/* Interrupt masks for IE and ISE register */
114#define CC_EN (1 << 0)
115#define TC_EN (1 << 1)
116#define BWR_EN (1 << 4)
117#define BRR_EN (1 << 5)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200118#define CIRQ_EN (1 << 8)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530119#define ERR_EN (1 << 15)
120#define CTO_EN (1 << 16)
121#define CCRC_EN (1 << 17)
122#define CEB_EN (1 << 18)
123#define CIE_EN (1 << 19)
124#define DTO_EN (1 << 20)
125#define DCRC_EN (1 << 21)
126#define DEB_EN (1 << 22)
Balaji T Ka2e77152014-01-21 19:54:42 +0530127#define ACE_EN (1 << 24)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530128#define CERR_EN (1 << 28)
129#define BADA_EN (1 << 29)
130
Balaji T Ka2e77152014-01-21 19:54:42 +0530131#define INT_EN_MASK (BADA_EN | CERR_EN | ACE_EN | DEB_EN | DCRC_EN |\
Venkatraman Sa7e96872012-11-19 22:00:01 +0530132 DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \
133 BRR_EN | BWR_EN | TC_EN | CC_EN)
134
Balaji T Ka2e77152014-01-21 19:54:42 +0530135#define CNI (1 << 7)
136#define ACIE (1 << 4)
137#define ACEB (1 << 3)
138#define ACCE (1 << 2)
139#define ACTO (1 << 1)
140#define ACNE (1 << 0)
141
Balaji T Kfa4aa2d2011-07-01 22:09:35 +0530142#define MMC_AUTOSUSPEND_DELAY 100
Jianpeng Ma1e881782013-10-21 00:25:20 +0530143#define MMC_TIMEOUT_MS 20 /* 20 mSec */
144#define MMC_TIMEOUT_US 20000 /* 20000 micro Sec */
Andy Shevchenko6b206ef2011-07-13 11:16:29 -0400145#define OMAP_MMC_MIN_CLOCK 400000
146#define OMAP_MMC_MAX_CLOCK 52000000
Kishore Kadiyala0005ae72011-02-28 20:48:05 +0530147#define DRIVER_NAME "omap_hsmmc"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100148
Balaji T Ke99448f2014-02-19 20:26:40 +0530149#define VDD_1V8 1800000 /* 180000 uV */
150#define VDD_3V0 3000000 /* 300000 uV */
151#define VDD_165_195 (ffs(MMC_VDD_165_195) - 1)
152
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100153/*
154 * One controller can have multiple slots, like on some omap boards using
155 * omap.c controller driver. Luckily this is not currently done on any known
156 * omap_hsmmc.c device.
157 */
158#define mmc_slot(host) (host->pdata->slots[host->slot_id])
159
160/*
161 * MMC Host controller read/write API's
162 */
163#define OMAP_HSMMC_READ(base, reg) \
164 __raw_readl((base) + OMAP_HSMMC_##reg)
165
166#define OMAP_HSMMC_WRITE(base, reg, val) \
167 __raw_writel((val), (base) + OMAP_HSMMC_##reg)
168
Per Forlin9782aff2011-07-01 18:55:23 +0200169struct omap_hsmmc_next {
170 unsigned int dma_len;
171 s32 cookie;
172};
173
Denis Karpov70a33412009-09-22 16:44:59 -0700174struct omap_hsmmc_host {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100175 struct device *dev;
176 struct mmc_host *mmc;
177 struct mmc_request *mrq;
178 struct mmc_command *cmd;
179 struct mmc_data *data;
180 struct clk *fclk;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100181 struct clk *dbclk;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800182 /*
183 * vcc == configured supply
184 * vcc_aux == optional
185 * - MMC1, supply for DAT4..DAT7
186 * - MMC2/MMC2, external level shifter voltage supply, for
187 * chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
188 */
189 struct regulator *vcc;
190 struct regulator *vcc_aux;
Balaji T Ke99448f2014-02-19 20:26:40 +0530191 struct regulator *pbias;
192 bool pbias_enabled;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100193 void __iomem *base;
194 resource_size_t mapbase;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700195 spinlock_t irq_lock; /* Prevent races with irq handler */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100196 unsigned int dma_len;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200197 unsigned int dma_sg_idx;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100198 unsigned char bus_mode;
Adrian Huntera3621462009-09-22 16:44:42 -0700199 unsigned char power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100200 int suspended;
Tony Lindgren0a82e062013-10-21 00:25:19 +0530201 u32 con;
202 u32 hctl;
203 u32 sysctl;
204 u32 capa;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100205 int irq;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200206 int wake_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100207 int use_dma, dma_ch;
Russell Kingc5c98922012-04-13 12:14:39 +0100208 struct dma_chan *tx_chan;
209 struct dma_chan *rx_chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100210 int slot_id;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200211 int response_busy;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700212 int context_loss;
Adrian Hunterb62f6222009-09-22 16:45:01 -0700213 int protect_card;
214 int reqs_blocked;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800215 int use_reg;
Adrian Hunterb4175772010-05-26 14:42:06 -0700216 int req_in_progress;
Balaji T K6e3076c2014-01-21 19:54:42 +0530217 unsigned long clk_rate;
Balaji T Ka2e77152014-01-21 19:54:42 +0530218 unsigned int flags;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200219#define AUTO_CMD23 (1 << 0) /* Auto CMD23 support */
220#define HSMMC_SDIO_IRQ_ENABLED (1 << 1) /* SDIO irq enabled */
221#define HSMMC_WAKE_IRQ_ENABLED (1 << 2)
Per Forlin9782aff2011-07-01 18:55:23 +0200222 struct omap_hsmmc_next next_data;
Andreas Fenkart551434382014-11-08 15:33:09 +0100223 struct omap_hsmmc_platform_data *pdata;
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
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800233static int omap_hsmmc_card_detect(struct device *dev, int slot)
234{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530235 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart551434382014-11-08 15:33:09 +0100236 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800237
238 /* NOTE: assumes card detect signal is active-low */
239 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
240}
241
242static int omap_hsmmc_get_wp(struct device *dev, int slot)
243{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530244 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart551434382014-11-08 15:33:09 +0100245 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800246
247 /* NOTE: assumes write protect signal is active-high */
248 return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
249}
250
251static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
252{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530253 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart551434382014-11-08 15:33:09 +0100254 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800255
256 /* NOTE: assumes card detect signal is active-low */
257 return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
258}
259
260#ifdef CONFIG_PM
261
262static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
263{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530264 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart551434382014-11-08 15:33:09 +0100265 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800266
267 disable_irq(mmc->slots[0].card_detect_irq);
268 return 0;
269}
270
271static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
272{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530273 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart551434382014-11-08 15:33:09 +0100274 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800275
276 enable_irq(mmc->slots[0].card_detect_irq);
277 return 0;
278}
279
280#else
281
282#define omap_hsmmc_suspend_cdirq NULL
283#define omap_hsmmc_resume_cdirq NULL
284
285#endif
286
Adrian Hunterb702b102010-02-15 10:03:35 -0800287#ifdef CONFIG_REGULATOR
288
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500289static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800290 int vdd)
291{
292 struct omap_hsmmc_host *host =
293 platform_get_drvdata(to_platform_device(dev));
294 int ret = 0;
295
296 /*
297 * If we don't see a Vcc regulator, assume it's a fixed
298 * voltage always-on regulator.
299 */
300 if (!host->vcc)
301 return 0;
302
303 if (mmc_slot(host).before_set_reg)
304 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
305
Balaji T Ke99448f2014-02-19 20:26:40 +0530306 if (host->pbias) {
307 if (host->pbias_enabled == 1) {
308 ret = regulator_disable(host->pbias);
309 if (!ret)
310 host->pbias_enabled = 0;
311 }
312 regulator_set_voltage(host->pbias, VDD_3V0, VDD_3V0);
313 }
314
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800315 /*
316 * Assume Vcc regulator is used only to power the card ... OMAP
317 * VDDS is used to power the pins, optionally with a transceiver to
318 * support cards using voltages other than VDDS (1.8V nominal). When a
319 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
320 *
321 * In some cases this regulator won't support enable/disable;
322 * e.g. it's a fixed rail for a WLAN chip.
323 *
324 * In other cases vcc_aux switches interface power. Example, for
325 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
326 * chips/cards need an interface voltage rail too.
327 */
328 if (power_on) {
Balaji T K987fd492014-02-19 20:26:40 +0530329 if (host->vcc)
330 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800331 /* Enable interface voltage rail, if needed */
332 if (ret == 0 && host->vcc_aux) {
333 ret = regulator_enable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530334 if (ret < 0 && host->vcc)
Linus Walleij99fc5132010-09-29 01:08:27 -0400335 ret = mmc_regulator_set_ocr(host->mmc,
336 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800337 }
338 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400339 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800340 if (host->vcc_aux)
341 ret = regulator_disable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530342 if (host->vcc) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400343 /* Then proceed to shut down the local regulator */
344 ret = mmc_regulator_set_ocr(host->mmc,
345 host->vcc, 0);
346 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800347 }
348
Balaji T Ke99448f2014-02-19 20:26:40 +0530349 if (host->pbias) {
350 if (vdd <= VDD_165_195)
351 ret = regulator_set_voltage(host->pbias, VDD_1V8,
352 VDD_1V8);
353 else
354 ret = regulator_set_voltage(host->pbias, VDD_3V0,
355 VDD_3V0);
356 if (ret < 0)
357 goto error_set_power;
358
359 if (host->pbias_enabled == 0) {
360 ret = regulator_enable(host->pbias);
361 if (!ret)
362 host->pbias_enabled = 1;
363 }
364 }
365
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800366 if (mmc_slot(host).after_set_reg)
367 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
368
Balaji T Ke99448f2014-02-19 20:26:40 +0530369error_set_power:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800370 return ret;
371}
372
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800373static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
374{
375 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700376 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800377
Balaji T Kf2ddc1d2014-02-19 20:26:40 +0530378 reg = devm_regulator_get(host->dev, "vmmc");
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800379 if (IS_ERR(reg)) {
Balaji T K987fd492014-02-19 20:26:40 +0530380 dev_err(host->dev, "unable to get vmmc regulator %ld\n",
381 PTR_ERR(reg));
NeilBrown1fdc90f2012-08-08 00:06:00 -0400382 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800383 } else {
384 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700385 ocr_value = mmc_regulator_get_ocrmask(reg);
386 if (!mmc_slot(host).ocr_mask) {
387 mmc_slot(host).ocr_mask = ocr_value;
388 } else {
389 if (!(mmc_slot(host).ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530390 dev_err(host->dev, "ocrmask %x is not supported\n",
Rajendra Nayake3f1adb2012-03-07 09:55:31 -0500391 mmc_slot(host).ocr_mask);
kishore kadiyala64be9782010-10-01 16:35:28 -0700392 mmc_slot(host).ocr_mask = 0;
393 return -EINVAL;
394 }
395 }
Balaji T K987fd492014-02-19 20:26:40 +0530396 }
397 mmc_slot(host).set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800398
Balaji T K987fd492014-02-19 20:26:40 +0530399 /* Allow an aux regulator */
400 reg = devm_regulator_get_optional(host->dev, "vmmc_aux");
401 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800402
Balaji T Ke99448f2014-02-19 20:26:40 +0530403 reg = devm_regulator_get_optional(host->dev, "pbias");
404 host->pbias = IS_ERR(reg) ? NULL : reg;
405
Balaji T K987fd492014-02-19 20:26:40 +0530406 /* For eMMC do not power off when not in sleep state */
407 if (mmc_slot(host).no_regulator_off_init)
408 return 0;
409 /*
410 * To disable boot_on regulator, enable regulator
411 * to increase usecount and then disable it.
412 */
413 if ((host->vcc && regulator_is_enabled(host->vcc) > 0) ||
414 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
415 int vdd = ffs(mmc_slot(host).ocr_mask) - 1;
Adrian Huntere840ce12011-05-06 12:14:10 +0300416
Balaji T K987fd492014-02-19 20:26:40 +0530417 mmc_slot(host).set_power(host->dev, host->slot_id, 1, vdd);
418 mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800419 }
420
421 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800422}
423
424static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
425{
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800426 mmc_slot(host).set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800427}
428
Adrian Hunterb702b102010-02-15 10:03:35 -0800429static inline int omap_hsmmc_have_reg(void)
430{
431 return 1;
432}
433
434#else
435
436static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
437{
438 return -EINVAL;
439}
440
441static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
442{
443}
444
445static inline int omap_hsmmc_have_reg(void)
446{
447 return 0;
448}
449
450#endif
451
Andreas Fenkart551434382014-11-08 15:33:09 +0100452static int omap_hsmmc_gpio_init(struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800453{
454 int ret;
455
456 if (gpio_is_valid(pdata->slots[0].switch_pin)) {
Adrian Hunterb702b102010-02-15 10:03:35 -0800457 if (pdata->slots[0].cover)
458 pdata->slots[0].get_cover_state =
459 omap_hsmmc_get_cover_state;
460 else
461 pdata->slots[0].card_detect = omap_hsmmc_card_detect;
462 pdata->slots[0].card_detect_irq =
463 gpio_to_irq(pdata->slots[0].switch_pin);
464 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
465 if (ret)
466 return ret;
467 ret = gpio_direction_input(pdata->slots[0].switch_pin);
468 if (ret)
469 goto err_free_sp;
470 } else
471 pdata->slots[0].switch_pin = -EINVAL;
472
473 if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
474 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
475 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
476 if (ret)
477 goto err_free_cd;
478 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
479 if (ret)
480 goto err_free_wp;
481 } else
482 pdata->slots[0].gpio_wp = -EINVAL;
483
484 return 0;
485
486err_free_wp:
487 gpio_free(pdata->slots[0].gpio_wp);
488err_free_cd:
489 if (gpio_is_valid(pdata->slots[0].switch_pin))
490err_free_sp:
491 gpio_free(pdata->slots[0].switch_pin);
492 return ret;
493}
494
Andreas Fenkart551434382014-11-08 15:33:09 +0100495static void omap_hsmmc_gpio_free(struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800496{
497 if (gpio_is_valid(pdata->slots[0].gpio_wp))
498 gpio_free(pdata->slots[0].gpio_wp);
499 if (gpio_is_valid(pdata->slots[0].switch_pin))
500 gpio_free(pdata->slots[0].switch_pin);
501}
502
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100503/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300504 * Start clock to the card
505 */
506static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
507{
508 OMAP_HSMMC_WRITE(host->base, SYSCTL,
509 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
510}
511
512/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100513 * Stop clock to the card
514 */
Denis Karpov70a33412009-09-22 16:44:59 -0700515static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100516{
517 OMAP_HSMMC_WRITE(host->base, SYSCTL,
518 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
519 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900520 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100521}
522
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700523static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
524 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700525{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200526 u32 irq_mask = INT_EN_MASK;
527 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700528
529 if (host->use_dma)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200530 irq_mask &= ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700531
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700532 /* Disable timeout for erases */
533 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530534 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700535
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200536 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700537 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
538 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200539
540 /* latch pending CIRQ, but don't signal MMC core */
541 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
542 irq_mask |= CIRQ_EN;
Adrian Hunterb4175772010-05-26 14:42:06 -0700543 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200544 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700545}
546
547static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
548{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200549 u32 irq_mask = 0;
550 unsigned long flags;
551
552 spin_lock_irqsave(&host->irq_lock, flags);
553 /* no transfer running but need to keep cirq if enabled */
554 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
555 irq_mask |= CIRQ_EN;
556 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
557 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Adrian Hunterb4175772010-05-26 14:42:06 -0700558 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200559 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700560}
561
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300562/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530563static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300564{
565 u16 dsor = 0;
566
567 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530568 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530569 if (dsor > CLKD_MAX)
570 dsor = CLKD_MAX;
Andy Shevchenkoac330f442011-05-10 15:51:54 +0300571 }
572
573 return dsor;
574}
575
Andy Shevchenko5934df22011-05-06 12:14:06 +0300576static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
577{
578 struct mmc_ios *ios = &host->mmc->ios;
579 unsigned long regval;
580 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530581 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300582
Venkatraman S8986d312012-08-07 19:10:38 +0530583 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300584
585 omap_hsmmc_stop_clock(host);
586
587 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
588 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530589 clkdiv = calc_divisor(host, ios);
590 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300591 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
592 OMAP_HSMMC_WRITE(host->base, SYSCTL,
593 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
594
595 /* Wait till the ICS bit is set */
596 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
597 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
598 && time_before(jiffies, timeout))
599 cpu_relax();
600
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530601 /*
602 * Enable High-Speed Support
603 * Pre-Requisites
604 * - Controller should support High-Speed-Enable Bit
605 * - Controller should not be using DDR Mode
606 * - Controller should advertise that it supports High Speed
607 * in capabilities register
608 * - MMC/SD clock coming out of controller > 25MHz
609 */
610 if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) &&
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900611 (ios->timing != MMC_TIMING_MMC_DDR52) &&
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530612 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
613 regval = OMAP_HSMMC_READ(host->base, HCTL);
614 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
615 regval |= HSPE;
616 else
617 regval &= ~HSPE;
618
619 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
620 }
621
Andy Shevchenko5934df22011-05-06 12:14:06 +0300622 omap_hsmmc_start_clock(host);
623}
624
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400625static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
626{
627 struct mmc_ios *ios = &host->mmc->ios;
628 u32 con;
629
630 con = OMAP_HSMMC_READ(host->base, CON);
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900631 if (ios->timing == MMC_TIMING_MMC_DDR52)
Balaji T K03b5d922012-04-09 12:08:33 +0530632 con |= DDR; /* configure in DDR mode */
633 else
634 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400635 switch (ios->bus_width) {
636 case MMC_BUS_WIDTH_8:
637 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
638 break;
639 case MMC_BUS_WIDTH_4:
640 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
641 OMAP_HSMMC_WRITE(host->base, HCTL,
642 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
643 break;
644 case MMC_BUS_WIDTH_1:
645 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
646 OMAP_HSMMC_WRITE(host->base, HCTL,
647 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
648 break;
649 }
650}
651
652static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
653{
654 struct mmc_ios *ios = &host->mmc->ios;
655 u32 con;
656
657 con = OMAP_HSMMC_READ(host->base, CON);
658 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
659 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
660 else
661 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
662}
663
Denis Karpov11dd62a2009-09-22 16:44:43 -0700664#ifdef CONFIG_PM
665
666/*
667 * Restore the MMC host context, if it was lost as result of a
668 * power state change.
669 */
Denis Karpov70a33412009-09-22 16:44:59 -0700670static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700671{
672 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400673 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700674 unsigned long timeout;
675
Tony Lindgren0a82e062013-10-21 00:25:19 +0530676 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
677 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
678 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
679 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
680 return 0;
681
682 host->context_loss++;
683
Balaji T Kc2200ef2012-03-07 09:55:30 -0500684 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700685 if (host->power_mode != MMC_POWER_OFF &&
686 (1 << ios->vdd) <= MMC_VDD_23_24)
687 hctl = SDVS18;
688 else
689 hctl = SDVS30;
690 capa = VS30 | VS18;
691 } else {
692 hctl = SDVS18;
693 capa = VS18;
694 }
695
Balaji T K5a52b082014-05-29 10:28:02 +0200696 if (host->mmc->caps & MMC_CAP_SDIO_IRQ)
697 hctl |= IWE;
698
Denis Karpov11dd62a2009-09-22 16:44:43 -0700699 OMAP_HSMMC_WRITE(host->base, HCTL,
700 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
701
702 OMAP_HSMMC_WRITE(host->base, CAPA,
703 OMAP_HSMMC_READ(host->base, CAPA) | capa);
704
705 OMAP_HSMMC_WRITE(host->base, HCTL,
706 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
707
708 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
709 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
710 && time_before(jiffies, timeout))
711 ;
712
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200713 OMAP_HSMMC_WRITE(host->base, ISE, 0);
714 OMAP_HSMMC_WRITE(host->base, IE, 0);
715 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700716
717 /* Do not initialize card-specific things if the power is off */
718 if (host->power_mode == MMC_POWER_OFF)
719 goto out;
720
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400721 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700722
Andy Shevchenko5934df22011-05-06 12:14:06 +0300723 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700724
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400725 omap_hsmmc_set_bus_mode(host);
726
Denis Karpov11dd62a2009-09-22 16:44:43 -0700727out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530728 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
729 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700730 return 0;
731}
732
733/*
734 * Save the MMC host context (store the number of power state changes so far).
735 */
Denis Karpov70a33412009-09-22 16:44:59 -0700736static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700737{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530738 host->con = OMAP_HSMMC_READ(host->base, CON);
739 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
740 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
741 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700742}
743
744#else
745
Denis Karpov70a33412009-09-22 16:44:59 -0700746static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700747{
748 return 0;
749}
750
Denis Karpov70a33412009-09-22 16:44:59 -0700751static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700752{
753}
754
755#endif
756
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100757/*
758 * Send init stream sequence to card
759 * before sending IDLE command
760 */
Denis Karpov70a33412009-09-22 16:44:59 -0700761static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100762{
763 int reg = 0;
764 unsigned long timeout;
765
Adrian Hunterb62f6222009-09-22 16:45:01 -0700766 if (host->protect_card)
767 return;
768
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100769 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700770
771 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100772 OMAP_HSMMC_WRITE(host->base, CON,
773 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
774 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
775
776 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530777 while ((reg != CC_EN) && time_before(jiffies, timeout))
778 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100779
780 OMAP_HSMMC_WRITE(host->base, CON,
781 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700782
783 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
784 OMAP_HSMMC_READ(host->base, STAT);
785
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100786 enable_irq(host->irq);
787}
788
789static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700790int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100791{
792 int r = 1;
793
Denis Karpov191d1f12009-09-22 16:44:55 -0700794 if (mmc_slot(host).get_cover_state)
795 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100796 return r;
797}
798
799static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700800omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100801 char *buf)
802{
803 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700804 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100805
Denis Karpov70a33412009-09-22 16:44:59 -0700806 return sprintf(buf, "%s\n",
807 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100808}
809
Denis Karpov70a33412009-09-22 16:44:59 -0700810static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100811
812static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700813omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100814 char *buf)
815{
816 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700817 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100818
Denis Karpov191d1f12009-09-22 16:44:55 -0700819 return sprintf(buf, "%s\n", mmc_slot(host).name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100820}
821
Denis Karpov70a33412009-09-22 16:44:59 -0700822static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100823
824/*
825 * Configure the response type and send the cmd.
826 */
827static void
Denis Karpov70a33412009-09-22 16:44:59 -0700828omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100829 struct mmc_data *data)
830{
831 int cmdreg = 0, resptype = 0, cmdtype = 0;
832
Venkatraman S8986d312012-08-07 19:10:38 +0530833 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100834 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
835 host->cmd = cmd;
836
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700837 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100838
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200839 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100840 if (cmd->flags & MMC_RSP_PRESENT) {
841 if (cmd->flags & MMC_RSP_136)
842 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200843 else if (cmd->flags & MMC_RSP_BUSY) {
844 resptype = 3;
845 host->response_busy = 1;
846 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100847 resptype = 2;
848 }
849
850 /*
851 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
852 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
853 * a val of 0x3, rest 0x0.
854 */
855 if (cmd == host->mrq->stop)
856 cmdtype = 0x3;
857
858 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
859
Balaji T Ka2e77152014-01-21 19:54:42 +0530860 if ((host->flags & AUTO_CMD23) && mmc_op_multi(cmd->opcode) &&
861 host->mrq->sbc) {
862 cmdreg |= ACEN_ACMD23;
863 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg);
864 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100865 if (data) {
866 cmdreg |= DP_SELECT | MSBS | BCE;
867 if (data->flags & MMC_DATA_READ)
868 cmdreg |= DDIR;
869 else
870 cmdreg &= ~(DDIR);
871 }
872
873 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530874 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100875
Adrian Hunterb4175772010-05-26 14:42:06 -0700876 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700877
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100878 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
879 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
880}
881
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200882static int
Denis Karpov70a33412009-09-22 16:44:59 -0700883omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200884{
885 if (data->flags & MMC_DATA_WRITE)
886 return DMA_TO_DEVICE;
887 else
888 return DMA_FROM_DEVICE;
889}
890
Russell Kingc5c98922012-04-13 12:14:39 +0100891static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
892 struct mmc_data *data)
893{
894 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
895}
896
Adrian Hunterb4175772010-05-26 14:42:06 -0700897static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
898{
899 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530900 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700901
Venkatraman S31463b12012-04-09 12:08:34 +0530902 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700903 host->req_in_progress = 0;
904 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530905 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700906
907 omap_hsmmc_disable_irq(host);
908 /* Do not complete the request if DMA is still in progress */
909 if (mrq->data && host->use_dma && dma_ch != -1)
910 return;
911 host->mrq = NULL;
912 mmc_request_done(host->mmc, mrq);
913}
914
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100915/*
916 * Notify the transfer complete to MMC core
917 */
918static void
Denis Karpov70a33412009-09-22 16:44:59 -0700919omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100920{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200921 if (!data) {
922 struct mmc_request *mrq = host->mrq;
923
Adrian Hunter23050102009-09-22 16:44:57 -0700924 /* TC before CC from CMD6 - don't know why, but it happens */
925 if (host->cmd && host->cmd->opcode == 6 &&
926 host->response_busy) {
927 host->response_busy = 0;
928 return;
929 }
930
Adrian Hunterb4175772010-05-26 14:42:06 -0700931 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200932 return;
933 }
934
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100935 host->data = NULL;
936
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100937 if (!data->error)
938 data->bytes_xfered += data->blocks * (data->blksz);
939 else
940 data->bytes_xfered = 0;
941
Balaji T Kbf129e12014-01-21 19:54:42 +0530942 if (data->stop && (data->error || !host->mrq->sbc))
943 omap_hsmmc_start_command(host, data->stop, NULL);
944 else
Adrian Hunterb4175772010-05-26 14:42:06 -0700945 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100946}
947
948/*
949 * Notify the core about command completion
950 */
951static void
Denis Karpov70a33412009-09-22 16:44:59 -0700952omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100953{
Balaji T Kbf129e12014-01-21 19:54:42 +0530954 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) &&
Balaji T Ka2e77152014-01-21 19:54:42 +0530955 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) {
Balaji T K2177fa92014-05-09 22:16:52 +0530956 host->cmd = NULL;
Balaji T Kbf129e12014-01-21 19:54:42 +0530957 omap_hsmmc_start_dma_transfer(host);
958 omap_hsmmc_start_command(host, host->mrq->cmd,
959 host->mrq->data);
960 return;
961 }
962
Balaji T K2177fa92014-05-09 22:16:52 +0530963 host->cmd = NULL;
964
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100965 if (cmd->flags & MMC_RSP_PRESENT) {
966 if (cmd->flags & MMC_RSP_136) {
967 /* response type 2 */
968 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
969 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
970 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
971 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
972 } else {
973 /* response types 1, 1b, 3, 4, 5, 6 */
974 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
975 }
976 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700977 if ((host->data == NULL && !host->response_busy) || cmd->error)
Balaji T Kd4b2c372014-01-21 19:54:42 +0530978 omap_hsmmc_request_done(host, host->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100979}
980
981/*
982 * DMA clean up for command errors
983 */
Denis Karpov70a33412009-09-22 16:44:59 -0700984static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100985{
Adrian Hunterb4175772010-05-26 14:42:06 -0700986 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530987 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700988
Jarkko Lavinen82788ff2008-12-05 12:31:46 +0200989 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100990
Venkatraman S31463b12012-04-09 12:08:34 +0530991 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700992 dma_ch = host->dma_ch;
993 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +0530994 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700995
996 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +0100997 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
998
999 dmaengine_terminate_all(chan);
1000 dma_unmap_sg(chan->device->dev,
1001 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001002 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +01001003
Per Forlin053bf342011-11-07 21:55:11 +05301004 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001005 }
1006 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001007}
1008
1009/*
1010 * Readable error output
1011 */
1012#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001013static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001014{
1015 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001016 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001017 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1018 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1019 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1020 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001021 };
1022 char res[256];
1023 char *buf = res;
1024 int len, i;
1025
1026 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1027 buf += len;
1028
Denis Karpov70a33412009-09-22 16:44:59 -07001029 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001030 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001031 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001032 buf += len;
1033 }
1034
Venkatraman S8986d312012-08-07 19:10:38 +05301035 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001036}
Adrian Hunter699b9582011-05-06 12:14:01 +03001037#else
1038static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1039 u32 status)
1040{
1041}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001042#endif /* CONFIG_MMC_DEBUG */
1043
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001044/*
1045 * MMC controller internal state machines reset
1046 *
1047 * Used to reset command or data internal state machines, using respectively
1048 * SRC or SRD bit of SYSCTL register
1049 * Can be called from interrupt context
1050 */
Denis Karpov70a33412009-09-22 16:44:59 -07001051static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1052 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001053{
1054 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +05301055 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001056
1057 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1058 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1059
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001060 /*
1061 * OMAP4 ES2 and greater has an updated reset logic.
1062 * Monitor a 0->1 transition first
1063 */
1064 if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001065 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001066 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301067 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001068 }
1069 i = 0;
1070
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001071 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1072 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301073 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001074
1075 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1076 dev_err(mmc_dev(host->mmc),
1077 "Timeout waiting on controller reset in %s\n",
1078 __func__);
1079}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001080
Balaji T K25e18972012-11-19 21:59:55 +05301081static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1082 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301083{
Balaji T K25e18972012-11-19 21:59:55 +05301084 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301085 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301086 if (host->cmd)
1087 host->cmd->error = err;
1088 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301089
1090 if (host->data) {
1091 omap_hsmmc_reset_controller_fsm(host, SRD);
1092 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301093 } else if (host->mrq && host->mrq->cmd)
1094 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301095}
1096
Adrian Hunterb4175772010-05-26 14:42:06 -07001097static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001098{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001099 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001100 int end_cmd = 0, end_trans = 0;
Balaji T Ka2e77152014-01-21 19:54:42 +05301101 int error = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001102
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001103 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301104 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001105
Venkatraman Sa7e96872012-11-19 22:00:01 +05301106 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001107 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001108
Venkatraman Sa7e96872012-11-19 22:00:01 +05301109 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301110 end_cmd = 1;
Venkatraman Sa7e96872012-11-19 22:00:01 +05301111 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301112 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301113 else if (status & (CCRC_EN | DCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301114 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1115
Balaji T Ka2e77152014-01-21 19:54:42 +05301116 if (status & ACE_EN) {
1117 u32 ac12;
1118 ac12 = OMAP_HSMMC_READ(host->base, AC12);
1119 if (!(ac12 & ACNE) && host->mrq->sbc) {
1120 end_cmd = 1;
1121 if (ac12 & ACTO)
1122 error = -ETIMEDOUT;
1123 else if (ac12 & (ACCE | ACEB | ACIE))
1124 error = -EILSEQ;
1125 host->mrq->sbc->error = error;
1126 hsmmc_command_incomplete(host, error, end_cmd);
1127 }
1128 dev_dbg(mmc_dev(host->mmc), "AC12 err: 0x%x\n", ac12);
1129 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301130 if (host->data || host->response_busy) {
Balaji T K25e18972012-11-19 21:59:55 +05301131 end_trans = !end_cmd;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301132 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001133 }
1134 }
1135
Francesco Lavra7472bab2013-06-29 08:25:12 +02001136 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301137 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001138 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301139 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001140 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001141}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001142
Adrian Hunterb4175772010-05-26 14:42:06 -07001143/*
1144 * MMC controller IRQ handler
1145 */
1146static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1147{
1148 struct omap_hsmmc_host *host = dev_id;
1149 int status;
1150
1151 status = OMAP_HSMMC_READ(host->base, STAT);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001152 while (status & (INT_EN_MASK | CIRQ_EN)) {
1153 if (host->req_in_progress)
1154 omap_hsmmc_do_irq(host, status);
1155
1156 if (status & CIRQ_EN)
1157 mmc_signal_sdio_irq(host->mmc);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301158
Adrian Hunterb4175772010-05-26 14:42:06 -07001159 /* Flush posted write */
1160 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301161 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001162
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001163 return IRQ_HANDLED;
1164}
1165
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001166static irqreturn_t omap_hsmmc_wake_irq(int irq, void *dev_id)
1167{
1168 struct omap_hsmmc_host *host = dev_id;
1169
1170 /* cirq is level triggered, disable to avoid infinite loop */
1171 spin_lock(&host->irq_lock);
1172 if (host->flags & HSMMC_WAKE_IRQ_ENABLED) {
1173 disable_irq_nosync(host->wake_irq);
1174 host->flags &= ~HSMMC_WAKE_IRQ_ENABLED;
1175 }
1176 spin_unlock(&host->irq_lock);
1177 pm_request_resume(host->dev); /* no use counter */
1178
1179 return IRQ_HANDLED;
1180}
1181
Denis Karpov70a33412009-09-22 16:44:59 -07001182static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001183{
1184 unsigned long i;
1185
1186 OMAP_HSMMC_WRITE(host->base, HCTL,
1187 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1188 for (i = 0; i < loops_per_jiffy; i++) {
1189 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1190 break;
1191 cpu_relax();
1192 }
1193}
1194
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001195/*
David Brownelleb250822009-02-17 14:49:01 -08001196 * Switch MMC interface voltage ... only relevant for MMC1.
1197 *
1198 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1199 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1200 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001201 */
Denis Karpov70a33412009-09-22 16:44:59 -07001202static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001203{
1204 u32 reg_val = 0;
1205 int ret;
1206
1207 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301208 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301209 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301210 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001211
1212 /* Turn the power off */
1213 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001214
1215 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001216 if (!ret)
1217 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1218 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301219 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301220 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301221 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001222
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001223 if (ret != 0)
1224 goto err;
1225
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001226 OMAP_HSMMC_WRITE(host->base, HCTL,
1227 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1228 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001229
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001230 /*
1231 * If a MMC dual voltage card is detected, the set_ios fn calls
1232 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001233 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001234 *
David Brownelleb250822009-02-17 14:49:01 -08001235 * Cope with a bit of slop in the range ... per data sheets:
1236 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1237 * but recommended values are 1.71V to 1.89V
1238 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1239 * but recommended values are 2.7V to 3.3V
1240 *
1241 * Board setup code shouldn't permit anything very out-of-range.
1242 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1243 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001244 */
David Brownelleb250822009-02-17 14:49:01 -08001245 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001246 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001247 else
1248 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001249
1250 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001251 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001252
1253 return 0;
1254err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301255 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001256 return ret;
1257}
1258
Adrian Hunterb62f6222009-09-22 16:45:01 -07001259/* Protect the card while the cover is open */
1260static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1261{
1262 if (!mmc_slot(host).get_cover_state)
1263 return;
1264
1265 host->reqs_blocked = 0;
1266 if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1267 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301268 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001269 "card is now accessible\n",
1270 mmc_hostname(host->mmc));
1271 host->protect_card = 0;
1272 }
1273 } else {
1274 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301275 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001276 "card is now inaccessible\n",
1277 mmc_hostname(host->mmc));
1278 host->protect_card = 1;
1279 }
1280 }
1281}
1282
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001283/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001284 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001285 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001286static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001287{
NeilBrown7efab4f2011-12-30 12:35:13 +11001288 struct omap_hsmmc_host *host = dev_id;
Andreas Fenkart551434382014-11-08 15:33:09 +01001289 struct omap_hsmmc_slot_data *slot = &mmc_slot(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001290 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001291
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001292 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001293
Denis Karpov191d1f12009-09-22 16:44:55 -07001294 if (slot->card_detect)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001295 carddetect = slot->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001296 else {
1297 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001298 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001299 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001300
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001301 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001302 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001303 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001304 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001305 return IRQ_HANDLED;
1306}
1307
Russell Kingc5c98922012-04-13 12:14:39 +01001308static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001309{
Russell Kingc5c98922012-04-13 12:14:39 +01001310 struct omap_hsmmc_host *host = param;
1311 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001312 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001313 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001314
Russell Kingc5c98922012-04-13 12:14:39 +01001315 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001316 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001317 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001318 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001319 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001320
Adrian Hunter770d7432011-05-06 12:14:11 +03001321 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001322 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001323 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001324 dma_unmap_sg(chan->device->dev,
1325 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001326 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001327
1328 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001329 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001330 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001331
1332 /* If DMA has finished after TC, complete the request */
1333 if (!req_in_progress) {
1334 struct mmc_request *mrq = host->mrq;
1335
1336 host->mrq = NULL;
1337 mmc_request_done(host->mmc, mrq);
1338 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001339}
1340
Per Forlin9782aff2011-07-01 18:55:23 +02001341static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1342 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001343 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001344 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001345{
1346 int dma_len;
1347
1348 if (!next && data->host_cookie &&
1349 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301350 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001351 " host->next_data.cookie %d\n",
1352 __func__, data->host_cookie, host->next_data.cookie);
1353 data->host_cookie = 0;
1354 }
1355
1356 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001357 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001358 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001359 omap_hsmmc_get_dma_dir(host, data));
1360
1361 } else {
1362 dma_len = host->next_data.dma_len;
1363 host->next_data.dma_len = 0;
1364 }
1365
1366
1367 if (dma_len == 0)
1368 return -EINVAL;
1369
1370 if (next) {
1371 next->dma_len = dma_len;
1372 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1373 } else
1374 host->dma_len = dma_len;
1375
1376 return 0;
1377}
1378
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001379/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001380 * Routine to configure and start DMA for the MMC card
1381 */
Balaji T K9d025332014-01-21 19:54:42 +05301382static int omap_hsmmc_setup_dma_transfer(struct omap_hsmmc_host *host,
Denis Karpov70a33412009-09-22 16:44:59 -07001383 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001384{
Russell King26b88522012-04-13 12:27:37 +01001385 struct dma_slave_config cfg;
1386 struct dma_async_tx_descriptor *tx;
1387 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001388 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001389 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001390
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001391 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001392 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001393 struct scatterlist *sgl;
1394
1395 sgl = data->sg + i;
1396 if (sgl->length % data->blksz)
1397 return -EINVAL;
1398 }
1399 if ((data->blksz % 4) != 0)
1400 /* REVISIT: The MMC buffer increments only when MSB is written.
1401 * Return error for blksz which is non multiple of four.
1402 */
1403 return -EINVAL;
1404
Adrian Hunterb4175772010-05-26 14:42:06 -07001405 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001406
Russell Kingc5c98922012-04-13 12:14:39 +01001407 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001408
Russell King26b88522012-04-13 12:27:37 +01001409 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1410 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1411 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1412 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1413 cfg.src_maxburst = data->blksz / 4;
1414 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001415
Russell King26b88522012-04-13 12:27:37 +01001416 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001417 if (ret)
1418 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001419
Russell King26b88522012-04-13 12:27:37 +01001420 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1421 if (ret)
1422 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001423
Russell King26b88522012-04-13 12:27:37 +01001424 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1425 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1426 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1427 if (!tx) {
1428 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1429 /* FIXME: cleanup */
1430 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001431 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001432
Russell King26b88522012-04-13 12:27:37 +01001433 tx->callback = omap_hsmmc_dma_callback;
1434 tx->callback_param = host;
1435
1436 /* Does not fail */
1437 dmaengine_submit(tx);
1438
1439 host->dma_ch = 1;
1440
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001441 return 0;
1442}
1443
Denis Karpov70a33412009-09-22 16:44:59 -07001444static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001445 unsigned int timeout_ns,
1446 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001447{
1448 unsigned int timeout, cycle_ns;
1449 uint32_t reg, clkd, dto = 0;
1450
1451 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1452 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1453 if (clkd == 0)
1454 clkd = 1;
1455
Balaji T K6e3076c2014-01-21 19:54:42 +05301456 cycle_ns = 1000000000 / (host->clk_rate / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001457 timeout = timeout_ns / cycle_ns;
1458 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001459 if (timeout) {
1460 while ((timeout & 0x80000000) == 0) {
1461 dto += 1;
1462 timeout <<= 1;
1463 }
1464 dto = 31 - dto;
1465 timeout <<= 1;
1466 if (timeout && dto)
1467 dto += 1;
1468 if (dto >= 13)
1469 dto -= 13;
1470 else
1471 dto = 0;
1472 if (dto > 14)
1473 dto = 14;
1474 }
1475
1476 reg &= ~DTO_MASK;
1477 reg |= dto << DTO_SHIFT;
1478 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1479}
1480
Balaji T K9d025332014-01-21 19:54:42 +05301481static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host)
1482{
1483 struct mmc_request *req = host->mrq;
1484 struct dma_chan *chan;
1485
1486 if (!req->data)
1487 return;
1488 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1489 | (req->data->blocks << 16));
1490 set_data_timeout(host, req->data->timeout_ns,
1491 req->data->timeout_clks);
1492 chan = omap_hsmmc_get_dma_chan(host, req->data);
1493 dma_async_issue_pending(chan);
1494}
1495
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001496/*
1497 * Configure block length for MMC/SD cards and initiate the transfer.
1498 */
1499static int
Denis Karpov70a33412009-09-22 16:44:59 -07001500omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001501{
1502 int ret;
1503 host->data = req->data;
1504
1505 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001506 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001507 /*
1508 * Set an arbitrary 100ms data timeout for commands with
1509 * busy signal.
1510 */
1511 if (req->cmd->flags & MMC_RSP_BUSY)
1512 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001513 return 0;
1514 }
1515
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001516 if (host->use_dma) {
Balaji T K9d025332014-01-21 19:54:42 +05301517 ret = omap_hsmmc_setup_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001518 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301519 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001520 return ret;
1521 }
1522 }
1523 return 0;
1524}
1525
Per Forlin9782aff2011-07-01 18:55:23 +02001526static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1527 int err)
1528{
1529 struct omap_hsmmc_host *host = mmc_priv(mmc);
1530 struct mmc_data *data = mrq->data;
1531
Russell King26b88522012-04-13 12:27:37 +01001532 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001533 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001534
Russell King26b88522012-04-13 12:27:37 +01001535 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1536 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001537 data->host_cookie = 0;
1538 }
1539}
1540
1541static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1542 bool is_first_req)
1543{
1544 struct omap_hsmmc_host *host = mmc_priv(mmc);
1545
1546 if (mrq->data->host_cookie) {
1547 mrq->data->host_cookie = 0;
1548 return ;
1549 }
1550
Russell Kingc5c98922012-04-13 12:14:39 +01001551 if (host->use_dma) {
1552 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001553
Per Forlin9782aff2011-07-01 18:55:23 +02001554 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001555 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001556 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001557 }
Per Forlin9782aff2011-07-01 18:55:23 +02001558}
1559
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001560/*
1561 * Request function. for read/write operation
1562 */
Denis Karpov70a33412009-09-22 16:44:59 -07001563static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001564{
Denis Karpov70a33412009-09-22 16:44:59 -07001565 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001566 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001567
Adrian Hunterb4175772010-05-26 14:42:06 -07001568 BUG_ON(host->req_in_progress);
1569 BUG_ON(host->dma_ch != -1);
1570 if (host->protect_card) {
1571 if (host->reqs_blocked < 3) {
1572 /*
1573 * Ensure the controller is left in a consistent
1574 * state by resetting the command and data state
1575 * machines.
1576 */
1577 omap_hsmmc_reset_controller_fsm(host, SRD);
1578 omap_hsmmc_reset_controller_fsm(host, SRC);
1579 host->reqs_blocked += 1;
1580 }
1581 req->cmd->error = -EBADF;
1582 if (req->data)
1583 req->data->error = -EBADF;
1584 req->cmd->retries = 0;
1585 mmc_request_done(mmc, req);
1586 return;
1587 } else if (host->reqs_blocked)
1588 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001589 WARN_ON(host->mrq != NULL);
1590 host->mrq = req;
Balaji T K6e3076c2014-01-21 19:54:42 +05301591 host->clk_rate = clk_get_rate(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001592 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001593 if (err) {
1594 req->cmd->error = err;
1595 if (req->data)
1596 req->data->error = err;
1597 host->mrq = NULL;
1598 mmc_request_done(mmc, req);
1599 return;
1600 }
Balaji T Ka2e77152014-01-21 19:54:42 +05301601 if (req->sbc && !(host->flags & AUTO_CMD23)) {
Balaji T Kbf129e12014-01-21 19:54:42 +05301602 omap_hsmmc_start_command(host, req->sbc, NULL);
1603 return;
1604 }
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001605
Balaji T K9d025332014-01-21 19:54:42 +05301606 omap_hsmmc_start_dma_transfer(host);
Denis Karpov70a33412009-09-22 16:44:59 -07001607 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001608}
1609
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001610/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001611static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001612{
Denis Karpov70a33412009-09-22 16:44:59 -07001613 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001614 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001615
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301616 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001617
Adrian Huntera3621462009-09-22 16:44:42 -07001618 if (ios->power_mode != host->power_mode) {
1619 switch (ios->power_mode) {
1620 case MMC_POWER_OFF:
1621 mmc_slot(host).set_power(host->dev, host->slot_id,
1622 0, 0);
1623 break;
1624 case MMC_POWER_UP:
1625 mmc_slot(host).set_power(host->dev, host->slot_id,
1626 1, ios->vdd);
1627 break;
1628 case MMC_POWER_ON:
1629 do_send_init_stream = 1;
1630 break;
1631 }
1632 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001633 }
1634
Denis Karpovdd498ef2009-09-22 16:44:49 -07001635 /* FIXME: set registers based only on changes to ios */
1636
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001637 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001638
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301639 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001640 /* Only MMC1 can interface at 3V without some flavor
1641 * of external transceiver; but they all handle 1.8V.
1642 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001643 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Balaji T K2cf171c2014-02-19 20:26:40 +05301644 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001645 /*
1646 * The mmc_select_voltage fn of the core does
1647 * not seem to set the power_mode to
1648 * MMC_POWER_UP upon recalculating the voltage.
1649 * vdd 1.8v.
1650 */
Denis Karpov70a33412009-09-22 16:44:59 -07001651 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1652 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001653 "Switch operation failed\n");
1654 }
1655 }
1656
Andy Shevchenko5934df22011-05-06 12:14:06 +03001657 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001658
Adrian Huntera3621462009-09-22 16:44:42 -07001659 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001660 send_init_stream(host);
1661
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001662 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001663
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301664 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001665}
1666
1667static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1668{
Denis Karpov70a33412009-09-22 16:44:59 -07001669 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001670
Denis Karpov191d1f12009-09-22 16:44:55 -07001671 if (!mmc_slot(host).card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001672 return -ENOSYS;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08001673 return mmc_slot(host).card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001674}
1675
1676static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1677{
Denis Karpov70a33412009-09-22 16:44:59 -07001678 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001679
Denis Karpov191d1f12009-09-22 16:44:55 -07001680 if (!mmc_slot(host).get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001681 return -ENOSYS;
Denis Karpov191d1f12009-09-22 16:44:55 -07001682 return mmc_slot(host).get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001683}
1684
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001685static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1686{
1687 struct omap_hsmmc_host *host = mmc_priv(mmc);
1688
1689 if (mmc_slot(host).init_card)
1690 mmc_slot(host).init_card(card);
1691}
1692
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001693static void omap_hsmmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
1694{
1695 struct omap_hsmmc_host *host = mmc_priv(mmc);
Balaji T K5a52b082014-05-29 10:28:02 +02001696 u32 irq_mask, con;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001697 unsigned long flags;
1698
1699 spin_lock_irqsave(&host->irq_lock, flags);
1700
Balaji T K5a52b082014-05-29 10:28:02 +02001701 con = OMAP_HSMMC_READ(host->base, CON);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001702 irq_mask = OMAP_HSMMC_READ(host->base, ISE);
1703 if (enable) {
1704 host->flags |= HSMMC_SDIO_IRQ_ENABLED;
1705 irq_mask |= CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001706 con |= CTPL | CLKEXTFREE;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001707 } else {
1708 host->flags &= ~HSMMC_SDIO_IRQ_ENABLED;
1709 irq_mask &= ~CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001710 con &= ~(CTPL | CLKEXTFREE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001711 }
Balaji T K5a52b082014-05-29 10:28:02 +02001712 OMAP_HSMMC_WRITE(host->base, CON, con);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001713 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
1714
1715 /*
1716 * if enable, piggy back detection on current request
1717 * but always disable immediately
1718 */
1719 if (!host->req_in_progress || !enable)
1720 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
1721
1722 /* flush posted write */
1723 OMAP_HSMMC_READ(host->base, IE);
1724
1725 spin_unlock_irqrestore(&host->irq_lock, flags);
1726}
1727
1728static int omap_hsmmc_configure_wake_irq(struct omap_hsmmc_host *host)
1729{
1730 struct mmc_host *mmc = host->mmc;
1731 int ret;
1732
1733 /*
1734 * For omaps with wake-up path, wakeirq will be irq from pinctrl and
1735 * for other omaps, wakeirq will be from GPIO (dat line remuxed to
1736 * gpio). wakeirq is needed to detect sdio irq in runtime suspend state
1737 * with functional clock disabled.
1738 */
1739 if (!host->dev->of_node || !host->wake_irq)
1740 return -ENODEV;
1741
1742 /* Prevent auto-enabling of IRQ */
1743 irq_set_status_flags(host->wake_irq, IRQ_NOAUTOEN);
1744 ret = devm_request_irq(host->dev, host->wake_irq, omap_hsmmc_wake_irq,
1745 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1746 mmc_hostname(mmc), host);
1747 if (ret) {
1748 dev_err(mmc_dev(host->mmc), "Unable to request wake IRQ\n");
1749 goto err;
1750 }
1751
1752 /*
1753 * Some omaps don't have wake-up path from deeper idle states
1754 * and need to remux SDIO DAT1 to GPIO for wake-up from idle.
1755 */
1756 if (host->pdata->controller_flags & OMAP_HSMMC_SWAKEUP_MISSING) {
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001757 struct pinctrl *p = devm_pinctrl_get(host->dev);
1758 if (!p) {
1759 ret = -ENODEV;
1760 goto err_free_irq;
1761 }
1762 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_DEFAULT))) {
1763 dev_info(host->dev, "missing default pinctrl state\n");
1764 devm_pinctrl_put(p);
1765 ret = -EINVAL;
1766 goto err_free_irq;
1767 }
1768
1769 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_IDLE))) {
1770 dev_info(host->dev, "missing idle pinctrl state\n");
1771 devm_pinctrl_put(p);
1772 ret = -EINVAL;
1773 goto err_free_irq;
1774 }
1775 devm_pinctrl_put(p);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001776 }
1777
Balaji T K5a52b082014-05-29 10:28:02 +02001778 OMAP_HSMMC_WRITE(host->base, HCTL,
1779 OMAP_HSMMC_READ(host->base, HCTL) | IWE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001780 return 0;
1781
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001782err_free_irq:
1783 devm_free_irq(host->dev, host->wake_irq, host);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001784err:
1785 dev_warn(host->dev, "no SDIO IRQ support, falling back to polling\n");
1786 host->wake_irq = 0;
1787 return ret;
1788}
1789
Denis Karpov70a33412009-09-22 16:44:59 -07001790static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001791{
1792 u32 hctl, capa, value;
1793
1794 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301795 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001796 hctl = SDVS30;
1797 capa = VS30 | VS18;
1798 } else {
1799 hctl = SDVS18;
1800 capa = VS18;
1801 }
1802
1803 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1804 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1805
1806 value = OMAP_HSMMC_READ(host->base, CAPA);
1807 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1808
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001809 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001810 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001811}
1812
Denis Karpov70a33412009-09-22 16:44:59 -07001813static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001814{
Denis Karpov70a33412009-09-22 16:44:59 -07001815 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001816
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301817 pm_runtime_get_sync(host->dev);
1818
Denis Karpovdd498ef2009-09-22 16:44:49 -07001819 return 0;
1820}
1821
Adrian Hunter907d2e72012-02-29 09:17:21 +02001822static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001823{
Denis Karpov70a33412009-09-22 16:44:59 -07001824 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001825
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301826 pm_runtime_mark_last_busy(host->dev);
1827 pm_runtime_put_autosuspend(host->dev);
1828
Denis Karpovdd498ef2009-09-22 16:44:49 -07001829 return 0;
1830}
1831
Kuninori Morimotoafd8c292014-09-08 23:44:51 -07001832static int omap_hsmmc_multi_io_quirk(struct mmc_card *card,
1833 unsigned int direction, int blk_size)
1834{
1835 /* This controller can't do multiblock reads due to hw bugs */
1836 if (direction == MMC_DATA_READ)
1837 return 1;
1838
1839 return blk_size;
1840}
1841
1842static struct mmc_host_ops omap_hsmmc_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001843 .enable = omap_hsmmc_enable_fclk,
1844 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001845 .post_req = omap_hsmmc_post_req,
1846 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001847 .request = omap_hsmmc_request,
1848 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001849 .get_cd = omap_hsmmc_get_cd,
1850 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001851 .init_card = omap_hsmmc_init_card,
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001852 .enable_sdio_irq = omap_hsmmc_enable_sdio_irq,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001853};
1854
Denis Karpovd900f712009-09-22 16:44:38 -07001855#ifdef CONFIG_DEBUG_FS
1856
Denis Karpov70a33412009-09-22 16:44:59 -07001857static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001858{
1859 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001860 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001861
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001862 seq_printf(s, "mmc%d:\n", mmc->index);
1863 seq_printf(s, "sdio irq mode\t%s\n",
1864 (mmc->caps & MMC_CAP_SDIO_IRQ) ? "interrupt" : "polling");
1865
1866 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1867 seq_printf(s, "sdio irq \t%s\n",
1868 (host->flags & HSMMC_SDIO_IRQ_ENABLED) ? "enabled"
1869 : "disabled");
1870 }
1871 seq_printf(s, "ctx_loss:\t%d\n", host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001872
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301873 pm_runtime_get_sync(host->dev);
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001874 seq_puts(s, "\nregs:\n");
Denis Karpovd900f712009-09-22 16:44:38 -07001875 seq_printf(s, "CON:\t\t0x%08x\n",
1876 OMAP_HSMMC_READ(host->base, CON));
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001877 seq_printf(s, "PSTATE:\t\t0x%08x\n",
1878 OMAP_HSMMC_READ(host->base, PSTATE));
Denis Karpovd900f712009-09-22 16:44:38 -07001879 seq_printf(s, "HCTL:\t\t0x%08x\n",
1880 OMAP_HSMMC_READ(host->base, HCTL));
1881 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1882 OMAP_HSMMC_READ(host->base, SYSCTL));
1883 seq_printf(s, "IE:\t\t0x%08x\n",
1884 OMAP_HSMMC_READ(host->base, IE));
1885 seq_printf(s, "ISE:\t\t0x%08x\n",
1886 OMAP_HSMMC_READ(host->base, ISE));
1887 seq_printf(s, "CAPA:\t\t0x%08x\n",
1888 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001889
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301890 pm_runtime_mark_last_busy(host->dev);
1891 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001892
Denis Karpovd900f712009-09-22 16:44:38 -07001893 return 0;
1894}
1895
Denis Karpov70a33412009-09-22 16:44:59 -07001896static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001897{
Denis Karpov70a33412009-09-22 16:44:59 -07001898 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001899}
1900
1901static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001902 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001903 .read = seq_read,
1904 .llseek = seq_lseek,
1905 .release = single_release,
1906};
1907
Denis Karpov70a33412009-09-22 16:44:59 -07001908static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001909{
1910 if (mmc->debugfs_root)
1911 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1912 mmc, &mmc_regs_fops);
1913}
1914
1915#else
1916
Denis Karpov70a33412009-09-22 16:44:59 -07001917static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001918{
1919}
1920
1921#endif
1922
Rajendra Nayak46856a62012-03-12 20:32:37 +05301923#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001924static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1925 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1926 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1927};
1928
1929static const struct omap_mmc_of_data omap4_mmc_of_data = {
1930 .reg_offset = 0x100,
1931};
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001932static const struct omap_mmc_of_data am33xx_mmc_of_data = {
1933 .reg_offset = 0x100,
1934 .controller_flags = OMAP_HSMMC_SWAKEUP_MISSING,
1935};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301936
1937static const struct of_device_id omap_mmc_of_match[] = {
1938 {
1939 .compatible = "ti,omap2-hsmmc",
1940 },
1941 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001942 .compatible = "ti,omap3-pre-es3-hsmmc",
1943 .data = &omap3_pre_es3_mmc_of_data,
1944 },
1945 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301946 .compatible = "ti,omap3-hsmmc",
1947 },
1948 {
1949 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001950 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301951 },
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001952 {
1953 .compatible = "ti,am33xx-hsmmc",
1954 .data = &am33xx_mmc_of_data,
1955 },
Rajendra Nayak46856a62012-03-12 20:32:37 +05301956 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001957};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301958MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1959
Andreas Fenkart551434382014-11-08 15:33:09 +01001960static struct omap_hsmmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
Rajendra Nayak46856a62012-03-12 20:32:37 +05301961{
Andreas Fenkart551434382014-11-08 15:33:09 +01001962 struct omap_hsmmc_platform_data *pdata;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301963 struct device_node *np = dev->of_node;
Daniel Mackd8714e82012-10-15 21:35:06 +05301964 u32 bus_width, max_freq;
Jan Luebbedc642c22013-01-30 10:07:17 +01001965 int cd_gpio, wp_gpio;
1966
1967 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1968 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1969 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1970 return ERR_PTR(-EPROBE_DEFER);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301971
1972 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1973 if (!pdata)
Balaji T K19df45b2014-02-28 19:08:18 +05301974 return ERR_PTR(-ENOMEM); /* out of memory */
Rajendra Nayak46856a62012-03-12 20:32:37 +05301975
1976 if (of_find_property(np, "ti,dual-volt", NULL))
1977 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1978
1979 /* This driver only supports 1 slot */
1980 pdata->nr_slots = 1;
Jan Luebbedc642c22013-01-30 10:07:17 +01001981 pdata->slots[0].switch_pin = cd_gpio;
1982 pdata->slots[0].gpio_wp = wp_gpio;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301983
1984 if (of_find_property(np, "ti,non-removable", NULL)) {
1985 pdata->slots[0].nonremovable = true;
1986 pdata->slots[0].no_regulator_off_init = true;
1987 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04001988 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301989 if (bus_width == 4)
1990 pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA;
1991 else if (bus_width == 8)
1992 pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA;
1993
1994 if (of_find_property(np, "ti,needs-special-reset", NULL))
1995 pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET;
1996
Daniel Mackd8714e82012-10-15 21:35:06 +05301997 if (!of_property_read_u32(np, "max-frequency", &max_freq))
1998 pdata->max_freq = max_freq;
1999
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302000 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
2001 pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT;
2002
Daniel Mackc9ae64d2014-02-17 12:36:33 +01002003 if (of_find_property(np, "keep-power-in-suspend", NULL))
2004 pdata->slots[0].pm_caps |= MMC_PM_KEEP_POWER;
2005
2006 if (of_find_property(np, "enable-sdio-wakeup", NULL))
2007 pdata->slots[0].pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
2008
Rajendra Nayak46856a62012-03-12 20:32:37 +05302009 return pdata;
2010}
2011#else
Andreas Fenkart551434382014-11-08 15:33:09 +01002012static inline struct omap_hsmmc_platform_data
Rajendra Nayak46856a62012-03-12 20:32:37 +05302013 *of_get_hsmmc_pdata(struct device *dev)
2014{
Balaji T K19df45b2014-02-28 19:08:18 +05302015 return ERR_PTR(-EINVAL);
Rajendra Nayak46856a62012-03-12 20:32:37 +05302016}
2017#endif
2018
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05002019static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002020{
Andreas Fenkart551434382014-11-08 15:33:09 +01002021 struct omap_hsmmc_platform_data *pdata = pdev->dev.platform_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002022 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002023 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002024 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002025 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302026 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01002027 dma_cap_mask_t mask;
2028 unsigned tx_req, rx_req;
Nishanth Menon59445b12014-02-13 23:45:48 -06002029 const struct omap_mmc_of_data *data;
Balaji T K77fae212014-05-09 22:16:51 +05302030 void __iomem *base;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302031
2032 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
2033 if (match) {
2034 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01002035
2036 if (IS_ERR(pdata))
2037 return PTR_ERR(pdata);
2038
Rajendra Nayak46856a62012-03-12 20:32:37 +05302039 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06002040 data = match->data;
2041 pdata->reg_offset = data->reg_offset;
2042 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302043 }
2044 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002045
2046 if (pdata == NULL) {
2047 dev_err(&pdev->dev, "Platform Data is missing\n");
2048 return -ENXIO;
2049 }
2050
2051 if (pdata->nr_slots == 0) {
2052 dev_err(&pdev->dev, "No Slots\n");
2053 return -ENXIO;
2054 }
2055
2056 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2057 irq = platform_get_irq(pdev, 0);
2058 if (res == NULL || irq < 0)
2059 return -ENXIO;
2060
Balaji T K77fae212014-05-09 22:16:51 +05302061 base = devm_ioremap_resource(&pdev->dev, res);
2062 if (IS_ERR(base))
2063 return PTR_ERR(base);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002064
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002065 ret = omap_hsmmc_gpio_init(pdata);
2066 if (ret)
2067 goto err;
2068
Denis Karpov70a33412009-09-22 16:44:59 -07002069 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002070 if (!mmc) {
2071 ret = -ENOMEM;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002072 goto err_alloc;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002073 }
2074
2075 host = mmc_priv(mmc);
2076 host->mmc = mmc;
2077 host->pdata = pdata;
2078 host->dev = &pdev->dev;
2079 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002080 host->dma_ch = -1;
2081 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002082 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05302083 host->mapbase = res->start + pdata->reg_offset;
Balaji T K77fae212014-05-09 22:16:51 +05302084 host->base = base + pdata->reg_offset;
Adrian Hunter6da20c82010-02-15 10:03:34 -08002085 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02002086 host->next_data.cookie = 1;
Balaji T Ke99448f2014-02-19 20:26:40 +05302087 host->pbias_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002088
2089 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002090
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002091 if (pdev->dev.of_node)
2092 host->wake_irq = irq_of_parse_and_map(pdev->dev.of_node, 1);
2093
Balaji T K7a8c2ce2011-07-01 22:09:34 +05302094 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002095
Daniel Mackd418ed82012-02-19 13:20:33 +01002096 mmc->f_min = OMAP_MMC_MIN_CLOCK;
2097
2098 if (pdata->max_freq > 0)
2099 mmc->f_max = pdata->max_freq;
2100 else
2101 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002102
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002103 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002104
Balaji T K96181952014-05-09 22:16:48 +05302105 host->fclk = devm_clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002106 if (IS_ERR(host->fclk)) {
2107 ret = PTR_ERR(host->fclk);
2108 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002109 goto err1;
2110 }
2111
Paul Walmsley9b682562011-10-06 14:50:35 -06002112 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
2113 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 -07002114 omap_hsmmc_ops.multi_io_quirk = omap_hsmmc_multi_io_quirk;
Paul Walmsley9b682562011-10-06 14:50:35 -06002115 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07002116
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302117 pm_runtime_enable(host->dev);
2118 pm_runtime_get_sync(host->dev);
2119 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
2120 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002121
Balaji T K92a3aeb2012-02-24 21:14:34 +05302122 omap_hsmmc_context_save(host);
2123
Balaji T K96181952014-05-09 22:16:48 +05302124 host->dbclk = devm_clk_get(&pdev->dev, "mmchsdb_fck");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302125 /*
2126 * MMC can still work without debounce clock.
2127 */
2128 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302129 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05302130 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302131 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302132 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07002133 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002134
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002135 /* Since we do only SG emulation, we can have as many segs
2136 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002137 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002138
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002139 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2140 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2141 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2142 mmc->max_seg_size = mmc->max_req_size;
2143
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002144 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07002145 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002146
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002147 mmc->caps |= mmc_slot(host).caps;
2148 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002149 mmc->caps |= MMC_CAP_4_BIT_DATA;
2150
Denis Karpov191d1f12009-09-22 16:44:55 -07002151 if (mmc_slot(host).nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002152 mmc->caps |= MMC_CAP_NONREMOVABLE;
2153
Eliad Peller6fdc75d2011-11-22 16:02:18 +02002154 mmc->pm_caps = mmc_slot(host).pm_caps;
2155
Denis Karpov70a33412009-09-22 16:44:59 -07002156 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002157
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302158 if (!pdev->dev.of_node) {
2159 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
2160 if (!res) {
2161 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
2162 ret = -ENXIO;
2163 goto err_irq;
2164 }
2165 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002166
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302167 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
2168 if (!res) {
2169 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
2170 ret = -ENXIO;
2171 goto err_irq;
2172 }
2173 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002174 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002175
Russell King26b88522012-04-13 12:27:37 +01002176 dma_cap_zero(mask);
2177 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01002178
Matt Porterd272fbf2013-05-10 17:42:34 +05302179 host->rx_chan =
2180 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2181 &rx_req, &pdev->dev, "rx");
2182
Russell King26b88522012-04-13 12:27:37 +01002183 if (!host->rx_chan) {
2184 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002185 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002186 goto err_irq;
2187 }
2188
Matt Porterd272fbf2013-05-10 17:42:34 +05302189 host->tx_chan =
2190 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2191 &tx_req, &pdev->dev, "tx");
2192
Russell King26b88522012-04-13 12:27:37 +01002193 if (!host->tx_chan) {
2194 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002195 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002196 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01002197 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002198
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002199 /* Request IRQ for MMC operations */
Balaji T Ke1538ed2014-05-09 22:16:49 +05302200 ret = devm_request_irq(&pdev->dev, host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002201 mmc_hostname(mmc), host);
2202 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302203 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002204 goto err_irq;
2205 }
2206
2207 if (pdata->init != NULL) {
2208 if (pdata->init(&pdev->dev) != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302209 dev_err(mmc_dev(host->mmc),
Denis Karpov70a33412009-09-22 16:44:59 -07002210 "Unable to configure MMC IRQs\n");
Balaji T Ke1538ed2014-05-09 22:16:49 +05302211 goto err_irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002212 }
2213 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002214
Adrian Hunterb702b102010-02-15 10:03:35 -08002215 if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002216 ret = omap_hsmmc_reg_get(host);
2217 if (ret)
2218 goto err_reg;
2219 host->use_reg = 1;
2220 }
2221
David Brownellb583f262009-05-28 14:04:03 -07002222 mmc->ocr_avail = mmc_slot(host).ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002223
2224 /* Request IRQ for card detect */
Adrian Huntere1a55f52009-01-26 13:17:25 +02002225 if ((mmc_slot(host).card_detect_irq)) {
Balaji T K9fa0e052014-05-09 22:16:50 +05302226 ret = devm_request_threaded_irq(&pdev->dev,
2227 mmc_slot(host).card_detect_irq,
2228 NULL, omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08002229 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11002230 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002231 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302232 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002233 "Unable to grab MMC CD IRQ\n");
2234 goto err_irq_cd;
2235 }
kishore kadiyala72f2e2c2010-09-24 17:13:20 +00002236 pdata->suspend = omap_hsmmc_suspend_cdirq;
2237 pdata->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002238 }
2239
Adrian Hunterb4175772010-05-26 14:42:06 -07002240 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002241
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002242 /*
2243 * For now, only support SDIO interrupt if we have a separate
2244 * wake-up interrupt configured from device tree. This is because
2245 * the wake-up interrupt is needed for idle state and some
2246 * platforms need special quirks. And we don't want to add new
2247 * legacy mux platform init code callbacks any longer as we
2248 * are moving to DT based booting anyways.
2249 */
2250 ret = omap_hsmmc_configure_wake_irq(host);
2251 if (!ret)
2252 mmc->caps |= MMC_CAP_SDIO_IRQ;
2253
Adrian Hunterb62f6222009-09-22 16:45:01 -07002254 omap_hsmmc_protect_card(host);
2255
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002256 mmc_add_host(mmc);
2257
Denis Karpov191d1f12009-09-22 16:44:55 -07002258 if (mmc_slot(host).name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002259 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2260 if (ret < 0)
2261 goto err_slot_name;
2262 }
Denis Karpov191d1f12009-09-22 16:44:55 -07002263 if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002264 ret = device_create_file(&mmc->class_dev,
2265 &dev_attr_cover_switch);
2266 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002267 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002268 }
2269
Denis Karpov70a33412009-09-22 16:44:59 -07002270 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302271 pm_runtime_mark_last_busy(host->dev);
2272 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002273
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002274 return 0;
2275
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002276err_slot_name:
2277 mmc_remove_host(mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002278err_irq_cd:
2279 if (host->use_reg)
2280 omap_hsmmc_reg_put(host);
2281err_reg:
2282 if (host->pdata->cleanup)
2283 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002284err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002285 if (host->tx_chan)
2286 dma_release_channel(host->tx_chan);
2287 if (host->rx_chan)
2288 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302289 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002290 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302291 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302292 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002293err1:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002294 mmc_free_host(mmc);
2295err_alloc:
2296 omap_hsmmc_gpio_free(pdata);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002297err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002298 return ret;
2299}
2300
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002301static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002302{
Denis Karpov70a33412009-09-22 16:44:59 -07002303 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002304
Felipe Balbi927ce942012-03-14 11:18:27 +02002305 pm_runtime_get_sync(host->dev);
2306 mmc_remove_host(host->mmc);
2307 if (host->use_reg)
2308 omap_hsmmc_reg_put(host);
2309 if (host->pdata->cleanup)
2310 host->pdata->cleanup(&pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002311
Russell Kingc5c98922012-04-13 12:14:39 +01002312 if (host->tx_chan)
2313 dma_release_channel(host->tx_chan);
2314 if (host->rx_chan)
2315 dma_release_channel(host->rx_chan);
2316
Felipe Balbi927ce942012-03-14 11:18:27 +02002317 pm_runtime_put_sync(host->dev);
2318 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302319 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302320 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002321
Balaji T K9ea28ec2012-10-15 21:35:08 +05302322 omap_hsmmc_gpio_free(host->pdata);
Balaji T K9d1f0282012-10-15 21:35:07 +05302323 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002324
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002325 return 0;
2326}
2327
2328#ifdef CONFIG_PM
Felipe Balbia48ce882012-11-19 21:59:59 +05302329static int omap_hsmmc_prepare(struct device *dev)
2330{
2331 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2332
2333 if (host->pdata->suspend)
2334 return host->pdata->suspend(dev, host->slot_id);
2335
2336 return 0;
2337}
2338
2339static void omap_hsmmc_complete(struct device *dev)
2340{
2341 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2342
2343 if (host->pdata->resume)
2344 host->pdata->resume(dev, host->slot_id);
2345
2346}
2347
Kevin Hilmana791daa2010-05-26 14:42:07 -07002348static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002349{
Felipe Balbi927ce942012-03-14 11:18:27 +02002350 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2351
2352 if (!host)
2353 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002354
Felipe Balbi927ce942012-03-14 11:18:27 +02002355 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002356
2357 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002358 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2359 OMAP_HSMMC_WRITE(host->base, IE, 0);
2360 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Felipe Balbi927ce942012-03-14 11:18:27 +02002361 OMAP_HSMMC_WRITE(host->base, HCTL,
2362 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2363 }
2364
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002365 /* do not wake up due to sdio irq */
2366 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2367 !(host->mmc->pm_flags & MMC_PM_WAKE_SDIO_IRQ))
2368 disable_irq(host->wake_irq);
2369
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302370 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302371 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002372
Eliad Peller31f9d462011-11-22 16:02:17 +02002373 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002374 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002375}
2376
2377/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002378static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002379{
Felipe Balbi927ce942012-03-14 11:18:27 +02002380 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2381
2382 if (!host)
2383 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002384
Felipe Balbi927ce942012-03-14 11:18:27 +02002385 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002386
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302387 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302388 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002389
Felipe Balbi927ce942012-03-14 11:18:27 +02002390 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2391 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002392
Felipe Balbi927ce942012-03-14 11:18:27 +02002393 omap_hsmmc_protect_card(host);
2394
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002395 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2396 !(host->mmc->pm_flags & MMC_PM_WAKE_SDIO_IRQ))
2397 enable_irq(host->wake_irq);
2398
Felipe Balbi927ce942012-03-14 11:18:27 +02002399 pm_runtime_mark_last_busy(host->dev);
2400 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002401 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002402}
2403
2404#else
Felipe Balbia48ce882012-11-19 21:59:59 +05302405#define omap_hsmmc_prepare NULL
2406#define omap_hsmmc_complete NULL
Denis Karpov70a33412009-09-22 16:44:59 -07002407#define omap_hsmmc_suspend NULL
Felipe Balbia48ce882012-11-19 21:59:59 +05302408#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002409#endif
2410
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302411static int omap_hsmmc_runtime_suspend(struct device *dev)
2412{
2413 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002414 unsigned long flags;
Andreas Fenkartf9459012014-05-29 10:28:03 +02002415 int ret = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302416
2417 host = platform_get_drvdata(to_platform_device(dev));
2418 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002419 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302420
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002421 spin_lock_irqsave(&host->irq_lock, flags);
2422 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2423 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2424 /* disable sdio irq handling to prevent race */
2425 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2426 OMAP_HSMMC_WRITE(host->base, IE, 0);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002427
2428 if (!(OMAP_HSMMC_READ(host->base, PSTATE) & DLEV_DAT(1))) {
2429 /*
2430 * dat1 line low, pending sdio irq
2431 * race condition: possible irq handler running on
2432 * multi-core, abort
2433 */
2434 dev_dbg(dev, "pending sdio irq, abort suspend\n");
2435 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2436 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2437 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
2438 pm_runtime_mark_last_busy(dev);
2439 ret = -EBUSY;
2440 goto abort;
2441 }
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002442
Andreas Fenkart97978a42014-05-29 10:28:04 +02002443 pinctrl_pm_select_idle_state(dev);
2444
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002445 WARN_ON(host->flags & HSMMC_WAKE_IRQ_ENABLED);
2446 enable_irq(host->wake_irq);
2447 host->flags |= HSMMC_WAKE_IRQ_ENABLED;
Andreas Fenkart97978a42014-05-29 10:28:04 +02002448 } else {
2449 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002450 }
Andreas Fenkart97978a42014-05-29 10:28:04 +02002451
Andreas Fenkartf9459012014-05-29 10:28:03 +02002452abort:
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002453 spin_unlock_irqrestore(&host->irq_lock, flags);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002454 return ret;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302455}
2456
2457static int omap_hsmmc_runtime_resume(struct device *dev)
2458{
2459 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002460 unsigned long flags;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302461
2462 host = platform_get_drvdata(to_platform_device(dev));
2463 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002464 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302465
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002466 spin_lock_irqsave(&host->irq_lock, flags);
2467 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2468 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2469 /* sdio irq flag can't change while in runtime suspend */
2470 if (host->flags & HSMMC_WAKE_IRQ_ENABLED) {
2471 disable_irq_nosync(host->wake_irq);
2472 host->flags &= ~HSMMC_WAKE_IRQ_ENABLED;
2473 }
2474
Andreas Fenkart97978a42014-05-29 10:28:04 +02002475 pinctrl_pm_select_default_state(host->dev);
2476
2477 /* irq lost, if pinmux incorrect */
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002478 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2479 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2480 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002481 } else {
2482 pinctrl_pm_select_default_state(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002483 }
2484 spin_unlock_irqrestore(&host->irq_lock, flags);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302485 return 0;
2486}
2487
Kevin Hilmana791daa2010-05-26 14:42:07 -07002488static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002489 .suspend = omap_hsmmc_suspend,
2490 .resume = omap_hsmmc_resume,
Felipe Balbia48ce882012-11-19 21:59:59 +05302491 .prepare = omap_hsmmc_prepare,
2492 .complete = omap_hsmmc_complete,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302493 .runtime_suspend = omap_hsmmc_runtime_suspend,
2494 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002495};
2496
2497static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002498 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002499 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002500 .driver = {
2501 .name = DRIVER_NAME,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002502 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302503 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002504 },
2505};
2506
Felipe Balbib7964502012-03-14 11:18:32 +02002507module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002508MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2509MODULE_LICENSE("GPL");
2510MODULE_ALIAS("platform:" DRIVER_NAME);
2511MODULE_AUTHOR("Texas Instruments Inc");