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