blob: e81a0339ab5c60f2390648b0a695403f6478e4e4 [file] [log] [blame]
Ben Dooks0d1bb412009-06-14 13:52:37 +01001/* 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 Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/slab.h>
Ben Dooks0d1bb412009-06-14 13:52:37 +010019#include <linux/clk.h>
20#include <linux/io.h>
Marek Szyprowski17866e12010-08-10 18:01:58 -070021#include <linux/gpio.h>
Mark Brown55156d22011-07-29 15:35:00 +010022#include <linux/module.h>
Ben Dooks0d1bb412009-06-14 13:52:37 +010023
24#include <linux/mmc/host.h>
25
26#include <plat/sdhci.h>
27#include <plat/regs-sdhci.h>
28
29#include "sdhci.h"
30
31#define MAX_BUS_CLK (4)
32
33/**
34 * struct sdhci_s3c - S3C SDHCI instance
35 * @host: The SDHCI host created
36 * @pdev: The platform device we where created from.
37 * @ioarea: The resource created when we claimed the IO area.
38 * @pdata: The platform data for this controller.
39 * @cur_clk: The index of the current bus clock.
40 * @clk_io: The clock for the internal bus interface.
41 * @clk_bus: The clocks that are available for the SD/MMC bus clock.
42 */
43struct sdhci_s3c {
44 struct sdhci_host *host;
45 struct platform_device *pdev;
46 struct resource *ioarea;
47 struct s3c_sdhci_platdata *pdata;
48 unsigned int cur_clk;
Marek Szyprowski17866e12010-08-10 18:01:58 -070049 int ext_cd_irq;
50 int ext_cd_gpio;
Ben Dooks0d1bb412009-06-14 13:52:37 +010051
52 struct clk *clk_io;
53 struct clk *clk_bus[MAX_BUS_CLK];
54};
55
Thomas Abraham3119936a2012-02-16 22:23:58 +090056/**
57 * struct sdhci_s3c_driver_data - S3C SDHCI platform specific driver data
58 * @sdhci_quirks: sdhci host specific quirks.
59 *
60 * Specifies platform specific configuration of sdhci controller.
61 * Note: A structure for driver specific platform data is used for future
62 * expansion of its usage.
63 */
64struct sdhci_s3c_drv_data {
65 unsigned int sdhci_quirks;
66};
67
Ben Dooks0d1bb412009-06-14 13:52:37 +010068static inline struct sdhci_s3c *to_s3c(struct sdhci_host *host)
69{
70 return sdhci_priv(host);
71}
72
73/**
74 * get_curclk - convert ctrl2 register to clock source number
75 * @ctrl2: Control2 register value.
76 */
77static u32 get_curclk(u32 ctrl2)
78{
79 ctrl2 &= S3C_SDHCI_CTRL2_SELBASECLK_MASK;
80 ctrl2 >>= S3C_SDHCI_CTRL2_SELBASECLK_SHIFT;
81
82 return ctrl2;
83}
84
85static void sdhci_s3c_check_sclk(struct sdhci_host *host)
86{
87 struct sdhci_s3c *ourhost = to_s3c(host);
88 u32 tmp = readl(host->ioaddr + S3C_SDHCI_CONTROL2);
89
90 if (get_curclk(tmp) != ourhost->cur_clk) {
91 dev_dbg(&ourhost->pdev->dev, "restored ctrl2 clock setting\n");
92
93 tmp &= ~S3C_SDHCI_CTRL2_SELBASECLK_MASK;
94 tmp |= ourhost->cur_clk << S3C_SDHCI_CTRL2_SELBASECLK_SHIFT;
Jingoo Han7003fec2011-12-14 13:25:46 +090095 writel(tmp, host->ioaddr + S3C_SDHCI_CONTROL2);
Ben Dooks0d1bb412009-06-14 13:52:37 +010096 }
97}
98
99/**
100 * sdhci_s3c_get_max_clk - callback to get maximum clock frequency.
101 * @host: The SDHCI host instance.
102 *
103 * Callback to return the maximum clock rate acheivable by the controller.
104*/
105static unsigned int sdhci_s3c_get_max_clk(struct sdhci_host *host)
106{
107 struct sdhci_s3c *ourhost = to_s3c(host);
108 struct clk *busclk;
109 unsigned int rate, max;
110 int clk;
111
112 /* note, a reset will reset the clock source */
113
114 sdhci_s3c_check_sclk(host);
115
116 for (max = 0, clk = 0; clk < MAX_BUS_CLK; clk++) {
117 busclk = ourhost->clk_bus[clk];
118 if (!busclk)
119 continue;
120
121 rate = clk_get_rate(busclk);
122 if (rate > max)
123 max = rate;
124 }
125
126 return max;
127}
128
Ben Dooks0d1bb412009-06-14 13:52:37 +0100129/**
130 * sdhci_s3c_consider_clock - consider one the bus clocks for current setting
131 * @ourhost: Our SDHCI instance.
132 * @src: The source clock index.
133 * @wanted: The clock frequency wanted.
134 */
135static unsigned int sdhci_s3c_consider_clock(struct sdhci_s3c *ourhost,
136 unsigned int src,
137 unsigned int wanted)
138{
139 unsigned long rate;
140 struct clk *clksrc = ourhost->clk_bus[src];
141 int div;
142
143 if (!clksrc)
144 return UINT_MAX;
145
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900146 /*
Thomas Abraham3119936a2012-02-16 22:23:58 +0900147 * If controller uses a non-standard clock division, find the best clock
148 * speed possible with selected clock source and skip the division.
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900149 */
Thomas Abraham3119936a2012-02-16 22:23:58 +0900150 if (ourhost->host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK) {
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900151 rate = clk_round_rate(clksrc, wanted);
152 return wanted - rate;
153 }
154
Ben Dooks0d1bb412009-06-14 13:52:37 +0100155 rate = clk_get_rate(clksrc);
156
157 for (div = 1; div < 256; div *= 2) {
158 if ((rate / div) <= wanted)
159 break;
160 }
161
162 dev_dbg(&ourhost->pdev->dev, "clk %d: rate %ld, want %d, got %ld\n",
163 src, rate, wanted, rate / div);
164
165 return (wanted - (rate / div));
166}
167
168/**
169 * sdhci_s3c_set_clock - callback on clock change
170 * @host: The SDHCI host being changed
171 * @clock: The clock rate being requested.
172 *
173 * When the card's clock is going to be changed, look at the new frequency
174 * and find the best clock source to go with it.
175*/
176static void sdhci_s3c_set_clock(struct sdhci_host *host, unsigned int clock)
177{
178 struct sdhci_s3c *ourhost = to_s3c(host);
179 unsigned int best = UINT_MAX;
180 unsigned int delta;
181 int best_src = 0;
182 int src;
183 u32 ctrl;
184
185 /* don't bother if the clock is going off. */
186 if (clock == 0)
187 return;
188
189 for (src = 0; src < MAX_BUS_CLK; src++) {
190 delta = sdhci_s3c_consider_clock(ourhost, src, clock);
191 if (delta < best) {
192 best = delta;
193 best_src = src;
194 }
195 }
196
197 dev_dbg(&ourhost->pdev->dev,
198 "selected source %d, clock %d, delta %d\n",
199 best_src, clock, best);
200
201 /* select the new clock source */
202
203 if (ourhost->cur_clk != best_src) {
204 struct clk *clk = ourhost->clk_bus[best_src];
205
206 /* turn clock off to card before changing clock source */
207 writew(0, host->ioaddr + SDHCI_CLOCK_CONTROL);
208
209 ourhost->cur_clk = best_src;
210 host->max_clk = clk_get_rate(clk);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100211
212 ctrl = readl(host->ioaddr + S3C_SDHCI_CONTROL2);
213 ctrl &= ~S3C_SDHCI_CTRL2_SELBASECLK_MASK;
214 ctrl |= best_src << S3C_SDHCI_CTRL2_SELBASECLK_SHIFT;
215 writel(ctrl, host->ioaddr + S3C_SDHCI_CONTROL2);
216 }
217
Thomas Abraham6fe47172011-09-14 12:39:17 +0530218 /* reprogram default hardware configuration */
219 writel(S3C64XX_SDHCI_CONTROL4_DRIVE_9mA,
220 host->ioaddr + S3C64XX_SDHCI_CONTROL4);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100221
Thomas Abraham6fe47172011-09-14 12:39:17 +0530222 ctrl = readl(host->ioaddr + S3C_SDHCI_CONTROL2);
223 ctrl |= (S3C64XX_SDHCI_CTRL2_ENSTAASYNCCLR |
224 S3C64XX_SDHCI_CTRL2_ENCMDCNFMSK |
225 S3C_SDHCI_CTRL2_ENFBCLKRX |
226 S3C_SDHCI_CTRL2_DFCNT_NONE |
227 S3C_SDHCI_CTRL2_ENCLKOUTHOLD);
228 writel(ctrl, host->ioaddr + S3C_SDHCI_CONTROL2);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100229
Thomas Abraham6fe47172011-09-14 12:39:17 +0530230 /* reconfigure the controller for new clock rate */
231 ctrl = (S3C_SDHCI_CTRL3_FCSEL1 | S3C_SDHCI_CTRL3_FCSEL0);
232 if (clock < 25 * 1000000)
233 ctrl |= (S3C_SDHCI_CTRL3_FCSEL3 | S3C_SDHCI_CTRL3_FCSEL2);
234 writel(ctrl, host->ioaddr + S3C_SDHCI_CONTROL3);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100235}
236
Marek Szyprowskice5f0362010-08-10 18:01:56 -0700237/**
238 * sdhci_s3c_get_min_clock - callback to get minimal supported clock value
239 * @host: The SDHCI host being queried
240 *
241 * To init mmc host properly a minimal clock value is needed. For high system
242 * bus clock's values the standard formula gives values out of allowed range.
243 * The clock still can be set to lower values, if clock source other then
244 * system bus is selected.
245*/
246static unsigned int sdhci_s3c_get_min_clock(struct sdhci_host *host)
247{
248 struct sdhci_s3c *ourhost = to_s3c(host);
249 unsigned int delta, min = UINT_MAX;
250 int src;
251
252 for (src = 0; src < MAX_BUS_CLK; src++) {
253 delta = sdhci_s3c_consider_clock(ourhost, src, 0);
254 if (delta == UINT_MAX)
255 continue;
256 /* delta is a negative value in this case */
257 if (-delta < min)
258 min = -delta;
259 }
260 return min;
261}
262
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900263/* sdhci_cmu_get_max_clk - callback to get maximum clock frequency.*/
264static unsigned int sdhci_cmu_get_max_clock(struct sdhci_host *host)
265{
266 struct sdhci_s3c *ourhost = to_s3c(host);
267
268 return clk_round_rate(ourhost->clk_bus[ourhost->cur_clk], UINT_MAX);
269}
270
271/* sdhci_cmu_get_min_clock - callback to get minimal supported clock value. */
272static unsigned int sdhci_cmu_get_min_clock(struct sdhci_host *host)
273{
274 struct sdhci_s3c *ourhost = to_s3c(host);
275
276 /*
277 * initial clock can be in the frequency range of
278 * 100KHz-400KHz, so we set it as max value.
279 */
280 return clk_round_rate(ourhost->clk_bus[ourhost->cur_clk], 400000);
281}
282
283/* sdhci_cmu_set_clock - callback on clock change.*/
284static void sdhci_cmu_set_clock(struct sdhci_host *host, unsigned int clock)
285{
286 struct sdhci_s3c *ourhost = to_s3c(host);
Thomas Abraham3119936a2012-02-16 22:23:58 +0900287 unsigned long timeout;
288 u16 clk = 0;
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900289
290 /* don't bother if the clock is going off */
291 if (clock == 0)
292 return;
293
294 sdhci_s3c_set_clock(host, clock);
295
296 clk_set_rate(ourhost->clk_bus[ourhost->cur_clk], clock);
297
298 host->clock = clock;
Thomas Abraham3119936a2012-02-16 22:23:58 +0900299
300 clk = SDHCI_CLOCK_INT_EN;
301 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
302
303 /* Wait max 20 ms */
304 timeout = 20;
305 while (!((clk = sdhci_readw(host, SDHCI_CLOCK_CONTROL))
306 & SDHCI_CLOCK_INT_STABLE)) {
307 if (timeout == 0) {
308 printk(KERN_ERR "%s: Internal clock never "
309 "stabilised.\n", mmc_hostname(host->mmc));
310 return;
311 }
312 timeout--;
313 mdelay(1);
314 }
315
316 clk |= SDHCI_CLOCK_CARD_EN;
317 sdhci_writew(host, clk, SDHCI_CLOCK_CONTROL);
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900318}
319
Jaehoon Chung548f07d2011-01-12 11:59:12 +0900320/**
321 * sdhci_s3c_platform_8bit_width - support 8bit buswidth
322 * @host: The SDHCI host being queried
323 * @width: MMC_BUS_WIDTH_ macro for the bus width being requested
324 *
325 * We have 8-bit width support but is not a v3 controller.
326 * So we add platform_8bit_width() and support 8bit width.
327 */
328static int sdhci_s3c_platform_8bit_width(struct sdhci_host *host, int width)
329{
330 u8 ctrl;
331
332 ctrl = sdhci_readb(host, SDHCI_HOST_CONTROL);
333
334 switch (width) {
335 case MMC_BUS_WIDTH_8:
336 ctrl |= SDHCI_CTRL_8BITBUS;
337 ctrl &= ~SDHCI_CTRL_4BITBUS;
338 break;
339 case MMC_BUS_WIDTH_4:
340 ctrl |= SDHCI_CTRL_4BITBUS;
341 ctrl &= ~SDHCI_CTRL_8BITBUS;
342 break;
343 default:
Girish K S49bb1e62011-08-26 14:58:18 +0530344 ctrl &= ~SDHCI_CTRL_4BITBUS;
345 ctrl &= ~SDHCI_CTRL_8BITBUS;
Jaehoon Chung548f07d2011-01-12 11:59:12 +0900346 break;
347 }
348
349 sdhci_writeb(host, ctrl, SDHCI_HOST_CONTROL);
350
351 return 0;
352}
353
Ben Dooks0d1bb412009-06-14 13:52:37 +0100354static struct sdhci_ops sdhci_s3c_ops = {
355 .get_max_clock = sdhci_s3c_get_max_clk,
Ben Dooks0d1bb412009-06-14 13:52:37 +0100356 .set_clock = sdhci_s3c_set_clock,
Marek Szyprowskice5f0362010-08-10 18:01:56 -0700357 .get_min_clock = sdhci_s3c_get_min_clock,
Jaehoon Chung548f07d2011-01-12 11:59:12 +0900358 .platform_8bit_width = sdhci_s3c_platform_8bit_width,
Ben Dooks0d1bb412009-06-14 13:52:37 +0100359};
360
Marek Szyprowski17866e12010-08-10 18:01:58 -0700361static void sdhci_s3c_notify_change(struct platform_device *dev, int state)
362{
363 struct sdhci_host *host = platform_get_drvdata(dev);
Marek Szyprowski06fe5772010-09-20 15:03:42 +0200364 unsigned long flags;
365
Marek Szyprowski17866e12010-08-10 18:01:58 -0700366 if (host) {
Marek Szyprowski06fe5772010-09-20 15:03:42 +0200367 spin_lock_irqsave(&host->lock, flags);
Marek Szyprowski17866e12010-08-10 18:01:58 -0700368 if (state) {
369 dev_dbg(&dev->dev, "card inserted.\n");
370 host->flags &= ~SDHCI_DEVICE_DEAD;
371 host->quirks |= SDHCI_QUIRK_BROKEN_CARD_DETECTION;
372 } else {
373 dev_dbg(&dev->dev, "card removed.\n");
374 host->flags |= SDHCI_DEVICE_DEAD;
375 host->quirks &= ~SDHCI_QUIRK_BROKEN_CARD_DETECTION;
376 }
Kyungmin Parkf5228862010-08-19 14:13:37 -0700377 tasklet_schedule(&host->card_tasklet);
Marek Szyprowski06fe5772010-09-20 15:03:42 +0200378 spin_unlock_irqrestore(&host->lock, flags);
Marek Szyprowski17866e12010-08-10 18:01:58 -0700379 }
380}
381
382static irqreturn_t sdhci_s3c_gpio_card_detect_thread(int irq, void *dev_id)
383{
384 struct sdhci_s3c *sc = dev_id;
385 int status = gpio_get_value(sc->ext_cd_gpio);
386 if (sc->pdata->ext_cd_gpio_invert)
387 status = !status;
388 sdhci_s3c_notify_change(sc->pdev, status);
389 return IRQ_HANDLED;
390}
391
392static void sdhci_s3c_setup_card_detect_gpio(struct sdhci_s3c *sc)
393{
394 struct s3c_sdhci_platdata *pdata = sc->pdata;
395 struct device *dev = &sc->pdev->dev;
396
397 if (gpio_request(pdata->ext_cd_gpio, "SDHCI EXT CD") == 0) {
398 sc->ext_cd_gpio = pdata->ext_cd_gpio;
399 sc->ext_cd_irq = gpio_to_irq(pdata->ext_cd_gpio);
400 if (sc->ext_cd_irq &&
401 request_threaded_irq(sc->ext_cd_irq, NULL,
402 sdhci_s3c_gpio_card_detect_thread,
403 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
404 dev_name(dev), sc) == 0) {
405 int status = gpio_get_value(sc->ext_cd_gpio);
406 if (pdata->ext_cd_gpio_invert)
407 status = !status;
408 sdhci_s3c_notify_change(sc->pdev, status);
409 } else {
410 dev_warn(dev, "cannot request irq for card detect\n");
411 sc->ext_cd_irq = 0;
412 }
413 } else {
414 dev_err(dev, "cannot request gpio for card detect\n");
415 }
416}
417
Thomas Abraham3119936a2012-02-16 22:23:58 +0900418static inline struct sdhci_s3c_drv_data *sdhci_s3c_get_driver_data(
419 struct platform_device *pdev)
420{
421 return (struct sdhci_s3c_drv_data *)
422 platform_get_device_id(pdev)->driver_data;
423}
424
Ben Dooks0d1bb412009-06-14 13:52:37 +0100425static int __devinit sdhci_s3c_probe(struct platform_device *pdev)
426{
Thomas Abraham1d4dc332012-02-16 22:23:59 +0900427 struct s3c_sdhci_platdata *pdata;
Thomas Abraham3119936a2012-02-16 22:23:58 +0900428 struct sdhci_s3c_drv_data *drv_data;
Ben Dooks0d1bb412009-06-14 13:52:37 +0100429 struct device *dev = &pdev->dev;
430 struct sdhci_host *host;
431 struct sdhci_s3c *sc;
432 struct resource *res;
433 int ret, irq, ptr, clks;
434
Thomas Abraham1d4dc332012-02-16 22:23:59 +0900435 if (!pdev->dev.platform_data) {
Ben Dooks0d1bb412009-06-14 13:52:37 +0100436 dev_err(dev, "no device data specified\n");
437 return -ENOENT;
438 }
439
440 irq = platform_get_irq(pdev, 0);
441 if (irq < 0) {
442 dev_err(dev, "no irq specified\n");
443 return irq;
444 }
445
446 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
447 if (!res) {
448 dev_err(dev, "no memory specified\n");
449 return -ENOENT;
450 }
451
452 host = sdhci_alloc_host(dev, sizeof(struct sdhci_s3c));
453 if (IS_ERR(host)) {
454 dev_err(dev, "sdhci_alloc_host() failed\n");
455 return PTR_ERR(host);
456 }
457
Thomas Abraham1d4dc332012-02-16 22:23:59 +0900458 pdata = devm_kzalloc(&pdev->dev, sizeof(*pdata), GFP_KERNEL);
459 if (!pdata) {
460 ret = -ENOMEM;
461 goto err_io_clk;
462 }
463 memcpy(pdata, pdev->dev.platform_data, sizeof(*pdata));
464
Thomas Abraham3119936a2012-02-16 22:23:58 +0900465 drv_data = sdhci_s3c_get_driver_data(pdev);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100466 sc = sdhci_priv(host);
467
468 sc->host = host;
469 sc->pdev = pdev;
470 sc->pdata = pdata;
Marek Szyprowski17866e12010-08-10 18:01:58 -0700471 sc->ext_cd_gpio = -1; /* invalid gpio number */
Ben Dooks0d1bb412009-06-14 13:52:37 +0100472
473 platform_set_drvdata(pdev, host);
474
475 sc->clk_io = clk_get(dev, "hsmmc");
476 if (IS_ERR(sc->clk_io)) {
477 dev_err(dev, "failed to get io clock\n");
478 ret = PTR_ERR(sc->clk_io);
479 goto err_io_clk;
480 }
481
482 /* enable the local io clock and keep it running for the moment. */
483 clk_enable(sc->clk_io);
484
485 for (clks = 0, ptr = 0; ptr < MAX_BUS_CLK; ptr++) {
486 struct clk *clk;
Rajeshwari Shinde4346b6d2011-11-03 10:52:58 +0900487 char name[14];
Ben Dooks0d1bb412009-06-14 13:52:37 +0100488
Rajeshwari Shinde4346b6d2011-11-03 10:52:58 +0900489 snprintf(name, 14, "mmc_busclk.%d", ptr);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100490 clk = clk_get(dev, name);
491 if (IS_ERR(clk)) {
Ben Dooks0d1bb412009-06-14 13:52:37 +0100492 continue;
493 }
494
495 clks++;
496 sc->clk_bus[ptr] = clk;
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900497
498 /*
499 * save current clock index to know which clock bus
500 * is used later in overriding functions.
501 */
502 sc->cur_clk = ptr;
503
Ben Dooks0d1bb412009-06-14 13:52:37 +0100504 clk_enable(clk);
505
506 dev_info(dev, "clock source %d: %s (%ld Hz)\n",
507 ptr, name, clk_get_rate(clk));
508 }
509
510 if (clks == 0) {
511 dev_err(dev, "failed to find any bus clocks\n");
512 ret = -ENOENT;
513 goto err_no_busclks;
514 }
515
516 sc->ioarea = request_mem_region(res->start, resource_size(res),
517 mmc_hostname(host->mmc));
518 if (!sc->ioarea) {
519 dev_err(dev, "failed to reserve register area\n");
520 ret = -ENXIO;
521 goto err_req_regs;
522 }
523
524 host->ioaddr = ioremap_nocache(res->start, resource_size(res));
525 if (!host->ioaddr) {
526 dev_err(dev, "failed to map registers\n");
527 ret = -ENXIO;
528 goto err_req_regs;
529 }
530
531 /* Ensure we have minimal gpio selected CMD/CLK/Detect */
532 if (pdata->cfg_gpio)
533 pdata->cfg_gpio(pdev, pdata->max_width);
534
535 host->hw_name = "samsung-hsmmc";
536 host->ops = &sdhci_s3c_ops;
537 host->quirks = 0;
538 host->irq = irq;
539
540 /* Setup quirks for the controller */
Thomas Abrahamb2e75ef2010-05-26 14:42:05 -0700541 host->quirks |= SDHCI_QUIRK_NO_ENDATTR_IN_NOPDESC;
Marek Szyprowskia1d56462010-08-10 18:01:57 -0700542 host->quirks |= SDHCI_QUIRK_NO_HISPD_BIT;
Thomas Abraham3119936a2012-02-16 22:23:58 +0900543 if (drv_data)
544 host->quirks |= drv_data->sdhci_quirks;
Ben Dooks0d1bb412009-06-14 13:52:37 +0100545
546#ifndef CONFIG_MMC_SDHCI_S3C_DMA
547
548 /* we currently see overruns on errors, so disable the SDMA
549 * support as well. */
550 host->quirks |= SDHCI_QUIRK_BROKEN_DMA;
551
Ben Dooks0d1bb412009-06-14 13:52:37 +0100552#endif /* CONFIG_MMC_SDHCI_S3C_DMA */
553
554 /* It seems we do not get an DATA transfer complete on non-busy
555 * transfers, not sure if this is a problem with this specific
556 * SDHCI block, or a missing configuration that needs to be set. */
557 host->quirks |= SDHCI_QUIRK_NO_BUSY_IRQ;
558
Kyungmin Park732f0e32010-10-30 12:58:56 +0900559 /* This host supports the Auto CMD12 */
560 host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12;
561
Jaehoon Chung7199e2b2011-07-12 17:30:47 +0900562 /* Samsung SoCs need BROKEN_ADMA_ZEROLEN_DESC */
563 host->quirks |= SDHCI_QUIRK_BROKEN_ADMA_ZEROLEN_DESC;
564
Marek Szyprowski17866e12010-08-10 18:01:58 -0700565 if (pdata->cd_type == S3C_SDHCI_CD_NONE ||
566 pdata->cd_type == S3C_SDHCI_CD_PERMANENT)
567 host->quirks |= SDHCI_QUIRK_BROKEN_CARD_DETECTION;
568
569 if (pdata->cd_type == S3C_SDHCI_CD_PERMANENT)
570 host->mmc->caps = MMC_CAP_NONREMOVABLE;
571
Thomas Abraham0d22c772012-03-31 23:29:45 -0400572 switch (pdata->max_width) {
573 case 8:
574 host->mmc->caps |= MMC_CAP_8_BIT_DATA;
575 case 4:
576 host->mmc->caps |= MMC_CAP_4_BIT_DATA;
577 break;
578 }
579
Sangwook Leefa1773c2011-11-07 17:05:22 +0000580 if (pdata->pm_caps)
581 host->mmc->pm_caps |= pdata->pm_caps;
582
Ben Dooks0d1bb412009-06-14 13:52:37 +0100583 host->quirks |= (SDHCI_QUIRK_32BIT_DMA_ADDR |
584 SDHCI_QUIRK_32BIT_DMA_SIZE);
585
Hyuk Lee3fe42e02010-08-10 18:01:55 -0700586 /* HSMMC on Samsung SoCs uses SDCLK as timeout clock */
587 host->quirks |= SDHCI_QUIRK_DATA_TIMEOUT_USES_SDCLK;
588
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900589 /*
590 * If controller does not have internal clock divider,
591 * we can use overriding functions instead of default.
592 */
Thomas Abraham3119936a2012-02-16 22:23:58 +0900593 if (host->quirks & SDHCI_QUIRK_NONSTANDARD_CLOCK) {
Jeongbae Seo253e0a72010-10-08 17:46:21 +0900594 sdhci_s3c_ops.set_clock = sdhci_cmu_set_clock;
595 sdhci_s3c_ops.get_min_clock = sdhci_cmu_get_min_clock;
596 sdhci_s3c_ops.get_max_clock = sdhci_cmu_get_max_clock;
597 }
598
Jeongbae Seob3824f22010-10-08 17:46:20 +0900599 /* It supports additional host capabilities if needed */
600 if (pdata->host_caps)
601 host->mmc->caps |= pdata->host_caps;
602
Jaehoon Chungc1c4b662012-02-07 15:59:01 +0900603 if (pdata->host_caps2)
604 host->mmc->caps2 |= pdata->host_caps2;
605
Ben Dooks0d1bb412009-06-14 13:52:37 +0100606 ret = sdhci_add_host(host);
607 if (ret) {
608 dev_err(dev, "sdhci_add_host() failed\n");
609 goto err_add_host;
610 }
611
Marek Szyprowski17866e12010-08-10 18:01:58 -0700612 /* The following two methods of card detection might call
613 sdhci_s3c_notify_change() immediately, so they can be called
614 only after sdhci_add_host(). Setup errors are ignored. */
615 if (pdata->cd_type == S3C_SDHCI_CD_EXTERNAL && pdata->ext_cd_init)
616 pdata->ext_cd_init(&sdhci_s3c_notify_change);
617 if (pdata->cd_type == S3C_SDHCI_CD_GPIO &&
618 gpio_is_valid(pdata->ext_cd_gpio))
619 sdhci_s3c_setup_card_detect_gpio(sc);
620
Ben Dooks0d1bb412009-06-14 13:52:37 +0100621 return 0;
622
623 err_add_host:
624 release_resource(sc->ioarea);
625 kfree(sc->ioarea);
626
627 err_req_regs:
628 for (ptr = 0; ptr < MAX_BUS_CLK; ptr++) {
Jaehoon Chung326adda2011-10-12 13:14:29 +0900629 if (sc->clk_bus[ptr]) {
630 clk_disable(sc->clk_bus[ptr]);
631 clk_put(sc->clk_bus[ptr]);
632 }
Ben Dooks0d1bb412009-06-14 13:52:37 +0100633 }
634
635 err_no_busclks:
636 clk_disable(sc->clk_io);
637 clk_put(sc->clk_io);
638
639 err_io_clk:
640 sdhci_free_host(host);
641
642 return ret;
643}
644
645static int __devexit sdhci_s3c_remove(struct platform_device *pdev)
646{
Marek Szyprowski17866e12010-08-10 18:01:58 -0700647 struct s3c_sdhci_platdata *pdata = pdev->dev.platform_data;
Marek Szyprowski9d51a6b2010-07-20 13:24:33 -0700648 struct sdhci_host *host = platform_get_drvdata(pdev);
649 struct sdhci_s3c *sc = sdhci_priv(host);
650 int ptr;
651
Marek Szyprowski17866e12010-08-10 18:01:58 -0700652 if (pdata->cd_type == S3C_SDHCI_CD_EXTERNAL && pdata->ext_cd_cleanup)
653 pdata->ext_cd_cleanup(&sdhci_s3c_notify_change);
654
655 if (sc->ext_cd_irq)
656 free_irq(sc->ext_cd_irq, sc);
657
658 if (gpio_is_valid(sc->ext_cd_gpio))
659 gpio_free(sc->ext_cd_gpio);
660
Marek Szyprowski9d51a6b2010-07-20 13:24:33 -0700661 sdhci_remove_host(host, 1);
662
663 for (ptr = 0; ptr < 3; ptr++) {
Marek Szyprowski9320f7c2010-09-23 16:22:05 +0200664 if (sc->clk_bus[ptr]) {
665 clk_disable(sc->clk_bus[ptr]);
666 clk_put(sc->clk_bus[ptr]);
667 }
Marek Szyprowski9d51a6b2010-07-20 13:24:33 -0700668 }
669 clk_disable(sc->clk_io);
670 clk_put(sc->clk_io);
671
672 iounmap(host->ioaddr);
673 release_resource(sc->ioarea);
674 kfree(sc->ioarea);
675
676 sdhci_free_host(host);
677 platform_set_drvdata(pdev, NULL);
678
Ben Dooks0d1bb412009-06-14 13:52:37 +0100679 return 0;
680}
681
682#ifdef CONFIG_PM
683
Manuel Lauss29495aa2011-11-03 11:09:45 +0100684static int sdhci_s3c_suspend(struct device *dev)
Ben Dooks0d1bb412009-06-14 13:52:37 +0100685{
Manuel Lauss29495aa2011-11-03 11:09:45 +0100686 struct sdhci_host *host = dev_get_drvdata(dev);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100687
Manuel Lauss29495aa2011-11-03 11:09:45 +0100688 return sdhci_suspend_host(host);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100689}
690
Manuel Lauss29495aa2011-11-03 11:09:45 +0100691static int sdhci_s3c_resume(struct device *dev)
Ben Dooks0d1bb412009-06-14 13:52:37 +0100692{
Manuel Lauss29495aa2011-11-03 11:09:45 +0100693 struct sdhci_host *host = dev_get_drvdata(dev);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100694
Wonil Choi65d13512011-06-29 11:38:38 +0900695 return sdhci_resume_host(host);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100696}
697
Manuel Lauss29495aa2011-11-03 11:09:45 +0100698static const struct dev_pm_ops sdhci_s3c_pmops = {
699 .suspend = sdhci_s3c_suspend,
700 .resume = sdhci_s3c_resume,
701};
702
703#define SDHCI_S3C_PMOPS (&sdhci_s3c_pmops)
704
Ben Dooks0d1bb412009-06-14 13:52:37 +0100705#else
Manuel Lauss29495aa2011-11-03 11:09:45 +0100706#define SDHCI_S3C_PMOPS NULL
Ben Dooks0d1bb412009-06-14 13:52:37 +0100707#endif
708
Thomas Abraham3119936a2012-02-16 22:23:58 +0900709#if defined(CONFIG_CPU_EXYNOS4210) || defined(CONFIG_SOC_EXYNOS4212)
710static struct sdhci_s3c_drv_data exynos4_sdhci_drv_data = {
711 .sdhci_quirks = SDHCI_QUIRK_NONSTANDARD_CLOCK,
712};
713#define EXYNOS4_SDHCI_DRV_DATA ((kernel_ulong_t)&exynos4_sdhci_drv_data)
714#else
715#define EXYNOS4_SDHCI_DRV_DATA ((kernel_ulong_t)NULL)
716#endif
717
718static struct platform_device_id sdhci_s3c_driver_ids[] = {
719 {
720 .name = "s3c-sdhci",
721 .driver_data = (kernel_ulong_t)NULL,
722 }, {
723 .name = "exynos4-sdhci",
724 .driver_data = EXYNOS4_SDHCI_DRV_DATA,
725 },
726 { }
727};
728MODULE_DEVICE_TABLE(platform, sdhci_s3c_driver_ids);
729
Ben Dooks0d1bb412009-06-14 13:52:37 +0100730static struct platform_driver sdhci_s3c_driver = {
731 .probe = sdhci_s3c_probe,
732 .remove = __devexit_p(sdhci_s3c_remove),
Thomas Abraham3119936a2012-02-16 22:23:58 +0900733 .id_table = sdhci_s3c_driver_ids,
Ben Dooks0d1bb412009-06-14 13:52:37 +0100734 .driver = {
735 .owner = THIS_MODULE,
736 .name = "s3c-sdhci",
Manuel Lauss29495aa2011-11-03 11:09:45 +0100737 .pm = SDHCI_S3C_PMOPS,
Ben Dooks0d1bb412009-06-14 13:52:37 +0100738 },
739};
740
Axel Lind1f81a62011-11-26 12:55:43 +0800741module_platform_driver(sdhci_s3c_driver);
Ben Dooks0d1bb412009-06-14 13:52:37 +0100742
743MODULE_DESCRIPTION("Samsung SDHCI (HSMMC) glue");
744MODULE_AUTHOR("Ben Dooks, <ben@simtec.co.uk>");
745MODULE_LICENSE("GPL v2");
746MODULE_ALIAS("platform:s3c-sdhci");