Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Synopsys DesignWare Multimedia Card Interface driver |
| 3 | * (Based on NXP driver for lpc 31xx) |
| 4 | * |
| 5 | * Copyright (C) 2009 NXP Semiconductors |
| 6 | * Copyright (C) 2009, 2010 Imagination Technologies Ltd. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | */ |
| 13 | |
| 14 | #include <linux/blkdev.h> |
| 15 | #include <linux/clk.h> |
| 16 | #include <linux/debugfs.h> |
| 17 | #include <linux/device.h> |
| 18 | #include <linux/dma-mapping.h> |
| 19 | #include <linux/err.h> |
| 20 | #include <linux/init.h> |
| 21 | #include <linux/interrupt.h> |
| 22 | #include <linux/ioport.h> |
| 23 | #include <linux/module.h> |
| 24 | #include <linux/platform_device.h> |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 25 | #include <linux/seq_file.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/stat.h> |
| 28 | #include <linux/delay.h> |
| 29 | #include <linux/irq.h> |
| 30 | #include <linux/mmc/host.h> |
| 31 | #include <linux/mmc/mmc.h> |
| 32 | #include <linux/mmc/dw_mmc.h> |
| 33 | #include <linux/bitops.h> |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 34 | #include <linux/regulator/consumer.h> |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 35 | #include <linux/workqueue.h> |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 36 | #include <linux/of.h> |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 37 | |
| 38 | #include "dw_mmc.h" |
| 39 | |
| 40 | /* Common flag combinations */ |
| 41 | #define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DTO | SDMMC_INT_DCRC | \ |
| 42 | SDMMC_INT_HTO | SDMMC_INT_SBE | \ |
| 43 | SDMMC_INT_EBE) |
| 44 | #define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \ |
| 45 | SDMMC_INT_RESP_ERR) |
| 46 | #define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \ |
| 47 | DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE) |
| 48 | #define DW_MCI_SEND_STATUS 1 |
| 49 | #define DW_MCI_RECV_STATUS 2 |
| 50 | #define DW_MCI_DMA_THRESHOLD 16 |
| 51 | |
| 52 | #ifdef CONFIG_MMC_DW_IDMAC |
| 53 | struct idmac_desc { |
| 54 | u32 des0; /* Control Descriptor */ |
| 55 | #define IDMAC_DES0_DIC BIT(1) |
| 56 | #define IDMAC_DES0_LD BIT(2) |
| 57 | #define IDMAC_DES0_FD BIT(3) |
| 58 | #define IDMAC_DES0_CH BIT(4) |
| 59 | #define IDMAC_DES0_ER BIT(5) |
| 60 | #define IDMAC_DES0_CES BIT(30) |
| 61 | #define IDMAC_DES0_OWN BIT(31) |
| 62 | |
| 63 | u32 des1; /* Buffer sizes */ |
| 64 | #define IDMAC_SET_BUFFER1_SIZE(d, s) \ |
Shashidhar Hiremath | 9b7bbe1 | 2011-07-29 08:49:50 -0400 | [diff] [blame] | 65 | ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff)) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 66 | |
| 67 | u32 des2; /* buffer 1 physical address */ |
| 68 | |
| 69 | u32 des3; /* buffer 2 physical address */ |
| 70 | }; |
| 71 | #endif /* CONFIG_MMC_DW_IDMAC */ |
| 72 | |
| 73 | /** |
| 74 | * struct dw_mci_slot - MMC slot state |
| 75 | * @mmc: The mmc_host representing this slot. |
| 76 | * @host: The MMC controller this slot is using. |
| 77 | * @ctype: Card type for this slot. |
| 78 | * @mrq: mmc_request currently being processed or waiting to be |
| 79 | * processed, or NULL when the slot is idle. |
| 80 | * @queue_node: List node for placing this node in the @queue list of |
| 81 | * &struct dw_mci. |
| 82 | * @clock: Clock rate configured by set_ios(). Protected by host->lock. |
| 83 | * @flags: Random state bits associated with the slot. |
| 84 | * @id: Number of this slot. |
| 85 | * @last_detect_state: Most recently observed card detect state. |
| 86 | */ |
| 87 | struct dw_mci_slot { |
| 88 | struct mmc_host *mmc; |
| 89 | struct dw_mci *host; |
| 90 | |
| 91 | u32 ctype; |
| 92 | |
| 93 | struct mmc_request *mrq; |
| 94 | struct list_head queue_node; |
| 95 | |
| 96 | unsigned int clock; |
| 97 | unsigned long flags; |
| 98 | #define DW_MMC_CARD_PRESENT 0 |
| 99 | #define DW_MMC_CARD_NEED_INIT 1 |
| 100 | int id; |
| 101 | int last_detect_state; |
| 102 | }; |
| 103 | |
| 104 | #if defined(CONFIG_DEBUG_FS) |
| 105 | static int dw_mci_req_show(struct seq_file *s, void *v) |
| 106 | { |
| 107 | struct dw_mci_slot *slot = s->private; |
| 108 | struct mmc_request *mrq; |
| 109 | struct mmc_command *cmd; |
| 110 | struct mmc_command *stop; |
| 111 | struct mmc_data *data; |
| 112 | |
| 113 | /* Make sure we get a consistent snapshot */ |
| 114 | spin_lock_bh(&slot->host->lock); |
| 115 | mrq = slot->mrq; |
| 116 | |
| 117 | if (mrq) { |
| 118 | cmd = mrq->cmd; |
| 119 | data = mrq->data; |
| 120 | stop = mrq->stop; |
| 121 | |
| 122 | if (cmd) |
| 123 | seq_printf(s, |
| 124 | "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n", |
| 125 | cmd->opcode, cmd->arg, cmd->flags, |
| 126 | cmd->resp[0], cmd->resp[1], cmd->resp[2], |
| 127 | cmd->resp[2], cmd->error); |
| 128 | if (data) |
| 129 | seq_printf(s, "DATA %u / %u * %u flg %x err %d\n", |
| 130 | data->bytes_xfered, data->blocks, |
| 131 | data->blksz, data->flags, data->error); |
| 132 | if (stop) |
| 133 | seq_printf(s, |
| 134 | "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n", |
| 135 | stop->opcode, stop->arg, stop->flags, |
| 136 | stop->resp[0], stop->resp[1], stop->resp[2], |
| 137 | stop->resp[2], stop->error); |
| 138 | } |
| 139 | |
| 140 | spin_unlock_bh(&slot->host->lock); |
| 141 | |
| 142 | return 0; |
| 143 | } |
| 144 | |
| 145 | static int dw_mci_req_open(struct inode *inode, struct file *file) |
| 146 | { |
| 147 | return single_open(file, dw_mci_req_show, inode->i_private); |
| 148 | } |
| 149 | |
| 150 | static const struct file_operations dw_mci_req_fops = { |
| 151 | .owner = THIS_MODULE, |
| 152 | .open = dw_mci_req_open, |
| 153 | .read = seq_read, |
| 154 | .llseek = seq_lseek, |
| 155 | .release = single_release, |
| 156 | }; |
| 157 | |
| 158 | static int dw_mci_regs_show(struct seq_file *s, void *v) |
| 159 | { |
| 160 | seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS); |
| 161 | seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS); |
| 162 | seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD); |
| 163 | seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL); |
| 164 | seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK); |
| 165 | seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA); |
| 166 | |
| 167 | return 0; |
| 168 | } |
| 169 | |
| 170 | static int dw_mci_regs_open(struct inode *inode, struct file *file) |
| 171 | { |
| 172 | return single_open(file, dw_mci_regs_show, inode->i_private); |
| 173 | } |
| 174 | |
| 175 | static const struct file_operations dw_mci_regs_fops = { |
| 176 | .owner = THIS_MODULE, |
| 177 | .open = dw_mci_regs_open, |
| 178 | .read = seq_read, |
| 179 | .llseek = seq_lseek, |
| 180 | .release = single_release, |
| 181 | }; |
| 182 | |
| 183 | static void dw_mci_init_debugfs(struct dw_mci_slot *slot) |
| 184 | { |
| 185 | struct mmc_host *mmc = slot->mmc; |
| 186 | struct dw_mci *host = slot->host; |
| 187 | struct dentry *root; |
| 188 | struct dentry *node; |
| 189 | |
| 190 | root = mmc->debugfs_root; |
| 191 | if (!root) |
| 192 | return; |
| 193 | |
| 194 | node = debugfs_create_file("regs", S_IRUSR, root, host, |
| 195 | &dw_mci_regs_fops); |
| 196 | if (!node) |
| 197 | goto err; |
| 198 | |
| 199 | node = debugfs_create_file("req", S_IRUSR, root, slot, |
| 200 | &dw_mci_req_fops); |
| 201 | if (!node) |
| 202 | goto err; |
| 203 | |
| 204 | node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state); |
| 205 | if (!node) |
| 206 | goto err; |
| 207 | |
| 208 | node = debugfs_create_x32("pending_events", S_IRUSR, root, |
| 209 | (u32 *)&host->pending_events); |
| 210 | if (!node) |
| 211 | goto err; |
| 212 | |
| 213 | node = debugfs_create_x32("completed_events", S_IRUSR, root, |
| 214 | (u32 *)&host->completed_events); |
| 215 | if (!node) |
| 216 | goto err; |
| 217 | |
| 218 | return; |
| 219 | |
| 220 | err: |
| 221 | dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n"); |
| 222 | } |
| 223 | #endif /* defined(CONFIG_DEBUG_FS) */ |
| 224 | |
| 225 | static void dw_mci_set_timeout(struct dw_mci *host) |
| 226 | { |
| 227 | /* timeout (maximum) */ |
| 228 | mci_writel(host, TMOUT, 0xffffffff); |
| 229 | } |
| 230 | |
| 231 | static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd) |
| 232 | { |
| 233 | struct mmc_data *data; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 234 | struct dw_mci_slot *slot = mmc_priv(mmc); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 235 | u32 cmdr; |
| 236 | cmd->error = -EINPROGRESS; |
| 237 | |
| 238 | cmdr = cmd->opcode; |
| 239 | |
| 240 | if (cmdr == MMC_STOP_TRANSMISSION) |
| 241 | cmdr |= SDMMC_CMD_STOP; |
| 242 | else |
| 243 | cmdr |= SDMMC_CMD_PRV_DAT_WAIT; |
| 244 | |
| 245 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 246 | /* We expect a response, so set this bit */ |
| 247 | cmdr |= SDMMC_CMD_RESP_EXP; |
| 248 | if (cmd->flags & MMC_RSP_136) |
| 249 | cmdr |= SDMMC_CMD_RESP_LONG; |
| 250 | } |
| 251 | |
| 252 | if (cmd->flags & MMC_RSP_CRC) |
| 253 | cmdr |= SDMMC_CMD_RESP_CRC; |
| 254 | |
| 255 | data = cmd->data; |
| 256 | if (data) { |
| 257 | cmdr |= SDMMC_CMD_DAT_EXP; |
| 258 | if (data->flags & MMC_DATA_STREAM) |
| 259 | cmdr |= SDMMC_CMD_STRM_MODE; |
| 260 | if (data->flags & MMC_DATA_WRITE) |
| 261 | cmdr |= SDMMC_CMD_DAT_WR; |
| 262 | } |
| 263 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 264 | if (slot->host->drv_data->prepare_command) |
| 265 | slot->host->drv_data->prepare_command(slot->host, &cmdr); |
| 266 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 267 | return cmdr; |
| 268 | } |
| 269 | |
| 270 | static void dw_mci_start_command(struct dw_mci *host, |
| 271 | struct mmc_command *cmd, u32 cmd_flags) |
| 272 | { |
| 273 | host->cmd = cmd; |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 274 | dev_vdbg(host->dev, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 275 | "start command: ARGR=0x%08x CMDR=0x%08x\n", |
| 276 | cmd->arg, cmd_flags); |
| 277 | |
| 278 | mci_writel(host, CMDARG, cmd->arg); |
| 279 | wmb(); |
| 280 | |
| 281 | mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START); |
| 282 | } |
| 283 | |
| 284 | static void send_stop_cmd(struct dw_mci *host, struct mmc_data *data) |
| 285 | { |
| 286 | dw_mci_start_command(host, data->stop, host->stop_cmdr); |
| 287 | } |
| 288 | |
| 289 | /* DMA interface functions */ |
| 290 | static void dw_mci_stop_dma(struct dw_mci *host) |
| 291 | { |
James Hogan | 03e8cb5 | 2011-06-29 09:28:43 +0100 | [diff] [blame] | 292 | if (host->using_dma) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 293 | host->dma_ops->stop(host); |
| 294 | host->dma_ops->cleanup(host); |
| 295 | } else { |
| 296 | /* Data transfer was stopped by the interrupt handler */ |
| 297 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 298 | } |
| 299 | } |
| 300 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 301 | static int dw_mci_get_dma_dir(struct mmc_data *data) |
| 302 | { |
| 303 | if (data->flags & MMC_DATA_WRITE) |
| 304 | return DMA_TO_DEVICE; |
| 305 | else |
| 306 | return DMA_FROM_DEVICE; |
| 307 | } |
| 308 | |
Jaehoon Chung | 9beee91 | 2012-02-16 11:19:38 +0900 | [diff] [blame] | 309 | #ifdef CONFIG_MMC_DW_IDMAC |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 310 | static void dw_mci_dma_cleanup(struct dw_mci *host) |
| 311 | { |
| 312 | struct mmc_data *data = host->data; |
| 313 | |
| 314 | if (data) |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 315 | if (!data->host_cookie) |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 316 | dma_unmap_sg(host->dev, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 317 | data->sg, |
| 318 | data->sg_len, |
| 319 | dw_mci_get_dma_dir(data)); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 320 | } |
| 321 | |
| 322 | static void dw_mci_idmac_stop_dma(struct dw_mci *host) |
| 323 | { |
| 324 | u32 temp; |
| 325 | |
| 326 | /* Disable and reset the IDMAC interface */ |
| 327 | temp = mci_readl(host, CTRL); |
| 328 | temp &= ~SDMMC_CTRL_USE_IDMAC; |
| 329 | temp |= SDMMC_CTRL_DMA_RESET; |
| 330 | mci_writel(host, CTRL, temp); |
| 331 | |
| 332 | /* Stop the IDMAC running */ |
| 333 | temp = mci_readl(host, BMOD); |
Jaehoon Chung | a5289a4 | 2011-02-25 11:08:13 +0900 | [diff] [blame] | 334 | temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 335 | mci_writel(host, BMOD, temp); |
| 336 | } |
| 337 | |
| 338 | static void dw_mci_idmac_complete_dma(struct dw_mci *host) |
| 339 | { |
| 340 | struct mmc_data *data = host->data; |
| 341 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 342 | dev_vdbg(host->dev, "DMA complete\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 343 | |
| 344 | host->dma_ops->cleanup(host); |
| 345 | |
| 346 | /* |
| 347 | * If the card was removed, data will be NULL. No point in trying to |
| 348 | * send the stop command or waiting for NBUSY in this case. |
| 349 | */ |
| 350 | if (data) { |
| 351 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 352 | tasklet_schedule(&host->tasklet); |
| 353 | } |
| 354 | } |
| 355 | |
| 356 | static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data, |
| 357 | unsigned int sg_len) |
| 358 | { |
| 359 | int i; |
| 360 | struct idmac_desc *desc = host->sg_cpu; |
| 361 | |
| 362 | for (i = 0; i < sg_len; i++, desc++) { |
| 363 | unsigned int length = sg_dma_len(&data->sg[i]); |
| 364 | u32 mem_addr = sg_dma_address(&data->sg[i]); |
| 365 | |
| 366 | /* Set the OWN bit and disable interrupts for this descriptor */ |
| 367 | desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | IDMAC_DES0_CH; |
| 368 | |
| 369 | /* Buffer length */ |
| 370 | IDMAC_SET_BUFFER1_SIZE(desc, length); |
| 371 | |
| 372 | /* Physical address to DMA to/from */ |
| 373 | desc->des2 = mem_addr; |
| 374 | } |
| 375 | |
| 376 | /* Set first descriptor */ |
| 377 | desc = host->sg_cpu; |
| 378 | desc->des0 |= IDMAC_DES0_FD; |
| 379 | |
| 380 | /* Set last descriptor */ |
| 381 | desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc); |
| 382 | desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC); |
| 383 | desc->des0 |= IDMAC_DES0_LD; |
| 384 | |
| 385 | wmb(); |
| 386 | } |
| 387 | |
| 388 | static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len) |
| 389 | { |
| 390 | u32 temp; |
| 391 | |
| 392 | dw_mci_translate_sglist(host, host->data, sg_len); |
| 393 | |
| 394 | /* Select IDMAC interface */ |
| 395 | temp = mci_readl(host, CTRL); |
| 396 | temp |= SDMMC_CTRL_USE_IDMAC; |
| 397 | mci_writel(host, CTRL, temp); |
| 398 | |
| 399 | wmb(); |
| 400 | |
| 401 | /* Enable the IDMAC */ |
| 402 | temp = mci_readl(host, BMOD); |
Jaehoon Chung | a5289a4 | 2011-02-25 11:08:13 +0900 | [diff] [blame] | 403 | temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 404 | mci_writel(host, BMOD, temp); |
| 405 | |
| 406 | /* Start it running */ |
| 407 | mci_writel(host, PLDMND, 1); |
| 408 | } |
| 409 | |
| 410 | static int dw_mci_idmac_init(struct dw_mci *host) |
| 411 | { |
| 412 | struct idmac_desc *p; |
Girish K S | 94c6cee | 2012-06-12 15:28:22 +0530 | [diff] [blame] | 413 | int i, dma_support; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 414 | |
| 415 | /* Number of descriptors in the ring buffer */ |
| 416 | host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc); |
| 417 | |
Girish K S | 94c6cee | 2012-06-12 15:28:22 +0530 | [diff] [blame] | 418 | /* Check if Hardware Configuration Register has support for DMA */ |
| 419 | dma_support = (mci_readl(host, HCON) >> 16) & 0x3; |
| 420 | |
| 421 | if (!dma_support || dma_support > 2) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 422 | dev_err(host->dev, |
Girish K S | 94c6cee | 2012-06-12 15:28:22 +0530 | [diff] [blame] | 423 | "Host Controller does not support IDMA Tx.\n"); |
| 424 | host->dma_ops = NULL; |
| 425 | return -ENODEV; |
| 426 | } |
| 427 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 428 | dev_info(host->dev, "Using internal DMA controller.\n"); |
Girish K S | 94c6cee | 2012-06-12 15:28:22 +0530 | [diff] [blame] | 429 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 430 | /* Forward link the descriptor list */ |
| 431 | for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++) |
| 432 | p->des3 = host->sg_dma + (sizeof(struct idmac_desc) * (i + 1)); |
| 433 | |
| 434 | /* Set the last descriptor as the end-of-ring descriptor */ |
| 435 | p->des3 = host->sg_dma; |
| 436 | p->des0 = IDMAC_DES0_ER; |
| 437 | |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 438 | mci_writel(host, BMOD, SDMMC_IDMAC_SWRESET); |
| 439 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 440 | /* Mask out interrupts - get Tx & Rx complete only */ |
| 441 | mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | SDMMC_IDMAC_INT_RI | |
| 442 | SDMMC_IDMAC_INT_TI); |
| 443 | |
| 444 | /* Set the descriptor base address */ |
| 445 | mci_writel(host, DBADDR, host->sg_dma); |
| 446 | return 0; |
| 447 | } |
| 448 | |
Seungwon Jeon | 885c3e8 | 2012-02-20 11:01:43 +0900 | [diff] [blame] | 449 | static struct dw_mci_dma_ops dw_mci_idmac_ops = { |
| 450 | .init = dw_mci_idmac_init, |
| 451 | .start = dw_mci_idmac_start_dma, |
| 452 | .stop = dw_mci_idmac_stop_dma, |
| 453 | .complete = dw_mci_idmac_complete_dma, |
| 454 | .cleanup = dw_mci_dma_cleanup, |
| 455 | }; |
| 456 | #endif /* CONFIG_MMC_DW_IDMAC */ |
| 457 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 458 | static int dw_mci_pre_dma_transfer(struct dw_mci *host, |
| 459 | struct mmc_data *data, |
| 460 | bool next) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 461 | { |
| 462 | struct scatterlist *sg; |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 463 | unsigned int i, sg_len; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 464 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 465 | if (!next && data->host_cookie) |
| 466 | return data->host_cookie; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 467 | |
| 468 | /* |
| 469 | * We don't do DMA on "complex" transfers, i.e. with |
| 470 | * non-word-aligned buffers or lengths. Also, we don't bother |
| 471 | * with all the DMA setup overhead for short transfers. |
| 472 | */ |
| 473 | if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD) |
| 474 | return -EINVAL; |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 475 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 476 | if (data->blksz & 3) |
| 477 | return -EINVAL; |
| 478 | |
| 479 | for_each_sg(data->sg, sg, data->sg_len, i) { |
| 480 | if (sg->offset & 3 || sg->length & 3) |
| 481 | return -EINVAL; |
| 482 | } |
| 483 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 484 | sg_len = dma_map_sg(host->dev, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 485 | data->sg, |
| 486 | data->sg_len, |
| 487 | dw_mci_get_dma_dir(data)); |
| 488 | if (sg_len == 0) |
| 489 | return -EINVAL; |
| 490 | |
| 491 | if (next) |
| 492 | data->host_cookie = sg_len; |
| 493 | |
| 494 | return sg_len; |
| 495 | } |
| 496 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 497 | static void dw_mci_pre_req(struct mmc_host *mmc, |
| 498 | struct mmc_request *mrq, |
| 499 | bool is_first_req) |
| 500 | { |
| 501 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 502 | struct mmc_data *data = mrq->data; |
| 503 | |
| 504 | if (!slot->host->use_dma || !data) |
| 505 | return; |
| 506 | |
| 507 | if (data->host_cookie) { |
| 508 | data->host_cookie = 0; |
| 509 | return; |
| 510 | } |
| 511 | |
| 512 | if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0) |
| 513 | data->host_cookie = 0; |
| 514 | } |
| 515 | |
| 516 | static void dw_mci_post_req(struct mmc_host *mmc, |
| 517 | struct mmc_request *mrq, |
| 518 | int err) |
| 519 | { |
| 520 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 521 | struct mmc_data *data = mrq->data; |
| 522 | |
| 523 | if (!slot->host->use_dma || !data) |
| 524 | return; |
| 525 | |
| 526 | if (data->host_cookie) |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 527 | dma_unmap_sg(slot->host->dev, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 528 | data->sg, |
| 529 | data->sg_len, |
| 530 | dw_mci_get_dma_dir(data)); |
| 531 | data->host_cookie = 0; |
| 532 | } |
| 533 | |
| 534 | static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data) |
| 535 | { |
| 536 | int sg_len; |
| 537 | u32 temp; |
| 538 | |
| 539 | host->using_dma = 0; |
| 540 | |
| 541 | /* If we don't have a channel, we can't do DMA */ |
| 542 | if (!host->use_dma) |
| 543 | return -ENODEV; |
| 544 | |
| 545 | sg_len = dw_mci_pre_dma_transfer(host, data, 0); |
Seungwon Jeon | a99aa9b | 2012-04-10 09:53:32 +0900 | [diff] [blame] | 546 | if (sg_len < 0) { |
| 547 | host->dma_ops->stop(host); |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 548 | return sg_len; |
Seungwon Jeon | a99aa9b | 2012-04-10 09:53:32 +0900 | [diff] [blame] | 549 | } |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 550 | |
James Hogan | 03e8cb5 | 2011-06-29 09:28:43 +0100 | [diff] [blame] | 551 | host->using_dma = 1; |
| 552 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 553 | dev_vdbg(host->dev, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 554 | "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n", |
| 555 | (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma, |
| 556 | sg_len); |
| 557 | |
| 558 | /* Enable the DMA interface */ |
| 559 | temp = mci_readl(host, CTRL); |
| 560 | temp |= SDMMC_CTRL_DMA_ENABLE; |
| 561 | mci_writel(host, CTRL, temp); |
| 562 | |
| 563 | /* Disable RX/TX IRQs, let DMA handle it */ |
| 564 | temp = mci_readl(host, INTMASK); |
| 565 | temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR); |
| 566 | mci_writel(host, INTMASK, temp); |
| 567 | |
| 568 | host->dma_ops->start(host, sg_len); |
| 569 | |
| 570 | return 0; |
| 571 | } |
| 572 | |
| 573 | static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data) |
| 574 | { |
| 575 | u32 temp; |
| 576 | |
| 577 | data->error = -EINPROGRESS; |
| 578 | |
| 579 | WARN_ON(host->data); |
| 580 | host->sg = NULL; |
| 581 | host->data = data; |
| 582 | |
James Hogan | 55c5efbc | 2011-06-29 09:29:58 +0100 | [diff] [blame] | 583 | if (data->flags & MMC_DATA_READ) |
| 584 | host->dir_status = DW_MCI_RECV_STATUS; |
| 585 | else |
| 586 | host->dir_status = DW_MCI_SEND_STATUS; |
| 587 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 588 | if (dw_mci_submit_data_dma(host, data)) { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 589 | int flags = SG_MITER_ATOMIC; |
| 590 | if (host->data->flags & MMC_DATA_READ) |
| 591 | flags |= SG_MITER_TO_SG; |
| 592 | else |
| 593 | flags |= SG_MITER_FROM_SG; |
| 594 | |
| 595 | sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 596 | host->sg = data->sg; |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 597 | host->part_buf_start = 0; |
| 598 | host->part_buf_count = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 599 | |
James Hogan | b40af3a | 2011-06-24 13:54:06 +0100 | [diff] [blame] | 600 | mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 601 | temp = mci_readl(host, INTMASK); |
| 602 | temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR; |
| 603 | mci_writel(host, INTMASK, temp); |
| 604 | |
| 605 | temp = mci_readl(host, CTRL); |
| 606 | temp &= ~SDMMC_CTRL_DMA_ENABLE; |
| 607 | mci_writel(host, CTRL, temp); |
| 608 | } |
| 609 | } |
| 610 | |
| 611 | static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg) |
| 612 | { |
| 613 | struct dw_mci *host = slot->host; |
| 614 | unsigned long timeout = jiffies + msecs_to_jiffies(500); |
| 615 | unsigned int cmd_status = 0; |
| 616 | |
| 617 | mci_writel(host, CMDARG, arg); |
| 618 | wmb(); |
| 619 | mci_writel(host, CMD, SDMMC_CMD_START | cmd); |
| 620 | |
| 621 | while (time_before(jiffies, timeout)) { |
| 622 | cmd_status = mci_readl(host, CMD); |
| 623 | if (!(cmd_status & SDMMC_CMD_START)) |
| 624 | return; |
| 625 | } |
| 626 | dev_err(&slot->mmc->class_dev, |
| 627 | "Timeout sending command (cmd %#x arg %#x status %#x)\n", |
| 628 | cmd, arg, cmd_status); |
| 629 | } |
| 630 | |
| 631 | static void dw_mci_setup_bus(struct dw_mci_slot *slot) |
| 632 | { |
| 633 | struct dw_mci *host = slot->host; |
| 634 | u32 div; |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 635 | u32 clk_en_a; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 636 | |
| 637 | if (slot->clock != host->current_speed) { |
Seungwon Jeon | e419990 | 2012-05-22 13:01:21 +0900 | [diff] [blame] | 638 | div = host->bus_hz / slot->clock; |
| 639 | if (host->bus_hz % slot->clock && host->bus_hz > slot->clock) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 640 | /* |
| 641 | * move the + 1 after the divide to prevent |
| 642 | * over-clocking the card. |
| 643 | */ |
Seungwon Jeon | e419990 | 2012-05-22 13:01:21 +0900 | [diff] [blame] | 644 | div += 1; |
| 645 | |
| 646 | div = (host->bus_hz != slot->clock) ? DIV_ROUND_UP(div, 2) : 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 647 | |
| 648 | dev_info(&slot->mmc->class_dev, |
| 649 | "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ" |
| 650 | " div = %d)\n", slot->id, host->bus_hz, slot->clock, |
| 651 | div ? ((host->bus_hz / div) >> 1) : host->bus_hz, div); |
| 652 | |
| 653 | /* disable clock */ |
| 654 | mci_writel(host, CLKENA, 0); |
| 655 | mci_writel(host, CLKSRC, 0); |
| 656 | |
| 657 | /* inform CIU */ |
| 658 | mci_send_cmd(slot, |
| 659 | SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0); |
| 660 | |
| 661 | /* set clock to desired speed */ |
| 662 | mci_writel(host, CLKDIV, div); |
| 663 | |
| 664 | /* inform CIU */ |
| 665 | mci_send_cmd(slot, |
| 666 | SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0); |
| 667 | |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 668 | /* enable clock; only low power if no SDIO */ |
| 669 | clk_en_a = SDMMC_CLKEN_ENABLE << slot->id; |
| 670 | if (!(mci_readl(host, INTMASK) & SDMMC_INT_SDIO(slot->id))) |
| 671 | clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id; |
| 672 | mci_writel(host, CLKENA, clk_en_a); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 673 | |
| 674 | /* inform CIU */ |
| 675 | mci_send_cmd(slot, |
| 676 | SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT, 0); |
| 677 | |
| 678 | host->current_speed = slot->clock; |
| 679 | } |
| 680 | |
| 681 | /* Set the current slot bus width */ |
Seungwon Jeon | 1d56c45 | 2011-06-20 17:23:53 +0900 | [diff] [blame] | 682 | mci_writel(host, CTYPE, (slot->ctype << slot->id)); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 683 | } |
| 684 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 685 | static void __dw_mci_start_request(struct dw_mci *host, |
| 686 | struct dw_mci_slot *slot, |
| 687 | struct mmc_command *cmd) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 688 | { |
| 689 | struct mmc_request *mrq; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 690 | struct mmc_data *data; |
| 691 | u32 cmdflags; |
| 692 | |
| 693 | mrq = slot->mrq; |
| 694 | if (host->pdata->select_slot) |
| 695 | host->pdata->select_slot(slot->id); |
| 696 | |
| 697 | /* Slot specific timing and width adjustment */ |
| 698 | dw_mci_setup_bus(slot); |
| 699 | |
| 700 | host->cur_slot = slot; |
| 701 | host->mrq = mrq; |
| 702 | |
| 703 | host->pending_events = 0; |
| 704 | host->completed_events = 0; |
| 705 | host->data_status = 0; |
| 706 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 707 | data = cmd->data; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 708 | if (data) { |
| 709 | dw_mci_set_timeout(host); |
| 710 | mci_writel(host, BYTCNT, data->blksz*data->blocks); |
| 711 | mci_writel(host, BLKSIZ, data->blksz); |
| 712 | } |
| 713 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 714 | cmdflags = dw_mci_prepare_command(slot->mmc, cmd); |
| 715 | |
| 716 | /* this is the first command, send the initialization clock */ |
| 717 | if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags)) |
| 718 | cmdflags |= SDMMC_CMD_INIT; |
| 719 | |
| 720 | if (data) { |
| 721 | dw_mci_submit_data(host, data); |
| 722 | wmb(); |
| 723 | } |
| 724 | |
| 725 | dw_mci_start_command(host, cmd, cmdflags); |
| 726 | |
| 727 | if (mrq->stop) |
| 728 | host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop); |
| 729 | } |
| 730 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 731 | static void dw_mci_start_request(struct dw_mci *host, |
| 732 | struct dw_mci_slot *slot) |
| 733 | { |
| 734 | struct mmc_request *mrq = slot->mrq; |
| 735 | struct mmc_command *cmd; |
| 736 | |
| 737 | cmd = mrq->sbc ? mrq->sbc : mrq->cmd; |
| 738 | __dw_mci_start_request(host, slot, cmd); |
| 739 | } |
| 740 | |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 741 | /* must be called with host->lock held */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 742 | static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot, |
| 743 | struct mmc_request *mrq) |
| 744 | { |
| 745 | dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n", |
| 746 | host->state); |
| 747 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 748 | slot->mrq = mrq; |
| 749 | |
| 750 | if (host->state == STATE_IDLE) { |
| 751 | host->state = STATE_SENDING_CMD; |
| 752 | dw_mci_start_request(host, slot); |
| 753 | } else { |
| 754 | list_add_tail(&slot->queue_node, &host->queue); |
| 755 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq) |
| 759 | { |
| 760 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 761 | struct dw_mci *host = slot->host; |
| 762 | |
| 763 | WARN_ON(slot->mrq); |
| 764 | |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 765 | /* |
| 766 | * The check for card presence and queueing of the request must be |
| 767 | * atomic, otherwise the card could be removed in between and the |
| 768 | * request wouldn't fail until another card was inserted. |
| 769 | */ |
| 770 | spin_lock_bh(&host->lock); |
| 771 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 772 | if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) { |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 773 | spin_unlock_bh(&host->lock); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 774 | mrq->cmd->error = -ENOMEDIUM; |
| 775 | mmc_request_done(mmc, mrq); |
| 776 | return; |
| 777 | } |
| 778 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 779 | dw_mci_queue_request(host, slot, mrq); |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 780 | |
| 781 | spin_unlock_bh(&host->lock); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 782 | } |
| 783 | |
| 784 | static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
| 785 | { |
| 786 | struct dw_mci_slot *slot = mmc_priv(mmc); |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 787 | u32 regs; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 788 | |
| 789 | /* set default 1 bit mode */ |
| 790 | slot->ctype = SDMMC_CTYPE_1BIT; |
| 791 | |
| 792 | switch (ios->bus_width) { |
| 793 | case MMC_BUS_WIDTH_1: |
| 794 | slot->ctype = SDMMC_CTYPE_1BIT; |
| 795 | break; |
| 796 | case MMC_BUS_WIDTH_4: |
| 797 | slot->ctype = SDMMC_CTYPE_4BIT; |
| 798 | break; |
Jaehoon Chung | c9b2a06 | 2011-02-17 16:12:38 +0900 | [diff] [blame] | 799 | case MMC_BUS_WIDTH_8: |
| 800 | slot->ctype = SDMMC_CTYPE_8BIT; |
| 801 | break; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 802 | } |
| 803 | |
Seungwon Jeon | 3f51429 | 2012-01-02 16:00:02 +0900 | [diff] [blame] | 804 | regs = mci_readl(slot->host, UHS_REG); |
| 805 | |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 806 | /* DDR mode set */ |
Seungwon Jeon | 3f51429 | 2012-01-02 16:00:02 +0900 | [diff] [blame] | 807 | if (ios->timing == MMC_TIMING_UHS_DDR50) |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 808 | regs |= (0x1 << slot->id) << 16; |
Seungwon Jeon | 3f51429 | 2012-01-02 16:00:02 +0900 | [diff] [blame] | 809 | else |
| 810 | regs &= ~(0x1 << slot->id) << 16; |
| 811 | |
| 812 | mci_writel(slot->host, UHS_REG, regs); |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 813 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 814 | if (ios->clock) { |
| 815 | /* |
| 816 | * Use mirror of ios->clock to prevent race with mmc |
| 817 | * core ios update when finding the minimum. |
| 818 | */ |
| 819 | slot->clock = ios->clock; |
| 820 | } |
| 821 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 822 | if (slot->host->drv_data->set_ios) |
| 823 | slot->host->drv_data->set_ios(slot->host, ios); |
| 824 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 825 | switch (ios->power_mode) { |
| 826 | case MMC_POWER_UP: |
| 827 | set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags); |
| 828 | break; |
| 829 | default: |
| 830 | break; |
| 831 | } |
| 832 | } |
| 833 | |
| 834 | static int dw_mci_get_ro(struct mmc_host *mmc) |
| 835 | { |
| 836 | int read_only; |
| 837 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 838 | struct dw_mci_board *brd = slot->host->pdata; |
| 839 | |
| 840 | /* Use platform get_ro function, else try on board write protect */ |
Thomas Abraham | b4967aa | 2012-09-17 18:16:39 +0000 | [diff] [blame] | 841 | if (brd->quirks & DW_MCI_QUIRK_NO_WRITE_PROTECT) |
| 842 | read_only = 0; |
| 843 | else if (brd->get_ro) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 844 | read_only = brd->get_ro(slot->id); |
| 845 | else |
| 846 | read_only = |
| 847 | mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0; |
| 848 | |
| 849 | dev_dbg(&mmc->class_dev, "card is %s\n", |
| 850 | read_only ? "read-only" : "read-write"); |
| 851 | |
| 852 | return read_only; |
| 853 | } |
| 854 | |
| 855 | static int dw_mci_get_cd(struct mmc_host *mmc) |
| 856 | { |
| 857 | int present; |
| 858 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 859 | struct dw_mci_board *brd = slot->host->pdata; |
| 860 | |
| 861 | /* Use platform get_cd function, else try onboard card detect */ |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 862 | if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION) |
| 863 | present = 1; |
| 864 | else if (brd->get_cd) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 865 | present = !brd->get_cd(slot->id); |
| 866 | else |
| 867 | present = (mci_readl(slot->host, CDETECT) & (1 << slot->id)) |
| 868 | == 0 ? 1 : 0; |
| 869 | |
| 870 | if (present) |
| 871 | dev_dbg(&mmc->class_dev, "card is present\n"); |
| 872 | else |
| 873 | dev_dbg(&mmc->class_dev, "card is not present\n"); |
| 874 | |
| 875 | return present; |
| 876 | } |
| 877 | |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 878 | /* |
| 879 | * Disable lower power mode. |
| 880 | * |
| 881 | * Low power mode will stop the card clock when idle. According to the |
| 882 | * description of the CLKENA register we should disable low power mode |
| 883 | * for SDIO cards if we need SDIO interrupts to work. |
| 884 | * |
| 885 | * This function is fast if low power mode is already disabled. |
| 886 | */ |
| 887 | static void dw_mci_disable_low_power(struct dw_mci_slot *slot) |
| 888 | { |
| 889 | struct dw_mci *host = slot->host; |
| 890 | u32 clk_en_a; |
| 891 | const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id; |
| 892 | |
| 893 | clk_en_a = mci_readl(host, CLKENA); |
| 894 | |
| 895 | if (clk_en_a & clken_low_pwr) { |
| 896 | mci_writel(host, CLKENA, clk_en_a & ~clken_low_pwr); |
| 897 | mci_send_cmd(slot, SDMMC_CMD_UPD_CLK | |
| 898 | SDMMC_CMD_PRV_DAT_WAIT, 0); |
| 899 | } |
| 900 | } |
| 901 | |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 902 | static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb) |
| 903 | { |
| 904 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 905 | struct dw_mci *host = slot->host; |
| 906 | u32 int_mask; |
| 907 | |
| 908 | /* Enable/disable Slot Specific SDIO interrupt */ |
| 909 | int_mask = mci_readl(host, INTMASK); |
| 910 | if (enb) { |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 911 | /* |
| 912 | * Turn off low power mode if it was enabled. This is a bit of |
| 913 | * a heavy operation and we disable / enable IRQs a lot, so |
| 914 | * we'll leave low power mode disabled and it will get |
| 915 | * re-enabled again in dw_mci_setup_bus(). |
| 916 | */ |
| 917 | dw_mci_disable_low_power(slot); |
| 918 | |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 919 | mci_writel(host, INTMASK, |
Kyoungil Kim | 705ad04 | 2012-05-14 17:38:48 +0900 | [diff] [blame] | 920 | (int_mask | SDMMC_INT_SDIO(slot->id))); |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 921 | } else { |
| 922 | mci_writel(host, INTMASK, |
Kyoungil Kim | 705ad04 | 2012-05-14 17:38:48 +0900 | [diff] [blame] | 923 | (int_mask & ~SDMMC_INT_SDIO(slot->id))); |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 924 | } |
| 925 | } |
| 926 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 927 | static const struct mmc_host_ops dw_mci_ops = { |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 928 | .request = dw_mci_request, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 929 | .pre_req = dw_mci_pre_req, |
| 930 | .post_req = dw_mci_post_req, |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 931 | .set_ios = dw_mci_set_ios, |
| 932 | .get_ro = dw_mci_get_ro, |
| 933 | .get_cd = dw_mci_get_cd, |
| 934 | .enable_sdio_irq = dw_mci_enable_sdio_irq, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 935 | }; |
| 936 | |
| 937 | static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq) |
| 938 | __releases(&host->lock) |
| 939 | __acquires(&host->lock) |
| 940 | { |
| 941 | struct dw_mci_slot *slot; |
| 942 | struct mmc_host *prev_mmc = host->cur_slot->mmc; |
| 943 | |
| 944 | WARN_ON(host->cmd || host->data); |
| 945 | |
| 946 | host->cur_slot->mrq = NULL; |
| 947 | host->mrq = NULL; |
| 948 | if (!list_empty(&host->queue)) { |
| 949 | slot = list_entry(host->queue.next, |
| 950 | struct dw_mci_slot, queue_node); |
| 951 | list_del(&slot->queue_node); |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 952 | dev_vdbg(host->dev, "list not empty: %s is next\n", |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 953 | mmc_hostname(slot->mmc)); |
| 954 | host->state = STATE_SENDING_CMD; |
| 955 | dw_mci_start_request(host, slot); |
| 956 | } else { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 957 | dev_vdbg(host->dev, "list empty\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 958 | host->state = STATE_IDLE; |
| 959 | } |
| 960 | |
| 961 | spin_unlock(&host->lock); |
| 962 | mmc_request_done(prev_mmc, mrq); |
| 963 | spin_lock(&host->lock); |
| 964 | } |
| 965 | |
| 966 | static void dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd) |
| 967 | { |
| 968 | u32 status = host->cmd_status; |
| 969 | |
| 970 | host->cmd_status = 0; |
| 971 | |
| 972 | /* Read the response from the card (up to 16 bytes) */ |
| 973 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 974 | if (cmd->flags & MMC_RSP_136) { |
| 975 | cmd->resp[3] = mci_readl(host, RESP0); |
| 976 | cmd->resp[2] = mci_readl(host, RESP1); |
| 977 | cmd->resp[1] = mci_readl(host, RESP2); |
| 978 | cmd->resp[0] = mci_readl(host, RESP3); |
| 979 | } else { |
| 980 | cmd->resp[0] = mci_readl(host, RESP0); |
| 981 | cmd->resp[1] = 0; |
| 982 | cmd->resp[2] = 0; |
| 983 | cmd->resp[3] = 0; |
| 984 | } |
| 985 | } |
| 986 | |
| 987 | if (status & SDMMC_INT_RTO) |
| 988 | cmd->error = -ETIMEDOUT; |
| 989 | else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC)) |
| 990 | cmd->error = -EILSEQ; |
| 991 | else if (status & SDMMC_INT_RESP_ERR) |
| 992 | cmd->error = -EIO; |
| 993 | else |
| 994 | cmd->error = 0; |
| 995 | |
| 996 | if (cmd->error) { |
| 997 | /* newer ip versions need a delay between retries */ |
| 998 | if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY) |
| 999 | mdelay(20); |
| 1000 | |
| 1001 | if (cmd->data) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1002 | dw_mci_stop_dma(host); |
Seungwon Jeon | fda5f73 | 2012-05-22 13:01:13 +0900 | [diff] [blame] | 1003 | host->data = NULL; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1004 | } |
| 1005 | } |
| 1006 | } |
| 1007 | |
| 1008 | static void dw_mci_tasklet_func(unsigned long priv) |
| 1009 | { |
| 1010 | struct dw_mci *host = (struct dw_mci *)priv; |
| 1011 | struct mmc_data *data; |
| 1012 | struct mmc_command *cmd; |
| 1013 | enum dw_mci_state state; |
| 1014 | enum dw_mci_state prev_state; |
James Hogan | 94dd5b3 | 2011-06-29 09:30:47 +0100 | [diff] [blame] | 1015 | u32 status, ctrl; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1016 | |
| 1017 | spin_lock(&host->lock); |
| 1018 | |
| 1019 | state = host->state; |
| 1020 | data = host->data; |
| 1021 | |
| 1022 | do { |
| 1023 | prev_state = state; |
| 1024 | |
| 1025 | switch (state) { |
| 1026 | case STATE_IDLE: |
| 1027 | break; |
| 1028 | |
| 1029 | case STATE_SENDING_CMD: |
| 1030 | if (!test_and_clear_bit(EVENT_CMD_COMPLETE, |
| 1031 | &host->pending_events)) |
| 1032 | break; |
| 1033 | |
| 1034 | cmd = host->cmd; |
| 1035 | host->cmd = NULL; |
| 1036 | set_bit(EVENT_CMD_COMPLETE, &host->completed_events); |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 1037 | dw_mci_command_complete(host, cmd); |
| 1038 | if (cmd == host->mrq->sbc && !cmd->error) { |
| 1039 | prev_state = state = STATE_SENDING_CMD; |
| 1040 | __dw_mci_start_request(host, host->cur_slot, |
| 1041 | host->mrq->cmd); |
| 1042 | goto unlock; |
| 1043 | } |
| 1044 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1045 | if (!host->mrq->data || cmd->error) { |
| 1046 | dw_mci_request_end(host, host->mrq); |
| 1047 | goto unlock; |
| 1048 | } |
| 1049 | |
| 1050 | prev_state = state = STATE_SENDING_DATA; |
| 1051 | /* fall through */ |
| 1052 | |
| 1053 | case STATE_SENDING_DATA: |
| 1054 | if (test_and_clear_bit(EVENT_DATA_ERROR, |
| 1055 | &host->pending_events)) { |
| 1056 | dw_mci_stop_dma(host); |
| 1057 | if (data->stop) |
| 1058 | send_stop_cmd(host, data); |
| 1059 | state = STATE_DATA_ERROR; |
| 1060 | break; |
| 1061 | } |
| 1062 | |
| 1063 | if (!test_and_clear_bit(EVENT_XFER_COMPLETE, |
| 1064 | &host->pending_events)) |
| 1065 | break; |
| 1066 | |
| 1067 | set_bit(EVENT_XFER_COMPLETE, &host->completed_events); |
| 1068 | prev_state = state = STATE_DATA_BUSY; |
| 1069 | /* fall through */ |
| 1070 | |
| 1071 | case STATE_DATA_BUSY: |
| 1072 | if (!test_and_clear_bit(EVENT_DATA_COMPLETE, |
| 1073 | &host->pending_events)) |
| 1074 | break; |
| 1075 | |
| 1076 | host->data = NULL; |
| 1077 | set_bit(EVENT_DATA_COMPLETE, &host->completed_events); |
| 1078 | status = host->data_status; |
| 1079 | |
| 1080 | if (status & DW_MCI_DATA_ERROR_FLAGS) { |
| 1081 | if (status & SDMMC_INT_DTO) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1082 | data->error = -ETIMEDOUT; |
| 1083 | } else if (status & SDMMC_INT_DCRC) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1084 | data->error = -EILSEQ; |
James Hogan | 55c5efbc | 2011-06-29 09:29:58 +0100 | [diff] [blame] | 1085 | } else if (status & SDMMC_INT_EBE && |
| 1086 | host->dir_status == |
| 1087 | DW_MCI_SEND_STATUS) { |
| 1088 | /* |
| 1089 | * No data CRC status was returned. |
| 1090 | * The number of bytes transferred will |
| 1091 | * be exaggerated in PIO mode. |
| 1092 | */ |
| 1093 | data->bytes_xfered = 0; |
| 1094 | data->error = -ETIMEDOUT; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1095 | } else { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1096 | dev_err(host->dev, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1097 | "data FIFO error " |
| 1098 | "(status=%08x)\n", |
| 1099 | status); |
| 1100 | data->error = -EIO; |
| 1101 | } |
James Hogan | 94dd5b3 | 2011-06-29 09:30:47 +0100 | [diff] [blame] | 1102 | /* |
| 1103 | * After an error, there may be data lingering |
| 1104 | * in the FIFO, so reset it - doing so |
| 1105 | * generates a block interrupt, hence setting |
| 1106 | * the scatter-gather pointer to NULL. |
| 1107 | */ |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1108 | sg_miter_stop(&host->sg_miter); |
James Hogan | 94dd5b3 | 2011-06-29 09:30:47 +0100 | [diff] [blame] | 1109 | host->sg = NULL; |
| 1110 | ctrl = mci_readl(host, CTRL); |
| 1111 | ctrl |= SDMMC_CTRL_FIFO_RESET; |
| 1112 | mci_writel(host, CTRL, ctrl); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1113 | } else { |
| 1114 | data->bytes_xfered = data->blocks * data->blksz; |
| 1115 | data->error = 0; |
| 1116 | } |
| 1117 | |
| 1118 | if (!data->stop) { |
| 1119 | dw_mci_request_end(host, host->mrq); |
| 1120 | goto unlock; |
| 1121 | } |
| 1122 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 1123 | if (host->mrq->sbc && !data->error) { |
| 1124 | data->stop->error = 0; |
| 1125 | dw_mci_request_end(host, host->mrq); |
| 1126 | goto unlock; |
| 1127 | } |
| 1128 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1129 | prev_state = state = STATE_SENDING_STOP; |
| 1130 | if (!data->error) |
| 1131 | send_stop_cmd(host, data); |
| 1132 | /* fall through */ |
| 1133 | |
| 1134 | case STATE_SENDING_STOP: |
| 1135 | if (!test_and_clear_bit(EVENT_CMD_COMPLETE, |
| 1136 | &host->pending_events)) |
| 1137 | break; |
| 1138 | |
| 1139 | host->cmd = NULL; |
| 1140 | dw_mci_command_complete(host, host->mrq->stop); |
| 1141 | dw_mci_request_end(host, host->mrq); |
| 1142 | goto unlock; |
| 1143 | |
| 1144 | case STATE_DATA_ERROR: |
| 1145 | if (!test_and_clear_bit(EVENT_XFER_COMPLETE, |
| 1146 | &host->pending_events)) |
| 1147 | break; |
| 1148 | |
| 1149 | state = STATE_DATA_BUSY; |
| 1150 | break; |
| 1151 | } |
| 1152 | } while (state != prev_state); |
| 1153 | |
| 1154 | host->state = state; |
| 1155 | unlock: |
| 1156 | spin_unlock(&host->lock); |
| 1157 | |
| 1158 | } |
| 1159 | |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1160 | /* push final bytes to part_buf, only use during push */ |
| 1161 | static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1162 | { |
| 1163 | memcpy((void *)&host->part_buf, buf, cnt); |
| 1164 | host->part_buf_count = cnt; |
| 1165 | } |
| 1166 | |
| 1167 | /* append bytes to part_buf, only use during push */ |
| 1168 | static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1169 | { |
| 1170 | cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count); |
| 1171 | memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt); |
| 1172 | host->part_buf_count += cnt; |
| 1173 | return cnt; |
| 1174 | } |
| 1175 | |
| 1176 | /* pull first bytes from part_buf, only use during pull */ |
| 1177 | static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1178 | { |
| 1179 | cnt = min(cnt, (int)host->part_buf_count); |
| 1180 | if (cnt) { |
| 1181 | memcpy(buf, (void *)&host->part_buf + host->part_buf_start, |
| 1182 | cnt); |
| 1183 | host->part_buf_count -= cnt; |
| 1184 | host->part_buf_start += cnt; |
| 1185 | } |
| 1186 | return cnt; |
| 1187 | } |
| 1188 | |
| 1189 | /* pull final bytes from the part_buf, assuming it's just been filled */ |
| 1190 | static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1191 | { |
| 1192 | memcpy(buf, &host->part_buf, cnt); |
| 1193 | host->part_buf_start = cnt; |
| 1194 | host->part_buf_count = (1 << host->data_shift) - cnt; |
| 1195 | } |
| 1196 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1197 | static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt) |
| 1198 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1199 | /* try and push anything in the part_buf */ |
| 1200 | if (unlikely(host->part_buf_count)) { |
| 1201 | int len = dw_mci_push_part_bytes(host, buf, cnt); |
| 1202 | buf += len; |
| 1203 | cnt -= len; |
| 1204 | if (!sg_next(host->sg) || host->part_buf_count == 2) { |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1205 | mci_writew(host, DATA(host->data_offset), |
| 1206 | host->part_buf16); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1207 | host->part_buf_count = 0; |
| 1208 | } |
| 1209 | } |
| 1210 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1211 | if (unlikely((unsigned long)buf & 0x1)) { |
| 1212 | while (cnt >= 2) { |
| 1213 | u16 aligned_buf[64]; |
| 1214 | int len = min(cnt & -2, (int)sizeof(aligned_buf)); |
| 1215 | int items = len >> 1; |
| 1216 | int i; |
| 1217 | /* memcpy from input buffer into aligned buffer */ |
| 1218 | memcpy(aligned_buf, buf, len); |
| 1219 | buf += len; |
| 1220 | cnt -= len; |
| 1221 | /* push data from aligned buffer into fifo */ |
| 1222 | for (i = 0; i < items; ++i) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1223 | mci_writew(host, DATA(host->data_offset), |
| 1224 | aligned_buf[i]); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1225 | } |
| 1226 | } else |
| 1227 | #endif |
| 1228 | { |
| 1229 | u16 *pdata = buf; |
| 1230 | for (; cnt >= 2; cnt -= 2) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1231 | mci_writew(host, DATA(host->data_offset), *pdata++); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1232 | buf = pdata; |
| 1233 | } |
| 1234 | /* put anything remaining in the part_buf */ |
| 1235 | if (cnt) { |
| 1236 | dw_mci_set_part_bytes(host, buf, cnt); |
| 1237 | if (!sg_next(host->sg)) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1238 | mci_writew(host, DATA(host->data_offset), |
| 1239 | host->part_buf16); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1240 | } |
| 1241 | } |
| 1242 | |
| 1243 | static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt) |
| 1244 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1245 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1246 | if (unlikely((unsigned long)buf & 0x1)) { |
| 1247 | while (cnt >= 2) { |
| 1248 | /* pull data from fifo into aligned buffer */ |
| 1249 | u16 aligned_buf[64]; |
| 1250 | int len = min(cnt & -2, (int)sizeof(aligned_buf)); |
| 1251 | int items = len >> 1; |
| 1252 | int i; |
| 1253 | for (i = 0; i < items; ++i) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1254 | aligned_buf[i] = mci_readw(host, |
| 1255 | DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1256 | /* memcpy from aligned buffer into output buffer */ |
| 1257 | memcpy(buf, aligned_buf, len); |
| 1258 | buf += len; |
| 1259 | cnt -= len; |
| 1260 | } |
| 1261 | } else |
| 1262 | #endif |
| 1263 | { |
| 1264 | u16 *pdata = buf; |
| 1265 | for (; cnt >= 2; cnt -= 2) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1266 | *pdata++ = mci_readw(host, DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1267 | buf = pdata; |
| 1268 | } |
| 1269 | if (cnt) { |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1270 | host->part_buf16 = mci_readw(host, DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1271 | dw_mci_pull_final_bytes(host, buf, cnt); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1272 | } |
| 1273 | } |
| 1274 | |
| 1275 | static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt) |
| 1276 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1277 | /* try and push anything in the part_buf */ |
| 1278 | if (unlikely(host->part_buf_count)) { |
| 1279 | int len = dw_mci_push_part_bytes(host, buf, cnt); |
| 1280 | buf += len; |
| 1281 | cnt -= len; |
| 1282 | if (!sg_next(host->sg) || host->part_buf_count == 4) { |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1283 | mci_writel(host, DATA(host->data_offset), |
| 1284 | host->part_buf32); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1285 | host->part_buf_count = 0; |
| 1286 | } |
| 1287 | } |
| 1288 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1289 | if (unlikely((unsigned long)buf & 0x3)) { |
| 1290 | while (cnt >= 4) { |
| 1291 | u32 aligned_buf[32]; |
| 1292 | int len = min(cnt & -4, (int)sizeof(aligned_buf)); |
| 1293 | int items = len >> 2; |
| 1294 | int i; |
| 1295 | /* memcpy from input buffer into aligned buffer */ |
| 1296 | memcpy(aligned_buf, buf, len); |
| 1297 | buf += len; |
| 1298 | cnt -= len; |
| 1299 | /* push data from aligned buffer into fifo */ |
| 1300 | for (i = 0; i < items; ++i) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1301 | mci_writel(host, DATA(host->data_offset), |
| 1302 | aligned_buf[i]); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1303 | } |
| 1304 | } else |
| 1305 | #endif |
| 1306 | { |
| 1307 | u32 *pdata = buf; |
| 1308 | for (; cnt >= 4; cnt -= 4) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1309 | mci_writel(host, DATA(host->data_offset), *pdata++); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1310 | buf = pdata; |
| 1311 | } |
| 1312 | /* put anything remaining in the part_buf */ |
| 1313 | if (cnt) { |
| 1314 | dw_mci_set_part_bytes(host, buf, cnt); |
| 1315 | if (!sg_next(host->sg)) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1316 | mci_writel(host, DATA(host->data_offset), |
| 1317 | host->part_buf32); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1318 | } |
| 1319 | } |
| 1320 | |
| 1321 | static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt) |
| 1322 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1323 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1324 | if (unlikely((unsigned long)buf & 0x3)) { |
| 1325 | while (cnt >= 4) { |
| 1326 | /* pull data from fifo into aligned buffer */ |
| 1327 | u32 aligned_buf[32]; |
| 1328 | int len = min(cnt & -4, (int)sizeof(aligned_buf)); |
| 1329 | int items = len >> 2; |
| 1330 | int i; |
| 1331 | for (i = 0; i < items; ++i) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1332 | aligned_buf[i] = mci_readl(host, |
| 1333 | DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1334 | /* memcpy from aligned buffer into output buffer */ |
| 1335 | memcpy(buf, aligned_buf, len); |
| 1336 | buf += len; |
| 1337 | cnt -= len; |
| 1338 | } |
| 1339 | } else |
| 1340 | #endif |
| 1341 | { |
| 1342 | u32 *pdata = buf; |
| 1343 | for (; cnt >= 4; cnt -= 4) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1344 | *pdata++ = mci_readl(host, DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1345 | buf = pdata; |
| 1346 | } |
| 1347 | if (cnt) { |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1348 | host->part_buf32 = mci_readl(host, DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1349 | dw_mci_pull_final_bytes(host, buf, cnt); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1350 | } |
| 1351 | } |
| 1352 | |
| 1353 | static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt) |
| 1354 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1355 | /* try and push anything in the part_buf */ |
| 1356 | if (unlikely(host->part_buf_count)) { |
| 1357 | int len = dw_mci_push_part_bytes(host, buf, cnt); |
| 1358 | buf += len; |
| 1359 | cnt -= len; |
| 1360 | if (!sg_next(host->sg) || host->part_buf_count == 8) { |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1361 | mci_writew(host, DATA(host->data_offset), |
| 1362 | host->part_buf); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1363 | host->part_buf_count = 0; |
| 1364 | } |
| 1365 | } |
| 1366 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1367 | if (unlikely((unsigned long)buf & 0x7)) { |
| 1368 | while (cnt >= 8) { |
| 1369 | u64 aligned_buf[16]; |
| 1370 | int len = min(cnt & -8, (int)sizeof(aligned_buf)); |
| 1371 | int items = len >> 3; |
| 1372 | int i; |
| 1373 | /* memcpy from input buffer into aligned buffer */ |
| 1374 | memcpy(aligned_buf, buf, len); |
| 1375 | buf += len; |
| 1376 | cnt -= len; |
| 1377 | /* push data from aligned buffer into fifo */ |
| 1378 | for (i = 0; i < items; ++i) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1379 | mci_writeq(host, DATA(host->data_offset), |
| 1380 | aligned_buf[i]); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1381 | } |
| 1382 | } else |
| 1383 | #endif |
| 1384 | { |
| 1385 | u64 *pdata = buf; |
| 1386 | for (; cnt >= 8; cnt -= 8) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1387 | mci_writeq(host, DATA(host->data_offset), *pdata++); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1388 | buf = pdata; |
| 1389 | } |
| 1390 | /* put anything remaining in the part_buf */ |
| 1391 | if (cnt) { |
| 1392 | dw_mci_set_part_bytes(host, buf, cnt); |
| 1393 | if (!sg_next(host->sg)) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1394 | mci_writeq(host, DATA(host->data_offset), |
| 1395 | host->part_buf); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1396 | } |
| 1397 | } |
| 1398 | |
| 1399 | static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt) |
| 1400 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1401 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1402 | if (unlikely((unsigned long)buf & 0x7)) { |
| 1403 | while (cnt >= 8) { |
| 1404 | /* pull data from fifo into aligned buffer */ |
| 1405 | u64 aligned_buf[16]; |
| 1406 | int len = min(cnt & -8, (int)sizeof(aligned_buf)); |
| 1407 | int items = len >> 3; |
| 1408 | int i; |
| 1409 | for (i = 0; i < items; ++i) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1410 | aligned_buf[i] = mci_readq(host, |
| 1411 | DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1412 | /* memcpy from aligned buffer into output buffer */ |
| 1413 | memcpy(buf, aligned_buf, len); |
| 1414 | buf += len; |
| 1415 | cnt -= len; |
| 1416 | } |
| 1417 | } else |
| 1418 | #endif |
| 1419 | { |
| 1420 | u64 *pdata = buf; |
| 1421 | for (; cnt >= 8; cnt -= 8) |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1422 | *pdata++ = mci_readq(host, DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1423 | buf = pdata; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1424 | } |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1425 | if (cnt) { |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 1426 | host->part_buf = mci_readq(host, DATA(host->data_offset)); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1427 | dw_mci_pull_final_bytes(host, buf, cnt); |
| 1428 | } |
| 1429 | } |
| 1430 | |
| 1431 | static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt) |
| 1432 | { |
| 1433 | int len; |
| 1434 | |
| 1435 | /* get remaining partial bytes */ |
| 1436 | len = dw_mci_pull_part_bytes(host, buf, cnt); |
| 1437 | if (unlikely(len == cnt)) |
| 1438 | return; |
| 1439 | buf += len; |
| 1440 | cnt -= len; |
| 1441 | |
| 1442 | /* get the rest of the data */ |
| 1443 | host->pull_data(host, buf, cnt); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1444 | } |
| 1445 | |
| 1446 | static void dw_mci_read_data_pio(struct dw_mci *host) |
| 1447 | { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1448 | struct sg_mapping_iter *sg_miter = &host->sg_miter; |
| 1449 | void *buf; |
| 1450 | unsigned int offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1451 | struct mmc_data *data = host->data; |
| 1452 | int shift = host->data_shift; |
| 1453 | u32 status; |
Chris Ball | ba6a902 | 2011-02-28 16:45:10 -0500 | [diff] [blame] | 1454 | unsigned int nbytes = 0, len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1455 | unsigned int remain, fcnt; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1456 | |
| 1457 | do { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1458 | if (!sg_miter_next(sg_miter)) |
| 1459 | goto done; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1460 | |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1461 | host->sg = sg_miter->__sg; |
| 1462 | buf = sg_miter->addr; |
| 1463 | remain = sg_miter->length; |
| 1464 | offset = 0; |
| 1465 | |
| 1466 | do { |
| 1467 | fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS)) |
| 1468 | << shift) + host->part_buf_count; |
| 1469 | len = min(remain, fcnt); |
| 1470 | if (!len) |
| 1471 | break; |
| 1472 | dw_mci_pull_data(host, (void *)(buf + offset), len); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1473 | offset += len; |
| 1474 | nbytes += len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1475 | remain -= len; |
| 1476 | } while (remain); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1477 | |
Seungwon Jeon | e74f3a9 | 2012-08-01 09:30:46 +0900 | [diff] [blame] | 1478 | sg_miter->consumed = offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1479 | status = mci_readl(host, MINTSTS); |
| 1480 | mci_writel(host, RINTSTS, SDMMC_INT_RXDR); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1481 | } while (status & SDMMC_INT_RXDR); /*if the RXDR is ready read again*/ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1482 | data->bytes_xfered += nbytes; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1483 | |
| 1484 | if (!remain) { |
| 1485 | if (!sg_miter_next(sg_miter)) |
| 1486 | goto done; |
| 1487 | sg_miter->consumed = 0; |
| 1488 | } |
| 1489 | sg_miter_stop(sg_miter); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1490 | return; |
| 1491 | |
| 1492 | done: |
| 1493 | data->bytes_xfered += nbytes; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1494 | sg_miter_stop(sg_miter); |
| 1495 | host->sg = NULL; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1496 | smp_wmb(); |
| 1497 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 1498 | } |
| 1499 | |
| 1500 | static void dw_mci_write_data_pio(struct dw_mci *host) |
| 1501 | { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1502 | struct sg_mapping_iter *sg_miter = &host->sg_miter; |
| 1503 | void *buf; |
| 1504 | unsigned int offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1505 | struct mmc_data *data = host->data; |
| 1506 | int shift = host->data_shift; |
| 1507 | u32 status; |
| 1508 | unsigned int nbytes = 0, len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1509 | unsigned int fifo_depth = host->fifo_depth; |
| 1510 | unsigned int remain, fcnt; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1511 | |
| 1512 | do { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1513 | if (!sg_miter_next(sg_miter)) |
| 1514 | goto done; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1515 | |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1516 | host->sg = sg_miter->__sg; |
| 1517 | buf = sg_miter->addr; |
| 1518 | remain = sg_miter->length; |
| 1519 | offset = 0; |
| 1520 | |
| 1521 | do { |
| 1522 | fcnt = ((fifo_depth - |
| 1523 | SDMMC_GET_FCNT(mci_readl(host, STATUS))) |
| 1524 | << shift) - host->part_buf_count; |
| 1525 | len = min(remain, fcnt); |
| 1526 | if (!len) |
| 1527 | break; |
| 1528 | host->push_data(host, (void *)(buf + offset), len); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1529 | offset += len; |
| 1530 | nbytes += len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1531 | remain -= len; |
| 1532 | } while (remain); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1533 | |
Seungwon Jeon | e74f3a9 | 2012-08-01 09:30:46 +0900 | [diff] [blame] | 1534 | sg_miter->consumed = offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1535 | status = mci_readl(host, MINTSTS); |
| 1536 | mci_writel(host, RINTSTS, SDMMC_INT_TXDR); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1537 | } while (status & SDMMC_INT_TXDR); /* if TXDR write again */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1538 | data->bytes_xfered += nbytes; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1539 | |
| 1540 | if (!remain) { |
| 1541 | if (!sg_miter_next(sg_miter)) |
| 1542 | goto done; |
| 1543 | sg_miter->consumed = 0; |
| 1544 | } |
| 1545 | sg_miter_stop(sg_miter); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1546 | return; |
| 1547 | |
| 1548 | done: |
| 1549 | data->bytes_xfered += nbytes; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1550 | sg_miter_stop(sg_miter); |
| 1551 | host->sg = NULL; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1552 | smp_wmb(); |
| 1553 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 1554 | } |
| 1555 | |
| 1556 | static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status) |
| 1557 | { |
| 1558 | if (!host->cmd_status) |
| 1559 | host->cmd_status = status; |
| 1560 | |
| 1561 | smp_wmb(); |
| 1562 | |
| 1563 | set_bit(EVENT_CMD_COMPLETE, &host->pending_events); |
| 1564 | tasklet_schedule(&host->tasklet); |
| 1565 | } |
| 1566 | |
| 1567 | static irqreturn_t dw_mci_interrupt(int irq, void *dev_id) |
| 1568 | { |
| 1569 | struct dw_mci *host = dev_id; |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 1570 | u32 pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1571 | unsigned int pass_count = 0; |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1572 | int i; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1573 | |
| 1574 | do { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1575 | pending = mci_readl(host, MINTSTS); /* read-only mask reg */ |
| 1576 | |
| 1577 | /* |
| 1578 | * DTO fix - version 2.10a and below, and only if internal DMA |
| 1579 | * is configured. |
| 1580 | */ |
| 1581 | if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) { |
| 1582 | if (!pending && |
| 1583 | ((mci_readl(host, STATUS) >> 17) & 0x1fff)) |
| 1584 | pending |= SDMMC_INT_DATA_OVER; |
| 1585 | } |
| 1586 | |
| 1587 | if (!pending) |
| 1588 | break; |
| 1589 | |
| 1590 | if (pending & DW_MCI_CMD_ERROR_FLAGS) { |
| 1591 | mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS); |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 1592 | host->cmd_status = pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1593 | smp_wmb(); |
| 1594 | set_bit(EVENT_CMD_COMPLETE, &host->pending_events); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1595 | } |
| 1596 | |
| 1597 | if (pending & DW_MCI_DATA_ERROR_FLAGS) { |
| 1598 | /* if there is an error report DATA_ERROR */ |
| 1599 | mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS); |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 1600 | host->data_status = pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1601 | smp_wmb(); |
| 1602 | set_bit(EVENT_DATA_ERROR, &host->pending_events); |
Seungwon Jeon | 9b2026a | 2012-08-01 09:30:40 +0900 | [diff] [blame] | 1603 | tasklet_schedule(&host->tasklet); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1604 | } |
| 1605 | |
| 1606 | if (pending & SDMMC_INT_DATA_OVER) { |
| 1607 | mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER); |
| 1608 | if (!host->data_status) |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 1609 | host->data_status = pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1610 | smp_wmb(); |
| 1611 | if (host->dir_status == DW_MCI_RECV_STATUS) { |
| 1612 | if (host->sg != NULL) |
| 1613 | dw_mci_read_data_pio(host); |
| 1614 | } |
| 1615 | set_bit(EVENT_DATA_COMPLETE, &host->pending_events); |
| 1616 | tasklet_schedule(&host->tasklet); |
| 1617 | } |
| 1618 | |
| 1619 | if (pending & SDMMC_INT_RXDR) { |
| 1620 | mci_writel(host, RINTSTS, SDMMC_INT_RXDR); |
James Hogan | b40af3a | 2011-06-24 13:54:06 +0100 | [diff] [blame] | 1621 | if (host->dir_status == DW_MCI_RECV_STATUS && host->sg) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1622 | dw_mci_read_data_pio(host); |
| 1623 | } |
| 1624 | |
| 1625 | if (pending & SDMMC_INT_TXDR) { |
| 1626 | mci_writel(host, RINTSTS, SDMMC_INT_TXDR); |
James Hogan | b40af3a | 2011-06-24 13:54:06 +0100 | [diff] [blame] | 1627 | if (host->dir_status == DW_MCI_SEND_STATUS && host->sg) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1628 | dw_mci_write_data_pio(host); |
| 1629 | } |
| 1630 | |
| 1631 | if (pending & SDMMC_INT_CMD_DONE) { |
| 1632 | mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE); |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 1633 | dw_mci_cmd_interrupt(host, pending); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1634 | } |
| 1635 | |
| 1636 | if (pending & SDMMC_INT_CD) { |
| 1637 | mci_writel(host, RINTSTS, SDMMC_INT_CD); |
Thomas Abraham | 95dcc2c | 2012-05-01 14:57:36 -0700 | [diff] [blame] | 1638 | queue_work(host->card_workqueue, &host->card_work); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1639 | } |
| 1640 | |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1641 | /* Handle SDIO Interrupts */ |
| 1642 | for (i = 0; i < host->num_slots; i++) { |
| 1643 | struct dw_mci_slot *slot = host->slot[i]; |
| 1644 | if (pending & SDMMC_INT_SDIO(i)) { |
| 1645 | mci_writel(host, RINTSTS, SDMMC_INT_SDIO(i)); |
| 1646 | mmc_signal_sdio_irq(slot->mmc); |
| 1647 | } |
| 1648 | } |
| 1649 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1650 | } while (pass_count++ < 5); |
| 1651 | |
| 1652 | #ifdef CONFIG_MMC_DW_IDMAC |
| 1653 | /* Handle DMA interrupts */ |
| 1654 | pending = mci_readl(host, IDSTS); |
| 1655 | if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) { |
| 1656 | mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI); |
| 1657 | mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1658 | host->dma_ops->complete(host); |
| 1659 | } |
| 1660 | #endif |
| 1661 | |
| 1662 | return IRQ_HANDLED; |
| 1663 | } |
| 1664 | |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 1665 | static void dw_mci_work_routine_card(struct work_struct *work) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1666 | { |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 1667 | struct dw_mci *host = container_of(work, struct dw_mci, card_work); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1668 | int i; |
| 1669 | |
| 1670 | for (i = 0; i < host->num_slots; i++) { |
| 1671 | struct dw_mci_slot *slot = host->slot[i]; |
| 1672 | struct mmc_host *mmc = slot->mmc; |
| 1673 | struct mmc_request *mrq; |
| 1674 | int present; |
| 1675 | u32 ctrl; |
| 1676 | |
| 1677 | present = dw_mci_get_cd(mmc); |
| 1678 | while (present != slot->last_detect_state) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1679 | dev_dbg(&slot->mmc->class_dev, "card %s\n", |
| 1680 | present ? "inserted" : "removed"); |
| 1681 | |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 1682 | /* Power up slot (before spin_lock, may sleep) */ |
| 1683 | if (present != 0 && host->pdata->setpower) |
| 1684 | host->pdata->setpower(slot->id, mmc->ocr_avail); |
| 1685 | |
| 1686 | spin_lock_bh(&host->lock); |
| 1687 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1688 | /* Card change detected */ |
| 1689 | slot->last_detect_state = present; |
| 1690 | |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 1691 | /* Mark card as present if applicable */ |
| 1692 | if (present != 0) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1693 | set_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1694 | |
| 1695 | /* Clean up queue if present */ |
| 1696 | mrq = slot->mrq; |
| 1697 | if (mrq) { |
| 1698 | if (mrq == host->mrq) { |
| 1699 | host->data = NULL; |
| 1700 | host->cmd = NULL; |
| 1701 | |
| 1702 | switch (host->state) { |
| 1703 | case STATE_IDLE: |
| 1704 | break; |
| 1705 | case STATE_SENDING_CMD: |
| 1706 | mrq->cmd->error = -ENOMEDIUM; |
| 1707 | if (!mrq->data) |
| 1708 | break; |
| 1709 | /* fall through */ |
| 1710 | case STATE_SENDING_DATA: |
| 1711 | mrq->data->error = -ENOMEDIUM; |
| 1712 | dw_mci_stop_dma(host); |
| 1713 | break; |
| 1714 | case STATE_DATA_BUSY: |
| 1715 | case STATE_DATA_ERROR: |
| 1716 | if (mrq->data->error == -EINPROGRESS) |
| 1717 | mrq->data->error = -ENOMEDIUM; |
| 1718 | if (!mrq->stop) |
| 1719 | break; |
| 1720 | /* fall through */ |
| 1721 | case STATE_SENDING_STOP: |
| 1722 | mrq->stop->error = -ENOMEDIUM; |
| 1723 | break; |
| 1724 | } |
| 1725 | |
| 1726 | dw_mci_request_end(host, mrq); |
| 1727 | } else { |
| 1728 | list_del(&slot->queue_node); |
| 1729 | mrq->cmd->error = -ENOMEDIUM; |
| 1730 | if (mrq->data) |
| 1731 | mrq->data->error = -ENOMEDIUM; |
| 1732 | if (mrq->stop) |
| 1733 | mrq->stop->error = -ENOMEDIUM; |
| 1734 | |
| 1735 | spin_unlock(&host->lock); |
| 1736 | mmc_request_done(slot->mmc, mrq); |
| 1737 | spin_lock(&host->lock); |
| 1738 | } |
| 1739 | } |
| 1740 | |
| 1741 | /* Power down slot */ |
| 1742 | if (present == 0) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1743 | clear_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
| 1744 | |
| 1745 | /* |
| 1746 | * Clear down the FIFO - doing so generates a |
| 1747 | * block interrupt, hence setting the |
| 1748 | * scatter-gather pointer to NULL. |
| 1749 | */ |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 1750 | sg_miter_stop(&host->sg_miter); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1751 | host->sg = NULL; |
| 1752 | |
| 1753 | ctrl = mci_readl(host, CTRL); |
| 1754 | ctrl |= SDMMC_CTRL_FIFO_RESET; |
| 1755 | mci_writel(host, CTRL, ctrl); |
| 1756 | |
| 1757 | #ifdef CONFIG_MMC_DW_IDMAC |
| 1758 | ctrl = mci_readl(host, BMOD); |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 1759 | /* Software reset of DMA */ |
| 1760 | ctrl |= SDMMC_IDMAC_SWRESET; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1761 | mci_writel(host, BMOD, ctrl); |
| 1762 | #endif |
| 1763 | |
| 1764 | } |
| 1765 | |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 1766 | spin_unlock_bh(&host->lock); |
| 1767 | |
| 1768 | /* Power down slot (after spin_unlock, may sleep) */ |
| 1769 | if (present == 0 && host->pdata->setpower) |
| 1770 | host->pdata->setpower(slot->id, 0); |
| 1771 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1772 | present = dw_mci_get_cd(mmc); |
| 1773 | } |
| 1774 | |
| 1775 | mmc_detect_change(slot->mmc, |
| 1776 | msecs_to_jiffies(host->pdata->detect_delay_ms)); |
| 1777 | } |
| 1778 | } |
| 1779 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 1780 | #ifdef CONFIG_OF |
| 1781 | /* given a slot id, find out the device node representing that slot */ |
| 1782 | static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot) |
| 1783 | { |
| 1784 | struct device_node *np; |
| 1785 | const __be32 *addr; |
| 1786 | int len; |
| 1787 | |
| 1788 | if (!dev || !dev->of_node) |
| 1789 | return NULL; |
| 1790 | |
| 1791 | for_each_child_of_node(dev->of_node, np) { |
| 1792 | addr = of_get_property(np, "reg", &len); |
| 1793 | if (!addr || (len < sizeof(int))) |
| 1794 | continue; |
| 1795 | if (be32_to_cpup(addr) == slot) |
| 1796 | return np; |
| 1797 | } |
| 1798 | return NULL; |
| 1799 | } |
| 1800 | |
| 1801 | /* find out bus-width for a given slot */ |
| 1802 | static u32 dw_mci_of_get_bus_wd(struct device *dev, u8 slot) |
| 1803 | { |
| 1804 | struct device_node *np = dw_mci_of_find_slot_node(dev, slot); |
| 1805 | u32 bus_wd = 1; |
| 1806 | |
| 1807 | if (!np) |
| 1808 | return 1; |
| 1809 | |
| 1810 | if (of_property_read_u32(np, "bus-width", &bus_wd)) |
| 1811 | dev_err(dev, "bus-width property not found, assuming width" |
| 1812 | " as 1\n"); |
| 1813 | return bus_wd; |
| 1814 | } |
| 1815 | #else /* CONFIG_OF */ |
| 1816 | static u32 dw_mci_of_get_bus_wd(struct device *dev, u8 slot) |
| 1817 | { |
| 1818 | return 1; |
| 1819 | } |
| 1820 | static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot) |
| 1821 | { |
| 1822 | return NULL; |
| 1823 | } |
| 1824 | #endif /* CONFIG_OF */ |
| 1825 | |
Jaehoon Chung | 36c179a | 2012-08-23 20:31:48 +0900 | [diff] [blame] | 1826 | static int dw_mci_init_slot(struct dw_mci *host, unsigned int id) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1827 | { |
| 1828 | struct mmc_host *mmc; |
| 1829 | struct dw_mci_slot *slot; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 1830 | int ctrl_id, ret; |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 1831 | u8 bus_width; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1832 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1833 | mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1834 | if (!mmc) |
| 1835 | return -ENOMEM; |
| 1836 | |
| 1837 | slot = mmc_priv(mmc); |
| 1838 | slot->id = id; |
| 1839 | slot->mmc = mmc; |
| 1840 | slot->host = host; |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 1841 | host->slot[id] = slot; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1842 | |
| 1843 | mmc->ops = &dw_mci_ops; |
| 1844 | mmc->f_min = DIV_ROUND_UP(host->bus_hz, 510); |
| 1845 | mmc->f_max = host->bus_hz; |
| 1846 | |
| 1847 | if (host->pdata->get_ocr) |
| 1848 | mmc->ocr_avail = host->pdata->get_ocr(id); |
| 1849 | else |
| 1850 | mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 1851 | |
| 1852 | /* |
| 1853 | * Start with slot power disabled, it will be enabled when a card |
| 1854 | * is detected. |
| 1855 | */ |
| 1856 | if (host->pdata->setpower) |
| 1857 | host->pdata->setpower(id, 0); |
| 1858 | |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 1859 | if (host->pdata->caps) |
| 1860 | mmc->caps = host->pdata->caps; |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 1861 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 1862 | if (host->dev->of_node) { |
| 1863 | ctrl_id = of_alias_get_id(host->dev->of_node, "mshc"); |
| 1864 | if (ctrl_id < 0) |
| 1865 | ctrl_id = 0; |
| 1866 | } else { |
| 1867 | ctrl_id = to_platform_device(host->dev)->id; |
| 1868 | } |
| 1869 | if (host->drv_data && host->drv_data->caps) |
| 1870 | mmc->caps |= host->drv_data->caps[ctrl_id]; |
| 1871 | |
Seungwon Jeon | 4f408cc | 2011-12-09 14:55:52 +0900 | [diff] [blame] | 1872 | if (host->pdata->caps2) |
| 1873 | mmc->caps2 = host->pdata->caps2; |
Seungwon Jeon | 4f408cc | 2011-12-09 14:55:52 +0900 | [diff] [blame] | 1874 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1875 | if (host->pdata->get_bus_wd) |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 1876 | bus_width = host->pdata->get_bus_wd(slot->id); |
| 1877 | else if (host->dev->of_node) |
| 1878 | bus_width = dw_mci_of_get_bus_wd(host->dev, slot->id); |
| 1879 | else |
| 1880 | bus_width = 1; |
| 1881 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 1882 | if (host->drv_data->setup_bus) { |
| 1883 | struct device_node *slot_np; |
| 1884 | slot_np = dw_mci_of_find_slot_node(host->dev, slot->id); |
| 1885 | ret = host->drv_data->setup_bus(host, slot_np, bus_width); |
| 1886 | if (ret) |
| 1887 | goto err_setup_bus; |
| 1888 | } |
| 1889 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 1890 | switch (bus_width) { |
| 1891 | case 8: |
| 1892 | mmc->caps |= MMC_CAP_8_BIT_DATA; |
| 1893 | case 4: |
| 1894 | mmc->caps |= MMC_CAP_4_BIT_DATA; |
| 1895 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1896 | |
| 1897 | if (host->pdata->quirks & DW_MCI_QUIRK_HIGHSPEED) |
Seungwon Jeon | 6daa777 | 2011-08-05 12:35:03 +0900 | [diff] [blame] | 1898 | mmc->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1899 | |
Jaehoon Chung | 356ac2c | 2012-01-13 17:31:32 +0900 | [diff] [blame] | 1900 | if (mmc->caps2 & MMC_CAP2_POWEROFF_NOTIFY) |
| 1901 | mmc->power_notify_type = MMC_HOST_PW_NOTIFY_SHORT; |
| 1902 | else |
| 1903 | mmc->power_notify_type = MMC_HOST_PW_NOTIFY_NONE; |
| 1904 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1905 | if (host->pdata->blk_settings) { |
| 1906 | mmc->max_segs = host->pdata->blk_settings->max_segs; |
| 1907 | mmc->max_blk_size = host->pdata->blk_settings->max_blk_size; |
| 1908 | mmc->max_blk_count = host->pdata->blk_settings->max_blk_count; |
| 1909 | mmc->max_req_size = host->pdata->blk_settings->max_req_size; |
| 1910 | mmc->max_seg_size = host->pdata->blk_settings->max_seg_size; |
| 1911 | } else { |
| 1912 | /* Useful defaults if platform data is unset. */ |
Jaehoon Chung | a39e574 | 2012-02-04 17:00:27 -0500 | [diff] [blame] | 1913 | #ifdef CONFIG_MMC_DW_IDMAC |
| 1914 | mmc->max_segs = host->ring_size; |
| 1915 | mmc->max_blk_size = 65536; |
| 1916 | mmc->max_blk_count = host->ring_size; |
| 1917 | mmc->max_seg_size = 0x1000; |
| 1918 | mmc->max_req_size = mmc->max_seg_size * mmc->max_blk_count; |
| 1919 | #else |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1920 | mmc->max_segs = 64; |
| 1921 | mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */ |
| 1922 | mmc->max_blk_count = 512; |
| 1923 | mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count; |
| 1924 | mmc->max_seg_size = mmc->max_req_size; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1925 | #endif /* CONFIG_MMC_DW_IDMAC */ |
Jaehoon Chung | a39e574 | 2012-02-04 17:00:27 -0500 | [diff] [blame] | 1926 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1927 | |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 1928 | host->vmmc = regulator_get(mmc_dev(mmc), "vmmc"); |
| 1929 | if (IS_ERR(host->vmmc)) { |
Girish K S | a3c76eb | 2011-10-11 11:44:09 +0530 | [diff] [blame] | 1930 | pr_info("%s: no vmmc regulator found\n", mmc_hostname(mmc)); |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 1931 | host->vmmc = NULL; |
| 1932 | } else |
| 1933 | regulator_enable(host->vmmc); |
| 1934 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1935 | if (dw_mci_get_cd(mmc)) |
| 1936 | set_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
| 1937 | else |
| 1938 | clear_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
| 1939 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1940 | mmc_add_host(mmc); |
| 1941 | |
| 1942 | #if defined(CONFIG_DEBUG_FS) |
| 1943 | dw_mci_init_debugfs(slot); |
| 1944 | #endif |
| 1945 | |
| 1946 | /* Card initially undetected */ |
| 1947 | slot->last_detect_state = 0; |
| 1948 | |
Will Newton | dd6c4b9 | 2011-02-10 14:37:03 -0500 | [diff] [blame] | 1949 | /* |
| 1950 | * Card may have been plugged in prior to boot so we |
| 1951 | * need to run the detect tasklet |
| 1952 | */ |
Thomas Abraham | 95dcc2c | 2012-05-01 14:57:36 -0700 | [diff] [blame] | 1953 | queue_work(host->card_workqueue, &host->card_work); |
Will Newton | dd6c4b9 | 2011-02-10 14:37:03 -0500 | [diff] [blame] | 1954 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1955 | return 0; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 1956 | |
| 1957 | err_setup_bus: |
| 1958 | mmc_free_host(mmc); |
| 1959 | return -EINVAL; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1960 | } |
| 1961 | |
| 1962 | static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id) |
| 1963 | { |
| 1964 | /* Shutdown detect IRQ */ |
| 1965 | if (slot->host->pdata->exit) |
| 1966 | slot->host->pdata->exit(id); |
| 1967 | |
| 1968 | /* Debugfs stuff is cleaned up by mmc core */ |
| 1969 | mmc_remove_host(slot->mmc); |
| 1970 | slot->host->slot[id] = NULL; |
| 1971 | mmc_free_host(slot->mmc); |
| 1972 | } |
| 1973 | |
| 1974 | static void dw_mci_init_dma(struct dw_mci *host) |
| 1975 | { |
| 1976 | /* Alloc memory for sg translation */ |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1977 | host->sg_cpu = dma_alloc_coherent(host->dev, PAGE_SIZE, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1978 | &host->sg_dma, GFP_KERNEL); |
| 1979 | if (!host->sg_cpu) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1980 | dev_err(host->dev, "%s: could not alloc DMA memory\n", |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1981 | __func__); |
| 1982 | goto no_dma; |
| 1983 | } |
| 1984 | |
| 1985 | /* Determine which DMA interface to use */ |
| 1986 | #ifdef CONFIG_MMC_DW_IDMAC |
| 1987 | host->dma_ops = &dw_mci_idmac_ops; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1988 | #endif |
| 1989 | |
| 1990 | if (!host->dma_ops) |
| 1991 | goto no_dma; |
| 1992 | |
Jaehoon Chung | e1631f9 | 2012-04-18 15:42:31 +0900 | [diff] [blame] | 1993 | if (host->dma_ops->init && host->dma_ops->start && |
| 1994 | host->dma_ops->stop && host->dma_ops->cleanup) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1995 | if (host->dma_ops->init(host)) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1996 | dev_err(host->dev, "%s: Unable to initialize " |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1997 | "DMA Controller.\n", __func__); |
| 1998 | goto no_dma; |
| 1999 | } |
| 2000 | } else { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2001 | dev_err(host->dev, "DMA initialization not found.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2002 | goto no_dma; |
| 2003 | } |
| 2004 | |
| 2005 | host->use_dma = 1; |
| 2006 | return; |
| 2007 | |
| 2008 | no_dma: |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2009 | dev_info(host->dev, "Using PIO mode.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2010 | host->use_dma = 0; |
| 2011 | return; |
| 2012 | } |
| 2013 | |
| 2014 | static bool mci_wait_reset(struct device *dev, struct dw_mci *host) |
| 2015 | { |
| 2016 | unsigned long timeout = jiffies + msecs_to_jiffies(500); |
| 2017 | unsigned int ctrl; |
| 2018 | |
| 2019 | mci_writel(host, CTRL, (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET | |
| 2020 | SDMMC_CTRL_DMA_RESET)); |
| 2021 | |
| 2022 | /* wait till resets clear */ |
| 2023 | do { |
| 2024 | ctrl = mci_readl(host, CTRL); |
| 2025 | if (!(ctrl & (SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET | |
| 2026 | SDMMC_CTRL_DMA_RESET))) |
| 2027 | return true; |
| 2028 | } while (time_before(jiffies, timeout)); |
| 2029 | |
| 2030 | dev_err(dev, "Timeout resetting block (ctrl %#x)\n", ctrl); |
| 2031 | |
| 2032 | return false; |
| 2033 | } |
| 2034 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2035 | #ifdef CONFIG_OF |
| 2036 | static struct dw_mci_of_quirks { |
| 2037 | char *quirk; |
| 2038 | int id; |
| 2039 | } of_quirks[] = { |
| 2040 | { |
| 2041 | .quirk = "supports-highspeed", |
| 2042 | .id = DW_MCI_QUIRK_HIGHSPEED, |
| 2043 | }, { |
| 2044 | .quirk = "broken-cd", |
| 2045 | .id = DW_MCI_QUIRK_BROKEN_CARD_DETECTION, |
| 2046 | }, |
| 2047 | }; |
| 2048 | |
| 2049 | static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host) |
| 2050 | { |
| 2051 | struct dw_mci_board *pdata; |
| 2052 | struct device *dev = host->dev; |
| 2053 | struct device_node *np = dev->of_node; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 2054 | int idx, ret; |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2055 | |
| 2056 | pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); |
| 2057 | if (!pdata) { |
| 2058 | dev_err(dev, "could not allocate memory for pdata\n"); |
| 2059 | return ERR_PTR(-ENOMEM); |
| 2060 | } |
| 2061 | |
| 2062 | /* find out number of slots supported */ |
| 2063 | if (of_property_read_u32(dev->of_node, "num-slots", |
| 2064 | &pdata->num_slots)) { |
| 2065 | dev_info(dev, "num-slots property not found, " |
| 2066 | "assuming 1 slot is available\n"); |
| 2067 | pdata->num_slots = 1; |
| 2068 | } |
| 2069 | |
| 2070 | /* get quirks */ |
| 2071 | for (idx = 0; idx < ARRAY_SIZE(of_quirks); idx++) |
| 2072 | if (of_get_property(np, of_quirks[idx].quirk, NULL)) |
| 2073 | pdata->quirks |= of_quirks[idx].id; |
| 2074 | |
| 2075 | if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth)) |
| 2076 | dev_info(dev, "fifo-depth property not found, using " |
| 2077 | "value of FIFOTH register as default\n"); |
| 2078 | |
| 2079 | of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms); |
| 2080 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 2081 | if (host->drv_data->parse_dt) { |
| 2082 | ret = host->drv_data->parse_dt(host); |
| 2083 | if (ret) |
| 2084 | return ERR_PTR(ret); |
| 2085 | } |
| 2086 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2087 | return pdata; |
| 2088 | } |
| 2089 | |
| 2090 | #else /* CONFIG_OF */ |
| 2091 | static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host) |
| 2092 | { |
| 2093 | return ERR_PTR(-EINVAL); |
| 2094 | } |
| 2095 | #endif /* CONFIG_OF */ |
| 2096 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2097 | int dw_mci_probe(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2098 | { |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2099 | int width, i, ret = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2100 | u32 fifo_size; |
Thomas Abraham | 1c2215b | 2012-09-17 18:16:37 +0000 | [diff] [blame] | 2101 | int init_slots = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2102 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2103 | if (!host->pdata) { |
| 2104 | host->pdata = dw_mci_parse_dt(host); |
| 2105 | if (IS_ERR(host->pdata)) { |
| 2106 | dev_err(host->dev, "platform data not available\n"); |
| 2107 | return -EINVAL; |
| 2108 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2109 | } |
| 2110 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2111 | if (!host->pdata->select_slot && host->pdata->num_slots > 1) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2112 | dev_err(host->dev, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2113 | "Platform data must supply select_slot function\n"); |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2114 | return -ENODEV; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2115 | } |
| 2116 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2117 | host->biu_clk = clk_get(host->dev, "biu"); |
| 2118 | if (IS_ERR(host->biu_clk)) { |
| 2119 | dev_dbg(host->dev, "biu clock not available\n"); |
| 2120 | } else { |
| 2121 | ret = clk_prepare_enable(host->biu_clk); |
| 2122 | if (ret) { |
| 2123 | dev_err(host->dev, "failed to enable biu clock\n"); |
| 2124 | clk_put(host->biu_clk); |
| 2125 | return ret; |
| 2126 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2127 | } |
| 2128 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2129 | host->ciu_clk = clk_get(host->dev, "ciu"); |
| 2130 | if (IS_ERR(host->ciu_clk)) { |
| 2131 | dev_dbg(host->dev, "ciu clock not available\n"); |
| 2132 | } else { |
| 2133 | ret = clk_prepare_enable(host->ciu_clk); |
| 2134 | if (ret) { |
| 2135 | dev_err(host->dev, "failed to enable ciu clock\n"); |
| 2136 | clk_put(host->ciu_clk); |
| 2137 | goto err_clk_biu; |
| 2138 | } |
| 2139 | } |
| 2140 | |
| 2141 | if (IS_ERR(host->ciu_clk)) |
| 2142 | host->bus_hz = host->pdata->bus_hz; |
| 2143 | else |
| 2144 | host->bus_hz = clk_get_rate(host->ciu_clk); |
| 2145 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame^] | 2146 | if (host->drv_data->setup_clock) { |
| 2147 | ret = host->drv_data->setup_clock(host); |
| 2148 | if (ret) { |
| 2149 | dev_err(host->dev, |
| 2150 | "implementation specific clock setup failed\n"); |
| 2151 | goto err_clk_ciu; |
| 2152 | } |
| 2153 | } |
| 2154 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2155 | if (!host->bus_hz) { |
| 2156 | dev_err(host->dev, |
| 2157 | "Platform data must supply bus speed\n"); |
| 2158 | ret = -ENODEV; |
| 2159 | goto err_clk_ciu; |
| 2160 | } |
| 2161 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2162 | host->quirks = host->pdata->quirks; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2163 | |
| 2164 | spin_lock_init(&host->lock); |
| 2165 | INIT_LIST_HEAD(&host->queue); |
| 2166 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2167 | /* |
| 2168 | * Get the host data width - this assumes that HCON has been set with |
| 2169 | * the correct values. |
| 2170 | */ |
| 2171 | i = (mci_readl(host, HCON) >> 7) & 0x7; |
| 2172 | if (!i) { |
| 2173 | host->push_data = dw_mci_push_data16; |
| 2174 | host->pull_data = dw_mci_pull_data16; |
| 2175 | width = 16; |
| 2176 | host->data_shift = 1; |
| 2177 | } else if (i == 2) { |
| 2178 | host->push_data = dw_mci_push_data64; |
| 2179 | host->pull_data = dw_mci_pull_data64; |
| 2180 | width = 64; |
| 2181 | host->data_shift = 3; |
| 2182 | } else { |
| 2183 | /* Check for a reserved value, and warn if it is */ |
| 2184 | WARN((i != 1), |
| 2185 | "HCON reports a reserved host data width!\n" |
| 2186 | "Defaulting to 32-bit access.\n"); |
| 2187 | host->push_data = dw_mci_push_data32; |
| 2188 | host->pull_data = dw_mci_pull_data32; |
| 2189 | width = 32; |
| 2190 | host->data_shift = 2; |
| 2191 | } |
| 2192 | |
| 2193 | /* Reset all blocks */ |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2194 | if (!mci_wait_reset(host->dev, host)) |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 2195 | return -ENODEV; |
| 2196 | |
| 2197 | host->dma_ops = host->pdata->dma_ops; |
| 2198 | dw_mci_init_dma(host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2199 | |
| 2200 | /* Clear the interrupts for the host controller */ |
| 2201 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2202 | mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */ |
| 2203 | |
| 2204 | /* Put in max timeout */ |
| 2205 | mci_writel(host, TMOUT, 0xFFFFFFFF); |
| 2206 | |
| 2207 | /* |
| 2208 | * FIFO threshold settings RxMark = fifo_size / 2 - 1, |
| 2209 | * Tx Mark = fifo_size / 2 DMA Size = 8 |
| 2210 | */ |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 2211 | if (!host->pdata->fifo_depth) { |
| 2212 | /* |
| 2213 | * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may |
| 2214 | * have been overwritten by the bootloader, just like we're |
| 2215 | * about to do, so if you know the value for your hardware, you |
| 2216 | * should put it in the platform data. |
| 2217 | */ |
| 2218 | fifo_size = mci_readl(host, FIFOTH); |
Jaehoon Chung | 8234e86 | 2012-01-11 09:28:21 +0000 | [diff] [blame] | 2219 | fifo_size = 1 + ((fifo_size >> 16) & 0xfff); |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 2220 | } else { |
| 2221 | fifo_size = host->pdata->fifo_depth; |
| 2222 | } |
| 2223 | host->fifo_depth = fifo_size; |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2224 | host->fifoth_val = ((0x2 << 28) | ((fifo_size/2 - 1) << 16) | |
| 2225 | ((fifo_size/2) << 0)); |
| 2226 | mci_writel(host, FIFOTH, host->fifoth_val); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2227 | |
| 2228 | /* disable clock to CIU */ |
| 2229 | mci_writel(host, CLKENA, 0); |
| 2230 | mci_writel(host, CLKSRC, 0); |
| 2231 | |
| 2232 | tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host); |
Thomas Abraham | 95dcc2c | 2012-05-01 14:57:36 -0700 | [diff] [blame] | 2233 | host->card_workqueue = alloc_workqueue("dw-mci-card", |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 2234 | WQ_MEM_RECLAIM | WQ_NON_REENTRANT, 1); |
Thomas Abraham | 95dcc2c | 2012-05-01 14:57:36 -0700 | [diff] [blame] | 2235 | if (!host->card_workqueue) |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 2236 | goto err_dmaunmap; |
| 2237 | INIT_WORK(&host->card_work, dw_mci_work_routine_card); |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2238 | ret = request_irq(host->irq, dw_mci_interrupt, host->irq_flags, "dw-mci", host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2239 | if (ret) |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 2240 | goto err_workqueue; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2241 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2242 | if (host->pdata->num_slots) |
| 2243 | host->num_slots = host->pdata->num_slots; |
| 2244 | else |
| 2245 | host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1; |
| 2246 | |
| 2247 | /* We need at least one slot to succeed */ |
| 2248 | for (i = 0; i < host->num_slots; i++) { |
| 2249 | ret = dw_mci_init_slot(host, i); |
Thomas Abraham | 1c2215b | 2012-09-17 18:16:37 +0000 | [diff] [blame] | 2250 | if (ret) |
| 2251 | dev_dbg(host->dev, "slot %d init failed\n", i); |
| 2252 | else |
| 2253 | init_slots++; |
| 2254 | } |
| 2255 | |
| 2256 | if (init_slots) { |
| 2257 | dev_info(host->dev, "%d slots initialized\n", init_slots); |
| 2258 | } else { |
| 2259 | dev_dbg(host->dev, "attempted to initialize %d slots, " |
| 2260 | "but failed on all\n", host->num_slots); |
| 2261 | goto err_init_slot; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2262 | } |
| 2263 | |
| 2264 | /* |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 2265 | * In 2.40a spec, Data offset is changed. |
| 2266 | * Need to check the version-id and set data-offset for DATA register. |
| 2267 | */ |
| 2268 | host->verid = SDMMC_GET_VERID(mci_readl(host, VERID)); |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2269 | dev_info(host->dev, "Version ID is %04x\n", host->verid); |
Jaehoon Chung | 4e0a5ad | 2011-10-17 19:36:23 +0900 | [diff] [blame] | 2270 | |
| 2271 | if (host->verid < DW_MMC_240A) |
| 2272 | host->data_offset = DATA_OFFSET; |
| 2273 | else |
| 2274 | host->data_offset = DATA_240A_OFFSET; |
| 2275 | |
| 2276 | /* |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2277 | * Enable interrupts for command done, data over, data empty, card det, |
| 2278 | * receive ready and error such as transmit, receive timeout, crc error |
| 2279 | */ |
| 2280 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2281 | mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER | |
| 2282 | SDMMC_INT_TXDR | SDMMC_INT_RXDR | |
| 2283 | DW_MCI_ERROR_FLAGS | SDMMC_INT_CD); |
| 2284 | mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */ |
| 2285 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2286 | dev_info(host->dev, "DW MMC controller at irq %d, " |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 2287 | "%d bit host data width, " |
| 2288 | "%u deep fifo\n", |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2289 | host->irq, width, fifo_size); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2290 | if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2291 | dev_info(host->dev, "Internal DMAC interrupt fix enabled.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2292 | |
| 2293 | return 0; |
| 2294 | |
| 2295 | err_init_slot: |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2296 | free_irq(host->irq, host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2297 | |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 2298 | err_workqueue: |
Thomas Abraham | 95dcc2c | 2012-05-01 14:57:36 -0700 | [diff] [blame] | 2299 | destroy_workqueue(host->card_workqueue); |
James Hogan | 1791b13e | 2011-06-24 13:55:55 +0100 | [diff] [blame] | 2300 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2301 | err_dmaunmap: |
| 2302 | if (host->use_dma && host->dma_ops->exit) |
| 2303 | host->dma_ops->exit(host); |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2304 | dma_free_coherent(host->dev, PAGE_SIZE, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2305 | host->sg_cpu, host->sg_dma); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2306 | |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 2307 | if (host->vmmc) { |
| 2308 | regulator_disable(host->vmmc); |
| 2309 | regulator_put(host->vmmc); |
| 2310 | } |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2311 | |
| 2312 | err_clk_ciu: |
| 2313 | if (!IS_ERR(host->ciu_clk)) { |
| 2314 | clk_disable_unprepare(host->ciu_clk); |
| 2315 | clk_put(host->ciu_clk); |
| 2316 | } |
| 2317 | err_clk_biu: |
| 2318 | if (!IS_ERR(host->biu_clk)) { |
| 2319 | clk_disable_unprepare(host->biu_clk); |
| 2320 | clk_put(host->biu_clk); |
| 2321 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2322 | return ret; |
| 2323 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2324 | EXPORT_SYMBOL(dw_mci_probe); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2325 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2326 | void dw_mci_remove(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2327 | { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2328 | int i; |
| 2329 | |
| 2330 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2331 | mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */ |
| 2332 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2333 | for (i = 0; i < host->num_slots; i++) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2334 | dev_dbg(host->dev, "remove slot %d\n", i); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2335 | if (host->slot[i]) |
| 2336 | dw_mci_cleanup_slot(host->slot[i], i); |
| 2337 | } |
| 2338 | |
| 2339 | /* disable clock to CIU */ |
| 2340 | mci_writel(host, CLKENA, 0); |
| 2341 | mci_writel(host, CLKSRC, 0); |
| 2342 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2343 | free_irq(host->irq, host); |
Thomas Abraham | 95dcc2c | 2012-05-01 14:57:36 -0700 | [diff] [blame] | 2344 | destroy_workqueue(host->card_workqueue); |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2345 | dma_free_coherent(host->dev, PAGE_SIZE, host->sg_cpu, host->sg_dma); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2346 | |
| 2347 | if (host->use_dma && host->dma_ops->exit) |
| 2348 | host->dma_ops->exit(host); |
| 2349 | |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 2350 | if (host->vmmc) { |
| 2351 | regulator_disable(host->vmmc); |
| 2352 | regulator_put(host->vmmc); |
| 2353 | } |
| 2354 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2355 | if (!IS_ERR(host->ciu_clk)) |
| 2356 | clk_disable_unprepare(host->ciu_clk); |
| 2357 | if (!IS_ERR(host->biu_clk)) |
| 2358 | clk_disable_unprepare(host->biu_clk); |
| 2359 | clk_put(host->ciu_clk); |
| 2360 | clk_put(host->biu_clk); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2361 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2362 | EXPORT_SYMBOL(dw_mci_remove); |
| 2363 | |
| 2364 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2365 | |
Jaehoon Chung | 6fe8890 | 2011-12-08 19:23:03 +0900 | [diff] [blame] | 2366 | #ifdef CONFIG_PM_SLEEP |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2367 | /* |
| 2368 | * TODO: we should probably disable the clock to the card in the suspend path. |
| 2369 | */ |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2370 | int dw_mci_suspend(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2371 | { |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2372 | int i, ret = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2373 | |
| 2374 | for (i = 0; i < host->num_slots; i++) { |
| 2375 | struct dw_mci_slot *slot = host->slot[i]; |
| 2376 | if (!slot) |
| 2377 | continue; |
| 2378 | ret = mmc_suspend_host(slot->mmc); |
| 2379 | if (ret < 0) { |
| 2380 | while (--i >= 0) { |
| 2381 | slot = host->slot[i]; |
| 2382 | if (slot) |
| 2383 | mmc_resume_host(host->slot[i]->mmc); |
| 2384 | } |
| 2385 | return ret; |
| 2386 | } |
| 2387 | } |
| 2388 | |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 2389 | if (host->vmmc) |
| 2390 | regulator_disable(host->vmmc); |
| 2391 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2392 | return 0; |
| 2393 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2394 | EXPORT_SYMBOL(dw_mci_suspend); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2395 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2396 | int dw_mci_resume(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2397 | { |
| 2398 | int i, ret; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2399 | |
Jaehoon Chung | 1d6c4e0 | 2011-05-11 15:52:39 +0900 | [diff] [blame] | 2400 | if (host->vmmc) |
| 2401 | regulator_enable(host->vmmc); |
| 2402 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2403 | if (!mci_wait_reset(host->dev, host)) { |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2404 | ret = -ENODEV; |
| 2405 | return ret; |
| 2406 | } |
| 2407 | |
Jonathan Kliegman | 3bfe619 | 2012-06-14 13:31:55 -0400 | [diff] [blame] | 2408 | if (host->use_dma && host->dma_ops->init) |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 2409 | host->dma_ops->init(host); |
| 2410 | |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2411 | /* Restore the old value at FIFOTH register */ |
| 2412 | mci_writel(host, FIFOTH, host->fifoth_val); |
| 2413 | |
| 2414 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2415 | mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER | |
| 2416 | SDMMC_INT_TXDR | SDMMC_INT_RXDR | |
| 2417 | DW_MCI_ERROR_FLAGS | SDMMC_INT_CD); |
| 2418 | mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); |
| 2419 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2420 | for (i = 0; i < host->num_slots; i++) { |
| 2421 | struct dw_mci_slot *slot = host->slot[i]; |
| 2422 | if (!slot) |
| 2423 | continue; |
| 2424 | ret = mmc_resume_host(host->slot[i]->mmc); |
| 2425 | if (ret < 0) |
| 2426 | return ret; |
| 2427 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2428 | return 0; |
| 2429 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2430 | EXPORT_SYMBOL(dw_mci_resume); |
Jaehoon Chung | 6fe8890 | 2011-12-08 19:23:03 +0900 | [diff] [blame] | 2431 | #endif /* CONFIG_PM_SLEEP */ |
| 2432 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2433 | static int __init dw_mci_init(void) |
| 2434 | { |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2435 | printk(KERN_INFO "Synopsys Designware Multimedia Card Interface Driver"); |
| 2436 | return 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2437 | } |
| 2438 | |
| 2439 | static void __exit dw_mci_exit(void) |
| 2440 | { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2441 | } |
| 2442 | |
| 2443 | module_init(dw_mci_init); |
| 2444 | module_exit(dw_mci_exit); |
| 2445 | |
| 2446 | MODULE_DESCRIPTION("DW Multimedia Card Interface driver"); |
| 2447 | MODULE_AUTHOR("NXP Semiconductor VietNam"); |
| 2448 | MODULE_AUTHOR("Imagination Technologies Ltd"); |
| 2449 | MODULE_LICENSE("GPL v2"); |