Merge branch 'bugfixes' of git://git.linux-nfs.org/projects/trondmy/nfs-2.6
[pandora-kernel.git] / drivers / mmc / host / omap_hsmmc.c
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>
20 #include <linux/debugfs.h>
21 #include <linux/seq_file.h>
22 #include <linux/interrupt.h>
23 #include <linux/delay.h>
24 #include <linux/dma-mapping.h>
25 #include <linux/platform_device.h>
26 #include <linux/workqueue.h>
27 #include <linux/timer.h>
28 #include <linux/clk.h>
29 #include <linux/mmc/host.h>
30 #include <linux/mmc/core.h>
31 #include <linux/mmc/mmc.h>
32 #include <linux/io.h>
33 #include <linux/semaphore.h>
34 #include <linux/gpio.h>
35 #include <linux/regulator/consumer.h>
36 #include <plat/dma.h>
37 #include <mach/hardware.h>
38 #include <plat/board.h>
39 #include <plat/mmc.h>
40 #include <plat/cpu.h>
41
42 /* OMAP HSMMC Host Controller Registers */
43 #define OMAP_HSMMC_SYSCONFIG    0x0010
44 #define OMAP_HSMMC_SYSSTATUS    0x0014
45 #define OMAP_HSMMC_CON          0x002C
46 #define OMAP_HSMMC_BLK          0x0104
47 #define OMAP_HSMMC_ARG          0x0108
48 #define OMAP_HSMMC_CMD          0x010C
49 #define OMAP_HSMMC_RSP10        0x0110
50 #define OMAP_HSMMC_RSP32        0x0114
51 #define OMAP_HSMMC_RSP54        0x0118
52 #define OMAP_HSMMC_RSP76        0x011C
53 #define OMAP_HSMMC_DATA         0x0120
54 #define OMAP_HSMMC_HCTL         0x0128
55 #define OMAP_HSMMC_SYSCTL       0x012C
56 #define OMAP_HSMMC_STAT         0x0130
57 #define OMAP_HSMMC_IE           0x0134
58 #define OMAP_HSMMC_ISE          0x0138
59 #define OMAP_HSMMC_CAPA         0x0140
60
61 #define VS18                    (1 << 26)
62 #define VS30                    (1 << 25)
63 #define SDVS18                  (0x5 << 9)
64 #define SDVS30                  (0x6 << 9)
65 #define SDVS33                  (0x7 << 9)
66 #define SDVS_MASK               0x00000E00
67 #define SDVSCLR                 0xFFFFF1FF
68 #define SDVSDET                 0x00000400
69 #define AUTOIDLE                0x1
70 #define SDBP                    (1 << 8)
71 #define DTO                     0xe
72 #define ICE                     0x1
73 #define ICS                     0x2
74 #define CEN                     (1 << 2)
75 #define CLKD_MASK               0x0000FFC0
76 #define CLKD_SHIFT              6
77 #define DTO_MASK                0x000F0000
78 #define DTO_SHIFT               16
79 #define INT_EN_MASK             0x307F0033
80 #define BWR_ENABLE              (1 << 4)
81 #define BRR_ENABLE              (1 << 5)
82 #define DTO_ENABLE              (1 << 20)
83 #define INIT_STREAM             (1 << 1)
84 #define DP_SELECT               (1 << 21)
85 #define DDIR                    (1 << 4)
86 #define DMA_EN                  0x1
87 #define MSBS                    (1 << 5)
88 #define BCE                     (1 << 1)
89 #define FOUR_BIT                (1 << 1)
90 #define DW8                     (1 << 5)
91 #define CC                      0x1
92 #define TC                      0x02
93 #define OD                      0x1
94 #define ERR                     (1 << 15)
95 #define CMD_TIMEOUT             (1 << 16)
96 #define DATA_TIMEOUT            (1 << 20)
97 #define CMD_CRC                 (1 << 17)
98 #define DATA_CRC                (1 << 21)
99 #define CARD_ERR                (1 << 28)
100 #define STAT_CLEAR              0xFFFFFFFF
101 #define INIT_STREAM_CMD         0x00000000
102 #define DUAL_VOLT_OCR_BIT       7
103 #define SRC                     (1 << 25)
104 #define SRD                     (1 << 26)
105 #define SOFTRESET               (1 << 1)
106 #define RESETDONE               (1 << 0)
107
108 /*
109  * FIXME: Most likely all the data using these _DEVID defines should come
110  * from the platform_data, or implemented in controller and slot specific
111  * functions.
112  */
113 #define OMAP_MMC1_DEVID         0
114 #define OMAP_MMC2_DEVID         1
115 #define OMAP_MMC3_DEVID         2
116 #define OMAP_MMC4_DEVID         3
117 #define OMAP_MMC5_DEVID         4
118
119 #define MMC_TIMEOUT_MS          20
120 #define OMAP_MMC_MASTER_CLOCK   96000000
121 #define DRIVER_NAME             "mmci-omap-hs"
122
123 /* Timeouts for entering power saving states on inactivity, msec */
124 #define OMAP_MMC_DISABLED_TIMEOUT       100
125 #define OMAP_MMC_SLEEP_TIMEOUT          1000
126 #define OMAP_MMC_OFF_TIMEOUT            8000
127
128 /*
129  * One controller can have multiple slots, like on some omap boards using
130  * omap.c controller driver. Luckily this is not currently done on any known
131  * omap_hsmmc.c device.
132  */
133 #define mmc_slot(host)          (host->pdata->slots[host->slot_id])
134
135 /*
136  * MMC Host controller read/write API's
137  */
138 #define OMAP_HSMMC_READ(base, reg)      \
139         __raw_readl((base) + OMAP_HSMMC_##reg)
140
141 #define OMAP_HSMMC_WRITE(base, reg, val) \
142         __raw_writel((val), (base) + OMAP_HSMMC_##reg)
143
144 struct omap_hsmmc_host {
145         struct  device          *dev;
146         struct  mmc_host        *mmc;
147         struct  mmc_request     *mrq;
148         struct  mmc_command     *cmd;
149         struct  mmc_data        *data;
150         struct  clk             *fclk;
151         struct  clk             *iclk;
152         struct  clk             *dbclk;
153         /*
154          * vcc == configured supply
155          * vcc_aux == optional
156          *   -  MMC1, supply for DAT4..DAT7
157          *   -  MMC2/MMC2, external level shifter voltage supply, for
158          *      chip (SDIO, eMMC, etc) or transceiver (MMC2 only)
159          */
160         struct  regulator       *vcc;
161         struct  regulator       *vcc_aux;
162         struct  work_struct     mmc_carddetect_work;
163         void    __iomem         *base;
164         resource_size_t         mapbase;
165         spinlock_t              irq_lock; /* Prevent races with irq handler */
166         unsigned int            id;
167         unsigned int            dma_len;
168         unsigned int            dma_sg_idx;
169         unsigned char           bus_mode;
170         unsigned char           power_mode;
171         u32                     *buffer;
172         u32                     bytesleft;
173         int                     suspended;
174         int                     irq;
175         int                     use_dma, dma_ch;
176         int                     dma_line_tx, dma_line_rx;
177         int                     slot_id;
178         int                     got_dbclk;
179         int                     response_busy;
180         int                     context_loss;
181         int                     dpm_state;
182         int                     vdd;
183         int                     protect_card;
184         int                     reqs_blocked;
185         int                     use_reg;
186         int                     req_in_progress;
187
188         struct  omap_mmc_platform_data  *pdata;
189 };
190
191 static int omap_hsmmc_card_detect(struct device *dev, int slot)
192 {
193         struct omap_mmc_platform_data *mmc = dev->platform_data;
194
195         /* NOTE: assumes card detect signal is active-low */
196         return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
197 }
198
199 static int omap_hsmmc_get_wp(struct device *dev, int slot)
200 {
201         struct omap_mmc_platform_data *mmc = dev->platform_data;
202
203         /* NOTE: assumes write protect signal is active-high */
204         return gpio_get_value_cansleep(mmc->slots[0].gpio_wp);
205 }
206
207 static int omap_hsmmc_get_cover_state(struct device *dev, int slot)
208 {
209         struct omap_mmc_platform_data *mmc = dev->platform_data;
210
211         /* NOTE: assumes card detect signal is active-low */
212         return !gpio_get_value_cansleep(mmc->slots[0].switch_pin);
213 }
214
215 #ifdef CONFIG_PM
216
217 static int omap_hsmmc_suspend_cdirq(struct device *dev, int slot)
218 {
219         struct omap_mmc_platform_data *mmc = dev->platform_data;
220
221         disable_irq(mmc->slots[0].card_detect_irq);
222         return 0;
223 }
224
225 static int omap_hsmmc_resume_cdirq(struct device *dev, int slot)
226 {
227         struct omap_mmc_platform_data *mmc = dev->platform_data;
228
229         enable_irq(mmc->slots[0].card_detect_irq);
230         return 0;
231 }
232
233 #else
234
235 #define omap_hsmmc_suspend_cdirq        NULL
236 #define omap_hsmmc_resume_cdirq         NULL
237
238 #endif
239
240 #ifdef CONFIG_REGULATOR
241
242 static int omap_hsmmc_1_set_power(struct device *dev, int slot, int power_on,
243                                   int vdd)
244 {
245         struct omap_hsmmc_host *host =
246                 platform_get_drvdata(to_platform_device(dev));
247         int ret;
248
249         if (mmc_slot(host).before_set_reg)
250                 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
251
252         if (power_on)
253                 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
254         else
255                 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
256
257         if (mmc_slot(host).after_set_reg)
258                 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
259
260         return ret;
261 }
262
263 static int omap_hsmmc_23_set_power(struct device *dev, int slot, int power_on,
264                                    int vdd)
265 {
266         struct omap_hsmmc_host *host =
267                 platform_get_drvdata(to_platform_device(dev));
268         int ret = 0;
269
270         /*
271          * If we don't see a Vcc regulator, assume it's a fixed
272          * voltage always-on regulator.
273          */
274         if (!host->vcc)
275                 return 0;
276
277         if (mmc_slot(host).before_set_reg)
278                 mmc_slot(host).before_set_reg(dev, slot, power_on, vdd);
279
280         /*
281          * Assume Vcc regulator is used only to power the card ... OMAP
282          * VDDS is used to power the pins, optionally with a transceiver to
283          * support cards using voltages other than VDDS (1.8V nominal).  When a
284          * transceiver is used, DAT3..7 are muxed as transceiver control pins.
285          *
286          * In some cases this regulator won't support enable/disable;
287          * e.g. it's a fixed rail for a WLAN chip.
288          *
289          * In other cases vcc_aux switches interface power.  Example, for
290          * eMMC cards it represents VccQ.  Sometimes transceivers or SDIO
291          * chips/cards need an interface voltage rail too.
292          */
293         if (power_on) {
294                 ret = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
295                 /* Enable interface voltage rail, if needed */
296                 if (ret == 0 && host->vcc_aux) {
297                         ret = regulator_enable(host->vcc_aux);
298                         if (ret < 0)
299                                 ret = mmc_regulator_set_ocr(host->mmc,
300                                                         host->vcc, 0);
301                 }
302         } else {
303                 /* Shut down the rail */
304                 if (host->vcc_aux)
305                         ret = regulator_disable(host->vcc_aux);
306                 if (!ret) {
307                         /* Then proceed to shut down the local regulator */
308                         ret = mmc_regulator_set_ocr(host->mmc,
309                                                 host->vcc, 0);
310                 }
311         }
312
313         if (mmc_slot(host).after_set_reg)
314                 mmc_slot(host).after_set_reg(dev, slot, power_on, vdd);
315
316         return ret;
317 }
318
319 static int omap_hsmmc_1_set_sleep(struct device *dev, int slot, int sleep,
320                                   int vdd, int cardsleep)
321 {
322         struct omap_hsmmc_host *host =
323                 platform_get_drvdata(to_platform_device(dev));
324         int mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
325
326         return regulator_set_mode(host->vcc, mode);
327 }
328
329 static int omap_hsmmc_23_set_sleep(struct device *dev, int slot, int sleep,
330                                    int vdd, int cardsleep)
331 {
332         struct omap_hsmmc_host *host =
333                 platform_get_drvdata(to_platform_device(dev));
334         int err, mode;
335
336         /*
337          * If we don't see a Vcc regulator, assume it's a fixed
338          * voltage always-on regulator.
339          */
340         if (!host->vcc)
341                 return 0;
342
343         mode = sleep ? REGULATOR_MODE_STANDBY : REGULATOR_MODE_NORMAL;
344
345         if (!host->vcc_aux)
346                 return regulator_set_mode(host->vcc, mode);
347
348         if (cardsleep) {
349                 /* VCC can be turned off if card is asleep */
350                 if (sleep)
351                         err = mmc_regulator_set_ocr(host->mmc, host->vcc, 0);
352                 else
353                         err = mmc_regulator_set_ocr(host->mmc, host->vcc, vdd);
354         } else
355                 err = regulator_set_mode(host->vcc, mode);
356         if (err)
357                 return err;
358
359         if (!mmc_slot(host).vcc_aux_disable_is_sleep)
360                 return regulator_set_mode(host->vcc_aux, mode);
361
362         if (sleep)
363                 return regulator_disable(host->vcc_aux);
364         else
365                 return regulator_enable(host->vcc_aux);
366 }
367
368 static int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
369 {
370         struct regulator *reg;
371         int ret = 0;
372         int ocr_value = 0;
373
374         switch (host->id) {
375         case OMAP_MMC1_DEVID:
376                 /* On-chip level shifting via PBIAS0/PBIAS1 */
377                 mmc_slot(host).set_power = omap_hsmmc_1_set_power;
378                 mmc_slot(host).set_sleep = omap_hsmmc_1_set_sleep;
379                 break;
380         case OMAP_MMC2_DEVID:
381         case OMAP_MMC3_DEVID:
382                 /* Off-chip level shifting, or none */
383                 mmc_slot(host).set_power = omap_hsmmc_23_set_power;
384                 mmc_slot(host).set_sleep = omap_hsmmc_23_set_sleep;
385                 break;
386         default:
387                 pr_err("MMC%d configuration not supported!\n", host->id);
388                 return -EINVAL;
389         }
390
391         reg = regulator_get(host->dev, "vmmc");
392         if (IS_ERR(reg)) {
393                 dev_dbg(host->dev, "vmmc regulator missing\n");
394                 /*
395                 * HACK: until fixed.c regulator is usable,
396                 * we don't require a main regulator
397                 * for MMC2 or MMC3
398                 */
399                 if (host->id == OMAP_MMC1_DEVID) {
400                         ret = PTR_ERR(reg);
401                         goto err;
402                 }
403         } else {
404                 host->vcc = reg;
405                 ocr_value = mmc_regulator_get_ocrmask(reg);
406                 if (!mmc_slot(host).ocr_mask) {
407                         mmc_slot(host).ocr_mask = ocr_value;
408                 } else {
409                         if (!(mmc_slot(host).ocr_mask & ocr_value)) {
410                                 pr_err("MMC%d ocrmask %x is not supported\n",
411                                         host->id, mmc_slot(host).ocr_mask);
412                                 mmc_slot(host).ocr_mask = 0;
413                                 return -EINVAL;
414                         }
415                 }
416                 mmc_slot(host).ocr_mask = mmc_regulator_get_ocrmask(reg);
417
418                 /* Allow an aux regulator */
419                 reg = regulator_get(host->dev, "vmmc_aux");
420                 host->vcc_aux = IS_ERR(reg) ? NULL : reg;
421
422                 /*
423                 * UGLY HACK:  workaround regulator framework bugs.
424                 * When the bootloader leaves a supply active, it's
425                 * initialized with zero usecount ... and we can't
426                 * disable it without first enabling it.  Until the
427                 * framework is fixed, we need a workaround like this
428                 * (which is safe for MMC, but not in general).
429                 */
430                 if (regulator_is_enabled(host->vcc) > 0) {
431                         regulator_enable(host->vcc);
432                         regulator_disable(host->vcc);
433                 }
434                 if (host->vcc_aux) {
435                         if (regulator_is_enabled(reg) > 0) {
436                                 regulator_enable(reg);
437                                 regulator_disable(reg);
438                         }
439                 }
440         }
441
442         return 0;
443
444 err:
445         mmc_slot(host).set_power = NULL;
446         mmc_slot(host).set_sleep = NULL;
447         return ret;
448 }
449
450 static void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
451 {
452         regulator_put(host->vcc);
453         regulator_put(host->vcc_aux);
454         mmc_slot(host).set_power = NULL;
455         mmc_slot(host).set_sleep = NULL;
456 }
457
458 static inline int omap_hsmmc_have_reg(void)
459 {
460         return 1;
461 }
462
463 #else
464
465 static inline int omap_hsmmc_reg_get(struct omap_hsmmc_host *host)
466 {
467         return -EINVAL;
468 }
469
470 static inline void omap_hsmmc_reg_put(struct omap_hsmmc_host *host)
471 {
472 }
473
474 static inline int omap_hsmmc_have_reg(void)
475 {
476         return 0;
477 }
478
479 #endif
480
481 static int omap_hsmmc_gpio_init(struct omap_mmc_platform_data *pdata)
482 {
483         int ret;
484
485         if (gpio_is_valid(pdata->slots[0].switch_pin)) {
486                 pdata->suspend = omap_hsmmc_suspend_cdirq;
487                 pdata->resume = omap_hsmmc_resume_cdirq;
488                 if (pdata->slots[0].cover)
489                         pdata->slots[0].get_cover_state =
490                                         omap_hsmmc_get_cover_state;
491                 else
492                         pdata->slots[0].card_detect = omap_hsmmc_card_detect;
493                 pdata->slots[0].card_detect_irq =
494                                 gpio_to_irq(pdata->slots[0].switch_pin);
495                 ret = gpio_request(pdata->slots[0].switch_pin, "mmc_cd");
496                 if (ret)
497                         return ret;
498                 ret = gpio_direction_input(pdata->slots[0].switch_pin);
499                 if (ret)
500                         goto err_free_sp;
501         } else
502                 pdata->slots[0].switch_pin = -EINVAL;
503
504         if (gpio_is_valid(pdata->slots[0].gpio_wp)) {
505                 pdata->slots[0].get_ro = omap_hsmmc_get_wp;
506                 ret = gpio_request(pdata->slots[0].gpio_wp, "mmc_wp");
507                 if (ret)
508                         goto err_free_cd;
509                 ret = gpio_direction_input(pdata->slots[0].gpio_wp);
510                 if (ret)
511                         goto err_free_wp;
512         } else
513                 pdata->slots[0].gpio_wp = -EINVAL;
514
515         return 0;
516
517 err_free_wp:
518         gpio_free(pdata->slots[0].gpio_wp);
519 err_free_cd:
520         if (gpio_is_valid(pdata->slots[0].switch_pin))
521 err_free_sp:
522                 gpio_free(pdata->slots[0].switch_pin);
523         return ret;
524 }
525
526 static void omap_hsmmc_gpio_free(struct omap_mmc_platform_data *pdata)
527 {
528         if (gpio_is_valid(pdata->slots[0].gpio_wp))
529                 gpio_free(pdata->slots[0].gpio_wp);
530         if (gpio_is_valid(pdata->slots[0].switch_pin))
531                 gpio_free(pdata->slots[0].switch_pin);
532 }
533
534 /*
535  * Stop clock to the card
536  */
537 static void omap_hsmmc_stop_clock(struct omap_hsmmc_host *host)
538 {
539         OMAP_HSMMC_WRITE(host->base, SYSCTL,
540                 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
541         if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
542                 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped\n");
543 }
544
545 static void omap_hsmmc_enable_irq(struct omap_hsmmc_host *host,
546                                   struct mmc_command *cmd)
547 {
548         unsigned int irq_mask;
549
550         if (host->use_dma)
551                 irq_mask = INT_EN_MASK & ~(BRR_ENABLE | BWR_ENABLE);
552         else
553                 irq_mask = INT_EN_MASK;
554
555         /* Disable timeout for erases */
556         if (cmd->opcode == MMC_ERASE)
557                 irq_mask &= ~DTO_ENABLE;
558
559         OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
560         OMAP_HSMMC_WRITE(host->base, ISE, irq_mask);
561         OMAP_HSMMC_WRITE(host->base, IE, irq_mask);
562 }
563
564 static void omap_hsmmc_disable_irq(struct omap_hsmmc_host *host)
565 {
566         OMAP_HSMMC_WRITE(host->base, ISE, 0);
567         OMAP_HSMMC_WRITE(host->base, IE, 0);
568         OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
569 }
570
571 #ifdef CONFIG_PM
572
573 /*
574  * Restore the MMC host context, if it was lost as result of a
575  * power state change.
576  */
577 static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
578 {
579         struct mmc_ios *ios = &host->mmc->ios;
580         struct omap_mmc_platform_data *pdata = host->pdata;
581         int context_loss = 0;
582         u32 hctl, capa, con;
583         u16 dsor = 0;
584         unsigned long timeout;
585
586         if (pdata->get_context_loss_count) {
587                 context_loss = pdata->get_context_loss_count(host->dev);
588                 if (context_loss < 0)
589                         return 1;
590         }
591
592         dev_dbg(mmc_dev(host->mmc), "context was %slost\n",
593                 context_loss == host->context_loss ? "not " : "");
594         if (host->context_loss == context_loss)
595                 return 1;
596
597         /* Wait for hardware reset */
598         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
599         while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
600                 && time_before(jiffies, timeout))
601                 ;
602
603         /* Do software reset */
604         OMAP_HSMMC_WRITE(host->base, SYSCONFIG, SOFTRESET);
605         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
606         while ((OMAP_HSMMC_READ(host->base, SYSSTATUS) & RESETDONE) != RESETDONE
607                 && time_before(jiffies, timeout))
608                 ;
609
610         OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
611                         OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
612
613         if (host->id == OMAP_MMC1_DEVID) {
614                 if (host->power_mode != MMC_POWER_OFF &&
615                     (1 << ios->vdd) <= MMC_VDD_23_24)
616                         hctl = SDVS18;
617                 else
618                         hctl = SDVS30;
619                 capa = VS30 | VS18;
620         } else {
621                 hctl = SDVS18;
622                 capa = VS18;
623         }
624
625         OMAP_HSMMC_WRITE(host->base, HCTL,
626                         OMAP_HSMMC_READ(host->base, HCTL) | hctl);
627
628         OMAP_HSMMC_WRITE(host->base, CAPA,
629                         OMAP_HSMMC_READ(host->base, CAPA) | capa);
630
631         OMAP_HSMMC_WRITE(host->base, HCTL,
632                         OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
633
634         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
635         while ((OMAP_HSMMC_READ(host->base, HCTL) & SDBP) != SDBP
636                 && time_before(jiffies, timeout))
637                 ;
638
639         omap_hsmmc_disable_irq(host);
640
641         /* Do not initialize card-specific things if the power is off */
642         if (host->power_mode == MMC_POWER_OFF)
643                 goto out;
644
645         con = OMAP_HSMMC_READ(host->base, CON);
646         switch (ios->bus_width) {
647         case MMC_BUS_WIDTH_8:
648                 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
649                 break;
650         case MMC_BUS_WIDTH_4:
651                 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
652                 OMAP_HSMMC_WRITE(host->base, HCTL,
653                         OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
654                 break;
655         case MMC_BUS_WIDTH_1:
656                 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
657                 OMAP_HSMMC_WRITE(host->base, HCTL,
658                         OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
659                 break;
660         }
661
662         if (ios->clock) {
663                 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
664                 if (dsor < 1)
665                         dsor = 1;
666
667                 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
668                         dsor++;
669
670                 if (dsor > 250)
671                         dsor = 250;
672         }
673
674         OMAP_HSMMC_WRITE(host->base, SYSCTL,
675                 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
676         OMAP_HSMMC_WRITE(host->base, SYSCTL, (dsor << 6) | (DTO << 16));
677         OMAP_HSMMC_WRITE(host->base, SYSCTL,
678                 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
679
680         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
681         while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
682                 && time_before(jiffies, timeout))
683                 ;
684
685         OMAP_HSMMC_WRITE(host->base, SYSCTL,
686                 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
687
688         con = OMAP_HSMMC_READ(host->base, CON);
689         if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
690                 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
691         else
692                 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
693 out:
694         host->context_loss = context_loss;
695
696         dev_dbg(mmc_dev(host->mmc), "context is restored\n");
697         return 0;
698 }
699
700 /*
701  * Save the MMC host context (store the number of power state changes so far).
702  */
703 static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
704 {
705         struct omap_mmc_platform_data *pdata = host->pdata;
706         int context_loss;
707
708         if (pdata->get_context_loss_count) {
709                 context_loss = pdata->get_context_loss_count(host->dev);
710                 if (context_loss < 0)
711                         return;
712                 host->context_loss = context_loss;
713         }
714 }
715
716 #else
717
718 static int omap_hsmmc_context_restore(struct omap_hsmmc_host *host)
719 {
720         return 0;
721 }
722
723 static void omap_hsmmc_context_save(struct omap_hsmmc_host *host)
724 {
725 }
726
727 #endif
728
729 /*
730  * Send init stream sequence to card
731  * before sending IDLE command
732  */
733 static void send_init_stream(struct omap_hsmmc_host *host)
734 {
735         int reg = 0;
736         unsigned long timeout;
737
738         if (host->protect_card)
739                 return;
740
741         disable_irq(host->irq);
742
743         OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
744         OMAP_HSMMC_WRITE(host->base, CON,
745                 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
746         OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
747
748         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
749         while ((reg != CC) && time_before(jiffies, timeout))
750                 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
751
752         OMAP_HSMMC_WRITE(host->base, CON,
753                 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
754
755         OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
756         OMAP_HSMMC_READ(host->base, STAT);
757
758         enable_irq(host->irq);
759 }
760
761 static inline
762 int omap_hsmmc_cover_is_closed(struct omap_hsmmc_host *host)
763 {
764         int r = 1;
765
766         if (mmc_slot(host).get_cover_state)
767                 r = mmc_slot(host).get_cover_state(host->dev, host->slot_id);
768         return r;
769 }
770
771 static ssize_t
772 omap_hsmmc_show_cover_switch(struct device *dev, struct device_attribute *attr,
773                            char *buf)
774 {
775         struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
776         struct omap_hsmmc_host *host = mmc_priv(mmc);
777
778         return sprintf(buf, "%s\n",
779                         omap_hsmmc_cover_is_closed(host) ? "closed" : "open");
780 }
781
782 static DEVICE_ATTR(cover_switch, S_IRUGO, omap_hsmmc_show_cover_switch, NULL);
783
784 static ssize_t
785 omap_hsmmc_show_slot_name(struct device *dev, struct device_attribute *attr,
786                         char *buf)
787 {
788         struct mmc_host *mmc = container_of(dev, struct mmc_host, class_dev);
789         struct omap_hsmmc_host *host = mmc_priv(mmc);
790
791         return sprintf(buf, "%s\n", mmc_slot(host).name);
792 }
793
794 static DEVICE_ATTR(slot_name, S_IRUGO, omap_hsmmc_show_slot_name, NULL);
795
796 /*
797  * Configure the response type and send the cmd.
798  */
799 static void
800 omap_hsmmc_start_command(struct omap_hsmmc_host *host, struct mmc_command *cmd,
801         struct mmc_data *data)
802 {
803         int cmdreg = 0, resptype = 0, cmdtype = 0;
804
805         dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
806                 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
807         host->cmd = cmd;
808
809         omap_hsmmc_enable_irq(host, cmd);
810
811         host->response_busy = 0;
812         if (cmd->flags & MMC_RSP_PRESENT) {
813                 if (cmd->flags & MMC_RSP_136)
814                         resptype = 1;
815                 else if (cmd->flags & MMC_RSP_BUSY) {
816                         resptype = 3;
817                         host->response_busy = 1;
818                 } else
819                         resptype = 2;
820         }
821
822         /*
823          * Unlike OMAP1 controller, the cmdtype does not seem to be based on
824          * ac, bc, adtc, bcr. Only commands ending an open ended transfer need
825          * a val of 0x3, rest 0x0.
826          */
827         if (cmd == host->mrq->stop)
828                 cmdtype = 0x3;
829
830         cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
831
832         if (data) {
833                 cmdreg |= DP_SELECT | MSBS | BCE;
834                 if (data->flags & MMC_DATA_READ)
835                         cmdreg |= DDIR;
836                 else
837                         cmdreg &= ~(DDIR);
838         }
839
840         if (host->use_dma)
841                 cmdreg |= DMA_EN;
842
843         host->req_in_progress = 1;
844
845         OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
846         OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
847 }
848
849 static int
850 omap_hsmmc_get_dma_dir(struct omap_hsmmc_host *host, struct mmc_data *data)
851 {
852         if (data->flags & MMC_DATA_WRITE)
853                 return DMA_TO_DEVICE;
854         else
855                 return DMA_FROM_DEVICE;
856 }
857
858 static void omap_hsmmc_request_done(struct omap_hsmmc_host *host, struct mmc_request *mrq)
859 {
860         int dma_ch;
861
862         spin_lock(&host->irq_lock);
863         host->req_in_progress = 0;
864         dma_ch = host->dma_ch;
865         spin_unlock(&host->irq_lock);
866
867         omap_hsmmc_disable_irq(host);
868         /* Do not complete the request if DMA is still in progress */
869         if (mrq->data && host->use_dma && dma_ch != -1)
870                 return;
871         host->mrq = NULL;
872         mmc_request_done(host->mmc, mrq);
873 }
874
875 /*
876  * Notify the transfer complete to MMC core
877  */
878 static void
879 omap_hsmmc_xfer_done(struct omap_hsmmc_host *host, struct mmc_data *data)
880 {
881         if (!data) {
882                 struct mmc_request *mrq = host->mrq;
883
884                 /* TC before CC from CMD6 - don't know why, but it happens */
885                 if (host->cmd && host->cmd->opcode == 6 &&
886                     host->response_busy) {
887                         host->response_busy = 0;
888                         return;
889                 }
890
891                 omap_hsmmc_request_done(host, mrq);
892                 return;
893         }
894
895         host->data = NULL;
896
897         if (!data->error)
898                 data->bytes_xfered += data->blocks * (data->blksz);
899         else
900                 data->bytes_xfered = 0;
901
902         if (!data->stop) {
903                 omap_hsmmc_request_done(host, data->mrq);
904                 return;
905         }
906         omap_hsmmc_start_command(host, data->stop, NULL);
907 }
908
909 /*
910  * Notify the core about command completion
911  */
912 static void
913 omap_hsmmc_cmd_done(struct omap_hsmmc_host *host, struct mmc_command *cmd)
914 {
915         host->cmd = NULL;
916
917         if (cmd->flags & MMC_RSP_PRESENT) {
918                 if (cmd->flags & MMC_RSP_136) {
919                         /* response type 2 */
920                         cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
921                         cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
922                         cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
923                         cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
924                 } else {
925                         /* response types 1, 1b, 3, 4, 5, 6 */
926                         cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
927                 }
928         }
929         if ((host->data == NULL && !host->response_busy) || cmd->error)
930                 omap_hsmmc_request_done(host, cmd->mrq);
931 }
932
933 /*
934  * DMA clean up for command errors
935  */
936 static void omap_hsmmc_dma_cleanup(struct omap_hsmmc_host *host, int errno)
937 {
938         int dma_ch;
939
940         host->data->error = errno;
941
942         spin_lock(&host->irq_lock);
943         dma_ch = host->dma_ch;
944         host->dma_ch = -1;
945         spin_unlock(&host->irq_lock);
946
947         if (host->use_dma && dma_ch != -1) {
948                 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg, host->dma_len,
949                         omap_hsmmc_get_dma_dir(host, host->data));
950                 omap_free_dma(dma_ch);
951         }
952         host->data = NULL;
953 }
954
955 /*
956  * Readable error output
957  */
958 #ifdef CONFIG_MMC_DEBUG
959 static void omap_hsmmc_report_irq(struct omap_hsmmc_host *host, u32 status)
960 {
961         /* --- means reserved bit without definition at documentation */
962         static const char *omap_hsmmc_status_bits[] = {
963                 "CC", "TC", "BGE", "---", "BWR", "BRR", "---", "---", "CIRQ",
964                 "OBI", "---", "---", "---", "---", "---", "ERRI", "CTO", "CCRC",
965                 "CEB", "CIE", "DTO", "DCRC", "DEB", "---", "ACE", "---",
966                 "---", "---", "---", "CERR", "CERR", "BADA", "---", "---", "---"
967         };
968         char res[256];
969         char *buf = res;
970         int len, i;
971
972         len = sprintf(buf, "MMC IRQ 0x%x :", status);
973         buf += len;
974
975         for (i = 0; i < ARRAY_SIZE(omap_hsmmc_status_bits); i++)
976                 if (status & (1 << i)) {
977                         len = sprintf(buf, " %s", omap_hsmmc_status_bits[i]);
978                         buf += len;
979                 }
980
981         dev_dbg(mmc_dev(host->mmc), "%s\n", res);
982 }
983 #endif  /* CONFIG_MMC_DEBUG */
984
985 /*
986  * MMC controller internal state machines reset
987  *
988  * Used to reset command or data internal state machines, using respectively
989  *  SRC or SRD bit of SYSCTL register
990  * Can be called from interrupt context
991  */
992 static inline void omap_hsmmc_reset_controller_fsm(struct omap_hsmmc_host *host,
993                                                    unsigned long bit)
994 {
995         unsigned long i = 0;
996         unsigned long limit = (loops_per_jiffy *
997                                 msecs_to_jiffies(MMC_TIMEOUT_MS));
998
999         OMAP_HSMMC_WRITE(host->base, SYSCTL,
1000                          OMAP_HSMMC_READ(host->base, SYSCTL) | bit);
1001
1002         /*
1003          * OMAP4 ES2 and greater has an updated reset logic.
1004          * Monitor a 0->1 transition first
1005          */
1006         if (mmc_slot(host).features & HSMMC_HAS_UPDATED_RESET) {
1007                 while ((!(OMAP_HSMMC_READ(host, SYSCTL) & bit))
1008                                         && (i++ < limit))
1009                         cpu_relax();
1010         }
1011         i = 0;
1012
1013         while ((OMAP_HSMMC_READ(host->base, SYSCTL) & bit) &&
1014                 (i++ < limit))
1015                 cpu_relax();
1016
1017         if (OMAP_HSMMC_READ(host->base, SYSCTL) & bit)
1018                 dev_err(mmc_dev(host->mmc),
1019                         "Timeout waiting on controller reset in %s\n",
1020                         __func__);
1021 }
1022
1023 static void omap_hsmmc_do_irq(struct omap_hsmmc_host *host, int status)
1024 {
1025         struct mmc_data *data;
1026         int end_cmd = 0, end_trans = 0;
1027
1028         if (!host->req_in_progress) {
1029                 do {
1030                         OMAP_HSMMC_WRITE(host->base, STAT, status);
1031                         /* Flush posted write */
1032                         status = OMAP_HSMMC_READ(host->base, STAT);
1033                 } while (status & INT_EN_MASK);
1034                 return;
1035         }
1036
1037         data = host->data;
1038         dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
1039
1040         if (status & ERR) {
1041 #ifdef CONFIG_MMC_DEBUG
1042                 omap_hsmmc_report_irq(host, status);
1043 #endif
1044                 if ((status & CMD_TIMEOUT) ||
1045                         (status & CMD_CRC)) {
1046                         if (host->cmd) {
1047                                 if (status & CMD_TIMEOUT) {
1048                                         omap_hsmmc_reset_controller_fsm(host,
1049                                                                         SRC);
1050                                         host->cmd->error = -ETIMEDOUT;
1051                                 } else {
1052                                         host->cmd->error = -EILSEQ;
1053                                 }
1054                                 end_cmd = 1;
1055                         }
1056                         if (host->data || host->response_busy) {
1057                                 if (host->data)
1058                                         omap_hsmmc_dma_cleanup(host,
1059                                                                 -ETIMEDOUT);
1060                                 host->response_busy = 0;
1061                                 omap_hsmmc_reset_controller_fsm(host, SRD);
1062                         }
1063                 }
1064                 if ((status & DATA_TIMEOUT) ||
1065                         (status & DATA_CRC)) {
1066                         if (host->data || host->response_busy) {
1067                                 int err = (status & DATA_TIMEOUT) ?
1068                                                 -ETIMEDOUT : -EILSEQ;
1069
1070                                 if (host->data)
1071                                         omap_hsmmc_dma_cleanup(host, err);
1072                                 else
1073                                         host->mrq->cmd->error = err;
1074                                 host->response_busy = 0;
1075                                 omap_hsmmc_reset_controller_fsm(host, SRD);
1076                                 end_trans = 1;
1077                         }
1078                 }
1079                 if (status & CARD_ERR) {
1080                         dev_dbg(mmc_dev(host->mmc),
1081                                 "Ignoring card err CMD%d\n", host->cmd->opcode);
1082                         if (host->cmd)
1083                                 end_cmd = 1;
1084                         if (host->data)
1085                                 end_trans = 1;
1086                 }
1087         }
1088
1089         OMAP_HSMMC_WRITE(host->base, STAT, status);
1090
1091         if (end_cmd || ((status & CC) && host->cmd))
1092                 omap_hsmmc_cmd_done(host, host->cmd);
1093         if ((end_trans || (status & TC)) && host->mrq)
1094                 omap_hsmmc_xfer_done(host, data);
1095 }
1096
1097 /*
1098  * MMC controller IRQ handler
1099  */
1100 static irqreturn_t omap_hsmmc_irq(int irq, void *dev_id)
1101 {
1102         struct omap_hsmmc_host *host = dev_id;
1103         int status;
1104
1105         status = OMAP_HSMMC_READ(host->base, STAT);
1106         do {
1107                 omap_hsmmc_do_irq(host, status);
1108                 /* Flush posted write */
1109                 status = OMAP_HSMMC_READ(host->base, STAT);
1110         } while (status & INT_EN_MASK);
1111
1112         return IRQ_HANDLED;
1113 }
1114
1115 static void set_sd_bus_power(struct omap_hsmmc_host *host)
1116 {
1117         unsigned long i;
1118
1119         OMAP_HSMMC_WRITE(host->base, HCTL,
1120                          OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
1121         for (i = 0; i < loops_per_jiffy; i++) {
1122                 if (OMAP_HSMMC_READ(host->base, HCTL) & SDBP)
1123                         break;
1124                 cpu_relax();
1125         }
1126 }
1127
1128 /*
1129  * Switch MMC interface voltage ... only relevant for MMC1.
1130  *
1131  * MMC2 and MMC3 use fixed 1.8V levels, and maybe a transceiver.
1132  * The MMC2 transceiver controls are used instead of DAT4..DAT7.
1133  * Some chips, like eMMC ones, use internal transceivers.
1134  */
1135 static int omap_hsmmc_switch_opcond(struct omap_hsmmc_host *host, int vdd)
1136 {
1137         u32 reg_val = 0;
1138         int ret;
1139
1140         /* Disable the clocks */
1141         clk_disable(host->fclk);
1142         clk_disable(host->iclk);
1143         if (host->got_dbclk)
1144                 clk_disable(host->dbclk);
1145
1146         /* Turn the power off */
1147         ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
1148
1149         /* Turn the power ON with given VDD 1.8 or 3.0v */
1150         if (!ret)
1151                 ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1,
1152                                                vdd);
1153         clk_enable(host->iclk);
1154         clk_enable(host->fclk);
1155         if (host->got_dbclk)
1156                 clk_enable(host->dbclk);
1157
1158         if (ret != 0)
1159                 goto err;
1160
1161         OMAP_HSMMC_WRITE(host->base, HCTL,
1162                 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
1163         reg_val = OMAP_HSMMC_READ(host->base, HCTL);
1164
1165         /*
1166          * If a MMC dual voltage card is detected, the set_ios fn calls
1167          * this fn with VDD bit set for 1.8V. Upon card removal from the
1168          * slot, omap_hsmmc_set_ios sets the VDD back to 3V on MMC_POWER_OFF.
1169          *
1170          * Cope with a bit of slop in the range ... per data sheets:
1171          *  - "1.8V" for vdds_mmc1/vdds_mmc1a can be up to 2.45V max,
1172          *    but recommended values are 1.71V to 1.89V
1173          *  - "3.0V" for vdds_mmc1/vdds_mmc1a can be up to 3.5V max,
1174          *    but recommended values are 2.7V to 3.3V
1175          *
1176          * Board setup code shouldn't permit anything very out-of-range.
1177          * TWL4030-family VMMC1 and VSIM regulators are fine (avoiding the
1178          * middle range) but VSIM can't power DAT4..DAT7 at more than 3V.
1179          */
1180         if ((1 << vdd) <= MMC_VDD_23_24)
1181                 reg_val |= SDVS18;
1182         else
1183                 reg_val |= SDVS30;
1184
1185         OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
1186         set_sd_bus_power(host);
1187
1188         return 0;
1189 err:
1190         dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage\n");
1191         return ret;
1192 }
1193
1194 /* Protect the card while the cover is open */
1195 static void omap_hsmmc_protect_card(struct omap_hsmmc_host *host)
1196 {
1197         if (!mmc_slot(host).get_cover_state)
1198                 return;
1199
1200         host->reqs_blocked = 0;
1201         if (mmc_slot(host).get_cover_state(host->dev, host->slot_id)) {
1202                 if (host->protect_card) {
1203                         printk(KERN_INFO "%s: cover is closed, "
1204                                          "card is now accessible\n",
1205                                          mmc_hostname(host->mmc));
1206                         host->protect_card = 0;
1207                 }
1208         } else {
1209                 if (!host->protect_card) {
1210                         printk(KERN_INFO "%s: cover is open, "
1211                                          "card is now inaccessible\n",
1212                                          mmc_hostname(host->mmc));
1213                         host->protect_card = 1;
1214                 }
1215         }
1216 }
1217
1218 /*
1219  * Work Item to notify the core about card insertion/removal
1220  */
1221 static void omap_hsmmc_detect(struct work_struct *work)
1222 {
1223         struct omap_hsmmc_host *host =
1224                 container_of(work, struct omap_hsmmc_host, mmc_carddetect_work);
1225         struct omap_mmc_slot_data *slot = &mmc_slot(host);
1226         int carddetect;
1227
1228         if (host->suspended)
1229                 return;
1230
1231         sysfs_notify(&host->mmc->class_dev.kobj, NULL, "cover_switch");
1232
1233         if (slot->card_detect)
1234                 carddetect = slot->card_detect(host->dev, host->slot_id);
1235         else {
1236                 omap_hsmmc_protect_card(host);
1237                 carddetect = -ENOSYS;
1238         }
1239
1240         if (carddetect)
1241                 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
1242         else
1243                 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
1244 }
1245
1246 /*
1247  * ISR for handling card insertion and removal
1248  */
1249 static irqreturn_t omap_hsmmc_cd_handler(int irq, void *dev_id)
1250 {
1251         struct omap_hsmmc_host *host = (struct omap_hsmmc_host *)dev_id;
1252
1253         if (host->suspended)
1254                 return IRQ_HANDLED;
1255         schedule_work(&host->mmc_carddetect_work);
1256
1257         return IRQ_HANDLED;
1258 }
1259
1260 static int omap_hsmmc_get_dma_sync_dev(struct omap_hsmmc_host *host,
1261                                      struct mmc_data *data)
1262 {
1263         int sync_dev;
1264
1265         if (data->flags & MMC_DATA_WRITE)
1266                 sync_dev = host->dma_line_tx;
1267         else
1268                 sync_dev = host->dma_line_rx;
1269         return sync_dev;
1270 }
1271
1272 static void omap_hsmmc_config_dma_params(struct omap_hsmmc_host *host,
1273                                        struct mmc_data *data,
1274                                        struct scatterlist *sgl)
1275 {
1276         int blksz, nblk, dma_ch;
1277
1278         dma_ch = host->dma_ch;
1279         if (data->flags & MMC_DATA_WRITE) {
1280                 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1281                         (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1282                 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1283                         sg_dma_address(sgl), 0, 0);
1284         } else {
1285                 omap_set_dma_src_params(dma_ch, 0, OMAP_DMA_AMODE_CONSTANT,
1286                         (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
1287                 omap_set_dma_dest_params(dma_ch, 0, OMAP_DMA_AMODE_POST_INC,
1288                         sg_dma_address(sgl), 0, 0);
1289         }
1290
1291         blksz = host->data->blksz;
1292         nblk = sg_dma_len(sgl) / blksz;
1293
1294         omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
1295                         blksz / 4, nblk, OMAP_DMA_SYNC_FRAME,
1296                         omap_hsmmc_get_dma_sync_dev(host, data),
1297                         !(data->flags & MMC_DATA_WRITE));
1298
1299         omap_start_dma(dma_ch);
1300 }
1301
1302 /*
1303  * DMA call back function
1304  */
1305 static void omap_hsmmc_dma_cb(int lch, u16 ch_status, void *cb_data)
1306 {
1307         struct omap_hsmmc_host *host = cb_data;
1308         struct mmc_data *data = host->mrq->data;
1309         int dma_ch, req_in_progress;
1310
1311         if (!(ch_status & OMAP_DMA_BLOCK_IRQ)) {
1312                 dev_warn(mmc_dev(host->mmc), "unexpected dma status %x\n",
1313                         ch_status);
1314                 return;
1315         }
1316
1317         spin_lock(&host->irq_lock);
1318         if (host->dma_ch < 0) {
1319                 spin_unlock(&host->irq_lock);
1320                 return;
1321         }
1322
1323         host->dma_sg_idx++;
1324         if (host->dma_sg_idx < host->dma_len) {
1325                 /* Fire up the next transfer. */
1326                 omap_hsmmc_config_dma_params(host, data,
1327                                            data->sg + host->dma_sg_idx);
1328                 spin_unlock(&host->irq_lock);
1329                 return;
1330         }
1331
1332         dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_len,
1333                 omap_hsmmc_get_dma_dir(host, data));
1334
1335         req_in_progress = host->req_in_progress;
1336         dma_ch = host->dma_ch;
1337         host->dma_ch = -1;
1338         spin_unlock(&host->irq_lock);
1339
1340         omap_free_dma(dma_ch);
1341
1342         /* If DMA has finished after TC, complete the request */
1343         if (!req_in_progress) {
1344                 struct mmc_request *mrq = host->mrq;
1345
1346                 host->mrq = NULL;
1347                 mmc_request_done(host->mmc, mrq);
1348         }
1349 }
1350
1351 /*
1352  * Routine to configure and start DMA for the MMC card
1353  */
1354 static int omap_hsmmc_start_dma_transfer(struct omap_hsmmc_host *host,
1355                                         struct mmc_request *req)
1356 {
1357         int dma_ch = 0, ret = 0, i;
1358         struct mmc_data *data = req->data;
1359
1360         /* Sanity check: all the SG entries must be aligned by block size. */
1361         for (i = 0; i < data->sg_len; i++) {
1362                 struct scatterlist *sgl;
1363
1364                 sgl = data->sg + i;
1365                 if (sgl->length % data->blksz)
1366                         return -EINVAL;
1367         }
1368         if ((data->blksz % 4) != 0)
1369                 /* REVISIT: The MMC buffer increments only when MSB is written.
1370                  * Return error for blksz which is non multiple of four.
1371                  */
1372                 return -EINVAL;
1373
1374         BUG_ON(host->dma_ch != -1);
1375
1376         ret = omap_request_dma(omap_hsmmc_get_dma_sync_dev(host, data),
1377                                "MMC/SD", omap_hsmmc_dma_cb, host, &dma_ch);
1378         if (ret != 0) {
1379                 dev_err(mmc_dev(host->mmc),
1380                         "%s: omap_request_dma() failed with %d\n",
1381                         mmc_hostname(host->mmc), ret);
1382                 return ret;
1383         }
1384
1385         host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
1386                         data->sg_len, omap_hsmmc_get_dma_dir(host, data));
1387         host->dma_ch = dma_ch;
1388         host->dma_sg_idx = 0;
1389
1390         omap_hsmmc_config_dma_params(host, data, data->sg);
1391
1392         return 0;
1393 }
1394
1395 static void set_data_timeout(struct omap_hsmmc_host *host,
1396                              unsigned int timeout_ns,
1397                              unsigned int timeout_clks)
1398 {
1399         unsigned int timeout, cycle_ns;
1400         uint32_t reg, clkd, dto = 0;
1401
1402         reg = OMAP_HSMMC_READ(host->base, SYSCTL);
1403         clkd = (reg & CLKD_MASK) >> CLKD_SHIFT;
1404         if (clkd == 0)
1405                 clkd = 1;
1406
1407         cycle_ns = 1000000000 / (clk_get_rate(host->fclk) / clkd);
1408         timeout = timeout_ns / cycle_ns;
1409         timeout += timeout_clks;
1410         if (timeout) {
1411                 while ((timeout & 0x80000000) == 0) {
1412                         dto += 1;
1413                         timeout <<= 1;
1414                 }
1415                 dto = 31 - dto;
1416                 timeout <<= 1;
1417                 if (timeout && dto)
1418                         dto += 1;
1419                 if (dto >= 13)
1420                         dto -= 13;
1421                 else
1422                         dto = 0;
1423                 if (dto > 14)
1424                         dto = 14;
1425         }
1426
1427         reg &= ~DTO_MASK;
1428         reg |= dto << DTO_SHIFT;
1429         OMAP_HSMMC_WRITE(host->base, SYSCTL, reg);
1430 }
1431
1432 /*
1433  * Configure block length for MMC/SD cards and initiate the transfer.
1434  */
1435 static int
1436 omap_hsmmc_prepare_data(struct omap_hsmmc_host *host, struct mmc_request *req)
1437 {
1438         int ret;
1439         host->data = req->data;
1440
1441         if (req->data == NULL) {
1442                 OMAP_HSMMC_WRITE(host->base, BLK, 0);
1443                 /*
1444                  * Set an arbitrary 100ms data timeout for commands with
1445                  * busy signal.
1446                  */
1447                 if (req->cmd->flags & MMC_RSP_BUSY)
1448                         set_data_timeout(host, 100000000U, 0);
1449                 return 0;
1450         }
1451
1452         OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
1453                                         | (req->data->blocks << 16));
1454         set_data_timeout(host, req->data->timeout_ns, req->data->timeout_clks);
1455
1456         if (host->use_dma) {
1457                 ret = omap_hsmmc_start_dma_transfer(host, req);
1458                 if (ret != 0) {
1459                         dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
1460                         return ret;
1461                 }
1462         }
1463         return 0;
1464 }
1465
1466 /*
1467  * Request function. for read/write operation
1468  */
1469 static void omap_hsmmc_request(struct mmc_host *mmc, struct mmc_request *req)
1470 {
1471         struct omap_hsmmc_host *host = mmc_priv(mmc);
1472         int err;
1473
1474         BUG_ON(host->req_in_progress);
1475         BUG_ON(host->dma_ch != -1);
1476         if (host->protect_card) {
1477                 if (host->reqs_blocked < 3) {
1478                         /*
1479                          * Ensure the controller is left in a consistent
1480                          * state by resetting the command and data state
1481                          * machines.
1482                          */
1483                         omap_hsmmc_reset_controller_fsm(host, SRD);
1484                         omap_hsmmc_reset_controller_fsm(host, SRC);
1485                         host->reqs_blocked += 1;
1486                 }
1487                 req->cmd->error = -EBADF;
1488                 if (req->data)
1489                         req->data->error = -EBADF;
1490                 req->cmd->retries = 0;
1491                 mmc_request_done(mmc, req);
1492                 return;
1493         } else if (host->reqs_blocked)
1494                 host->reqs_blocked = 0;
1495         WARN_ON(host->mrq != NULL);
1496         host->mrq = req;
1497         err = omap_hsmmc_prepare_data(host, req);
1498         if (err) {
1499                 req->cmd->error = err;
1500                 if (req->data)
1501                         req->data->error = err;
1502                 host->mrq = NULL;
1503                 mmc_request_done(mmc, req);
1504                 return;
1505         }
1506
1507         omap_hsmmc_start_command(host, req->cmd, req->data);
1508 }
1509
1510 /* Routine to configure clock values. Exposed API to core */
1511 static void omap_hsmmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
1512 {
1513         struct omap_hsmmc_host *host = mmc_priv(mmc);
1514         u16 dsor = 0;
1515         unsigned long regval;
1516         unsigned long timeout;
1517         u32 con;
1518         int do_send_init_stream = 0;
1519
1520         mmc_host_enable(host->mmc);
1521
1522         if (ios->power_mode != host->power_mode) {
1523                 switch (ios->power_mode) {
1524                 case MMC_POWER_OFF:
1525                         mmc_slot(host).set_power(host->dev, host->slot_id,
1526                                                  0, 0);
1527                         host->vdd = 0;
1528                         break;
1529                 case MMC_POWER_UP:
1530                         mmc_slot(host).set_power(host->dev, host->slot_id,
1531                                                  1, ios->vdd);
1532                         host->vdd = ios->vdd;
1533                         break;
1534                 case MMC_POWER_ON:
1535                         do_send_init_stream = 1;
1536                         break;
1537                 }
1538                 host->power_mode = ios->power_mode;
1539         }
1540
1541         /* FIXME: set registers based only on changes to ios */
1542
1543         con = OMAP_HSMMC_READ(host->base, CON);
1544         switch (mmc->ios.bus_width) {
1545         case MMC_BUS_WIDTH_8:
1546                 OMAP_HSMMC_WRITE(host->base, CON, con | DW8);
1547                 break;
1548         case MMC_BUS_WIDTH_4:
1549                 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
1550                 OMAP_HSMMC_WRITE(host->base, HCTL,
1551                         OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
1552                 break;
1553         case MMC_BUS_WIDTH_1:
1554                 OMAP_HSMMC_WRITE(host->base, CON, con & ~DW8);
1555                 OMAP_HSMMC_WRITE(host->base, HCTL,
1556                         OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
1557                 break;
1558         }
1559
1560         if (host->id == OMAP_MMC1_DEVID) {
1561                 /* Only MMC1 can interface at 3V without some flavor
1562                  * of external transceiver; but they all handle 1.8V.
1563                  */
1564                 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
1565                         (ios->vdd == DUAL_VOLT_OCR_BIT)) {
1566                                 /*
1567                                  * The mmc_select_voltage fn of the core does
1568                                  * not seem to set the power_mode to
1569                                  * MMC_POWER_UP upon recalculating the voltage.
1570                                  * vdd 1.8v.
1571                                  */
1572                         if (omap_hsmmc_switch_opcond(host, ios->vdd) != 0)
1573                                 dev_dbg(mmc_dev(host->mmc),
1574                                                 "Switch operation failed\n");
1575                 }
1576         }
1577
1578         if (ios->clock) {
1579                 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
1580                 if (dsor < 1)
1581                         dsor = 1;
1582
1583                 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
1584                         dsor++;
1585
1586                 if (dsor > 250)
1587                         dsor = 250;
1588         }
1589         omap_hsmmc_stop_clock(host);
1590         regval = OMAP_HSMMC_READ(host->base, SYSCTL);
1591         regval = regval & ~(CLKD_MASK);
1592         regval = regval | (dsor << 6) | (DTO << 16);
1593         OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
1594         OMAP_HSMMC_WRITE(host->base, SYSCTL,
1595                 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
1596
1597         /* Wait till the ICS bit is set */
1598         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
1599         while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != ICS
1600                 && time_before(jiffies, timeout))
1601                 msleep(1);
1602
1603         OMAP_HSMMC_WRITE(host->base, SYSCTL,
1604                 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
1605
1606         if (do_send_init_stream)
1607                 send_init_stream(host);
1608
1609         con = OMAP_HSMMC_READ(host->base, CON);
1610         if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
1611                 OMAP_HSMMC_WRITE(host->base, CON, con | OD);
1612         else
1613                 OMAP_HSMMC_WRITE(host->base, CON, con & ~OD);
1614
1615         if (host->power_mode == MMC_POWER_OFF)
1616                 mmc_host_disable(host->mmc);
1617         else
1618                 mmc_host_lazy_disable(host->mmc);
1619 }
1620
1621 static int omap_hsmmc_get_cd(struct mmc_host *mmc)
1622 {
1623         struct omap_hsmmc_host *host = mmc_priv(mmc);
1624
1625         if (!mmc_slot(host).card_detect)
1626                 return -ENOSYS;
1627         return mmc_slot(host).card_detect(host->dev, host->slot_id);
1628 }
1629
1630 static int omap_hsmmc_get_ro(struct mmc_host *mmc)
1631 {
1632         struct omap_hsmmc_host *host = mmc_priv(mmc);
1633
1634         if (!mmc_slot(host).get_ro)
1635                 return -ENOSYS;
1636         return mmc_slot(host).get_ro(host->dev, 0);
1637 }
1638
1639 static void omap_hsmmc_init_card(struct mmc_host *mmc, struct mmc_card *card)
1640 {
1641         struct omap_hsmmc_host *host = mmc_priv(mmc);
1642
1643         if (mmc_slot(host).init_card)
1644                 mmc_slot(host).init_card(card);
1645 }
1646
1647 static void omap_hsmmc_conf_bus_power(struct omap_hsmmc_host *host)
1648 {
1649         u32 hctl, capa, value;
1650
1651         /* Only MMC1 supports 3.0V */
1652         if (host->id == OMAP_MMC1_DEVID) {
1653                 hctl = SDVS30;
1654                 capa = VS30 | VS18;
1655         } else {
1656                 hctl = SDVS18;
1657                 capa = VS18;
1658         }
1659
1660         value = OMAP_HSMMC_READ(host->base, HCTL) & ~SDVS_MASK;
1661         OMAP_HSMMC_WRITE(host->base, HCTL, value | hctl);
1662
1663         value = OMAP_HSMMC_READ(host->base, CAPA);
1664         OMAP_HSMMC_WRITE(host->base, CAPA, value | capa);
1665
1666         /* Set the controller to AUTO IDLE mode */
1667         value = OMAP_HSMMC_READ(host->base, SYSCONFIG);
1668         OMAP_HSMMC_WRITE(host->base, SYSCONFIG, value | AUTOIDLE);
1669
1670         /* Set SD bus power bit */
1671         set_sd_bus_power(host);
1672 }
1673
1674 /*
1675  * Dynamic power saving handling, FSM:
1676  *   ENABLED -> DISABLED -> CARDSLEEP / REGSLEEP -> OFF
1677  *     ^___________|          |                      |
1678  *     |______________________|______________________|
1679  *
1680  * ENABLED:   mmc host is fully functional
1681  * DISABLED:  fclk is off
1682  * CARDSLEEP: fclk is off, card is asleep, voltage regulator is asleep
1683  * REGSLEEP:  fclk is off, voltage regulator is asleep
1684  * OFF:       fclk is off, voltage regulator is off
1685  *
1686  * Transition handlers return the timeout for the next state transition
1687  * or negative error.
1688  */
1689
1690 enum {ENABLED = 0, DISABLED, CARDSLEEP, REGSLEEP, OFF};
1691
1692 /* Handler for [ENABLED -> DISABLED] transition */
1693 static int omap_hsmmc_enabled_to_disabled(struct omap_hsmmc_host *host)
1694 {
1695         omap_hsmmc_context_save(host);
1696         clk_disable(host->fclk);
1697         host->dpm_state = DISABLED;
1698
1699         dev_dbg(mmc_dev(host->mmc), "ENABLED -> DISABLED\n");
1700
1701         if (host->power_mode == MMC_POWER_OFF)
1702                 return 0;
1703
1704         return OMAP_MMC_SLEEP_TIMEOUT;
1705 }
1706
1707 /* Handler for [DISABLED -> REGSLEEP / CARDSLEEP] transition */
1708 static int omap_hsmmc_disabled_to_sleep(struct omap_hsmmc_host *host)
1709 {
1710         int err, new_state;
1711
1712         if (!mmc_try_claim_host(host->mmc))
1713                 return 0;
1714
1715         clk_enable(host->fclk);
1716         omap_hsmmc_context_restore(host);
1717         if (mmc_card_can_sleep(host->mmc)) {
1718                 err = mmc_card_sleep(host->mmc);
1719                 if (err < 0) {
1720                         clk_disable(host->fclk);
1721                         mmc_release_host(host->mmc);
1722                         return err;
1723                 }
1724                 new_state = CARDSLEEP;
1725         } else {
1726                 new_state = REGSLEEP;
1727         }
1728         if (mmc_slot(host).set_sleep)
1729                 mmc_slot(host).set_sleep(host->dev, host->slot_id, 1, 0,
1730                                          new_state == CARDSLEEP);
1731         /* FIXME: turn off bus power and perhaps interrupts too */
1732         clk_disable(host->fclk);
1733         host->dpm_state = new_state;
1734
1735         mmc_release_host(host->mmc);
1736
1737         dev_dbg(mmc_dev(host->mmc), "DISABLED -> %s\n",
1738                 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
1739
1740         if (mmc_slot(host).no_off)
1741                 return 0;
1742
1743         if ((host->mmc->caps & MMC_CAP_NONREMOVABLE) ||
1744             mmc_slot(host).card_detect ||
1745             (mmc_slot(host).get_cover_state &&
1746              mmc_slot(host).get_cover_state(host->dev, host->slot_id)))
1747                 return OMAP_MMC_OFF_TIMEOUT;
1748
1749         return 0;
1750 }
1751
1752 /* Handler for [REGSLEEP / CARDSLEEP -> OFF] transition */
1753 static int omap_hsmmc_sleep_to_off(struct omap_hsmmc_host *host)
1754 {
1755         if (!mmc_try_claim_host(host->mmc))
1756                 return 0;
1757
1758         if (mmc_slot(host).no_off)
1759                 return 0;
1760
1761         if (!((host->mmc->caps & MMC_CAP_NONREMOVABLE) ||
1762               mmc_slot(host).card_detect ||
1763               (mmc_slot(host).get_cover_state &&
1764                mmc_slot(host).get_cover_state(host->dev, host->slot_id)))) {
1765                 mmc_release_host(host->mmc);
1766                 return 0;
1767         }
1768
1769         mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
1770         host->vdd = 0;
1771         host->power_mode = MMC_POWER_OFF;
1772
1773         dev_dbg(mmc_dev(host->mmc), "%s -> OFF\n",
1774                 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
1775
1776         host->dpm_state = OFF;
1777
1778         mmc_release_host(host->mmc);
1779
1780         return 0;
1781 }
1782
1783 /* Handler for [DISABLED -> ENABLED] transition */
1784 static int omap_hsmmc_disabled_to_enabled(struct omap_hsmmc_host *host)
1785 {
1786         int err;
1787
1788         err = clk_enable(host->fclk);
1789         if (err < 0)
1790                 return err;
1791
1792         omap_hsmmc_context_restore(host);
1793         host->dpm_state = ENABLED;
1794
1795         dev_dbg(mmc_dev(host->mmc), "DISABLED -> ENABLED\n");
1796
1797         return 0;
1798 }
1799
1800 /* Handler for [SLEEP -> ENABLED] transition */
1801 static int omap_hsmmc_sleep_to_enabled(struct omap_hsmmc_host *host)
1802 {
1803         if (!mmc_try_claim_host(host->mmc))
1804                 return 0;
1805
1806         clk_enable(host->fclk);
1807         omap_hsmmc_context_restore(host);
1808         if (mmc_slot(host).set_sleep)
1809                 mmc_slot(host).set_sleep(host->dev, host->slot_id, 0,
1810                          host->vdd, host->dpm_state == CARDSLEEP);
1811         if (mmc_card_can_sleep(host->mmc))
1812                 mmc_card_awake(host->mmc);
1813
1814         dev_dbg(mmc_dev(host->mmc), "%s -> ENABLED\n",
1815                 host->dpm_state == CARDSLEEP ? "CARDSLEEP" : "REGSLEEP");
1816
1817         host->dpm_state = ENABLED;
1818
1819         mmc_release_host(host->mmc);
1820
1821         return 0;
1822 }
1823
1824 /* Handler for [OFF -> ENABLED] transition */
1825 static int omap_hsmmc_off_to_enabled(struct omap_hsmmc_host *host)
1826 {
1827         clk_enable(host->fclk);
1828
1829         omap_hsmmc_context_restore(host);
1830         omap_hsmmc_conf_bus_power(host);
1831         mmc_power_restore_host(host->mmc);
1832
1833         host->dpm_state = ENABLED;
1834
1835         dev_dbg(mmc_dev(host->mmc), "OFF -> ENABLED\n");
1836
1837         return 0;
1838 }
1839
1840 /*
1841  * Bring MMC host to ENABLED from any other PM state.
1842  */
1843 static int omap_hsmmc_enable(struct mmc_host *mmc)
1844 {
1845         struct omap_hsmmc_host *host = mmc_priv(mmc);
1846
1847         switch (host->dpm_state) {
1848         case DISABLED:
1849                 return omap_hsmmc_disabled_to_enabled(host);
1850         case CARDSLEEP:
1851         case REGSLEEP:
1852                 return omap_hsmmc_sleep_to_enabled(host);
1853         case OFF:
1854                 return omap_hsmmc_off_to_enabled(host);
1855         default:
1856                 dev_dbg(mmc_dev(host->mmc), "UNKNOWN state\n");
1857                 return -EINVAL;
1858         }
1859 }
1860
1861 /*
1862  * Bring MMC host in PM state (one level deeper).
1863  */
1864 static int omap_hsmmc_disable(struct mmc_host *mmc, int lazy)
1865 {
1866         struct omap_hsmmc_host *host = mmc_priv(mmc);
1867
1868         switch (host->dpm_state) {
1869         case ENABLED: {
1870                 int delay;
1871
1872                 delay = omap_hsmmc_enabled_to_disabled(host);
1873                 if (lazy || delay < 0)
1874                         return delay;
1875                 return 0;
1876         }
1877         case DISABLED:
1878                 return omap_hsmmc_disabled_to_sleep(host);
1879         case CARDSLEEP:
1880         case REGSLEEP:
1881                 return omap_hsmmc_sleep_to_off(host);
1882         default:
1883                 dev_dbg(mmc_dev(host->mmc), "UNKNOWN state\n");
1884                 return -EINVAL;
1885         }
1886 }
1887
1888 static int omap_hsmmc_enable_fclk(struct mmc_host *mmc)
1889 {
1890         struct omap_hsmmc_host *host = mmc_priv(mmc);
1891         int err;
1892
1893         err = clk_enable(host->fclk);
1894         if (err)
1895                 return err;
1896         dev_dbg(mmc_dev(host->mmc), "mmc_fclk: enabled\n");
1897         omap_hsmmc_context_restore(host);
1898         return 0;
1899 }
1900
1901 static int omap_hsmmc_disable_fclk(struct mmc_host *mmc, int lazy)
1902 {
1903         struct omap_hsmmc_host *host = mmc_priv(mmc);
1904
1905         omap_hsmmc_context_save(host);
1906         clk_disable(host->fclk);
1907         dev_dbg(mmc_dev(host->mmc), "mmc_fclk: disabled\n");
1908         return 0;
1909 }
1910
1911 static const struct mmc_host_ops omap_hsmmc_ops = {
1912         .enable = omap_hsmmc_enable_fclk,
1913         .disable = omap_hsmmc_disable_fclk,
1914         .request = omap_hsmmc_request,
1915         .set_ios = omap_hsmmc_set_ios,
1916         .get_cd = omap_hsmmc_get_cd,
1917         .get_ro = omap_hsmmc_get_ro,
1918         .init_card = omap_hsmmc_init_card,
1919         /* NYET -- enable_sdio_irq */
1920 };
1921
1922 static const struct mmc_host_ops omap_hsmmc_ps_ops = {
1923         .enable = omap_hsmmc_enable,
1924         .disable = omap_hsmmc_disable,
1925         .request = omap_hsmmc_request,
1926         .set_ios = omap_hsmmc_set_ios,
1927         .get_cd = omap_hsmmc_get_cd,
1928         .get_ro = omap_hsmmc_get_ro,
1929         .init_card = omap_hsmmc_init_card,
1930         /* NYET -- enable_sdio_irq */
1931 };
1932
1933 #ifdef CONFIG_DEBUG_FS
1934
1935 static int omap_hsmmc_regs_show(struct seq_file *s, void *data)
1936 {
1937         struct mmc_host *mmc = s->private;
1938         struct omap_hsmmc_host *host = mmc_priv(mmc);
1939         int context_loss = 0;
1940
1941         if (host->pdata->get_context_loss_count)
1942                 context_loss = host->pdata->get_context_loss_count(host->dev);
1943
1944         seq_printf(s, "mmc%d:\n"
1945                         " enabled:\t%d\n"
1946                         " dpm_state:\t%d\n"
1947                         " nesting_cnt:\t%d\n"
1948                         " ctx_loss:\t%d:%d\n"
1949                         "\nregs:\n",
1950                         mmc->index, mmc->enabled ? 1 : 0,
1951                         host->dpm_state, mmc->nesting_cnt,
1952                         host->context_loss, context_loss);
1953
1954         if (host->suspended || host->dpm_state == OFF) {
1955                 seq_printf(s, "host suspended, can't read registers\n");
1956                 return 0;
1957         }
1958
1959         if (clk_enable(host->fclk) != 0) {
1960                 seq_printf(s, "can't read the regs\n");
1961                 return 0;
1962         }
1963
1964         seq_printf(s, "SYSCONFIG:\t0x%08x\n",
1965                         OMAP_HSMMC_READ(host->base, SYSCONFIG));
1966         seq_printf(s, "CON:\t\t0x%08x\n",
1967                         OMAP_HSMMC_READ(host->base, CON));
1968         seq_printf(s, "HCTL:\t\t0x%08x\n",
1969                         OMAP_HSMMC_READ(host->base, HCTL));
1970         seq_printf(s, "SYSCTL:\t\t0x%08x\n",
1971                         OMAP_HSMMC_READ(host->base, SYSCTL));
1972         seq_printf(s, "IE:\t\t0x%08x\n",
1973                         OMAP_HSMMC_READ(host->base, IE));
1974         seq_printf(s, "ISE:\t\t0x%08x\n",
1975                         OMAP_HSMMC_READ(host->base, ISE));
1976         seq_printf(s, "CAPA:\t\t0x%08x\n",
1977                         OMAP_HSMMC_READ(host->base, CAPA));
1978
1979         clk_disable(host->fclk);
1980
1981         return 0;
1982 }
1983
1984 static int omap_hsmmc_regs_open(struct inode *inode, struct file *file)
1985 {
1986         return single_open(file, omap_hsmmc_regs_show, inode->i_private);
1987 }
1988
1989 static const struct file_operations mmc_regs_fops = {
1990         .open           = omap_hsmmc_regs_open,
1991         .read           = seq_read,
1992         .llseek         = seq_lseek,
1993         .release        = single_release,
1994 };
1995
1996 static void omap_hsmmc_debugfs(struct mmc_host *mmc)
1997 {
1998         if (mmc->debugfs_root)
1999                 debugfs_create_file("regs", S_IRUSR, mmc->debugfs_root,
2000                         mmc, &mmc_regs_fops);
2001 }
2002
2003 #else
2004
2005 static void omap_hsmmc_debugfs(struct mmc_host *mmc)
2006 {
2007 }
2008
2009 #endif
2010
2011 static int __init omap_hsmmc_probe(struct platform_device *pdev)
2012 {
2013         struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
2014         struct mmc_host *mmc;
2015         struct omap_hsmmc_host *host = NULL;
2016         struct resource *res;
2017         int ret, irq;
2018
2019         if (pdata == NULL) {
2020                 dev_err(&pdev->dev, "Platform Data is missing\n");
2021                 return -ENXIO;
2022         }
2023
2024         if (pdata->nr_slots == 0) {
2025                 dev_err(&pdev->dev, "No Slots\n");
2026                 return -ENXIO;
2027         }
2028
2029         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2030         irq = platform_get_irq(pdev, 0);
2031         if (res == NULL || irq < 0)
2032                 return -ENXIO;
2033
2034         res->start += pdata->reg_offset;
2035         res->end += pdata->reg_offset;
2036         res = request_mem_region(res->start, res->end - res->start + 1,
2037                                                         pdev->name);
2038         if (res == NULL)
2039                 return -EBUSY;
2040
2041         ret = omap_hsmmc_gpio_init(pdata);
2042         if (ret)
2043                 goto err;
2044
2045         mmc = mmc_alloc_host(sizeof(struct omap_hsmmc_host), &pdev->dev);
2046         if (!mmc) {
2047                 ret = -ENOMEM;
2048                 goto err_alloc;
2049         }
2050
2051         host            = mmc_priv(mmc);
2052         host->mmc       = mmc;
2053         host->pdata     = pdata;
2054         host->dev       = &pdev->dev;
2055         host->use_dma   = 1;
2056         host->dev->dma_mask = &pdata->dma_mask;
2057         host->dma_ch    = -1;
2058         host->irq       = irq;
2059         host->id        = pdev->id;
2060         host->slot_id   = 0;
2061         host->mapbase   = res->start;
2062         host->base      = ioremap(host->mapbase, SZ_4K);
2063         host->power_mode = MMC_POWER_OFF;
2064
2065         platform_set_drvdata(pdev, host);
2066         INIT_WORK(&host->mmc_carddetect_work, omap_hsmmc_detect);
2067
2068         if (mmc_slot(host).power_saving)
2069                 mmc->ops        = &omap_hsmmc_ps_ops;
2070         else
2071                 mmc->ops        = &omap_hsmmc_ops;
2072
2073         /*
2074          * If regulator_disable can only put vcc_aux to sleep then there is
2075          * no off state.
2076          */
2077         if (mmc_slot(host).vcc_aux_disable_is_sleep)
2078                 mmc_slot(host).no_off = 1;
2079
2080         mmc->f_min      = 400000;
2081         mmc->f_max      = 52000000;
2082
2083         spin_lock_init(&host->irq_lock);
2084
2085         host->iclk = clk_get(&pdev->dev, "ick");
2086         if (IS_ERR(host->iclk)) {
2087                 ret = PTR_ERR(host->iclk);
2088                 host->iclk = NULL;
2089                 goto err1;
2090         }
2091         host->fclk = clk_get(&pdev->dev, "fck");
2092         if (IS_ERR(host->fclk)) {
2093                 ret = PTR_ERR(host->fclk);
2094                 host->fclk = NULL;
2095                 clk_put(host->iclk);
2096                 goto err1;
2097         }
2098
2099         omap_hsmmc_context_save(host);
2100
2101         mmc->caps |= MMC_CAP_DISABLE;
2102         mmc_set_disable_delay(mmc, OMAP_MMC_DISABLED_TIMEOUT);
2103         /* we start off in DISABLED state */
2104         host->dpm_state = DISABLED;
2105
2106         if (mmc_host_enable(host->mmc) != 0) {
2107                 clk_put(host->iclk);
2108                 clk_put(host->fclk);
2109                 goto err1;
2110         }
2111
2112         if (clk_enable(host->iclk) != 0) {
2113                 mmc_host_disable(host->mmc);
2114                 clk_put(host->iclk);
2115                 clk_put(host->fclk);
2116                 goto err1;
2117         }
2118
2119         if (cpu_is_omap2430()) {
2120                 host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
2121                 /*
2122                  * MMC can still work without debounce clock.
2123                  */
2124                 if (IS_ERR(host->dbclk))
2125                         dev_warn(mmc_dev(host->mmc),
2126                                 "Failed to get debounce clock\n");
2127                 else
2128                         host->got_dbclk = 1;
2129
2130                 if (host->got_dbclk)
2131                         if (clk_enable(host->dbclk) != 0)
2132                                 dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
2133                                                         " clk failed\n");
2134         }
2135
2136         /* Since we do only SG emulation, we can have as many segs
2137          * as we want. */
2138         mmc->max_segs = 1024;
2139
2140         mmc->max_blk_size = 512;       /* Block Length at max can be 1024 */
2141         mmc->max_blk_count = 0xFFFF;    /* No. of Blocks is 16 bits */
2142         mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count;
2143         mmc->max_seg_size = mmc->max_req_size;
2144
2145         mmc->caps |= MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED |
2146                      MMC_CAP_WAIT_WHILE_BUSY | MMC_CAP_ERASE;
2147
2148         mmc->caps |= mmc_slot(host).caps;
2149         if (mmc->caps & MMC_CAP_8_BIT_DATA)
2150                 mmc->caps |= MMC_CAP_4_BIT_DATA;
2151
2152         if (mmc_slot(host).nonremovable)
2153                 mmc->caps |= MMC_CAP_NONREMOVABLE;
2154
2155         omap_hsmmc_conf_bus_power(host);
2156
2157         /* Select DMA lines */
2158         switch (host->id) {
2159         case OMAP_MMC1_DEVID:
2160                 host->dma_line_tx = OMAP24XX_DMA_MMC1_TX;
2161                 host->dma_line_rx = OMAP24XX_DMA_MMC1_RX;
2162                 break;
2163         case OMAP_MMC2_DEVID:
2164                 host->dma_line_tx = OMAP24XX_DMA_MMC2_TX;
2165                 host->dma_line_rx = OMAP24XX_DMA_MMC2_RX;
2166                 break;
2167         case OMAP_MMC3_DEVID:
2168                 host->dma_line_tx = OMAP34XX_DMA_MMC3_TX;
2169                 host->dma_line_rx = OMAP34XX_DMA_MMC3_RX;
2170                 break;
2171         case OMAP_MMC4_DEVID:
2172                 host->dma_line_tx = OMAP44XX_DMA_MMC4_TX;
2173                 host->dma_line_rx = OMAP44XX_DMA_MMC4_RX;
2174                 break;
2175         case OMAP_MMC5_DEVID:
2176                 host->dma_line_tx = OMAP44XX_DMA_MMC5_TX;
2177                 host->dma_line_rx = OMAP44XX_DMA_MMC5_RX;
2178                 break;
2179         default:
2180                 dev_err(mmc_dev(host->mmc), "Invalid MMC id\n");
2181                 goto err_irq;
2182         }
2183
2184         /* Request IRQ for MMC operations */
2185         ret = request_irq(host->irq, omap_hsmmc_irq, IRQF_DISABLED,
2186                         mmc_hostname(mmc), host);
2187         if (ret) {
2188                 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ\n");
2189                 goto err_irq;
2190         }
2191
2192         if (pdata->init != NULL) {
2193                 if (pdata->init(&pdev->dev) != 0) {
2194                         dev_dbg(mmc_dev(host->mmc),
2195                                 "Unable to configure MMC IRQs\n");
2196                         goto err_irq_cd_init;
2197                 }
2198         }
2199
2200         if (omap_hsmmc_have_reg() && !mmc_slot(host).set_power) {
2201                 ret = omap_hsmmc_reg_get(host);
2202                 if (ret)
2203                         goto err_reg;
2204                 host->use_reg = 1;
2205         }
2206
2207         mmc->ocr_avail = mmc_slot(host).ocr_mask;
2208
2209         /* Request IRQ for card detect */
2210         if ((mmc_slot(host).card_detect_irq)) {
2211                 ret = request_irq(mmc_slot(host).card_detect_irq,
2212                                   omap_hsmmc_cd_handler,
2213                                   IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING
2214                                           | IRQF_DISABLED,
2215                                   mmc_hostname(mmc), host);
2216                 if (ret) {
2217                         dev_dbg(mmc_dev(host->mmc),
2218                                 "Unable to grab MMC CD IRQ\n");
2219                         goto err_irq_cd;
2220                 }
2221         }
2222
2223         omap_hsmmc_disable_irq(host);
2224
2225         mmc_host_lazy_disable(host->mmc);
2226
2227         omap_hsmmc_protect_card(host);
2228
2229         mmc_add_host(mmc);
2230
2231         if (mmc_slot(host).name != NULL) {
2232                 ret = device_create_file(&mmc->class_dev, &dev_attr_slot_name);
2233                 if (ret < 0)
2234                         goto err_slot_name;
2235         }
2236         if (mmc_slot(host).card_detect_irq && mmc_slot(host).get_cover_state) {
2237                 ret = device_create_file(&mmc->class_dev,
2238                                         &dev_attr_cover_switch);
2239                 if (ret < 0)
2240                         goto err_slot_name;
2241         }
2242
2243         omap_hsmmc_debugfs(mmc);
2244
2245         return 0;
2246
2247 err_slot_name:
2248         mmc_remove_host(mmc);
2249         free_irq(mmc_slot(host).card_detect_irq, host);
2250 err_irq_cd:
2251         if (host->use_reg)
2252                 omap_hsmmc_reg_put(host);
2253 err_reg:
2254         if (host->pdata->cleanup)
2255                 host->pdata->cleanup(&pdev->dev);
2256 err_irq_cd_init:
2257         free_irq(host->irq, host);
2258 err_irq:
2259         mmc_host_disable(host->mmc);
2260         clk_disable(host->iclk);
2261         clk_put(host->fclk);
2262         clk_put(host->iclk);
2263         if (host->got_dbclk) {
2264                 clk_disable(host->dbclk);
2265                 clk_put(host->dbclk);
2266         }
2267 err1:
2268         iounmap(host->base);
2269         platform_set_drvdata(pdev, NULL);
2270         mmc_free_host(mmc);
2271 err_alloc:
2272         omap_hsmmc_gpio_free(pdata);
2273 err:
2274         release_mem_region(res->start, res->end - res->start + 1);
2275         return ret;
2276 }
2277
2278 static int omap_hsmmc_remove(struct platform_device *pdev)
2279 {
2280         struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
2281         struct resource *res;
2282
2283         if (host) {
2284                 mmc_host_enable(host->mmc);
2285                 mmc_remove_host(host->mmc);
2286                 if (host->use_reg)
2287                         omap_hsmmc_reg_put(host);
2288                 if (host->pdata->cleanup)
2289                         host->pdata->cleanup(&pdev->dev);
2290                 free_irq(host->irq, host);
2291                 if (mmc_slot(host).card_detect_irq)
2292                         free_irq(mmc_slot(host).card_detect_irq, host);
2293                 flush_scheduled_work();
2294
2295                 mmc_host_disable(host->mmc);
2296                 clk_disable(host->iclk);
2297                 clk_put(host->fclk);
2298                 clk_put(host->iclk);
2299                 if (host->got_dbclk) {
2300                         clk_disable(host->dbclk);
2301                         clk_put(host->dbclk);
2302                 }
2303
2304                 mmc_free_host(host->mmc);
2305                 iounmap(host->base);
2306                 omap_hsmmc_gpio_free(pdev->dev.platform_data);
2307         }
2308
2309         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2310         if (res)
2311                 release_mem_region(res->start, res->end - res->start + 1);
2312         platform_set_drvdata(pdev, NULL);
2313
2314         return 0;
2315 }
2316
2317 #ifdef CONFIG_PM
2318 static int omap_hsmmc_suspend(struct device *dev)
2319 {
2320         int ret = 0;
2321         struct platform_device *pdev = to_platform_device(dev);
2322         struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
2323
2324         if (host && host->suspended)
2325                 return 0;
2326
2327         if (host) {
2328                 host->suspended = 1;
2329                 if (host->pdata->suspend) {
2330                         ret = host->pdata->suspend(&pdev->dev,
2331                                                         host->slot_id);
2332                         if (ret) {
2333                                 dev_dbg(mmc_dev(host->mmc),
2334                                         "Unable to handle MMC board"
2335                                         " level suspend\n");
2336                                 host->suspended = 0;
2337                                 return ret;
2338                         }
2339                 }
2340                 cancel_work_sync(&host->mmc_carddetect_work);
2341                 ret = mmc_suspend_host(host->mmc);
2342                 mmc_host_enable(host->mmc);
2343                 if (ret == 0) {
2344                         omap_hsmmc_disable_irq(host);
2345                         OMAP_HSMMC_WRITE(host->base, HCTL,
2346                                 OMAP_HSMMC_READ(host->base, HCTL) & ~SDBP);
2347                         mmc_host_disable(host->mmc);
2348                         clk_disable(host->iclk);
2349                         if (host->got_dbclk)
2350                                 clk_disable(host->dbclk);
2351                 } else {
2352                         host->suspended = 0;
2353                         if (host->pdata->resume) {
2354                                 ret = host->pdata->resume(&pdev->dev,
2355                                                           host->slot_id);
2356                                 if (ret)
2357                                         dev_dbg(mmc_dev(host->mmc),
2358                                                 "Unmask interrupt failed\n");
2359                         }
2360                         mmc_host_disable(host->mmc);
2361                 }
2362
2363         }
2364         return ret;
2365 }
2366
2367 /* Routine to resume the MMC device */
2368 static int omap_hsmmc_resume(struct device *dev)
2369 {
2370         int ret = 0;
2371         struct platform_device *pdev = to_platform_device(dev);
2372         struct omap_hsmmc_host *host = platform_get_drvdata(pdev);
2373
2374         if (host && !host->suspended)
2375                 return 0;
2376
2377         if (host) {
2378                 ret = clk_enable(host->iclk);
2379                 if (ret)
2380                         goto clk_en_err;
2381
2382                 if (mmc_host_enable(host->mmc) != 0) {
2383                         clk_disable(host->iclk);
2384                         goto clk_en_err;
2385                 }
2386
2387                 if (host->got_dbclk)
2388                         clk_enable(host->dbclk);
2389
2390                 omap_hsmmc_conf_bus_power(host);
2391
2392                 if (host->pdata->resume) {
2393                         ret = host->pdata->resume(&pdev->dev, host->slot_id);
2394                         if (ret)
2395                                 dev_dbg(mmc_dev(host->mmc),
2396                                         "Unmask interrupt failed\n");
2397                 }
2398
2399                 omap_hsmmc_protect_card(host);
2400
2401                 /* Notify the core to resume the host */
2402                 ret = mmc_resume_host(host->mmc);
2403                 if (ret == 0)
2404                         host->suspended = 0;
2405
2406                 mmc_host_lazy_disable(host->mmc);
2407         }
2408
2409         return ret;
2410
2411 clk_en_err:
2412         dev_dbg(mmc_dev(host->mmc),
2413                 "Failed to enable MMC clocks during resume\n");
2414         return ret;
2415 }
2416
2417 #else
2418 #define omap_hsmmc_suspend      NULL
2419 #define omap_hsmmc_resume               NULL
2420 #endif
2421
2422 static struct dev_pm_ops omap_hsmmc_dev_pm_ops = {
2423         .suspend        = omap_hsmmc_suspend,
2424         .resume         = omap_hsmmc_resume,
2425 };
2426
2427 static struct platform_driver omap_hsmmc_driver = {
2428         .remove         = omap_hsmmc_remove,
2429         .driver         = {
2430                 .name = DRIVER_NAME,
2431                 .owner = THIS_MODULE,
2432                 .pm = &omap_hsmmc_dev_pm_ops,
2433         },
2434 };
2435
2436 static int __init omap_hsmmc_init(void)
2437 {
2438         /* Register the MMC driver */
2439         return platform_driver_probe(&omap_hsmmc_driver, omap_hsmmc_probe);
2440 }
2441
2442 static void __exit omap_hsmmc_cleanup(void)
2443 {
2444         /* Unregister MMC driver */
2445         platform_driver_unregister(&omap_hsmmc_driver);
2446 }
2447
2448 module_init(omap_hsmmc_init);
2449 module_exit(omap_hsmmc_cleanup);
2450
2451 MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
2452 MODULE_LICENSE("GPL");
2453 MODULE_ALIAS("platform:" DRIVER_NAME);
2454 MODULE_AUTHOR("Texas Instruments Inc");