Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 1 | /* linux/drivers/mmc/host/sdhci-s3c.c |
| 2 | * |
| 3 | * Copyright 2008 Openmoko Inc. |
| 4 | * Copyright 2008 Simtec Electronics |
| 5 | * Ben Dooks <ben@simtec.co.uk> |
| 6 | * http://armlinux.simtec.co.uk/ |
| 7 | * |
| 8 | * SDHCI (HSMMC) support for Samsung SoC |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License version 2 as |
| 12 | * published by the Free Software Foundation. |
| 13 | */ |
| 14 | |
| 15 | #include <linux/delay.h> |
| 16 | #include <linux/dma-mapping.h> |
| 17 | #include <linux/platform_device.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 18 | #include <linux/slab.h> |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 19 | #include <linux/clk.h> |
| 20 | #include <linux/io.h> |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 21 | #include <linux/gpio.h> |
Mark Brown | 55156d2 | 2011-07-29 15:35:00 +0100 | [diff] [blame] | 22 | #include <linux/module.h> |
Mark Brown | d5e9c02 | 2012-03-03 00:46:41 +0000 | [diff] [blame] | 23 | #include <linux/of.h> |
| 24 | #include <linux/of_gpio.h> |
| 25 | #include <linux/pm.h> |
Mark Brown | 9f4e815 | 2012-03-31 23:31:55 -0400 | [diff] [blame] | 26 | #include <linux/pm_runtime.h> |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 27 | |
| 28 | #include <linux/mmc/host.h> |
| 29 | |
| 30 | #include <plat/sdhci.h> |
| 31 | #include <plat/regs-sdhci.h> |
| 32 | |
| 33 | #include "sdhci.h" |
| 34 | |
| 35 | #define MAX_BUS_CLK (4) |
| 36 | |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 37 | /* Number of gpio's used is max data bus width + command and clock lines */ |
| 38 | #define NUM_GPIOS(x) (x + 2) |
| 39 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 40 | /** |
| 41 | * struct sdhci_s3c - S3C SDHCI instance |
| 42 | * @host: The SDHCI host created |
| 43 | * @pdev: The platform device we where created from. |
| 44 | * @ioarea: The resource created when we claimed the IO area. |
| 45 | * @pdata: The platform data for this controller. |
| 46 | * @cur_clk: The index of the current bus clock. |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 47 | * @gpios: List of gpio numbers parsed from device tree. |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 48 | * @clk_io: The clock for the internal bus interface. |
| 49 | * @clk_bus: The clocks that are available for the SD/MMC bus clock. |
| 50 | */ |
| 51 | struct sdhci_s3c { |
| 52 | struct sdhci_host *host; |
| 53 | struct platform_device *pdev; |
| 54 | struct resource *ioarea; |
| 55 | struct s3c_sdhci_platdata *pdata; |
| 56 | unsigned int cur_clk; |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 57 | int ext_cd_irq; |
| 58 | int ext_cd_gpio; |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 59 | int *gpios; |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 60 | |
| 61 | struct clk *clk_io; |
| 62 | struct clk *clk_bus[MAX_BUS_CLK]; |
| 63 | }; |
| 64 | |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 65 | /** |
| 66 | * struct sdhci_s3c_driver_data - S3C SDHCI platform specific driver data |
| 67 | * @sdhci_quirks: sdhci host specific quirks. |
| 68 | * |
| 69 | * Specifies platform specific configuration of sdhci controller. |
| 70 | * Note: A structure for driver specific platform data is used for future |
| 71 | * expansion of its usage. |
| 72 | */ |
| 73 | struct sdhci_s3c_drv_data { |
| 74 | unsigned int sdhci_quirks; |
| 75 | }; |
| 76 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 77 | static inline struct sdhci_s3c *to_s3c(struct sdhci_host *host) |
| 78 | { |
| 79 | return sdhci_priv(host); |
| 80 | } |
| 81 | |
| 82 | /** |
| 83 | * get_curclk - convert ctrl2 register to clock source number |
| 84 | * @ctrl2: Control2 register value. |
| 85 | */ |
| 86 | static u32 get_curclk(u32 ctrl2) |
| 87 | { |
| 88 | ctrl2 &= S3C_SDHCI_CTRL2_SELBASECLK_MASK; |
| 89 | ctrl2 >>= S3C_SDHCI_CTRL2_SELBASECLK_SHIFT; |
| 90 | |
| 91 | return ctrl2; |
| 92 | } |
| 93 | |
| 94 | static void sdhci_s3c_check_sclk(struct sdhci_host *host) |
| 95 | { |
| 96 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 97 | u32 tmp = readl(host->ioaddr + S3C_SDHCI_CONTROL2); |
| 98 | |
| 99 | if (get_curclk(tmp) != ourhost->cur_clk) { |
| 100 | dev_dbg(&ourhost->pdev->dev, "restored ctrl2 clock setting\n"); |
| 101 | |
| 102 | tmp &= ~S3C_SDHCI_CTRL2_SELBASECLK_MASK; |
| 103 | tmp |= ourhost->cur_clk << S3C_SDHCI_CTRL2_SELBASECLK_SHIFT; |
Jingoo Han | 7003fec | 2011-12-14 13:25:46 +0900 | [diff] [blame] | 104 | writel(tmp, host->ioaddr + S3C_SDHCI_CONTROL2); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 105 | } |
| 106 | } |
| 107 | |
| 108 | /** |
| 109 | * sdhci_s3c_get_max_clk - callback to get maximum clock frequency. |
| 110 | * @host: The SDHCI host instance. |
| 111 | * |
| 112 | * Callback to return the maximum clock rate acheivable by the controller. |
| 113 | */ |
| 114 | static unsigned int sdhci_s3c_get_max_clk(struct sdhci_host *host) |
| 115 | { |
| 116 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 117 | struct clk *busclk; |
| 118 | unsigned int rate, max; |
| 119 | int clk; |
| 120 | |
| 121 | /* note, a reset will reset the clock source */ |
| 122 | |
| 123 | sdhci_s3c_check_sclk(host); |
| 124 | |
| 125 | for (max = 0, clk = 0; clk < MAX_BUS_CLK; clk++) { |
| 126 | busclk = ourhost->clk_bus[clk]; |
| 127 | if (!busclk) |
| 128 | continue; |
| 129 | |
| 130 | rate = clk_get_rate(busclk); |
| 131 | if (rate > max) |
| 132 | max = rate; |
| 133 | } |
| 134 | |
| 135 | return max; |
| 136 | } |
| 137 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 138 | /** |
| 139 | * sdhci_s3c_consider_clock - consider one the bus clocks for current setting |
| 140 | * @ourhost: Our SDHCI instance. |
| 141 | * @src: The source clock index. |
| 142 | * @wanted: The clock frequency wanted. |
| 143 | */ |
| 144 | static unsigned int sdhci_s3c_consider_clock(struct sdhci_s3c *ourhost, |
| 145 | unsigned int src, |
| 146 | unsigned int wanted) |
| 147 | { |
| 148 | unsigned long rate; |
| 149 | struct clk *clksrc = ourhost->clk_bus[src]; |
| 150 | int div; |
| 151 | |
| 152 | if (!clksrc) |
| 153 | return UINT_MAX; |
| 154 | |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 155 | /* |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 156 | * If controller uses a non-standard clock division, find the best clock |
| 157 | * speed possible with selected clock source and skip the division. |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 158 | */ |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 159 | if (ourhost->host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK) { |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 160 | rate = clk_round_rate(clksrc, wanted); |
| 161 | return wanted - rate; |
| 162 | } |
| 163 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 164 | rate = clk_get_rate(clksrc); |
| 165 | |
| 166 | for (div = 1; div < 256; div *= 2) { |
| 167 | if ((rate / div) <= wanted) |
| 168 | break; |
| 169 | } |
| 170 | |
| 171 | dev_dbg(&ourhost->pdev->dev, "clk %d: rate %ld, want %d, got %ld\n", |
| 172 | src, rate, wanted, rate / div); |
| 173 | |
Jingoo Han | 2ad0b24 | 2012-08-29 14:35:06 +0900 | [diff] [blame] | 174 | return wanted - (rate / div); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 175 | } |
| 176 | |
| 177 | /** |
| 178 | * sdhci_s3c_set_clock - callback on clock change |
| 179 | * @host: The SDHCI host being changed |
| 180 | * @clock: The clock rate being requested. |
| 181 | * |
| 182 | * When the card's clock is going to be changed, look at the new frequency |
| 183 | * and find the best clock source to go with it. |
| 184 | */ |
| 185 | static void sdhci_s3c_set_clock(struct sdhci_host *host, unsigned int clock) |
| 186 | { |
| 187 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 188 | unsigned int best = UINT_MAX; |
| 189 | unsigned int delta; |
| 190 | int best_src = 0; |
| 191 | int src; |
| 192 | u32 ctrl; |
| 193 | |
| 194 | /* don't bother if the clock is going off. */ |
| 195 | if (clock == 0) |
| 196 | return; |
| 197 | |
| 198 | for (src = 0; src < MAX_BUS_CLK; src++) { |
| 199 | delta = sdhci_s3c_consider_clock(ourhost, src, clock); |
| 200 | if (delta < best) { |
| 201 | best = delta; |
| 202 | best_src = src; |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | dev_dbg(&ourhost->pdev->dev, |
| 207 | "selected source %d, clock %d, delta %d\n", |
| 208 | best_src, clock, best); |
| 209 | |
| 210 | /* select the new clock source */ |
| 211 | |
| 212 | if (ourhost->cur_clk != best_src) { |
| 213 | struct clk *clk = ourhost->clk_bus[best_src]; |
| 214 | |
| 215 | /* turn clock off to card before changing clock source */ |
| 216 | writew(0, host->ioaddr + SDHCI_CLOCK_CONTROL); |
| 217 | |
| 218 | ourhost->cur_clk = best_src; |
| 219 | host->max_clk = clk_get_rate(clk); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 220 | |
| 221 | ctrl = readl(host->ioaddr + S3C_SDHCI_CONTROL2); |
| 222 | ctrl &= ~S3C_SDHCI_CTRL2_SELBASECLK_MASK; |
| 223 | ctrl |= best_src << S3C_SDHCI_CTRL2_SELBASECLK_SHIFT; |
| 224 | writel(ctrl, host->ioaddr + S3C_SDHCI_CONTROL2); |
| 225 | } |
| 226 | |
Thomas Abraham | 6fe4717 | 2011-09-14 12:39:17 +0530 | [diff] [blame] | 227 | /* reprogram default hardware configuration */ |
| 228 | writel(S3C64XX_SDHCI_CONTROL4_DRIVE_9mA, |
| 229 | host->ioaddr + S3C64XX_SDHCI_CONTROL4); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 230 | |
Thomas Abraham | 6fe4717 | 2011-09-14 12:39:17 +0530 | [diff] [blame] | 231 | ctrl = readl(host->ioaddr + S3C_SDHCI_CONTROL2); |
| 232 | ctrl |= (S3C64XX_SDHCI_CTRL2_ENSTAASYNCCLR | |
| 233 | S3C64XX_SDHCI_CTRL2_ENCMDCNFMSK | |
| 234 | S3C_SDHCI_CTRL2_ENFBCLKRX | |
| 235 | S3C_SDHCI_CTRL2_DFCNT_NONE | |
| 236 | S3C_SDHCI_CTRL2_ENCLKOUTHOLD); |
| 237 | writel(ctrl, host->ioaddr + S3C_SDHCI_CONTROL2); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 238 | |
Thomas Abraham | 6fe4717 | 2011-09-14 12:39:17 +0530 | [diff] [blame] | 239 | /* reconfigure the controller for new clock rate */ |
| 240 | ctrl = (S3C_SDHCI_CTRL3_FCSEL1 | S3C_SDHCI_CTRL3_FCSEL0); |
| 241 | if (clock < 25 * 1000000) |
| 242 | ctrl |= (S3C_SDHCI_CTRL3_FCSEL3 | S3C_SDHCI_CTRL3_FCSEL2); |
| 243 | writel(ctrl, host->ioaddr + S3C_SDHCI_CONTROL3); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 244 | } |
| 245 | |
Marek Szyprowski | ce5f036 | 2010-08-10 18:01:56 -0700 | [diff] [blame] | 246 | /** |
| 247 | * sdhci_s3c_get_min_clock - callback to get minimal supported clock value |
| 248 | * @host: The SDHCI host being queried |
| 249 | * |
| 250 | * To init mmc host properly a minimal clock value is needed. For high system |
| 251 | * bus clock's values the standard formula gives values out of allowed range. |
| 252 | * The clock still can be set to lower values, if clock source other then |
| 253 | * system bus is selected. |
| 254 | */ |
| 255 | static unsigned int sdhci_s3c_get_min_clock(struct sdhci_host *host) |
| 256 | { |
| 257 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 258 | unsigned int delta, min = UINT_MAX; |
| 259 | int src; |
| 260 | |
| 261 | for (src = 0; src < MAX_BUS_CLK; src++) { |
| 262 | delta = sdhci_s3c_consider_clock(ourhost, src, 0); |
| 263 | if (delta == UINT_MAX) |
| 264 | continue; |
| 265 | /* delta is a negative value in this case */ |
| 266 | if (-delta < min) |
| 267 | min = -delta; |
| 268 | } |
| 269 | return min; |
| 270 | } |
| 271 | |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 272 | /* sdhci_cmu_get_max_clk - callback to get maximum clock frequency.*/ |
| 273 | static unsigned int sdhci_cmu_get_max_clock(struct sdhci_host *host) |
| 274 | { |
| 275 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 276 | |
| 277 | return clk_round_rate(ourhost->clk_bus[ourhost->cur_clk], UINT_MAX); |
| 278 | } |
| 279 | |
| 280 | /* sdhci_cmu_get_min_clock - callback to get minimal supported clock value. */ |
| 281 | static unsigned int sdhci_cmu_get_min_clock(struct sdhci_host *host) |
| 282 | { |
| 283 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 284 | |
| 285 | /* |
| 286 | * initial clock can be in the frequency range of |
| 287 | * 100KHz-400KHz, so we set it as max value. |
| 288 | */ |
| 289 | return clk_round_rate(ourhost->clk_bus[ourhost->cur_clk], 400000); |
| 290 | } |
| 291 | |
| 292 | /* sdhci_cmu_set_clock - callback on clock change.*/ |
| 293 | static void sdhci_cmu_set_clock(struct sdhci_host *host, unsigned int clock) |
| 294 | { |
| 295 | struct sdhci_s3c *ourhost = to_s3c(host); |
Jingoo Han | 2ad0b24 | 2012-08-29 14:35:06 +0900 | [diff] [blame] | 296 | struct device *dev = &ourhost->pdev->dev; |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 297 | unsigned long timeout; |
| 298 | u16 clk = 0; |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 299 | |
| 300 | /* don't bother if the clock is going off */ |
| 301 | if (clock == 0) |
| 302 | return; |
| 303 | |
| 304 | sdhci_s3c_set_clock(host, clock); |
| 305 | |
| 306 | clk_set_rate(ourhost->clk_bus[ourhost->cur_clk], clock); |
| 307 | |
| 308 | host->clock = clock; |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 309 | |
| 310 | clk = SDHCI_CLOCK_INT_EN; |
| 311 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
| 312 | |
| 313 | /* Wait max 20 ms */ |
| 314 | timeout = 20; |
| 315 | while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL)) |
| 316 | & SDHCI_CLOCK_INT_STABLE)) { |
| 317 | if (timeout == 0) { |
Jingoo Han | 2ad0b24 | 2012-08-29 14:35:06 +0900 | [diff] [blame] | 318 | dev_err(dev, "%s: Internal clock never stabilised.\n", |
| 319 | mmc_hostname(host->mmc)); |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 320 | return; |
| 321 | } |
| 322 | timeout--; |
| 323 | mdelay(1); |
| 324 | } |
| 325 | |
| 326 | clk |= SDHCI_CLOCK_CARD_EN; |
| 327 | sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL); |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 328 | } |
| 329 | |
Jaehoon Chung | 548f07d | 2011-01-12 11:59:12 +0900 | [diff] [blame] | 330 | /** |
| 331 | * sdhci_s3c_platform_8bit_width - support 8bit buswidth |
| 332 | * @host: The SDHCI host being queried |
| 333 | * @width: MMC_BUS_WIDTH_ macro for the bus width being requested |
| 334 | * |
| 335 | * We have 8-bit width support but is not a v3 controller. |
| 336 | * So we add platform_8bit_width() and support 8bit width. |
| 337 | */ |
| 338 | static int sdhci_s3c_platform_8bit_width(struct sdhci_host *host, int width) |
| 339 | { |
| 340 | u8 ctrl; |
| 341 | |
| 342 | ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL); |
| 343 | |
| 344 | switch (width) { |
| 345 | case MMC_BUS_WIDTH_8: |
| 346 | ctrl |= SDHCI_CTRL_8BITBUS; |
| 347 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 348 | break; |
| 349 | case MMC_BUS_WIDTH_4: |
| 350 | ctrl |= SDHCI_CTRL_4BITBUS; |
| 351 | ctrl &= ~SDHCI_CTRL_8BITBUS; |
| 352 | break; |
| 353 | default: |
Girish K S | 49bb1e6 | 2011-08-26 14:58:18 +0530 | [diff] [blame] | 354 | ctrl &= ~SDHCI_CTRL_4BITBUS; |
| 355 | ctrl &= ~SDHCI_CTRL_8BITBUS; |
Jaehoon Chung | 548f07d | 2011-01-12 11:59:12 +0900 | [diff] [blame] | 356 | break; |
| 357 | } |
| 358 | |
| 359 | sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL); |
| 360 | |
| 361 | return 0; |
| 362 | } |
| 363 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 364 | static struct sdhci_ops sdhci_s3c_ops = { |
| 365 | .get_max_clock = sdhci_s3c_get_max_clk, |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 366 | .set_clock = sdhci_s3c_set_clock, |
Marek Szyprowski | ce5f036 | 2010-08-10 18:01:56 -0700 | [diff] [blame] | 367 | .get_min_clock = sdhci_s3c_get_min_clock, |
Jaehoon Chung | 548f07d | 2011-01-12 11:59:12 +0900 | [diff] [blame] | 368 | .platform_8bit_width = sdhci_s3c_platform_8bit_width, |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 369 | }; |
| 370 | |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 371 | static void sdhci_s3c_notify_change(struct platform_device *dev, int state) |
| 372 | { |
| 373 | struct sdhci_host *host = platform_get_drvdata(dev); |
Marek Szyprowski | 06fe577 | 2010-09-20 15:03:42 +0200 | [diff] [blame] | 374 | unsigned long flags; |
| 375 | |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 376 | if (host) { |
Marek Szyprowski | 06fe577 | 2010-09-20 15:03:42 +0200 | [diff] [blame] | 377 | spin_lock_irqsave(&host->lock, flags); |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 378 | if (state) { |
| 379 | dev_dbg(&dev->dev, "card inserted.\n"); |
| 380 | host->flags &= ~SDHCI_DEVICE_DEAD; |
| 381 | host->quirks |= SDHCI_QUIRK_BROKEN_CARD_DETECTION; |
| 382 | } else { |
| 383 | dev_dbg(&dev->dev, "card removed.\n"); |
| 384 | host->flags |= SDHCI_DEVICE_DEAD; |
| 385 | host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION; |
| 386 | } |
Kyungmin Park | f522886 | 2010-08-19 14:13:37 -0700 | [diff] [blame] | 387 | tasklet_schedule(&host->card_tasklet); |
Marek Szyprowski | 06fe577 | 2010-09-20 15:03:42 +0200 | [diff] [blame] | 388 | spin_unlock_irqrestore(&host->lock, flags); |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 389 | } |
| 390 | } |
| 391 | |
| 392 | static irqreturn_t sdhci_s3c_gpio_card_detect_thread(int irq, void *dev_id) |
| 393 | { |
| 394 | struct sdhci_s3c *sc = dev_id; |
| 395 | int status = gpio_get_value(sc->ext_cd_gpio); |
| 396 | if (sc->pdata->ext_cd_gpio_invert) |
| 397 | status = !status; |
| 398 | sdhci_s3c_notify_change(sc->pdev, status); |
| 399 | return IRQ_HANDLED; |
| 400 | } |
| 401 | |
| 402 | static void sdhci_s3c_setup_card_detect_gpio(struct sdhci_s3c *sc) |
| 403 | { |
| 404 | struct s3c_sdhci_platdata *pdata = sc->pdata; |
| 405 | struct device *dev = &sc->pdev->dev; |
| 406 | |
| 407 | if (gpio_request(pdata->ext_cd_gpio, "SDHCI EXT CD") == 0) { |
| 408 | sc->ext_cd_gpio = pdata->ext_cd_gpio; |
| 409 | sc->ext_cd_irq = gpio_to_irq(pdata->ext_cd_gpio); |
| 410 | if (sc->ext_cd_irq && |
| 411 | request_threaded_irq(sc->ext_cd_irq, NULL, |
| 412 | sdhci_s3c_gpio_card_detect_thread, |
Jingoo Han | 2ad0b24 | 2012-08-29 14:35:06 +0900 | [diff] [blame] | 413 | IRQF_TRIGGER_RISING | |
| 414 | IRQF_TRIGGER_FALLING | |
| 415 | IRQF_ONESHOT, |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 416 | dev_name(dev), sc) == 0) { |
| 417 | int status = gpio_get_value(sc->ext_cd_gpio); |
| 418 | if (pdata->ext_cd_gpio_invert) |
| 419 | status = !status; |
| 420 | sdhci_s3c_notify_change(sc->pdev, status); |
| 421 | } else { |
| 422 | dev_warn(dev, "cannot request irq for card detect\n"); |
| 423 | sc->ext_cd_irq = 0; |
| 424 | } |
| 425 | } else { |
| 426 | dev_err(dev, "cannot request gpio for card detect\n"); |
| 427 | } |
| 428 | } |
| 429 | |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 430 | #ifdef CONFIG_OF |
| 431 | static int __devinit sdhci_s3c_parse_dt(struct device *dev, |
| 432 | struct sdhci_host *host, struct s3c_sdhci_platdata *pdata) |
| 433 | { |
| 434 | struct device_node *node = dev->of_node; |
| 435 | struct sdhci_s3c *ourhost = to_s3c(host); |
| 436 | u32 max_width; |
| 437 | int gpio, cnt, ret; |
| 438 | |
| 439 | /* if the bus-width property is not specified, assume width as 1 */ |
| 440 | if (of_property_read_u32(node, "bus-width", &max_width)) |
| 441 | max_width = 1; |
| 442 | pdata->max_width = max_width; |
| 443 | |
| 444 | ourhost->gpios = devm_kzalloc(dev, NUM_GPIOS(pdata->max_width) * |
| 445 | sizeof(int), GFP_KERNEL); |
| 446 | if (!ourhost->gpios) |
| 447 | return -ENOMEM; |
| 448 | |
| 449 | /* get the card detection method */ |
| 450 | if (of_get_property(node, "broken-cd", 0)) { |
| 451 | pdata->cd_type = S3C_SDHCI_CD_NONE; |
| 452 | goto setup_bus; |
| 453 | } |
| 454 | |
| 455 | if (of_get_property(node, "non-removable", 0)) { |
| 456 | pdata->cd_type = S3C_SDHCI_CD_PERMANENT; |
| 457 | goto setup_bus; |
| 458 | } |
| 459 | |
| 460 | gpio = of_get_named_gpio(node, "cd-gpios", 0); |
| 461 | if (gpio_is_valid(gpio)) { |
| 462 | pdata->cd_type = S3C_SDHCI_CD_GPIO; |
| 463 | goto found_cd; |
| 464 | } else if (gpio != -ENOENT) { |
| 465 | dev_err(dev, "invalid card detect gpio specified\n"); |
| 466 | return -EINVAL; |
| 467 | } |
| 468 | |
| 469 | gpio = of_get_named_gpio(node, "samsung,cd-pinmux-gpio", 0); |
| 470 | if (gpio_is_valid(gpio)) { |
| 471 | pdata->cd_type = S3C_SDHCI_CD_INTERNAL; |
| 472 | goto found_cd; |
| 473 | } else if (gpio != -ENOENT) { |
| 474 | dev_err(dev, "invalid card detect gpio specified\n"); |
| 475 | return -EINVAL; |
| 476 | } |
| 477 | |
| 478 | dev_info(dev, "assuming no card detect line available\n"); |
| 479 | pdata->cd_type = S3C_SDHCI_CD_NONE; |
| 480 | |
| 481 | found_cd: |
| 482 | if (pdata->cd_type == S3C_SDHCI_CD_GPIO) { |
| 483 | pdata->ext_cd_gpio = gpio; |
| 484 | ourhost->ext_cd_gpio = -1; |
| 485 | if (of_get_property(node, "cd-inverted", NULL)) |
| 486 | pdata->ext_cd_gpio_invert = 1; |
| 487 | } else if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) { |
| 488 | ret = gpio_request(gpio, "sdhci-cd"); |
| 489 | if (ret) { |
| 490 | dev_err(dev, "card detect gpio request failed\n"); |
| 491 | return -EINVAL; |
| 492 | } |
| 493 | ourhost->ext_cd_gpio = gpio; |
| 494 | } |
| 495 | |
| 496 | setup_bus: |
| 497 | /* get the gpios for command, clock and data lines */ |
| 498 | for (cnt = 0; cnt < NUM_GPIOS(pdata->max_width); cnt++) { |
| 499 | gpio = of_get_gpio(node, cnt); |
| 500 | if (!gpio_is_valid(gpio)) { |
| 501 | dev_err(dev, "invalid gpio[%d]\n", cnt); |
| 502 | goto err_free_dt_cd_gpio; |
| 503 | } |
| 504 | ourhost->gpios[cnt] = gpio; |
| 505 | } |
| 506 | |
| 507 | for (cnt = 0; cnt < NUM_GPIOS(pdata->max_width); cnt++) { |
| 508 | ret = gpio_request(ourhost->gpios[cnt], "sdhci-gpio"); |
| 509 | if (ret) { |
| 510 | dev_err(dev, "gpio[%d] request failed\n", cnt); |
| 511 | goto err_free_dt_gpios; |
| 512 | } |
| 513 | } |
| 514 | |
| 515 | return 0; |
| 516 | |
| 517 | err_free_dt_gpios: |
| 518 | while (--cnt >= 0) |
| 519 | gpio_free(ourhost->gpios[cnt]); |
| 520 | err_free_dt_cd_gpio: |
| 521 | if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) |
| 522 | gpio_free(ourhost->ext_cd_gpio); |
| 523 | return -EINVAL; |
| 524 | } |
| 525 | #else |
| 526 | static int __devinit sdhci_s3c_parse_dt(struct device *dev, |
| 527 | struct sdhci_host *host, struct s3c_sdhci_platdata *pdata) |
| 528 | { |
| 529 | return -EINVAL; |
| 530 | } |
| 531 | #endif |
| 532 | |
| 533 | static const struct of_device_id sdhci_s3c_dt_match[]; |
| 534 | |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 535 | static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data( |
| 536 | struct platform_device *pdev) |
| 537 | { |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 538 | #ifdef CONFIG_OF |
| 539 | if (pdev->dev.of_node) { |
| 540 | const struct of_device_id *match; |
| 541 | match = of_match_node(sdhci_s3c_dt_match, pdev->dev.of_node); |
| 542 | return (struct sdhci_s3c_drv_data *)match->data; |
| 543 | } |
| 544 | #endif |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 545 | return (struct sdhci_s3c_drv_data *) |
| 546 | platform_get_device_id(pdev)->driver_data; |
| 547 | } |
| 548 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 549 | static int __devinit sdhci_s3c_probe(struct platform_device *pdev) |
| 550 | { |
Thomas Abraham | 1d4dc33 | 2012-02-16 22:23:59 +0900 | [diff] [blame] | 551 | struct s3c_sdhci_platdata *pdata; |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 552 | struct sdhci_s3c_drv_data *drv_data; |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 553 | struct device *dev = &pdev->dev; |
| 554 | struct sdhci_host *host; |
| 555 | struct sdhci_s3c *sc; |
| 556 | struct resource *res; |
| 557 | int ret, irq, ptr, clks; |
| 558 | |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 559 | if (!pdev->dev.platform_data && !pdev->dev.of_node) { |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 560 | dev_err(dev, "no device data specified\n"); |
| 561 | return -ENOENT; |
| 562 | } |
| 563 | |
| 564 | irq = platform_get_irq(pdev, 0); |
| 565 | if (irq < 0) { |
| 566 | dev_err(dev, "no irq specified\n"); |
| 567 | return irq; |
| 568 | } |
| 569 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 570 | host = sdhci_alloc_host(dev, sizeof(struct sdhci_s3c)); |
| 571 | if (IS_ERR(host)) { |
| 572 | dev_err(dev, "sdhci_alloc_host() failed\n"); |
| 573 | return PTR_ERR(host); |
| 574 | } |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 575 | sc = sdhci_priv(host); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 576 | |
Thomas Abraham | 1d4dc33 | 2012-02-16 22:23:59 +0900 | [diff] [blame] | 577 | pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL); |
| 578 | if (!pdata) { |
| 579 | ret = -ENOMEM; |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 580 | goto err_pdata; |
Thomas Abraham | 1d4dc33 | 2012-02-16 22:23:59 +0900 | [diff] [blame] | 581 | } |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 582 | |
| 583 | if (pdev->dev.of_node) { |
| 584 | ret = sdhci_s3c_parse_dt(&pdev->dev, host, pdata); |
| 585 | if (ret) |
| 586 | goto err_pdata; |
| 587 | } else { |
| 588 | memcpy(pdata, pdev->dev.platform_data, sizeof(*pdata)); |
| 589 | sc->ext_cd_gpio = -1; /* invalid gpio number */ |
| 590 | } |
Thomas Abraham | 1d4dc33 | 2012-02-16 22:23:59 +0900 | [diff] [blame] | 591 | |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 592 | drv_data = sdhci_s3c_get_driver_data(pdev); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 593 | |
| 594 | sc->host = host; |
| 595 | sc->pdev = pdev; |
| 596 | sc->pdata = pdata; |
| 597 | |
| 598 | platform_set_drvdata(pdev, host); |
| 599 | |
| 600 | sc->clk_io = clk_get(dev, "hsmmc"); |
| 601 | if (IS_ERR(sc->clk_io)) { |
| 602 | dev_err(dev, "failed to get io clock\n"); |
| 603 | ret = PTR_ERR(sc->clk_io); |
| 604 | goto err_io_clk; |
| 605 | } |
| 606 | |
| 607 | /* enable the local io clock and keep it running for the moment. */ |
| 608 | clk_enable(sc->clk_io); |
| 609 | |
| 610 | for (clks = 0, ptr = 0; ptr < MAX_BUS_CLK; ptr++) { |
| 611 | struct clk *clk; |
Rajeshwari Shinde | 4346b6d | 2011-11-03 10:52:58 +0900 | [diff] [blame] | 612 | char name[14]; |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 613 | |
Rajeshwari Shinde | 4346b6d | 2011-11-03 10:52:58 +0900 | [diff] [blame] | 614 | snprintf(name, 14, "mmc_busclk.%d", ptr); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 615 | clk = clk_get(dev, name); |
Jingoo Han | 2ad0b24 | 2012-08-29 14:35:06 +0900 | [diff] [blame] | 616 | if (IS_ERR(clk)) |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 617 | continue; |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 618 | |
| 619 | clks++; |
| 620 | sc->clk_bus[ptr] = clk; |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 621 | |
| 622 | /* |
| 623 | * save current clock index to know which clock bus |
| 624 | * is used later in overriding functions. |
| 625 | */ |
| 626 | sc->cur_clk = ptr; |
| 627 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 628 | clk_enable(clk); |
| 629 | |
| 630 | dev_info(dev, "clock source %d: %s (%ld Hz)\n", |
| 631 | ptr, name, clk_get_rate(clk)); |
| 632 | } |
| 633 | |
| 634 | if (clks == 0) { |
| 635 | dev_err(dev, "failed to find any bus clocks\n"); |
| 636 | ret = -ENOENT; |
| 637 | goto err_no_busclks; |
| 638 | } |
| 639 | |
Julia Lawall | 9bda6da | 2012-03-08 23:24:53 -0500 | [diff] [blame] | 640 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 641 | host->ioaddr = devm_request_and_ioremap(&pdev->dev, res); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 642 | if (!host->ioaddr) { |
| 643 | dev_err(dev, "failed to map registers\n"); |
| 644 | ret = -ENXIO; |
| 645 | goto err_req_regs; |
| 646 | } |
| 647 | |
| 648 | /* Ensure we have minimal gpio selected CMD/CLK/Detect */ |
| 649 | if (pdata->cfg_gpio) |
| 650 | pdata->cfg_gpio(pdev, pdata->max_width); |
| 651 | |
| 652 | host->hw_name = "samsung-hsmmc"; |
| 653 | host->ops = &sdhci_s3c_ops; |
| 654 | host->quirks = 0; |
| 655 | host->irq = irq; |
| 656 | |
| 657 | /* Setup quirks for the controller */ |
Thomas Abraham | b2e75ef | 2010-05-26 14:42:05 -0700 | [diff] [blame] | 658 | host->quirks |= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC; |
Marek Szyprowski | a1d5646 | 2010-08-10 18:01:57 -0700 | [diff] [blame] | 659 | host->quirks |= SDHCI_QUIRK_NO_HISPD_BIT; |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 660 | if (drv_data) |
| 661 | host->quirks |= drv_data->sdhci_quirks; |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 662 | |
| 663 | #ifndef CONFIG_MMC_SDHCI_S3C_DMA |
| 664 | |
| 665 | /* we currently see overruns on errors, so disable the SDMA |
| 666 | * support as well. */ |
| 667 | host->quirks |= SDHCI_QUIRK_BROKEN_DMA; |
| 668 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 669 | #endif /* CONFIG_MMC_SDHCI_S3C_DMA */ |
| 670 | |
| 671 | /* It seems we do not get an DATA transfer complete on non-busy |
| 672 | * transfers, not sure if this is a problem with this specific |
| 673 | * SDHCI block, or a missing configuration that needs to be set. */ |
| 674 | host->quirks |= SDHCI_QUIRK_NO_BUSY_IRQ; |
| 675 | |
Kyungmin Park | 732f0e3 | 2010-10-30 12:58:56 +0900 | [diff] [blame] | 676 | /* This host supports the Auto CMD12 */ |
| 677 | host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12; |
| 678 | |
Jaehoon Chung | 7199e2b | 2011-07-12 17:30:47 +0900 | [diff] [blame] | 679 | /* Samsung SoCs need BROKEN_ADMA_ZEROLEN_DESC */ |
| 680 | host->quirks |= SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC; |
| 681 | |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 682 | if (pdata->cd_type == S3C_SDHCI_CD_NONE || |
| 683 | pdata->cd_type == S3C_SDHCI_CD_PERMANENT) |
| 684 | host->quirks |= SDHCI_QUIRK_BROKEN_CARD_DETECTION; |
| 685 | |
| 686 | if (pdata->cd_type == S3C_SDHCI_CD_PERMANENT) |
| 687 | host->mmc->caps = MMC_CAP_NONREMOVABLE; |
| 688 | |
Thomas Abraham | 0d22c77 | 2012-03-31 23:29:45 -0400 | [diff] [blame] | 689 | switch (pdata->max_width) { |
| 690 | case 8: |
| 691 | host->mmc->caps |= MMC_CAP_8_BIT_DATA; |
| 692 | case 4: |
| 693 | host->mmc->caps |= MMC_CAP_4_BIT_DATA; |
| 694 | break; |
| 695 | } |
| 696 | |
Sangwook Lee | fa1773c | 2011-11-07 17:05:22 +0000 | [diff] [blame] | 697 | if (pdata->pm_caps) |
| 698 | host->mmc->pm_caps |= pdata->pm_caps; |
| 699 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 700 | host->quirks |= (SDHCI_QUIRK_32BIT_DMA_ADDR | |
| 701 | SDHCI_QUIRK_32BIT_DMA_SIZE); |
| 702 | |
Hyuk Lee | 3fe42e0 | 2010-08-10 18:01:55 -0700 | [diff] [blame] | 703 | /* HSMMC on Samsung SoCs uses SDCLK as timeout clock */ |
| 704 | host->quirks |= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK; |
| 705 | |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 706 | /* |
| 707 | * If controller does not have internal clock divider, |
| 708 | * we can use overriding functions instead of default. |
| 709 | */ |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 710 | if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK) { |
Jeongbae Seo | 253e0a7 | 2010-10-08 17:46:21 +0900 | [diff] [blame] | 711 | sdhci_s3c_ops.set_clock = sdhci_cmu_set_clock; |
| 712 | sdhci_s3c_ops.get_min_clock = sdhci_cmu_get_min_clock; |
| 713 | sdhci_s3c_ops.get_max_clock = sdhci_cmu_get_max_clock; |
| 714 | } |
| 715 | |
Jeongbae Seo | b3824f2 | 2010-10-08 17:46:20 +0900 | [diff] [blame] | 716 | /* It supports additional host capabilities if needed */ |
| 717 | if (pdata->host_caps) |
| 718 | host->mmc->caps |= pdata->host_caps; |
| 719 | |
Jaehoon Chung | c1c4b66 | 2012-02-07 15:59:01 +0900 | [diff] [blame] | 720 | if (pdata->host_caps2) |
| 721 | host->mmc->caps2 |= pdata->host_caps2; |
| 722 | |
Mark Brown | 9f4e815 | 2012-03-31 23:31:55 -0400 | [diff] [blame] | 723 | pm_runtime_enable(&pdev->dev); |
| 724 | pm_runtime_set_autosuspend_delay(&pdev->dev, 50); |
| 725 | pm_runtime_use_autosuspend(&pdev->dev); |
| 726 | pm_suspend_ignore_children(&pdev->dev, 1); |
| 727 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 728 | ret = sdhci_add_host(host); |
| 729 | if (ret) { |
| 730 | dev_err(dev, "sdhci_add_host() failed\n"); |
Mark Brown | 9f4e815 | 2012-03-31 23:31:55 -0400 | [diff] [blame] | 731 | pm_runtime_forbid(&pdev->dev); |
| 732 | pm_runtime_get_noresume(&pdev->dev); |
Julia Lawall | 9bda6da | 2012-03-08 23:24:53 -0500 | [diff] [blame] | 733 | goto err_req_regs; |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 734 | } |
| 735 | |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 736 | /* The following two methods of card detection might call |
| 737 | sdhci_s3c_notify_change() immediately, so they can be called |
| 738 | only after sdhci_add_host(). Setup errors are ignored. */ |
| 739 | if (pdata->cd_type == S3C_SDHCI_CD_EXTERNAL && pdata->ext_cd_init) |
| 740 | pdata->ext_cd_init(&sdhci_s3c_notify_change); |
| 741 | if (pdata->cd_type == S3C_SDHCI_CD_GPIO && |
| 742 | gpio_is_valid(pdata->ext_cd_gpio)) |
| 743 | sdhci_s3c_setup_card_detect_gpio(sc); |
| 744 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 745 | return 0; |
| 746 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 747 | err_req_regs: |
| 748 | for (ptr = 0; ptr < MAX_BUS_CLK; ptr++) { |
Jaehoon Chung | 326adda | 2011-10-12 13:14:29 +0900 | [diff] [blame] | 749 | if (sc->clk_bus[ptr]) { |
| 750 | clk_disable(sc->clk_bus[ptr]); |
| 751 | clk_put(sc->clk_bus[ptr]); |
| 752 | } |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 753 | } |
| 754 | |
| 755 | err_no_busclks: |
| 756 | clk_disable(sc->clk_io); |
| 757 | clk_put(sc->clk_io); |
| 758 | |
| 759 | err_io_clk: |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 760 | for (ptr = 0; ptr < NUM_GPIOS(sc->pdata->max_width); ptr++) |
| 761 | gpio_free(sc->gpios[ptr]); |
| 762 | if (pdata->cd_type == S3C_SDHCI_CD_INTERNAL) |
| 763 | gpio_free(sc->ext_cd_gpio); |
| 764 | |
| 765 | err_pdata: |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 766 | sdhci_free_host(host); |
| 767 | |
| 768 | return ret; |
| 769 | } |
| 770 | |
| 771 | static int __devexit sdhci_s3c_remove(struct platform_device *pdev) |
| 772 | { |
Marek Szyprowski | 9d51a6b | 2010-07-20 13:24:33 -0700 | [diff] [blame] | 773 | struct sdhci_host *host = platform_get_drvdata(pdev); |
| 774 | struct sdhci_s3c *sc = sdhci_priv(host); |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 775 | struct s3c_sdhci_platdata *pdata = sc->pdata; |
Marek Szyprowski | 9d51a6b | 2010-07-20 13:24:33 -0700 | [diff] [blame] | 776 | int ptr; |
| 777 | |
Marek Szyprowski | 17866e1 | 2010-08-10 18:01:58 -0700 | [diff] [blame] | 778 | if (pdata->cd_type == S3C_SDHCI_CD_EXTERNAL && pdata->ext_cd_cleanup) |
| 779 | pdata->ext_cd_cleanup(&sdhci_s3c_notify_change); |
| 780 | |
| 781 | if (sc->ext_cd_irq) |
| 782 | free_irq(sc->ext_cd_irq, sc); |
| 783 | |
| 784 | if (gpio_is_valid(sc->ext_cd_gpio)) |
| 785 | gpio_free(sc->ext_cd_gpio); |
| 786 | |
Marek Szyprowski | 9d51a6b | 2010-07-20 13:24:33 -0700 | [diff] [blame] | 787 | sdhci_remove_host(host, 1); |
| 788 | |
Mark Brown | 9f4e815 | 2012-03-31 23:31:55 -0400 | [diff] [blame] | 789 | pm_runtime_disable(&pdev->dev); |
| 790 | |
Marek Szyprowski | 9d51a6b | 2010-07-20 13:24:33 -0700 | [diff] [blame] | 791 | for (ptr = 0; ptr < 3; ptr++) { |
Marek Szyprowski | 9320f7c | 2010-09-23 16:22:05 +0200 | [diff] [blame] | 792 | if (sc->clk_bus[ptr]) { |
| 793 | clk_disable(sc->clk_bus[ptr]); |
| 794 | clk_put(sc->clk_bus[ptr]); |
| 795 | } |
Marek Szyprowski | 9d51a6b | 2010-07-20 13:24:33 -0700 | [diff] [blame] | 796 | } |
| 797 | clk_disable(sc->clk_io); |
| 798 | clk_put(sc->clk_io); |
| 799 | |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 800 | if (pdev->dev.of_node) { |
| 801 | for (ptr = 0; ptr < NUM_GPIOS(sc->pdata->max_width); ptr++) |
| 802 | gpio_free(sc->gpios[ptr]); |
| 803 | } |
| 804 | |
Marek Szyprowski | 9d51a6b | 2010-07-20 13:24:33 -0700 | [diff] [blame] | 805 | sdhci_free_host(host); |
| 806 | platform_set_drvdata(pdev, NULL); |
| 807 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 808 | return 0; |
| 809 | } |
| 810 | |
Mark Brown | d5e9c02 | 2012-03-03 00:46:41 +0000 | [diff] [blame] | 811 | #ifdef CONFIG_PM_SLEEP |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 812 | static int sdhci_s3c_suspend(struct device *dev) |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 813 | { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 814 | struct sdhci_host *host = dev_get_drvdata(dev); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 815 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 816 | return sdhci_suspend_host(host); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 817 | } |
| 818 | |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 819 | static int sdhci_s3c_resume(struct device *dev) |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 820 | { |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 821 | struct sdhci_host *host = dev_get_drvdata(dev); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 822 | |
Wonil Choi | 65d1351 | 2011-06-29 11:38:38 +0900 | [diff] [blame] | 823 | return sdhci_resume_host(host); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 824 | } |
Mark Brown | d5e9c02 | 2012-03-03 00:46:41 +0000 | [diff] [blame] | 825 | #endif |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 826 | |
Mark Brown | 9f4e815 | 2012-03-31 23:31:55 -0400 | [diff] [blame] | 827 | #ifdef CONFIG_PM_RUNTIME |
| 828 | static int sdhci_s3c_runtime_suspend(struct device *dev) |
| 829 | { |
| 830 | struct sdhci_host *host = dev_get_drvdata(dev); |
| 831 | |
| 832 | return sdhci_runtime_suspend_host(host); |
| 833 | } |
| 834 | |
| 835 | static int sdhci_s3c_runtime_resume(struct device *dev) |
| 836 | { |
| 837 | struct sdhci_host *host = dev_get_drvdata(dev); |
| 838 | |
| 839 | return sdhci_runtime_resume_host(host); |
| 840 | } |
| 841 | #endif |
| 842 | |
Mark Brown | d5e9c02 | 2012-03-03 00:46:41 +0000 | [diff] [blame] | 843 | #ifdef CONFIG_PM |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 844 | static const struct dev_pm_ops sdhci_s3c_pmops = { |
Mark Brown | d5e9c02 | 2012-03-03 00:46:41 +0000 | [diff] [blame] | 845 | SET_SYSTEM_SLEEP_PM_OPS(sdhci_s3c_suspend, sdhci_s3c_resume) |
Mark Brown | 9f4e815 | 2012-03-31 23:31:55 -0400 | [diff] [blame] | 846 | SET_RUNTIME_PM_OPS(sdhci_s3c_runtime_suspend, sdhci_s3c_runtime_resume, |
| 847 | NULL) |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 848 | }; |
| 849 | |
| 850 | #define SDHCI_S3C_PMOPS (&sdhci_s3c_pmops) |
| 851 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 852 | #else |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 853 | #define SDHCI_S3C_PMOPS NULL |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 854 | #endif |
| 855 | |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 856 | #if defined(CONFIG_CPU_EXYNOS4210) || defined(CONFIG_SOC_EXYNOS4212) |
| 857 | static struct sdhci_s3c_drv_data exynos4_sdhci_drv_data = { |
| 858 | .sdhci_quirks = SDHCI_QUIRK_NONSTANDARD_CLOCK, |
| 859 | }; |
| 860 | #define EXYNOS4_SDHCI_DRV_DATA ((kernel_ulong_t)&exynos4_sdhci_drv_data) |
| 861 | #else |
| 862 | #define EXYNOS4_SDHCI_DRV_DATA ((kernel_ulong_t)NULL) |
| 863 | #endif |
| 864 | |
| 865 | static struct platform_device_id sdhci_s3c_driver_ids[] = { |
| 866 | { |
| 867 | .name = "s3c-sdhci", |
| 868 | .driver_data = (kernel_ulong_t)NULL, |
| 869 | }, { |
| 870 | .name = "exynos4-sdhci", |
| 871 | .driver_data = EXYNOS4_SDHCI_DRV_DATA, |
| 872 | }, |
| 873 | { } |
| 874 | }; |
| 875 | MODULE_DEVICE_TABLE(platform, sdhci_s3c_driver_ids); |
| 876 | |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 877 | #ifdef CONFIG_OF |
| 878 | static const struct of_device_id sdhci_s3c_dt_match[] = { |
| 879 | { .compatible = "samsung,s3c6410-sdhci", }, |
| 880 | { .compatible = "samsung,exynos4210-sdhci", |
| 881 | .data = (void *)EXYNOS4_SDHCI_DRV_DATA }, |
| 882 | {}, |
| 883 | }; |
| 884 | MODULE_DEVICE_TABLE(of, sdhci_s3c_dt_match); |
| 885 | #endif |
| 886 | |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 887 | static struct platform_driver sdhci_s3c_driver = { |
| 888 | .probe = sdhci_s3c_probe, |
| 889 | .remove = __devexit_p(sdhci_s3c_remove), |
Thomas Abraham | 3119936a | 2012-02-16 22:23:58 +0900 | [diff] [blame] | 890 | .id_table = sdhci_s3c_driver_ids, |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 891 | .driver = { |
| 892 | .owner = THIS_MODULE, |
| 893 | .name = "s3c-sdhci", |
Thomas Abraham | cd1b00e | 2012-08-23 17:10:09 +0000 | [diff] [blame] | 894 | .of_match_table = of_match_ptr(sdhci_s3c_dt_match), |
Manuel Lauss | 29495aa | 2011-11-03 11:09:45 +0100 | [diff] [blame] | 895 | .pm = SDHCI_S3C_PMOPS, |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 896 | }, |
| 897 | }; |
| 898 | |
Axel Lin | d1f81a6 | 2011-11-26 12:55:43 +0800 | [diff] [blame] | 899 | module_platform_driver(sdhci_s3c_driver); |
Ben Dooks | 0d1bb41 | 2009-06-14 13:52:37 +0100 | [diff] [blame] | 900 | |
| 901 | MODULE_DESCRIPTION("Samsung SDHCI (HSMMC) glue"); |
| 902 | MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>"); |
| 903 | MODULE_LICENSE("GPL v2"); |
| 904 | MODULE_ALIAS("platform:s3c-sdhci"); |