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