blob: f4f1bcd632f3b90e6a38dc506f535a8d5008528e [file] [log] [blame]
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001/*
2 * drivers/mmc/host/omap_hsmmc.c
3 *
4 * Driver for OMAP2430/3430 MMC controller.
5 *
6 * Copyright (C) 2007 Texas Instruments.
7 *
8 * Authors:
9 * Syed Mohammed Khasim <x0khasim@ti.com>
10 * Madhusudhan <madhu.cr@ti.com>
11 * Mohit Jalori <mjalori@ti.com>
12 *
13 * This file is licensed under the terms of the GNU General Public License
14 * version 2. This program is licensed "as is" without any warranty of any
15 * kind, whether express or implied.
16 */
17
18#include <linux/module.h>
19#include <linux/init.h>
Andy Shevchenkoac330f42011-05-10 15:51:54 +030020#include <linux/kernel.h>
Denis Karpovd900f712009-09-22 16:44:38 -070021#include <linux/debugfs.h>
Russell Kingc5c98922012-04-13 12:14:39 +010022#include <linux/dmaengine.h>
Denis Karpovd900f712009-09-22 16:44:38 -070023#include <linux/seq_file.h>
Felipe Balbi031cd032013-07-11 16:09:05 +030024#include <linux/sizes.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010025#include <linux/interrupt.h>
26#include <linux/delay.h>
27#include <linux/dma-mapping.h>
28#include <linux/platform_device.h>
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +010029#include <linux/timer.h>
30#include <linux/clk.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053031#include <linux/of.h>
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +020032#include <linux/of_irq.h>
Rajendra Nayak46856a62012-03-12 20:32:37 +053033#include <linux/of_gpio.h>
34#include <linux/of_device.h>
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 Fenkart55143432014-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 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100158#define mmc_pdata(host) host->pdata
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100159
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 Fenkart55143432014-11-08 15:33:09 +0100223 struct omap_hsmmc_platform_data *pdata;
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100224
225 /* To handle board related suspend/resume functionality for MMC */
226 int (*suspend)(struct device *dev, int slot);
227 int (*resume)(struct device *dev, int slot);
228
229 /* return MMC cover switch state, can be NULL if not supported.
230 *
231 * possible return values:
232 * 0 - closed
233 * 1 - open
234 */
235 int (*get_cover_state)(struct device *dev, int slot);
236
237 /* Card detection IRQs */
238 int card_detect_irq;
239
240 int (*card_detect)(struct device *dev, int slot);
241 int (*get_ro)(struct device *dev, int slot);
242
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100243};
244
Nishanth Menon59445b12014-02-13 23:45:48 -0600245struct omap_mmc_of_data {
246 u32 reg_offset;
247 u8 controller_flags;
248};
249
Balaji T Kbf129e12014-01-21 19:54:42 +0530250static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host);
251
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800252static int omap_hsmmc_card_detect(struct device *dev, int slot)
253{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530254 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart55143432014-11-08 15:33:09 +0100255 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800256
257 /* NOTE: assumes card detect signal is active-low */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100258 return !gpio_get_value_cansleep(mmc->switch_pin);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800259}
260
261static int omap_hsmmc_get_wp(struct device *dev, int slot)
262{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530263 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart55143432014-11-08 15:33:09 +0100264 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800265
266 /* NOTE: assumes write protect signal is active-high */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100267 return gpio_get_value_cansleep(mmc->gpio_wp);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800268}
269
270static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
271{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530272 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Andreas Fenkart55143432014-11-08 15:33:09 +0100273 struct omap_hsmmc_platform_data *mmc = host->pdata;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800274
275 /* NOTE: assumes card detect signal is active-low */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100276 return !gpio_get_value_cansleep(mmc->switch_pin);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800277}
278
279#ifdef CONFIG_PM
280
281static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
282{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530283 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800284
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100285 disable_irq(host->card_detect_irq);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800286 return 0;
287}
288
289static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
290{
Balaji T K9ea28ec2012-10-15 21:35:08 +0530291 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800292
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100293 enable_irq(host->card_detect_irq);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800294 return 0;
295}
296
297#else
298
299#define omap_hsmmc_suspend_cdirq NULL
300#define omap_hsmmc_resume_cdirq NULL
301
302#endif
303
Adrian Hunterb702b102010-02-15 10:03:35 -0800304#ifdef CONFIG_REGULATOR
305
Rajendra Nayak69b07ec2012-03-07 09:55:30 -0500306static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on,
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800307 int vdd)
308{
309 struct omap_hsmmc_host *host =
310 platform_get_drvdata(to_platform_device(dev));
311 int ret = 0;
312
313 /*
314 * If we don't see a Vcc regulator, assume it's a fixed
315 * voltage always-on regulator.
316 */
317 if (!host->vcc)
318 return 0;
319
Andreas Fenkart326119c2014-11-08 15:33:14 +0100320 if (mmc_pdata(host)->before_set_reg)
321 mmc_pdata(host)->before_set_reg(dev, slot, power_on, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800322
Balaji T Ke99448f2014-02-19 20:26:40 +0530323 if (host->pbias) {
324 if (host->pbias_enabled == 1) {
325 ret = regulator_disable(host->pbias);
326 if (!ret)
327 host->pbias_enabled = 0;
328 }
329 regulator_set_voltage(host->pbias, VDD_3V0, VDD_3V0);
330 }
331
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800332 /*
333 * Assume Vcc regulator is used only to power the card ... OMAP
334 * VDDS is used to power the pins, optionally with a transceiver to
335 * support cards using voltages other than VDDS (1.8V nominal). When a
336 * transceiver is used, DAT3..7 are muxed as transceiver control pins.
337 *
338 * In some cases this regulator won't support enable/disable;
339 * e.g. it's a fixed rail for a WLAN chip.
340 *
341 * In other cases vcc_aux switches interface power. Example, for
342 * eMMC cards it represents VccQ. Sometimes transceivers or SDIO
343 * chips/cards need an interface voltage rail too.
344 */
345 if (power_on) {
Balaji T K987fd492014-02-19 20:26:40 +0530346 if (host->vcc)
347 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800348 /* Enable interface voltage rail, if needed */
349 if (ret == 0 && host->vcc_aux) {
350 ret = regulator_enable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530351 if (ret < 0 && host->vcc)
Linus Walleij99fc5132010-09-29 01:08:27 -0400352 ret = mmc_regulator_set_ocr(host->mmc,
353 host->vcc, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800354 }
355 } else {
Linus Walleij99fc5132010-09-29 01:08:27 -0400356 /* Shut down the rail */
Adrian Hunter6da20c82010-02-15 10:03:34 -0800357 if (host->vcc_aux)
358 ret = regulator_disable(host->vcc_aux);
Balaji T K987fd492014-02-19 20:26:40 +0530359 if (host->vcc) {
Linus Walleij99fc5132010-09-29 01:08:27 -0400360 /* Then proceed to shut down the local regulator */
361 ret = mmc_regulator_set_ocr(host->mmc,
362 host->vcc, 0);
363 }
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800364 }
365
Balaji T Ke99448f2014-02-19 20:26:40 +0530366 if (host->pbias) {
367 if (vdd <= VDD_165_195)
368 ret = regulator_set_voltage(host->pbias, VDD_1V8,
369 VDD_1V8);
370 else
371 ret = regulator_set_voltage(host->pbias, VDD_3V0,
372 VDD_3V0);
373 if (ret < 0)
374 goto error_set_power;
375
376 if (host->pbias_enabled == 0) {
377 ret = regulator_enable(host->pbias);
378 if (!ret)
379 host->pbias_enabled = 1;
380 }
381 }
382
Andreas Fenkart326119c2014-11-08 15:33:14 +0100383 if (mmc_pdata(host)->after_set_reg)
384 mmc_pdata(host)->after_set_reg(dev, slot, power_on, vdd);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800385
Balaji T Ke99448f2014-02-19 20:26:40 +0530386error_set_power:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800387 return ret;
388}
389
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800390static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
391{
392 struct regulator *reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700393 int ocr_value = 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800394
Balaji T Kf2ddc1d2014-02-19 20:26:40 +0530395 reg = devm_regulator_get(host->dev, "vmmc");
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800396 if (IS_ERR(reg)) {
Balaji T K987fd492014-02-19 20:26:40 +0530397 dev_err(host->dev, "unable to get vmmc regulator %ld\n",
398 PTR_ERR(reg));
NeilBrown1fdc90f2012-08-08 00:06:00 -0400399 return PTR_ERR(reg);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800400 } else {
401 host->vcc = reg;
kishore kadiyala64be9782010-10-01 16:35:28 -0700402 ocr_value = mmc_regulator_get_ocrmask(reg);
Andreas Fenkart326119c2014-11-08 15:33:14 +0100403 if (!mmc_pdata(host)->ocr_mask) {
404 mmc_pdata(host)->ocr_mask = ocr_value;
kishore kadiyala64be9782010-10-01 16:35:28 -0700405 } else {
Andreas Fenkart326119c2014-11-08 15:33:14 +0100406 if (!(mmc_pdata(host)->ocr_mask & ocr_value)) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +0530407 dev_err(host->dev, "ocrmask %x is not supported\n",
Andreas Fenkart326119c2014-11-08 15:33:14 +0100408 mmc_pdata(host)->ocr_mask);
409 mmc_pdata(host)->ocr_mask = 0;
kishore kadiyala64be9782010-10-01 16:35:28 -0700410 return -EINVAL;
411 }
412 }
Balaji T K987fd492014-02-19 20:26:40 +0530413 }
Andreas Fenkart326119c2014-11-08 15:33:14 +0100414 mmc_pdata(host)->set_power = omap_hsmmc_set_power;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800415
Balaji T K987fd492014-02-19 20:26:40 +0530416 /* Allow an aux regulator */
417 reg = devm_regulator_get_optional(host->dev, "vmmc_aux");
418 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800419
Balaji T Ke99448f2014-02-19 20:26:40 +0530420 reg = devm_regulator_get_optional(host->dev, "pbias");
421 host->pbias = IS_ERR(reg) ? NULL : reg;
422
Balaji T K987fd492014-02-19 20:26:40 +0530423 /* For eMMC do not power off when not in sleep state */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100424 if (mmc_pdata(host)->no_regulator_off_init)
Balaji T K987fd492014-02-19 20:26:40 +0530425 return 0;
426 /*
427 * To disable boot_on regulator, enable regulator
428 * to increase usecount and then disable it.
429 */
430 if ((host->vcc && regulator_is_enabled(host->vcc) > 0) ||
431 (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) {
Andreas Fenkart326119c2014-11-08 15:33:14 +0100432 int vdd = ffs(mmc_pdata(host)->ocr_mask) - 1;
Adrian Huntere840ce12011-05-06 12:14:10 +0300433
Andreas Fenkart326119c2014-11-08 15:33:14 +0100434 mmc_pdata(host)->set_power(host->dev, host->slot_id, 1, vdd);
435 mmc_pdata(host)->set_power(host->dev, host->slot_id, 0, 0);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800436 }
437
438 return 0;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800439}
440
441static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
442{
Andreas Fenkart326119c2014-11-08 15:33:14 +0100443 mmc_pdata(host)->set_power = NULL;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -0800444}
445
Adrian Hunterb702b102010-02-15 10:03:35 -0800446static inline int omap_hsmmc_have_reg(void)
447{
448 return 1;
449}
450
451#else
452
453static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
454{
455 return -EINVAL;
456}
457
458static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
459{
460}
461
462static inline int omap_hsmmc_have_reg(void)
463{
464 return 0;
465}
466
467#endif
468
Andreas Fenkart1e363e32014-11-08 15:33:15 +0100469static int omap_hsmmc_gpio_init(struct omap_hsmmc_host *host,
470 struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800471{
472 int ret;
473
Andreas Fenkart326119c2014-11-08 15:33:14 +0100474 if (gpio_is_valid(pdata->switch_pin)) {
475 if (pdata->cover)
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100476 host->get_cover_state =
477 omap_hsmmc_get_cover_state;
Adrian Hunterb702b102010-02-15 10:03:35 -0800478 else
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100479 host->card_detect = omap_hsmmc_card_detect;
480 host->card_detect_irq =
Andreas Fenkart326119c2014-11-08 15:33:14 +0100481 gpio_to_irq(pdata->switch_pin);
482 ret = gpio_request(pdata->switch_pin, "mmc_cd");
Adrian Hunterb702b102010-02-15 10:03:35 -0800483 if (ret)
484 return ret;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100485 ret = gpio_direction_input(pdata->switch_pin);
Adrian Hunterb702b102010-02-15 10:03:35 -0800486 if (ret)
487 goto err_free_sp;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100488 } else {
489 pdata->switch_pin = -EINVAL;
490 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800491
Andreas Fenkart326119c2014-11-08 15:33:14 +0100492 if (gpio_is_valid(pdata->gpio_wp)) {
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100493 host->get_ro = omap_hsmmc_get_wp;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100494 ret = gpio_request(pdata->gpio_wp, "mmc_wp");
Adrian Hunterb702b102010-02-15 10:03:35 -0800495 if (ret)
496 goto err_free_cd;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100497 ret = gpio_direction_input(pdata->gpio_wp);
Adrian Hunterb702b102010-02-15 10:03:35 -0800498 if (ret)
499 goto err_free_wp;
Andreas Fenkart326119c2014-11-08 15:33:14 +0100500 } else {
501 pdata->gpio_wp = -EINVAL;
502 }
Adrian Hunterb702b102010-02-15 10:03:35 -0800503
504 return 0;
505
506err_free_wp:
Andreas Fenkart326119c2014-11-08 15:33:14 +0100507 gpio_free(pdata->gpio_wp);
Adrian Hunterb702b102010-02-15 10:03:35 -0800508err_free_cd:
Andreas Fenkart326119c2014-11-08 15:33:14 +0100509 if (gpio_is_valid(pdata->switch_pin))
Adrian Hunterb702b102010-02-15 10:03:35 -0800510err_free_sp:
Andreas Fenkart326119c2014-11-08 15:33:14 +0100511 gpio_free(pdata->switch_pin);
Adrian Hunterb702b102010-02-15 10:03:35 -0800512 return ret;
513}
514
Andreas Fenkart1e363e32014-11-08 15:33:15 +0100515static void omap_hsmmc_gpio_free(struct omap_hsmmc_host *host,
516 struct omap_hsmmc_platform_data *pdata)
Adrian Hunterb702b102010-02-15 10:03:35 -0800517{
Andreas Fenkart326119c2014-11-08 15:33:14 +0100518 if (gpio_is_valid(pdata->gpio_wp))
519 gpio_free(pdata->gpio_wp);
520 if (gpio_is_valid(pdata->switch_pin))
521 gpio_free(pdata->switch_pin);
Adrian Hunterb702b102010-02-15 10:03:35 -0800522}
523
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100524/*
Andy Shevchenkoe0c7f992011-05-06 12:14:05 +0300525 * Start clock to the card
526 */
527static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host)
528{
529 OMAP_HSMMC_WRITE(host->base, SYSCTL,
530 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
531}
532
533/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100534 * Stop clock to the card
535 */
Denis Karpov70a33412009-09-22 16:44:59 -0700536static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100537{
538 OMAP_HSMMC_WRITE(host->base, SYSCTL,
539 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
540 if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
Masanari Iida7122bbb2012-08-05 23:25:40 +0900541 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100542}
543
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700544static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
545 struct mmc_command *cmd)
Adrian Hunterb4175772010-05-26 14:42:06 -0700546{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200547 u32 irq_mask = INT_EN_MASK;
548 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700549
550 if (host->use_dma)
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200551 irq_mask &= ~(BRR_EN | BWR_EN);
Adrian Hunterb4175772010-05-26 14:42:06 -0700552
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700553 /* Disable timeout for erases */
554 if (cmd->opcode == MMC_ERASE)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530555 irq_mask &= ~DTO_EN;
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700556
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200557 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700558 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
559 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200560
561 /* latch pending CIRQ, but don't signal MMC core */
562 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
563 irq_mask |= CIRQ_EN;
Adrian Hunterb4175772010-05-26 14:42:06 -0700564 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200565 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700566}
567
568static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
569{
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200570 u32 irq_mask = 0;
571 unsigned long flags;
572
573 spin_lock_irqsave(&host->irq_lock, flags);
574 /* no transfer running but need to keep cirq if enabled */
575 if (host->flags & HSMMC_SDIO_IRQ_ENABLED)
576 irq_mask |= CIRQ_EN;
577 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
578 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
Adrian Hunterb4175772010-05-26 14:42:06 -0700579 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200580 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700581}
582
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300583/* Calculate divisor for the given clock frequency */
Balaji TKd83b6e02011-12-20 15:12:00 +0530584static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios)
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300585{
586 u16 dsor = 0;
587
588 if (ios->clock) {
Balaji TKd83b6e02011-12-20 15:12:00 +0530589 dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock);
Balaji T Ked164182013-10-21 00:25:21 +0530590 if (dsor > CLKD_MAX)
591 dsor = CLKD_MAX;
Andy Shevchenkoac330f42011-05-10 15:51:54 +0300592 }
593
594 return dsor;
595}
596
Andy Shevchenko5934df22011-05-06 12:14:06 +0300597static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host)
598{
599 struct mmc_ios *ios = &host->mmc->ios;
600 unsigned long regval;
601 unsigned long timeout;
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530602 unsigned long clkdiv;
Andy Shevchenko5934df22011-05-06 12:14:06 +0300603
Venkatraman S8986d312012-08-07 19:10:38 +0530604 dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300605
606 omap_hsmmc_stop_clock(host);
607
608 regval = OMAP_HSMMC_READ(host->base, SYSCTL);
609 regval = regval & ~(CLKD_MASK | DTO_MASK);
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530610 clkdiv = calc_divisor(host, ios);
611 regval = regval | (clkdiv << 6) | (DTO << 16);
Andy Shevchenko5934df22011-05-06 12:14:06 +0300612 OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
613 OMAP_HSMMC_WRITE(host->base, SYSCTL,
614 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
615
616 /* Wait till the ICS bit is set */
617 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
618 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
619 && time_before(jiffies, timeout))
620 cpu_relax();
621
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530622 /*
623 * Enable High-Speed Support
624 * Pre-Requisites
625 * - Controller should support High-Speed-Enable Bit
626 * - Controller should not be using DDR Mode
627 * - Controller should advertise that it supports High Speed
628 * in capabilities register
629 * - MMC/SD clock coming out of controller > 25MHz
630 */
Andreas Fenkart326119c2014-11-08 15:33:14 +0100631 if ((mmc_pdata(host)->features & HSMMC_HAS_HSPE_SUPPORT) &&
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900632 (ios->timing != MMC_TIMING_MMC_DDR52) &&
Hebbar, Gururajacd587092012-11-19 21:59:58 +0530633 ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) {
634 regval = OMAP_HSMMC_READ(host->base, HCTL);
635 if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000)
636 regval |= HSPE;
637 else
638 regval &= ~HSPE;
639
640 OMAP_HSMMC_WRITE(host->base, HCTL, regval);
641 }
642
Andy Shevchenko5934df22011-05-06 12:14:06 +0300643 omap_hsmmc_start_clock(host);
644}
645
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400646static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host)
647{
648 struct mmc_ios *ios = &host->mmc->ios;
649 u32 con;
650
651 con = OMAP_HSMMC_READ(host->base, CON);
Seungwon Jeon5438ad92014-03-14 21:12:27 +0900652 if (ios->timing == MMC_TIMING_MMC_DDR52)
Balaji T K03b5d922012-04-09 12:08:33 +0530653 con |= DDR; /* configure in DDR mode */
654 else
655 con &= ~DDR;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400656 switch (ios->bus_width) {
657 case MMC_BUS_WIDTH_8:
658 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
659 break;
660 case MMC_BUS_WIDTH_4:
661 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
662 OMAP_HSMMC_WRITE(host->base, HCTL,
663 OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
664 break;
665 case MMC_BUS_WIDTH_1:
666 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
667 OMAP_HSMMC_WRITE(host->base, HCTL,
668 OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
669 break;
670 }
671}
672
673static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host)
674{
675 struct mmc_ios *ios = &host->mmc->ios;
676 u32 con;
677
678 con = OMAP_HSMMC_READ(host->base, CON);
679 if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
680 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
681 else
682 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
683}
684
Denis Karpov11dd62a2009-09-22 16:44:43 -0700685#ifdef CONFIG_PM
686
687/*
688 * Restore the MMC host context, if it was lost as result of a
689 * power state change.
690 */
Denis Karpov70a33412009-09-22 16:44:59 -0700691static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700692{
693 struct mmc_ios *ios = &host->mmc->ios;
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400694 u32 hctl, capa;
Denis Karpov11dd62a2009-09-22 16:44:43 -0700695 unsigned long timeout;
696
Tony Lindgren0a82e062013-10-21 00:25:19 +0530697 if (host->con == OMAP_HSMMC_READ(host->base, CON) &&
698 host->hctl == OMAP_HSMMC_READ(host->base, HCTL) &&
699 host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) &&
700 host->capa == OMAP_HSMMC_READ(host->base, CAPA))
701 return 0;
702
703 host->context_loss++;
704
Balaji T Kc2200ef2012-03-07 09:55:30 -0500705 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Denis Karpov11dd62a2009-09-22 16:44:43 -0700706 if (host->power_mode != MMC_POWER_OFF &&
707 (1 << ios->vdd) <= MMC_VDD_23_24)
708 hctl = SDVS18;
709 else
710 hctl = SDVS30;
711 capa = VS30 | VS18;
712 } else {
713 hctl = SDVS18;
714 capa = VS18;
715 }
716
Balaji T K5a52b082014-05-29 10:28:02 +0200717 if (host->mmc->caps & MMC_CAP_SDIO_IRQ)
718 hctl |= IWE;
719
Denis Karpov11dd62a2009-09-22 16:44:43 -0700720 OMAP_HSMMC_WRITE(host->base, HCTL,
721 OMAP_HSMMC_READ(host->base, HCTL) | hctl);
722
723 OMAP_HSMMC_WRITE(host->base, CAPA,
724 OMAP_HSMMC_READ(host->base, CAPA) | capa);
725
726 OMAP_HSMMC_WRITE(host->base, HCTL,
727 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
728
729 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
730 while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
731 && time_before(jiffies, timeout))
732 ;
733
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +0200734 OMAP_HSMMC_WRITE(host->base, ISE, 0);
735 OMAP_HSMMC_WRITE(host->base, IE, 0);
736 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700737
738 /* Do not initialize card-specific things if the power is off */
739 if (host->power_mode == MMC_POWER_OFF)
740 goto out;
741
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400742 omap_hsmmc_set_bus_width(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700743
Andy Shevchenko5934df22011-05-06 12:14:06 +0300744 omap_hsmmc_set_clock(host);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700745
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -0400746 omap_hsmmc_set_bus_mode(host);
747
Denis Karpov11dd62a2009-09-22 16:44:43 -0700748out:
Tony Lindgren0a82e062013-10-21 00:25:19 +0530749 dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n",
750 host->context_loss);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700751 return 0;
752}
753
754/*
755 * Save the MMC host context (store the number of power state changes so far).
756 */
Denis Karpov70a33412009-09-22 16:44:59 -0700757static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700758{
Tony Lindgren0a82e062013-10-21 00:25:19 +0530759 host->con = OMAP_HSMMC_READ(host->base, CON);
760 host->hctl = OMAP_HSMMC_READ(host->base, HCTL);
761 host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL);
762 host->capa = OMAP_HSMMC_READ(host->base, CAPA);
Denis Karpov11dd62a2009-09-22 16:44:43 -0700763}
764
765#else
766
Denis Karpov70a33412009-09-22 16:44:59 -0700767static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700768{
769 return 0;
770}
771
Denis Karpov70a33412009-09-22 16:44:59 -0700772static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
Denis Karpov11dd62a2009-09-22 16:44:43 -0700773{
774}
775
776#endif
777
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100778/*
779 * Send init stream sequence to card
780 * before sending IDLE command
781 */
Denis Karpov70a33412009-09-22 16:44:59 -0700782static void send_init_stream(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100783{
784 int reg = 0;
785 unsigned long timeout;
786
Adrian Hunterb62f6222009-09-22 16:45:01 -0700787 if (host->protect_card)
788 return;
789
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100790 disable_irq(host->irq);
Adrian Hunterb4175772010-05-26 14:42:06 -0700791
792 OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100793 OMAP_HSMMC_WRITE(host->base, CON,
794 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
795 OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
796
797 timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
Venkatraman Sa7e96872012-11-19 22:00:01 +0530798 while ((reg != CC_EN) && time_before(jiffies, timeout))
799 reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100800
801 OMAP_HSMMC_WRITE(host->base, CON,
802 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
Adrian Hunterc653a6d2009-09-22 16:44:56 -0700803
804 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
805 OMAP_HSMMC_READ(host->base, STAT);
806
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100807 enable_irq(host->irq);
808}
809
810static inline
Denis Karpov70a33412009-09-22 16:44:59 -0700811int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100812{
813 int r = 1;
814
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +0100815 if (host->get_cover_state)
816 r = host->get_cover_state(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100817 return r;
818}
819
820static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700821omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100822 char *buf)
823{
824 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700825 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100826
Denis Karpov70a33412009-09-22 16:44:59 -0700827 return sprintf(buf, "%s\n",
828 omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100829}
830
Denis Karpov70a33412009-09-22 16:44:59 -0700831static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100832
833static ssize_t
Denis Karpov70a33412009-09-22 16:44:59 -0700834omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100835 char *buf)
836{
837 struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
Denis Karpov70a33412009-09-22 16:44:59 -0700838 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100839
Andreas Fenkart326119c2014-11-08 15:33:14 +0100840 return sprintf(buf, "%s\n", mmc_pdata(host)->name);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100841}
842
Denis Karpov70a33412009-09-22 16:44:59 -0700843static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100844
845/*
846 * Configure the response type and send the cmd.
847 */
848static void
Denis Karpov70a33412009-09-22 16:44:59 -0700849omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100850 struct mmc_data *data)
851{
852 int cmdreg = 0, resptype = 0, cmdtype = 0;
853
Venkatraman S8986d312012-08-07 19:10:38 +0530854 dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100855 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
856 host->cmd = cmd;
857
Adrian Hunter93caf8e692010-08-11 14:17:48 -0700858 omap_hsmmc_enable_irq(host, cmd);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100859
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200860 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100861 if (cmd->flags & MMC_RSP_PRESENT) {
862 if (cmd->flags & MMC_RSP_136)
863 resptype = 1;
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200864 else if (cmd->flags & MMC_RSP_BUSY) {
865 resptype = 3;
866 host->response_busy = 1;
867 } else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100868 resptype = 2;
869 }
870
871 /*
872 * Unlike OMAP1 controller, the cmdtype does not seem to be based on
873 * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
874 * a val of 0x3, rest 0x0.
875 */
876 if (cmd == host->mrq->stop)
877 cmdtype = 0x3;
878
879 cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
880
Balaji T Ka2e77152014-01-21 19:54:42 +0530881 if ((host->flags & AUTO_CMD23) && mmc_op_multi(cmd->opcode) &&
882 host->mrq->sbc) {
883 cmdreg |= ACEN_ACMD23;
884 OMAP_HSMMC_WRITE(host->base, SDMASA, host->mrq->sbc->arg);
885 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100886 if (data) {
887 cmdreg |= DP_SELECT | MSBS | BCE;
888 if (data->flags & MMC_DATA_READ)
889 cmdreg |= DDIR;
890 else
891 cmdreg &= ~(DDIR);
892 }
893
894 if (host->use_dma)
Venkatraman Sa7e96872012-11-19 22:00:01 +0530895 cmdreg |= DMAE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100896
Adrian Hunterb4175772010-05-26 14:42:06 -0700897 host->req_in_progress = 1;
Adrian Hunter4dffd7a2009-09-22 16:44:58 -0700898
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100899 OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
900 OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
901}
902
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200903static int
Denis Karpov70a33412009-09-22 16:44:59 -0700904omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +0200905{
906 if (data->flags & MMC_DATA_WRITE)
907 return DMA_TO_DEVICE;
908 else
909 return DMA_FROM_DEVICE;
910}
911
Russell Kingc5c98922012-04-13 12:14:39 +0100912static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host,
913 struct mmc_data *data)
914{
915 return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan;
916}
917
Adrian Hunterb4175772010-05-26 14:42:06 -0700918static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
919{
920 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530921 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -0700922
Venkatraman S31463b12012-04-09 12:08:34 +0530923 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700924 host->req_in_progress = 0;
925 dma_ch = host->dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +0530926 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -0700927
928 omap_hsmmc_disable_irq(host);
929 /* Do not complete the request if DMA is still in progress */
930 if (mrq->data && host->use_dma && dma_ch != -1)
931 return;
932 host->mrq = NULL;
933 mmc_request_done(host->mmc, mrq);
934}
935
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100936/*
937 * Notify the transfer complete to MMC core
938 */
939static void
Denis Karpov70a33412009-09-22 16:44:59 -0700940omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100941{
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200942 if (!data) {
943 struct mmc_request *mrq = host->mrq;
944
Adrian Hunter23050102009-09-22 16:44:57 -0700945 /* TC before CC from CMD6 - don't know why, but it happens */
946 if (host->cmd && host->cmd->opcode == 6 &&
947 host->response_busy) {
948 host->response_busy = 0;
949 return;
950 }
951
Adrian Hunterb4175772010-05-26 14:42:06 -0700952 omap_hsmmc_request_done(host, mrq);
Adrian Hunter4a694dc2009-01-12 16:13:08 +0200953 return;
954 }
955
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100956 host->data = NULL;
957
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100958 if (!data->error)
959 data->bytes_xfered += data->blocks * (data->blksz);
960 else
961 data->bytes_xfered = 0;
962
Balaji T Kbf129e12014-01-21 19:54:42 +0530963 if (data->stop && (data->error || !host->mrq->sbc))
964 omap_hsmmc_start_command(host, data->stop, NULL);
965 else
Adrian Hunterb4175772010-05-26 14:42:06 -0700966 omap_hsmmc_request_done(host, data->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100967}
968
969/*
970 * Notify the core about command completion
971 */
972static void
Denis Karpov70a33412009-09-22 16:44:59 -0700973omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100974{
Balaji T Kbf129e12014-01-21 19:54:42 +0530975 if (host->mrq->sbc && (host->cmd == host->mrq->sbc) &&
Balaji T Ka2e77152014-01-21 19:54:42 +0530976 !host->mrq->sbc->error && !(host->flags & AUTO_CMD23)) {
Balaji T K2177fa92014-05-09 22:16:52 +0530977 host->cmd = NULL;
Balaji T Kbf129e12014-01-21 19:54:42 +0530978 omap_hsmmc_start_dma_transfer(host);
979 omap_hsmmc_start_command(host, host->mrq->cmd,
980 host->mrq->data);
981 return;
982 }
983
Balaji T K2177fa92014-05-09 22:16:52 +0530984 host->cmd = NULL;
985
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +0100986 if (cmd->flags & MMC_RSP_PRESENT) {
987 if (cmd->flags & MMC_RSP_136) {
988 /* response type 2 */
989 cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
990 cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
991 cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
992 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
993 } else {
994 /* response types 1, 1b, 3, 4, 5, 6 */
995 cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
996 }
997 }
Adrian Hunterb4175772010-05-26 14:42:06 -0700998 if ((host->data == NULL && !host->response_busy) || cmd->error)
Balaji T Kd4b2c372014-01-21 19:54:42 +0530999 omap_hsmmc_request_done(host, host->mrq);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001000}
1001
1002/*
1003 * DMA clean up for command errors
1004 */
Denis Karpov70a33412009-09-22 16:44:59 -07001005static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001006{
Adrian Hunterb4175772010-05-26 14:42:06 -07001007 int dma_ch;
Venkatraman S31463b12012-04-09 12:08:34 +05301008 unsigned long flags;
Adrian Hunterb4175772010-05-26 14:42:06 -07001009
Jarkko Lavinen82788ff2008-12-05 12:31:46 +02001010 host->data->error = errno;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001011
Venkatraman S31463b12012-04-09 12:08:34 +05301012 spin_lock_irqsave(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001013 dma_ch = host->dma_ch;
1014 host->dma_ch = -1;
Venkatraman S31463b12012-04-09 12:08:34 +05301015 spin_unlock_irqrestore(&host->irq_lock, flags);
Adrian Hunterb4175772010-05-26 14:42:06 -07001016
1017 if (host->use_dma && dma_ch != -1) {
Russell Kingc5c98922012-04-13 12:14:39 +01001018 struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data);
1019
1020 dmaengine_terminate_all(chan);
1021 dma_unmap_sg(chan->device->dev,
1022 host->data->sg, host->data->sg_len,
Denis Karpov70a33412009-09-22 16:44:59 -07001023 omap_hsmmc_get_dma_dir(host, host->data));
Russell Kingc5c98922012-04-13 12:14:39 +01001024
Per Forlin053bf342011-11-07 21:55:11 +05301025 host->data->host_cookie = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001026 }
1027 host->data = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001028}
1029
1030/*
1031 * Readable error output
1032 */
1033#ifdef CONFIG_MMC_DEBUG
Adrian Hunter699b9582011-05-06 12:14:01 +03001034static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001035{
1036 /* --- means reserved bit without definition at documentation */
Denis Karpov70a33412009-09-22 16:44:59 -07001037 static const char *omap_hsmmc_status_bits[] = {
Adrian Hunter699b9582011-05-06 12:14:01 +03001038 "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" ,
1039 "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI",
1040 "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" ,
1041 "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---"
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001042 };
1043 char res[256];
1044 char *buf = res;
1045 int len, i;
1046
1047 len = sprintf(buf, "MMC IRQ 0x%x :", status);
1048 buf += len;
1049
Denis Karpov70a33412009-09-22 16:44:59 -07001050 for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001051 if (status & (1 << i)) {
Denis Karpov70a33412009-09-22 16:44:59 -07001052 len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001053 buf += len;
1054 }
1055
Venkatraman S8986d312012-08-07 19:10:38 +05301056 dev_vdbg(mmc_dev(host->mmc), "%s\n", res);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001057}
Adrian Hunter699b9582011-05-06 12:14:01 +03001058#else
1059static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host,
1060 u32 status)
1061{
1062}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001063#endif /* CONFIG_MMC_DEBUG */
1064
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001065/*
1066 * MMC controller internal state machines reset
1067 *
1068 * Used to reset command or data internal state machines, using respectively
1069 * SRC or SRD bit of SYSCTL register
1070 * Can be called from interrupt context
1071 */
Denis Karpov70a33412009-09-22 16:44:59 -07001072static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
1073 unsigned long bit)
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001074{
1075 unsigned long i = 0;
Jianpeng Ma1e881782013-10-21 00:25:20 +05301076 unsigned long limit = MMC_TIMEOUT_US;
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001077
1078 OMAP_HSMMC_WRITE(host->base, SYSCTL,
1079 OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1080
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001081 /*
1082 * OMAP4 ES2 and greater has an updated reset logic.
1083 * Monitor a 0->1 transition first
1084 */
Andreas Fenkart326119c2014-11-08 15:33:14 +01001085 if (mmc_pdata(host)->features & HSMMC_HAS_UPDATED_RESET) {
kishore kadiyalab432b4b2010-11-17 22:35:32 -05001086 while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit))
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001087 && (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301088 udelay(1);
Madhusudhan Chikkature07ad64b2010-10-01 16:35:25 -07001089 }
1090 i = 0;
1091
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001092 while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1093 (i++ < limit))
Jianpeng Ma1e881782013-10-21 00:25:20 +05301094 udelay(1);
Jean Pihet3ebf74b2009-02-06 16:42:51 +01001095
1096 if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1097 dev_err(mmc_dev(host->mmc),
1098 "Timeout waiting on controller reset in %s\n",
1099 __func__);
1100}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001101
Balaji T K25e18972012-11-19 21:59:55 +05301102static void hsmmc_command_incomplete(struct omap_hsmmc_host *host,
1103 int err, int end_cmd)
Venkatraman Sae4bf782012-08-09 20:36:07 +05301104{
Balaji T K25e18972012-11-19 21:59:55 +05301105 if (end_cmd) {
Balaji T K94d4f272012-11-19 21:59:56 +05301106 omap_hsmmc_reset_controller_fsm(host, SRC);
Balaji T K25e18972012-11-19 21:59:55 +05301107 if (host->cmd)
1108 host->cmd->error = err;
1109 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301110
1111 if (host->data) {
1112 omap_hsmmc_reset_controller_fsm(host, SRD);
1113 omap_hsmmc_dma_cleanup(host, err);
Balaji T Kdc7745b2012-11-19 21:59:57 +05301114 } else if (host->mrq && host->mrq->cmd)
1115 host->mrq->cmd->error = err;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301116}
1117
Adrian Hunterb4175772010-05-26 14:42:06 -07001118static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001119{
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001120 struct mmc_data *data;
Adrian Hunterb4175772010-05-26 14:42:06 -07001121 int end_cmd = 0, end_trans = 0;
Balaji T Ka2e77152014-01-21 19:54:42 +05301122 int error = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001123
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001124 data = host->data;
Venkatraman S8986d312012-08-07 19:10:38 +05301125 dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001126
Venkatraman Sa7e96872012-11-19 22:00:01 +05301127 if (status & ERR_EN) {
Adrian Hunter699b9582011-05-06 12:14:01 +03001128 omap_hsmmc_dbg_report_irq(host, status);
Adrian Hunter4a694dc2009-01-12 16:13:08 +02001129
Venkatraman Sa7e96872012-11-19 22:00:01 +05301130 if (status & (CTO_EN | CCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301131 end_cmd = 1;
Venkatraman Sa7e96872012-11-19 22:00:01 +05301132 if (status & (CTO_EN | DTO_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301133 hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301134 else if (status & (CCRC_EN | DCRC_EN))
Balaji T K25e18972012-11-19 21:59:55 +05301135 hsmmc_command_incomplete(host, -EILSEQ, end_cmd);
1136
Balaji T Ka2e77152014-01-21 19:54:42 +05301137 if (status & ACE_EN) {
1138 u32 ac12;
1139 ac12 = OMAP_HSMMC_READ(host->base, AC12);
1140 if (!(ac12 & ACNE) && host->mrq->sbc) {
1141 end_cmd = 1;
1142 if (ac12 & ACTO)
1143 error = -ETIMEDOUT;
1144 else if (ac12 & (ACCE | ACEB | ACIE))
1145 error = -EILSEQ;
1146 host->mrq->sbc->error = error;
1147 hsmmc_command_incomplete(host, error, end_cmd);
1148 }
1149 dev_dbg(mmc_dev(host->mmc), "AC12 err: 0x%x\n", ac12);
1150 }
Venkatraman Sae4bf782012-08-09 20:36:07 +05301151 if (host->data || host->response_busy) {
Balaji T K25e18972012-11-19 21:59:55 +05301152 end_trans = !end_cmd;
Venkatraman Sae4bf782012-08-09 20:36:07 +05301153 host->response_busy = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001154 }
1155 }
1156
Francesco Lavra7472bab2013-06-29 08:25:12 +02001157 OMAP_HSMMC_WRITE(host->base, STAT, status);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301158 if (end_cmd || ((status & CC_EN) && host->cmd))
Denis Karpov70a33412009-09-22 16:44:59 -07001159 omap_hsmmc_cmd_done(host, host->cmd);
Venkatraman Sa7e96872012-11-19 22:00:01 +05301160 if ((end_trans || (status & TC_EN)) && host->mrq)
Denis Karpov70a33412009-09-22 16:44:59 -07001161 omap_hsmmc_xfer_done(host, data);
Adrian Hunterb4175772010-05-26 14:42:06 -07001162}
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001163
Adrian Hunterb4175772010-05-26 14:42:06 -07001164/*
1165 * MMC controller IRQ handler
1166 */
1167static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1168{
1169 struct omap_hsmmc_host *host = dev_id;
1170 int status;
1171
1172 status = OMAP_HSMMC_READ(host->base, STAT);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001173 while (status & (INT_EN_MASK | CIRQ_EN)) {
1174 if (host->req_in_progress)
1175 omap_hsmmc_do_irq(host, status);
1176
1177 if (status & CIRQ_EN)
1178 mmc_signal_sdio_irq(host->mmc);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301179
Adrian Hunterb4175772010-05-26 14:42:06 -07001180 /* Flush posted write */
1181 status = OMAP_HSMMC_READ(host->base, STAT);
Venkatraman S1f6b9fa2012-08-08 15:44:29 +05301182 }
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07001183
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001184 return IRQ_HANDLED;
1185}
1186
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001187static irqreturn_t omap_hsmmc_wake_irq(int irq, void *dev_id)
1188{
1189 struct omap_hsmmc_host *host = dev_id;
1190
1191 /* cirq is level triggered, disable to avoid infinite loop */
1192 spin_lock(&host->irq_lock);
1193 if (host->flags & HSMMC_WAKE_IRQ_ENABLED) {
1194 disable_irq_nosync(host->wake_irq);
1195 host->flags &= ~HSMMC_WAKE_IRQ_ENABLED;
1196 }
1197 spin_unlock(&host->irq_lock);
1198 pm_request_resume(host->dev); /* no use counter */
1199
1200 return IRQ_HANDLED;
1201}
1202
Denis Karpov70a33412009-09-22 16:44:59 -07001203static void set_sd_bus_power(struct omap_hsmmc_host *host)
Adrian Huntere13bb302009-03-12 17:08:26 +02001204{
1205 unsigned long i;
1206
1207 OMAP_HSMMC_WRITE(host->base, HCTL,
1208 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1209 for (i = 0; i < loops_per_jiffy; i++) {
1210 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1211 break;
1212 cpu_relax();
1213 }
1214}
1215
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001216/*
David Brownelleb250822009-02-17 14:49:01 -08001217 * Switch MMC interface voltage ... only relevant for MMC1.
1218 *
1219 * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1220 * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1221 * Some chips, like eMMC ones, use internal transceivers.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001222 */
Denis Karpov70a33412009-09-22 16:44:59 -07001223static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001224{
1225 u32 reg_val = 0;
1226 int ret;
1227
1228 /* Disable the clocks */
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301229 pm_runtime_put_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301230 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301231 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001232
1233 /* Turn the power off */
Andreas Fenkart326119c2014-11-08 15:33:14 +01001234 ret = mmc_pdata(host)->set_power(host->dev, host->slot_id, 0, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001235
1236 /* Turn the power ON with given VDD 1.8 or 3.0v */
Adrian Hunter2bec0892009-09-22 16:45:02 -07001237 if (!ret)
Andreas Fenkart326119c2014-11-08 15:33:14 +01001238 ret = mmc_pdata(host)->set_power(host->dev, host->slot_id, 1,
1239 vdd);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301240 pm_runtime_get_sync(host->dev);
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05301241 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05301242 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07001243
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001244 if (ret != 0)
1245 goto err;
1246
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001247 OMAP_HSMMC_WRITE(host->base, HCTL,
1248 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1249 reg_val = OMAP_HSMMC_READ(host->base, HCTL);
David Brownelleb250822009-02-17 14:49:01 -08001250
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001251 /*
1252 * If a MMC dual voltage card is detected, the set_ios fn calls
1253 * this fn with VDD bit set for 1.8V. Upon card removal from the
Denis Karpov70a33412009-09-22 16:44:59 -07001254 * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001255 *
David Brownelleb250822009-02-17 14:49:01 -08001256 * Cope with a bit of slop in the range ... per data sheets:
1257 * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1258 * but recommended values are 1.71V to 1.89V
1259 * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1260 * but recommended values are 2.7V to 3.3V
1261 *
1262 * Board setup code shouldn't permit anything very out-of-range.
1263 * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1264 * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001265 */
David Brownelleb250822009-02-17 14:49:01 -08001266 if ((1 << vdd) <= MMC_VDD_23_24)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001267 reg_val |= SDVS18;
David Brownelleb250822009-02-17 14:49:01 -08001268 else
1269 reg_val |= SDVS30;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001270
1271 OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
Adrian Huntere13bb302009-03-12 17:08:26 +02001272 set_sd_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001273
1274 return 0;
1275err:
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301276 dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001277 return ret;
1278}
1279
Adrian Hunterb62f6222009-09-22 16:45:01 -07001280/* Protect the card while the cover is open */
1281static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1282{
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001283 if (!host->get_cover_state)
Adrian Hunterb62f6222009-09-22 16:45:01 -07001284 return;
1285
1286 host->reqs_blocked = 0;
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001287 if (host->get_cover_state(host->dev, host->slot_id)) {
Adrian Hunterb62f6222009-09-22 16:45:01 -07001288 if (host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301289 dev_info(host->dev, "%s: cover is closed, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001290 "card is now accessible\n",
1291 mmc_hostname(host->mmc));
1292 host->protect_card = 0;
1293 }
1294 } else {
1295 if (!host->protect_card) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301296 dev_info(host->dev, "%s: cover is open, "
Adrian Hunterb62f6222009-09-22 16:45:01 -07001297 "card is now inaccessible\n",
1298 mmc_hostname(host->mmc));
1299 host->protect_card = 1;
1300 }
1301 }
1302}
1303
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001304/*
NeilBrown7efab4f2011-12-30 12:35:13 +11001305 * irq handler to notify the core about card insertion/removal
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001306 */
NeilBrown7efab4f2011-12-30 12:35:13 +11001307static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001308{
NeilBrown7efab4f2011-12-30 12:35:13 +11001309 struct omap_hsmmc_host *host = dev_id;
Adrian Huntera6b22402009-09-22 16:44:45 -07001310 int carddetect;
David Brownell249d0fa2009-02-04 14:42:03 -08001311
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001312 sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
Adrian Huntera6b22402009-09-22 16:44:45 -07001313
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001314 if (host->card_detect)
1315 carddetect = host->card_detect(host->dev, host->slot_id);
Adrian Hunterb62f6222009-09-22 16:45:01 -07001316 else {
1317 omap_hsmmc_protect_card(host);
Adrian Huntera6b22402009-09-22 16:44:45 -07001318 carddetect = -ENOSYS;
Adrian Hunterb62f6222009-09-22 16:45:01 -07001319 }
Adrian Huntera6b22402009-09-22 16:44:45 -07001320
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001321 if (carddetect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001322 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
Madhusudhan Chikkaturecdeebad2010-04-06 14:34:49 -07001323 else
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001324 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001325 return IRQ_HANDLED;
1326}
1327
Russell Kingc5c98922012-04-13 12:14:39 +01001328static void omap_hsmmc_dma_callback(void *param)
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001329{
Russell Kingc5c98922012-04-13 12:14:39 +01001330 struct omap_hsmmc_host *host = param;
1331 struct dma_chan *chan;
Adrian Hunter770d7432011-05-06 12:14:11 +03001332 struct mmc_data *data;
Russell Kingc5c98922012-04-13 12:14:39 +01001333 int req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001334
Russell Kingc5c98922012-04-13 12:14:39 +01001335 spin_lock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001336 if (host->dma_ch < 0) {
Russell Kingc5c98922012-04-13 12:14:39 +01001337 spin_unlock_irq(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001338 return;
Adrian Hunterb4175772010-05-26 14:42:06 -07001339 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001340
Adrian Hunter770d7432011-05-06 12:14:11 +03001341 data = host->mrq->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001342 chan = omap_hsmmc_get_dma_chan(host, data);
Per Forlin9782aff2011-07-01 18:55:23 +02001343 if (!data->host_cookie)
Russell Kingc5c98922012-04-13 12:14:39 +01001344 dma_unmap_sg(chan->device->dev,
1345 data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001346 omap_hsmmc_get_dma_dir(host, data));
Adrian Hunterb4175772010-05-26 14:42:06 -07001347
1348 req_in_progress = host->req_in_progress;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001349 host->dma_ch = -1;
Russell Kingc5c98922012-04-13 12:14:39 +01001350 spin_unlock_irq(&host->irq_lock);
Adrian Hunterb4175772010-05-26 14:42:06 -07001351
1352 /* If DMA has finished after TC, complete the request */
1353 if (!req_in_progress) {
1354 struct mmc_request *mrq = host->mrq;
1355
1356 host->mrq = NULL;
1357 mmc_request_done(host->mmc, mrq);
1358 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001359}
1360
Per Forlin9782aff2011-07-01 18:55:23 +02001361static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host,
1362 struct mmc_data *data,
Russell Kingc5c98922012-04-13 12:14:39 +01001363 struct omap_hsmmc_next *next,
Russell King26b88522012-04-13 12:27:37 +01001364 struct dma_chan *chan)
Per Forlin9782aff2011-07-01 18:55:23 +02001365{
1366 int dma_len;
1367
1368 if (!next && data->host_cookie &&
1369 data->host_cookie != host->next_data.cookie) {
Rajendra Nayak2cecdf02012-02-23 17:02:20 +05301370 dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d"
Per Forlin9782aff2011-07-01 18:55:23 +02001371 " host->next_data.cookie %d\n",
1372 __func__, data->host_cookie, host->next_data.cookie);
1373 data->host_cookie = 0;
1374 }
1375
1376 /* Check if next job is already prepared */
Dan Carpenterb38313d2014-01-30 15:15:18 +03001377 if (next || data->host_cookie != host->next_data.cookie) {
Russell King26b88522012-04-13 12:27:37 +01001378 dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len,
Per Forlin9782aff2011-07-01 18:55:23 +02001379 omap_hsmmc_get_dma_dir(host, data));
1380
1381 } else {
1382 dma_len = host->next_data.dma_len;
1383 host->next_data.dma_len = 0;
1384 }
1385
1386
1387 if (dma_len == 0)
1388 return -EINVAL;
1389
1390 if (next) {
1391 next->dma_len = dma_len;
1392 data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie;
1393 } else
1394 host->dma_len = dma_len;
1395
1396 return 0;
1397}
1398
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001399/*
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001400 * Routine to configure and start DMA for the MMC card
1401 */
Balaji T K9d025332014-01-21 19:54:42 +05301402static int omap_hsmmc_setup_dma_transfer(struct omap_hsmmc_host *host,
Denis Karpov70a33412009-09-22 16:44:59 -07001403 struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001404{
Russell King26b88522012-04-13 12:27:37 +01001405 struct dma_slave_config cfg;
1406 struct dma_async_tx_descriptor *tx;
1407 int ret = 0, i;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001408 struct mmc_data *data = req->data;
Russell Kingc5c98922012-04-13 12:14:39 +01001409 struct dma_chan *chan;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001410
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001411 /* Sanity check: all the SG entries must be aligned by block size. */
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001412 for (i = 0; i < data->sg_len; i++) {
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02001413 struct scatterlist *sgl;
1414
1415 sgl = data->sg + i;
1416 if (sgl->length % data->blksz)
1417 return -EINVAL;
1418 }
1419 if ((data->blksz % 4) != 0)
1420 /* REVISIT: The MMC buffer increments only when MSB is written.
1421 * Return error for blksz which is non multiple of four.
1422 */
1423 return -EINVAL;
1424
Adrian Hunterb4175772010-05-26 14:42:06 -07001425 BUG_ON(host->dma_ch != -1);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001426
Russell Kingc5c98922012-04-13 12:14:39 +01001427 chan = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001428
Russell King26b88522012-04-13 12:27:37 +01001429 cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA;
1430 cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA;
1431 cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1432 cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
1433 cfg.src_maxburst = data->blksz / 4;
1434 cfg.dst_maxburst = data->blksz / 4;
Russell Kingc5c98922012-04-13 12:14:39 +01001435
Russell King26b88522012-04-13 12:27:37 +01001436 ret = dmaengine_slave_config(chan, &cfg);
Per Forlin9782aff2011-07-01 18:55:23 +02001437 if (ret)
1438 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001439
Russell King26b88522012-04-13 12:27:37 +01001440 ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan);
1441 if (ret)
1442 return ret;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001443
Russell King26b88522012-04-13 12:27:37 +01001444 tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len,
1445 data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM,
1446 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
1447 if (!tx) {
1448 dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n");
1449 /* FIXME: cleanup */
1450 return -1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001451 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001452
Russell King26b88522012-04-13 12:27:37 +01001453 tx->callback = omap_hsmmc_dma_callback;
1454 tx->callback_param = host;
1455
1456 /* Does not fail */
1457 dmaengine_submit(tx);
1458
1459 host->dma_ch = 1;
1460
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001461 return 0;
1462}
1463
Denis Karpov70a33412009-09-22 16:44:59 -07001464static void set_data_timeout(struct omap_hsmmc_host *host,
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001465 unsigned int timeout_ns,
1466 unsigned int timeout_clks)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001467{
1468 unsigned int timeout, cycle_ns;
1469 uint32_t reg, clkd, dto = 0;
1470
1471 reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1472 clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1473 if (clkd == 0)
1474 clkd = 1;
1475
Balaji T K6e3076c2014-01-21 19:54:42 +05301476 cycle_ns = 1000000000 / (host->clk_rate / clkd);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001477 timeout = timeout_ns / cycle_ns;
1478 timeout += timeout_clks;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001479 if (timeout) {
1480 while ((timeout & 0x80000000) == 0) {
1481 dto += 1;
1482 timeout <<= 1;
1483 }
1484 dto = 31 - dto;
1485 timeout <<= 1;
1486 if (timeout && dto)
1487 dto += 1;
1488 if (dto >= 13)
1489 dto -= 13;
1490 else
1491 dto = 0;
1492 if (dto > 14)
1493 dto = 14;
1494 }
1495
1496 reg &= ~DTO_MASK;
1497 reg |= dto << DTO_SHIFT;
1498 OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1499}
1500
Balaji T K9d025332014-01-21 19:54:42 +05301501static void omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host)
1502{
1503 struct mmc_request *req = host->mrq;
1504 struct dma_chan *chan;
1505
1506 if (!req->data)
1507 return;
1508 OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1509 | (req->data->blocks << 16));
1510 set_data_timeout(host, req->data->timeout_ns,
1511 req->data->timeout_clks);
1512 chan = omap_hsmmc_get_dma_chan(host, req->data);
1513 dma_async_issue_pending(chan);
1514}
1515
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001516/*
1517 * Configure block length for MMC/SD cards and initiate the transfer.
1518 */
1519static int
Denis Karpov70a33412009-09-22 16:44:59 -07001520omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001521{
1522 int ret;
1523 host->data = req->data;
1524
1525 if (req->data == NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001526 OMAP_HSMMC_WRITE(host->base, BLK, 0);
Adrian Huntere2bf08d2009-09-22 16:45:03 -07001527 /*
1528 * Set an arbitrary 100ms data timeout for commands with
1529 * busy signal.
1530 */
1531 if (req->cmd->flags & MMC_RSP_BUSY)
1532 set_data_timeout(host, 100000000U, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001533 return 0;
1534 }
1535
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001536 if (host->use_dma) {
Balaji T K9d025332014-01-21 19:54:42 +05301537 ret = omap_hsmmc_setup_dma_transfer(host, req);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001538 if (ret != 0) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05301539 dev_err(mmc_dev(host->mmc), "MMC start dma failure\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001540 return ret;
1541 }
1542 }
1543 return 0;
1544}
1545
Per Forlin9782aff2011-07-01 18:55:23 +02001546static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq,
1547 int err)
1548{
1549 struct omap_hsmmc_host *host = mmc_priv(mmc);
1550 struct mmc_data *data = mrq->data;
1551
Russell King26b88522012-04-13 12:27:37 +01001552 if (host->use_dma && data->host_cookie) {
Russell Kingc5c98922012-04-13 12:14:39 +01001553 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data);
Russell Kingc5c98922012-04-13 12:14:39 +01001554
Russell King26b88522012-04-13 12:27:37 +01001555 dma_unmap_sg(c->device->dev, data->sg, data->sg_len,
1556 omap_hsmmc_get_dma_dir(host, data));
Per Forlin9782aff2011-07-01 18:55:23 +02001557 data->host_cookie = 0;
1558 }
1559}
1560
1561static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq,
1562 bool is_first_req)
1563{
1564 struct omap_hsmmc_host *host = mmc_priv(mmc);
1565
1566 if (mrq->data->host_cookie) {
1567 mrq->data->host_cookie = 0;
1568 return ;
1569 }
1570
Russell Kingc5c98922012-04-13 12:14:39 +01001571 if (host->use_dma) {
1572 struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data);
Russell Kingc5c98922012-04-13 12:14:39 +01001573
Per Forlin9782aff2011-07-01 18:55:23 +02001574 if (omap_hsmmc_pre_dma_transfer(host, mrq->data,
Russell King26b88522012-04-13 12:27:37 +01001575 &host->next_data, c))
Per Forlin9782aff2011-07-01 18:55:23 +02001576 mrq->data->host_cookie = 0;
Russell Kingc5c98922012-04-13 12:14:39 +01001577 }
Per Forlin9782aff2011-07-01 18:55:23 +02001578}
1579
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001580/*
1581 * Request function. for read/write operation
1582 */
Denis Karpov70a33412009-09-22 16:44:59 -07001583static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001584{
Denis Karpov70a33412009-09-22 16:44:59 -07001585 struct omap_hsmmc_host *host = mmc_priv(mmc);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001586 int err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001587
Adrian Hunterb4175772010-05-26 14:42:06 -07001588 BUG_ON(host->req_in_progress);
1589 BUG_ON(host->dma_ch != -1);
1590 if (host->protect_card) {
1591 if (host->reqs_blocked < 3) {
1592 /*
1593 * Ensure the controller is left in a consistent
1594 * state by resetting the command and data state
1595 * machines.
1596 */
1597 omap_hsmmc_reset_controller_fsm(host, SRD);
1598 omap_hsmmc_reset_controller_fsm(host, SRC);
1599 host->reqs_blocked += 1;
1600 }
1601 req->cmd->error = -EBADF;
1602 if (req->data)
1603 req->data->error = -EBADF;
1604 req->cmd->retries = 0;
1605 mmc_request_done(mmc, req);
1606 return;
1607 } else if (host->reqs_blocked)
1608 host->reqs_blocked = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001609 WARN_ON(host->mrq != NULL);
1610 host->mrq = req;
Balaji T K6e3076c2014-01-21 19:54:42 +05301611 host->clk_rate = clk_get_rate(host->fclk);
Denis Karpov70a33412009-09-22 16:44:59 -07001612 err = omap_hsmmc_prepare_data(host, req);
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001613 if (err) {
1614 req->cmd->error = err;
1615 if (req->data)
1616 req->data->error = err;
1617 host->mrq = NULL;
1618 mmc_request_done(mmc, req);
1619 return;
1620 }
Balaji T Ka2e77152014-01-21 19:54:42 +05301621 if (req->sbc && !(host->flags & AUTO_CMD23)) {
Balaji T Kbf129e12014-01-21 19:54:42 +05301622 omap_hsmmc_start_command(host, req->sbc, NULL);
1623 return;
1624 }
Jarkko Lavinena3f406f2009-09-22 16:44:46 -07001625
Balaji T K9d025332014-01-21 19:54:42 +05301626 omap_hsmmc_start_dma_transfer(host);
Denis Karpov70a33412009-09-22 16:44:59 -07001627 omap_hsmmc_start_command(host, req->cmd, req->data);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001628}
1629
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001630/* Routine to configure clock values. Exposed API to core */
Denis Karpov70a33412009-09-22 16:44:59 -07001631static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001632{
Denis Karpov70a33412009-09-22 16:44:59 -07001633 struct omap_hsmmc_host *host = mmc_priv(mmc);
Adrian Huntera3621462009-09-22 16:44:42 -07001634 int do_send_init_stream = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001635
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301636 pm_runtime_get_sync(host->dev);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001637
Adrian Huntera3621462009-09-22 16:44:42 -07001638 if (ios->power_mode != host->power_mode) {
1639 switch (ios->power_mode) {
1640 case MMC_POWER_OFF:
Andreas Fenkart326119c2014-11-08 15:33:14 +01001641 mmc_pdata(host)->set_power(host->dev, host->slot_id,
1642 0, 0);
Adrian Huntera3621462009-09-22 16:44:42 -07001643 break;
1644 case MMC_POWER_UP:
Andreas Fenkart326119c2014-11-08 15:33:14 +01001645 mmc_pdata(host)->set_power(host->dev, host->slot_id,
1646 1, ios->vdd);
Adrian Huntera3621462009-09-22 16:44:42 -07001647 break;
1648 case MMC_POWER_ON:
1649 do_send_init_stream = 1;
1650 break;
1651 }
1652 host->power_mode = ios->power_mode;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001653 }
1654
Denis Karpovdd498ef2009-09-22 16:44:49 -07001655 /* FIXME: set registers based only on changes to ios */
1656
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001657 omap_hsmmc_set_bus_width(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001658
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301659 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
David Brownelleb250822009-02-17 14:49:01 -08001660 /* Only MMC1 can interface at 3V without some flavor
1661 * of external transceiver; but they all handle 1.8V.
1662 */
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001663 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
Balaji T K2cf171c2014-02-19 20:26:40 +05301664 (ios->vdd == DUAL_VOLT_OCR_BIT)) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001665 /*
1666 * The mmc_select_voltage fn of the core does
1667 * not seem to set the power_mode to
1668 * MMC_POWER_UP upon recalculating the voltage.
1669 * vdd 1.8v.
1670 */
Denis Karpov70a33412009-09-22 16:44:59 -07001671 if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1672 dev_dbg(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001673 "Switch operation failed\n");
1674 }
1675 }
1676
Andy Shevchenko5934df22011-05-06 12:14:06 +03001677 omap_hsmmc_set_clock(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001678
Adrian Huntera3621462009-09-22 16:44:42 -07001679 if (do_send_init_stream)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001680 send_init_stream(host);
1681
Andy Shevchenko3796fb8a2011-07-13 11:31:15 -04001682 omap_hsmmc_set_bus_mode(host);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001683
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301684 pm_runtime_put_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001685}
1686
1687static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1688{
Denis Karpov70a33412009-09-22 16:44:59 -07001689 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001690
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001691 if (!host->card_detect)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001692 return -ENOSYS;
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001693 return host->card_detect(host->dev, host->slot_id);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001694}
1695
1696static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1697{
Denis Karpov70a33412009-09-22 16:44:59 -07001698 struct omap_hsmmc_host *host = mmc_priv(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001699
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001700 if (!host->get_ro)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001701 return -ENOSYS;
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01001702 return host->get_ro(host->dev, 0);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01001703}
1704
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001705static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1706{
1707 struct omap_hsmmc_host *host = mmc_priv(mmc);
1708
Andreas Fenkart326119c2014-11-08 15:33:14 +01001709 if (mmc_pdata(host)->init_card)
1710 mmc_pdata(host)->init_card(card);
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001711}
1712
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001713static void omap_hsmmc_enable_sdio_irq(struct mmc_host *mmc, int enable)
1714{
1715 struct omap_hsmmc_host *host = mmc_priv(mmc);
Balaji T K5a52b082014-05-29 10:28:02 +02001716 u32 irq_mask, con;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001717 unsigned long flags;
1718
1719 spin_lock_irqsave(&host->irq_lock, flags);
1720
Balaji T K5a52b082014-05-29 10:28:02 +02001721 con = OMAP_HSMMC_READ(host->base, CON);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001722 irq_mask = OMAP_HSMMC_READ(host->base, ISE);
1723 if (enable) {
1724 host->flags |= HSMMC_SDIO_IRQ_ENABLED;
1725 irq_mask |= CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001726 con |= CTPL | CLKEXTFREE;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001727 } else {
1728 host->flags &= ~HSMMC_SDIO_IRQ_ENABLED;
1729 irq_mask &= ~CIRQ_EN;
Balaji T K5a52b082014-05-29 10:28:02 +02001730 con &= ~(CTPL | CLKEXTFREE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001731 }
Balaji T K5a52b082014-05-29 10:28:02 +02001732 OMAP_HSMMC_WRITE(host->base, CON, con);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001733 OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
1734
1735 /*
1736 * if enable, piggy back detection on current request
1737 * but always disable immediately
1738 */
1739 if (!host->req_in_progress || !enable)
1740 OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
1741
1742 /* flush posted write */
1743 OMAP_HSMMC_READ(host->base, IE);
1744
1745 spin_unlock_irqrestore(&host->irq_lock, flags);
1746}
1747
1748static int omap_hsmmc_configure_wake_irq(struct omap_hsmmc_host *host)
1749{
1750 struct mmc_host *mmc = host->mmc;
1751 int ret;
1752
1753 /*
1754 * For omaps with wake-up path, wakeirq will be irq from pinctrl and
1755 * for other omaps, wakeirq will be from GPIO (dat line remuxed to
1756 * gpio). wakeirq is needed to detect sdio irq in runtime suspend state
1757 * with functional clock disabled.
1758 */
1759 if (!host->dev->of_node || !host->wake_irq)
1760 return -ENODEV;
1761
1762 /* Prevent auto-enabling of IRQ */
1763 irq_set_status_flags(host->wake_irq, IRQ_NOAUTOEN);
1764 ret = devm_request_irq(host->dev, host->wake_irq, omap_hsmmc_wake_irq,
1765 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1766 mmc_hostname(mmc), host);
1767 if (ret) {
1768 dev_err(mmc_dev(host->mmc), "Unable to request wake IRQ\n");
1769 goto err;
1770 }
1771
1772 /*
1773 * Some omaps don't have wake-up path from deeper idle states
1774 * and need to remux SDIO DAT1 to GPIO for wake-up from idle.
1775 */
1776 if (host->pdata->controller_flags & OMAP_HSMMC_SWAKEUP_MISSING) {
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001777 struct pinctrl *p = devm_pinctrl_get(host->dev);
1778 if (!p) {
1779 ret = -ENODEV;
1780 goto err_free_irq;
1781 }
1782 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_DEFAULT))) {
1783 dev_info(host->dev, "missing default pinctrl state\n");
1784 devm_pinctrl_put(p);
1785 ret = -EINVAL;
1786 goto err_free_irq;
1787 }
1788
1789 if (IS_ERR(pinctrl_lookup_state(p, PINCTRL_STATE_IDLE))) {
1790 dev_info(host->dev, "missing idle pinctrl state\n");
1791 devm_pinctrl_put(p);
1792 ret = -EINVAL;
1793 goto err_free_irq;
1794 }
1795 devm_pinctrl_put(p);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001796 }
1797
Balaji T K5a52b082014-05-29 10:28:02 +02001798 OMAP_HSMMC_WRITE(host->base, HCTL,
1799 OMAP_HSMMC_READ(host->base, HCTL) | IWE);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001800 return 0;
1801
Andreas Fenkart455e5cd2014-05-29 10:28:05 +02001802err_free_irq:
1803 devm_free_irq(host->dev, host->wake_irq, host);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001804err:
1805 dev_warn(host->dev, "no SDIO IRQ support, falling back to polling\n");
1806 host->wake_irq = 0;
1807 return ret;
1808}
1809
Denis Karpov70a33412009-09-22 16:44:59 -07001810static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001811{
1812 u32 hctl, capa, value;
1813
1814 /* Only MMC1 supports 3.0V */
Kishore Kadiyala4621d5f2011-02-28 20:48:04 +05301815 if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) {
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001816 hctl = SDVS30;
1817 capa = VS30 | VS18;
1818 } else {
1819 hctl = SDVS18;
1820 capa = VS18;
1821 }
1822
1823 value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1824 OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1825
1826 value = OMAP_HSMMC_READ(host->base, CAPA);
1827 OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1828
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001829 /* Set SD bus power bit */
Adrian Huntere13bb302009-03-12 17:08:26 +02001830 set_sd_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01001831}
1832
Denis Karpov70a33412009-09-22 16:44:59 -07001833static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001834{
Denis Karpov70a33412009-09-22 16:44:59 -07001835 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001836
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301837 pm_runtime_get_sync(host->dev);
1838
Denis Karpovdd498ef2009-09-22 16:44:49 -07001839 return 0;
1840}
1841
Adrian Hunter907d2e72012-02-29 09:17:21 +02001842static int omap_hsmmc_disable_fclk(struct mmc_host *mmc)
Denis Karpovdd498ef2009-09-22 16:44:49 -07001843{
Denis Karpov70a33412009-09-22 16:44:59 -07001844 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001845
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301846 pm_runtime_mark_last_busy(host->dev);
1847 pm_runtime_put_autosuspend(host->dev);
1848
Denis Karpovdd498ef2009-09-22 16:44:49 -07001849 return 0;
1850}
1851
Kuninori Morimotoafd8c292014-09-08 23:44:51 -07001852static int omap_hsmmc_multi_io_quirk(struct mmc_card *card,
1853 unsigned int direction, int blk_size)
1854{
1855 /* This controller can't do multiblock reads due to hw bugs */
1856 if (direction == MMC_DATA_READ)
1857 return 1;
1858
1859 return blk_size;
1860}
1861
1862static struct mmc_host_ops omap_hsmmc_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001863 .enable = omap_hsmmc_enable_fclk,
1864 .disable = omap_hsmmc_disable_fclk,
Per Forlin9782aff2011-07-01 18:55:23 +02001865 .post_req = omap_hsmmc_post_req,
1866 .pre_req = omap_hsmmc_pre_req,
Denis Karpov70a33412009-09-22 16:44:59 -07001867 .request = omap_hsmmc_request,
1868 .set_ios = omap_hsmmc_set_ios,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001869 .get_cd = omap_hsmmc_get_cd,
1870 .get_ro = omap_hsmmc_get_ro,
Grazvydas Ignotas48168582010-08-10 18:01:52 -07001871 .init_card = omap_hsmmc_init_card,
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001872 .enable_sdio_irq = omap_hsmmc_enable_sdio_irq,
Denis Karpovdd498ef2009-09-22 16:44:49 -07001873};
1874
Denis Karpovd900f712009-09-22 16:44:38 -07001875#ifdef CONFIG_DEBUG_FS
1876
Denis Karpov70a33412009-09-22 16:44:59 -07001877static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
Denis Karpovd900f712009-09-22 16:44:38 -07001878{
1879 struct mmc_host *mmc = s->private;
Denis Karpov70a33412009-09-22 16:44:59 -07001880 struct omap_hsmmc_host *host = mmc_priv(mmc);
Denis Karpov11dd62a2009-09-22 16:44:43 -07001881
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001882 seq_printf(s, "mmc%d:\n", mmc->index);
1883 seq_printf(s, "sdio irq mode\t%s\n",
1884 (mmc->caps & MMC_CAP_SDIO_IRQ) ? "interrupt" : "polling");
1885
1886 if (mmc->caps & MMC_CAP_SDIO_IRQ) {
1887 seq_printf(s, "sdio irq \t%s\n",
1888 (host->flags & HSMMC_SDIO_IRQ_ENABLED) ? "enabled"
1889 : "disabled");
1890 }
1891 seq_printf(s, "ctx_loss:\t%d\n", host->context_loss);
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001892
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301893 pm_runtime_get_sync(host->dev);
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001894 seq_puts(s, "\nregs:\n");
Denis Karpovd900f712009-09-22 16:44:38 -07001895 seq_printf(s, "CON:\t\t0x%08x\n",
1896 OMAP_HSMMC_READ(host->base, CON));
Andreas Fenkartbb0635f2014-05-29 10:28:01 +02001897 seq_printf(s, "PSTATE:\t\t0x%08x\n",
1898 OMAP_HSMMC_READ(host->base, PSTATE));
Denis Karpovd900f712009-09-22 16:44:38 -07001899 seq_printf(s, "HCTL:\t\t0x%08x\n",
1900 OMAP_HSMMC_READ(host->base, HCTL));
1901 seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1902 OMAP_HSMMC_READ(host->base, SYSCTL));
1903 seq_printf(s, "IE:\t\t0x%08x\n",
1904 OMAP_HSMMC_READ(host->base, IE));
1905 seq_printf(s, "ISE:\t\t0x%08x\n",
1906 OMAP_HSMMC_READ(host->base, ISE));
1907 seq_printf(s, "CAPA:\t\t0x%08x\n",
1908 OMAP_HSMMC_READ(host->base, CAPA));
Adrian Hunter5e2ea612009-09-22 16:44:39 -07001909
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05301910 pm_runtime_mark_last_busy(host->dev);
1911 pm_runtime_put_autosuspend(host->dev);
Denis Karpovdd498ef2009-09-22 16:44:49 -07001912
Denis Karpovd900f712009-09-22 16:44:38 -07001913 return 0;
1914}
1915
Denis Karpov70a33412009-09-22 16:44:59 -07001916static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
Denis Karpovd900f712009-09-22 16:44:38 -07001917{
Denis Karpov70a33412009-09-22 16:44:59 -07001918 return single_open(file, omap_hsmmc_regs_show, inode->i_private);
Denis Karpovd900f712009-09-22 16:44:38 -07001919}
1920
1921static const struct file_operations mmc_regs_fops = {
Denis Karpov70a33412009-09-22 16:44:59 -07001922 .open = omap_hsmmc_regs_open,
Denis Karpovd900f712009-09-22 16:44:38 -07001923 .read = seq_read,
1924 .llseek = seq_lseek,
1925 .release = single_release,
1926};
1927
Denis Karpov70a33412009-09-22 16:44:59 -07001928static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001929{
1930 if (mmc->debugfs_root)
1931 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
1932 mmc, &mmc_regs_fops);
1933}
1934
1935#else
1936
Denis Karpov70a33412009-09-22 16:44:59 -07001937static void omap_hsmmc_debugfs(struct mmc_host *mmc)
Denis Karpovd900f712009-09-22 16:44:38 -07001938{
1939}
1940
1941#endif
1942
Rajendra Nayak46856a62012-03-12 20:32:37 +05301943#ifdef CONFIG_OF
Nishanth Menon59445b12014-02-13 23:45:48 -06001944static const struct omap_mmc_of_data omap3_pre_es3_mmc_of_data = {
1945 /* See 35xx errata 2.1.1.128 in SPRZ278F */
1946 .controller_flags = OMAP_HSMMC_BROKEN_MULTIBLOCK_READ,
1947};
1948
1949static const struct omap_mmc_of_data omap4_mmc_of_data = {
1950 .reg_offset = 0x100,
1951};
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001952static const struct omap_mmc_of_data am33xx_mmc_of_data = {
1953 .reg_offset = 0x100,
1954 .controller_flags = OMAP_HSMMC_SWAKEUP_MISSING,
1955};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301956
1957static const struct of_device_id omap_mmc_of_match[] = {
1958 {
1959 .compatible = "ti,omap2-hsmmc",
1960 },
1961 {
Nishanth Menon59445b12014-02-13 23:45:48 -06001962 .compatible = "ti,omap3-pre-es3-hsmmc",
1963 .data = &omap3_pre_es3_mmc_of_data,
1964 },
1965 {
Rajendra Nayak46856a62012-03-12 20:32:37 +05301966 .compatible = "ti,omap3-hsmmc",
1967 },
1968 {
1969 .compatible = "ti,omap4-hsmmc",
Nishanth Menon59445b12014-02-13 23:45:48 -06001970 .data = &omap4_mmc_of_data,
Rajendra Nayak46856a62012-03-12 20:32:37 +05301971 },
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02001972 {
1973 .compatible = "ti,am33xx-hsmmc",
1974 .data = &am33xx_mmc_of_data,
1975 },
Rajendra Nayak46856a62012-03-12 20:32:37 +05301976 {},
Chris Ballb6d085f2012-04-10 09:57:36 -04001977};
Rajendra Nayak46856a62012-03-12 20:32:37 +05301978MODULE_DEVICE_TABLE(of, omap_mmc_of_match);
1979
Andreas Fenkart55143432014-11-08 15:33:09 +01001980static struct omap_hsmmc_platform_data *of_get_hsmmc_pdata(struct device *dev)
Rajendra Nayak46856a62012-03-12 20:32:37 +05301981{
Andreas Fenkart55143432014-11-08 15:33:09 +01001982 struct omap_hsmmc_platform_data *pdata;
Rajendra Nayak46856a62012-03-12 20:32:37 +05301983 struct device_node *np = dev->of_node;
Daniel Mackd8714e82012-10-15 21:35:06 +05301984 u32 bus_width, max_freq;
Jan Luebbedc642c22013-01-30 10:07:17 +01001985 int cd_gpio, wp_gpio;
1986
1987 cd_gpio = of_get_named_gpio(np, "cd-gpios", 0);
1988 wp_gpio = of_get_named_gpio(np, "wp-gpios", 0);
1989 if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER)
1990 return ERR_PTR(-EPROBE_DEFER);
Rajendra Nayak46856a62012-03-12 20:32:37 +05301991
1992 pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL);
1993 if (!pdata)
Balaji T K19df45b2014-02-28 19:08:18 +05301994 return ERR_PTR(-ENOMEM); /* out of memory */
Rajendra Nayak46856a62012-03-12 20:32:37 +05301995
1996 if (of_find_property(np, "ti,dual-volt", NULL))
1997 pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT;
1998
1999 /* This driver only supports 1 slot */
2000 pdata->nr_slots = 1;
Andreas Fenkart326119c2014-11-08 15:33:14 +01002001 pdata->switch_pin = cd_gpio;
2002 pdata->gpio_wp = wp_gpio;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302003
2004 if (of_find_property(np, "ti,non-removable", NULL)) {
Andreas Fenkart326119c2014-11-08 15:33:14 +01002005 pdata->nonremovable = true;
2006 pdata->no_regulator_off_init = true;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302007 }
Arnd Bergmann7f217792012-05-13 00:14:24 -04002008 of_property_read_u32(np, "bus-width", &bus_width);
Rajendra Nayak46856a62012-03-12 20:32:37 +05302009 if (bus_width == 4)
Andreas Fenkart326119c2014-11-08 15:33:14 +01002010 pdata->caps |= MMC_CAP_4_BIT_DATA;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302011 else if (bus_width == 8)
Andreas Fenkart326119c2014-11-08 15:33:14 +01002012 pdata->caps |= MMC_CAP_8_BIT_DATA;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302013
2014 if (of_find_property(np, "ti,needs-special-reset", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002015 pdata->features |= HSMMC_HAS_UPDATED_RESET;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302016
Daniel Mackd8714e82012-10-15 21:35:06 +05302017 if (!of_property_read_u32(np, "max-frequency", &max_freq))
2018 pdata->max_freq = max_freq;
2019
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302020 if (of_find_property(np, "ti,needs-special-hs-handling", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002021 pdata->features |= HSMMC_HAS_HSPE_SUPPORT;
Hebbar, Gururajacd587092012-11-19 21:59:58 +05302022
Daniel Mackc9ae64d2014-02-17 12:36:33 +01002023 if (of_find_property(np, "keep-power-in-suspend", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002024 pdata->pm_caps |= MMC_PM_KEEP_POWER;
Daniel Mackc9ae64d2014-02-17 12:36:33 +01002025
2026 if (of_find_property(np, "enable-sdio-wakeup", NULL))
Andreas Fenkart326119c2014-11-08 15:33:14 +01002027 pdata->pm_caps |= MMC_PM_WAKE_SDIO_IRQ;
Daniel Mackc9ae64d2014-02-17 12:36:33 +01002028
Rajendra Nayak46856a62012-03-12 20:32:37 +05302029 return pdata;
2030}
2031#else
Andreas Fenkart55143432014-11-08 15:33:09 +01002032static inline struct omap_hsmmc_platform_data
Rajendra Nayak46856a62012-03-12 20:32:37 +05302033 *of_get_hsmmc_pdata(struct device *dev)
2034{
Balaji T K19df45b2014-02-28 19:08:18 +05302035 return ERR_PTR(-EINVAL);
Rajendra Nayak46856a62012-03-12 20:32:37 +05302036}
2037#endif
2038
Bill Pembertonc3be1ef2012-11-19 13:23:06 -05002039static int omap_hsmmc_probe(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002040{
Andreas Fenkart55143432014-11-08 15:33:09 +01002041 struct omap_hsmmc_platform_data *pdata = pdev->dev.platform_data;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002042 struct mmc_host *mmc;
Denis Karpov70a33412009-09-22 16:44:59 -07002043 struct omap_hsmmc_host *host = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002044 struct resource *res;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002045 int ret, irq;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302046 const struct of_device_id *match;
Russell King26b88522012-04-13 12:27:37 +01002047 dma_cap_mask_t mask;
2048 unsigned tx_req, rx_req;
Nishanth Menon59445b12014-02-13 23:45:48 -06002049 const struct omap_mmc_of_data *data;
Balaji T K77fae212014-05-09 22:16:51 +05302050 void __iomem *base;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302051
2052 match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev);
2053 if (match) {
2054 pdata = of_get_hsmmc_pdata(&pdev->dev);
Jan Luebbedc642c22013-01-30 10:07:17 +01002055
2056 if (IS_ERR(pdata))
2057 return PTR_ERR(pdata);
2058
Rajendra Nayak46856a62012-03-12 20:32:37 +05302059 if (match->data) {
Nishanth Menon59445b12014-02-13 23:45:48 -06002060 data = match->data;
2061 pdata->reg_offset = data->reg_offset;
2062 pdata->controller_flags |= data->controller_flags;
Rajendra Nayak46856a62012-03-12 20:32:37 +05302063 }
2064 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002065
2066 if (pdata == NULL) {
2067 dev_err(&pdev->dev, "Platform Data is missing\n");
2068 return -ENXIO;
2069 }
2070
2071 if (pdata->nr_slots == 0) {
2072 dev_err(&pdev->dev, "No Slots\n");
2073 return -ENXIO;
2074 }
2075
2076 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2077 irq = platform_get_irq(pdev, 0);
2078 if (res == NULL || irq < 0)
2079 return -ENXIO;
2080
Balaji T K77fae212014-05-09 22:16:51 +05302081 base = devm_ioremap_resource(&pdev->dev, res);
2082 if (IS_ERR(base))
2083 return PTR_ERR(base);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002084
Denis Karpov70a33412009-09-22 16:44:59 -07002085 mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002086 if (!mmc) {
2087 ret = -ENOMEM;
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002088 goto err;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002089 }
2090
2091 host = mmc_priv(mmc);
2092 host->mmc = mmc;
2093 host->pdata = pdata;
2094 host->dev = &pdev->dev;
2095 host->use_dma = 1;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002096 host->dma_ch = -1;
2097 host->irq = irq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002098 host->slot_id = 0;
Balaji T Kfc307df2012-04-02 12:26:47 +05302099 host->mapbase = res->start + pdata->reg_offset;
Balaji T K77fae212014-05-09 22:16:51 +05302100 host->base = base + pdata->reg_offset;
Adrian Hunter6da20c82010-02-15 10:03:34 -08002101 host->power_mode = MMC_POWER_OFF;
Per Forlin9782aff2011-07-01 18:55:23 +02002102 host->next_data.cookie = 1;
Balaji T Ke99448f2014-02-19 20:26:40 +05302103 host->pbias_enabled = 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002104
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002105 ret = omap_hsmmc_gpio_init(host, pdata);
2106 if (ret)
2107 goto err_gpio;
2108
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002109 platform_set_drvdata(pdev, host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002110
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002111 if (pdev->dev.of_node)
2112 host->wake_irq = irq_of_parse_and_map(pdev->dev.of_node, 1);
2113
Balaji T K7a8c2ce2011-07-01 22:09:34 +05302114 mmc->ops = &omap_hsmmc_ops;
Denis Karpovdd498ef2009-09-22 16:44:49 -07002115
Daniel Mackd418ed82012-02-19 13:20:33 +01002116 mmc->f_min = OMAP_MMC_MIN_CLOCK;
2117
2118 if (pdata->max_freq > 0)
2119 mmc->f_max = pdata->max_freq;
2120 else
2121 mmc->f_max = OMAP_MMC_MAX_CLOCK;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002122
Adrian Hunter4dffd7a2009-09-22 16:44:58 -07002123 spin_lock_init(&host->irq_lock);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002124
Balaji T K96181952014-05-09 22:16:48 +05302125 host->fclk = devm_clk_get(&pdev->dev, "fck");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002126 if (IS_ERR(host->fclk)) {
2127 ret = PTR_ERR(host->fclk);
2128 host->fclk = NULL;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002129 goto err1;
2130 }
2131
Paul Walmsley9b682562011-10-06 14:50:35 -06002132 if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) {
2133 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 -07002134 omap_hsmmc_ops.multi_io_quirk = omap_hsmmc_multi_io_quirk;
Paul Walmsley9b682562011-10-06 14:50:35 -06002135 }
Denis Karpovdd498ef2009-09-22 16:44:49 -07002136
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302137 pm_runtime_enable(host->dev);
2138 pm_runtime_get_sync(host->dev);
2139 pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY);
2140 pm_runtime_use_autosuspend(host->dev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002141
Balaji T K92a3aeb2012-02-24 21:14:34 +05302142 omap_hsmmc_context_save(host);
2143
Balaji T K96181952014-05-09 22:16:48 +05302144 host->dbclk = devm_clk_get(&pdev->dev, "mmchsdb_fck");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302145 /*
2146 * MMC can still work without debounce clock.
2147 */
2148 if (IS_ERR(host->dbclk)) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302149 host->dbclk = NULL;
Rajendra Nayak94c18142012-06-27 14:19:54 +05302150 } else if (clk_prepare_enable(host->dbclk) != 0) {
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302151 dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n");
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302152 host->dbclk = NULL;
Adrian Hunter2bec0892009-09-22 16:45:02 -07002153 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002154
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002155 /* Since we do only SG emulation, we can have as many segs
2156 * as we want. */
Martin K. Petersena36274e2010-09-10 01:33:59 -04002157 mmc->max_segs = 1024;
Juha Yrjola0ccd76d2008-11-14 15:22:00 +02002158
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002159 mmc->max_blk_size = 512; /* Block Length at max can be 1024 */
2160 mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */
2161 mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2162 mmc->max_seg_size = mmc->max_req_size;
2163
Jarkko Lavinen13189e72009-09-22 16:44:53 -07002164 mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
Adrian Hunter93caf8e692010-08-11 14:17:48 -07002165 MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002166
Andreas Fenkart326119c2014-11-08 15:33:14 +01002167 mmc->caps |= mmc_pdata(host)->caps;
Sukumar Ghorai3a638332010-09-15 14:49:23 +00002168 if (mmc->caps & MMC_CAP_8_BIT_DATA)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002169 mmc->caps |= MMC_CAP_4_BIT_DATA;
2170
Andreas Fenkart326119c2014-11-08 15:33:14 +01002171 if (mmc_pdata(host)->nonremovable)
Adrian Hunter23d99bb2009-09-22 16:44:48 -07002172 mmc->caps |= MMC_CAP_NONREMOVABLE;
2173
Andreas Fenkart326119c2014-11-08 15:33:14 +01002174 mmc->pm_caps = mmc_pdata(host)->pm_caps;
Eliad Peller6fdc75d2011-11-22 16:02:18 +02002175
Denis Karpov70a33412009-09-22 16:44:59 -07002176 omap_hsmmc_conf_bus_power(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002177
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302178 if (!pdev->dev.of_node) {
2179 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx");
2180 if (!res) {
2181 dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n");
2182 ret = -ENXIO;
2183 goto err_irq;
2184 }
2185 tx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002186
Santosh Shilimkar4a29b552013-05-10 17:42:35 +05302187 res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx");
2188 if (!res) {
2189 dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n");
2190 ret = -ENXIO;
2191 goto err_irq;
2192 }
2193 rx_req = res->start;
Balaji T Kb7bf7732012-03-07 09:55:30 -05002194 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002195
Russell King26b88522012-04-13 12:27:37 +01002196 dma_cap_zero(mask);
2197 dma_cap_set(DMA_SLAVE, mask);
Russell Kingc5c98922012-04-13 12:14:39 +01002198
Matt Porterd272fbf2013-05-10 17:42:34 +05302199 host->rx_chan =
2200 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2201 &rx_req, &pdev->dev, "rx");
2202
Russell King26b88522012-04-13 12:27:37 +01002203 if (!host->rx_chan) {
2204 dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002205 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002206 goto err_irq;
2207 }
2208
Matt Porterd272fbf2013-05-10 17:42:34 +05302209 host->tx_chan =
2210 dma_request_slave_channel_compat(mask, omap_dma_filter_fn,
2211 &tx_req, &pdev->dev, "tx");
2212
Russell King26b88522012-04-13 12:27:37 +01002213 if (!host->tx_chan) {
2214 dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req);
Kevin Hilman04e8c7b2012-07-11 17:51:40 +01002215 ret = -ENXIO;
Russell King26b88522012-04-13 12:27:37 +01002216 goto err_irq;
Russell Kingc5c98922012-04-13 12:14:39 +01002217 }
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002218
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002219 /* Request IRQ for MMC operations */
Balaji T Ke1538ed2014-05-09 22:16:49 +05302220 ret = devm_request_irq(&pdev->dev, host->irq, omap_hsmmc_irq, 0,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002221 mmc_hostname(mmc), host);
2222 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302223 dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002224 goto err_irq;
2225 }
2226
Andreas Fenkart326119c2014-11-08 15:33:14 +01002227 if (omap_hsmmc_have_reg() && !mmc_pdata(host)->set_power) {
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002228 ret = omap_hsmmc_reg_get(host);
2229 if (ret)
Andreas Fenkartbb09d152014-11-08 15:33:11 +01002230 goto err_irq;
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002231 host->use_reg = 1;
2232 }
2233
Andreas Fenkart326119c2014-11-08 15:33:14 +01002234 mmc->ocr_avail = mmc_pdata(host)->ocr_mask;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002235
2236 /* Request IRQ for card detect */
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01002237 if (host->card_detect_irq) {
Balaji T K9fa0e052014-05-09 22:16:50 +05302238 ret = devm_request_threaded_irq(&pdev->dev,
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01002239 host->card_detect_irq,
Balaji T K9fa0e052014-05-09 22:16:50 +05302240 NULL, omap_hsmmc_detect,
Ming Leidb35f832012-05-17 10:27:12 +08002241 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
NeilBrown7efab4f2011-12-30 12:35:13 +11002242 mmc_hostname(mmc), host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002243 if (ret) {
Venkatraman Sb1e056a2012-11-19 22:00:00 +05302244 dev_err(mmc_dev(host->mmc),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002245 "Unable to grab MMC CD IRQ\n");
2246 goto err_irq_cd;
2247 }
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01002248 host->suspend = omap_hsmmc_suspend_cdirq;
2249 host->resume = omap_hsmmc_resume_cdirq;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002250 }
2251
Adrian Hunterb4175772010-05-26 14:42:06 -07002252 omap_hsmmc_disable_irq(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002253
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002254 /*
2255 * For now, only support SDIO interrupt if we have a separate
2256 * wake-up interrupt configured from device tree. This is because
2257 * the wake-up interrupt is needed for idle state and some
2258 * platforms need special quirks. And we don't want to add new
2259 * legacy mux platform init code callbacks any longer as we
2260 * are moving to DT based booting anyways.
2261 */
2262 ret = omap_hsmmc_configure_wake_irq(host);
2263 if (!ret)
2264 mmc->caps |= MMC_CAP_SDIO_IRQ;
2265
Adrian Hunterb62f6222009-09-22 16:45:01 -07002266 omap_hsmmc_protect_card(host);
2267
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002268 mmc_add_host(mmc);
2269
Andreas Fenkart326119c2014-11-08 15:33:14 +01002270 if (mmc_pdata(host)->name != NULL) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002271 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2272 if (ret < 0)
2273 goto err_slot_name;
2274 }
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01002275 if (host->card_detect_irq && host->get_cover_state) {
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002276 ret = device_create_file(&mmc->class_dev,
2277 &dev_attr_cover_switch);
2278 if (ret < 0)
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002279 goto err_slot_name;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002280 }
2281
Denis Karpov70a33412009-09-22 16:44:59 -07002282 omap_hsmmc_debugfs(mmc);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302283 pm_runtime_mark_last_busy(host->dev);
2284 pm_runtime_put_autosuspend(host->dev);
Denis Karpovd900f712009-09-22 16:44:38 -07002285
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002286 return 0;
2287
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002288err_slot_name:
2289 mmc_remove_host(mmc);
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002290err_irq_cd:
2291 if (host->use_reg)
2292 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002293err_irq:
Russell Kingc5c98922012-04-13 12:14:39 +01002294 if (host->tx_chan)
2295 dma_release_channel(host->tx_chan);
2296 if (host->rx_chan)
2297 dma_release_channel(host->rx_chan);
Balaji T Kd59d77e2012-02-24 21:14:33 +05302298 pm_runtime_put_sync(host->dev);
Tony Lindgren37f61902012-03-08 23:41:35 -05002299 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302300 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302301 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002302err1:
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002303 omap_hsmmc_gpio_free(host, pdata);
2304err_gpio:
Adrian Hunterdb0fefc2010-02-15 10:03:34 -08002305 mmc_free_host(mmc);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002306err:
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002307 return ret;
2308}
2309
Bill Pemberton6e0ee712012-11-19 13:26:03 -05002310static int omap_hsmmc_remove(struct platform_device *pdev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002311{
Denis Karpov70a33412009-09-22 16:44:59 -07002312 struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002313
Felipe Balbi927ce942012-03-14 11:18:27 +02002314 pm_runtime_get_sync(host->dev);
2315 mmc_remove_host(host->mmc);
2316 if (host->use_reg)
2317 omap_hsmmc_reg_put(host);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002318
Russell Kingc5c98922012-04-13 12:14:39 +01002319 if (host->tx_chan)
2320 dma_release_channel(host->tx_chan);
2321 if (host->rx_chan)
2322 dma_release_channel(host->rx_chan);
2323
Felipe Balbi927ce942012-03-14 11:18:27 +02002324 pm_runtime_put_sync(host->dev);
2325 pm_runtime_disable(host->dev);
Balaji T K96181952014-05-09 22:16:48 +05302326 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302327 clk_disable_unprepare(host->dbclk);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002328
Andreas Fenkart1e363e32014-11-08 15:33:15 +01002329 omap_hsmmc_gpio_free(host, host->pdata);
Balaji T K9d1f0282012-10-15 21:35:07 +05302330 mmc_free_host(host->mmc);
Felipe Balbi927ce942012-03-14 11:18:27 +02002331
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002332 return 0;
2333}
2334
2335#ifdef CONFIG_PM
Felipe Balbia48ce882012-11-19 21:59:59 +05302336static int omap_hsmmc_prepare(struct device *dev)
2337{
2338 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2339
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01002340 if (host->suspend)
2341 return host->suspend(dev, host->slot_id);
Felipe Balbia48ce882012-11-19 21:59:59 +05302342
2343 return 0;
2344}
2345
2346static void omap_hsmmc_complete(struct device *dev)
2347{
2348 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2349
Andreas Fenkartb5cd43f2014-11-08 15:33:16 +01002350 if (host->resume)
2351 host->resume(dev, host->slot_id);
Felipe Balbia48ce882012-11-19 21:59:59 +05302352
2353}
2354
Kevin Hilmana791daa2010-05-26 14:42:07 -07002355static int omap_hsmmc_suspend(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002356{
Felipe Balbi927ce942012-03-14 11:18:27 +02002357 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2358
2359 if (!host)
2360 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002361
Felipe Balbi927ce942012-03-14 11:18:27 +02002362 pm_runtime_get_sync(host->dev);
Felipe Balbi927ce942012-03-14 11:18:27 +02002363
2364 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) {
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002365 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2366 OMAP_HSMMC_WRITE(host->base, IE, 0);
2367 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
Felipe Balbi927ce942012-03-14 11:18:27 +02002368 OMAP_HSMMC_WRITE(host->base, HCTL,
2369 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2370 }
2371
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002372 /* do not wake up due to sdio irq */
2373 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2374 !(host->mmc->pm_flags & MMC_PM_WAKE_SDIO_IRQ))
2375 disable_irq(host->wake_irq);
2376
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302377 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302378 clk_disable_unprepare(host->dbclk);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002379
Eliad Peller31f9d462011-11-22 16:02:17 +02002380 pm_runtime_put_sync(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002381 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002382}
2383
2384/* Routine to resume the MMC device */
Kevin Hilmana791daa2010-05-26 14:42:07 -07002385static int omap_hsmmc_resume(struct device *dev)
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002386{
Felipe Balbi927ce942012-03-14 11:18:27 +02002387 struct omap_hsmmc_host *host = dev_get_drvdata(dev);
2388
2389 if (!host)
2390 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002391
Felipe Balbi927ce942012-03-14 11:18:27 +02002392 pm_runtime_get_sync(host->dev);
Denis Karpov11dd62a2009-09-22 16:44:43 -07002393
Rajendra Nayakcd03d9a2012-04-09 12:08:35 +05302394 if (host->dbclk)
Rajendra Nayak94c18142012-06-27 14:19:54 +05302395 clk_prepare_enable(host->dbclk);
Adrian Hunter2bec0892009-09-22 16:45:02 -07002396
Felipe Balbi927ce942012-03-14 11:18:27 +02002397 if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER))
2398 omap_hsmmc_conf_bus_power(host);
Kim Kyuwon1b331e62009-02-20 13:10:08 +01002399
Felipe Balbi927ce942012-03-14 11:18:27 +02002400 omap_hsmmc_protect_card(host);
2401
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002402 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2403 !(host->mmc->pm_flags & MMC_PM_WAKE_SDIO_IRQ))
2404 enable_irq(host->wake_irq);
2405
Felipe Balbi927ce942012-03-14 11:18:27 +02002406 pm_runtime_mark_last_busy(host->dev);
2407 pm_runtime_put_autosuspend(host->dev);
Ulf Hansson3932afd2013-09-25 14:47:06 +02002408 return 0;
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002409}
2410
2411#else
Felipe Balbia48ce882012-11-19 21:59:59 +05302412#define omap_hsmmc_prepare NULL
2413#define omap_hsmmc_complete NULL
Denis Karpov70a33412009-09-22 16:44:59 -07002414#define omap_hsmmc_suspend NULL
Felipe Balbia48ce882012-11-19 21:59:59 +05302415#define omap_hsmmc_resume NULL
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002416#endif
2417
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302418static int omap_hsmmc_runtime_suspend(struct device *dev)
2419{
2420 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002421 unsigned long flags;
Andreas Fenkartf9459012014-05-29 10:28:03 +02002422 int ret = 0;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302423
2424 host = platform_get_drvdata(to_platform_device(dev));
2425 omap_hsmmc_context_save(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002426 dev_dbg(dev, "disabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302427
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002428 spin_lock_irqsave(&host->irq_lock, flags);
2429 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2430 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2431 /* disable sdio irq handling to prevent race */
2432 OMAP_HSMMC_WRITE(host->base, ISE, 0);
2433 OMAP_HSMMC_WRITE(host->base, IE, 0);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002434
2435 if (!(OMAP_HSMMC_READ(host->base, PSTATE) & DLEV_DAT(1))) {
2436 /*
2437 * dat1 line low, pending sdio irq
2438 * race condition: possible irq handler running on
2439 * multi-core, abort
2440 */
2441 dev_dbg(dev, "pending sdio irq, abort suspend\n");
2442 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2443 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2444 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
2445 pm_runtime_mark_last_busy(dev);
2446 ret = -EBUSY;
2447 goto abort;
2448 }
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002449
Andreas Fenkart97978a42014-05-29 10:28:04 +02002450 pinctrl_pm_select_idle_state(dev);
2451
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002452 WARN_ON(host->flags & HSMMC_WAKE_IRQ_ENABLED);
2453 enable_irq(host->wake_irq);
2454 host->flags |= HSMMC_WAKE_IRQ_ENABLED;
Andreas Fenkart97978a42014-05-29 10:28:04 +02002455 } else {
2456 pinctrl_pm_select_idle_state(dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002457 }
Andreas Fenkart97978a42014-05-29 10:28:04 +02002458
Andreas Fenkartf9459012014-05-29 10:28:03 +02002459abort:
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002460 spin_unlock_irqrestore(&host->irq_lock, flags);
Andreas Fenkartf9459012014-05-29 10:28:03 +02002461 return ret;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302462}
2463
2464static int omap_hsmmc_runtime_resume(struct device *dev)
2465{
2466 struct omap_hsmmc_host *host;
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002467 unsigned long flags;
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302468
2469 host = platform_get_drvdata(to_platform_device(dev));
2470 omap_hsmmc_context_restore(host);
Felipe Balbi927ce942012-03-14 11:18:27 +02002471 dev_dbg(dev, "enabled\n");
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302472
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002473 spin_lock_irqsave(&host->irq_lock, flags);
2474 if ((host->mmc->caps & MMC_CAP_SDIO_IRQ) &&
2475 (host->flags & HSMMC_SDIO_IRQ_ENABLED)) {
2476 /* sdio irq flag can't change while in runtime suspend */
2477 if (host->flags & HSMMC_WAKE_IRQ_ENABLED) {
2478 disable_irq_nosync(host->wake_irq);
2479 host->flags &= ~HSMMC_WAKE_IRQ_ENABLED;
2480 }
2481
Andreas Fenkart97978a42014-05-29 10:28:04 +02002482 pinctrl_pm_select_default_state(host->dev);
2483
2484 /* irq lost, if pinmux incorrect */
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002485 OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
2486 OMAP_HSMMC_WRITE(host->base, ISE, CIRQ_EN);
2487 OMAP_HSMMC_WRITE(host->base, IE, CIRQ_EN);
Andreas Fenkart97978a42014-05-29 10:28:04 +02002488 } else {
2489 pinctrl_pm_select_default_state(host->dev);
Andreas Fenkart2cd3a2a2014-05-29 10:28:00 +02002490 }
2491 spin_unlock_irqrestore(&host->irq_lock, flags);
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302492 return 0;
2493}
2494
Kevin Hilmana791daa2010-05-26 14:42:07 -07002495static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
Denis Karpov70a33412009-09-22 16:44:59 -07002496 .suspend = omap_hsmmc_suspend,
2497 .resume = omap_hsmmc_resume,
Felipe Balbia48ce882012-11-19 21:59:59 +05302498 .prepare = omap_hsmmc_prepare,
2499 .complete = omap_hsmmc_complete,
Balaji T Kfa4aa2d2011-07-01 22:09:35 +05302500 .runtime_suspend = omap_hsmmc_runtime_suspend,
2501 .runtime_resume = omap_hsmmc_runtime_resume,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002502};
2503
2504static struct platform_driver omap_hsmmc_driver = {
Felipe Balbiefa25fd2012-03-14 11:18:28 +02002505 .probe = omap_hsmmc_probe,
Bill Pemberton0433c142012-11-19 13:20:26 -05002506 .remove = omap_hsmmc_remove,
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002507 .driver = {
2508 .name = DRIVER_NAME,
Kevin Hilmana791daa2010-05-26 14:42:07 -07002509 .pm = &omap_hsmmc_dev_pm_ops,
Rajendra Nayak46856a62012-03-12 20:32:37 +05302510 .of_match_table = of_match_ptr(omap_mmc_of_match),
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002511 },
2512};
2513
Felipe Balbib7964502012-03-14 11:18:32 +02002514module_platform_driver(omap_hsmmc_driver);
Madhusudhan Chikkaturea45c6cb2009-01-23 01:05:23 +01002515MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2516MODULE_LICENSE("GPL");
2517MODULE_ALIAS("platform:" DRIVER_NAME);
2518MODULE_AUTHOR("Texas Instruments Inc");