| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1 | /* | 
| Pierre Ossman | 70f1048 | 2007-07-11 20:04:50 +0200 | [diff] [blame] | 2 | *  linux/drivers/mmc/host/imxmmc.c - Motorola i.MX MMCI driver | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 3 | * | 
|  | 4 | *  Copyright (C) 2004 Sascha Hauer, Pengutronix <sascha@saschahauer.de> | 
|  | 5 | *  Copyright (C) 2006 Pavel Pisa, PiKRON <ppisa@pikron.com> | 
|  | 6 | * | 
|  | 7 | *  derived from pxamci.c by Russell King | 
|  | 8 | * | 
|  | 9 | * This program is free software; you can redistribute it and/or modify | 
|  | 10 | * it under the terms of the GNU General Public License version 2 as | 
|  | 11 | * published by the Free Software Foundation. | 
|  | 12 | * | 
|  | 13 | *  2005-04-17 Pavel Pisa <pisa@cmp.felk.cvut.cz> | 
|  | 14 | *             Changed to conform redesigned i.MX scatter gather DMA interface | 
|  | 15 | * | 
|  | 16 | *  2005-11-04 Pavel Pisa <pisa@cmp.felk.cvut.cz> | 
|  | 17 | *             Updated for 2.6.14 kernel | 
|  | 18 | * | 
|  | 19 | *  2005-12-13 Jay Monkman <jtm@smoothsmoothie.com> | 
|  | 20 | *             Found and corrected problems in the write path | 
|  | 21 | * | 
|  | 22 | *  2005-12-30 Pavel Pisa <pisa@cmp.felk.cvut.cz> | 
|  | 23 | *             The event handling rewritten right way in softirq. | 
|  | 24 | *             Added many ugly hacks and delays to overcome SDHC | 
|  | 25 | *             deficiencies | 
|  | 26 | * | 
|  | 27 | */ | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 28 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 29 | #include <linux/module.h> | 
|  | 30 | #include <linux/init.h> | 
|  | 31 | #include <linux/ioport.h> | 
|  | 32 | #include <linux/platform_device.h> | 
|  | 33 | #include <linux/interrupt.h> | 
|  | 34 | #include <linux/blkdev.h> | 
|  | 35 | #include <linux/dma-mapping.h> | 
|  | 36 | #include <linux/mmc/host.h> | 
|  | 37 | #include <linux/mmc/card.h> | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 38 | #include <linux/delay.h> | 
| Sascha Hauer | 38a41fd | 2008-07-05 10:02:46 +0200 | [diff] [blame] | 39 | #include <linux/clk.h> | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 40 |  | 
|  | 41 | #include <asm/dma.h> | 
|  | 42 | #include <asm/io.h> | 
|  | 43 | #include <asm/irq.h> | 
|  | 44 | #include <asm/sizes.h> | 
| Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 45 | #include <mach/mmc.h> | 
|  | 46 | #include <mach/imx-dma.h> | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 47 |  | 
|  | 48 | #include "imxmmc.h" | 
|  | 49 |  | 
|  | 50 | #define DRIVER_NAME "imx-mmc" | 
|  | 51 |  | 
|  | 52 | #define IMXMCI_INT_MASK_DEFAULT (INT_MASK_BUF_READY | INT_MASK_DATA_TRAN | \ | 
|  | 53 | INT_MASK_WRITE_OP_DONE | INT_MASK_END_CMD_RES | \ | 
|  | 54 | INT_MASK_AUTO_CARD_DETECT | INT_MASK_DAT0_EN | INT_MASK_SDIO) | 
|  | 55 |  | 
|  | 56 | struct imxmci_host { | 
|  | 57 | struct mmc_host		*mmc; | 
|  | 58 | spinlock_t		lock; | 
|  | 59 | struct resource		*res; | 
|  | 60 | int			irq; | 
|  | 61 | imx_dmach_t		dma; | 
|  | 62 | unsigned int		clkrt; | 
|  | 63 | unsigned int		cmdat; | 
|  | 64 | volatile unsigned int	imask; | 
|  | 65 | unsigned int		power_mode; | 
|  | 66 | unsigned int		present; | 
|  | 67 | struct imxmmc_platform_data *pdata; | 
|  | 68 |  | 
|  | 69 | struct mmc_request	*req; | 
|  | 70 | struct mmc_command	*cmd; | 
|  | 71 | struct mmc_data		*data; | 
|  | 72 |  | 
|  | 73 | struct timer_list	timer; | 
|  | 74 | struct tasklet_struct	tasklet; | 
|  | 75 | unsigned int		status_reg; | 
|  | 76 | unsigned long		pending_events; | 
|  | 77 | /* Next to fields are there for CPU driven transfers to overcome SDHC deficiencies */ | 
|  | 78 | u16			*data_ptr; | 
|  | 79 | unsigned int		data_cnt; | 
|  | 80 | atomic_t		stuck_timeout; | 
|  | 81 |  | 
|  | 82 | unsigned int		dma_nents; | 
|  | 83 | unsigned int		dma_size; | 
|  | 84 | unsigned int		dma_dir; | 
|  | 85 | int			dma_allocated; | 
|  | 86 |  | 
|  | 87 | unsigned char		actual_bus_width; | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 88 |  | 
|  | 89 | int			prev_cmd_code; | 
| Sascha Hauer | 38a41fd | 2008-07-05 10:02:46 +0200 | [diff] [blame] | 90 |  | 
|  | 91 | struct clk		*clk; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 92 | }; | 
|  | 93 |  | 
|  | 94 | #define IMXMCI_PEND_IRQ_b	0 | 
|  | 95 | #define IMXMCI_PEND_DMA_END_b	1 | 
|  | 96 | #define IMXMCI_PEND_DMA_ERR_b	2 | 
|  | 97 | #define IMXMCI_PEND_WAIT_RESP_b	3 | 
|  | 98 | #define IMXMCI_PEND_DMA_DATA_b	4 | 
|  | 99 | #define IMXMCI_PEND_CPU_DATA_b	5 | 
|  | 100 | #define IMXMCI_PEND_CARD_XCHG_b	6 | 
|  | 101 | #define IMXMCI_PEND_SET_INIT_b	7 | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 102 | #define IMXMCI_PEND_STARTED_b	8 | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 103 |  | 
|  | 104 | #define IMXMCI_PEND_IRQ_m	(1 << IMXMCI_PEND_IRQ_b) | 
|  | 105 | #define IMXMCI_PEND_DMA_END_m	(1 << IMXMCI_PEND_DMA_END_b) | 
|  | 106 | #define IMXMCI_PEND_DMA_ERR_m	(1 << IMXMCI_PEND_DMA_ERR_b) | 
|  | 107 | #define IMXMCI_PEND_WAIT_RESP_m	(1 << IMXMCI_PEND_WAIT_RESP_b) | 
|  | 108 | #define IMXMCI_PEND_DMA_DATA_m	(1 << IMXMCI_PEND_DMA_DATA_b) | 
|  | 109 | #define IMXMCI_PEND_CPU_DATA_m	(1 << IMXMCI_PEND_CPU_DATA_b) | 
|  | 110 | #define IMXMCI_PEND_CARD_XCHG_m	(1 << IMXMCI_PEND_CARD_XCHG_b) | 
|  | 111 | #define IMXMCI_PEND_SET_INIT_m	(1 << IMXMCI_PEND_SET_INIT_b) | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 112 | #define IMXMCI_PEND_STARTED_m	(1 << IMXMCI_PEND_STARTED_b) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 113 |  | 
|  | 114 | static void imxmci_stop_clock(struct imxmci_host *host) | 
|  | 115 | { | 
|  | 116 | int i = 0; | 
|  | 117 | MMC_STR_STP_CLK &= ~STR_STP_CLK_START_CLK; | 
|  | 118 | while(i < 0x1000) { | 
|  | 119 | if(!(i & 0x7f)) | 
|  | 120 | MMC_STR_STP_CLK |= STR_STP_CLK_STOP_CLK; | 
|  | 121 |  | 
|  | 122 | if(!(MMC_STATUS & STATUS_CARD_BUS_CLK_RUN)) { | 
|  | 123 | /* Check twice before cut */ | 
|  | 124 | if(!(MMC_STATUS & STATUS_CARD_BUS_CLK_RUN)) | 
|  | 125 | return; | 
|  | 126 | } | 
|  | 127 |  | 
|  | 128 | i++; | 
|  | 129 | } | 
|  | 130 | dev_dbg(mmc_dev(host->mmc), "imxmci_stop_clock blocked, no luck\n"); | 
|  | 131 | } | 
|  | 132 |  | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 133 | static int imxmci_start_clock(struct imxmci_host *host) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 134 | { | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 135 | unsigned int trials = 0; | 
|  | 136 | unsigned int delay_limit = 128; | 
|  | 137 | unsigned long flags; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 138 |  | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 139 | MMC_STR_STP_CLK &= ~STR_STP_CLK_STOP_CLK; | 
|  | 140 |  | 
|  | 141 | clear_bit(IMXMCI_PEND_STARTED_b, &host->pending_events); | 
|  | 142 |  | 
|  | 143 | /* | 
|  | 144 | * Command start of the clock, this usually succeeds in less | 
|  | 145 | * then 6 delay loops, but during card detection (low clockrate) | 
|  | 146 | * it takes up to 5000 delay loops and sometimes fails for the first time | 
|  | 147 | */ | 
|  | 148 | MMC_STR_STP_CLK |= STR_STP_CLK_START_CLK; | 
|  | 149 |  | 
|  | 150 | do { | 
|  | 151 | unsigned int delay = delay_limit; | 
|  | 152 |  | 
|  | 153 | while(delay--){ | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 154 | if(MMC_STATUS & STATUS_CARD_BUS_CLK_RUN) | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 155 | /* Check twice before cut */ | 
|  | 156 | if(MMC_STATUS & STATUS_CARD_BUS_CLK_RUN) | 
|  | 157 | return 0; | 
|  | 158 |  | 
|  | 159 | if(test_bit(IMXMCI_PEND_STARTED_b, &host->pending_events)) | 
|  | 160 | return 0; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 161 | } | 
|  | 162 |  | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 163 | local_irq_save(flags); | 
|  | 164 | /* | 
|  | 165 | * Ensure, that request is not doubled under all possible circumstances. | 
|  | 166 | * It is possible, that cock running state is missed, because some other | 
|  | 167 | * IRQ or schedule delays this function execution and the clocks has | 
|  | 168 | * been already stopped by other means (response processing, SDHC HW) | 
|  | 169 | */ | 
|  | 170 | if(!test_bit(IMXMCI_PEND_STARTED_b, &host->pending_events)) | 
|  | 171 | MMC_STR_STP_CLK |= STR_STP_CLK_START_CLK; | 
|  | 172 | local_irq_restore(flags); | 
|  | 173 |  | 
|  | 174 | } while(++trials<256); | 
|  | 175 |  | 
|  | 176 | dev_err(mmc_dev(host->mmc), "imxmci_start_clock blocked, no luck\n"); | 
|  | 177 |  | 
|  | 178 | return -1; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 179 | } | 
|  | 180 |  | 
|  | 181 | static void imxmci_softreset(void) | 
|  | 182 | { | 
|  | 183 | /* reset sequence */ | 
|  | 184 | MMC_STR_STP_CLK = 0x8; | 
|  | 185 | MMC_STR_STP_CLK = 0xD; | 
|  | 186 | MMC_STR_STP_CLK = 0x5; | 
|  | 187 | MMC_STR_STP_CLK = 0x5; | 
|  | 188 | MMC_STR_STP_CLK = 0x5; | 
|  | 189 | MMC_STR_STP_CLK = 0x5; | 
|  | 190 | MMC_STR_STP_CLK = 0x5; | 
|  | 191 | MMC_STR_STP_CLK = 0x5; | 
|  | 192 | MMC_STR_STP_CLK = 0x5; | 
|  | 193 | MMC_STR_STP_CLK = 0x5; | 
|  | 194 |  | 
|  | 195 | MMC_RES_TO = 0xff; | 
|  | 196 | MMC_BLK_LEN = 512; | 
|  | 197 | MMC_NOB = 1; | 
|  | 198 | } | 
|  | 199 |  | 
|  | 200 | static int imxmci_busy_wait_for_status(struct imxmci_host *host, | 
|  | 201 | unsigned int *pstat, unsigned int stat_mask, | 
|  | 202 | int timeout, const char *where) | 
|  | 203 | { | 
|  | 204 | int loops=0; | 
|  | 205 | while(!(*pstat & stat_mask)) { | 
|  | 206 | loops+=2; | 
|  | 207 | if(loops >= timeout) { | 
|  | 208 | dev_dbg(mmc_dev(host->mmc), "busy wait timeout in %s, STATUS = 0x%x (0x%x)\n", | 
|  | 209 | where, *pstat, stat_mask); | 
|  | 210 | return -1; | 
|  | 211 | } | 
|  | 212 | udelay(2); | 
|  | 213 | *pstat |= MMC_STATUS; | 
|  | 214 | } | 
|  | 215 | if(!loops) | 
|  | 216 | return 0; | 
|  | 217 |  | 
| Pavel Pisa | 2c171bf | 2006-05-19 21:48:03 +0100 | [diff] [blame] | 218 | /* The busy-wait is expected there for clock <8MHz due to SDHC hardware flaws */ | 
|  | 219 | if(!(stat_mask & STATUS_END_CMD_RESP) || (host->mmc->ios.clock>=8000000)) | 
|  | 220 | dev_info(mmc_dev(host->mmc), "busy wait for %d usec in %s, STATUS = 0x%x (0x%x)\n", | 
|  | 221 | loops, where, *pstat, stat_mask); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 222 | return loops; | 
|  | 223 | } | 
|  | 224 |  | 
|  | 225 | static void imxmci_setup_data(struct imxmci_host *host, struct mmc_data *data) | 
|  | 226 | { | 
|  | 227 | unsigned int nob = data->blocks; | 
| Russell King | a3fd4a1 | 2006-06-04 17:51:15 +0100 | [diff] [blame] | 228 | unsigned int blksz = data->blksz; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 229 | unsigned int datasz = nob * blksz; | 
|  | 230 | int i; | 
|  | 231 |  | 
|  | 232 | if (data->flags & MMC_DATA_STREAM) | 
|  | 233 | nob = 0xffff; | 
|  | 234 |  | 
|  | 235 | host->data = data; | 
|  | 236 | data->bytes_xfered = 0; | 
|  | 237 |  | 
|  | 238 | MMC_NOB = nob; | 
|  | 239 | MMC_BLK_LEN = blksz; | 
|  | 240 |  | 
|  | 241 | /* | 
|  | 242 | * DMA cannot be used for small block sizes, we have to use CPU driven transfers otherwise. | 
|  | 243 | * We are in big troubles for non-512 byte transfers according to note in the paragraph | 
|  | 244 | * 20.6.7 of User Manual anyway, but we need to be able to transfer SCR at least. | 
|  | 245 | * The situation is even more complex in reality. The SDHC in not able to handle wll | 
|  | 246 | * partial FIFO fills and reads. The length has to be rounded up to burst size multiple. | 
|  | 247 | * This is required for SCR read at least. | 
|  | 248 | */ | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 249 | if (datasz < 512) { | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 250 | host->dma_size = datasz; | 
|  | 251 | if (data->flags & MMC_DATA_READ) { | 
|  | 252 | host->dma_dir = DMA_FROM_DEVICE; | 
|  | 253 |  | 
|  | 254 | /* Hack to enable read SCR */ | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 255 | MMC_NOB = 1; | 
|  | 256 | MMC_BLK_LEN = 512; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 257 | } else { | 
|  | 258 | host->dma_dir = DMA_TO_DEVICE; | 
|  | 259 | } | 
|  | 260 |  | 
|  | 261 | /* Convert back to virtual address */ | 
| Pavel Pisa | e1efa2a | 2007-10-26 19:29:49 +0200 | [diff] [blame] | 262 | host->data_ptr = (u16*)sg_virt(data->sg); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 263 | host->data_cnt = 0; | 
|  | 264 |  | 
|  | 265 | clear_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events); | 
|  | 266 | set_bit(IMXMCI_PEND_CPU_DATA_b, &host->pending_events); | 
|  | 267 |  | 
|  | 268 | return; | 
|  | 269 | } | 
|  | 270 |  | 
|  | 271 | if (data->flags & MMC_DATA_READ) { | 
|  | 272 | host->dma_dir = DMA_FROM_DEVICE; | 
|  | 273 | host->dma_nents = dma_map_sg(mmc_dev(host->mmc), data->sg, | 
|  | 274 | data->sg_len,  host->dma_dir); | 
|  | 275 |  | 
|  | 276 | imx_dma_setup_sg(host->dma, data->sg, data->sg_len, datasz, | 
|  | 277 | host->res->start + MMC_BUFFER_ACCESS_OFS, DMA_MODE_READ); | 
|  | 278 |  | 
|  | 279 | /*imx_dma_setup_mem2dev_ccr(host->dma, DMA_MODE_READ, IMX_DMA_WIDTH_16, CCR_REN);*/ | 
|  | 280 | CCR(host->dma) = CCR_DMOD_LINEAR | CCR_DSIZ_32 | CCR_SMOD_FIFO | CCR_SSIZ_16 | CCR_REN; | 
|  | 281 | } else { | 
|  | 282 | host->dma_dir = DMA_TO_DEVICE; | 
|  | 283 |  | 
|  | 284 | host->dma_nents = dma_map_sg(mmc_dev(host->mmc), data->sg, | 
|  | 285 | data->sg_len,  host->dma_dir); | 
|  | 286 |  | 
|  | 287 | imx_dma_setup_sg(host->dma, data->sg, data->sg_len, datasz, | 
|  | 288 | host->res->start + MMC_BUFFER_ACCESS_OFS, DMA_MODE_WRITE); | 
|  | 289 |  | 
|  | 290 | /*imx_dma_setup_mem2dev_ccr(host->dma, DMA_MODE_WRITE, IMX_DMA_WIDTH_16, CCR_REN);*/ | 
|  | 291 | CCR(host->dma) = CCR_SMOD_LINEAR | CCR_SSIZ_32 | CCR_DMOD_FIFO | CCR_DSIZ_16 | CCR_REN; | 
|  | 292 | } | 
|  | 293 |  | 
|  | 294 | #if 1	/* This code is there only for consistency checking and can be disabled in future */ | 
|  | 295 | host->dma_size = 0; | 
|  | 296 | for(i=0; i<host->dma_nents; i++) | 
|  | 297 | host->dma_size+=data->sg[i].length; | 
|  | 298 |  | 
|  | 299 | if (datasz > host->dma_size) { | 
|  | 300 | dev_err(mmc_dev(host->mmc), "imxmci_setup_data datasz 0x%x > 0x%x dm_size\n", | 
|  | 301 | datasz, host->dma_size); | 
|  | 302 | } | 
|  | 303 | #endif | 
|  | 304 |  | 
|  | 305 | host->dma_size = datasz; | 
|  | 306 |  | 
|  | 307 | wmb(); | 
|  | 308 |  | 
|  | 309 | if(host->actual_bus_width == MMC_BUS_WIDTH_4) | 
|  | 310 | BLR(host->dma) = 0;	/* burst 64 byte read / 64 bytes write */ | 
|  | 311 | else | 
|  | 312 | BLR(host->dma) = 16;	/* burst 16 byte read / 16 bytes write */ | 
|  | 313 |  | 
|  | 314 | RSSR(host->dma) = DMA_REQ_SDHC; | 
|  | 315 |  | 
|  | 316 | set_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events); | 
|  | 317 | clear_bit(IMXMCI_PEND_CPU_DATA_b, &host->pending_events); | 
|  | 318 |  | 
|  | 319 | /* start DMA engine for read, write is delayed after initial response */ | 
|  | 320 | if (host->dma_dir == DMA_FROM_DEVICE) { | 
|  | 321 | imx_dma_enable(host->dma); | 
|  | 322 | } | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 | static void imxmci_start_cmd(struct imxmci_host *host, struct mmc_command *cmd, unsigned int cmdat) | 
|  | 326 | { | 
|  | 327 | unsigned long flags; | 
|  | 328 | u32 imask; | 
|  | 329 |  | 
|  | 330 | WARN_ON(host->cmd != NULL); | 
|  | 331 | host->cmd = cmd; | 
|  | 332 |  | 
| Pavel Pisa | 2c171bf | 2006-05-19 21:48:03 +0100 | [diff] [blame] | 333 | /* Ensure, that clock are stopped else command programming and start fails */ | 
|  | 334 | imxmci_stop_clock(host); | 
|  | 335 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 336 | if (cmd->flags & MMC_RSP_BUSY) | 
|  | 337 | cmdat |= CMD_DAT_CONT_BUSY; | 
|  | 338 |  | 
|  | 339 | switch (mmc_resp_type(cmd)) { | 
|  | 340 | case MMC_RSP_R1: /* short CRC, OPCODE */ | 
|  | 341 | case MMC_RSP_R1B:/* short CRC, OPCODE, BUSY */ | 
|  | 342 | cmdat |= CMD_DAT_CONT_RESPONSE_FORMAT_R1; | 
|  | 343 | break; | 
|  | 344 | case MMC_RSP_R2: /* long 136 bit + CRC */ | 
|  | 345 | cmdat |= CMD_DAT_CONT_RESPONSE_FORMAT_R2; | 
|  | 346 | break; | 
|  | 347 | case MMC_RSP_R3: /* short */ | 
|  | 348 | cmdat |= CMD_DAT_CONT_RESPONSE_FORMAT_R3; | 
|  | 349 | break; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 350 | default: | 
|  | 351 | break; | 
|  | 352 | } | 
|  | 353 |  | 
|  | 354 | if ( test_and_clear_bit(IMXMCI_PEND_SET_INIT_b, &host->pending_events) ) | 
|  | 355 | cmdat |= CMD_DAT_CONT_INIT; /* This command needs init */ | 
|  | 356 |  | 
|  | 357 | if ( host->actual_bus_width == MMC_BUS_WIDTH_4 ) | 
|  | 358 | cmdat |= CMD_DAT_CONT_BUS_WIDTH_4; | 
|  | 359 |  | 
|  | 360 | MMC_CMD = cmd->opcode; | 
|  | 361 | MMC_ARGH = cmd->arg >> 16; | 
|  | 362 | MMC_ARGL = cmd->arg & 0xffff; | 
|  | 363 | MMC_CMD_DAT_CONT = cmdat; | 
|  | 364 |  | 
|  | 365 | atomic_set(&host->stuck_timeout, 0); | 
|  | 366 | set_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events); | 
|  | 367 |  | 
|  | 368 |  | 
|  | 369 | imask = IMXMCI_INT_MASK_DEFAULT; | 
|  | 370 | imask &= ~INT_MASK_END_CMD_RES; | 
|  | 371 | if ( cmdat & CMD_DAT_CONT_DATA_ENABLE ) { | 
|  | 372 | /*imask &= ~INT_MASK_BUF_READY;*/ | 
|  | 373 | imask &= ~INT_MASK_DATA_TRAN; | 
|  | 374 | if ( cmdat & CMD_DAT_CONT_WRITE ) | 
|  | 375 | imask &= ~INT_MASK_WRITE_OP_DONE; | 
|  | 376 | if(test_bit(IMXMCI_PEND_CPU_DATA_b, &host->pending_events)) | 
|  | 377 | imask &= ~INT_MASK_BUF_READY; | 
|  | 378 | } | 
|  | 379 |  | 
|  | 380 | spin_lock_irqsave(&host->lock, flags); | 
|  | 381 | host->imask = imask; | 
|  | 382 | MMC_INT_MASK = host->imask; | 
|  | 383 | spin_unlock_irqrestore(&host->lock, flags); | 
|  | 384 |  | 
|  | 385 | dev_dbg(mmc_dev(host->mmc), "CMD%02d (0x%02x) mask set to 0x%04x\n", | 
|  | 386 | cmd->opcode, cmd->opcode, imask); | 
|  | 387 |  | 
|  | 388 | imxmci_start_clock(host); | 
|  | 389 | } | 
|  | 390 |  | 
|  | 391 | static void imxmci_finish_request(struct imxmci_host *host, struct mmc_request *req) | 
|  | 392 | { | 
|  | 393 | unsigned long flags; | 
|  | 394 |  | 
|  | 395 | spin_lock_irqsave(&host->lock, flags); | 
|  | 396 |  | 
|  | 397 | host->pending_events &= ~(IMXMCI_PEND_WAIT_RESP_m | IMXMCI_PEND_DMA_END_m | | 
|  | 398 | IMXMCI_PEND_DMA_DATA_m | IMXMCI_PEND_CPU_DATA_m); | 
|  | 399 |  | 
|  | 400 | host->imask = IMXMCI_INT_MASK_DEFAULT; | 
|  | 401 | MMC_INT_MASK = host->imask; | 
|  | 402 |  | 
|  | 403 | spin_unlock_irqrestore(&host->lock, flags); | 
|  | 404 |  | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 405 | if(req && req->cmd) | 
|  | 406 | host->prev_cmd_code = req->cmd->opcode; | 
|  | 407 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 408 | host->req = NULL; | 
|  | 409 | host->cmd = NULL; | 
|  | 410 | host->data = NULL; | 
|  | 411 | mmc_request_done(host->mmc, req); | 
|  | 412 | } | 
|  | 413 |  | 
|  | 414 | static int imxmci_finish_data(struct imxmci_host *host, unsigned int stat) | 
|  | 415 | { | 
|  | 416 | struct mmc_data *data = host->data; | 
|  | 417 | int data_error; | 
|  | 418 |  | 
|  | 419 | if(test_and_clear_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events)){ | 
|  | 420 | imx_dma_disable(host->dma); | 
|  | 421 | dma_unmap_sg(mmc_dev(host->mmc), data->sg, host->dma_nents, | 
|  | 422 | host->dma_dir); | 
|  | 423 | } | 
|  | 424 |  | 
|  | 425 | if ( stat & STATUS_ERR_MASK ) { | 
|  | 426 | dev_dbg(mmc_dev(host->mmc), "request failed. status: 0x%08x\n",stat); | 
|  | 427 | if(stat & (STATUS_CRC_READ_ERR | STATUS_CRC_WRITE_ERR)) | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 428 | data->error = -EILSEQ; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 429 | else if(stat & STATUS_TIME_OUT_READ) | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 430 | data->error = -ETIMEDOUT; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 431 | else | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 432 | data->error = -EIO; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 433 | } else { | 
|  | 434 | data->bytes_xfered = host->dma_size; | 
|  | 435 | } | 
|  | 436 |  | 
|  | 437 | data_error = data->error; | 
|  | 438 |  | 
|  | 439 | host->data = NULL; | 
|  | 440 |  | 
|  | 441 | return data_error; | 
|  | 442 | } | 
|  | 443 |  | 
|  | 444 | static int imxmci_cmd_done(struct imxmci_host *host, unsigned int stat) | 
|  | 445 | { | 
|  | 446 | struct mmc_command *cmd = host->cmd; | 
|  | 447 | int i; | 
|  | 448 | u32 a,b,c; | 
|  | 449 | struct mmc_data *data = host->data; | 
|  | 450 |  | 
|  | 451 | if (!cmd) | 
|  | 452 | return 0; | 
|  | 453 |  | 
|  | 454 | host->cmd = NULL; | 
|  | 455 |  | 
|  | 456 | if (stat & STATUS_TIME_OUT_RESP) { | 
|  | 457 | dev_dbg(mmc_dev(host->mmc), "CMD TIMEOUT\n"); | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 458 | cmd->error = -ETIMEDOUT; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 459 | } else if (stat & STATUS_RESP_CRC_ERR && cmd->flags & MMC_RSP_CRC) { | 
|  | 460 | dev_dbg(mmc_dev(host->mmc), "cmd crc error\n"); | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 461 | cmd->error = -EILSEQ; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 462 | } | 
|  | 463 |  | 
|  | 464 | if(cmd->flags & MMC_RSP_PRESENT) { | 
|  | 465 | if(cmd->flags & MMC_RSP_136) { | 
|  | 466 | for (i = 0; i < 4; i++) { | 
|  | 467 | u32 a = MMC_RES_FIFO & 0xffff; | 
|  | 468 | u32 b = MMC_RES_FIFO & 0xffff; | 
|  | 469 | cmd->resp[i] = a<<16 | b; | 
|  | 470 | } | 
|  | 471 | } else { | 
|  | 472 | a = MMC_RES_FIFO & 0xffff; | 
|  | 473 | b = MMC_RES_FIFO & 0xffff; | 
|  | 474 | c = MMC_RES_FIFO & 0xffff; | 
|  | 475 | cmd->resp[0] = a<<24 | b<<8 | c>>8; | 
|  | 476 | } | 
|  | 477 | } | 
|  | 478 |  | 
|  | 479 | dev_dbg(mmc_dev(host->mmc), "RESP 0x%08x, 0x%08x, 0x%08x, 0x%08x, error %d\n", | 
|  | 480 | cmd->resp[0], cmd->resp[1], cmd->resp[2], cmd->resp[3], cmd->error); | 
|  | 481 |  | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 482 | if (data && !cmd->error && !(stat & STATUS_ERR_MASK)) { | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 483 | if (host->req->data->flags & MMC_DATA_WRITE) { | 
|  | 484 |  | 
|  | 485 | /* Wait for FIFO to be empty before starting DMA write */ | 
|  | 486 |  | 
|  | 487 | stat = MMC_STATUS; | 
|  | 488 | if(imxmci_busy_wait_for_status(host, &stat, | 
|  | 489 | STATUS_APPL_BUFF_FE, | 
|  | 490 | 40, "imxmci_cmd_done DMA WR") < 0) { | 
| Pierre Ossman | 17b0429 | 2007-07-22 22:18:46 +0200 | [diff] [blame] | 491 | cmd->error = -EIO; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 492 | imxmci_finish_data(host, stat); | 
|  | 493 | if(host->req) | 
|  | 494 | imxmci_finish_request(host, host->req); | 
|  | 495 | dev_warn(mmc_dev(host->mmc), "STATUS = 0x%04x\n", | 
|  | 496 | stat); | 
|  | 497 | return 0; | 
|  | 498 | } | 
|  | 499 |  | 
|  | 500 | if(test_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events)) { | 
|  | 501 | imx_dma_enable(host->dma); | 
|  | 502 | } | 
|  | 503 | } | 
|  | 504 | } else { | 
|  | 505 | struct mmc_request *req; | 
|  | 506 | imxmci_stop_clock(host); | 
|  | 507 | req = host->req; | 
|  | 508 |  | 
|  | 509 | if(data) | 
|  | 510 | imxmci_finish_data(host, stat); | 
|  | 511 |  | 
|  | 512 | if( req ) { | 
|  | 513 | imxmci_finish_request(host, req); | 
|  | 514 | } else { | 
|  | 515 | dev_warn(mmc_dev(host->mmc), "imxmci_cmd_done: no request to finish\n"); | 
|  | 516 | } | 
|  | 517 | } | 
|  | 518 |  | 
|  | 519 | return 1; | 
|  | 520 | } | 
|  | 521 |  | 
|  | 522 | static int imxmci_data_done(struct imxmci_host *host, unsigned int stat) | 
|  | 523 | { | 
|  | 524 | struct mmc_data *data = host->data; | 
|  | 525 | int data_error; | 
|  | 526 |  | 
|  | 527 | if (!data) | 
|  | 528 | return 0; | 
|  | 529 |  | 
|  | 530 | data_error = imxmci_finish_data(host, stat); | 
|  | 531 |  | 
| Russell King | 58741e8 | 2006-05-02 20:02:39 +0100 | [diff] [blame] | 532 | if (host->req->stop) { | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 533 | imxmci_stop_clock(host); | 
|  | 534 | imxmci_start_cmd(host, host->req->stop, 0); | 
|  | 535 | } else { | 
|  | 536 | struct mmc_request *req; | 
|  | 537 | req = host->req; | 
|  | 538 | if( req ) { | 
|  | 539 | imxmci_finish_request(host, req); | 
|  | 540 | } else { | 
|  | 541 | dev_warn(mmc_dev(host->mmc), "imxmci_data_done: no request to finish\n"); | 
|  | 542 | } | 
|  | 543 | } | 
|  | 544 |  | 
|  | 545 | return 1; | 
|  | 546 | } | 
|  | 547 |  | 
|  | 548 | static int imxmci_cpu_driven_data(struct imxmci_host *host, unsigned int *pstat) | 
|  | 549 | { | 
|  | 550 | int i; | 
|  | 551 | int burst_len; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 552 | int trans_done = 0; | 
|  | 553 | unsigned int stat = *pstat; | 
|  | 554 |  | 
| Pavel Pisa | 2c171bf | 2006-05-19 21:48:03 +0100 | [diff] [blame] | 555 | if(host->actual_bus_width != MMC_BUS_WIDTH_4) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 556 | burst_len = 16; | 
|  | 557 | else | 
|  | 558 | burst_len = 64; | 
|  | 559 |  | 
|  | 560 | /* This is unfortunately required */ | 
|  | 561 | dev_dbg(mmc_dev(host->mmc), "imxmci_cpu_driven_data running STATUS = 0x%x\n", | 
|  | 562 | stat); | 
|  | 563 |  | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 564 | udelay(20);	/* required for clocks < 8MHz*/ | 
|  | 565 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 566 | if(host->dma_dir == DMA_FROM_DEVICE) { | 
|  | 567 | imxmci_busy_wait_for_status(host, &stat, | 
| Pavel Pisa | 2cb3320 | 2007-03-08 00:00:40 +0100 | [diff] [blame] | 568 | STATUS_APPL_BUFF_FF | STATUS_DATA_TRANS_DONE | | 
|  | 569 | STATUS_TIME_OUT_READ, | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 570 | 50, "imxmci_cpu_driven_data read"); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 571 |  | 
|  | 572 | while((stat & (STATUS_APPL_BUFF_FF |  STATUS_DATA_TRANS_DONE)) && | 
| Pavel Pisa | 2cb3320 | 2007-03-08 00:00:40 +0100 | [diff] [blame] | 573 | !(stat & STATUS_TIME_OUT_READ) && | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 574 | (host->data_cnt < 512)) { | 
|  | 575 |  | 
|  | 576 | udelay(20);	/* required for clocks < 8MHz*/ | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 577 |  | 
|  | 578 | for(i = burst_len; i>=2 ; i-=2) { | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 579 | u16 data; | 
|  | 580 | data = MMC_BUFFER_ACCESS; | 
|  | 581 | udelay(10);	/* required for clocks < 8MHz*/ | 
|  | 582 | if(host->data_cnt+2 <= host->dma_size) { | 
|  | 583 | *(host->data_ptr++) = data; | 
|  | 584 | } else { | 
|  | 585 | if(host->data_cnt < host->dma_size) | 
|  | 586 | *(u8*)(host->data_ptr) = data; | 
|  | 587 | } | 
|  | 588 | host->data_cnt += 2; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 589 | } | 
|  | 590 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 591 | stat = MMC_STATUS; | 
|  | 592 |  | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 593 | dev_dbg(mmc_dev(host->mmc), "imxmci_cpu_driven_data read %d burst %d STATUS = 0x%x\n", | 
|  | 594 | host->data_cnt, burst_len, stat); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 595 | } | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 596 |  | 
|  | 597 | if((stat & STATUS_DATA_TRANS_DONE) && (host->data_cnt >= 512)) | 
|  | 598 | trans_done = 1; | 
|  | 599 |  | 
|  | 600 | if(host->dma_size & 0x1ff) | 
|  | 601 | stat &= ~STATUS_CRC_READ_ERR; | 
|  | 602 |  | 
| Pavel Pisa | 2cb3320 | 2007-03-08 00:00:40 +0100 | [diff] [blame] | 603 | if(stat & STATUS_TIME_OUT_READ) { | 
|  | 604 | dev_dbg(mmc_dev(host->mmc), "imxmci_cpu_driven_data read timeout STATUS = 0x%x\n", | 
|  | 605 | stat); | 
|  | 606 | trans_done = -1; | 
|  | 607 | } | 
|  | 608 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 609 | } else { | 
|  | 610 | imxmci_busy_wait_for_status(host, &stat, | 
|  | 611 | STATUS_APPL_BUFF_FE, | 
|  | 612 | 20, "imxmci_cpu_driven_data write"); | 
|  | 613 |  | 
|  | 614 | while((stat & STATUS_APPL_BUFF_FE) && | 
|  | 615 | (host->data_cnt < host->dma_size)) { | 
|  | 616 | if(burst_len >= host->dma_size - host->data_cnt) { | 
|  | 617 | burst_len = host->dma_size - host->data_cnt; | 
|  | 618 | host->data_cnt = host->dma_size; | 
|  | 619 | trans_done = 1; | 
|  | 620 | } else { | 
|  | 621 | host->data_cnt += burst_len; | 
|  | 622 | } | 
|  | 623 |  | 
|  | 624 | for(i = burst_len; i>0 ; i-=2) | 
|  | 625 | MMC_BUFFER_ACCESS = *(host->data_ptr++); | 
|  | 626 |  | 
|  | 627 | stat = MMC_STATUS; | 
|  | 628 |  | 
|  | 629 | dev_dbg(mmc_dev(host->mmc), "imxmci_cpu_driven_data write burst %d STATUS = 0x%x\n", | 
|  | 630 | burst_len, stat); | 
|  | 631 | } | 
|  | 632 | } | 
|  | 633 |  | 
|  | 634 | *pstat = stat; | 
|  | 635 |  | 
|  | 636 | return trans_done; | 
|  | 637 | } | 
|  | 638 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 639 | static void imxmci_dma_irq(int dma, void *devid) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 640 | { | 
|  | 641 | struct imxmci_host *host = devid; | 
|  | 642 | uint32_t stat = MMC_STATUS; | 
|  | 643 |  | 
|  | 644 | atomic_set(&host->stuck_timeout, 0); | 
|  | 645 | host->status_reg = stat; | 
|  | 646 | set_bit(IMXMCI_PEND_DMA_END_b, &host->pending_events); | 
|  | 647 | tasklet_schedule(&host->tasklet); | 
|  | 648 | } | 
|  | 649 |  | 
| David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 650 | static irqreturn_t imxmci_irq(int irq, void *devid) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 651 | { | 
|  | 652 | struct imxmci_host *host = devid; | 
|  | 653 | uint32_t stat = MMC_STATUS; | 
|  | 654 | int handled = 1; | 
|  | 655 |  | 
|  | 656 | MMC_INT_MASK = host->imask | INT_MASK_SDIO | INT_MASK_AUTO_CARD_DETECT; | 
|  | 657 |  | 
|  | 658 | atomic_set(&host->stuck_timeout, 0); | 
|  | 659 | host->status_reg = stat; | 
|  | 660 | set_bit(IMXMCI_PEND_IRQ_b, &host->pending_events); | 
| Pavel Pisa | 81d3842 | 2006-04-30 15:35:54 +0100 | [diff] [blame] | 661 | set_bit(IMXMCI_PEND_STARTED_b, &host->pending_events); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 662 | tasklet_schedule(&host->tasklet); | 
|  | 663 |  | 
|  | 664 | return IRQ_RETVAL(handled);; | 
|  | 665 | } | 
|  | 666 |  | 
|  | 667 | static void imxmci_tasklet_fnc(unsigned long data) | 
|  | 668 | { | 
|  | 669 | struct imxmci_host *host = (struct imxmci_host *)data; | 
|  | 670 | u32 stat; | 
|  | 671 | unsigned int data_dir_mask = 0;	/* STATUS_WR_CRC_ERROR_CODE_MASK */ | 
|  | 672 | int timeout = 0; | 
|  | 673 |  | 
|  | 674 | if(atomic_read(&host->stuck_timeout) > 4) { | 
|  | 675 | char *what; | 
|  | 676 | timeout = 1; | 
|  | 677 | stat = MMC_STATUS; | 
|  | 678 | host->status_reg = stat; | 
|  | 679 | if (test_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events)) | 
|  | 680 | if (test_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events)) | 
|  | 681 | what = "RESP+DMA"; | 
|  | 682 | else | 
|  | 683 | what = "RESP"; | 
|  | 684 | else | 
|  | 685 | if (test_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events)) | 
|  | 686 | if(test_bit(IMXMCI_PEND_DMA_END_b, &host->pending_events)) | 
|  | 687 | what = "DATA"; | 
|  | 688 | else | 
|  | 689 | what = "DMA"; | 
|  | 690 | else | 
|  | 691 | what = "???"; | 
|  | 692 |  | 
|  | 693 | dev_err(mmc_dev(host->mmc), "%s TIMEOUT, hardware stucked STATUS = 0x%04x IMASK = 0x%04x\n", | 
|  | 694 | what, stat, MMC_INT_MASK); | 
|  | 695 | dev_err(mmc_dev(host->mmc), "CMD_DAT_CONT = 0x%04x, MMC_BLK_LEN = 0x%04x, MMC_NOB = 0x%04x, DMA_CCR = 0x%08x\n", | 
|  | 696 | MMC_CMD_DAT_CONT, MMC_BLK_LEN, MMC_NOB, CCR(host->dma)); | 
| Pavel Pisa | 148f93d | 2006-09-07 15:53:29 +0100 | [diff] [blame] | 697 | dev_err(mmc_dev(host->mmc), "CMD%d, prevCMD%d, bus %d-bit, dma_size = 0x%x\n", | 
|  | 698 | host->cmd?host->cmd->opcode:0, host->prev_cmd_code, 1<<host->actual_bus_width, host->dma_size); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 699 | } | 
|  | 700 |  | 
|  | 701 | if(!host->present || timeout) | 
|  | 702 | host->status_reg = STATUS_TIME_OUT_RESP | STATUS_TIME_OUT_READ | | 
|  | 703 | STATUS_CRC_READ_ERR | STATUS_CRC_WRITE_ERR; | 
|  | 704 |  | 
|  | 705 | if(test_bit(IMXMCI_PEND_IRQ_b, &host->pending_events) || timeout) { | 
|  | 706 | clear_bit(IMXMCI_PEND_IRQ_b, &host->pending_events); | 
|  | 707 |  | 
|  | 708 | stat = MMC_STATUS; | 
|  | 709 | /* | 
|  | 710 | * This is not required in theory, but there is chance to miss some flag | 
|  | 711 | * which clears automatically by mask write, FreeScale original code keeps | 
|  | 712 | * stat from IRQ time so do I | 
|  | 713 | */ | 
|  | 714 | stat |= host->status_reg; | 
|  | 715 |  | 
| Pavel Pisa | 2cb3320 | 2007-03-08 00:00:40 +0100 | [diff] [blame] | 716 | if(test_bit(IMXMCI_PEND_CPU_DATA_b, &host->pending_events)) | 
|  | 717 | stat &= ~STATUS_CRC_READ_ERR; | 
|  | 718 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 719 | if(test_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events)) { | 
|  | 720 | imxmci_busy_wait_for_status(host, &stat, | 
|  | 721 | STATUS_END_CMD_RESP | STATUS_ERR_MASK, | 
|  | 722 | 20, "imxmci_tasklet_fnc resp (ERRATUM #4)"); | 
|  | 723 | } | 
|  | 724 |  | 
|  | 725 | if(stat & (STATUS_END_CMD_RESP | STATUS_ERR_MASK)) { | 
|  | 726 | if(test_and_clear_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events)) | 
|  | 727 | imxmci_cmd_done(host, stat); | 
|  | 728 | if(host->data && (stat & STATUS_ERR_MASK)) | 
|  | 729 | imxmci_data_done(host, stat); | 
|  | 730 | } | 
|  | 731 |  | 
|  | 732 | if(test_bit(IMXMCI_PEND_CPU_DATA_b, &host->pending_events)) { | 
|  | 733 | stat |= MMC_STATUS; | 
|  | 734 | if(imxmci_cpu_driven_data(host, &stat)){ | 
|  | 735 | if(test_and_clear_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events)) | 
|  | 736 | imxmci_cmd_done(host, stat); | 
|  | 737 | atomic_clear_mask(IMXMCI_PEND_IRQ_m|IMXMCI_PEND_CPU_DATA_m, | 
|  | 738 | &host->pending_events); | 
|  | 739 | imxmci_data_done(host, stat); | 
|  | 740 | } | 
|  | 741 | } | 
|  | 742 | } | 
|  | 743 |  | 
|  | 744 | if(test_bit(IMXMCI_PEND_DMA_END_b, &host->pending_events) && | 
|  | 745 | !test_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events)) { | 
|  | 746 |  | 
|  | 747 | stat = MMC_STATUS; | 
|  | 748 | /* Same as above */ | 
|  | 749 | stat |= host->status_reg; | 
|  | 750 |  | 
|  | 751 | if(host->dma_dir == DMA_TO_DEVICE) { | 
|  | 752 | data_dir_mask = STATUS_WRITE_OP_DONE; | 
|  | 753 | } else { | 
|  | 754 | data_dir_mask = STATUS_DATA_TRANS_DONE; | 
|  | 755 | } | 
|  | 756 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 757 | if(stat & data_dir_mask) { | 
|  | 758 | clear_bit(IMXMCI_PEND_DMA_END_b, &host->pending_events); | 
|  | 759 | imxmci_data_done(host, stat); | 
|  | 760 | } | 
|  | 761 | } | 
|  | 762 |  | 
|  | 763 | if(test_and_clear_bit(IMXMCI_PEND_CARD_XCHG_b, &host->pending_events)) { | 
|  | 764 |  | 
|  | 765 | if(host->cmd) | 
|  | 766 | imxmci_cmd_done(host, STATUS_TIME_OUT_RESP); | 
|  | 767 |  | 
|  | 768 | if(host->data) | 
|  | 769 | imxmci_data_done(host, STATUS_TIME_OUT_READ | | 
|  | 770 | STATUS_CRC_READ_ERR | STATUS_CRC_WRITE_ERR); | 
|  | 771 |  | 
|  | 772 | if(host->req) | 
|  | 773 | imxmci_finish_request(host, host->req); | 
|  | 774 |  | 
|  | 775 | mmc_detect_change(host->mmc, msecs_to_jiffies(100)); | 
|  | 776 |  | 
|  | 777 | } | 
|  | 778 | } | 
|  | 779 |  | 
|  | 780 | static void imxmci_request(struct mmc_host *mmc, struct mmc_request *req) | 
|  | 781 | { | 
|  | 782 | struct imxmci_host *host = mmc_priv(mmc); | 
|  | 783 | unsigned int cmdat; | 
|  | 784 |  | 
|  | 785 | WARN_ON(host->req != NULL); | 
|  | 786 |  | 
|  | 787 | host->req = req; | 
|  | 788 |  | 
|  | 789 | cmdat = 0; | 
|  | 790 |  | 
|  | 791 | if (req->data) { | 
|  | 792 | imxmci_setup_data(host, req->data); | 
|  | 793 |  | 
|  | 794 | cmdat |= CMD_DAT_CONT_DATA_ENABLE; | 
|  | 795 |  | 
|  | 796 | if (req->data->flags & MMC_DATA_WRITE) | 
|  | 797 | cmdat |= CMD_DAT_CONT_WRITE; | 
|  | 798 |  | 
|  | 799 | if (req->data->flags & MMC_DATA_STREAM) { | 
|  | 800 | cmdat |= CMD_DAT_CONT_STREAM_BLOCK; | 
|  | 801 | } | 
|  | 802 | } | 
|  | 803 |  | 
|  | 804 | imxmci_start_cmd(host, req->cmd, cmdat); | 
|  | 805 | } | 
|  | 806 |  | 
|  | 807 | #define CLK_RATE 19200000 | 
|  | 808 |  | 
|  | 809 | static void imxmci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) | 
|  | 810 | { | 
|  | 811 | struct imxmci_host *host = mmc_priv(mmc); | 
|  | 812 | int prescaler; | 
|  | 813 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 814 | if( ios->bus_width==MMC_BUS_WIDTH_4 ) { | 
|  | 815 | host->actual_bus_width = MMC_BUS_WIDTH_4; | 
|  | 816 | imx_gpio_mode(PB11_PF_SD_DAT3); | 
|  | 817 | }else{ | 
|  | 818 | host->actual_bus_width = MMC_BUS_WIDTH_1; | 
|  | 819 | imx_gpio_mode(GPIO_PORTB | GPIO_IN | GPIO_PUEN | 11); | 
|  | 820 | } | 
|  | 821 |  | 
|  | 822 | if ( host->power_mode != ios->power_mode ) { | 
|  | 823 | switch (ios->power_mode) { | 
|  | 824 | case MMC_POWER_OFF: | 
|  | 825 | break; | 
|  | 826 | case MMC_POWER_UP: | 
|  | 827 | set_bit(IMXMCI_PEND_SET_INIT_b, &host->pending_events); | 
|  | 828 | break; | 
|  | 829 | case MMC_POWER_ON: | 
|  | 830 | break; | 
|  | 831 | } | 
|  | 832 | host->power_mode = ios->power_mode; | 
|  | 833 | } | 
|  | 834 |  | 
|  | 835 | if ( ios->clock ) { | 
|  | 836 | unsigned int clk; | 
|  | 837 |  | 
|  | 838 | /* The prescaler is 5 for PERCLK2 equal to 96MHz | 
|  | 839 | * then 96MHz / 5 = 19.2 MHz | 
|  | 840 | */ | 
| Sascha Hauer | 38a41fd | 2008-07-05 10:02:46 +0200 | [diff] [blame] | 841 | clk = clk_get_rate(host->clk); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 842 | prescaler=(clk+(CLK_RATE*7)/8)/CLK_RATE; | 
|  | 843 | switch(prescaler) { | 
|  | 844 | case 0: | 
|  | 845 | case 1:	prescaler = 0; | 
|  | 846 | break; | 
|  | 847 | case 2:	prescaler = 1; | 
|  | 848 | break; | 
|  | 849 | case 3:	prescaler = 2; | 
|  | 850 | break; | 
|  | 851 | case 4:	prescaler = 4; | 
|  | 852 | break; | 
|  | 853 | default: | 
|  | 854 | case 5:	prescaler = 5; | 
|  | 855 | break; | 
|  | 856 | } | 
|  | 857 |  | 
|  | 858 | dev_dbg(mmc_dev(host->mmc), "PERCLK2 %d MHz -> prescaler %d\n", | 
|  | 859 | clk, prescaler); | 
|  | 860 |  | 
|  | 861 | for(clk=0; clk<8; clk++) { | 
|  | 862 | int x; | 
|  | 863 | x = CLK_RATE / (1<<clk); | 
|  | 864 | if( x <= ios->clock) | 
|  | 865 | break; | 
|  | 866 | } | 
|  | 867 |  | 
|  | 868 | MMC_STR_STP_CLK |= STR_STP_CLK_ENABLE; /* enable controller */ | 
|  | 869 |  | 
|  | 870 | imxmci_stop_clock(host); | 
|  | 871 | MMC_CLK_RATE = (prescaler<<3) | clk; | 
| Pavel Pisa | 2c171bf | 2006-05-19 21:48:03 +0100 | [diff] [blame] | 872 | /* | 
|  | 873 | * Under my understanding, clock should not be started there, because it would | 
|  | 874 | * initiate SDHC sequencer and send last or random command into card | 
|  | 875 | */ | 
|  | 876 | /*imxmci_start_clock(host);*/ | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 877 |  | 
|  | 878 | dev_dbg(mmc_dev(host->mmc), "MMC_CLK_RATE: 0x%08x\n", MMC_CLK_RATE); | 
|  | 879 | } else { | 
|  | 880 | imxmci_stop_clock(host); | 
|  | 881 | } | 
|  | 882 | } | 
|  | 883 |  | 
| Pavel Pisa | faf39ed | 2007-09-23 22:59:01 +0200 | [diff] [blame] | 884 | static int imxmci_get_ro(struct mmc_host *mmc) | 
|  | 885 | { | 
|  | 886 | struct imxmci_host *host = mmc_priv(mmc); | 
|  | 887 |  | 
|  | 888 | if (host->pdata && host->pdata->get_ro) | 
| Anton Vorontsov | 08f80bb | 2008-06-17 18:17:39 +0400 | [diff] [blame] | 889 | return !!host->pdata->get_ro(mmc_dev(mmc)); | 
|  | 890 | /* | 
|  | 891 | * Board doesn't support read only detection; let the mmc core | 
|  | 892 | * decide what to do. | 
|  | 893 | */ | 
|  | 894 | return -ENOSYS; | 
| Pavel Pisa | faf39ed | 2007-09-23 22:59:01 +0200 | [diff] [blame] | 895 | } | 
|  | 896 |  | 
|  | 897 |  | 
| David Brownell | ab7aefd | 2006-11-12 17:55:30 -0800 | [diff] [blame] | 898 | static const struct mmc_host_ops imxmci_ops = { | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 899 | .request	= imxmci_request, | 
|  | 900 | .set_ios	= imxmci_set_ios, | 
| Pavel Pisa | faf39ed | 2007-09-23 22:59:01 +0200 | [diff] [blame] | 901 | .get_ro		= imxmci_get_ro, | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 902 | }; | 
|  | 903 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 904 | static void imxmci_check_status(unsigned long data) | 
|  | 905 | { | 
|  | 906 | struct imxmci_host *host = (struct imxmci_host *)data; | 
|  | 907 |  | 
| Paulius Zaleckas | c5d5e9c | 2008-07-09 16:03:20 +0300 | [diff] [blame] | 908 | if (host->pdata && host->pdata->card_present && | 
|  | 909 | host->pdata->card_present(mmc_dev(host->mmc)) != host->present) { | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 910 | host->present ^= 1; | 
|  | 911 | dev_info(mmc_dev(host->mmc), "card %s\n", | 
|  | 912 | host->present ? "inserted" : "removed"); | 
|  | 913 |  | 
|  | 914 | set_bit(IMXMCI_PEND_CARD_XCHG_b, &host->pending_events); | 
|  | 915 | tasklet_schedule(&host->tasklet); | 
|  | 916 | } | 
|  | 917 |  | 
|  | 918 | if(test_bit(IMXMCI_PEND_WAIT_RESP_b, &host->pending_events) || | 
|  | 919 | test_bit(IMXMCI_PEND_DMA_DATA_b, &host->pending_events)) { | 
|  | 920 | atomic_inc(&host->stuck_timeout); | 
|  | 921 | if(atomic_read(&host->stuck_timeout) > 4) | 
|  | 922 | tasklet_schedule(&host->tasklet); | 
|  | 923 | } else { | 
|  | 924 | atomic_set(&host->stuck_timeout, 0); | 
|  | 925 |  | 
|  | 926 | } | 
|  | 927 |  | 
|  | 928 | mod_timer(&host->timer, jiffies + (HZ>>1)); | 
|  | 929 | } | 
|  | 930 |  | 
|  | 931 | static int imxmci_probe(struct platform_device *pdev) | 
|  | 932 | { | 
|  | 933 | struct mmc_host *mmc; | 
|  | 934 | struct imxmci_host *host = NULL; | 
|  | 935 | struct resource *r; | 
|  | 936 | int ret = 0, irq; | 
|  | 937 |  | 
|  | 938 | printk(KERN_INFO "i.MX mmc driver\n"); | 
|  | 939 |  | 
| Paulius Zaleckas | 5fc63df | 2008-07-09 16:03:17 +0300 | [diff] [blame] | 940 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 
|  | 941 | irq = platform_get_irq(pdev, 0); | 
|  | 942 | if (!r || irq < 0) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 943 | return -ENXIO; | 
|  | 944 |  | 
| Paulius Zaleckas | 5fc63df | 2008-07-09 16:03:17 +0300 | [diff] [blame] | 945 | if (!request_mem_region(r->start, 0x100, pdev->name)) | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 946 | return -EBUSY; | 
|  | 947 |  | 
|  | 948 | mmc = mmc_alloc_host(sizeof(struct imxmci_host), &pdev->dev); | 
|  | 949 | if (!mmc) { | 
|  | 950 | ret = -ENOMEM; | 
|  | 951 | goto out; | 
|  | 952 | } | 
|  | 953 |  | 
|  | 954 | mmc->ops = &imxmci_ops; | 
|  | 955 | mmc->f_min = 150000; | 
|  | 956 | mmc->f_max = CLK_RATE/2; | 
|  | 957 | mmc->ocr_avail = MMC_VDD_32_33; | 
| Pierre Ossman | 255d01a | 2007-07-24 20:38:53 +0200 | [diff] [blame] | 958 | mmc->caps = MMC_CAP_4_BIT_DATA; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 959 |  | 
|  | 960 | /* MMC core transfer sizes tunable parameters */ | 
|  | 961 | mmc->max_hw_segs = 64; | 
|  | 962 | mmc->max_phys_segs = 64; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 963 | mmc->max_seg_size = 64*512;	/* default PAGE_CACHE_SIZE */ | 
| Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 964 | mmc->max_req_size = 64*512;	/* default PAGE_CACHE_SIZE */ | 
| Pierre Ossman | fe4a3c7 | 2006-11-21 17:54:23 +0100 | [diff] [blame] | 965 | mmc->max_blk_size = 2048; | 
| Pierre Ossman | 55db890 | 2006-11-21 17:55:45 +0100 | [diff] [blame] | 966 | mmc->max_blk_count = 65535; | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 967 |  | 
|  | 968 | host = mmc_priv(mmc); | 
|  | 969 | host->mmc = mmc; | 
|  | 970 | host->dma_allocated = 0; | 
|  | 971 | host->pdata = pdev->dev.platform_data; | 
| Paulius Zaleckas | c5d5e9c | 2008-07-09 16:03:20 +0300 | [diff] [blame] | 972 | if (!host->pdata) | 
|  | 973 | dev_warn(&pdev->dev, "No platform data provided!\n"); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 974 |  | 
|  | 975 | spin_lock_init(&host->lock); | 
|  | 976 | host->res = r; | 
|  | 977 | host->irq = irq; | 
|  | 978 |  | 
| Sascha Hauer | 38a41fd | 2008-07-05 10:02:46 +0200 | [diff] [blame] | 979 | host->clk = clk_get(&pdev->dev, "perclk2"); | 
|  | 980 | if (IS_ERR(host->clk)) { | 
|  | 981 | ret = PTR_ERR(host->clk); | 
|  | 982 | goto out; | 
|  | 983 | } | 
|  | 984 | clk_enable(host->clk); | 
|  | 985 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 986 | imx_gpio_mode(PB8_PF_SD_DAT0); | 
|  | 987 | imx_gpio_mode(PB9_PF_SD_DAT1); | 
|  | 988 | imx_gpio_mode(PB10_PF_SD_DAT2); | 
|  | 989 | /* Configured as GPIO with pull-up to ensure right MCC card mode */ | 
|  | 990 | /* Switched to PB11_PF_SD_DAT3 if 4 bit bus is configured */ | 
|  | 991 | imx_gpio_mode(GPIO_PORTB | GPIO_IN | GPIO_PUEN | 11); | 
|  | 992 | /* imx_gpio_mode(PB11_PF_SD_DAT3); */ | 
|  | 993 | imx_gpio_mode(PB12_PF_SD_CLK); | 
|  | 994 | imx_gpio_mode(PB13_PF_SD_CMD); | 
|  | 995 |  | 
|  | 996 | imxmci_softreset(); | 
|  | 997 |  | 
|  | 998 | if ( MMC_REV_NO != 0x390 ) { | 
|  | 999 | dev_err(mmc_dev(host->mmc), "wrong rev.no. 0x%08x. aborting.\n", | 
|  | 1000 | MMC_REV_NO); | 
|  | 1001 | goto out; | 
|  | 1002 | } | 
|  | 1003 |  | 
|  | 1004 | MMC_READ_TO = 0x2db4; /* recommended in data sheet */ | 
|  | 1005 |  | 
|  | 1006 | host->imask = IMXMCI_INT_MASK_DEFAULT; | 
|  | 1007 | MMC_INT_MASK = host->imask; | 
|  | 1008 |  | 
| Paulius Zaleckas | f7def13e | 2008-06-25 13:25:13 +0100 | [diff] [blame] | 1009 | host->dma = imx_dma_request_by_prio(DRIVER_NAME, DMA_PRIO_LOW); | 
|  | 1010 | if(host->dma < 0) { | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1011 | dev_err(mmc_dev(host->mmc), "imx_dma_request_by_prio failed\n"); | 
|  | 1012 | ret = -EBUSY; | 
|  | 1013 | goto out; | 
|  | 1014 | } | 
|  | 1015 | host->dma_allocated=1; | 
|  | 1016 | imx_dma_setup_handlers(host->dma, imxmci_dma_irq, NULL, host); | 
|  | 1017 |  | 
|  | 1018 | tasklet_init(&host->tasklet, imxmci_tasklet_fnc, (unsigned long)host); | 
|  | 1019 | host->status_reg=0; | 
|  | 1020 | host->pending_events=0; | 
|  | 1021 |  | 
|  | 1022 | ret = request_irq(host->irq, imxmci_irq, 0, DRIVER_NAME, host); | 
|  | 1023 | if (ret) | 
|  | 1024 | goto out; | 
|  | 1025 |  | 
| Paulius Zaleckas | c5d5e9c | 2008-07-09 16:03:20 +0300 | [diff] [blame] | 1026 | if (host->pdata && host->pdata->card_present) | 
|  | 1027 | host->present = host->pdata->card_present(mmc_dev(mmc)); | 
|  | 1028 | else	/* if there is no way to detect assume that card is present */ | 
|  | 1029 | host->present = 1; | 
|  | 1030 |  | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1031 | init_timer(&host->timer); | 
|  | 1032 | host->timer.data = (unsigned long)host; | 
|  | 1033 | host->timer.function = imxmci_check_status; | 
|  | 1034 | add_timer(&host->timer); | 
|  | 1035 | mod_timer(&host->timer, jiffies + (HZ>>1)); | 
|  | 1036 |  | 
|  | 1037 | platform_set_drvdata(pdev, mmc); | 
|  | 1038 |  | 
|  | 1039 | mmc_add_host(mmc); | 
|  | 1040 |  | 
|  | 1041 | return 0; | 
|  | 1042 |  | 
|  | 1043 | out: | 
|  | 1044 | if (host) { | 
|  | 1045 | if(host->dma_allocated){ | 
|  | 1046 | imx_dma_free(host->dma); | 
|  | 1047 | host->dma_allocated=0; | 
|  | 1048 | } | 
| Sascha Hauer | 38a41fd | 2008-07-05 10:02:46 +0200 | [diff] [blame] | 1049 | if (host->clk) { | 
|  | 1050 | clk_disable(host->clk); | 
|  | 1051 | clk_put(host->clk); | 
|  | 1052 | } | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1053 | } | 
|  | 1054 | if (mmc) | 
|  | 1055 | mmc_free_host(mmc); | 
| Paulius Zaleckas | 5fc63df | 2008-07-09 16:03:17 +0300 | [diff] [blame] | 1056 | release_mem_region(r->start, 0x100); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1057 | return ret; | 
|  | 1058 | } | 
|  | 1059 |  | 
|  | 1060 | static int imxmci_remove(struct platform_device *pdev) | 
|  | 1061 | { | 
|  | 1062 | struct mmc_host *mmc = platform_get_drvdata(pdev); | 
|  | 1063 |  | 
|  | 1064 | platform_set_drvdata(pdev, NULL); | 
|  | 1065 |  | 
|  | 1066 | if (mmc) { | 
|  | 1067 | struct imxmci_host *host = mmc_priv(mmc); | 
|  | 1068 |  | 
|  | 1069 | tasklet_disable(&host->tasklet); | 
|  | 1070 |  | 
|  | 1071 | del_timer_sync(&host->timer); | 
|  | 1072 | mmc_remove_host(mmc); | 
|  | 1073 |  | 
|  | 1074 | free_irq(host->irq, host); | 
|  | 1075 | if(host->dma_allocated){ | 
|  | 1076 | imx_dma_free(host->dma); | 
|  | 1077 | host->dma_allocated=0; | 
|  | 1078 | } | 
|  | 1079 |  | 
|  | 1080 | tasklet_kill(&host->tasklet); | 
|  | 1081 |  | 
| Sascha Hauer | 38a41fd | 2008-07-05 10:02:46 +0200 | [diff] [blame] | 1082 | clk_disable(host->clk); | 
|  | 1083 | clk_put(host->clk); | 
|  | 1084 |  | 
| Paulius Zaleckas | 5fc63df | 2008-07-09 16:03:17 +0300 | [diff] [blame] | 1085 | release_mem_region(host->res->start, 0x100); | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1086 |  | 
|  | 1087 | mmc_free_host(mmc); | 
|  | 1088 | } | 
|  | 1089 | return 0; | 
|  | 1090 | } | 
|  | 1091 |  | 
|  | 1092 | #ifdef CONFIG_PM | 
|  | 1093 | static int imxmci_suspend(struct platform_device *dev, pm_message_t state) | 
|  | 1094 | { | 
|  | 1095 | struct mmc_host *mmc = platform_get_drvdata(dev); | 
|  | 1096 | int ret = 0; | 
|  | 1097 |  | 
|  | 1098 | if (mmc) | 
|  | 1099 | ret = mmc_suspend_host(mmc, state); | 
|  | 1100 |  | 
|  | 1101 | return ret; | 
|  | 1102 | } | 
|  | 1103 |  | 
|  | 1104 | static int imxmci_resume(struct platform_device *dev) | 
|  | 1105 | { | 
|  | 1106 | struct mmc_host *mmc = platform_get_drvdata(dev); | 
|  | 1107 | struct imxmci_host *host; | 
|  | 1108 | int ret = 0; | 
|  | 1109 |  | 
|  | 1110 | if (mmc) { | 
|  | 1111 | host = mmc_priv(mmc); | 
|  | 1112 | if(host) | 
|  | 1113 | set_bit(IMXMCI_PEND_SET_INIT_b, &host->pending_events); | 
|  | 1114 | ret = mmc_resume_host(mmc); | 
|  | 1115 | } | 
|  | 1116 |  | 
|  | 1117 | return ret; | 
|  | 1118 | } | 
|  | 1119 | #else | 
|  | 1120 | #define imxmci_suspend  NULL | 
|  | 1121 | #define imxmci_resume   NULL | 
|  | 1122 | #endif /* CONFIG_PM */ | 
|  | 1123 |  | 
|  | 1124 | static struct platform_driver imxmci_driver = { | 
|  | 1125 | .probe		= imxmci_probe, | 
|  | 1126 | .remove		= imxmci_remove, | 
|  | 1127 | .suspend	= imxmci_suspend, | 
|  | 1128 | .resume		= imxmci_resume, | 
|  | 1129 | .driver		= { | 
|  | 1130 | .name		= DRIVER_NAME, | 
| Kay Sievers | bc65c72 | 2008-04-15 14:34:28 -0700 | [diff] [blame] | 1131 | .owner		= THIS_MODULE, | 
| Pavel Pisa | 56ca904 | 2006-04-02 19:27:07 +0100 | [diff] [blame] | 1132 | } | 
|  | 1133 | }; | 
|  | 1134 |  | 
|  | 1135 | static int __init imxmci_init(void) | 
|  | 1136 | { | 
|  | 1137 | return platform_driver_register(&imxmci_driver); | 
|  | 1138 | } | 
|  | 1139 |  | 
|  | 1140 | static void __exit imxmci_exit(void) | 
|  | 1141 | { | 
|  | 1142 | platform_driver_unregister(&imxmci_driver); | 
|  | 1143 | } | 
|  | 1144 |  | 
|  | 1145 | module_init(imxmci_init); | 
|  | 1146 | module_exit(imxmci_exit); | 
|  | 1147 |  | 
|  | 1148 | MODULE_DESCRIPTION("i.MX Multimedia Card Interface Driver"); | 
|  | 1149 | MODULE_AUTHOR("Sascha Hauer, Pengutronix"); | 
|  | 1150 | MODULE_LICENSE("GPL"); | 
| Kay Sievers | bc65c72 | 2008-04-15 14:34:28 -0700 | [diff] [blame] | 1151 | MODULE_ALIAS("platform:imx-mmc"); |