]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/blob - drivers/mmc/host/omap_hsmmc.c
ARM: OMAP: HSMMC: enable use as a module
[linux-2.6-omap-h63xx.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/interrupt.h>
21 #include <linux/delay.h>
22 #include <linux/dma-mapping.h>
23 #include <linux/platform_device.h>
24 #include <linux/workqueue.h>
25 #include <linux/timer.h>
26 #include <linux/clk.h>
27 #include <linux/mmc/host.h>
28 #include <linux/io.h>
29 #include <asm/semaphore.h>
30 #include <asm/dma.h>
31 #include <asm/hardware.h>
32 #include <asm/arch/board.h>
33 #include <asm/arch/mmc.h>
34 #include <asm/arch/cpu.h>
35
36 /* OMAP HSMMC Host Controller Registers */
37 #define OMAP_HSMMC_SYSCONFIG    0x0010
38 #define OMAP_HSMMC_CON          0x002C
39 #define OMAP_HSMMC_BLK          0x0104
40 #define OMAP_HSMMC_ARG          0x0108
41 #define OMAP_HSMMC_CMD          0x010C
42 #define OMAP_HSMMC_RSP10        0x0110
43 #define OMAP_HSMMC_RSP32        0x0114
44 #define OMAP_HSMMC_RSP54        0x0118
45 #define OMAP_HSMMC_RSP76        0x011C
46 #define OMAP_HSMMC_DATA         0x0120
47 #define OMAP_HSMMC_HCTL         0x0128
48 #define OMAP_HSMMC_SYSCTL       0x012C
49 #define OMAP_HSMMC_STAT         0x0130
50 #define OMAP_HSMMC_IE           0x0134
51 #define OMAP_HSMMC_ISE          0x0138
52 #define OMAP_HSMMC_CAPA         0x0140
53
54 #define VS18                    (1<<26)
55 #define VS30                    (1<<25)
56 #define SDVS18                  (0x5<<9)
57 #define SDVS30                  (0x6<<9)
58 #define SDVSCLR                 0xFFFFF1FF
59 #define SDVSDET                 0x00000400
60 #define AUTOIDLE                0x1
61 #define SDBP                    (1<<8)
62 #define DTO                     0xe
63 #define ICE                     0x1
64 #define ICS                     0x2
65 #define CEN                     (1<<2)
66 #define CLKD_MASK               0x0000FFC0
67 #define INT_EN_MASK             0x307F0033
68 #define INIT_STREAM             (1<<1)
69 #define DP_SELECT               (1<<21)
70 #define DDIR                    (1<<4)
71 #define DMA_EN                  0x1
72 #define MSBS                    1<<5
73 #define BCE                     1<<1
74 #define FOUR_BIT                1 << 1
75 #define CC                      0x1
76 #define TC                      0x02
77 #define OD                      0x1
78 #define ERR                     (1 << 15)
79 #define CMD_TIMEOUT             (1 << 16)
80 #define DATA_TIMEOUT            (1 << 20)
81 #define CMD_CRC                 (1 << 17)
82 #define DATA_CRC                (1 << 21)
83 #define CARD_ERR                (1 << 28)
84 #define STAT_CLEAR              0xFFFFFFFF
85 #define INIT_STREAM_CMD         0x00000000
86 #define DUAL_VOLT_OCR_BIT       7
87
88 #define OMAP_MMC1_DEVID         1
89 #define OMAP_MMC2_DEVID         2
90 #define OMAP_MMC_DATADIR_NONE   0
91 #define OMAP_MMC_DATADIR_READ   1
92 #define OMAP_MMC_DATADIR_WRITE  2
93 #define MMC_TIMEOUT_MS          20
94 #define OMAP_MMC_MASTER_CLOCK   96000000
95 #define DRIVER_NAME             "mmci-omap"
96 /*
97  * slot_id is device id - 1, device id is a static value
98  * of 1 to represent device 1 etc..
99  */
100 #define mmc_slot(host)          (host->pdata->slots[host->slot_id])
101
102 /*
103  * MMC Host controller read/write API's
104  */
105 #define OMAP_HSMMC_READ(base, reg)      \
106         __raw_readl((base) + OMAP_HSMMC_##reg)
107
108 #define OMAP_HSMMC_WRITE(base, reg, val) \
109         __raw_writel((val), (base) + OMAP_HSMMC_##reg)
110
111 struct mmc_omap_host {
112         struct  device          *dev;
113         struct  mmc_host        *mmc;
114         struct  mmc_request     *mrq;
115         struct  mmc_command     *cmd;
116         struct  mmc_data        *data;
117         struct  clk             *fclk;
118         struct  clk             *iclk;
119         struct  clk             *dbclk;
120         struct  semaphore       sem;
121         struct  work_struct     mmc_carddetect_work;
122         void    __iomem         *base;
123         resource_size_t         mapbase;
124         unsigned int            id;
125         unsigned int            dma_len;
126         unsigned int            dma_dir;
127         unsigned char           bus_mode;
128         unsigned char           datadir;
129         u32                     *buffer;
130         u32                     bytesleft;
131         int                     suspended;
132         int                     irq;
133         int                     carddetect;
134         int                     use_dma, dma_ch;
135         int                     initstr;
136         int                     slot_id;
137         int                     dbclk_enabled;
138         struct  omap_mmc_platform_data  *pdata;
139 };
140
141 /*
142  * Stop clock to the card
143  */
144 static void omap_mmc_stop_clock(struct mmc_omap_host *host)
145 {
146         OMAP_HSMMC_WRITE(host->base, SYSCTL,
147                 OMAP_HSMMC_READ(host->base, SYSCTL) & ~CEN);
148         if ((OMAP_HSMMC_READ(host->base, SYSCTL) & CEN) != 0x0)
149                 dev_dbg(mmc_dev(host->mmc), "MMC Clock is not stoped");
150 }
151
152 /*
153  * Send init stream sequence to card
154  * before sending IDLE command
155  */
156 static void send_init_stream(struct mmc_omap_host *host)
157 {
158         int reg = 0;
159         unsigned long timeout;
160
161         disable_irq(host->irq);
162         OMAP_HSMMC_WRITE(host->base, CON,
163                 OMAP_HSMMC_READ(host->base, CON) | INIT_STREAM);
164         OMAP_HSMMC_WRITE(host->base, CMD, INIT_STREAM_CMD);
165
166         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
167         while ((reg != CC) && time_before(jiffies, timeout))
168                 reg = OMAP_HSMMC_READ(host->base, STAT) & CC;
169
170         OMAP_HSMMC_WRITE(host->base, CON,
171                 OMAP_HSMMC_READ(host->base, CON) & ~INIT_STREAM);
172         enable_irq(host->irq);
173 }
174
175 /*
176  * Configure the response type and send the cmd.
177  */
178 static void
179 mmc_omap_start_command(struct mmc_omap_host *host, struct mmc_command *cmd,
180         struct mmc_data *data)
181 {
182         int cmdreg = 0, resptype = 0, cmdtype = 0;
183
184         dev_dbg(mmc_dev(host->mmc), "%s: CMD%d, argument 0x%08x\n",
185                 mmc_hostname(host->mmc), cmd->opcode, cmd->arg);
186         host->cmd = cmd;
187
188         /*
189          * Clear status bits and enable interrupts
190          */
191         OMAP_HSMMC_WRITE(host->base, STAT, STAT_CLEAR);
192         OMAP_HSMMC_WRITE(host->base, ISE, INT_EN_MASK);
193         OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
194
195         if (cmd->flags & MMC_RSP_PRESENT) {
196                 if (cmd->flags & MMC_RSP_136)
197                         resptype = 1;
198                 else
199                         resptype = 2;
200         }
201
202         /*
203          * Unlike OMAP1 controller, the cmdtype does not seem to be based on
204          * ac, bc, adtc, bcr. Only CMD12 needs a val of 0x3, rest 0x0.
205          */
206         if (cmd->opcode == 12)
207                 cmdtype = 0x3;
208
209         cmdreg = (cmd->opcode << 24) | (resptype << 16) | (cmdtype << 22);
210
211         if (data) {
212                 cmdreg |= DP_SELECT | MSBS | BCE;
213                 if (data->flags & MMC_DATA_READ)
214                         cmdreg |= DDIR;
215                 else
216                         cmdreg &= ~(DDIR);
217         }
218
219         if (host->use_dma)
220                 cmdreg |= DMA_EN;
221
222         OMAP_HSMMC_WRITE(host->base, ARG, cmd->arg);
223         OMAP_HSMMC_WRITE(host->base, CMD, cmdreg);
224 }
225
226 /*
227  * Notify the transfer complete to MMC core
228  */
229 static void
230 mmc_omap_xfer_done(struct mmc_omap_host *host, struct mmc_data *data)
231 {
232         host->data = NULL;
233
234         if (host->use_dma && host->dma_ch != -1)
235                 dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_len,
236                         host->dma_dir);
237
238         host->datadir = OMAP_MMC_DATADIR_NONE;
239
240         if (!data->error)
241                 data->bytes_xfered += data->blocks * (data->blksz);
242         else
243                 data->bytes_xfered = 0;
244
245         if (!data->stop) {
246                 host->mrq = NULL;
247                 mmc_request_done(host->mmc, data->mrq);
248                 return;
249         }
250         mmc_omap_start_command(host, data->stop, NULL);
251 }
252
253 /*
254  * Notify the core about command completion
255  */
256 static void
257 mmc_omap_cmd_done(struct mmc_omap_host *host, struct mmc_command *cmd)
258 {
259         host->cmd = NULL;
260
261         if (cmd->flags & MMC_RSP_PRESENT) {
262                 if (cmd->flags & MMC_RSP_136) {
263                         /* response type 2 */
264                         cmd->resp[3] = OMAP_HSMMC_READ(host->base, RSP10);
265                         cmd->resp[2] = OMAP_HSMMC_READ(host->base, RSP32);
266                         cmd->resp[1] = OMAP_HSMMC_READ(host->base, RSP54);
267                         cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP76);
268                 } else {
269                         /* response types 1, 1b, 3, 4, 5, 6 */
270                         cmd->resp[0] = OMAP_HSMMC_READ(host->base, RSP10);
271                 }
272         }
273         if (host->data == NULL || cmd->error) {
274                 host->mrq = NULL;
275                 mmc_request_done(host->mmc, cmd->mrq);
276         }
277 }
278
279 /*
280  * DMA clean up for command errors
281  */
282 static void mmc_dma_cleanup(struct mmc_omap_host *host)
283 {
284         host->data->error = -ETIMEDOUT;
285
286         if (host->use_dma && host->dma_ch != -1) {
287                 dma_unmap_sg(mmc_dev(host->mmc), host->data->sg, host->dma_len,
288                         host->dma_dir);
289                 omap_free_dma(host->dma_ch);
290                 host->dma_ch = -1;
291                 up(&host->sem);
292         }
293         host->data = NULL;
294         host->datadir = OMAP_MMC_DATADIR_NONE;
295 }
296
297 /*
298  * MMC controller IRQ handler
299  */
300 static irqreturn_t mmc_omap_irq(int irq, void *dev_id)
301 {
302         struct mmc_omap_host *host = dev_id;
303         int end_cmd = 0, end_trans = 0, status;
304
305         if (host->cmd == NULL && host->data == NULL) {
306                 OMAP_HSMMC_WRITE(host->base, STAT,
307                         OMAP_HSMMC_READ(host->base, STAT));
308                 return IRQ_HANDLED;
309         }
310
311         status = OMAP_HSMMC_READ(host->base, STAT);
312         dev_dbg(mmc_dev(host->mmc), "IRQ Status is %x\n", status);
313
314         if (status & ERR) {
315                 if ((status & CMD_TIMEOUT) ||
316                         (status & CMD_CRC)) {
317                         if (host->cmd) {
318                                 if (status & CMD_TIMEOUT)
319                                         host->cmd->error = -ETIMEDOUT;
320                                 else
321                                         host->cmd->error = -EILSEQ;
322                                 end_cmd = 1;
323                         }
324                         if (host->data)
325                                 mmc_dma_cleanup(host);
326                 }
327                 if ((status & DATA_TIMEOUT) ||
328                         (status & DATA_CRC)) {
329                         if (host->data) {
330                                 if (status & DATA_TIMEOUT)
331                                         mmc_dma_cleanup(host);
332                                 else
333                                         host->data->error = -EILSEQ;
334                                 end_trans = 1;
335                         }
336                 }
337                 if (status & CARD_ERR) {
338                         dev_dbg(mmc_dev(host->mmc),
339                                 "Ignoring card err CMD%d\n", host->cmd->opcode);
340                         if (host->cmd)
341                                 end_cmd = 1;
342                         if (host->data)
343                                 end_trans = 1;
344                 }
345         }
346
347         OMAP_HSMMC_WRITE(host->base, STAT, status);
348
349         if (end_cmd || (status & CC))
350                 mmc_omap_cmd_done(host, host->cmd);
351         if (end_trans || (status & TC))
352                 mmc_omap_xfer_done(host, host->data);
353
354         return IRQ_HANDLED;
355 }
356
357 /*
358  * Switch MMC operating voltage
359  */
360 static int omap_mmc_switch_opcond(struct mmc_omap_host *host, int vdd)
361 {
362         u32 reg_val = 0;
363         int ret;
364
365         /* Disable the clocks */
366         clk_disable(host->fclk);
367         clk_disable(host->iclk);
368         clk_disable(host->dbclk);
369
370         /* Turn the power off */
371         ret = mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
372         if (ret != 0)
373                 goto err;
374
375         /* Turn the power ON with given VDD 1.8 or 3.0v */
376         ret = mmc_slot(host).set_power(host->dev, host->slot_id, 1, vdd);
377         if (ret != 0)
378                 goto err;
379
380         clk_enable(host->fclk);
381         clk_enable(host->iclk);
382         clk_enable(host->dbclk);
383
384         OMAP_HSMMC_WRITE(host->base, HCTL,
385                 OMAP_HSMMC_READ(host->base, HCTL) & SDVSCLR);
386         reg_val = OMAP_HSMMC_READ(host->base, HCTL);
387         /*
388          * If a MMC dual voltage card is detected, the set_ios fn calls
389          * this fn with VDD bit set for 1.8V. Upon card removal from the
390          * slot, mmc_omap_detect fn sets the VDD back to 3V.
391          */
392         if (((1 << vdd) == MMC_VDD_32_33) || ((1 << vdd) == MMC_VDD_33_34))
393                 reg_val |= SDVS30;
394         if ((1 << vdd) == MMC_VDD_165_195)
395                 reg_val |= SDVS18;
396
397         OMAP_HSMMC_WRITE(host->base, HCTL, reg_val);
398
399         OMAP_HSMMC_WRITE(host->base, HCTL,
400                 OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
401
402         return 0;
403 err:
404         dev_dbg(mmc_dev(host->mmc), "Unable to switch operating voltage \n");
405         return ret;
406 }
407
408 /*
409  * Work Item to notify the core about card insertion/removal
410  */
411 static void mmc_omap_detect(struct work_struct *work)
412 {
413         u16 vdd = 0;
414         struct mmc_omap_host *host = container_of(work, struct mmc_omap_host,
415                                                 mmc_carddetect_work);
416
417         if (host->carddetect) {
418                 if (!(OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET)) {
419                         /*
420                          * Set the VDD back to 3V when the card is removed
421                          * before the set_ios fn turns off the power.
422                          */
423                         vdd = fls(host->mmc->ocr_avail) - 1;
424                         if (omap_mmc_switch_opcond(host, vdd) != 0)
425                                 host->mmc->ios.vdd = vdd;
426                 }
427                 mmc_detect_change(host->mmc, (HZ * 200) / 1000);
428         } else
429                 mmc_detect_change(host->mmc, (HZ * 50) / 1000);
430 }
431
432 /*
433  * ISR for handling card insertion and removal
434  */
435 static irqreturn_t omap_mmc_cd_handler(int irq, void *dev_id)
436 {
437         struct mmc_omap_host *host = (struct mmc_omap_host *)dev_id;
438
439         host->carddetect = mmc_slot(host).card_detect(irq);
440         schedule_work(&host->mmc_carddetect_work);
441
442         return IRQ_HANDLED;
443 }
444
445 /*
446  * DMA call back function
447  */
448 static void mmc_omap_dma_cb(int lch, u16 ch_status, void *data)
449 {
450         struct mmc_omap_host *host = data;
451
452         if (ch_status & OMAP2_DMA_MISALIGNED_ERR_IRQ)
453                 dev_dbg(mmc_dev(host->mmc), "MISALIGNED_ADRS_ERR\n");
454
455         if (host->dma_ch < 0)
456                 return;
457
458         omap_free_dma(host->dma_ch);
459         host->dma_ch = -1;
460         /*
461          * DMA Callback: run in interrupt context.
462          * mutex_unlock will through a kernel warning if used.
463          */
464         up(&host->sem);
465 }
466
467 /*
468  * Configure dma src and destination parameters
469  */
470 static int mmc_omap_config_dma_param(int sync_dir, struct mmc_omap_host *host,
471                                 struct mmc_data *data)
472 {
473         if (sync_dir == 0) {
474                 omap_set_dma_dest_params(host->dma_ch, 0,
475                         OMAP_DMA_AMODE_CONSTANT,
476                         (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
477                 omap_set_dma_src_params(host->dma_ch, 0,
478                         OMAP_DMA_AMODE_POST_INC,
479                         sg_dma_address(&data->sg[0]), 0, 0);
480         } else {
481                 omap_set_dma_src_params(host->dma_ch, 0,
482                         OMAP_DMA_AMODE_CONSTANT,
483                         (host->mapbase + OMAP_HSMMC_DATA), 0, 0);
484                 omap_set_dma_dest_params(host->dma_ch, 0,
485                         OMAP_DMA_AMODE_POST_INC,
486                         sg_dma_address(&data->sg[0]), 0, 0);
487         }
488         return 0;
489 }
490 /*
491  * Routine to configure and start DMA for the MMC card
492  */
493 static int
494 mmc_omap_start_dma_transfer(struct mmc_omap_host *host, struct mmc_request *req)
495 {
496         int sync_dev, sync_dir = 0;
497         int dma_ch = 0, ret = 0, err = 1;
498         struct mmc_data *data = req->data;
499
500         /*
501          * If for some reason the DMA transfer is still active,
502          * we wait for timeout period and free the dma
503          */
504         if (host->dma_ch != -1) {
505                 set_current_state(TASK_UNINTERRUPTIBLE);
506                 schedule_timeout(100);
507                 if (down_trylock(&host->sem)) {
508                         omap_free_dma(host->dma_ch);
509                         host->dma_ch = -1;
510                         up(&host->sem);
511                         return err;
512                 }
513         } else {
514                 if (down_trylock(&host->sem))
515                         return err;
516         }
517
518         if (!(data->flags & MMC_DATA_WRITE)) {
519                 host->dma_dir = DMA_FROM_DEVICE;
520                 sync_dev = OMAP24XX_DMA_MMC1_RX;
521         } else {
522                 host->dma_dir = DMA_TO_DEVICE;
523                 sync_dev = OMAP24XX_DMA_MMC1_TX;
524         }
525
526         ret = omap_request_dma(sync_dev, "MMC/SD", mmc_omap_dma_cb,
527                         host, &dma_ch);
528         if (ret != 0) {
529                 dev_dbg(mmc_dev(host->mmc),
530                         "%s: omap_request_dma() failed with %d\n",
531                         mmc_hostname(host->mmc), ret);
532                 return ret;
533         }
534
535         host->dma_len = dma_map_sg(mmc_dev(host->mmc), data->sg,
536                         data->sg_len, host->dma_dir);
537         host->dma_ch = dma_ch;
538
539         if (!(data->flags & MMC_DATA_WRITE))
540                 mmc_omap_config_dma_param(1, host, data);
541         else
542                 mmc_omap_config_dma_param(0, host, data);
543
544         if ((data->blksz % 4) == 0)
545                 omap_set_dma_transfer_params(dma_ch, OMAP_DMA_DATA_TYPE_S32,
546                         (data->blksz / 4), data->blocks, OMAP_DMA_SYNC_FRAME,
547                         sync_dev, sync_dir);
548         else
549                 /* REVISIT: The MMC buffer increments only when MSB is written.
550                  * Return error for blksz which is non multiple of four.
551                  */
552                 return -EINVAL;
553
554         omap_start_dma(dma_ch);
555         return 0;
556 }
557
558 /*
559  * Configure block length for MMC/SD cards and initiate the transfer.
560  */
561 static int
562 mmc_omap_prepare_data(struct mmc_omap_host *host, struct mmc_request *req)
563 {
564         int ret;
565         host->data = req->data;
566
567         if (req->data == NULL) {
568                 host->datadir = OMAP_MMC_DATADIR_NONE;
569                 OMAP_HSMMC_WRITE(host->base, BLK, 0);
570                 return 0;
571         }
572
573         OMAP_HSMMC_WRITE(host->base, BLK, (req->data->blksz)
574                                         | (req->data->blocks << 16));
575
576         host->datadir = (req->data->flags & MMC_DATA_WRITE) ?
577                         OMAP_MMC_DATADIR_WRITE : OMAP_MMC_DATADIR_READ;
578
579         if (host->use_dma) {
580                 ret = mmc_omap_start_dma_transfer(host, req);
581                 if (ret != 0) {
582                         dev_dbg(mmc_dev(host->mmc), "MMC start dma failure\n");
583                         return ret;
584                 }
585         }
586         return 0;
587 }
588
589 /*
590  * Request function. for read/write operation
591  */
592 static void omap_mmc_request(struct mmc_host *mmc, struct mmc_request *req)
593 {
594         struct mmc_omap_host *host = mmc_priv(mmc);
595
596         WARN_ON(host->mrq != NULL);
597         host->mrq = req;
598         mmc_omap_prepare_data(host, req);
599         mmc_omap_start_command(host, req->cmd, req->data);
600 }
601
602
603 /* Routine to configure clock values. Exposed API to core */
604 static void omap_mmc_set_ios(struct mmc_host *mmc, struct mmc_ios *ios)
605 {
606         struct mmc_omap_host *host = mmc_priv(mmc);
607         u16 dsor = 0;
608         unsigned long regval;
609         unsigned long timeout;
610
611         switch (ios->power_mode) {
612         case MMC_POWER_OFF:
613                 mmc_slot(host).set_power(host->dev, host->slot_id, 0, 0);
614                 break;
615         case MMC_POWER_UP:
616                 mmc_slot(host).set_power(host->dev, host->slot_id, 1, ios->vdd);
617                 break;
618         }
619
620         switch (mmc->ios.bus_width) {
621         case MMC_BUS_WIDTH_4:
622                 OMAP_HSMMC_WRITE(host->base, HCTL,
623                         OMAP_HSMMC_READ(host->base, HCTL) | FOUR_BIT);
624                 break;
625         case MMC_BUS_WIDTH_1:
626                 OMAP_HSMMC_WRITE(host->base, HCTL,
627                         OMAP_HSMMC_READ(host->base, HCTL) & ~FOUR_BIT);
628                 break;
629         }
630
631         if (host->id == OMAP_MMC1_DEVID) {
632                 /* Only MMC1 can operate at 3V/1.8V */
633                 if ((OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET) &&
634                         (ios->vdd == DUAL_VOLT_OCR_BIT)) {
635                                 /*
636                                  * The mmc_select_voltage fn of the core does
637                                  * not seem to set the power_mode to
638                                  * MMC_POWER_UP upon recalculating the voltage.
639                                  * vdd 1.8v.
640                                  */
641                                 if (omap_mmc_switch_opcond(host, ios->vdd) != 0)
642                                         dev_dbg(mmc_dev(host->mmc),
643                                                 "Switch operation failed\n");
644                 }
645         }
646
647         if (ios->clock) {
648                 dsor = OMAP_MMC_MASTER_CLOCK / ios->clock;
649                 if (dsor < 1)
650                         dsor = 1;
651
652                 if (OMAP_MMC_MASTER_CLOCK / dsor > ios->clock)
653                         dsor++;
654
655                 if (dsor > 250)
656                         dsor = 250;
657         }
658         omap_mmc_stop_clock(host);
659         regval = OMAP_HSMMC_READ(host->base, SYSCTL);
660         regval = regval & ~(CLKD_MASK);
661         regval = regval | (dsor << 6) | (DTO << 16);
662         OMAP_HSMMC_WRITE(host->base, SYSCTL, regval);
663         OMAP_HSMMC_WRITE(host->base, SYSCTL,
664                 OMAP_HSMMC_READ(host->base, SYSCTL) | ICE);
665
666         /* Wait till the ICS bit is set */
667         timeout = jiffies + msecs_to_jiffies(MMC_TIMEOUT_MS);
668         while ((OMAP_HSMMC_READ(host->base, SYSCTL) & ICS) != 0x2
669                 && time_before(jiffies, timeout))
670                 msleep(1);
671
672         OMAP_HSMMC_WRITE(host->base, SYSCTL,
673                 OMAP_HSMMC_READ(host->base, SYSCTL) | CEN);
674
675         if (ios->power_mode == MMC_POWER_ON)
676                 send_init_stream(host);
677
678         if (ios->bus_mode == MMC_BUSMODE_OPENDRAIN)
679                 OMAP_HSMMC_WRITE(host->base, CON,
680                                 OMAP_HSMMC_READ(host->base, CON) | OD);
681 }
682 /* NOTE: Read only switch not supported yet */
683 static struct mmc_host_ops mmc_omap_ops = {
684         .request = omap_mmc_request,
685         .set_ios = omap_mmc_set_ios,
686 };
687
688 static int __init omap_mmc_probe(struct platform_device *pdev)
689 {
690         struct omap_mmc_platform_data *pdata = pdev->dev.platform_data;
691         struct mmc_host *mmc;
692         struct mmc_omap_host *host = NULL;
693         struct resource *res;
694         int ret = 0, irq;
695
696         if (pdata == NULL) {
697                 dev_err(&pdev->dev, "Platform Data is missing\n");
698                 return -ENXIO;
699         }
700
701         if (pdata->nr_slots == 0) {
702                 dev_err(&pdev->dev, "No Slots\n");
703                 return -ENXIO;
704         }
705
706         res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
707         irq = platform_get_irq(pdev, 0);
708         if (res == NULL || irq < 0)
709                 return -ENXIO;
710
711         res = request_mem_region(res->start, res->end - res->start + 1,
712                                                         pdev->name);
713         if (res == NULL)
714                 return -EBUSY;
715
716         mmc = mmc_alloc_host(sizeof(struct mmc_omap_host), &pdev->dev);
717         if (!mmc) {
718                 ret = -ENOMEM;
719                 goto err;
720         }
721
722         host            = mmc_priv(mmc);
723         host->mmc       = mmc;
724         host->pdata     = pdata;
725         host->use_dma   = 1;
726         host->dma_ch    = -1;
727         host->irq       = irq;
728         host->id        = pdev->id;
729         host->slot_id   = 0;
730         host->mapbase   = res->start;
731         host->base      = ioremap(host->mapbase, SZ_4K);
732         mmc->ops        = &mmc_omap_ops;
733         mmc->f_min      = 400000;
734         mmc->f_max      = 52000000;
735
736         sema_init(&host->sem, 1);
737
738         host->iclk = clk_get(&pdev->dev, "mmchs_ick");
739         if (IS_ERR(host->iclk)) {
740                 ret = PTR_ERR(host->iclk);
741                 host->iclk = NULL;
742                 goto err;
743         }
744         host->fclk = clk_get(&pdev->dev, "mmchs_fck");
745         if (IS_ERR(host->fclk)) {
746                 ret = PTR_ERR(host->fclk);
747                 host->fclk = NULL;
748                 clk_put(host->iclk);
749                 goto err;
750         }
751
752         if (clk_enable(host->fclk) != 0)
753                 goto err;
754
755         if (clk_enable(host->iclk) != 0) {
756                 clk_disable(host->fclk);
757                 clk_put(host->fclk);
758                 goto err;
759         }
760
761         host->dbclk = clk_get(&pdev->dev, "mmchsdb_fck");
762         /*
763          * MMC can still work without debounce clock.
764          */
765         if (IS_ERR(host->dbclk))
766                 dev_dbg(mmc_dev(host->mmc), "Failed to get debounce clock \n");
767         else
768                 if (clk_enable(host->dbclk) != 0)
769                         dev_dbg(mmc_dev(host->mmc), "Enabling debounce"
770                                                         "clk failed\n");
771                 else
772                         host->dbclk_enabled = 1;
773
774         mmc->ocr_avail = mmc_slot(host).ocr_mask;
775         mmc->caps |= MMC_CAP_MULTIWRITE | MMC_CAP_MMC_HIGHSPEED |
776                                 MMC_CAP_SD_HIGHSPEED;
777
778         if (pdata->conf.wire4)
779                 mmc->caps |= MMC_CAP_4_BIT_DATA;
780
781         OMAP_HSMMC_WRITE(host->base, HCTL,
782                         OMAP_HSMMC_READ(host->base, HCTL) | SDVS30);
783
784         OMAP_HSMMC_WRITE(host->base, CAPA, OMAP_HSMMC_READ(host->base,
785                                                         CAPA) | VS30 | VS18);
786
787         /* Set the controller to AUTO IDLE mode */
788         OMAP_HSMMC_WRITE(host->base, SYSCONFIG,
789                         OMAP_HSMMC_READ(host->base, SYSCONFIG) | AUTOIDLE);
790
791         /* Set SD bus power bit */
792         OMAP_HSMMC_WRITE(host->base, HCTL,
793                         OMAP_HSMMC_READ(host->base, HCTL) | SDBP);
794
795         /* Request IRQ for MMC operations */
796         ret = request_irq(host->irq, mmc_omap_irq, IRQF_DISABLED, pdev->name,
797                          host);
798         if (ret) {
799                 dev_dbg(mmc_dev(host->mmc), "Unable to grab HSMMC IRQ");
800                 goto irq_err;
801         }
802
803         /* Request IRQ for card detect */
804         if ((mmc_slot(host).card_detect_irq) && (mmc_slot(host).card_detect)) {
805                 ret = request_irq(mmc_slot(host).card_detect_irq,
806                                   omap_mmc_cd_handler, IRQF_DISABLED, "MMC CD",
807                                   host);
808                 if (ret) {
809                         dev_dbg(mmc_dev(host->mmc),
810                                 "Unable to grab MMC CD IRQ");
811                         free_irq(host->irq, host);
812                         goto irq_err;
813                 }
814         }
815
816         INIT_WORK(&host->mmc_carddetect_work, mmc_omap_detect);
817         if (pdata->init != NULL) {
818                 if (pdata->init(&pdev->dev) != 0) {
819                         free_irq(mmc_slot(host).card_detect_irq, host);
820                         free_irq(host->irq, host);
821                         goto irq_err;
822                 }
823         }
824
825         OMAP_HSMMC_WRITE(host->base, ISE, INT_EN_MASK);
826         OMAP_HSMMC_WRITE(host->base, IE, INT_EN_MASK);
827
828         platform_set_drvdata(pdev, host);
829         mmc_add_host(mmc);
830
831         return 0;
832
833 err:
834         dev_dbg(mmc_dev(host->mmc), "Probe Failed\n");
835         if (host)
836                 mmc_free_host(mmc);
837         return ret;
838
839 irq_err:
840         dev_dbg(mmc_dev(host->mmc), "Unable to configure MMC IRQs");
841         clk_disable(host->fclk);
842         clk_disable(host->iclk);
843         clk_put(host->fclk);
844         clk_put(host->iclk);
845         if (host->dbclk_enabled) {
846                 clk_disable(host->dbclk);
847                 clk_put(host->dbclk);
848         }
849
850         if (host)
851                 mmc_free_host(mmc);
852         return ret;
853 }
854
855 static int omap_mmc_remove(struct platform_device *pdev)
856 {
857         struct mmc_omap_host *host = platform_get_drvdata(pdev);
858
859         platform_set_drvdata(pdev, NULL);
860         if (host) {
861                 host->pdata->cleanup(&pdev->dev);
862                 free_irq(host->irq, host);
863                 if (mmc_slot(host).card_detect_irq)
864                         free_irq(mmc_slot(host).card_detect_irq, host);
865                 flush_scheduled_work();
866
867                 clk_disable(host->fclk);
868                 clk_disable(host->iclk);
869                 clk_put(host->fclk);
870                 clk_put(host->iclk);
871                 if (host->dbclk_enabled) {
872                         clk_disable(host->dbclk);
873                         clk_put(host->dbclk);
874                 }
875
876                 mmc_free_host(host->mmc);
877         }
878
879         return 0;
880 }
881
882 #ifdef CONFIG_PM
883 static int omap_mmc_suspend(struct platform_device *pdev, pm_message_t state)
884 {
885         int ret = 0;
886         struct mmc_omap_host *host = platform_get_drvdata(pdev);
887
888         if (host && host->suspended)
889                 return 0;
890
891         if (host) {
892                 ret = mmc_suspend_host(host->mmc, state);
893                 if (ret == 0) {
894                         host->suspended = 1;
895
896                         OMAP_HSMMC_WRITE(host->base, ISE, 0);
897                         OMAP_HSMMC_WRITE(host->base, IE, 0);
898
899                         ret = host->pdata->suspend(&pdev->dev, host->slot_id);
900                         if (ret)
901                                 dev_dbg(mmc_dev(host->mmc),
902                                         "Unable to handle MMC board"
903                                         "level suspend\n");
904
905                         if (!(OMAP_HSMMC_READ(host->base, HCTL) & SDVSDET)) {
906                                 OMAP_HSMMC_WRITE(host->base, HCTL,
907                                         OMAP_HSMMC_READ(host->base, HCTL)
908                                         & SDVSCLR);
909                                 OMAP_HSMMC_WRITE(host->base, HCTL,
910                                         OMAP_HSMMC_READ(host->base, HCTL)
911                                         | SDVS30);
912                                 OMAP_HSMMC_WRITE(host->base, HCTL,
913                                         OMAP_HSMMC_READ(host->base, HCTL)
914                                         | SDBP);
915                         }
916
917                         clk_disable(host->fclk);
918                         clk_disable(host->iclk);
919                         clk_disable(host->dbclk);
920                 }
921
922         }
923         return ret;
924 }
925
926 /* Routine to resume the MMC device */
927 static int omap_mmc_resume(struct platform_device *pdev)
928 {
929         int ret = 0;
930         struct mmc_omap_host *host = platform_get_drvdata(pdev);
931
932         if (host && !host->suspended)
933                 return 0;
934
935         if (host) {
936
937                 ret = clk_enable(host->fclk);
938                 if (ret)
939                         goto clk_en_err;
940
941                 ret = clk_enable(host->iclk);
942                 if (ret) {
943                         clk_disable(host->fclk);
944                         clk_put(host->fclk);
945                         goto clk_en_err;
946                 }
947
948                 if (clk_enable(host->dbclk) != 0)
949                         dev_dbg(mmc_dev(host->mmc),
950                                         "Enabling debounce clk failed\n");
951
952                 ret = host->pdata->resume(&pdev->dev, host->slot_id);
953                 if (ret)
954                         dev_dbg(mmc_dev(host->mmc),
955                                         "Unmask interrupt failed\n");
956
957                 /* Notify the core to resume the host */
958                 ret = mmc_resume_host(host->mmc);
959                 if (ret == 0)
960                         host->suspended = 0;
961         }
962
963         return ret;
964
965 clk_en_err:
966         dev_dbg(mmc_dev(host->mmc),
967                 "Failed to enable MMC clocks during resume\n");
968         return ret;
969 }
970
971 #else
972 #define omap_mmc_suspend        NULL
973 #define omap_mmc_resume         NULL
974 #endif
975
976 static struct platform_driver omap_mmc_driver = {
977         .probe          = omap_mmc_probe,
978         .remove         = omap_mmc_remove,
979         .suspend        = omap_mmc_suspend,
980         .resume         = omap_mmc_resume,
981         .driver         = {
982                 .name = DRIVER_NAME,
983         },
984 };
985
986 static int __init omap_mmc_init(void)
987 {
988         /* Register the MMC driver */
989         return platform_driver_register(&omap_mmc_driver);
990 }
991
992 static void __exit omap_mmc_cleanup(void)
993 {
994         /* Unregister MMC driver */
995         platform_driver_unregister(&omap_mmc_driver);
996 }
997
998 module_init(omap_mmc_init);
999 module_exit(omap_mmc_cleanup);
1000
1001 MODULE_DESCRIPTION("OMAP High Speed Multimedia Card driver");
1002 MODULE_LICENSE("GPL");
1003 MODULE_ALIAS(DRIVER_NAME);
1004 MODULE_AUTHOR("Texas Instruments Inc");