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