Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1 | /* |
| 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 Shevchenko | ac330f44 | 2011-05-10 15:51:54 +0300 | [diff] [blame] | 20 | #include <linux/kernel.h> |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 21 | #include <linux/debugfs.h> |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 22 | #include <linux/dmaengine.h> |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 23 | #include <linux/seq_file.h> |
Felipe Balbi | 031cd03 | 2013-07-11 16:09:05 +0300 | [diff] [blame] | 24 | #include <linux/sizes.h> |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 25 | #include <linux/interrupt.h> |
| 26 | #include <linux/delay.h> |
| 27 | #include <linux/dma-mapping.h> |
| 28 | #include <linux/platform_device.h> |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 29 | #include <linux/timer.h> |
| 30 | #include <linux/clk.h> |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 31 | #include <linux/of.h> |
| 32 | #include <linux/of_gpio.h> |
| 33 | #include <linux/of_device.h> |
Russell King | 3451c06 | 2012-04-21 22:35:42 +0100 | [diff] [blame] | 34 | #include <linux/omap-dma.h> |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 35 | #include <linux/mmc/host.h> |
Jarkko Lavinen | 13189e7 | 2009-09-22 16:44:53 -0700 | [diff] [blame] | 36 | #include <linux/mmc/core.h> |
Adrian Hunter | 93caf8e69 | 2010-08-11 14:17:48 -0700 | [diff] [blame] | 37 | #include <linux/mmc/mmc.h> |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 38 | #include <linux/io.h> |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 39 | #include <linux/gpio.h> |
| 40 | #include <linux/regulator/consumer.h> |
Daniel Mack | 46b7603 | 2012-10-15 21:35:05 +0530 | [diff] [blame] | 41 | #include <linux/pinctrl/consumer.h> |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 42 | #include <linux/pm_runtime.h> |
Tony Lindgren | 68f39e7 | 2012-10-15 12:09:43 -0700 | [diff] [blame] | 43 | #include <linux/platform_data/mmc-omap.h> |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 44 | |
| 45 | /* OMAP HSMMC Host Controller Registers */ |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 46 | #define OMAP_HSMMC_SYSSTATUS 0x0014 |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 47 | #define OMAP_HSMMC_CON 0x002C |
| 48 | #define OMAP_HSMMC_BLK 0x0104 |
| 49 | #define OMAP_HSMMC_ARG 0x0108 |
| 50 | #define OMAP_HSMMC_CMD 0x010C |
| 51 | #define OMAP_HSMMC_RSP10 0x0110 |
| 52 | #define OMAP_HSMMC_RSP32 0x0114 |
| 53 | #define OMAP_HSMMC_RSP54 0x0118 |
| 54 | #define OMAP_HSMMC_RSP76 0x011C |
| 55 | #define OMAP_HSMMC_DATA 0x0120 |
| 56 | #define OMAP_HSMMC_HCTL 0x0128 |
| 57 | #define OMAP_HSMMC_SYSCTL 0x012C |
| 58 | #define OMAP_HSMMC_STAT 0x0130 |
| 59 | #define OMAP_HSMMC_IE 0x0134 |
| 60 | #define OMAP_HSMMC_ISE 0x0138 |
| 61 | #define OMAP_HSMMC_CAPA 0x0140 |
| 62 | |
| 63 | #define VS18 (1 << 26) |
| 64 | #define VS30 (1 << 25) |
Hebbar, Gururaja | cd58709 | 2012-11-19 21:59:58 +0530 | [diff] [blame] | 65 | #define HSS (1 << 21) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 66 | #define SDVS18 (0x5 << 9) |
| 67 | #define SDVS30 (0x6 << 9) |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 68 | #define SDVS33 (0x7 << 9) |
Kim Kyuwon | 1b331e6 | 2009-02-20 13:10:08 +0100 | [diff] [blame] | 69 | #define SDVS_MASK 0x00000E00 |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 70 | #define SDVSCLR 0xFFFFF1FF |
| 71 | #define SDVSDET 0x00000400 |
| 72 | #define AUTOIDLE 0x1 |
| 73 | #define SDBP (1 << 8) |
| 74 | #define DTO 0xe |
| 75 | #define ICE 0x1 |
| 76 | #define ICS 0x2 |
| 77 | #define CEN (1 << 2) |
| 78 | #define CLKD_MASK 0x0000FFC0 |
| 79 | #define CLKD_SHIFT 6 |
| 80 | #define DTO_MASK 0x000F0000 |
| 81 | #define DTO_SHIFT 16 |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 82 | #define INIT_STREAM (1 << 1) |
| 83 | #define DP_SELECT (1 << 21) |
| 84 | #define DDIR (1 << 4) |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 85 | #define DMAE 0x1 |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 86 | #define MSBS (1 << 5) |
| 87 | #define BCE (1 << 1) |
| 88 | #define FOUR_BIT (1 << 1) |
Hebbar, Gururaja | cd58709 | 2012-11-19 21:59:58 +0530 | [diff] [blame] | 89 | #define HSPE (1 << 2) |
Balaji T K | 03b5d924 | 2012-04-09 12:08:33 +0530 | [diff] [blame] | 90 | #define DDR (1 << 19) |
Jarkko Lavinen | 7315301 | 2008-11-21 16:49:54 +0200 | [diff] [blame] | 91 | #define DW8 (1 << 5) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 92 | #define OD 0x1 |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 93 | #define STAT_CLEAR 0xFFFFFFFF |
| 94 | #define INIT_STREAM_CMD 0x00000000 |
| 95 | #define DUAL_VOLT_OCR_BIT 7 |
| 96 | #define SRC (1 << 25) |
| 97 | #define SRD (1 << 26) |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 98 | #define SOFTRESET (1 << 1) |
| 99 | #define RESETDONE (1 << 0) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 100 | |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 101 | /* Interrupt masks for IE and ISE register */ |
| 102 | #define CC_EN (1 << 0) |
| 103 | #define TC_EN (1 << 1) |
| 104 | #define BWR_EN (1 << 4) |
| 105 | #define BRR_EN (1 << 5) |
| 106 | #define ERR_EN (1 << 15) |
| 107 | #define CTO_EN (1 << 16) |
| 108 | #define CCRC_EN (1 << 17) |
| 109 | #define CEB_EN (1 << 18) |
| 110 | #define CIE_EN (1 << 19) |
| 111 | #define DTO_EN (1 << 20) |
| 112 | #define DCRC_EN (1 << 21) |
| 113 | #define DEB_EN (1 << 22) |
| 114 | #define CERR_EN (1 << 28) |
| 115 | #define BADA_EN (1 << 29) |
| 116 | |
| 117 | #define INT_EN_MASK (BADA_EN | CERR_EN | DEB_EN | DCRC_EN |\ |
| 118 | DTO_EN | CIE_EN | CEB_EN | CCRC_EN | CTO_EN | \ |
| 119 | BRR_EN | BWR_EN | TC_EN | CC_EN) |
| 120 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 121 | #define MMC_AUTOSUSPEND_DELAY 100 |
Jianpeng Ma | 1e88178 | 2013-10-21 00:25:20 +0530 | [diff] [blame^] | 122 | #define MMC_TIMEOUT_MS 20 /* 20 mSec */ |
| 123 | #define MMC_TIMEOUT_US 20000 /* 20000 micro Sec */ |
Andy Shevchenko | 6b206ef | 2011-07-13 11:16:29 -0400 | [diff] [blame] | 124 | #define OMAP_MMC_MIN_CLOCK 400000 |
| 125 | #define OMAP_MMC_MAX_CLOCK 52000000 |
Kishore Kadiyala | 0005ae7 | 2011-02-28 20:48:05 +0530 | [diff] [blame] | 126 | #define DRIVER_NAME "omap_hsmmc" |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 127 | |
| 128 | /* |
| 129 | * One controller can have multiple slots, like on some omap boards using |
| 130 | * omap.c controller driver. Luckily this is not currently done on any known |
| 131 | * omap_hsmmc.c device. |
| 132 | */ |
| 133 | #define mmc_slot(host) (host->pdata->slots[host->slot_id]) |
| 134 | |
| 135 | /* |
| 136 | * MMC Host controller read/write API's |
| 137 | */ |
| 138 | #define OMAP_HSMMC_READ(base, reg) \ |
| 139 | __raw_readl((base) + OMAP_HSMMC_##reg) |
| 140 | |
| 141 | #define OMAP_HSMMC_WRITE(base, reg, val) \ |
| 142 | __raw_writel((val), (base) + OMAP_HSMMC_##reg) |
| 143 | |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 144 | struct omap_hsmmc_next { |
| 145 | unsigned int dma_len; |
| 146 | s32 cookie; |
| 147 | }; |
| 148 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 149 | struct omap_hsmmc_host { |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 150 | struct device *dev; |
| 151 | struct mmc_host *mmc; |
| 152 | struct mmc_request *mrq; |
| 153 | struct mmc_command *cmd; |
| 154 | struct mmc_data *data; |
| 155 | struct clk *fclk; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 156 | struct clk *dbclk; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 157 | /* |
| 158 | * vcc == configured supply |
| 159 | * vcc_aux == optional |
| 160 | * - MMC1, supply for DAT4..DAT7 |
| 161 | * - MMC2/MMC2, external level shifter voltage supply, for |
| 162 | * chip (SDIO, eMMC, etc) or transceiver (MMC2 only) |
| 163 | */ |
| 164 | struct regulator *vcc; |
| 165 | struct regulator *vcc_aux; |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 166 | int pbias_disable; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 167 | void __iomem *base; |
| 168 | resource_size_t mapbase; |
Adrian Hunter | 4dffd7a | 2009-09-22 16:44:58 -0700 | [diff] [blame] | 169 | spinlock_t irq_lock; /* Prevent races with irq handler */ |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 170 | unsigned int dma_len; |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 171 | unsigned int dma_sg_idx; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 172 | unsigned char bus_mode; |
Adrian Hunter | a362146 | 2009-09-22 16:44:42 -0700 | [diff] [blame] | 173 | unsigned char power_mode; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 174 | int suspended; |
Tony Lindgren | 0a82e06 | 2013-10-21 00:25:19 +0530 | [diff] [blame] | 175 | u32 con; |
| 176 | u32 hctl; |
| 177 | u32 sysctl; |
| 178 | u32 capa; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 179 | int irq; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 180 | int use_dma, dma_ch; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 181 | struct dma_chan *tx_chan; |
| 182 | struct dma_chan *rx_chan; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 183 | int slot_id; |
Adrian Hunter | 4a694dc | 2009-01-12 16:13:08 +0200 | [diff] [blame] | 184 | int response_busy; |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 185 | int context_loss; |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 186 | int protect_card; |
| 187 | int reqs_blocked; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 188 | int use_reg; |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 189 | int req_in_progress; |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 190 | struct omap_hsmmc_next next_data; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 191 | struct omap_mmc_platform_data *pdata; |
| 192 | }; |
| 193 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 194 | static int omap_hsmmc_card_detect(struct device *dev, int slot) |
| 195 | { |
Balaji T K | 9ea28ec | 2012-10-15 21:35:08 +0530 | [diff] [blame] | 196 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 197 | struct omap_mmc_platform_data *mmc = host->pdata; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 198 | |
| 199 | /* NOTE: assumes card detect signal is active-low */ |
| 200 | return !gpio_get_value_cansleep(mmc->slots[0].switch_pin); |
| 201 | } |
| 202 | |
| 203 | static int omap_hsmmc_get_wp(struct device *dev, int slot) |
| 204 | { |
Balaji T K | 9ea28ec | 2012-10-15 21:35:08 +0530 | [diff] [blame] | 205 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 206 | struct omap_mmc_platform_data *mmc = host->pdata; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 207 | |
| 208 | /* NOTE: assumes write protect signal is active-high */ |
| 209 | return gpio_get_value_cansleep(mmc->slots[0].gpio_wp); |
| 210 | } |
| 211 | |
| 212 | static int omap_hsmmc_get_cover_state(struct device *dev, int slot) |
| 213 | { |
Balaji T K | 9ea28ec | 2012-10-15 21:35:08 +0530 | [diff] [blame] | 214 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 215 | struct omap_mmc_platform_data *mmc = host->pdata; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 216 | |
| 217 | /* NOTE: assumes card detect signal is active-low */ |
| 218 | return !gpio_get_value_cansleep(mmc->slots[0].switch_pin); |
| 219 | } |
| 220 | |
| 221 | #ifdef CONFIG_PM |
| 222 | |
| 223 | static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot) |
| 224 | { |
Balaji T K | 9ea28ec | 2012-10-15 21:35:08 +0530 | [diff] [blame] | 225 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 226 | struct omap_mmc_platform_data *mmc = host->pdata; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 227 | |
| 228 | disable_irq(mmc->slots[0].card_detect_irq); |
| 229 | return 0; |
| 230 | } |
| 231 | |
| 232 | static int omap_hsmmc_resume_cdirq(struct device *dev, int slot) |
| 233 | { |
Balaji T K | 9ea28ec | 2012-10-15 21:35:08 +0530 | [diff] [blame] | 234 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 235 | struct omap_mmc_platform_data *mmc = host->pdata; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 236 | |
| 237 | enable_irq(mmc->slots[0].card_detect_irq); |
| 238 | return 0; |
| 239 | } |
| 240 | |
| 241 | #else |
| 242 | |
| 243 | #define omap_hsmmc_suspend_cdirq NULL |
| 244 | #define omap_hsmmc_resume_cdirq NULL |
| 245 | |
| 246 | #endif |
| 247 | |
Adrian Hunter | b702b10 | 2010-02-15 10:03:35 -0800 | [diff] [blame] | 248 | #ifdef CONFIG_REGULATOR |
| 249 | |
Rajendra Nayak | 69b07ec | 2012-03-07 09:55:30 -0500 | [diff] [blame] | 250 | static int omap_hsmmc_set_power(struct device *dev, int slot, int power_on, |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 251 | int vdd) |
| 252 | { |
| 253 | struct omap_hsmmc_host *host = |
| 254 | platform_get_drvdata(to_platform_device(dev)); |
| 255 | int ret = 0; |
| 256 | |
| 257 | /* |
| 258 | * If we don't see a Vcc regulator, assume it's a fixed |
| 259 | * voltage always-on regulator. |
| 260 | */ |
| 261 | if (!host->vcc) |
| 262 | return 0; |
Rajendra Nayak | 1f84b71 | 2012-03-12 20:32:38 +0530 | [diff] [blame] | 263 | /* |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 264 | * With DT, never turn OFF the regulator for MMC1. This is because |
Rajendra Nayak | 1f84b71 | 2012-03-12 20:32:38 +0530 | [diff] [blame] | 265 | * the pbias cell programming support is still missing when |
| 266 | * booting with Device tree |
| 267 | */ |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 268 | if (host->pbias_disable && !vdd) |
Rajendra Nayak | 1f84b71 | 2012-03-12 20:32:38 +0530 | [diff] [blame] | 269 | return 0; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 270 | |
| 271 | if (mmc_slot(host).before_set_reg) |
| 272 | mmc_slot(host).before_set_reg(dev, slot, power_on, vdd); |
| 273 | |
| 274 | /* |
| 275 | * Assume Vcc regulator is used only to power the card ... OMAP |
| 276 | * VDDS is used to power the pins, optionally with a transceiver to |
| 277 | * support cards using voltages other than VDDS (1.8V nominal). When a |
| 278 | * transceiver is used, DAT3..7 are muxed as transceiver control pins. |
| 279 | * |
| 280 | * In some cases this regulator won't support enable/disable; |
| 281 | * e.g. it's a fixed rail for a WLAN chip. |
| 282 | * |
| 283 | * In other cases vcc_aux switches interface power. Example, for |
| 284 | * eMMC cards it represents VccQ. Sometimes transceivers or SDIO |
| 285 | * chips/cards need an interface voltage rail too. |
| 286 | */ |
| 287 | if (power_on) { |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 288 | ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 289 | /* Enable interface voltage rail, if needed */ |
| 290 | if (ret == 0 && host->vcc_aux) { |
| 291 | ret = regulator_enable(host->vcc_aux); |
| 292 | if (ret < 0) |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 293 | ret = mmc_regulator_set_ocr(host->mmc, |
| 294 | host->vcc, 0); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 295 | } |
| 296 | } else { |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 297 | /* Shut down the rail */ |
Adrian Hunter | 6da20c8 | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 298 | if (host->vcc_aux) |
| 299 | ret = regulator_disable(host->vcc_aux); |
Linus Walleij | 99fc513 | 2010-09-29 01:08:27 -0400 | [diff] [blame] | 300 | if (!ret) { |
| 301 | /* Then proceed to shut down the local regulator */ |
| 302 | ret = mmc_regulator_set_ocr(host->mmc, |
| 303 | host->vcc, 0); |
| 304 | } |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | if (mmc_slot(host).after_set_reg) |
| 308 | mmc_slot(host).after_set_reg(dev, slot, power_on, vdd); |
| 309 | |
| 310 | return ret; |
| 311 | } |
| 312 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 313 | static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host) |
| 314 | { |
| 315 | struct regulator *reg; |
kishore kadiyala | 64be978 | 2010-10-01 16:35:28 -0700 | [diff] [blame] | 316 | int ocr_value = 0; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 317 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 318 | reg = regulator_get(host->dev, "vmmc"); |
| 319 | if (IS_ERR(reg)) { |
Venkatraman S | b1e056a | 2012-11-19 22:00:00 +0530 | [diff] [blame] | 320 | dev_err(host->dev, "vmmc regulator missing\n"); |
NeilBrown | 1fdc90f | 2012-08-08 00:06:00 -0400 | [diff] [blame] | 321 | return PTR_ERR(reg); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 322 | } else { |
NeilBrown | 1fdc90f | 2012-08-08 00:06:00 -0400 | [diff] [blame] | 323 | mmc_slot(host).set_power = omap_hsmmc_set_power; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 324 | host->vcc = reg; |
kishore kadiyala | 64be978 | 2010-10-01 16:35:28 -0700 | [diff] [blame] | 325 | ocr_value = mmc_regulator_get_ocrmask(reg); |
| 326 | if (!mmc_slot(host).ocr_mask) { |
| 327 | mmc_slot(host).ocr_mask = ocr_value; |
| 328 | } else { |
| 329 | if (!(mmc_slot(host).ocr_mask & ocr_value)) { |
Rajendra Nayak | 2cecdf0 | 2012-02-23 17:02:20 +0530 | [diff] [blame] | 330 | dev_err(host->dev, "ocrmask %x is not supported\n", |
Rajendra Nayak | e3f1adb | 2012-03-07 09:55:31 -0500 | [diff] [blame] | 331 | mmc_slot(host).ocr_mask); |
kishore kadiyala | 64be978 | 2010-10-01 16:35:28 -0700 | [diff] [blame] | 332 | mmc_slot(host).ocr_mask = 0; |
| 333 | return -EINVAL; |
| 334 | } |
| 335 | } |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 336 | |
| 337 | /* Allow an aux regulator */ |
| 338 | reg = regulator_get(host->dev, "vmmc_aux"); |
| 339 | host->vcc_aux = IS_ERR(reg) ? NULL : reg; |
| 340 | |
Balaji T K | b1c1df7 | 2011-05-30 19:55:34 +0530 | [diff] [blame] | 341 | /* For eMMC do not power off when not in sleep state */ |
| 342 | if (mmc_slot(host).no_regulator_off_init) |
| 343 | return 0; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 344 | /* |
| 345 | * UGLY HACK: workaround regulator framework bugs. |
| 346 | * When the bootloader leaves a supply active, it's |
| 347 | * initialized with zero usecount ... and we can't |
| 348 | * disable it without first enabling it. Until the |
| 349 | * framework is fixed, we need a workaround like this |
| 350 | * (which is safe for MMC, but not in general). |
| 351 | */ |
Adrian Hunter | e840ce1 | 2011-05-06 12:14:10 +0300 | [diff] [blame] | 352 | if (regulator_is_enabled(host->vcc) > 0 || |
| 353 | (host->vcc_aux && regulator_is_enabled(host->vcc_aux))) { |
| 354 | int vdd = ffs(mmc_slot(host).ocr_mask) - 1; |
| 355 | |
| 356 | mmc_slot(host).set_power(host->dev, host->slot_id, |
| 357 | 1, vdd); |
| 358 | mmc_slot(host).set_power(host->dev, host->slot_id, |
| 359 | 0, 0); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 360 | } |
| 361 | } |
| 362 | |
| 363 | return 0; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 364 | } |
| 365 | |
| 366 | static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host) |
| 367 | { |
| 368 | regulator_put(host->vcc); |
| 369 | regulator_put(host->vcc_aux); |
| 370 | mmc_slot(host).set_power = NULL; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 371 | } |
| 372 | |
Adrian Hunter | b702b10 | 2010-02-15 10:03:35 -0800 | [diff] [blame] | 373 | static inline int omap_hsmmc_have_reg(void) |
| 374 | { |
| 375 | return 1; |
| 376 | } |
| 377 | |
| 378 | #else |
| 379 | |
| 380 | static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host) |
| 381 | { |
| 382 | return -EINVAL; |
| 383 | } |
| 384 | |
| 385 | static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host) |
| 386 | { |
| 387 | } |
| 388 | |
| 389 | static inline int omap_hsmmc_have_reg(void) |
| 390 | { |
| 391 | return 0; |
| 392 | } |
| 393 | |
| 394 | #endif |
| 395 | |
| 396 | static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata) |
| 397 | { |
| 398 | int ret; |
| 399 | |
| 400 | if (gpio_is_valid(pdata->slots[0].switch_pin)) { |
Adrian Hunter | b702b10 | 2010-02-15 10:03:35 -0800 | [diff] [blame] | 401 | if (pdata->slots[0].cover) |
| 402 | pdata->slots[0].get_cover_state = |
| 403 | omap_hsmmc_get_cover_state; |
| 404 | else |
| 405 | pdata->slots[0].card_detect = omap_hsmmc_card_detect; |
| 406 | pdata->slots[0].card_detect_irq = |
| 407 | gpio_to_irq(pdata->slots[0].switch_pin); |
| 408 | ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd"); |
| 409 | if (ret) |
| 410 | return ret; |
| 411 | ret = gpio_direction_input(pdata->slots[0].switch_pin); |
| 412 | if (ret) |
| 413 | goto err_free_sp; |
| 414 | } else |
| 415 | pdata->slots[0].switch_pin = -EINVAL; |
| 416 | |
| 417 | if (gpio_is_valid(pdata->slots[0].gpio_wp)) { |
| 418 | pdata->slots[0].get_ro = omap_hsmmc_get_wp; |
| 419 | ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp"); |
| 420 | if (ret) |
| 421 | goto err_free_cd; |
| 422 | ret = gpio_direction_input(pdata->slots[0].gpio_wp); |
| 423 | if (ret) |
| 424 | goto err_free_wp; |
| 425 | } else |
| 426 | pdata->slots[0].gpio_wp = -EINVAL; |
| 427 | |
| 428 | return 0; |
| 429 | |
| 430 | err_free_wp: |
| 431 | gpio_free(pdata->slots[0].gpio_wp); |
| 432 | err_free_cd: |
| 433 | if (gpio_is_valid(pdata->slots[0].switch_pin)) |
| 434 | err_free_sp: |
| 435 | gpio_free(pdata->slots[0].switch_pin); |
| 436 | return ret; |
| 437 | } |
| 438 | |
| 439 | static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata) |
| 440 | { |
| 441 | if (gpio_is_valid(pdata->slots[0].gpio_wp)) |
| 442 | gpio_free(pdata->slots[0].gpio_wp); |
| 443 | if (gpio_is_valid(pdata->slots[0].switch_pin)) |
| 444 | gpio_free(pdata->slots[0].switch_pin); |
| 445 | } |
| 446 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 447 | /* |
Andy Shevchenko | e0c7f99 | 2011-05-06 12:14:05 +0300 | [diff] [blame] | 448 | * Start clock to the card |
| 449 | */ |
| 450 | static void omap_hsmmc_start_clock(struct omap_hsmmc_host *host) |
| 451 | { |
| 452 | OMAP_HSMMC_WRITE(host->base, SYSCTL, |
| 453 | OMAP_HSMMC_READ(host->base, SYSCTL) | CEN); |
| 454 | } |
| 455 | |
| 456 | /* |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 457 | * Stop clock to the card |
| 458 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 459 | static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 460 | { |
| 461 | OMAP_HSMMC_WRITE(host->base, SYSCTL, |
| 462 | OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN); |
| 463 | if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0) |
Masanari Iida | 7122bbb | 2012-08-05 23:25:40 +0900 | [diff] [blame] | 464 | dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stopped\n"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 465 | } |
| 466 | |
Adrian Hunter | 93caf8e69 | 2010-08-11 14:17:48 -0700 | [diff] [blame] | 467 | static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host, |
| 468 | struct mmc_command *cmd) |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 469 | { |
| 470 | unsigned int irq_mask; |
| 471 | |
| 472 | if (host->use_dma) |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 473 | irq_mask = INT_EN_MASK & ~(BRR_EN | BWR_EN); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 474 | else |
| 475 | irq_mask = INT_EN_MASK; |
| 476 | |
Adrian Hunter | 93caf8e69 | 2010-08-11 14:17:48 -0700 | [diff] [blame] | 477 | /* Disable timeout for erases */ |
| 478 | if (cmd->opcode == MMC_ERASE) |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 479 | irq_mask &= ~DTO_EN; |
Adrian Hunter | 93caf8e69 | 2010-08-11 14:17:48 -0700 | [diff] [blame] | 480 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 481 | OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR); |
| 482 | OMAP_HSMMC_WRITE(host->base, ISE, irq_mask); |
| 483 | OMAP_HSMMC_WRITE(host->base, IE, irq_mask); |
| 484 | } |
| 485 | |
| 486 | static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host) |
| 487 | { |
| 488 | OMAP_HSMMC_WRITE(host->base, ISE, 0); |
| 489 | OMAP_HSMMC_WRITE(host->base, IE, 0); |
| 490 | OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR); |
| 491 | } |
| 492 | |
Andy Shevchenko | ac330f44 | 2011-05-10 15:51:54 +0300 | [diff] [blame] | 493 | /* Calculate divisor for the given clock frequency */ |
Balaji TK | d83b6e0 | 2011-12-20 15:12:00 +0530 | [diff] [blame] | 494 | static u16 calc_divisor(struct omap_hsmmc_host *host, struct mmc_ios *ios) |
Andy Shevchenko | ac330f44 | 2011-05-10 15:51:54 +0300 | [diff] [blame] | 495 | { |
| 496 | u16 dsor = 0; |
| 497 | |
| 498 | if (ios->clock) { |
Balaji TK | d83b6e0 | 2011-12-20 15:12:00 +0530 | [diff] [blame] | 499 | dsor = DIV_ROUND_UP(clk_get_rate(host->fclk), ios->clock); |
Andy Shevchenko | ac330f44 | 2011-05-10 15:51:54 +0300 | [diff] [blame] | 500 | if (dsor > 250) |
| 501 | dsor = 250; |
| 502 | } |
| 503 | |
| 504 | return dsor; |
| 505 | } |
| 506 | |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 507 | static void omap_hsmmc_set_clock(struct omap_hsmmc_host *host) |
| 508 | { |
| 509 | struct mmc_ios *ios = &host->mmc->ios; |
| 510 | unsigned long regval; |
| 511 | unsigned long timeout; |
Hebbar, Gururaja | cd58709 | 2012-11-19 21:59:58 +0530 | [diff] [blame] | 512 | unsigned long clkdiv; |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 513 | |
Venkatraman S | 8986d31 | 2012-08-07 19:10:38 +0530 | [diff] [blame] | 514 | dev_vdbg(mmc_dev(host->mmc), "Set clock to %uHz\n", ios->clock); |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 515 | |
| 516 | omap_hsmmc_stop_clock(host); |
| 517 | |
| 518 | regval = OMAP_HSMMC_READ(host->base, SYSCTL); |
| 519 | regval = regval & ~(CLKD_MASK | DTO_MASK); |
Hebbar, Gururaja | cd58709 | 2012-11-19 21:59:58 +0530 | [diff] [blame] | 520 | clkdiv = calc_divisor(host, ios); |
| 521 | regval = regval | (clkdiv << 6) | (DTO << 16); |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 522 | OMAP_HSMMC_WRITE(host->base, SYSCTL, regval); |
| 523 | OMAP_HSMMC_WRITE(host->base, SYSCTL, |
| 524 | OMAP_HSMMC_READ(host->base, SYSCTL) | ICE); |
| 525 | |
| 526 | /* Wait till the ICS bit is set */ |
| 527 | timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS); |
| 528 | while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS |
| 529 | && time_before(jiffies, timeout)) |
| 530 | cpu_relax(); |
| 531 | |
Hebbar, Gururaja | cd58709 | 2012-11-19 21:59:58 +0530 | [diff] [blame] | 532 | /* |
| 533 | * Enable High-Speed Support |
| 534 | * Pre-Requisites |
| 535 | * - Controller should support High-Speed-Enable Bit |
| 536 | * - Controller should not be using DDR Mode |
| 537 | * - Controller should advertise that it supports High Speed |
| 538 | * in capabilities register |
| 539 | * - MMC/SD clock coming out of controller > 25MHz |
| 540 | */ |
| 541 | if ((mmc_slot(host).features & HSMMC_HAS_HSPE_SUPPORT) && |
| 542 | (ios->timing != MMC_TIMING_UHS_DDR50) && |
| 543 | ((OMAP_HSMMC_READ(host->base, CAPA) & HSS) == HSS)) { |
| 544 | regval = OMAP_HSMMC_READ(host->base, HCTL); |
| 545 | if (clkdiv && (clk_get_rate(host->fclk)/clkdiv) > 25000000) |
| 546 | regval |= HSPE; |
| 547 | else |
| 548 | regval &= ~HSPE; |
| 549 | |
| 550 | OMAP_HSMMC_WRITE(host->base, HCTL, regval); |
| 551 | } |
| 552 | |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 553 | omap_hsmmc_start_clock(host); |
| 554 | } |
| 555 | |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 556 | static void omap_hsmmc_set_bus_width(struct omap_hsmmc_host *host) |
| 557 | { |
| 558 | struct mmc_ios *ios = &host->mmc->ios; |
| 559 | u32 con; |
| 560 | |
| 561 | con = OMAP_HSMMC_READ(host->base, CON); |
Balaji T K | 03b5d924 | 2012-04-09 12:08:33 +0530 | [diff] [blame] | 562 | if (ios->timing == MMC_TIMING_UHS_DDR50) |
| 563 | con |= DDR; /* configure in DDR mode */ |
| 564 | else |
| 565 | con &= ~DDR; |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 566 | switch (ios->bus_width) { |
| 567 | case MMC_BUS_WIDTH_8: |
| 568 | OMAP_HSMMC_WRITE(host->base, CON, con | DW8); |
| 569 | break; |
| 570 | case MMC_BUS_WIDTH_4: |
| 571 | OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8); |
| 572 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 573 | OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT); |
| 574 | break; |
| 575 | case MMC_BUS_WIDTH_1: |
| 576 | OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8); |
| 577 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 578 | OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT); |
| 579 | break; |
| 580 | } |
| 581 | } |
| 582 | |
| 583 | static void omap_hsmmc_set_bus_mode(struct omap_hsmmc_host *host) |
| 584 | { |
| 585 | struct mmc_ios *ios = &host->mmc->ios; |
| 586 | u32 con; |
| 587 | |
| 588 | con = OMAP_HSMMC_READ(host->base, CON); |
| 589 | if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN) |
| 590 | OMAP_HSMMC_WRITE(host->base, CON, con | OD); |
| 591 | else |
| 592 | OMAP_HSMMC_WRITE(host->base, CON, con & ~OD); |
| 593 | } |
| 594 | |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 595 | #ifdef CONFIG_PM |
| 596 | |
| 597 | /* |
| 598 | * Restore the MMC host context, if it was lost as result of a |
| 599 | * power state change. |
| 600 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 601 | static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host) |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 602 | { |
| 603 | struct mmc_ios *ios = &host->mmc->ios; |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 604 | u32 hctl, capa; |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 605 | unsigned long timeout; |
| 606 | |
Venkatraman S | 6c31b21 | 2012-08-08 14:26:52 +0530 | [diff] [blame] | 607 | if (!OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) |
| 608 | return 1; |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 609 | |
Tony Lindgren | 0a82e06 | 2013-10-21 00:25:19 +0530 | [diff] [blame] | 610 | if (host->con == OMAP_HSMMC_READ(host->base, CON) && |
| 611 | host->hctl == OMAP_HSMMC_READ(host->base, HCTL) && |
| 612 | host->sysctl == OMAP_HSMMC_READ(host->base, SYSCTL) && |
| 613 | host->capa == OMAP_HSMMC_READ(host->base, CAPA)) |
| 614 | return 0; |
| 615 | |
| 616 | host->context_loss++; |
| 617 | |
Balaji T K | c2200ef | 2012-03-07 09:55:30 -0500 | [diff] [blame] | 618 | if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) { |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 619 | if (host->power_mode != MMC_POWER_OFF && |
| 620 | (1 << ios->vdd) <= MMC_VDD_23_24) |
| 621 | hctl = SDVS18; |
| 622 | else |
| 623 | hctl = SDVS30; |
| 624 | capa = VS30 | VS18; |
| 625 | } else { |
| 626 | hctl = SDVS18; |
| 627 | capa = VS18; |
| 628 | } |
| 629 | |
| 630 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 631 | OMAP_HSMMC_READ(host->base, HCTL) | hctl); |
| 632 | |
| 633 | OMAP_HSMMC_WRITE(host->base, CAPA, |
| 634 | OMAP_HSMMC_READ(host->base, CAPA) | capa); |
| 635 | |
| 636 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 637 | OMAP_HSMMC_READ(host->base, HCTL) | SDBP); |
| 638 | |
| 639 | timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS); |
| 640 | while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP |
| 641 | && time_before(jiffies, timeout)) |
| 642 | ; |
| 643 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 644 | omap_hsmmc_disable_irq(host); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 645 | |
| 646 | /* Do not initialize card-specific things if the power is off */ |
| 647 | if (host->power_mode == MMC_POWER_OFF) |
| 648 | goto out; |
| 649 | |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 650 | omap_hsmmc_set_bus_width(host); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 651 | |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 652 | omap_hsmmc_set_clock(host); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 653 | |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 654 | omap_hsmmc_set_bus_mode(host); |
| 655 | |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 656 | out: |
Tony Lindgren | 0a82e06 | 2013-10-21 00:25:19 +0530 | [diff] [blame] | 657 | dev_dbg(mmc_dev(host->mmc), "context is restored: restore count %d\n", |
| 658 | host->context_loss); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 659 | return 0; |
| 660 | } |
| 661 | |
| 662 | /* |
| 663 | * Save the MMC host context (store the number of power state changes so far). |
| 664 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 665 | static void omap_hsmmc_context_save(struct omap_hsmmc_host *host) |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 666 | { |
Tony Lindgren | 0a82e06 | 2013-10-21 00:25:19 +0530 | [diff] [blame] | 667 | host->con = OMAP_HSMMC_READ(host->base, CON); |
| 668 | host->hctl = OMAP_HSMMC_READ(host->base, HCTL); |
| 669 | host->sysctl = OMAP_HSMMC_READ(host->base, SYSCTL); |
| 670 | host->capa = OMAP_HSMMC_READ(host->base, CAPA); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 671 | } |
| 672 | |
| 673 | #else |
| 674 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 675 | static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host) |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 676 | { |
| 677 | return 0; |
| 678 | } |
| 679 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 680 | static void omap_hsmmc_context_save(struct omap_hsmmc_host *host) |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 681 | { |
| 682 | } |
| 683 | |
| 684 | #endif |
| 685 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 686 | /* |
| 687 | * Send init stream sequence to card |
| 688 | * before sending IDLE command |
| 689 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 690 | static void send_init_stream(struct omap_hsmmc_host *host) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 691 | { |
| 692 | int reg = 0; |
| 693 | unsigned long timeout; |
| 694 | |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 695 | if (host->protect_card) |
| 696 | return; |
| 697 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 698 | disable_irq(host->irq); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 699 | |
| 700 | OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 701 | OMAP_HSMMC_WRITE(host->base, CON, |
| 702 | OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM); |
| 703 | OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD); |
| 704 | |
| 705 | timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS); |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 706 | while ((reg != CC_EN) && time_before(jiffies, timeout)) |
| 707 | reg = OMAP_HSMMC_READ(host->base, STAT) & CC_EN; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 708 | |
| 709 | OMAP_HSMMC_WRITE(host->base, CON, |
| 710 | OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM); |
Adrian Hunter | c653a6d | 2009-09-22 16:44:56 -0700 | [diff] [blame] | 711 | |
| 712 | OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR); |
| 713 | OMAP_HSMMC_READ(host->base, STAT); |
| 714 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 715 | enable_irq(host->irq); |
| 716 | } |
| 717 | |
| 718 | static inline |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 719 | int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 720 | { |
| 721 | int r = 1; |
| 722 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 723 | if (mmc_slot(host).get_cover_state) |
| 724 | r = mmc_slot(host).get_cover_state(host->dev, host->slot_id); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 725 | return r; |
| 726 | } |
| 727 | |
| 728 | static ssize_t |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 729 | omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr, |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 730 | char *buf) |
| 731 | { |
| 732 | struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev); |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 733 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 734 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 735 | return sprintf(buf, "%s\n", |
| 736 | omap_hsmmc_cover_is_closed(host) ? "closed" : "open"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 737 | } |
| 738 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 739 | static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 740 | |
| 741 | static ssize_t |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 742 | omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr, |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 743 | char *buf) |
| 744 | { |
| 745 | struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev); |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 746 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 747 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 748 | return sprintf(buf, "%s\n", mmc_slot(host).name); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 749 | } |
| 750 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 751 | static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 752 | |
| 753 | /* |
| 754 | * Configure the response type and send the cmd. |
| 755 | */ |
| 756 | static void |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 757 | omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd, |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 758 | struct mmc_data *data) |
| 759 | { |
| 760 | int cmdreg = 0, resptype = 0, cmdtype = 0; |
| 761 | |
Venkatraman S | 8986d31 | 2012-08-07 19:10:38 +0530 | [diff] [blame] | 762 | dev_vdbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n", |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 763 | mmc_hostname(host->mmc), cmd->opcode, cmd->arg); |
| 764 | host->cmd = cmd; |
| 765 | |
Adrian Hunter | 93caf8e69 | 2010-08-11 14:17:48 -0700 | [diff] [blame] | 766 | omap_hsmmc_enable_irq(host, cmd); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 767 | |
Adrian Hunter | 4a694dc | 2009-01-12 16:13:08 +0200 | [diff] [blame] | 768 | host->response_busy = 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 769 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 770 | if (cmd->flags & MMC_RSP_136) |
| 771 | resptype = 1; |
Adrian Hunter | 4a694dc | 2009-01-12 16:13:08 +0200 | [diff] [blame] | 772 | else if (cmd->flags & MMC_RSP_BUSY) { |
| 773 | resptype = 3; |
| 774 | host->response_busy = 1; |
| 775 | } else |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 776 | resptype = 2; |
| 777 | } |
| 778 | |
| 779 | /* |
| 780 | * Unlike OMAP1 controller, the cmdtype does not seem to be based on |
| 781 | * ac, bc, adtc, bcr. Only commands ending an open ended transfer need |
| 782 | * a val of 0x3, rest 0x0. |
| 783 | */ |
| 784 | if (cmd == host->mrq->stop) |
| 785 | cmdtype = 0x3; |
| 786 | |
| 787 | cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22); |
| 788 | |
| 789 | if (data) { |
| 790 | cmdreg |= DP_SELECT | MSBS | BCE; |
| 791 | if (data->flags & MMC_DATA_READ) |
| 792 | cmdreg |= DDIR; |
| 793 | else |
| 794 | cmdreg &= ~(DDIR); |
| 795 | } |
| 796 | |
| 797 | if (host->use_dma) |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 798 | cmdreg |= DMAE; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 799 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 800 | host->req_in_progress = 1; |
Adrian Hunter | 4dffd7a | 2009-09-22 16:44:58 -0700 | [diff] [blame] | 801 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 802 | OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg); |
| 803 | OMAP_HSMMC_WRITE(host->base, CMD, cmdreg); |
| 804 | } |
| 805 | |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 806 | static int |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 807 | omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data) |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 808 | { |
| 809 | if (data->flags & MMC_DATA_WRITE) |
| 810 | return DMA_TO_DEVICE; |
| 811 | else |
| 812 | return DMA_FROM_DEVICE; |
| 813 | } |
| 814 | |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 815 | static struct dma_chan *omap_hsmmc_get_dma_chan(struct omap_hsmmc_host *host, |
| 816 | struct mmc_data *data) |
| 817 | { |
| 818 | return data->flags & MMC_DATA_WRITE ? host->tx_chan : host->rx_chan; |
| 819 | } |
| 820 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 821 | static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq) |
| 822 | { |
| 823 | int dma_ch; |
Venkatraman S | 31463b1 | 2012-04-09 12:08:34 +0530 | [diff] [blame] | 824 | unsigned long flags; |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 825 | |
Venkatraman S | 31463b1 | 2012-04-09 12:08:34 +0530 | [diff] [blame] | 826 | spin_lock_irqsave(&host->irq_lock, flags); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 827 | host->req_in_progress = 0; |
| 828 | dma_ch = host->dma_ch; |
Venkatraman S | 31463b1 | 2012-04-09 12:08:34 +0530 | [diff] [blame] | 829 | spin_unlock_irqrestore(&host->irq_lock, flags); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 830 | |
| 831 | omap_hsmmc_disable_irq(host); |
| 832 | /* Do not complete the request if DMA is still in progress */ |
| 833 | if (mrq->data && host->use_dma && dma_ch != -1) |
| 834 | return; |
| 835 | host->mrq = NULL; |
| 836 | mmc_request_done(host->mmc, mrq); |
| 837 | } |
| 838 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 839 | /* |
| 840 | * Notify the transfer complete to MMC core |
| 841 | */ |
| 842 | static void |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 843 | omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 844 | { |
Adrian Hunter | 4a694dc | 2009-01-12 16:13:08 +0200 | [diff] [blame] | 845 | if (!data) { |
| 846 | struct mmc_request *mrq = host->mrq; |
| 847 | |
Adrian Hunter | 2305010 | 2009-09-22 16:44:57 -0700 | [diff] [blame] | 848 | /* TC before CC from CMD6 - don't know why, but it happens */ |
| 849 | if (host->cmd && host->cmd->opcode == 6 && |
| 850 | host->response_busy) { |
| 851 | host->response_busy = 0; |
| 852 | return; |
| 853 | } |
| 854 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 855 | omap_hsmmc_request_done(host, mrq); |
Adrian Hunter | 4a694dc | 2009-01-12 16:13:08 +0200 | [diff] [blame] | 856 | return; |
| 857 | } |
| 858 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 859 | host->data = NULL; |
| 860 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 861 | if (!data->error) |
| 862 | data->bytes_xfered += data->blocks * (data->blksz); |
| 863 | else |
| 864 | data->bytes_xfered = 0; |
| 865 | |
Ming Lei | fe85227 | 2012-06-22 18:49:35 +0800 | [diff] [blame] | 866 | if (!data->stop) { |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 867 | omap_hsmmc_request_done(host, data->mrq); |
Ming Lei | fe85227 | 2012-06-22 18:49:35 +0800 | [diff] [blame] | 868 | return; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 869 | } |
Ming Lei | fe85227 | 2012-06-22 18:49:35 +0800 | [diff] [blame] | 870 | omap_hsmmc_start_command(host, data->stop, NULL); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | /* |
| 874 | * Notify the core about command completion |
| 875 | */ |
| 876 | static void |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 877 | omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 878 | { |
| 879 | host->cmd = NULL; |
| 880 | |
| 881 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 882 | if (cmd->flags & MMC_RSP_136) { |
| 883 | /* response type 2 */ |
| 884 | cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10); |
| 885 | cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32); |
| 886 | cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54); |
| 887 | cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76); |
| 888 | } else { |
| 889 | /* response types 1, 1b, 3, 4, 5, 6 */ |
| 890 | cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10); |
| 891 | } |
| 892 | } |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 893 | if ((host->data == NULL && !host->response_busy) || cmd->error) |
| 894 | omap_hsmmc_request_done(host, cmd->mrq); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 895 | } |
| 896 | |
| 897 | /* |
| 898 | * DMA clean up for command errors |
| 899 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 900 | static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 901 | { |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 902 | int dma_ch; |
Venkatraman S | 31463b1 | 2012-04-09 12:08:34 +0530 | [diff] [blame] | 903 | unsigned long flags; |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 904 | |
Jarkko Lavinen | 82788ff | 2008-12-05 12:31:46 +0200 | [diff] [blame] | 905 | host->data->error = errno; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 906 | |
Venkatraman S | 31463b1 | 2012-04-09 12:08:34 +0530 | [diff] [blame] | 907 | spin_lock_irqsave(&host->irq_lock, flags); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 908 | dma_ch = host->dma_ch; |
| 909 | host->dma_ch = -1; |
Venkatraman S | 31463b1 | 2012-04-09 12:08:34 +0530 | [diff] [blame] | 910 | spin_unlock_irqrestore(&host->irq_lock, flags); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 911 | |
| 912 | if (host->use_dma && dma_ch != -1) { |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 913 | struct dma_chan *chan = omap_hsmmc_get_dma_chan(host, host->data); |
| 914 | |
| 915 | dmaengine_terminate_all(chan); |
| 916 | dma_unmap_sg(chan->device->dev, |
| 917 | host->data->sg, host->data->sg_len, |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 918 | omap_hsmmc_get_dma_dir(host, host->data)); |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 919 | |
Per Forlin | 053bf34 | 2011-11-07 21:55:11 +0530 | [diff] [blame] | 920 | host->data->host_cookie = 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 921 | } |
| 922 | host->data = NULL; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 923 | } |
| 924 | |
| 925 | /* |
| 926 | * Readable error output |
| 927 | */ |
| 928 | #ifdef CONFIG_MMC_DEBUG |
Adrian Hunter | 699b958 | 2011-05-06 12:14:01 +0300 | [diff] [blame] | 929 | static void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, u32 status) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 930 | { |
| 931 | /* --- means reserved bit without definition at documentation */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 932 | static const char *omap_hsmmc_status_bits[] = { |
Adrian Hunter | 699b958 | 2011-05-06 12:14:01 +0300 | [diff] [blame] | 933 | "CC" , "TC" , "BGE", "---", "BWR" , "BRR" , "---" , "---" , |
| 934 | "CIRQ", "OBI" , "---", "---", "---" , "---" , "---" , "ERRI", |
| 935 | "CTO" , "CCRC", "CEB", "CIE", "DTO" , "DCRC", "DEB" , "---" , |
| 936 | "ACE" , "---" , "---", "---", "CERR", "BADA", "---" , "---" |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 937 | }; |
| 938 | char res[256]; |
| 939 | char *buf = res; |
| 940 | int len, i; |
| 941 | |
| 942 | len = sprintf(buf, "MMC IRQ 0x%x :", status); |
| 943 | buf += len; |
| 944 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 945 | for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 946 | if (status & (1 << i)) { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 947 | len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 948 | buf += len; |
| 949 | } |
| 950 | |
Venkatraman S | 8986d31 | 2012-08-07 19:10:38 +0530 | [diff] [blame] | 951 | dev_vdbg(mmc_dev(host->mmc), "%s\n", res); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 952 | } |
Adrian Hunter | 699b958 | 2011-05-06 12:14:01 +0300 | [diff] [blame] | 953 | #else |
| 954 | static inline void omap_hsmmc_dbg_report_irq(struct omap_hsmmc_host *host, |
| 955 | u32 status) |
| 956 | { |
| 957 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 958 | #endif /* CONFIG_MMC_DEBUG */ |
| 959 | |
Jean Pihet | 3ebf74b | 2009-02-06 16:42:51 +0100 | [diff] [blame] | 960 | /* |
| 961 | * MMC controller internal state machines reset |
| 962 | * |
| 963 | * Used to reset command or data internal state machines, using respectively |
| 964 | * SRC or SRD bit of SYSCTL register |
| 965 | * Can be called from interrupt context |
| 966 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 967 | static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host, |
| 968 | unsigned long bit) |
Jean Pihet | 3ebf74b | 2009-02-06 16:42:51 +0100 | [diff] [blame] | 969 | { |
| 970 | unsigned long i = 0; |
Jianpeng Ma | 1e88178 | 2013-10-21 00:25:20 +0530 | [diff] [blame^] | 971 | unsigned long limit = MMC_TIMEOUT_US; |
Jean Pihet | 3ebf74b | 2009-02-06 16:42:51 +0100 | [diff] [blame] | 972 | |
| 973 | OMAP_HSMMC_WRITE(host->base, SYSCTL, |
| 974 | OMAP_HSMMC_READ(host->base, SYSCTL) | bit); |
| 975 | |
Madhusudhan Chikkature | 07ad64b | 2010-10-01 16:35:25 -0700 | [diff] [blame] | 976 | /* |
| 977 | * OMAP4 ES2 and greater has an updated reset logic. |
| 978 | * Monitor a 0->1 transition first |
| 979 | */ |
| 980 | if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) { |
kishore kadiyala | b432b4b | 2010-11-17 22:35:32 -0500 | [diff] [blame] | 981 | while ((!(OMAP_HSMMC_READ(host->base, SYSCTL) & bit)) |
Madhusudhan Chikkature | 07ad64b | 2010-10-01 16:35:25 -0700 | [diff] [blame] | 982 | && (i++ < limit)) |
Jianpeng Ma | 1e88178 | 2013-10-21 00:25:20 +0530 | [diff] [blame^] | 983 | udelay(1); |
Madhusudhan Chikkature | 07ad64b | 2010-10-01 16:35:25 -0700 | [diff] [blame] | 984 | } |
| 985 | i = 0; |
| 986 | |
Jean Pihet | 3ebf74b | 2009-02-06 16:42:51 +0100 | [diff] [blame] | 987 | while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) && |
| 988 | (i++ < limit)) |
Jianpeng Ma | 1e88178 | 2013-10-21 00:25:20 +0530 | [diff] [blame^] | 989 | udelay(1); |
Jean Pihet | 3ebf74b | 2009-02-06 16:42:51 +0100 | [diff] [blame] | 990 | |
| 991 | if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit) |
| 992 | dev_err(mmc_dev(host->mmc), |
| 993 | "Timeout waiting on controller reset in %s\n", |
| 994 | __func__); |
| 995 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 996 | |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 997 | static void hsmmc_command_incomplete(struct omap_hsmmc_host *host, |
| 998 | int err, int end_cmd) |
Venkatraman S | ae4bf78 | 2012-08-09 20:36:07 +0530 | [diff] [blame] | 999 | { |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 1000 | if (end_cmd) { |
Balaji T K | 94d4f27 | 2012-11-19 21:59:56 +0530 | [diff] [blame] | 1001 | omap_hsmmc_reset_controller_fsm(host, SRC); |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 1002 | if (host->cmd) |
| 1003 | host->cmd->error = err; |
| 1004 | } |
Venkatraman S | ae4bf78 | 2012-08-09 20:36:07 +0530 | [diff] [blame] | 1005 | |
| 1006 | if (host->data) { |
| 1007 | omap_hsmmc_reset_controller_fsm(host, SRD); |
| 1008 | omap_hsmmc_dma_cleanup(host, err); |
Balaji T K | dc7745b | 2012-11-19 21:59:57 +0530 | [diff] [blame] | 1009 | } else if (host->mrq && host->mrq->cmd) |
| 1010 | host->mrq->cmd->error = err; |
Venkatraman S | ae4bf78 | 2012-08-09 20:36:07 +0530 | [diff] [blame] | 1011 | } |
| 1012 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1013 | static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1014 | { |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1015 | struct mmc_data *data; |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1016 | int end_cmd = 0, end_trans = 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1017 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1018 | data = host->data; |
Venkatraman S | 8986d31 | 2012-08-07 19:10:38 +0530 | [diff] [blame] | 1019 | dev_vdbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1020 | |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 1021 | if (status & ERR_EN) { |
Adrian Hunter | 699b958 | 2011-05-06 12:14:01 +0300 | [diff] [blame] | 1022 | omap_hsmmc_dbg_report_irq(host, status); |
Adrian Hunter | 4a694dc | 2009-01-12 16:13:08 +0200 | [diff] [blame] | 1023 | |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 1024 | if (status & (CTO_EN | CCRC_EN)) |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 1025 | end_cmd = 1; |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 1026 | if (status & (CTO_EN | DTO_EN)) |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 1027 | hsmmc_command_incomplete(host, -ETIMEDOUT, end_cmd); |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 1028 | else if (status & (CCRC_EN | DCRC_EN)) |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 1029 | hsmmc_command_incomplete(host, -EILSEQ, end_cmd); |
| 1030 | |
Venkatraman S | ae4bf78 | 2012-08-09 20:36:07 +0530 | [diff] [blame] | 1031 | if (host->data || host->response_busy) { |
Balaji T K | 25e1897 | 2012-11-19 21:59:55 +0530 | [diff] [blame] | 1032 | end_trans = !end_cmd; |
Venkatraman S | ae4bf78 | 2012-08-09 20:36:07 +0530 | [diff] [blame] | 1033 | host->response_busy = 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1034 | } |
| 1035 | } |
| 1036 | |
Francesco Lavra | 7472bab | 2013-06-29 08:25:12 +0200 | [diff] [blame] | 1037 | OMAP_HSMMC_WRITE(host->base, STAT, status); |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 1038 | if (end_cmd || ((status & CC_EN) && host->cmd)) |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1039 | omap_hsmmc_cmd_done(host, host->cmd); |
Venkatraman S | a7e9687 | 2012-11-19 22:00:01 +0530 | [diff] [blame] | 1040 | if ((end_trans || (status & TC_EN)) && host->mrq) |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1041 | omap_hsmmc_xfer_done(host, data); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1042 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1043 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1044 | /* |
| 1045 | * MMC controller IRQ handler |
| 1046 | */ |
| 1047 | static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id) |
| 1048 | { |
| 1049 | struct omap_hsmmc_host *host = dev_id; |
| 1050 | int status; |
| 1051 | |
| 1052 | status = OMAP_HSMMC_READ(host->base, STAT); |
Venkatraman S | 1f6b9fa | 2012-08-08 15:44:29 +0530 | [diff] [blame] | 1053 | while (status & INT_EN_MASK && host->req_in_progress) { |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1054 | omap_hsmmc_do_irq(host, status); |
Venkatraman S | 1f6b9fa | 2012-08-08 15:44:29 +0530 | [diff] [blame] | 1055 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1056 | /* Flush posted write */ |
| 1057 | status = OMAP_HSMMC_READ(host->base, STAT); |
Venkatraman S | 1f6b9fa | 2012-08-08 15:44:29 +0530 | [diff] [blame] | 1058 | } |
Adrian Hunter | 4dffd7a | 2009-09-22 16:44:58 -0700 | [diff] [blame] | 1059 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1060 | return IRQ_HANDLED; |
| 1061 | } |
| 1062 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1063 | static void set_sd_bus_power(struct omap_hsmmc_host *host) |
Adrian Hunter | e13bb30 | 2009-03-12 17:08:26 +0200 | [diff] [blame] | 1064 | { |
| 1065 | unsigned long i; |
| 1066 | |
| 1067 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 1068 | OMAP_HSMMC_READ(host->base, HCTL) | SDBP); |
| 1069 | for (i = 0; i < loops_per_jiffy; i++) { |
| 1070 | if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP) |
| 1071 | break; |
| 1072 | cpu_relax(); |
| 1073 | } |
| 1074 | } |
| 1075 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1076 | /* |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 1077 | * Switch MMC interface voltage ... only relevant for MMC1. |
| 1078 | * |
| 1079 | * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver. |
| 1080 | * The MMC2 transceiver controls are used instead of DAT4..DAT7. |
| 1081 | * Some chips, like eMMC ones, use internal transceivers. |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1082 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1083 | static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1084 | { |
| 1085 | u32 reg_val = 0; |
| 1086 | int ret; |
| 1087 | |
| 1088 | /* Disable the clocks */ |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1089 | pm_runtime_put_sync(host->dev); |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 1090 | if (host->dbclk) |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 1091 | clk_disable_unprepare(host->dbclk); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1092 | |
| 1093 | /* Turn the power off */ |
| 1094 | ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1095 | |
| 1096 | /* Turn the power ON with given VDD 1.8 or 3.0v */ |
Adrian Hunter | 2bec089 | 2009-09-22 16:45:02 -0700 | [diff] [blame] | 1097 | if (!ret) |
| 1098 | ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1, |
| 1099 | vdd); |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1100 | pm_runtime_get_sync(host->dev); |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 1101 | if (host->dbclk) |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 1102 | clk_prepare_enable(host->dbclk); |
Adrian Hunter | 2bec089 | 2009-09-22 16:45:02 -0700 | [diff] [blame] | 1103 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1104 | if (ret != 0) |
| 1105 | goto err; |
| 1106 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1107 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 1108 | OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR); |
| 1109 | reg_val = OMAP_HSMMC_READ(host->base, HCTL); |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 1110 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1111 | /* |
| 1112 | * If a MMC dual voltage card is detected, the set_ios fn calls |
| 1113 | * this fn with VDD bit set for 1.8V. Upon card removal from the |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1114 | * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF. |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1115 | * |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 1116 | * Cope with a bit of slop in the range ... per data sheets: |
| 1117 | * - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max, |
| 1118 | * but recommended values are 1.71V to 1.89V |
| 1119 | * - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max, |
| 1120 | * but recommended values are 2.7V to 3.3V |
| 1121 | * |
| 1122 | * Board setup code shouldn't permit anything very out-of-range. |
| 1123 | * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the |
| 1124 | * middle range) but VSIM can't power DAT4..DAT7 at more than 3V. |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1125 | */ |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 1126 | if ((1 << vdd) <= MMC_VDD_23_24) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1127 | reg_val |= SDVS18; |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 1128 | else |
| 1129 | reg_val |= SDVS30; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1130 | |
| 1131 | OMAP_HSMMC_WRITE(host->base, HCTL, reg_val); |
Adrian Hunter | e13bb30 | 2009-03-12 17:08:26 +0200 | [diff] [blame] | 1132 | set_sd_bus_power(host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1133 | |
| 1134 | return 0; |
| 1135 | err: |
Venkatraman S | b1e056a | 2012-11-19 22:00:00 +0530 | [diff] [blame] | 1136 | dev_err(mmc_dev(host->mmc), "Unable to switch operating voltage\n"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1137 | return ret; |
| 1138 | } |
| 1139 | |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 1140 | /* Protect the card while the cover is open */ |
| 1141 | static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host) |
| 1142 | { |
| 1143 | if (!mmc_slot(host).get_cover_state) |
| 1144 | return; |
| 1145 | |
| 1146 | host->reqs_blocked = 0; |
| 1147 | if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) { |
| 1148 | if (host->protect_card) { |
Rajendra Nayak | 2cecdf0 | 2012-02-23 17:02:20 +0530 | [diff] [blame] | 1149 | dev_info(host->dev, "%s: cover is closed, " |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 1150 | "card is now accessible\n", |
| 1151 | mmc_hostname(host->mmc)); |
| 1152 | host->protect_card = 0; |
| 1153 | } |
| 1154 | } else { |
| 1155 | if (!host->protect_card) { |
Rajendra Nayak | 2cecdf0 | 2012-02-23 17:02:20 +0530 | [diff] [blame] | 1156 | dev_info(host->dev, "%s: cover is open, " |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 1157 | "card is now inaccessible\n", |
| 1158 | mmc_hostname(host->mmc)); |
| 1159 | host->protect_card = 1; |
| 1160 | } |
| 1161 | } |
| 1162 | } |
| 1163 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1164 | /* |
NeilBrown | 7efab4f | 2011-12-30 12:35:13 +1100 | [diff] [blame] | 1165 | * irq handler to notify the core about card insertion/removal |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1166 | */ |
NeilBrown | 7efab4f | 2011-12-30 12:35:13 +1100 | [diff] [blame] | 1167 | static irqreturn_t omap_hsmmc_detect(int irq, void *dev_id) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1168 | { |
NeilBrown | 7efab4f | 2011-12-30 12:35:13 +1100 | [diff] [blame] | 1169 | struct omap_hsmmc_host *host = dev_id; |
David Brownell | 249d0fa | 2009-02-04 14:42:03 -0800 | [diff] [blame] | 1170 | struct omap_mmc_slot_data *slot = &mmc_slot(host); |
Adrian Hunter | a6b2240 | 2009-09-22 16:44:45 -0700 | [diff] [blame] | 1171 | int carddetect; |
David Brownell | 249d0fa | 2009-02-04 14:42:03 -0800 | [diff] [blame] | 1172 | |
Adrian Hunter | a6b2240 | 2009-09-22 16:44:45 -0700 | [diff] [blame] | 1173 | if (host->suspended) |
NeilBrown | 7efab4f | 2011-12-30 12:35:13 +1100 | [diff] [blame] | 1174 | return IRQ_HANDLED; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1175 | |
| 1176 | sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch"); |
Adrian Hunter | a6b2240 | 2009-09-22 16:44:45 -0700 | [diff] [blame] | 1177 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 1178 | if (slot->card_detect) |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1179 | carddetect = slot->card_detect(host->dev, host->slot_id); |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 1180 | else { |
| 1181 | omap_hsmmc_protect_card(host); |
Adrian Hunter | a6b2240 | 2009-09-22 16:44:45 -0700 | [diff] [blame] | 1182 | carddetect = -ENOSYS; |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 1183 | } |
Adrian Hunter | a6b2240 | 2009-09-22 16:44:45 -0700 | [diff] [blame] | 1184 | |
Madhusudhan Chikkature | cdeebad | 2010-04-06 14:34:49 -0700 | [diff] [blame] | 1185 | if (carddetect) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1186 | mmc_detect_change(host->mmc, (HZ * 200) / 1000); |
Madhusudhan Chikkature | cdeebad | 2010-04-06 14:34:49 -0700 | [diff] [blame] | 1187 | else |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1188 | mmc_detect_change(host->mmc, (HZ * 50) / 1000); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1189 | return IRQ_HANDLED; |
| 1190 | } |
| 1191 | |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1192 | static void omap_hsmmc_dma_callback(void *param) |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 1193 | { |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1194 | struct omap_hsmmc_host *host = param; |
| 1195 | struct dma_chan *chan; |
Adrian Hunter | 770d743 | 2011-05-06 12:14:11 +0300 | [diff] [blame] | 1196 | struct mmc_data *data; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1197 | int req_in_progress; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1198 | |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1199 | spin_lock_irq(&host->irq_lock); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1200 | if (host->dma_ch < 0) { |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1201 | spin_unlock_irq(&host->irq_lock); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1202 | return; |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1203 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1204 | |
Adrian Hunter | 770d743 | 2011-05-06 12:14:11 +0300 | [diff] [blame] | 1205 | data = host->mrq->data; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1206 | chan = omap_hsmmc_get_dma_chan(host, data); |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1207 | if (!data->host_cookie) |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1208 | dma_unmap_sg(chan->device->dev, |
| 1209 | data->sg, data->sg_len, |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1210 | omap_hsmmc_get_dma_dir(host, data)); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1211 | |
| 1212 | req_in_progress = host->req_in_progress; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1213 | host->dma_ch = -1; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1214 | spin_unlock_irq(&host->irq_lock); |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1215 | |
| 1216 | /* If DMA has finished after TC, complete the request */ |
| 1217 | if (!req_in_progress) { |
| 1218 | struct mmc_request *mrq = host->mrq; |
| 1219 | |
| 1220 | host->mrq = NULL; |
| 1221 | mmc_request_done(host->mmc, mrq); |
| 1222 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1223 | } |
| 1224 | |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1225 | static int omap_hsmmc_pre_dma_transfer(struct omap_hsmmc_host *host, |
| 1226 | struct mmc_data *data, |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1227 | struct omap_hsmmc_next *next, |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1228 | struct dma_chan *chan) |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1229 | { |
| 1230 | int dma_len; |
| 1231 | |
| 1232 | if (!next && data->host_cookie && |
| 1233 | data->host_cookie != host->next_data.cookie) { |
Rajendra Nayak | 2cecdf0 | 2012-02-23 17:02:20 +0530 | [diff] [blame] | 1234 | dev_warn(host->dev, "[%s] invalid cookie: data->host_cookie %d" |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1235 | " host->next_data.cookie %d\n", |
| 1236 | __func__, data->host_cookie, host->next_data.cookie); |
| 1237 | data->host_cookie = 0; |
| 1238 | } |
| 1239 | |
| 1240 | /* Check if next job is already prepared */ |
| 1241 | if (next || |
| 1242 | (!next && data->host_cookie != host->next_data.cookie)) { |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1243 | dma_len = dma_map_sg(chan->device->dev, data->sg, data->sg_len, |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1244 | omap_hsmmc_get_dma_dir(host, data)); |
| 1245 | |
| 1246 | } else { |
| 1247 | dma_len = host->next_data.dma_len; |
| 1248 | host->next_data.dma_len = 0; |
| 1249 | } |
| 1250 | |
| 1251 | |
| 1252 | if (dma_len == 0) |
| 1253 | return -EINVAL; |
| 1254 | |
| 1255 | if (next) { |
| 1256 | next->dma_len = dma_len; |
| 1257 | data->host_cookie = ++next->cookie < 0 ? 1 : next->cookie; |
| 1258 | } else |
| 1259 | host->dma_len = dma_len; |
| 1260 | |
| 1261 | return 0; |
| 1262 | } |
| 1263 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1264 | /* |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1265 | * Routine to configure and start DMA for the MMC card |
| 1266 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1267 | static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host, |
| 1268 | struct mmc_request *req) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1269 | { |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1270 | struct dma_slave_config cfg; |
| 1271 | struct dma_async_tx_descriptor *tx; |
| 1272 | int ret = 0, i; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1273 | struct mmc_data *data = req->data; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1274 | struct dma_chan *chan; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1275 | |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 1276 | /* Sanity check: all the SG entries must be aligned by block size. */ |
Jarkko Lavinen | a3f406f | 2009-09-22 16:44:46 -0700 | [diff] [blame] | 1277 | for (i = 0; i < data->sg_len; i++) { |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 1278 | struct scatterlist *sgl; |
| 1279 | |
| 1280 | sgl = data->sg + i; |
| 1281 | if (sgl->length % data->blksz) |
| 1282 | return -EINVAL; |
| 1283 | } |
| 1284 | if ((data->blksz % 4) != 0) |
| 1285 | /* REVISIT: The MMC buffer increments only when MSB is written. |
| 1286 | * Return error for blksz which is non multiple of four. |
| 1287 | */ |
| 1288 | return -EINVAL; |
| 1289 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1290 | BUG_ON(host->dma_ch != -1); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1291 | |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1292 | chan = omap_hsmmc_get_dma_chan(host, data); |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1293 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1294 | cfg.src_addr = host->mapbase + OMAP_HSMMC_DATA; |
| 1295 | cfg.dst_addr = host->mapbase + OMAP_HSMMC_DATA; |
| 1296 | cfg.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; |
| 1297 | cfg.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; |
| 1298 | cfg.src_maxburst = data->blksz / 4; |
| 1299 | cfg.dst_maxburst = data->blksz / 4; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1300 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1301 | ret = dmaengine_slave_config(chan, &cfg); |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1302 | if (ret) |
| 1303 | return ret; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1304 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1305 | ret = omap_hsmmc_pre_dma_transfer(host, data, NULL, chan); |
| 1306 | if (ret) |
| 1307 | return ret; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1308 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1309 | tx = dmaengine_prep_slave_sg(chan, data->sg, data->sg_len, |
| 1310 | data->flags & MMC_DATA_WRITE ? DMA_MEM_TO_DEV : DMA_DEV_TO_MEM, |
| 1311 | DMA_PREP_INTERRUPT | DMA_CTRL_ACK); |
| 1312 | if (!tx) { |
| 1313 | dev_err(mmc_dev(host->mmc), "prep_slave_sg() failed\n"); |
| 1314 | /* FIXME: cleanup */ |
| 1315 | return -1; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1316 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1317 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1318 | tx->callback = omap_hsmmc_dma_callback; |
| 1319 | tx->callback_param = host; |
| 1320 | |
| 1321 | /* Does not fail */ |
| 1322 | dmaengine_submit(tx); |
| 1323 | |
| 1324 | host->dma_ch = 1; |
| 1325 | |
| 1326 | dma_async_issue_pending(chan); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1327 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1328 | return 0; |
| 1329 | } |
| 1330 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1331 | static void set_data_timeout(struct omap_hsmmc_host *host, |
Adrian Hunter | e2bf08d | 2009-09-22 16:45:03 -0700 | [diff] [blame] | 1332 | unsigned int timeout_ns, |
| 1333 | unsigned int timeout_clks) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1334 | { |
| 1335 | unsigned int timeout, cycle_ns; |
| 1336 | uint32_t reg, clkd, dto = 0; |
| 1337 | |
| 1338 | reg = OMAP_HSMMC_READ(host->base, SYSCTL); |
| 1339 | clkd = (reg & CLKD_MASK) >> CLKD_SHIFT; |
| 1340 | if (clkd == 0) |
| 1341 | clkd = 1; |
| 1342 | |
| 1343 | cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd); |
Adrian Hunter | e2bf08d | 2009-09-22 16:45:03 -0700 | [diff] [blame] | 1344 | timeout = timeout_ns / cycle_ns; |
| 1345 | timeout += timeout_clks; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1346 | if (timeout) { |
| 1347 | while ((timeout & 0x80000000) == 0) { |
| 1348 | dto += 1; |
| 1349 | timeout <<= 1; |
| 1350 | } |
| 1351 | dto = 31 - dto; |
| 1352 | timeout <<= 1; |
| 1353 | if (timeout && dto) |
| 1354 | dto += 1; |
| 1355 | if (dto >= 13) |
| 1356 | dto -= 13; |
| 1357 | else |
| 1358 | dto = 0; |
| 1359 | if (dto > 14) |
| 1360 | dto = 14; |
| 1361 | } |
| 1362 | |
| 1363 | reg &= ~DTO_MASK; |
| 1364 | reg |= dto << DTO_SHIFT; |
| 1365 | OMAP_HSMMC_WRITE(host->base, SYSCTL, reg); |
| 1366 | } |
| 1367 | |
| 1368 | /* |
| 1369 | * Configure block length for MMC/SD cards and initiate the transfer. |
| 1370 | */ |
| 1371 | static int |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1372 | omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1373 | { |
| 1374 | int ret; |
| 1375 | host->data = req->data; |
| 1376 | |
| 1377 | if (req->data == NULL) { |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1378 | OMAP_HSMMC_WRITE(host->base, BLK, 0); |
Adrian Hunter | e2bf08d | 2009-09-22 16:45:03 -0700 | [diff] [blame] | 1379 | /* |
| 1380 | * Set an arbitrary 100ms data timeout for commands with |
| 1381 | * busy signal. |
| 1382 | */ |
| 1383 | if (req->cmd->flags & MMC_RSP_BUSY) |
| 1384 | set_data_timeout(host, 100000000U, 0); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1385 | return 0; |
| 1386 | } |
| 1387 | |
| 1388 | OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz) |
| 1389 | | (req->data->blocks << 16)); |
Adrian Hunter | e2bf08d | 2009-09-22 16:45:03 -0700 | [diff] [blame] | 1390 | set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1391 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1392 | if (host->use_dma) { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1393 | ret = omap_hsmmc_start_dma_transfer(host, req); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1394 | if (ret != 0) { |
Venkatraman S | b1e056a | 2012-11-19 22:00:00 +0530 | [diff] [blame] | 1395 | dev_err(mmc_dev(host->mmc), "MMC start dma failure\n"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1396 | return ret; |
| 1397 | } |
| 1398 | } |
| 1399 | return 0; |
| 1400 | } |
| 1401 | |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1402 | static void omap_hsmmc_post_req(struct mmc_host *mmc, struct mmc_request *mrq, |
| 1403 | int err) |
| 1404 | { |
| 1405 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
| 1406 | struct mmc_data *data = mrq->data; |
| 1407 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1408 | if (host->use_dma && data->host_cookie) { |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1409 | struct dma_chan *c = omap_hsmmc_get_dma_chan(host, data); |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1410 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1411 | dma_unmap_sg(c->device->dev, data->sg, data->sg_len, |
| 1412 | omap_hsmmc_get_dma_dir(host, data)); |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1413 | data->host_cookie = 0; |
| 1414 | } |
| 1415 | } |
| 1416 | |
| 1417 | static void omap_hsmmc_pre_req(struct mmc_host *mmc, struct mmc_request *mrq, |
| 1418 | bool is_first_req) |
| 1419 | { |
| 1420 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
| 1421 | |
| 1422 | if (mrq->data->host_cookie) { |
| 1423 | mrq->data->host_cookie = 0; |
| 1424 | return ; |
| 1425 | } |
| 1426 | |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1427 | if (host->use_dma) { |
| 1428 | struct dma_chan *c = omap_hsmmc_get_dma_chan(host, mrq->data); |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1429 | |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1430 | if (omap_hsmmc_pre_dma_transfer(host, mrq->data, |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1431 | &host->next_data, c)) |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1432 | mrq->data->host_cookie = 0; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1433 | } |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1434 | } |
| 1435 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1436 | /* |
| 1437 | * Request function. for read/write operation |
| 1438 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1439 | static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1440 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1441 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Jarkko Lavinen | a3f406f | 2009-09-22 16:44:46 -0700 | [diff] [blame] | 1442 | int err; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1443 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1444 | BUG_ON(host->req_in_progress); |
| 1445 | BUG_ON(host->dma_ch != -1); |
| 1446 | if (host->protect_card) { |
| 1447 | if (host->reqs_blocked < 3) { |
| 1448 | /* |
| 1449 | * Ensure the controller is left in a consistent |
| 1450 | * state by resetting the command and data state |
| 1451 | * machines. |
| 1452 | */ |
| 1453 | omap_hsmmc_reset_controller_fsm(host, SRD); |
| 1454 | omap_hsmmc_reset_controller_fsm(host, SRC); |
| 1455 | host->reqs_blocked += 1; |
| 1456 | } |
| 1457 | req->cmd->error = -EBADF; |
| 1458 | if (req->data) |
| 1459 | req->data->error = -EBADF; |
| 1460 | req->cmd->retries = 0; |
| 1461 | mmc_request_done(mmc, req); |
| 1462 | return; |
| 1463 | } else if (host->reqs_blocked) |
| 1464 | host->reqs_blocked = 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1465 | WARN_ON(host->mrq != NULL); |
| 1466 | host->mrq = req; |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1467 | err = omap_hsmmc_prepare_data(host, req); |
Jarkko Lavinen | a3f406f | 2009-09-22 16:44:46 -0700 | [diff] [blame] | 1468 | if (err) { |
| 1469 | req->cmd->error = err; |
| 1470 | if (req->data) |
| 1471 | req->data->error = err; |
| 1472 | host->mrq = NULL; |
| 1473 | mmc_request_done(mmc, req); |
| 1474 | return; |
| 1475 | } |
| 1476 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1477 | omap_hsmmc_start_command(host, req->cmd, req->data); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1478 | } |
| 1479 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1480 | /* Routine to configure clock values. Exposed API to core */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1481 | static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1482 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1483 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Adrian Hunter | a362146 | 2009-09-22 16:44:42 -0700 | [diff] [blame] | 1484 | int do_send_init_stream = 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1485 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1486 | pm_runtime_get_sync(host->dev); |
Adrian Hunter | 5e2ea61 | 2009-09-22 16:44:39 -0700 | [diff] [blame] | 1487 | |
Adrian Hunter | a362146 | 2009-09-22 16:44:42 -0700 | [diff] [blame] | 1488 | if (ios->power_mode != host->power_mode) { |
| 1489 | switch (ios->power_mode) { |
| 1490 | case MMC_POWER_OFF: |
| 1491 | mmc_slot(host).set_power(host->dev, host->slot_id, |
| 1492 | 0, 0); |
| 1493 | break; |
| 1494 | case MMC_POWER_UP: |
| 1495 | mmc_slot(host).set_power(host->dev, host->slot_id, |
| 1496 | 1, ios->vdd); |
| 1497 | break; |
| 1498 | case MMC_POWER_ON: |
| 1499 | do_send_init_stream = 1; |
| 1500 | break; |
| 1501 | } |
| 1502 | host->power_mode = ios->power_mode; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1503 | } |
| 1504 | |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1505 | /* FIXME: set registers based only on changes to ios */ |
| 1506 | |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 1507 | omap_hsmmc_set_bus_width(host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1508 | |
Kishore Kadiyala | 4621d5f | 2011-02-28 20:48:04 +0530 | [diff] [blame] | 1509 | if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) { |
David Brownell | eb25082 | 2009-02-17 14:49:01 -0800 | [diff] [blame] | 1510 | /* Only MMC1 can interface at 3V without some flavor |
| 1511 | * of external transceiver; but they all handle 1.8V. |
| 1512 | */ |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1513 | if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) && |
Rajendra Nayak | 1f84b71 | 2012-03-12 20:32:38 +0530 | [diff] [blame] | 1514 | (ios->vdd == DUAL_VOLT_OCR_BIT) && |
| 1515 | /* |
| 1516 | * With pbias cell programming missing, this |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 1517 | * can't be allowed on MMC1 when booting with device |
Rajendra Nayak | 1f84b71 | 2012-03-12 20:32:38 +0530 | [diff] [blame] | 1518 | * tree. |
| 1519 | */ |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 1520 | !host->pbias_disable) { |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1521 | /* |
| 1522 | * The mmc_select_voltage fn of the core does |
| 1523 | * not seem to set the power_mode to |
| 1524 | * MMC_POWER_UP upon recalculating the voltage. |
| 1525 | * vdd 1.8v. |
| 1526 | */ |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1527 | if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0) |
| 1528 | dev_dbg(mmc_dev(host->mmc), |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1529 | "Switch operation failed\n"); |
| 1530 | } |
| 1531 | } |
| 1532 | |
Andy Shevchenko | 5934df2 | 2011-05-06 12:14:06 +0300 | [diff] [blame] | 1533 | omap_hsmmc_set_clock(host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1534 | |
Adrian Hunter | a362146 | 2009-09-22 16:44:42 -0700 | [diff] [blame] | 1535 | if (do_send_init_stream) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1536 | send_init_stream(host); |
| 1537 | |
Andy Shevchenko | 3796fb8a | 2011-07-13 11:31:15 -0400 | [diff] [blame] | 1538 | omap_hsmmc_set_bus_mode(host); |
Adrian Hunter | 5e2ea61 | 2009-09-22 16:44:39 -0700 | [diff] [blame] | 1539 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1540 | pm_runtime_put_autosuspend(host->dev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1541 | } |
| 1542 | |
| 1543 | static int omap_hsmmc_get_cd(struct mmc_host *mmc) |
| 1544 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1545 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1546 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 1547 | if (!mmc_slot(host).card_detect) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1548 | return -ENOSYS; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1549 | return mmc_slot(host).card_detect(host->dev, host->slot_id); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1550 | } |
| 1551 | |
| 1552 | static int omap_hsmmc_get_ro(struct mmc_host *mmc) |
| 1553 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1554 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1555 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 1556 | if (!mmc_slot(host).get_ro) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1557 | return -ENOSYS; |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 1558 | return mmc_slot(host).get_ro(host->dev, 0); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1559 | } |
| 1560 | |
Grazvydas Ignotas | 4816858 | 2010-08-10 18:01:52 -0700 | [diff] [blame] | 1561 | static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card) |
| 1562 | { |
| 1563 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
| 1564 | |
| 1565 | if (mmc_slot(host).init_card) |
| 1566 | mmc_slot(host).init_card(card); |
| 1567 | } |
| 1568 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1569 | static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host) |
Kim Kyuwon | 1b331e6 | 2009-02-20 13:10:08 +0100 | [diff] [blame] | 1570 | { |
| 1571 | u32 hctl, capa, value; |
| 1572 | |
| 1573 | /* Only MMC1 supports 3.0V */ |
Kishore Kadiyala | 4621d5f | 2011-02-28 20:48:04 +0530 | [diff] [blame] | 1574 | if (host->pdata->controller_flags & OMAP_HSMMC_SUPPORTS_DUAL_VOLT) { |
Kim Kyuwon | 1b331e6 | 2009-02-20 13:10:08 +0100 | [diff] [blame] | 1575 | hctl = SDVS30; |
| 1576 | capa = VS30 | VS18; |
| 1577 | } else { |
| 1578 | hctl = SDVS18; |
| 1579 | capa = VS18; |
| 1580 | } |
| 1581 | |
| 1582 | value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK; |
| 1583 | OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl); |
| 1584 | |
| 1585 | value = OMAP_HSMMC_READ(host->base, CAPA); |
| 1586 | OMAP_HSMMC_WRITE(host->base, CAPA, value | capa); |
| 1587 | |
Kim Kyuwon | 1b331e6 | 2009-02-20 13:10:08 +0100 | [diff] [blame] | 1588 | /* Set SD bus power bit */ |
Adrian Hunter | e13bb30 | 2009-03-12 17:08:26 +0200 | [diff] [blame] | 1589 | set_sd_bus_power(host); |
Kim Kyuwon | 1b331e6 | 2009-02-20 13:10:08 +0100 | [diff] [blame] | 1590 | } |
| 1591 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1592 | static int omap_hsmmc_enable_fclk(struct mmc_host *mmc) |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1593 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1594 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1595 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1596 | pm_runtime_get_sync(host->dev); |
| 1597 | |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1598 | return 0; |
| 1599 | } |
| 1600 | |
Adrian Hunter | 907d2e7 | 2012-02-29 09:17:21 +0200 | [diff] [blame] | 1601 | static int omap_hsmmc_disable_fclk(struct mmc_host *mmc) |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1602 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1603 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1604 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1605 | pm_runtime_mark_last_busy(host->dev); |
| 1606 | pm_runtime_put_autosuspend(host->dev); |
| 1607 | |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1608 | return 0; |
| 1609 | } |
| 1610 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1611 | static const struct mmc_host_ops omap_hsmmc_ops = { |
| 1612 | .enable = omap_hsmmc_enable_fclk, |
| 1613 | .disable = omap_hsmmc_disable_fclk, |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1614 | .post_req = omap_hsmmc_post_req, |
| 1615 | .pre_req = omap_hsmmc_pre_req, |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1616 | .request = omap_hsmmc_request, |
| 1617 | .set_ios = omap_hsmmc_set_ios, |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1618 | .get_cd = omap_hsmmc_get_cd, |
| 1619 | .get_ro = omap_hsmmc_get_ro, |
Grazvydas Ignotas | 4816858 | 2010-08-10 18:01:52 -0700 | [diff] [blame] | 1620 | .init_card = omap_hsmmc_init_card, |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1621 | /* NYET -- enable_sdio_irq */ |
| 1622 | }; |
| 1623 | |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1624 | #ifdef CONFIG_DEBUG_FS |
| 1625 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1626 | static int omap_hsmmc_regs_show(struct seq_file *s, void *data) |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1627 | { |
| 1628 | struct mmc_host *mmc = s->private; |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1629 | struct omap_hsmmc_host *host = mmc_priv(mmc); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 1630 | |
Tony Lindgren | 0a82e06 | 2013-10-21 00:25:19 +0530 | [diff] [blame] | 1631 | seq_printf(s, "mmc%d:\n ctx_loss:\t%d\n\nregs:\n", |
| 1632 | mmc->index, host->context_loss); |
Adrian Hunter | 5e2ea61 | 2009-09-22 16:44:39 -0700 | [diff] [blame] | 1633 | |
Balaji T K | 7a8c2ce | 2011-07-01 22:09:34 +0530 | [diff] [blame] | 1634 | if (host->suspended) { |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1635 | seq_printf(s, "host suspended, can't read registers\n"); |
| 1636 | return 0; |
| 1637 | } |
| 1638 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1639 | pm_runtime_get_sync(host->dev); |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1640 | |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1641 | seq_printf(s, "CON:\t\t0x%08x\n", |
| 1642 | OMAP_HSMMC_READ(host->base, CON)); |
| 1643 | seq_printf(s, "HCTL:\t\t0x%08x\n", |
| 1644 | OMAP_HSMMC_READ(host->base, HCTL)); |
| 1645 | seq_printf(s, "SYSCTL:\t\t0x%08x\n", |
| 1646 | OMAP_HSMMC_READ(host->base, SYSCTL)); |
| 1647 | seq_printf(s, "IE:\t\t0x%08x\n", |
| 1648 | OMAP_HSMMC_READ(host->base, IE)); |
| 1649 | seq_printf(s, "ISE:\t\t0x%08x\n", |
| 1650 | OMAP_HSMMC_READ(host->base, ISE)); |
| 1651 | seq_printf(s, "CAPA:\t\t0x%08x\n", |
| 1652 | OMAP_HSMMC_READ(host->base, CAPA)); |
Adrian Hunter | 5e2ea61 | 2009-09-22 16:44:39 -0700 | [diff] [blame] | 1653 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1654 | pm_runtime_mark_last_busy(host->dev); |
| 1655 | pm_runtime_put_autosuspend(host->dev); |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1656 | |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1657 | return 0; |
| 1658 | } |
| 1659 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1660 | static int omap_hsmmc_regs_open(struct inode *inode, struct file *file) |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1661 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1662 | return single_open(file, omap_hsmmc_regs_show, inode->i_private); |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1663 | } |
| 1664 | |
| 1665 | static const struct file_operations mmc_regs_fops = { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1666 | .open = omap_hsmmc_regs_open, |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1667 | .read = seq_read, |
| 1668 | .llseek = seq_lseek, |
| 1669 | .release = single_release, |
| 1670 | }; |
| 1671 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1672 | static void omap_hsmmc_debugfs(struct mmc_host *mmc) |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1673 | { |
| 1674 | if (mmc->debugfs_root) |
| 1675 | debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root, |
| 1676 | mmc, &mmc_regs_fops); |
| 1677 | } |
| 1678 | |
| 1679 | #else |
| 1680 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1681 | static void omap_hsmmc_debugfs(struct mmc_host *mmc) |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 1682 | { |
| 1683 | } |
| 1684 | |
| 1685 | #endif |
| 1686 | |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1687 | #ifdef CONFIG_OF |
| 1688 | static u16 omap4_reg_offset = 0x100; |
| 1689 | |
| 1690 | static const struct of_device_id omap_mmc_of_match[] = { |
| 1691 | { |
| 1692 | .compatible = "ti,omap2-hsmmc", |
| 1693 | }, |
| 1694 | { |
| 1695 | .compatible = "ti,omap3-hsmmc", |
| 1696 | }, |
| 1697 | { |
| 1698 | .compatible = "ti,omap4-hsmmc", |
| 1699 | .data = &omap4_reg_offset, |
| 1700 | }, |
| 1701 | {}, |
Chris Ball | b6d085f | 2012-04-10 09:57:36 -0400 | [diff] [blame] | 1702 | }; |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1703 | MODULE_DEVICE_TABLE(of, omap_mmc_of_match); |
| 1704 | |
| 1705 | static struct omap_mmc_platform_data *of_get_hsmmc_pdata(struct device *dev) |
| 1706 | { |
| 1707 | struct omap_mmc_platform_data *pdata; |
| 1708 | struct device_node *np = dev->of_node; |
Daniel Mack | d8714e8 | 2012-10-15 21:35:06 +0530 | [diff] [blame] | 1709 | u32 bus_width, max_freq; |
Jan Luebbe | dc642c2 | 2013-01-30 10:07:17 +0100 | [diff] [blame] | 1710 | int cd_gpio, wp_gpio; |
| 1711 | |
| 1712 | cd_gpio = of_get_named_gpio(np, "cd-gpios", 0); |
| 1713 | wp_gpio = of_get_named_gpio(np, "wp-gpios", 0); |
| 1714 | if (cd_gpio == -EPROBE_DEFER || wp_gpio == -EPROBE_DEFER) |
| 1715 | return ERR_PTR(-EPROBE_DEFER); |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1716 | |
| 1717 | pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); |
| 1718 | if (!pdata) |
| 1719 | return NULL; /* out of memory */ |
| 1720 | |
| 1721 | if (of_find_property(np, "ti,dual-volt", NULL)) |
| 1722 | pdata->controller_flags |= OMAP_HSMMC_SUPPORTS_DUAL_VOLT; |
| 1723 | |
| 1724 | /* This driver only supports 1 slot */ |
| 1725 | pdata->nr_slots = 1; |
Jan Luebbe | dc642c2 | 2013-01-30 10:07:17 +0100 | [diff] [blame] | 1726 | pdata->slots[0].switch_pin = cd_gpio; |
| 1727 | pdata->slots[0].gpio_wp = wp_gpio; |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1728 | |
| 1729 | if (of_find_property(np, "ti,non-removable", NULL)) { |
| 1730 | pdata->slots[0].nonremovable = true; |
| 1731 | pdata->slots[0].no_regulator_off_init = true; |
| 1732 | } |
Arnd Bergmann | 7f21779 | 2012-05-13 00:14:24 -0400 | [diff] [blame] | 1733 | of_property_read_u32(np, "bus-width", &bus_width); |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1734 | if (bus_width == 4) |
| 1735 | pdata->slots[0].caps |= MMC_CAP_4_BIT_DATA; |
| 1736 | else if (bus_width == 8) |
| 1737 | pdata->slots[0].caps |= MMC_CAP_8_BIT_DATA; |
| 1738 | |
| 1739 | if (of_find_property(np, "ti,needs-special-reset", NULL)) |
| 1740 | pdata->slots[0].features |= HSMMC_HAS_UPDATED_RESET; |
| 1741 | |
Daniel Mack | d8714e8 | 2012-10-15 21:35:06 +0530 | [diff] [blame] | 1742 | if (!of_property_read_u32(np, "max-frequency", &max_freq)) |
| 1743 | pdata->max_freq = max_freq; |
| 1744 | |
Hebbar, Gururaja | cd58709 | 2012-11-19 21:59:58 +0530 | [diff] [blame] | 1745 | if (of_find_property(np, "ti,needs-special-hs-handling", NULL)) |
| 1746 | pdata->slots[0].features |= HSMMC_HAS_HSPE_SUPPORT; |
| 1747 | |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1748 | return pdata; |
| 1749 | } |
| 1750 | #else |
| 1751 | static inline struct omap_mmc_platform_data |
| 1752 | *of_get_hsmmc_pdata(struct device *dev) |
| 1753 | { |
| 1754 | return NULL; |
| 1755 | } |
| 1756 | #endif |
| 1757 | |
Bill Pemberton | c3be1ef | 2012-11-19 13:23:06 -0500 | [diff] [blame] | 1758 | static int omap_hsmmc_probe(struct platform_device *pdev) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1759 | { |
| 1760 | struct omap_mmc_platform_data *pdata = pdev->dev.platform_data; |
| 1761 | struct mmc_host *mmc; |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1762 | struct omap_hsmmc_host *host = NULL; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1763 | struct resource *res; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1764 | int ret, irq; |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1765 | const struct of_device_id *match; |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1766 | dma_cap_mask_t mask; |
| 1767 | unsigned tx_req, rx_req; |
Daniel Mack | 46b7603 | 2012-10-15 21:35:05 +0530 | [diff] [blame] | 1768 | struct pinctrl *pinctrl; |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1769 | |
| 1770 | match = of_match_device(of_match_ptr(omap_mmc_of_match), &pdev->dev); |
| 1771 | if (match) { |
| 1772 | pdata = of_get_hsmmc_pdata(&pdev->dev); |
Jan Luebbe | dc642c2 | 2013-01-30 10:07:17 +0100 | [diff] [blame] | 1773 | |
| 1774 | if (IS_ERR(pdata)) |
| 1775 | return PTR_ERR(pdata); |
| 1776 | |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1777 | if (match->data) { |
Uwe Kleine-König | efc9b73 | 2012-05-21 21:57:39 +0200 | [diff] [blame] | 1778 | const u16 *offsetp = match->data; |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 1779 | pdata->reg_offset = *offsetp; |
| 1780 | } |
| 1781 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1782 | |
| 1783 | if (pdata == NULL) { |
| 1784 | dev_err(&pdev->dev, "Platform Data is missing\n"); |
| 1785 | return -ENXIO; |
| 1786 | } |
| 1787 | |
| 1788 | if (pdata->nr_slots == 0) { |
| 1789 | dev_err(&pdev->dev, "No Slots\n"); |
| 1790 | return -ENXIO; |
| 1791 | } |
| 1792 | |
| 1793 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1794 | irq = platform_get_irq(pdev, 0); |
| 1795 | if (res == NULL || irq < 0) |
| 1796 | return -ENXIO; |
| 1797 | |
Chris Ball | 984b203 | 2011-03-22 16:34:42 -0700 | [diff] [blame] | 1798 | res = request_mem_region(res->start, resource_size(res), pdev->name); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1799 | if (res == NULL) |
| 1800 | return -EBUSY; |
| 1801 | |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1802 | ret = omap_hsmmc_gpio_init(pdata); |
| 1803 | if (ret) |
| 1804 | goto err; |
| 1805 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1806 | mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1807 | if (!mmc) { |
| 1808 | ret = -ENOMEM; |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1809 | goto err_alloc; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1810 | } |
| 1811 | |
| 1812 | host = mmc_priv(mmc); |
| 1813 | host->mmc = mmc; |
| 1814 | host->pdata = pdata; |
| 1815 | host->dev = &pdev->dev; |
| 1816 | host->use_dma = 1; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1817 | host->dma_ch = -1; |
| 1818 | host->irq = irq; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1819 | host->slot_id = 0; |
Balaji T K | fc307df | 2012-04-02 12:26:47 +0530 | [diff] [blame] | 1820 | host->mapbase = res->start + pdata->reg_offset; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1821 | host->base = ioremap(host->mapbase, SZ_4K); |
Adrian Hunter | 6da20c8 | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1822 | host->power_mode = MMC_POWER_OFF; |
Per Forlin | 9782aff | 2011-07-01 18:55:23 +0200 | [diff] [blame] | 1823 | host->next_data.cookie = 1; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1824 | |
| 1825 | platform_set_drvdata(pdev, host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1826 | |
Balaji T K | 7a8c2ce | 2011-07-01 22:09:34 +0530 | [diff] [blame] | 1827 | mmc->ops = &omap_hsmmc_ops; |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1828 | |
Adrian Hunter | e0eb242 | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1829 | /* |
| 1830 | * If regulator_disable can only put vcc_aux to sleep then there is |
| 1831 | * no off state. |
| 1832 | */ |
| 1833 | if (mmc_slot(host).vcc_aux_disable_is_sleep) |
| 1834 | mmc_slot(host).no_off = 1; |
| 1835 | |
Daniel Mack | d418ed8 | 2012-02-19 13:20:33 +0100 | [diff] [blame] | 1836 | mmc->f_min = OMAP_MMC_MIN_CLOCK; |
| 1837 | |
| 1838 | if (pdata->max_freq > 0) |
| 1839 | mmc->f_max = pdata->max_freq; |
| 1840 | else |
| 1841 | mmc->f_max = OMAP_MMC_MAX_CLOCK; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1842 | |
Adrian Hunter | 4dffd7a | 2009-09-22 16:44:58 -0700 | [diff] [blame] | 1843 | spin_lock_init(&host->irq_lock); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1844 | |
Russell King | 6f7607c | 2009-01-28 10:22:50 +0000 | [diff] [blame] | 1845 | host->fclk = clk_get(&pdev->dev, "fck"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1846 | if (IS_ERR(host->fclk)) { |
| 1847 | ret = PTR_ERR(host->fclk); |
| 1848 | host->fclk = NULL; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1849 | goto err1; |
| 1850 | } |
| 1851 | |
Paul Walmsley | 9b68256 | 2011-10-06 14:50:35 -0600 | [diff] [blame] | 1852 | if (host->pdata->controller_flags & OMAP_HSMMC_BROKEN_MULTIBLOCK_READ) { |
| 1853 | dev_info(&pdev->dev, "multiblock reads disabled due to 35xx erratum 2.1.1.128; MMC read performance may suffer\n"); |
| 1854 | mmc->caps2 |= MMC_CAP2_NO_MULTI_READ; |
| 1855 | } |
Denis Karpov | dd498ef | 2009-09-22 16:44:49 -0700 | [diff] [blame] | 1856 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 1857 | pm_runtime_enable(host->dev); |
| 1858 | pm_runtime_get_sync(host->dev); |
| 1859 | pm_runtime_set_autosuspend_delay(host->dev, MMC_AUTOSUSPEND_DELAY); |
| 1860 | pm_runtime_use_autosuspend(host->dev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1861 | |
Balaji T K | 92a3aeb | 2012-02-24 21:14:34 +0530 | [diff] [blame] | 1862 | omap_hsmmc_context_save(host); |
| 1863 | |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 1864 | /* This can be removed once we support PBIAS with DT */ |
Balaji T K | e002264 | 2013-10-21 00:25:18 +0530 | [diff] [blame] | 1865 | if (host->dev->of_node && res->start == 0x4809c000) |
Tony Lindgren | cf5ae40 | 2013-05-10 17:42:33 +0530 | [diff] [blame] | 1866 | host->pbias_disable = 1; |
| 1867 | |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 1868 | host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck"); |
| 1869 | /* |
| 1870 | * MMC can still work without debounce clock. |
| 1871 | */ |
| 1872 | if (IS_ERR(host->dbclk)) { |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 1873 | host->dbclk = NULL; |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 1874 | } else if (clk_prepare_enable(host->dbclk) != 0) { |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 1875 | dev_warn(mmc_dev(host->mmc), "Failed to enable debounce clk\n"); |
| 1876 | clk_put(host->dbclk); |
| 1877 | host->dbclk = NULL; |
Adrian Hunter | 2bec089 | 2009-09-22 16:45:02 -0700 | [diff] [blame] | 1878 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1879 | |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 1880 | /* Since we do only SG emulation, we can have as many segs |
| 1881 | * as we want. */ |
Martin K. Petersen | a36274e | 2010-09-10 01:33:59 -0400 | [diff] [blame] | 1882 | mmc->max_segs = 1024; |
Juha Yrjola | 0ccd76d | 2008-11-14 15:22:00 +0200 | [diff] [blame] | 1883 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1884 | mmc->max_blk_size = 512; /* Block Length at max can be 1024 */ |
| 1885 | mmc->max_blk_count = 0xFFFF; /* No. of Blocks is 16 bits */ |
| 1886 | mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count; |
| 1887 | mmc->max_seg_size = mmc->max_req_size; |
| 1888 | |
Jarkko Lavinen | 13189e7 | 2009-09-22 16:44:53 -0700 | [diff] [blame] | 1889 | mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED | |
Adrian Hunter | 93caf8e69 | 2010-08-11 14:17:48 -0700 | [diff] [blame] | 1890 | MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1891 | |
Sukumar Ghorai | 3a63833 | 2010-09-15 14:49:23 +0000 | [diff] [blame] | 1892 | mmc->caps |= mmc_slot(host).caps; |
| 1893 | if (mmc->caps & MMC_CAP_8_BIT_DATA) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1894 | mmc->caps |= MMC_CAP_4_BIT_DATA; |
| 1895 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 1896 | if (mmc_slot(host).nonremovable) |
Adrian Hunter | 23d99bb | 2009-09-22 16:44:48 -0700 | [diff] [blame] | 1897 | mmc->caps |= MMC_CAP_NONREMOVABLE; |
| 1898 | |
Eliad Peller | 6fdc75d | 2011-11-22 16:02:18 +0200 | [diff] [blame] | 1899 | mmc->pm_caps = mmc_slot(host).pm_caps; |
| 1900 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1901 | omap_hsmmc_conf_bus_power(host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1902 | |
Santosh Shilimkar | 4a29b55 | 2013-05-10 17:42:35 +0530 | [diff] [blame] | 1903 | if (!pdev->dev.of_node) { |
| 1904 | res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "tx"); |
| 1905 | if (!res) { |
| 1906 | dev_err(mmc_dev(host->mmc), "cannot get DMA TX channel\n"); |
| 1907 | ret = -ENXIO; |
| 1908 | goto err_irq; |
| 1909 | } |
| 1910 | tx_req = res->start; |
Balaji T K | b7bf773 | 2012-03-07 09:55:30 -0500 | [diff] [blame] | 1911 | |
Santosh Shilimkar | 4a29b55 | 2013-05-10 17:42:35 +0530 | [diff] [blame] | 1912 | res = platform_get_resource_byname(pdev, IORESOURCE_DMA, "rx"); |
| 1913 | if (!res) { |
| 1914 | dev_err(mmc_dev(host->mmc), "cannot get DMA RX channel\n"); |
| 1915 | ret = -ENXIO; |
| 1916 | goto err_irq; |
| 1917 | } |
| 1918 | rx_req = res->start; |
Balaji T K | b7bf773 | 2012-03-07 09:55:30 -0500 | [diff] [blame] | 1919 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1920 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1921 | dma_cap_zero(mask); |
| 1922 | dma_cap_set(DMA_SLAVE, mask); |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1923 | |
Matt Porter | d272fbf | 2013-05-10 17:42:34 +0530 | [diff] [blame] | 1924 | host->rx_chan = |
| 1925 | dma_request_slave_channel_compat(mask, omap_dma_filter_fn, |
| 1926 | &rx_req, &pdev->dev, "rx"); |
| 1927 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1928 | if (!host->rx_chan) { |
| 1929 | dev_err(mmc_dev(host->mmc), "unable to obtain RX DMA engine channel %u\n", rx_req); |
Kevin Hilman | 04e8c7b | 2012-07-11 17:51:40 +0100 | [diff] [blame] | 1930 | ret = -ENXIO; |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1931 | goto err_irq; |
| 1932 | } |
| 1933 | |
Matt Porter | d272fbf | 2013-05-10 17:42:34 +0530 | [diff] [blame] | 1934 | host->tx_chan = |
| 1935 | dma_request_slave_channel_compat(mask, omap_dma_filter_fn, |
| 1936 | &tx_req, &pdev->dev, "tx"); |
| 1937 | |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1938 | if (!host->tx_chan) { |
| 1939 | dev_err(mmc_dev(host->mmc), "unable to obtain TX DMA engine channel %u\n", tx_req); |
Kevin Hilman | 04e8c7b | 2012-07-11 17:51:40 +0100 | [diff] [blame] | 1940 | ret = -ENXIO; |
Russell King | 26b8852 | 2012-04-13 12:27:37 +0100 | [diff] [blame] | 1941 | goto err_irq; |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 1942 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1943 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1944 | /* Request IRQ for MMC operations */ |
Yong Zhang | d9618e9 | 2011-09-22 16:59:04 +0800 | [diff] [blame] | 1945 | ret = request_irq(host->irq, omap_hsmmc_irq, 0, |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1946 | mmc_hostname(mmc), host); |
| 1947 | if (ret) { |
Venkatraman S | b1e056a | 2012-11-19 22:00:00 +0530 | [diff] [blame] | 1948 | dev_err(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1949 | goto err_irq; |
| 1950 | } |
| 1951 | |
| 1952 | if (pdata->init != NULL) { |
| 1953 | if (pdata->init(&pdev->dev) != 0) { |
Venkatraman S | b1e056a | 2012-11-19 22:00:00 +0530 | [diff] [blame] | 1954 | dev_err(mmc_dev(host->mmc), |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 1955 | "Unable to configure MMC IRQs\n"); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1956 | goto err_irq_cd_init; |
| 1957 | } |
| 1958 | } |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1959 | |
Adrian Hunter | b702b10 | 2010-02-15 10:03:35 -0800 | [diff] [blame] | 1960 | if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) { |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 1961 | ret = omap_hsmmc_reg_get(host); |
| 1962 | if (ret) |
| 1963 | goto err_reg; |
| 1964 | host->use_reg = 1; |
| 1965 | } |
| 1966 | |
David Brownell | b583f26 | 2009-05-28 14:04:03 -0700 | [diff] [blame] | 1967 | mmc->ocr_avail = mmc_slot(host).ocr_mask; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1968 | |
| 1969 | /* Request IRQ for card detect */ |
Adrian Hunter | e1a55f5 | 2009-01-26 13:17:25 +0200 | [diff] [blame] | 1970 | if ((mmc_slot(host).card_detect_irq)) { |
NeilBrown | 7efab4f | 2011-12-30 12:35:13 +1100 | [diff] [blame] | 1971 | ret = request_threaded_irq(mmc_slot(host).card_detect_irq, |
| 1972 | NULL, |
| 1973 | omap_hsmmc_detect, |
Ming Lei | db35f83 | 2012-05-17 10:27:12 +0800 | [diff] [blame] | 1974 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING | IRQF_ONESHOT, |
NeilBrown | 7efab4f | 2011-12-30 12:35:13 +1100 | [diff] [blame] | 1975 | mmc_hostname(mmc), host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1976 | if (ret) { |
Venkatraman S | b1e056a | 2012-11-19 22:00:00 +0530 | [diff] [blame] | 1977 | dev_err(mmc_dev(host->mmc), |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1978 | "Unable to grab MMC CD IRQ\n"); |
| 1979 | goto err_irq_cd; |
| 1980 | } |
kishore kadiyala | 72f2e2c | 2010-09-24 17:13:20 +0000 | [diff] [blame] | 1981 | pdata->suspend = omap_hsmmc_suspend_cdirq; |
| 1982 | pdata->resume = omap_hsmmc_resume_cdirq; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1983 | } |
| 1984 | |
Adrian Hunter | b417577 | 2010-05-26 14:42:06 -0700 | [diff] [blame] | 1985 | omap_hsmmc_disable_irq(host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1986 | |
Daniel Mack | 46b7603 | 2012-10-15 21:35:05 +0530 | [diff] [blame] | 1987 | pinctrl = devm_pinctrl_get_select_default(&pdev->dev); |
| 1988 | if (IS_ERR(pinctrl)) |
| 1989 | dev_warn(&pdev->dev, |
| 1990 | "pins are not configured from the driver\n"); |
| 1991 | |
Adrian Hunter | b62f622 | 2009-09-22 16:45:01 -0700 | [diff] [blame] | 1992 | omap_hsmmc_protect_card(host); |
| 1993 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1994 | mmc_add_host(mmc); |
| 1995 | |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 1996 | if (mmc_slot(host).name != NULL) { |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 1997 | ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name); |
| 1998 | if (ret < 0) |
| 1999 | goto err_slot_name; |
| 2000 | } |
Denis Karpov | 191d1f1 | 2009-09-22 16:44:55 -0700 | [diff] [blame] | 2001 | if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) { |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2002 | ret = device_create_file(&mmc->class_dev, |
| 2003 | &dev_attr_cover_switch); |
| 2004 | if (ret < 0) |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 2005 | goto err_slot_name; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2006 | } |
| 2007 | |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 2008 | omap_hsmmc_debugfs(mmc); |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 2009 | pm_runtime_mark_last_busy(host->dev); |
| 2010 | pm_runtime_put_autosuspend(host->dev); |
Denis Karpov | d900f71 | 2009-09-22 16:44:38 -0700 | [diff] [blame] | 2011 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2012 | return 0; |
| 2013 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2014 | err_slot_name: |
| 2015 | mmc_remove_host(mmc); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2016 | free_irq(mmc_slot(host).card_detect_irq, host); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 2017 | err_irq_cd: |
| 2018 | if (host->use_reg) |
| 2019 | omap_hsmmc_reg_put(host); |
| 2020 | err_reg: |
| 2021 | if (host->pdata->cleanup) |
| 2022 | host->pdata->cleanup(&pdev->dev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2023 | err_irq_cd_init: |
| 2024 | free_irq(host->irq, host); |
| 2025 | err_irq: |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 2026 | if (host->tx_chan) |
| 2027 | dma_release_channel(host->tx_chan); |
| 2028 | if (host->rx_chan) |
| 2029 | dma_release_channel(host->rx_chan); |
Balaji T K | d59d77e | 2012-02-24 21:14:33 +0530 | [diff] [blame] | 2030 | pm_runtime_put_sync(host->dev); |
Tony Lindgren | 37f6190 | 2012-03-08 23:41:35 -0500 | [diff] [blame] | 2031 | pm_runtime_disable(host->dev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2032 | clk_put(host->fclk); |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 2033 | if (host->dbclk) { |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 2034 | clk_disable_unprepare(host->dbclk); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2035 | clk_put(host->dbclk); |
| 2036 | } |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2037 | err1: |
| 2038 | iounmap(host->base); |
Adrian Hunter | db0fefc | 2010-02-15 10:03:34 -0800 | [diff] [blame] | 2039 | mmc_free_host(mmc); |
| 2040 | err_alloc: |
| 2041 | omap_hsmmc_gpio_free(pdata); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2042 | err: |
Russell King | 48b332f | 2012-04-18 11:11:57 +0100 | [diff] [blame] | 2043 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 2044 | if (res) |
| 2045 | release_mem_region(res->start, resource_size(res)); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2046 | return ret; |
| 2047 | } |
| 2048 | |
Bill Pemberton | 6e0ee71 | 2012-11-19 13:26:03 -0500 | [diff] [blame] | 2049 | static int omap_hsmmc_remove(struct platform_device *pdev) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2050 | { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 2051 | struct omap_hsmmc_host *host = platform_get_drvdata(pdev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2052 | struct resource *res; |
| 2053 | |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2054 | pm_runtime_get_sync(host->dev); |
| 2055 | mmc_remove_host(host->mmc); |
| 2056 | if (host->use_reg) |
| 2057 | omap_hsmmc_reg_put(host); |
| 2058 | if (host->pdata->cleanup) |
| 2059 | host->pdata->cleanup(&pdev->dev); |
| 2060 | free_irq(host->irq, host); |
| 2061 | if (mmc_slot(host).card_detect_irq) |
| 2062 | free_irq(mmc_slot(host).card_detect_irq, host); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2063 | |
Russell King | c5c9892 | 2012-04-13 12:14:39 +0100 | [diff] [blame] | 2064 | if (host->tx_chan) |
| 2065 | dma_release_channel(host->tx_chan); |
| 2066 | if (host->rx_chan) |
| 2067 | dma_release_channel(host->rx_chan); |
| 2068 | |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2069 | pm_runtime_put_sync(host->dev); |
| 2070 | pm_runtime_disable(host->dev); |
| 2071 | clk_put(host->fclk); |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 2072 | if (host->dbclk) { |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 2073 | clk_disable_unprepare(host->dbclk); |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2074 | clk_put(host->dbclk); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2075 | } |
| 2076 | |
Balaji T K | 9ea28ec | 2012-10-15 21:35:08 +0530 | [diff] [blame] | 2077 | omap_hsmmc_gpio_free(host->pdata); |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2078 | iounmap(host->base); |
Balaji T K | 9d1f028 | 2012-10-15 21:35:07 +0530 | [diff] [blame] | 2079 | mmc_free_host(host->mmc); |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2080 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2081 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 2082 | if (res) |
Chris Ball | 984b203 | 2011-03-22 16:34:42 -0700 | [diff] [blame] | 2083 | release_mem_region(res->start, resource_size(res)); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2084 | |
| 2085 | return 0; |
| 2086 | } |
| 2087 | |
| 2088 | #ifdef CONFIG_PM |
Felipe Balbi | a48ce88 | 2012-11-19 21:59:59 +0530 | [diff] [blame] | 2089 | static int omap_hsmmc_prepare(struct device *dev) |
| 2090 | { |
| 2091 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 2092 | |
| 2093 | if (host->pdata->suspend) |
| 2094 | return host->pdata->suspend(dev, host->slot_id); |
| 2095 | |
| 2096 | return 0; |
| 2097 | } |
| 2098 | |
| 2099 | static void omap_hsmmc_complete(struct device *dev) |
| 2100 | { |
| 2101 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 2102 | |
| 2103 | if (host->pdata->resume) |
| 2104 | host->pdata->resume(dev, host->slot_id); |
| 2105 | |
| 2106 | } |
| 2107 | |
Kevin Hilman | a791daa | 2010-05-26 14:42:07 -0700 | [diff] [blame] | 2108 | static int omap_hsmmc_suspend(struct device *dev) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2109 | { |
| 2110 | int ret = 0; |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2111 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 2112 | |
| 2113 | if (!host) |
| 2114 | return 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2115 | |
| 2116 | if (host && host->suspended) |
| 2117 | return 0; |
| 2118 | |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2119 | pm_runtime_get_sync(host->dev); |
| 2120 | host->suspended = 1; |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2121 | ret = mmc_suspend_host(host->mmc); |
| 2122 | |
| 2123 | if (ret) { |
| 2124 | host->suspended = 0; |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2125 | goto err; |
| 2126 | } |
| 2127 | |
| 2128 | if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) { |
| 2129 | omap_hsmmc_disable_irq(host); |
| 2130 | OMAP_HSMMC_WRITE(host->base, HCTL, |
| 2131 | OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP); |
| 2132 | } |
| 2133 | |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 2134 | if (host->dbclk) |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 2135 | clk_disable_unprepare(host->dbclk); |
Eliad Peller | 31f9d46 | 2011-11-22 16:02:17 +0200 | [diff] [blame] | 2136 | err: |
| 2137 | pm_runtime_put_sync(host->dev); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2138 | return ret; |
| 2139 | } |
| 2140 | |
| 2141 | /* Routine to resume the MMC device */ |
Kevin Hilman | a791daa | 2010-05-26 14:42:07 -0700 | [diff] [blame] | 2142 | static int omap_hsmmc_resume(struct device *dev) |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2143 | { |
| 2144 | int ret = 0; |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2145 | struct omap_hsmmc_host *host = dev_get_drvdata(dev); |
| 2146 | |
| 2147 | if (!host) |
| 2148 | return 0; |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2149 | |
| 2150 | if (host && !host->suspended) |
| 2151 | return 0; |
| 2152 | |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2153 | pm_runtime_get_sync(host->dev); |
Denis Karpov | 11dd62a | 2009-09-22 16:44:43 -0700 | [diff] [blame] | 2154 | |
Rajendra Nayak | cd03d9a | 2012-04-09 12:08:35 +0530 | [diff] [blame] | 2155 | if (host->dbclk) |
Rajendra Nayak | 94c1814 | 2012-06-27 14:19:54 +0530 | [diff] [blame] | 2156 | clk_prepare_enable(host->dbclk); |
Adrian Hunter | 2bec089 | 2009-09-22 16:45:02 -0700 | [diff] [blame] | 2157 | |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2158 | if (!(host->mmc->pm_flags & MMC_PM_KEEP_POWER)) |
| 2159 | omap_hsmmc_conf_bus_power(host); |
Kim Kyuwon | 1b331e6 | 2009-02-20 13:10:08 +0100 | [diff] [blame] | 2160 | |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2161 | omap_hsmmc_protect_card(host); |
| 2162 | |
| 2163 | /* Notify the core to resume the host */ |
| 2164 | ret = mmc_resume_host(host->mmc); |
| 2165 | if (ret == 0) |
| 2166 | host->suspended = 0; |
| 2167 | |
| 2168 | pm_runtime_mark_last_busy(host->dev); |
| 2169 | pm_runtime_put_autosuspend(host->dev); |
| 2170 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2171 | return ret; |
| 2172 | |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2173 | } |
| 2174 | |
| 2175 | #else |
Felipe Balbi | a48ce88 | 2012-11-19 21:59:59 +0530 | [diff] [blame] | 2176 | #define omap_hsmmc_prepare NULL |
| 2177 | #define omap_hsmmc_complete NULL |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 2178 | #define omap_hsmmc_suspend NULL |
Felipe Balbi | a48ce88 | 2012-11-19 21:59:59 +0530 | [diff] [blame] | 2179 | #define omap_hsmmc_resume NULL |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2180 | #endif |
| 2181 | |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 2182 | static int omap_hsmmc_runtime_suspend(struct device *dev) |
| 2183 | { |
| 2184 | struct omap_hsmmc_host *host; |
| 2185 | |
| 2186 | host = platform_get_drvdata(to_platform_device(dev)); |
| 2187 | omap_hsmmc_context_save(host); |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2188 | dev_dbg(dev, "disabled\n"); |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 2189 | |
| 2190 | return 0; |
| 2191 | } |
| 2192 | |
| 2193 | static int omap_hsmmc_runtime_resume(struct device *dev) |
| 2194 | { |
| 2195 | struct omap_hsmmc_host *host; |
| 2196 | |
| 2197 | host = platform_get_drvdata(to_platform_device(dev)); |
| 2198 | omap_hsmmc_context_restore(host); |
Felipe Balbi | 927ce94 | 2012-03-14 11:18:27 +0200 | [diff] [blame] | 2199 | dev_dbg(dev, "enabled\n"); |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 2200 | |
| 2201 | return 0; |
| 2202 | } |
| 2203 | |
Kevin Hilman | a791daa | 2010-05-26 14:42:07 -0700 | [diff] [blame] | 2204 | static struct dev_pm_ops omap_hsmmc_dev_pm_ops = { |
Denis Karpov | 70a3341 | 2009-09-22 16:44:59 -0700 | [diff] [blame] | 2205 | .suspend = omap_hsmmc_suspend, |
| 2206 | .resume = omap_hsmmc_resume, |
Felipe Balbi | a48ce88 | 2012-11-19 21:59:59 +0530 | [diff] [blame] | 2207 | .prepare = omap_hsmmc_prepare, |
| 2208 | .complete = omap_hsmmc_complete, |
Balaji T K | fa4aa2d | 2011-07-01 22:09:35 +0530 | [diff] [blame] | 2209 | .runtime_suspend = omap_hsmmc_runtime_suspend, |
| 2210 | .runtime_resume = omap_hsmmc_runtime_resume, |
Kevin Hilman | a791daa | 2010-05-26 14:42:07 -0700 | [diff] [blame] | 2211 | }; |
| 2212 | |
| 2213 | static struct platform_driver omap_hsmmc_driver = { |
Felipe Balbi | efa25fd | 2012-03-14 11:18:28 +0200 | [diff] [blame] | 2214 | .probe = omap_hsmmc_probe, |
Bill Pemberton | 0433c14 | 2012-11-19 13:20:26 -0500 | [diff] [blame] | 2215 | .remove = omap_hsmmc_remove, |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2216 | .driver = { |
| 2217 | .name = DRIVER_NAME, |
| 2218 | .owner = THIS_MODULE, |
Kevin Hilman | a791daa | 2010-05-26 14:42:07 -0700 | [diff] [blame] | 2219 | .pm = &omap_hsmmc_dev_pm_ops, |
Rajendra Nayak | 46856a6 | 2012-03-12 20:32:37 +0530 | [diff] [blame] | 2220 | .of_match_table = of_match_ptr(omap_mmc_of_match), |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2221 | }, |
| 2222 | }; |
| 2223 | |
Felipe Balbi | b796450 | 2012-03-14 11:18:32 +0200 | [diff] [blame] | 2224 | module_platform_driver(omap_hsmmc_driver); |
Madhusudhan Chikkature | a45c6cb | 2009-01-23 01:05:23 +0100 | [diff] [blame] | 2225 | MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver"); |
| 2226 | MODULE_LICENSE("GPL"); |
| 2227 | MODULE_ALIAS("platform:" DRIVER_NAME); |
| 2228 | MODULE_AUTHOR("Texas Instruments Inc"); |