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> |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 30 | #include <linux/mmc/card.h> |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 31 | #include <linux/mmc/host.h> |
| 32 | #include <linux/mmc/mmc.h> |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 33 | #include <linux/mmc/sd.h> |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 34 | #include <linux/mmc/sdio.h> |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 35 | #include <linux/mmc/dw_mmc.h> |
| 36 | #include <linux/bitops.h> |
Jaehoon Chung | c07946a | 2011-02-25 11:08:14 +0900 | [diff] [blame] | 37 | #include <linux/regulator/consumer.h> |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 38 | #include <linux/of.h> |
Doug Anderson | 55a6ceb | 2013-01-11 17:03:53 +0000 | [diff] [blame] | 39 | #include <linux/of_gpio.h> |
Zhangfei Gao | bf626e5 | 2014-01-09 22:35:10 +0800 | [diff] [blame] | 40 | #include <linux/mmc/slot-gpio.h> |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 41 | |
| 42 | #include "dw_mmc.h" |
| 43 | |
| 44 | /* Common flag combinations */ |
Jaehoon Chung | 3f7eec6 | 2013-05-27 13:47:57 +0900 | [diff] [blame] | 45 | #define DW_MCI_DATA_ERROR_FLAGS (SDMMC_INT_DRTO | SDMMC_INT_DCRC | \ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 46 | SDMMC_INT_HTO | SDMMC_INT_SBE | \ |
| 47 | SDMMC_INT_EBE) |
| 48 | #define DW_MCI_CMD_ERROR_FLAGS (SDMMC_INT_RTO | SDMMC_INT_RCRC | \ |
| 49 | SDMMC_INT_RESP_ERR) |
| 50 | #define DW_MCI_ERROR_FLAGS (DW_MCI_DATA_ERROR_FLAGS | \ |
| 51 | DW_MCI_CMD_ERROR_FLAGS | SDMMC_INT_HLE) |
| 52 | #define DW_MCI_SEND_STATUS 1 |
| 53 | #define DW_MCI_RECV_STATUS 2 |
| 54 | #define DW_MCI_DMA_THRESHOLD 16 |
| 55 | |
Seungwon Jeon | 1f44a2a | 2013-08-31 00:13:31 +0900 | [diff] [blame] | 56 | #define DW_MCI_FREQ_MAX 200000000 /* unit: HZ */ |
| 57 | #define DW_MCI_FREQ_MIN 400000 /* unit: HZ */ |
| 58 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 59 | #ifdef CONFIG_MMC_DW_IDMAC |
Joonyoung Shim | fc79a4d | 2013-04-26 15:35:22 +0900 | [diff] [blame] | 60 | #define IDMAC_INT_CLR (SDMMC_IDMAC_INT_AI | SDMMC_IDMAC_INT_NI | \ |
| 61 | SDMMC_IDMAC_INT_CES | SDMMC_IDMAC_INT_DU | \ |
| 62 | SDMMC_IDMAC_INT_FBE | SDMMC_IDMAC_INT_RI | \ |
| 63 | SDMMC_IDMAC_INT_TI) |
| 64 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 65 | struct idmac_desc_64addr { |
| 66 | u32 des0; /* Control Descriptor */ |
| 67 | |
| 68 | u32 des1; /* Reserved */ |
| 69 | |
| 70 | u32 des2; /*Buffer sizes */ |
| 71 | #define IDMAC_64ADDR_SET_BUFFER1_SIZE(d, s) \ |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 72 | ((d)->des2 = ((d)->des2 & cpu_to_le32(0x03ffe000)) | \ |
| 73 | ((cpu_to_le32(s)) & cpu_to_le32(0x1fff))) |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 74 | |
| 75 | u32 des3; /* Reserved */ |
| 76 | |
| 77 | u32 des4; /* Lower 32-bits of Buffer Address Pointer 1*/ |
| 78 | u32 des5; /* Upper 32-bits of Buffer Address Pointer 1*/ |
| 79 | |
| 80 | u32 des6; /* Lower 32-bits of Next Descriptor Address */ |
| 81 | u32 des7; /* Upper 32-bits of Next Descriptor Address */ |
| 82 | }; |
| 83 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 84 | struct idmac_desc { |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 85 | __le32 des0; /* Control Descriptor */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 86 | #define IDMAC_DES0_DIC BIT(1) |
| 87 | #define IDMAC_DES0_LD BIT(2) |
| 88 | #define IDMAC_DES0_FD BIT(3) |
| 89 | #define IDMAC_DES0_CH BIT(4) |
| 90 | #define IDMAC_DES0_ER BIT(5) |
| 91 | #define IDMAC_DES0_CES BIT(30) |
| 92 | #define IDMAC_DES0_OWN BIT(31) |
| 93 | |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 94 | __le32 des1; /* Buffer sizes */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 95 | #define IDMAC_SET_BUFFER1_SIZE(d, s) \ |
Shashidhar Hiremath | 9b7bbe1 | 2011-07-29 08:49:50 -0400 | [diff] [blame] | 96 | ((d)->des1 = ((d)->des1 & 0x03ffe000) | ((s) & 0x1fff)) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 97 | |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 98 | __le32 des2; /* buffer 1 physical address */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 99 | |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 100 | __le32 des3; /* buffer 2 physical address */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 101 | }; |
| 102 | #endif /* CONFIG_MMC_DW_IDMAC */ |
| 103 | |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 104 | static bool dw_mci_reset(struct dw_mci *host); |
Sonny Rao | 536f6b9 | 2014-10-16 09:58:05 -0700 | [diff] [blame] | 105 | static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset); |
Doug Anderson | 0bdbd0e | 2015-02-20 12:31:56 -0800 | [diff] [blame] | 106 | static int dw_mci_card_busy(struct mmc_host *mmc); |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 107 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 108 | #if defined(CONFIG_DEBUG_FS) |
| 109 | static int dw_mci_req_show(struct seq_file *s, void *v) |
| 110 | { |
| 111 | struct dw_mci_slot *slot = s->private; |
| 112 | struct mmc_request *mrq; |
| 113 | struct mmc_command *cmd; |
| 114 | struct mmc_command *stop; |
| 115 | struct mmc_data *data; |
| 116 | |
| 117 | /* Make sure we get a consistent snapshot */ |
| 118 | spin_lock_bh(&slot->host->lock); |
| 119 | mrq = slot->mrq; |
| 120 | |
| 121 | if (mrq) { |
| 122 | cmd = mrq->cmd; |
| 123 | data = mrq->data; |
| 124 | stop = mrq->stop; |
| 125 | |
| 126 | if (cmd) |
| 127 | seq_printf(s, |
| 128 | "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n", |
| 129 | cmd->opcode, cmd->arg, cmd->flags, |
| 130 | cmd->resp[0], cmd->resp[1], cmd->resp[2], |
| 131 | cmd->resp[2], cmd->error); |
| 132 | if (data) |
| 133 | seq_printf(s, "DATA %u / %u * %u flg %x err %d\n", |
| 134 | data->bytes_xfered, data->blocks, |
| 135 | data->blksz, data->flags, data->error); |
| 136 | if (stop) |
| 137 | seq_printf(s, |
| 138 | "CMD%u(0x%x) flg %x rsp %x %x %x %x err %d\n", |
| 139 | stop->opcode, stop->arg, stop->flags, |
| 140 | stop->resp[0], stop->resp[1], stop->resp[2], |
| 141 | stop->resp[2], stop->error); |
| 142 | } |
| 143 | |
| 144 | spin_unlock_bh(&slot->host->lock); |
| 145 | |
| 146 | return 0; |
| 147 | } |
| 148 | |
| 149 | static int dw_mci_req_open(struct inode *inode, struct file *file) |
| 150 | { |
| 151 | return single_open(file, dw_mci_req_show, inode->i_private); |
| 152 | } |
| 153 | |
| 154 | static const struct file_operations dw_mci_req_fops = { |
| 155 | .owner = THIS_MODULE, |
| 156 | .open = dw_mci_req_open, |
| 157 | .read = seq_read, |
| 158 | .llseek = seq_lseek, |
| 159 | .release = single_release, |
| 160 | }; |
| 161 | |
| 162 | static int dw_mci_regs_show(struct seq_file *s, void *v) |
| 163 | { |
| 164 | seq_printf(s, "STATUS:\t0x%08x\n", SDMMC_STATUS); |
| 165 | seq_printf(s, "RINTSTS:\t0x%08x\n", SDMMC_RINTSTS); |
| 166 | seq_printf(s, "CMD:\t0x%08x\n", SDMMC_CMD); |
| 167 | seq_printf(s, "CTRL:\t0x%08x\n", SDMMC_CTRL); |
| 168 | seq_printf(s, "INTMASK:\t0x%08x\n", SDMMC_INTMASK); |
| 169 | seq_printf(s, "CLKENA:\t0x%08x\n", SDMMC_CLKENA); |
| 170 | |
| 171 | return 0; |
| 172 | } |
| 173 | |
| 174 | static int dw_mci_regs_open(struct inode *inode, struct file *file) |
| 175 | { |
| 176 | return single_open(file, dw_mci_regs_show, inode->i_private); |
| 177 | } |
| 178 | |
| 179 | static const struct file_operations dw_mci_regs_fops = { |
| 180 | .owner = THIS_MODULE, |
| 181 | .open = dw_mci_regs_open, |
| 182 | .read = seq_read, |
| 183 | .llseek = seq_lseek, |
| 184 | .release = single_release, |
| 185 | }; |
| 186 | |
| 187 | static void dw_mci_init_debugfs(struct dw_mci_slot *slot) |
| 188 | { |
| 189 | struct mmc_host *mmc = slot->mmc; |
| 190 | struct dw_mci *host = slot->host; |
| 191 | struct dentry *root; |
| 192 | struct dentry *node; |
| 193 | |
| 194 | root = mmc->debugfs_root; |
| 195 | if (!root) |
| 196 | return; |
| 197 | |
| 198 | node = debugfs_create_file("regs", S_IRUSR, root, host, |
| 199 | &dw_mci_regs_fops); |
| 200 | if (!node) |
| 201 | goto err; |
| 202 | |
| 203 | node = debugfs_create_file("req", S_IRUSR, root, slot, |
| 204 | &dw_mci_req_fops); |
| 205 | if (!node) |
| 206 | goto err; |
| 207 | |
| 208 | node = debugfs_create_u32("state", S_IRUSR, root, (u32 *)&host->state); |
| 209 | if (!node) |
| 210 | goto err; |
| 211 | |
| 212 | node = debugfs_create_x32("pending_events", S_IRUSR, root, |
| 213 | (u32 *)&host->pending_events); |
| 214 | if (!node) |
| 215 | goto err; |
| 216 | |
| 217 | node = debugfs_create_x32("completed_events", S_IRUSR, root, |
| 218 | (u32 *)&host->completed_events); |
| 219 | if (!node) |
| 220 | goto err; |
| 221 | |
| 222 | return; |
| 223 | |
| 224 | err: |
| 225 | dev_err(&mmc->class_dev, "failed to initialize debugfs for slot\n"); |
| 226 | } |
| 227 | #endif /* defined(CONFIG_DEBUG_FS) */ |
| 228 | |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 229 | static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg); |
| 230 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 231 | static u32 dw_mci_prepare_command(struct mmc_host *mmc, struct mmc_command *cmd) |
| 232 | { |
| 233 | struct mmc_data *data; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 234 | struct dw_mci_slot *slot = mmc_priv(mmc); |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 235 | struct dw_mci *host = slot->host; |
Arnd Bergmann | e95baf1 | 2012-11-08 14:26:11 +0000 | [diff] [blame] | 236 | const struct dw_mci_drv_data *drv_data = slot->host->drv_data; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 237 | u32 cmdr; |
| 238 | cmd->error = -EINPROGRESS; |
| 239 | |
| 240 | cmdr = cmd->opcode; |
| 241 | |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 242 | if (cmd->opcode == MMC_STOP_TRANSMISSION || |
| 243 | cmd->opcode == MMC_GO_IDLE_STATE || |
| 244 | cmd->opcode == MMC_GO_INACTIVE_STATE || |
| 245 | (cmd->opcode == SD_IO_RW_DIRECT && |
| 246 | ((cmd->arg >> 9) & 0x1FFFF) == SDIO_CCCR_ABORT)) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 247 | cmdr |= SDMMC_CMD_STOP; |
Jaehoon Chung | 4a1b27a | 2014-03-03 11:36:44 +0900 | [diff] [blame] | 248 | else if (cmd->opcode != MMC_SEND_STATUS && cmd->data) |
| 249 | cmdr |= SDMMC_CMD_PRV_DAT_WAIT; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 250 | |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 251 | if (cmd->opcode == SD_SWITCH_VOLTAGE) { |
| 252 | u32 clk_en_a; |
| 253 | |
| 254 | /* Special bit makes CMD11 not die */ |
| 255 | cmdr |= SDMMC_CMD_VOLT_SWITCH; |
| 256 | |
| 257 | /* Change state to continue to handle CMD11 weirdness */ |
| 258 | WARN_ON(slot->host->state != STATE_SENDING_CMD); |
| 259 | slot->host->state = STATE_SENDING_CMD11; |
| 260 | |
| 261 | /* |
| 262 | * We need to disable low power mode (automatic clock stop) |
| 263 | * while doing voltage switch so we don't confuse the card, |
| 264 | * since stopping the clock is a specific part of the UHS |
| 265 | * voltage change dance. |
| 266 | * |
| 267 | * Note that low power mode (SDMMC_CLKEN_LOW_PWR) will be |
| 268 | * unconditionally turned back on in dw_mci_setup_bus() if it's |
| 269 | * ever called with a non-zero clock. That shouldn't happen |
| 270 | * until the voltage change is all done. |
| 271 | */ |
| 272 | clk_en_a = mci_readl(host, CLKENA); |
| 273 | clk_en_a &= ~(SDMMC_CLKEN_LOW_PWR << slot->id); |
| 274 | mci_writel(host, CLKENA, clk_en_a); |
| 275 | mci_send_cmd(slot, SDMMC_CMD_UPD_CLK | |
| 276 | SDMMC_CMD_PRV_DAT_WAIT, 0); |
| 277 | } |
| 278 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 279 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 280 | /* We expect a response, so set this bit */ |
| 281 | cmdr |= SDMMC_CMD_RESP_EXP; |
| 282 | if (cmd->flags & MMC_RSP_136) |
| 283 | cmdr |= SDMMC_CMD_RESP_LONG; |
| 284 | } |
| 285 | |
| 286 | if (cmd->flags & MMC_RSP_CRC) |
| 287 | cmdr |= SDMMC_CMD_RESP_CRC; |
| 288 | |
| 289 | data = cmd->data; |
| 290 | if (data) { |
| 291 | cmdr |= SDMMC_CMD_DAT_EXP; |
| 292 | if (data->flags & MMC_DATA_STREAM) |
| 293 | cmdr |= SDMMC_CMD_STRM_MODE; |
| 294 | if (data->flags & MMC_DATA_WRITE) |
| 295 | cmdr |= SDMMC_CMD_DAT_WR; |
| 296 | } |
| 297 | |
James Hogan | cb27a84 | 2012-10-16 09:43:08 +0100 | [diff] [blame] | 298 | if (drv_data && drv_data->prepare_command) |
| 299 | drv_data->prepare_command(slot->host, &cmdr); |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 300 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 301 | return cmdr; |
| 302 | } |
| 303 | |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 304 | static u32 dw_mci_prep_stop_abort(struct dw_mci *host, struct mmc_command *cmd) |
| 305 | { |
| 306 | struct mmc_command *stop; |
| 307 | u32 cmdr; |
| 308 | |
| 309 | if (!cmd->data) |
| 310 | return 0; |
| 311 | |
| 312 | stop = &host->stop_abort; |
| 313 | cmdr = cmd->opcode; |
| 314 | memset(stop, 0, sizeof(struct mmc_command)); |
| 315 | |
| 316 | if (cmdr == MMC_READ_SINGLE_BLOCK || |
| 317 | cmdr == MMC_READ_MULTIPLE_BLOCK || |
| 318 | cmdr == MMC_WRITE_BLOCK || |
Ulf Hansson | 6c2c650 | 2014-12-01 16:13:39 +0100 | [diff] [blame] | 319 | cmdr == MMC_WRITE_MULTIPLE_BLOCK || |
| 320 | cmdr == MMC_SEND_TUNING_BLOCK || |
| 321 | cmdr == MMC_SEND_TUNING_BLOCK_HS200) { |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 322 | stop->opcode = MMC_STOP_TRANSMISSION; |
| 323 | stop->arg = 0; |
| 324 | stop->flags = MMC_RSP_R1B | MMC_CMD_AC; |
| 325 | } else if (cmdr == SD_IO_RW_EXTENDED) { |
| 326 | stop->opcode = SD_IO_RW_DIRECT; |
| 327 | stop->arg |= (1 << 31) | (0 << 28) | (SDIO_CCCR_ABORT << 9) | |
| 328 | ((cmd->arg >> 28) & 0x7); |
| 329 | stop->flags = MMC_RSP_SPI_R5 | MMC_RSP_R5 | MMC_CMD_AC; |
| 330 | } else { |
| 331 | return 0; |
| 332 | } |
| 333 | |
| 334 | cmdr = stop->opcode | SDMMC_CMD_STOP | |
| 335 | SDMMC_CMD_RESP_CRC | SDMMC_CMD_RESP_EXP; |
| 336 | |
| 337 | return cmdr; |
| 338 | } |
| 339 | |
Doug Anderson | 0bdbd0e | 2015-02-20 12:31:56 -0800 | [diff] [blame] | 340 | static void dw_mci_wait_while_busy(struct dw_mci *host, u32 cmd_flags) |
| 341 | { |
| 342 | unsigned long timeout = jiffies + msecs_to_jiffies(500); |
| 343 | |
| 344 | /* |
| 345 | * Databook says that before issuing a new data transfer command |
| 346 | * we need to check to see if the card is busy. Data transfer commands |
| 347 | * all have SDMMC_CMD_PRV_DAT_WAIT set, so we'll key off that. |
| 348 | * |
| 349 | * ...also allow sending for SDMMC_CMD_VOLT_SWITCH where busy is |
| 350 | * expected. |
| 351 | */ |
| 352 | if ((cmd_flags & SDMMC_CMD_PRV_DAT_WAIT) && |
| 353 | !(cmd_flags & SDMMC_CMD_VOLT_SWITCH)) { |
| 354 | while (mci_readl(host, STATUS) & SDMMC_STATUS_BUSY) { |
| 355 | if (time_after(jiffies, timeout)) { |
| 356 | /* Command will fail; we'll pass error then */ |
| 357 | dev_err(host->dev, "Busy; trying anyway\n"); |
| 358 | break; |
| 359 | } |
| 360 | udelay(10); |
| 361 | } |
| 362 | } |
| 363 | } |
| 364 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 365 | static void dw_mci_start_command(struct dw_mci *host, |
| 366 | struct mmc_command *cmd, u32 cmd_flags) |
| 367 | { |
| 368 | host->cmd = cmd; |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 369 | dev_vdbg(host->dev, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 370 | "start command: ARGR=0x%08x CMDR=0x%08x\n", |
| 371 | cmd->arg, cmd_flags); |
| 372 | |
| 373 | mci_writel(host, CMDARG, cmd->arg); |
| 374 | wmb(); |
Doug Anderson | 0bdbd0e | 2015-02-20 12:31:56 -0800 | [diff] [blame] | 375 | dw_mci_wait_while_busy(host, cmd_flags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 376 | |
| 377 | mci_writel(host, CMD, cmd_flags | SDMMC_CMD_START); |
| 378 | } |
| 379 | |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 380 | static inline void send_stop_abort(struct dw_mci *host, struct mmc_data *data) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 381 | { |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 382 | struct mmc_command *stop = data->stop ? data->stop : &host->stop_abort; |
| 383 | dw_mci_start_command(host, stop, host->stop_cmdr); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | /* DMA interface functions */ |
| 387 | static void dw_mci_stop_dma(struct dw_mci *host) |
| 388 | { |
James Hogan | 03e8cb5 | 2011-06-29 09:28:43 +0100 | [diff] [blame] | 389 | if (host->using_dma) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 390 | host->dma_ops->stop(host); |
| 391 | host->dma_ops->cleanup(host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 392 | } |
Seungwon Jeon | aa50f25 | 2013-08-31 00:14:38 +0900 | [diff] [blame] | 393 | |
| 394 | /* Data transfer was stopped by the interrupt handler */ |
| 395 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 396 | } |
| 397 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 398 | static int dw_mci_get_dma_dir(struct mmc_data *data) |
| 399 | { |
| 400 | if (data->flags & MMC_DATA_WRITE) |
| 401 | return DMA_TO_DEVICE; |
| 402 | else |
| 403 | return DMA_FROM_DEVICE; |
| 404 | } |
| 405 | |
Jaehoon Chung | 9beee91 | 2012-02-16 11:19:38 +0900 | [diff] [blame] | 406 | #ifdef CONFIG_MMC_DW_IDMAC |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 407 | static void dw_mci_dma_cleanup(struct dw_mci *host) |
| 408 | { |
| 409 | struct mmc_data *data = host->data; |
| 410 | |
| 411 | if (data) |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 412 | if (!data->host_cookie) |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 413 | dma_unmap_sg(host->dev, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 414 | data->sg, |
| 415 | data->sg_len, |
| 416 | dw_mci_get_dma_dir(data)); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 417 | } |
| 418 | |
Seungwon Jeon | 5ce9d96 | 2013-08-31 00:14:33 +0900 | [diff] [blame] | 419 | static void dw_mci_idmac_reset(struct dw_mci *host) |
| 420 | { |
| 421 | u32 bmod = mci_readl(host, BMOD); |
| 422 | /* Software reset of DMA */ |
| 423 | bmod |= SDMMC_IDMAC_SWRESET; |
| 424 | mci_writel(host, BMOD, bmod); |
| 425 | } |
| 426 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 427 | static void dw_mci_idmac_stop_dma(struct dw_mci *host) |
| 428 | { |
| 429 | u32 temp; |
| 430 | |
| 431 | /* Disable and reset the IDMAC interface */ |
| 432 | temp = mci_readl(host, CTRL); |
| 433 | temp &= ~SDMMC_CTRL_USE_IDMAC; |
| 434 | temp |= SDMMC_CTRL_DMA_RESET; |
| 435 | mci_writel(host, CTRL, temp); |
| 436 | |
| 437 | /* Stop the IDMAC running */ |
| 438 | temp = mci_readl(host, BMOD); |
Jaehoon Chung | a5289a4 | 2011-02-25 11:08:13 +0900 | [diff] [blame] | 439 | temp &= ~(SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB); |
Seungwon Jeon | 5ce9d96 | 2013-08-31 00:14:33 +0900 | [diff] [blame] | 440 | temp |= SDMMC_IDMAC_SWRESET; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 441 | mci_writel(host, BMOD, temp); |
| 442 | } |
| 443 | |
| 444 | static void dw_mci_idmac_complete_dma(struct dw_mci *host) |
| 445 | { |
| 446 | struct mmc_data *data = host->data; |
| 447 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 448 | dev_vdbg(host->dev, "DMA complete\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 449 | |
| 450 | host->dma_ops->cleanup(host); |
| 451 | |
| 452 | /* |
| 453 | * If the card was removed, data will be NULL. No point in trying to |
| 454 | * send the stop command or waiting for NBUSY in this case. |
| 455 | */ |
| 456 | if (data) { |
| 457 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 458 | tasklet_schedule(&host->tasklet); |
| 459 | } |
| 460 | } |
| 461 | |
| 462 | static void dw_mci_translate_sglist(struct dw_mci *host, struct mmc_data *data, |
| 463 | unsigned int sg_len) |
| 464 | { |
| 465 | int i; |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 466 | if (host->dma_64bit_address == 1) { |
| 467 | struct idmac_desc_64addr *desc = host->sg_cpu; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 468 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 469 | for (i = 0; i < sg_len; i++, desc++) { |
| 470 | unsigned int length = sg_dma_len(&data->sg[i]); |
| 471 | u64 mem_addr = sg_dma_address(&data->sg[i]); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 472 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 473 | /* |
| 474 | * Set the OWN bit and disable interrupts for this |
| 475 | * descriptor |
| 476 | */ |
| 477 | desc->des0 = IDMAC_DES0_OWN | IDMAC_DES0_DIC | |
| 478 | IDMAC_DES0_CH; |
| 479 | /* Buffer length */ |
| 480 | IDMAC_64ADDR_SET_BUFFER1_SIZE(desc, length); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 481 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 482 | /* Physical address to DMA to/from */ |
| 483 | desc->des4 = mem_addr & 0xffffffff; |
| 484 | desc->des5 = mem_addr >> 32; |
| 485 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 486 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 487 | /* Set first descriptor */ |
| 488 | desc = host->sg_cpu; |
| 489 | desc->des0 |= IDMAC_DES0_FD; |
| 490 | |
| 491 | /* Set last descriptor */ |
| 492 | desc = host->sg_cpu + (i - 1) * |
| 493 | sizeof(struct idmac_desc_64addr); |
| 494 | desc->des0 &= ~(IDMAC_DES0_CH | IDMAC_DES0_DIC); |
| 495 | desc->des0 |= IDMAC_DES0_LD; |
| 496 | |
| 497 | } else { |
| 498 | struct idmac_desc *desc = host->sg_cpu; |
| 499 | |
| 500 | for (i = 0; i < sg_len; i++, desc++) { |
| 501 | unsigned int length = sg_dma_len(&data->sg[i]); |
| 502 | u32 mem_addr = sg_dma_address(&data->sg[i]); |
| 503 | |
| 504 | /* |
| 505 | * Set the OWN bit and disable interrupts for this |
| 506 | * descriptor |
| 507 | */ |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 508 | desc->des0 = cpu_to_le32(IDMAC_DES0_OWN | |
| 509 | IDMAC_DES0_DIC | IDMAC_DES0_CH); |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 510 | /* Buffer length */ |
| 511 | IDMAC_SET_BUFFER1_SIZE(desc, length); |
| 512 | |
| 513 | /* Physical address to DMA to/from */ |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 514 | desc->des2 = cpu_to_le32(mem_addr); |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 515 | } |
| 516 | |
| 517 | /* Set first descriptor */ |
| 518 | desc = host->sg_cpu; |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 519 | desc->des0 |= cpu_to_le32(IDMAC_DES0_FD); |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 520 | |
| 521 | /* Set last descriptor */ |
| 522 | desc = host->sg_cpu + (i - 1) * sizeof(struct idmac_desc); |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 523 | desc->des0 &= cpu_to_le32(~(IDMAC_DES0_CH | IDMAC_DES0_DIC)); |
| 524 | desc->des0 |= cpu_to_le32(IDMAC_DES0_LD); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 525 | } |
| 526 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 527 | wmb(); |
| 528 | } |
| 529 | |
| 530 | static void dw_mci_idmac_start_dma(struct dw_mci *host, unsigned int sg_len) |
| 531 | { |
| 532 | u32 temp; |
| 533 | |
| 534 | dw_mci_translate_sglist(host, host->data, sg_len); |
| 535 | |
Sonny Rao | 536f6b9 | 2014-10-16 09:58:05 -0700 | [diff] [blame] | 536 | /* Make sure to reset DMA in case we did PIO before this */ |
| 537 | dw_mci_ctrl_reset(host, SDMMC_CTRL_DMA_RESET); |
| 538 | dw_mci_idmac_reset(host); |
| 539 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 540 | /* Select IDMAC interface */ |
| 541 | temp = mci_readl(host, CTRL); |
| 542 | temp |= SDMMC_CTRL_USE_IDMAC; |
| 543 | mci_writel(host, CTRL, temp); |
| 544 | |
| 545 | wmb(); |
| 546 | |
| 547 | /* Enable the IDMAC */ |
| 548 | temp = mci_readl(host, BMOD); |
Jaehoon Chung | a5289a4 | 2011-02-25 11:08:13 +0900 | [diff] [blame] | 549 | temp |= SDMMC_IDMAC_ENABLE | SDMMC_IDMAC_FB; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 550 | mci_writel(host, BMOD, temp); |
| 551 | |
| 552 | /* Start it running */ |
| 553 | mci_writel(host, PLDMND, 1); |
| 554 | } |
| 555 | |
| 556 | static int dw_mci_idmac_init(struct dw_mci *host) |
| 557 | { |
Seungwon Jeon | 897b69e | 2012-09-19 13:58:31 +0800 | [diff] [blame] | 558 | int i; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 559 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 560 | if (host->dma_64bit_address == 1) { |
| 561 | struct idmac_desc_64addr *p; |
| 562 | /* Number of descriptors in the ring buffer */ |
| 563 | host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc_64addr); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 564 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 565 | /* Forward link the descriptor list */ |
| 566 | for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; |
| 567 | i++, p++) { |
| 568 | p->des6 = (host->sg_dma + |
| 569 | (sizeof(struct idmac_desc_64addr) * |
| 570 | (i + 1))) & 0xffffffff; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 571 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 572 | p->des7 = (u64)(host->sg_dma + |
| 573 | (sizeof(struct idmac_desc_64addr) * |
| 574 | (i + 1))) >> 32; |
| 575 | /* Initialize reserved and buffer size fields to "0" */ |
| 576 | p->des1 = 0; |
| 577 | p->des2 = 0; |
| 578 | p->des3 = 0; |
| 579 | } |
| 580 | |
| 581 | /* Set the last descriptor as the end-of-ring descriptor */ |
| 582 | p->des6 = host->sg_dma & 0xffffffff; |
| 583 | p->des7 = (u64)host->sg_dma >> 32; |
| 584 | p->des0 = IDMAC_DES0_ER; |
| 585 | |
| 586 | } else { |
| 587 | struct idmac_desc *p; |
| 588 | /* Number of descriptors in the ring buffer */ |
| 589 | host->ring_size = PAGE_SIZE / sizeof(struct idmac_desc); |
| 590 | |
| 591 | /* Forward link the descriptor list */ |
Zhangfei Gao | 4b24472 | 2015-04-30 22:16:28 +0800 | [diff] [blame^] | 592 | for (i = 0, p = host->sg_cpu; i < host->ring_size - 1; i++, p++) { |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 593 | p->des3 = cpu_to_le32(host->sg_dma + |
| 594 | (sizeof(struct idmac_desc) * (i + 1))); |
Zhangfei Gao | 4b24472 | 2015-04-30 22:16:28 +0800 | [diff] [blame^] | 595 | p->des1 = 0; |
| 596 | } |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 597 | |
| 598 | /* Set the last descriptor as the end-of-ring descriptor */ |
Ben Dooks | 6687c42 | 2015-03-25 11:27:51 +0000 | [diff] [blame] | 599 | p->des3 = cpu_to_le32(host->sg_dma); |
| 600 | p->des0 = cpu_to_le32(IDMAC_DES0_ER); |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 601 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 602 | |
Seungwon Jeon | 5ce9d96 | 2013-08-31 00:14:33 +0900 | [diff] [blame] | 603 | dw_mci_idmac_reset(host); |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 604 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 605 | if (host->dma_64bit_address == 1) { |
| 606 | /* Mask out interrupts - get Tx & Rx complete only */ |
| 607 | mci_writel(host, IDSTS64, IDMAC_INT_CLR); |
| 608 | mci_writel(host, IDINTEN64, SDMMC_IDMAC_INT_NI | |
| 609 | SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 610 | |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 611 | /* Set the descriptor base address */ |
| 612 | mci_writel(host, DBADDRL, host->sg_dma & 0xffffffff); |
| 613 | mci_writel(host, DBADDRU, (u64)host->sg_dma >> 32); |
| 614 | |
| 615 | } else { |
| 616 | /* Mask out interrupts - get Tx & Rx complete only */ |
| 617 | mci_writel(host, IDSTS, IDMAC_INT_CLR); |
| 618 | mci_writel(host, IDINTEN, SDMMC_IDMAC_INT_NI | |
| 619 | SDMMC_IDMAC_INT_RI | SDMMC_IDMAC_INT_TI); |
| 620 | |
| 621 | /* Set the descriptor base address */ |
| 622 | mci_writel(host, DBADDR, host->sg_dma); |
| 623 | } |
| 624 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 625 | return 0; |
| 626 | } |
| 627 | |
Arnd Bergmann | 8e2b36e | 2012-11-06 22:55:31 +0100 | [diff] [blame] | 628 | static const struct dw_mci_dma_ops dw_mci_idmac_ops = { |
Seungwon Jeon | 885c3e8 | 2012-02-20 11:01:43 +0900 | [diff] [blame] | 629 | .init = dw_mci_idmac_init, |
| 630 | .start = dw_mci_idmac_start_dma, |
| 631 | .stop = dw_mci_idmac_stop_dma, |
| 632 | .complete = dw_mci_idmac_complete_dma, |
| 633 | .cleanup = dw_mci_dma_cleanup, |
| 634 | }; |
| 635 | #endif /* CONFIG_MMC_DW_IDMAC */ |
| 636 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 637 | static int dw_mci_pre_dma_transfer(struct dw_mci *host, |
| 638 | struct mmc_data *data, |
| 639 | bool next) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 640 | { |
| 641 | struct scatterlist *sg; |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 642 | unsigned int i, sg_len; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 643 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 644 | if (!next && data->host_cookie) |
| 645 | return data->host_cookie; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 646 | |
| 647 | /* |
| 648 | * We don't do DMA on "complex" transfers, i.e. with |
| 649 | * non-word-aligned buffers or lengths. Also, we don't bother |
| 650 | * with all the DMA setup overhead for short transfers. |
| 651 | */ |
| 652 | if (data->blocks * data->blksz < DW_MCI_DMA_THRESHOLD) |
| 653 | return -EINVAL; |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 654 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 655 | if (data->blksz & 3) |
| 656 | return -EINVAL; |
| 657 | |
| 658 | for_each_sg(data->sg, sg, data->sg_len, i) { |
| 659 | if (sg->offset & 3 || sg->length & 3) |
| 660 | return -EINVAL; |
| 661 | } |
| 662 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 663 | sg_len = dma_map_sg(host->dev, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 664 | data->sg, |
| 665 | data->sg_len, |
| 666 | dw_mci_get_dma_dir(data)); |
| 667 | if (sg_len == 0) |
| 668 | return -EINVAL; |
| 669 | |
| 670 | if (next) |
| 671 | data->host_cookie = sg_len; |
| 672 | |
| 673 | return sg_len; |
| 674 | } |
| 675 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 676 | static void dw_mci_pre_req(struct mmc_host *mmc, |
| 677 | struct mmc_request *mrq, |
| 678 | bool is_first_req) |
| 679 | { |
| 680 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 681 | struct mmc_data *data = mrq->data; |
| 682 | |
| 683 | if (!slot->host->use_dma || !data) |
| 684 | return; |
| 685 | |
| 686 | if (data->host_cookie) { |
| 687 | data->host_cookie = 0; |
| 688 | return; |
| 689 | } |
| 690 | |
| 691 | if (dw_mci_pre_dma_transfer(slot->host, mrq->data, 1) < 0) |
| 692 | data->host_cookie = 0; |
| 693 | } |
| 694 | |
| 695 | static void dw_mci_post_req(struct mmc_host *mmc, |
| 696 | struct mmc_request *mrq, |
| 697 | int err) |
| 698 | { |
| 699 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 700 | struct mmc_data *data = mrq->data; |
| 701 | |
| 702 | if (!slot->host->use_dma || !data) |
| 703 | return; |
| 704 | |
| 705 | if (data->host_cookie) |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 706 | dma_unmap_sg(slot->host->dev, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 707 | data->sg, |
| 708 | data->sg_len, |
| 709 | dw_mci_get_dma_dir(data)); |
| 710 | data->host_cookie = 0; |
| 711 | } |
| 712 | |
Seungwon Jeon | 5242689 | 2013-08-31 00:13:42 +0900 | [diff] [blame] | 713 | static void dw_mci_adjust_fifoth(struct dw_mci *host, struct mmc_data *data) |
| 714 | { |
| 715 | #ifdef CONFIG_MMC_DW_IDMAC |
| 716 | unsigned int blksz = data->blksz; |
| 717 | const u32 mszs[] = {1, 4, 8, 16, 32, 64, 128, 256}; |
| 718 | u32 fifo_width = 1 << host->data_shift; |
| 719 | u32 blksz_depth = blksz / fifo_width, fifoth_val; |
| 720 | u32 msize = 0, rx_wmark = 1, tx_wmark, tx_wmark_invers; |
| 721 | int idx = (sizeof(mszs) / sizeof(mszs[0])) - 1; |
| 722 | |
| 723 | tx_wmark = (host->fifo_depth) / 2; |
| 724 | tx_wmark_invers = host->fifo_depth - tx_wmark; |
| 725 | |
| 726 | /* |
| 727 | * MSIZE is '1', |
| 728 | * if blksz is not a multiple of the FIFO width |
| 729 | */ |
| 730 | if (blksz % fifo_width) { |
| 731 | msize = 0; |
| 732 | rx_wmark = 1; |
| 733 | goto done; |
| 734 | } |
| 735 | |
| 736 | do { |
| 737 | if (!((blksz_depth % mszs[idx]) || |
| 738 | (tx_wmark_invers % mszs[idx]))) { |
| 739 | msize = idx; |
| 740 | rx_wmark = mszs[idx] - 1; |
| 741 | break; |
| 742 | } |
| 743 | } while (--idx > 0); |
| 744 | /* |
| 745 | * If idx is '0', it won't be tried |
| 746 | * Thus, initial values are uesed |
| 747 | */ |
| 748 | done: |
| 749 | fifoth_val = SDMMC_SET_FIFOTH(msize, rx_wmark, tx_wmark); |
| 750 | mci_writel(host, FIFOTH, fifoth_val); |
| 751 | #endif |
| 752 | } |
| 753 | |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 754 | static void dw_mci_ctrl_rd_thld(struct dw_mci *host, struct mmc_data *data) |
| 755 | { |
| 756 | unsigned int blksz = data->blksz; |
| 757 | u32 blksz_depth, fifo_depth; |
| 758 | u16 thld_size; |
| 759 | |
| 760 | WARN_ON(!(data->flags & MMC_DATA_READ)); |
| 761 | |
James Hogan | 66dfd10 | 2014-11-17 17:49:05 +0000 | [diff] [blame] | 762 | /* |
| 763 | * CDTHRCTL doesn't exist prior to 240A (in fact that register offset is |
| 764 | * in the FIFO region, so we really shouldn't access it). |
| 765 | */ |
| 766 | if (host->verid < DW_MMC_240A) |
| 767 | return; |
| 768 | |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 769 | if (host->timing != MMC_TIMING_MMC_HS200 && |
Jaehoon Chung | 488b8d6 | 2015-03-05 19:45:21 +0900 | [diff] [blame] | 770 | host->timing != MMC_TIMING_MMC_HS400 && |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 771 | host->timing != MMC_TIMING_UHS_SDR104) |
| 772 | goto disable; |
| 773 | |
| 774 | blksz_depth = blksz / (1 << host->data_shift); |
| 775 | fifo_depth = host->fifo_depth; |
| 776 | |
| 777 | if (blksz_depth > fifo_depth) |
| 778 | goto disable; |
| 779 | |
| 780 | /* |
| 781 | * If (blksz_depth) >= (fifo_depth >> 1), should be 'thld_size <= blksz' |
| 782 | * If (blksz_depth) < (fifo_depth >> 1), should be thld_size = blksz |
| 783 | * Currently just choose blksz. |
| 784 | */ |
| 785 | thld_size = blksz; |
| 786 | mci_writel(host, CDTHRCTL, SDMMC_SET_RD_THLD(thld_size, 1)); |
| 787 | return; |
| 788 | |
| 789 | disable: |
| 790 | mci_writel(host, CDTHRCTL, SDMMC_SET_RD_THLD(0, 0)); |
| 791 | } |
| 792 | |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 793 | static int dw_mci_submit_data_dma(struct dw_mci *host, struct mmc_data *data) |
| 794 | { |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 795 | unsigned long irqflags; |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 796 | int sg_len; |
| 797 | u32 temp; |
| 798 | |
| 799 | host->using_dma = 0; |
| 800 | |
| 801 | /* If we don't have a channel, we can't do DMA */ |
| 802 | if (!host->use_dma) |
| 803 | return -ENODEV; |
| 804 | |
| 805 | sg_len = dw_mci_pre_dma_transfer(host, data, 0); |
Seungwon Jeon | a99aa9b | 2012-04-10 09:53:32 +0900 | [diff] [blame] | 806 | if (sg_len < 0) { |
| 807 | host->dma_ops->stop(host); |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 808 | return sg_len; |
Seungwon Jeon | a99aa9b | 2012-04-10 09:53:32 +0900 | [diff] [blame] | 809 | } |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 810 | |
James Hogan | 03e8cb5 | 2011-06-29 09:28:43 +0100 | [diff] [blame] | 811 | host->using_dma = 1; |
| 812 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 813 | dev_vdbg(host->dev, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 814 | "sd sg_cpu: %#lx sg_dma: %#lx sg_len: %d\n", |
| 815 | (unsigned long)host->sg_cpu, (unsigned long)host->sg_dma, |
| 816 | sg_len); |
| 817 | |
Seungwon Jeon | 5242689 | 2013-08-31 00:13:42 +0900 | [diff] [blame] | 818 | /* |
| 819 | * Decide the MSIZE and RX/TX Watermark. |
| 820 | * If current block size is same with previous size, |
| 821 | * no need to update fifoth. |
| 822 | */ |
| 823 | if (host->prev_blksz != data->blksz) |
| 824 | dw_mci_adjust_fifoth(host, data); |
| 825 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 826 | /* Enable the DMA interface */ |
| 827 | temp = mci_readl(host, CTRL); |
| 828 | temp |= SDMMC_CTRL_DMA_ENABLE; |
| 829 | mci_writel(host, CTRL, temp); |
| 830 | |
| 831 | /* Disable RX/TX IRQs, let DMA handle it */ |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 832 | spin_lock_irqsave(&host->irq_lock, irqflags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 833 | temp = mci_readl(host, INTMASK); |
| 834 | temp &= ~(SDMMC_INT_RXDR | SDMMC_INT_TXDR); |
| 835 | mci_writel(host, INTMASK, temp); |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 836 | spin_unlock_irqrestore(&host->irq_lock, irqflags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 837 | |
| 838 | host->dma_ops->start(host, sg_len); |
| 839 | |
| 840 | return 0; |
| 841 | } |
| 842 | |
| 843 | static void dw_mci_submit_data(struct dw_mci *host, struct mmc_data *data) |
| 844 | { |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 845 | unsigned long irqflags; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 846 | u32 temp; |
| 847 | |
| 848 | data->error = -EINPROGRESS; |
| 849 | |
| 850 | WARN_ON(host->data); |
| 851 | host->sg = NULL; |
| 852 | host->data = data; |
| 853 | |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 854 | if (data->flags & MMC_DATA_READ) { |
James Hogan | 55c5efbc | 2011-06-29 09:29:58 +0100 | [diff] [blame] | 855 | host->dir_status = DW_MCI_RECV_STATUS; |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 856 | dw_mci_ctrl_rd_thld(host, data); |
| 857 | } else { |
James Hogan | 55c5efbc | 2011-06-29 09:29:58 +0100 | [diff] [blame] | 858 | host->dir_status = DW_MCI_SEND_STATUS; |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 859 | } |
James Hogan | 55c5efbc | 2011-06-29 09:29:58 +0100 | [diff] [blame] | 860 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 861 | if (dw_mci_submit_data_dma(host, data)) { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 862 | int flags = SG_MITER_ATOMIC; |
| 863 | if (host->data->flags & MMC_DATA_READ) |
| 864 | flags |= SG_MITER_TO_SG; |
| 865 | else |
| 866 | flags |= SG_MITER_FROM_SG; |
| 867 | |
| 868 | sg_miter_start(&host->sg_miter, data->sg, data->sg_len, flags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 869 | host->sg = data->sg; |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 870 | host->part_buf_start = 0; |
| 871 | host->part_buf_count = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 872 | |
James Hogan | b40af3a | 2011-06-24 13:54:06 +0100 | [diff] [blame] | 873 | mci_writel(host, RINTSTS, SDMMC_INT_TXDR | SDMMC_INT_RXDR); |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 874 | |
| 875 | spin_lock_irqsave(&host->irq_lock, irqflags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 876 | temp = mci_readl(host, INTMASK); |
| 877 | temp |= SDMMC_INT_TXDR | SDMMC_INT_RXDR; |
| 878 | mci_writel(host, INTMASK, temp); |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 879 | spin_unlock_irqrestore(&host->irq_lock, irqflags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 880 | |
| 881 | temp = mci_readl(host, CTRL); |
| 882 | temp &= ~SDMMC_CTRL_DMA_ENABLE; |
| 883 | mci_writel(host, CTRL, temp); |
Seungwon Jeon | 5242689 | 2013-08-31 00:13:42 +0900 | [diff] [blame] | 884 | |
| 885 | /* |
| 886 | * Use the initial fifoth_val for PIO mode. |
| 887 | * If next issued data may be transfered by DMA mode, |
| 888 | * prev_blksz should be invalidated. |
| 889 | */ |
| 890 | mci_writel(host, FIFOTH, host->fifoth_val); |
| 891 | host->prev_blksz = 0; |
| 892 | } else { |
| 893 | /* |
| 894 | * Keep the current block size. |
| 895 | * It will be used to decide whether to update |
| 896 | * fifoth register next time. |
| 897 | */ |
| 898 | host->prev_blksz = data->blksz; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 899 | } |
| 900 | } |
| 901 | |
| 902 | static void mci_send_cmd(struct dw_mci_slot *slot, u32 cmd, u32 arg) |
| 903 | { |
| 904 | struct dw_mci *host = slot->host; |
| 905 | unsigned long timeout = jiffies + msecs_to_jiffies(500); |
| 906 | unsigned int cmd_status = 0; |
| 907 | |
| 908 | mci_writel(host, CMDARG, arg); |
| 909 | wmb(); |
Doug Anderson | 0bdbd0e | 2015-02-20 12:31:56 -0800 | [diff] [blame] | 910 | dw_mci_wait_while_busy(host, cmd); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 911 | mci_writel(host, CMD, SDMMC_CMD_START | cmd); |
| 912 | |
| 913 | while (time_before(jiffies, timeout)) { |
| 914 | cmd_status = mci_readl(host, CMD); |
| 915 | if (!(cmd_status & SDMMC_CMD_START)) |
| 916 | return; |
| 917 | } |
| 918 | dev_err(&slot->mmc->class_dev, |
| 919 | "Timeout sending command (cmd %#x arg %#x status %#x)\n", |
| 920 | cmd, arg, cmd_status); |
| 921 | } |
| 922 | |
Abhilash Kesavan | ab26912 | 2012-11-19 10:26:21 +0530 | [diff] [blame] | 923 | 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] | 924 | { |
| 925 | struct dw_mci *host = slot->host; |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 926 | unsigned int clock = slot->clock; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 927 | u32 div; |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 928 | u32 clk_en_a; |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 929 | u32 sdmmc_cmd_bits = SDMMC_CMD_UPD_CLK | SDMMC_CMD_PRV_DAT_WAIT; |
| 930 | |
| 931 | /* We must continue to set bit 28 in CMD until the change is complete */ |
| 932 | if (host->state == STATE_WAITING_CMD11_DONE) |
| 933 | sdmmc_cmd_bits |= SDMMC_CMD_VOLT_SWITCH; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 934 | |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 935 | if (!clock) { |
| 936 | mci_writel(host, CLKENA, 0); |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 937 | mci_send_cmd(slot, sdmmc_cmd_bits, 0); |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 938 | } else if (clock != host->current_speed || force_clkinit) { |
| 939 | div = host->bus_hz / clock; |
| 940 | if (host->bus_hz % clock && host->bus_hz > clock) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 941 | /* |
| 942 | * move the + 1 after the divide to prevent |
| 943 | * over-clocking the card. |
| 944 | */ |
Seungwon Jeon | e419990 | 2012-05-22 13:01:21 +0900 | [diff] [blame] | 945 | div += 1; |
| 946 | |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 947 | div = (host->bus_hz != clock) ? DIV_ROUND_UP(div, 2) : 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 948 | |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 949 | if ((clock << div) != slot->__clk_old || force_clkinit) |
| 950 | dev_info(&slot->mmc->class_dev, |
| 951 | "Bus speed (slot %d) = %dHz (slot req %dHz, actual %dHZ div = %d)\n", |
| 952 | slot->id, host->bus_hz, clock, |
| 953 | div ? ((host->bus_hz / div) >> 1) : |
| 954 | host->bus_hz, div); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 955 | |
| 956 | /* disable clock */ |
| 957 | mci_writel(host, CLKENA, 0); |
| 958 | mci_writel(host, CLKSRC, 0); |
| 959 | |
| 960 | /* inform CIU */ |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 961 | mci_send_cmd(slot, sdmmc_cmd_bits, 0); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 962 | |
| 963 | /* set clock to desired speed */ |
| 964 | mci_writel(host, CLKDIV, div); |
| 965 | |
| 966 | /* inform CIU */ |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 967 | mci_send_cmd(slot, sdmmc_cmd_bits, 0); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 968 | |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 969 | /* enable clock; only low power if no SDIO */ |
| 970 | clk_en_a = SDMMC_CLKEN_ENABLE << slot->id; |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 971 | if (!test_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags)) |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 972 | clk_en_a |= SDMMC_CLKEN_LOW_PWR << slot->id; |
| 973 | mci_writel(host, CLKENA, clk_en_a); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 974 | |
| 975 | /* inform CIU */ |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 976 | mci_send_cmd(slot, sdmmc_cmd_bits, 0); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 977 | |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 978 | /* keep the clock with reflecting clock dividor */ |
| 979 | slot->__clk_old = clock << div; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 980 | } |
| 981 | |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 982 | host->current_speed = clock; |
| 983 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 984 | /* Set the current slot bus width */ |
Seungwon Jeon | 1d56c45 | 2011-06-20 17:23:53 +0900 | [diff] [blame] | 985 | mci_writel(host, CTYPE, (slot->ctype << slot->id)); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 986 | } |
| 987 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 988 | static void __dw_mci_start_request(struct dw_mci *host, |
| 989 | struct dw_mci_slot *slot, |
| 990 | struct mmc_command *cmd) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 991 | { |
| 992 | struct mmc_request *mrq; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 993 | struct mmc_data *data; |
| 994 | u32 cmdflags; |
| 995 | |
| 996 | mrq = slot->mrq; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 997 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 998 | host->cur_slot = slot; |
| 999 | host->mrq = mrq; |
| 1000 | |
| 1001 | host->pending_events = 0; |
| 1002 | host->completed_events = 0; |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1003 | host->cmd_status = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1004 | host->data_status = 0; |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1005 | host->dir_status = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1006 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 1007 | data = cmd->data; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1008 | if (data) { |
Jaehoon Chung | f16afa8 | 2014-03-03 11:36:45 +0900 | [diff] [blame] | 1009 | mci_writel(host, TMOUT, 0xFFFFFFFF); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1010 | mci_writel(host, BYTCNT, data->blksz*data->blocks); |
| 1011 | mci_writel(host, BLKSIZ, data->blksz); |
| 1012 | } |
| 1013 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1014 | cmdflags = dw_mci_prepare_command(slot->mmc, cmd); |
| 1015 | |
| 1016 | /* this is the first command, send the initialization clock */ |
| 1017 | if (test_and_clear_bit(DW_MMC_CARD_NEED_INIT, &slot->flags)) |
| 1018 | cmdflags |= SDMMC_CMD_INIT; |
| 1019 | |
| 1020 | if (data) { |
| 1021 | dw_mci_submit_data(host, data); |
| 1022 | wmb(); |
| 1023 | } |
| 1024 | |
| 1025 | dw_mci_start_command(host, cmd, cmdflags); |
| 1026 | |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 1027 | if (cmd->opcode == SD_SWITCH_VOLTAGE) { |
Doug Anderson | 49ba030 | 2015-04-03 11:13:07 -0700 | [diff] [blame] | 1028 | unsigned long irqflags; |
| 1029 | |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 1030 | /* |
Doug Anderson | 8886a6f | 2015-04-03 11:13:05 -0700 | [diff] [blame] | 1031 | * Databook says to fail after 2ms w/ no response, but evidence |
| 1032 | * shows that sometimes the cmd11 interrupt takes over 130ms. |
| 1033 | * We'll set to 500ms, plus an extra jiffy just in case jiffies |
| 1034 | * is just about to roll over. |
Doug Anderson | 49ba030 | 2015-04-03 11:13:07 -0700 | [diff] [blame] | 1035 | * |
| 1036 | * We do this whole thing under spinlock and only if the |
| 1037 | * command hasn't already completed (indicating the the irq |
| 1038 | * already ran so we don't want the timeout). |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 1039 | */ |
Doug Anderson | 49ba030 | 2015-04-03 11:13:07 -0700 | [diff] [blame] | 1040 | spin_lock_irqsave(&host->irq_lock, irqflags); |
| 1041 | if (!test_bit(EVENT_CMD_COMPLETE, &host->pending_events)) |
| 1042 | mod_timer(&host->cmd11_timer, |
| 1043 | jiffies + msecs_to_jiffies(500) + 1); |
| 1044 | spin_unlock_irqrestore(&host->irq_lock, irqflags); |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 1045 | } |
| 1046 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1047 | if (mrq->stop) |
| 1048 | host->stop_cmdr = dw_mci_prepare_command(slot->mmc, mrq->stop); |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 1049 | else |
| 1050 | host->stop_cmdr = dw_mci_prep_stop_abort(host, cmd); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1051 | } |
| 1052 | |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 1053 | static void dw_mci_start_request(struct dw_mci *host, |
| 1054 | struct dw_mci_slot *slot) |
| 1055 | { |
| 1056 | struct mmc_request *mrq = slot->mrq; |
| 1057 | struct mmc_command *cmd; |
| 1058 | |
| 1059 | cmd = mrq->sbc ? mrq->sbc : mrq->cmd; |
| 1060 | __dw_mci_start_request(host, slot, cmd); |
| 1061 | } |
| 1062 | |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 1063 | /* must be called with host->lock held */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1064 | static void dw_mci_queue_request(struct dw_mci *host, struct dw_mci_slot *slot, |
| 1065 | struct mmc_request *mrq) |
| 1066 | { |
| 1067 | dev_vdbg(&slot->mmc->class_dev, "queue request: state=%d\n", |
| 1068 | host->state); |
| 1069 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1070 | slot->mrq = mrq; |
| 1071 | |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1072 | if (host->state == STATE_WAITING_CMD11_DONE) { |
| 1073 | dev_warn(&slot->mmc->class_dev, |
| 1074 | "Voltage change didn't complete\n"); |
| 1075 | /* |
| 1076 | * this case isn't expected to happen, so we can |
| 1077 | * either crash here or just try to continue on |
| 1078 | * in the closest possible state |
| 1079 | */ |
| 1080 | host->state = STATE_IDLE; |
| 1081 | } |
| 1082 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1083 | if (host->state == STATE_IDLE) { |
| 1084 | host->state = STATE_SENDING_CMD; |
| 1085 | dw_mci_start_request(host, slot); |
| 1086 | } else { |
| 1087 | list_add_tail(&slot->queue_node, &host->queue); |
| 1088 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1089 | } |
| 1090 | |
| 1091 | static void dw_mci_request(struct mmc_host *mmc, struct mmc_request *mrq) |
| 1092 | { |
| 1093 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1094 | struct dw_mci *host = slot->host; |
| 1095 | |
| 1096 | WARN_ON(slot->mrq); |
| 1097 | |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 1098 | /* |
| 1099 | * The check for card presence and queueing of the request must be |
| 1100 | * atomic, otherwise the card could be removed in between and the |
| 1101 | * request wouldn't fail until another card was inserted. |
| 1102 | */ |
| 1103 | spin_lock_bh(&host->lock); |
| 1104 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1105 | if (!test_bit(DW_MMC_CARD_PRESENT, &slot->flags)) { |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 1106 | spin_unlock_bh(&host->lock); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1107 | mrq->cmd->error = -ENOMEDIUM; |
| 1108 | mmc_request_done(mmc, mrq); |
| 1109 | return; |
| 1110 | } |
| 1111 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1112 | dw_mci_queue_request(host, slot, mrq); |
James Hogan | 7456caa | 2011-06-24 13:55:10 +0100 | [diff] [blame] | 1113 | |
| 1114 | spin_unlock_bh(&host->lock); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1115 | } |
| 1116 | |
| 1117 | static void dw_mci_set_ios(struct mmc_host *mmc, struct mmc_ios *ios) |
| 1118 | { |
| 1119 | struct dw_mci_slot *slot = mmc_priv(mmc); |
Arnd Bergmann | e95baf1 | 2012-11-08 14:26:11 +0000 | [diff] [blame] | 1120 | const struct dw_mci_drv_data *drv_data = slot->host->drv_data; |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 1121 | u32 regs; |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1122 | int ret; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1123 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1124 | switch (ios->bus_width) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1125 | case MMC_BUS_WIDTH_4: |
| 1126 | slot->ctype = SDMMC_CTYPE_4BIT; |
| 1127 | break; |
Jaehoon Chung | c9b2a06 | 2011-02-17 16:12:38 +0900 | [diff] [blame] | 1128 | case MMC_BUS_WIDTH_8: |
| 1129 | slot->ctype = SDMMC_CTYPE_8BIT; |
| 1130 | break; |
Jaehoon Chung | b2f7cb4 | 2012-11-08 17:35:31 +0900 | [diff] [blame] | 1131 | default: |
| 1132 | /* set default 1 bit mode */ |
| 1133 | slot->ctype = SDMMC_CTYPE_1BIT; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1134 | } |
| 1135 | |
Seungwon Jeon | 3f51429 | 2012-01-02 16:00:02 +0900 | [diff] [blame] | 1136 | regs = mci_readl(slot->host, UHS_REG); |
| 1137 | |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 1138 | /* DDR mode set */ |
Seungwon Jeon | 8011313 | 2015-01-29 08:11:57 +0530 | [diff] [blame] | 1139 | if (ios->timing == MMC_TIMING_MMC_DDR52 || |
| 1140 | ios->timing == MMC_TIMING_MMC_HS400) |
Hyeonsu Kim | c69042a | 2013-02-22 09:32:46 +0900 | [diff] [blame] | 1141 | regs |= ((0x1 << slot->id) << 16); |
Seungwon Jeon | 3f51429 | 2012-01-02 16:00:02 +0900 | [diff] [blame] | 1142 | else |
Hyeonsu Kim | c69042a | 2013-02-22 09:32:46 +0900 | [diff] [blame] | 1143 | regs &= ~((0x1 << slot->id) << 16); |
Seungwon Jeon | 3f51429 | 2012-01-02 16:00:02 +0900 | [diff] [blame] | 1144 | |
| 1145 | mci_writel(slot->host, UHS_REG, regs); |
Seungwon Jeon | f1d2736 | 2013-08-31 00:13:55 +0900 | [diff] [blame] | 1146 | slot->host->timing = ios->timing; |
Jaehoon Chung | 41babf7 | 2011-02-24 13:46:11 +0900 | [diff] [blame] | 1147 | |
Doug Anderson | fdf492a | 2013-08-31 00:11:43 +0900 | [diff] [blame] | 1148 | /* |
| 1149 | * Use mirror of ios->clock to prevent race with mmc |
| 1150 | * core ios update when finding the minimum. |
| 1151 | */ |
| 1152 | slot->clock = ios->clock; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1153 | |
James Hogan | cb27a84 | 2012-10-16 09:43:08 +0100 | [diff] [blame] | 1154 | if (drv_data && drv_data->set_ios) |
| 1155 | drv_data->set_ios(slot->host, ios); |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 1156 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1157 | switch (ios->power_mode) { |
| 1158 | case MMC_POWER_UP: |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1159 | if (!IS_ERR(mmc->supply.vmmc)) { |
| 1160 | ret = mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, |
| 1161 | ios->vdd); |
| 1162 | if (ret) { |
| 1163 | dev_err(slot->host->dev, |
| 1164 | "failed to enable vmmc regulator\n"); |
| 1165 | /*return, if failed turn on vmmc*/ |
| 1166 | return; |
| 1167 | } |
| 1168 | } |
Doug Anderson | 29d0d16 | 2015-01-13 15:58:44 -0800 | [diff] [blame] | 1169 | set_bit(DW_MMC_CARD_NEED_INIT, &slot->flags); |
| 1170 | regs = mci_readl(slot->host, PWREN); |
| 1171 | regs |= (1 << slot->id); |
| 1172 | mci_writel(slot->host, PWREN, regs); |
| 1173 | break; |
| 1174 | case MMC_POWER_ON: |
Doug Anderson | d1f1dd8 | 2015-02-20 10:57:19 -0800 | [diff] [blame] | 1175 | if (!slot->host->vqmmc_enabled) { |
| 1176 | if (!IS_ERR(mmc->supply.vqmmc)) { |
| 1177 | ret = regulator_enable(mmc->supply.vqmmc); |
| 1178 | if (ret < 0) |
| 1179 | dev_err(slot->host->dev, |
| 1180 | "failed to enable vqmmc\n"); |
| 1181 | else |
| 1182 | slot->host->vqmmc_enabled = true; |
| 1183 | |
| 1184 | } else { |
| 1185 | /* Keep track so we don't reset again */ |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1186 | slot->host->vqmmc_enabled = true; |
Doug Anderson | d1f1dd8 | 2015-02-20 10:57:19 -0800 | [diff] [blame] | 1187 | } |
| 1188 | |
| 1189 | /* Reset our state machine after powering on */ |
| 1190 | dw_mci_ctrl_reset(slot->host, |
| 1191 | SDMMC_CTRL_ALL_RESET_FLAGS); |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1192 | } |
Doug Anderson | 655babb | 2015-02-20 10:57:18 -0800 | [diff] [blame] | 1193 | |
| 1194 | /* Adjust clock / bus width after power is up */ |
| 1195 | dw_mci_setup_bus(slot, false); |
| 1196 | |
James Hogan | e6f34e2 | 2013-03-12 10:43:32 +0000 | [diff] [blame] | 1197 | break; |
| 1198 | case MMC_POWER_OFF: |
Doug Anderson | 655babb | 2015-02-20 10:57:18 -0800 | [diff] [blame] | 1199 | /* Turn clock off before power goes down */ |
| 1200 | dw_mci_setup_bus(slot, false); |
| 1201 | |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1202 | if (!IS_ERR(mmc->supply.vmmc)) |
| 1203 | mmc_regulator_set_ocr(mmc, mmc->supply.vmmc, 0); |
| 1204 | |
Doug Anderson | d1f1dd8 | 2015-02-20 10:57:19 -0800 | [diff] [blame] | 1205 | if (!IS_ERR(mmc->supply.vqmmc) && slot->host->vqmmc_enabled) |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1206 | regulator_disable(mmc->supply.vqmmc); |
Doug Anderson | d1f1dd8 | 2015-02-20 10:57:19 -0800 | [diff] [blame] | 1207 | slot->host->vqmmc_enabled = false; |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 1208 | |
Jaehoon Chung | 4366dcc | 2013-03-26 21:36:14 +0900 | [diff] [blame] | 1209 | regs = mci_readl(slot->host, PWREN); |
| 1210 | regs &= ~(1 << slot->id); |
| 1211 | mci_writel(slot->host, PWREN, regs); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1212 | break; |
| 1213 | default: |
| 1214 | break; |
| 1215 | } |
Doug Anderson | 655babb | 2015-02-20 10:57:18 -0800 | [diff] [blame] | 1216 | |
| 1217 | if (slot->host->state == STATE_WAITING_CMD11_DONE && ios->clock != 0) |
| 1218 | slot->host->state = STATE_IDLE; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1219 | } |
| 1220 | |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1221 | static int dw_mci_card_busy(struct mmc_host *mmc) |
| 1222 | { |
| 1223 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1224 | u32 status; |
| 1225 | |
| 1226 | /* |
| 1227 | * Check the busy bit which is low when DAT[3:0] |
| 1228 | * (the data lines) are 0000 |
| 1229 | */ |
| 1230 | status = mci_readl(slot->host, STATUS); |
| 1231 | |
| 1232 | return !!(status & SDMMC_STATUS_BUSY); |
| 1233 | } |
| 1234 | |
| 1235 | static int dw_mci_switch_voltage(struct mmc_host *mmc, struct mmc_ios *ios) |
| 1236 | { |
| 1237 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1238 | struct dw_mci *host = slot->host; |
| 1239 | u32 uhs; |
| 1240 | u32 v18 = SDMMC_UHS_18V << slot->id; |
| 1241 | int min_uv, max_uv; |
| 1242 | int ret; |
| 1243 | |
| 1244 | /* |
| 1245 | * Program the voltage. Note that some instances of dw_mmc may use |
| 1246 | * the UHS_REG for this. For other instances (like exynos) the UHS_REG |
| 1247 | * does no harm but you need to set the regulator directly. Try both. |
| 1248 | */ |
| 1249 | uhs = mci_readl(host, UHS_REG); |
| 1250 | if (ios->signal_voltage == MMC_SIGNAL_VOLTAGE_330) { |
| 1251 | min_uv = 2700000; |
| 1252 | max_uv = 3600000; |
| 1253 | uhs &= ~v18; |
| 1254 | } else { |
| 1255 | min_uv = 1700000; |
| 1256 | max_uv = 1950000; |
| 1257 | uhs |= v18; |
| 1258 | } |
| 1259 | if (!IS_ERR(mmc->supply.vqmmc)) { |
| 1260 | ret = regulator_set_voltage(mmc->supply.vqmmc, min_uv, max_uv); |
| 1261 | |
| 1262 | if (ret) { |
Doug Anderson | b19caf3 | 2014-10-10 21:16:16 -0700 | [diff] [blame] | 1263 | dev_dbg(&mmc->class_dev, |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1264 | "Regulator set error %d: %d - %d\n", |
| 1265 | ret, min_uv, max_uv); |
| 1266 | return ret; |
| 1267 | } |
| 1268 | } |
| 1269 | mci_writel(host, UHS_REG, uhs); |
| 1270 | |
| 1271 | return 0; |
| 1272 | } |
| 1273 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1274 | static int dw_mci_get_ro(struct mmc_host *mmc) |
| 1275 | { |
| 1276 | int read_only; |
| 1277 | struct dw_mci_slot *slot = mmc_priv(mmc); |
Jaehoon Chung | 9795a84 | 2014-03-03 11:36:46 +0900 | [diff] [blame] | 1278 | int gpio_ro = mmc_gpio_get_ro(mmc); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1279 | |
| 1280 | /* Use platform get_ro function, else try on board write protect */ |
Jaehoon Chung | 26375b5 | 2014-08-07 16:37:58 +0900 | [diff] [blame] | 1281 | if ((slot->quirks & DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT) || |
| 1282 | (slot->host->quirks & DW_MCI_QUIRK_NO_WRITE_PROTECT)) |
Thomas Abraham | b4967aa | 2012-09-17 18:16:39 +0000 | [diff] [blame] | 1283 | read_only = 0; |
Jaehoon Chung | 9795a84 | 2014-03-03 11:36:46 +0900 | [diff] [blame] | 1284 | else if (!IS_ERR_VALUE(gpio_ro)) |
| 1285 | read_only = gpio_ro; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1286 | else |
| 1287 | read_only = |
| 1288 | mci_readl(slot->host, WRTPRT) & (1 << slot->id) ? 1 : 0; |
| 1289 | |
| 1290 | dev_dbg(&mmc->class_dev, "card is %s\n", |
| 1291 | read_only ? "read-only" : "read-write"); |
| 1292 | |
| 1293 | return read_only; |
| 1294 | } |
| 1295 | |
| 1296 | static int dw_mci_get_cd(struct mmc_host *mmc) |
| 1297 | { |
| 1298 | int present; |
| 1299 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1300 | struct dw_mci_board *brd = slot->host->pdata; |
Zhangfei Gao | 7cf347b | 2014-01-16 20:48:47 +0800 | [diff] [blame] | 1301 | struct dw_mci *host = slot->host; |
| 1302 | int gpio_cd = mmc_gpio_get_cd(mmc); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1303 | |
| 1304 | /* Use platform get_cd function, else try onboard card detect */ |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 1305 | if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION) |
| 1306 | present = 1; |
Zhangfei Gao | bf626e5 | 2014-01-09 22:35:10 +0800 | [diff] [blame] | 1307 | else if (!IS_ERR_VALUE(gpio_cd)) |
Zhangfei Gao | 7cf347b | 2014-01-16 20:48:47 +0800 | [diff] [blame] | 1308 | present = gpio_cd; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1309 | else |
| 1310 | present = (mci_readl(slot->host, CDETECT) & (1 << slot->id)) |
| 1311 | == 0 ? 1 : 0; |
| 1312 | |
Zhangfei Gao | 7cf347b | 2014-01-16 20:48:47 +0800 | [diff] [blame] | 1313 | spin_lock_bh(&host->lock); |
Zhangfei Gao | bf626e5 | 2014-01-09 22:35:10 +0800 | [diff] [blame] | 1314 | if (present) { |
| 1315 | set_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1316 | dev_dbg(&mmc->class_dev, "card is present\n"); |
Zhangfei Gao | bf626e5 | 2014-01-09 22:35:10 +0800 | [diff] [blame] | 1317 | } else { |
| 1318 | clear_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1319 | dev_dbg(&mmc->class_dev, "card is not present\n"); |
Zhangfei Gao | bf626e5 | 2014-01-09 22:35:10 +0800 | [diff] [blame] | 1320 | } |
Zhangfei Gao | 7cf347b | 2014-01-16 20:48:47 +0800 | [diff] [blame] | 1321 | spin_unlock_bh(&host->lock); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1322 | |
| 1323 | return present; |
| 1324 | } |
| 1325 | |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 1326 | static void dw_mci_init_card(struct mmc_host *mmc, struct mmc_card *card) |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 1327 | { |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 1328 | struct dw_mci_slot *slot = mmc_priv(mmc); |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 1329 | struct dw_mci *host = slot->host; |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 1330 | |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 1331 | /* |
| 1332 | * Low power mode will stop the card clock when idle. According to the |
| 1333 | * description of the CLKENA register we should disable low power mode |
| 1334 | * for SDIO cards if we need SDIO interrupts to work. |
| 1335 | */ |
| 1336 | if (mmc->caps & MMC_CAP_SDIO_IRQ) { |
| 1337 | const u32 clken_low_pwr = SDMMC_CLKEN_LOW_PWR << slot->id; |
| 1338 | u32 clk_en_a_old; |
| 1339 | u32 clk_en_a; |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 1340 | |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 1341 | clk_en_a_old = mci_readl(host, CLKENA); |
| 1342 | |
| 1343 | if (card->type == MMC_TYPE_SDIO || |
| 1344 | card->type == MMC_TYPE_SD_COMBO) { |
| 1345 | set_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags); |
| 1346 | clk_en_a = clk_en_a_old & ~clken_low_pwr; |
| 1347 | } else { |
| 1348 | clear_bit(DW_MMC_CARD_NO_LOW_PWR, &slot->flags); |
| 1349 | clk_en_a = clk_en_a_old | clken_low_pwr; |
| 1350 | } |
| 1351 | |
| 1352 | if (clk_en_a != clk_en_a_old) { |
| 1353 | mci_writel(host, CLKENA, clk_en_a); |
| 1354 | mci_send_cmd(slot, SDMMC_CMD_UPD_CLK | |
| 1355 | SDMMC_CMD_PRV_DAT_WAIT, 0); |
| 1356 | } |
Doug Anderson | 9623b5b | 2012-07-25 08:33:17 -0700 | [diff] [blame] | 1357 | } |
| 1358 | } |
| 1359 | |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1360 | static void dw_mci_enable_sdio_irq(struct mmc_host *mmc, int enb) |
| 1361 | { |
| 1362 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1363 | struct dw_mci *host = slot->host; |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 1364 | unsigned long irqflags; |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1365 | u32 int_mask; |
| 1366 | |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 1367 | spin_lock_irqsave(&host->irq_lock, irqflags); |
| 1368 | |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1369 | /* Enable/disable Slot Specific SDIO interrupt */ |
| 1370 | int_mask = mci_readl(host, INTMASK); |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 1371 | if (enb) |
| 1372 | int_mask |= SDMMC_INT_SDIO(slot->sdio_id); |
| 1373 | else |
| 1374 | int_mask &= ~SDMMC_INT_SDIO(slot->sdio_id); |
| 1375 | mci_writel(host, INTMASK, int_mask); |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 1376 | |
| 1377 | spin_unlock_irqrestore(&host->irq_lock, irqflags); |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1378 | } |
| 1379 | |
Seungwon Jeon | 0976f16 | 2013-08-31 00:12:42 +0900 | [diff] [blame] | 1380 | static int dw_mci_execute_tuning(struct mmc_host *mmc, u32 opcode) |
| 1381 | { |
| 1382 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1383 | struct dw_mci *host = slot->host; |
| 1384 | const struct dw_mci_drv_data *drv_data = host->drv_data; |
Seungwon Jeon | 0976f16 | 2013-08-31 00:12:42 +0900 | [diff] [blame] | 1385 | int err = -ENOSYS; |
| 1386 | |
Seungwon Jeon | 0976f16 | 2013-08-31 00:12:42 +0900 | [diff] [blame] | 1387 | if (drv_data && drv_data->execute_tuning) |
Ulf Hansson | 6c2c650 | 2014-12-01 16:13:39 +0100 | [diff] [blame] | 1388 | err = drv_data->execute_tuning(slot); |
Seungwon Jeon | 0976f16 | 2013-08-31 00:12:42 +0900 | [diff] [blame] | 1389 | return err; |
| 1390 | } |
| 1391 | |
Wu Fengguang | c22f5e1 | 2015-03-05 18:02:54 +0800 | [diff] [blame] | 1392 | static int dw_mci_prepare_hs400_tuning(struct mmc_host *mmc, struct mmc_ios *ios) |
Seungwon Jeon | 8011313 | 2015-01-29 08:11:57 +0530 | [diff] [blame] | 1393 | { |
| 1394 | struct dw_mci_slot *slot = mmc_priv(mmc); |
| 1395 | struct dw_mci *host = slot->host; |
| 1396 | const struct dw_mci_drv_data *drv_data = host->drv_data; |
| 1397 | |
| 1398 | if (drv_data && drv_data->prepare_hs400_tuning) |
| 1399 | return drv_data->prepare_hs400_tuning(host, ios); |
| 1400 | |
| 1401 | return 0; |
| 1402 | } |
| 1403 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1404 | static const struct mmc_host_ops dw_mci_ops = { |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1405 | .request = dw_mci_request, |
Seungwon Jeon | 9aa5140 | 2012-02-06 16:55:07 +0900 | [diff] [blame] | 1406 | .pre_req = dw_mci_pre_req, |
| 1407 | .post_req = dw_mci_post_req, |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 1408 | .set_ios = dw_mci_set_ios, |
| 1409 | .get_ro = dw_mci_get_ro, |
| 1410 | .get_cd = dw_mci_get_cd, |
| 1411 | .enable_sdio_irq = dw_mci_enable_sdio_irq, |
Seungwon Jeon | 0976f16 | 2013-08-31 00:12:42 +0900 | [diff] [blame] | 1412 | .execute_tuning = dw_mci_execute_tuning, |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1413 | .card_busy = dw_mci_card_busy, |
| 1414 | .start_signal_voltage_switch = dw_mci_switch_voltage, |
Doug Anderson | b24c8b2 | 2014-12-02 15:42:46 -0800 | [diff] [blame] | 1415 | .init_card = dw_mci_init_card, |
Seungwon Jeon | 8011313 | 2015-01-29 08:11:57 +0530 | [diff] [blame] | 1416 | .prepare_hs400_tuning = dw_mci_prepare_hs400_tuning, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1417 | }; |
| 1418 | |
| 1419 | static void dw_mci_request_end(struct dw_mci *host, struct mmc_request *mrq) |
| 1420 | __releases(&host->lock) |
| 1421 | __acquires(&host->lock) |
| 1422 | { |
| 1423 | struct dw_mci_slot *slot; |
| 1424 | struct mmc_host *prev_mmc = host->cur_slot->mmc; |
| 1425 | |
| 1426 | WARN_ON(host->cmd || host->data); |
| 1427 | |
| 1428 | host->cur_slot->mrq = NULL; |
| 1429 | host->mrq = NULL; |
| 1430 | if (!list_empty(&host->queue)) { |
| 1431 | slot = list_entry(host->queue.next, |
| 1432 | struct dw_mci_slot, queue_node); |
| 1433 | list_del(&slot->queue_node); |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1434 | dev_vdbg(host->dev, "list not empty: %s is next\n", |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1435 | mmc_hostname(slot->mmc)); |
| 1436 | host->state = STATE_SENDING_CMD; |
| 1437 | dw_mci_start_request(host, slot); |
| 1438 | } else { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 1439 | dev_vdbg(host->dev, "list empty\n"); |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1440 | |
| 1441 | if (host->state == STATE_SENDING_CMD11) |
| 1442 | host->state = STATE_WAITING_CMD11_DONE; |
| 1443 | else |
| 1444 | host->state = STATE_IDLE; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1445 | } |
| 1446 | |
| 1447 | spin_unlock(&host->lock); |
| 1448 | mmc_request_done(prev_mmc, mrq); |
| 1449 | spin_lock(&host->lock); |
| 1450 | } |
| 1451 | |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1452 | static int dw_mci_command_complete(struct dw_mci *host, struct mmc_command *cmd) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1453 | { |
| 1454 | u32 status = host->cmd_status; |
| 1455 | |
| 1456 | host->cmd_status = 0; |
| 1457 | |
| 1458 | /* Read the response from the card (up to 16 bytes) */ |
| 1459 | if (cmd->flags & MMC_RSP_PRESENT) { |
| 1460 | if (cmd->flags & MMC_RSP_136) { |
| 1461 | cmd->resp[3] = mci_readl(host, RESP0); |
| 1462 | cmd->resp[2] = mci_readl(host, RESP1); |
| 1463 | cmd->resp[1] = mci_readl(host, RESP2); |
| 1464 | cmd->resp[0] = mci_readl(host, RESP3); |
| 1465 | } else { |
| 1466 | cmd->resp[0] = mci_readl(host, RESP0); |
| 1467 | cmd->resp[1] = 0; |
| 1468 | cmd->resp[2] = 0; |
| 1469 | cmd->resp[3] = 0; |
| 1470 | } |
| 1471 | } |
| 1472 | |
| 1473 | if (status & SDMMC_INT_RTO) |
| 1474 | cmd->error = -ETIMEDOUT; |
| 1475 | else if ((cmd->flags & MMC_RSP_CRC) && (status & SDMMC_INT_RCRC)) |
| 1476 | cmd->error = -EILSEQ; |
| 1477 | else if (status & SDMMC_INT_RESP_ERR) |
| 1478 | cmd->error = -EIO; |
| 1479 | else |
| 1480 | cmd->error = 0; |
| 1481 | |
| 1482 | if (cmd->error) { |
| 1483 | /* newer ip versions need a delay between retries */ |
| 1484 | if (host->quirks & DW_MCI_QUIRK_RETRY_DELAY) |
| 1485 | mdelay(20); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1486 | } |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1487 | |
| 1488 | return cmd->error; |
| 1489 | } |
| 1490 | |
| 1491 | static int dw_mci_data_complete(struct dw_mci *host, struct mmc_data *data) |
| 1492 | { |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 1493 | u32 status = host->data_status; |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1494 | |
| 1495 | if (status & DW_MCI_DATA_ERROR_FLAGS) { |
| 1496 | if (status & SDMMC_INT_DRTO) { |
| 1497 | data->error = -ETIMEDOUT; |
| 1498 | } else if (status & SDMMC_INT_DCRC) { |
| 1499 | data->error = -EILSEQ; |
| 1500 | } else if (status & SDMMC_INT_EBE) { |
| 1501 | if (host->dir_status == |
| 1502 | DW_MCI_SEND_STATUS) { |
| 1503 | /* |
| 1504 | * No data CRC status was returned. |
| 1505 | * The number of bytes transferred |
| 1506 | * will be exaggerated in PIO mode. |
| 1507 | */ |
| 1508 | data->bytes_xfered = 0; |
| 1509 | data->error = -ETIMEDOUT; |
| 1510 | } else if (host->dir_status == |
| 1511 | DW_MCI_RECV_STATUS) { |
| 1512 | data->error = -EIO; |
| 1513 | } |
| 1514 | } else { |
| 1515 | /* SDMMC_INT_SBE is included */ |
| 1516 | data->error = -EIO; |
| 1517 | } |
| 1518 | |
Doug Anderson | e6cc012 | 2014-04-22 16:51:21 -0700 | [diff] [blame] | 1519 | dev_dbg(host->dev, "data error, status 0x%08x\n", status); |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1520 | |
| 1521 | /* |
| 1522 | * After an error, there may be data lingering |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 1523 | * in the FIFO |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1524 | */ |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 1525 | dw_mci_reset(host); |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1526 | } else { |
| 1527 | data->bytes_xfered = data->blocks * data->blksz; |
| 1528 | data->error = 0; |
| 1529 | } |
| 1530 | |
| 1531 | return data->error; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1532 | } |
| 1533 | |
| 1534 | static void dw_mci_tasklet_func(unsigned long priv) |
| 1535 | { |
| 1536 | struct dw_mci *host = (struct dw_mci *)priv; |
| 1537 | struct mmc_data *data; |
| 1538 | struct mmc_command *cmd; |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1539 | struct mmc_request *mrq; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1540 | enum dw_mci_state state; |
| 1541 | enum dw_mci_state prev_state; |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1542 | unsigned int err; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1543 | |
| 1544 | spin_lock(&host->lock); |
| 1545 | |
| 1546 | state = host->state; |
| 1547 | data = host->data; |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1548 | mrq = host->mrq; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1549 | |
| 1550 | do { |
| 1551 | prev_state = state; |
| 1552 | |
| 1553 | switch (state) { |
| 1554 | case STATE_IDLE: |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1555 | case STATE_WAITING_CMD11_DONE: |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1556 | break; |
| 1557 | |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 1558 | case STATE_SENDING_CMD11: |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1559 | case STATE_SENDING_CMD: |
| 1560 | if (!test_and_clear_bit(EVENT_CMD_COMPLETE, |
| 1561 | &host->pending_events)) |
| 1562 | break; |
| 1563 | |
| 1564 | cmd = host->cmd; |
| 1565 | host->cmd = NULL; |
| 1566 | set_bit(EVENT_CMD_COMPLETE, &host->completed_events); |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1567 | err = dw_mci_command_complete(host, cmd); |
| 1568 | if (cmd == mrq->sbc && !err) { |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 1569 | prev_state = state = STATE_SENDING_CMD; |
| 1570 | __dw_mci_start_request(host, host->cur_slot, |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1571 | mrq->cmd); |
Seungwon Jeon | 053b3ce | 2011-12-22 18:01:29 +0900 | [diff] [blame] | 1572 | goto unlock; |
| 1573 | } |
| 1574 | |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1575 | if (cmd->data && err) { |
Seungwon Jeon | 71abb13 | 2013-08-31 00:13:59 +0900 | [diff] [blame] | 1576 | dw_mci_stop_dma(host); |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 1577 | send_stop_abort(host, data); |
| 1578 | state = STATE_SENDING_STOP; |
| 1579 | break; |
Seungwon Jeon | 71abb13 | 2013-08-31 00:13:59 +0900 | [diff] [blame] | 1580 | } |
| 1581 | |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1582 | if (!cmd->data || err) { |
| 1583 | dw_mci_request_end(host, mrq); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1584 | goto unlock; |
| 1585 | } |
| 1586 | |
| 1587 | prev_state = state = STATE_SENDING_DATA; |
| 1588 | /* fall through */ |
| 1589 | |
| 1590 | case STATE_SENDING_DATA: |
Doug Anderson | 2aa3546 | 2014-08-13 08:13:43 -0700 | [diff] [blame] | 1591 | /* |
| 1592 | * We could get a data error and never a transfer |
| 1593 | * complete so we'd better check for it here. |
| 1594 | * |
| 1595 | * Note that we don't really care if we also got a |
| 1596 | * transfer complete; stopping the DMA and sending an |
| 1597 | * abort won't hurt. |
| 1598 | */ |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1599 | if (test_and_clear_bit(EVENT_DATA_ERROR, |
| 1600 | &host->pending_events)) { |
| 1601 | dw_mci_stop_dma(host); |
addy ke | bdb9a90 | 2015-02-20 10:55:25 +0800 | [diff] [blame] | 1602 | if (data->stop || |
| 1603 | !(host->data_status & (SDMMC_INT_DRTO | |
| 1604 | SDMMC_INT_EBE))) |
| 1605 | send_stop_abort(host, data); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1606 | state = STATE_DATA_ERROR; |
| 1607 | break; |
| 1608 | } |
| 1609 | |
| 1610 | if (!test_and_clear_bit(EVENT_XFER_COMPLETE, |
| 1611 | &host->pending_events)) |
| 1612 | break; |
| 1613 | |
| 1614 | set_bit(EVENT_XFER_COMPLETE, &host->completed_events); |
Doug Anderson | 2aa3546 | 2014-08-13 08:13:43 -0700 | [diff] [blame] | 1615 | |
| 1616 | /* |
| 1617 | * Handle an EVENT_DATA_ERROR that might have shown up |
| 1618 | * before the transfer completed. This might not have |
| 1619 | * been caught by the check above because the interrupt |
| 1620 | * could have gone off between the previous check and |
| 1621 | * the check for transfer complete. |
| 1622 | * |
| 1623 | * Technically this ought not be needed assuming we |
| 1624 | * get a DATA_COMPLETE eventually (we'll notice the |
| 1625 | * error and end the request), but it shouldn't hurt. |
| 1626 | * |
| 1627 | * This has the advantage of sending the stop command. |
| 1628 | */ |
| 1629 | if (test_and_clear_bit(EVENT_DATA_ERROR, |
| 1630 | &host->pending_events)) { |
| 1631 | dw_mci_stop_dma(host); |
addy ke | bdb9a90 | 2015-02-20 10:55:25 +0800 | [diff] [blame] | 1632 | if (data->stop || |
| 1633 | !(host->data_status & (SDMMC_INT_DRTO | |
| 1634 | SDMMC_INT_EBE))) |
| 1635 | send_stop_abort(host, data); |
Doug Anderson | 2aa3546 | 2014-08-13 08:13:43 -0700 | [diff] [blame] | 1636 | state = STATE_DATA_ERROR; |
| 1637 | break; |
| 1638 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1639 | prev_state = state = STATE_DATA_BUSY; |
Doug Anderson | 2aa3546 | 2014-08-13 08:13:43 -0700 | [diff] [blame] | 1640 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1641 | /* fall through */ |
| 1642 | |
| 1643 | case STATE_DATA_BUSY: |
| 1644 | if (!test_and_clear_bit(EVENT_DATA_COMPLETE, |
| 1645 | &host->pending_events)) |
| 1646 | break; |
| 1647 | |
| 1648 | host->data = NULL; |
| 1649 | set_bit(EVENT_DATA_COMPLETE, &host->completed_events); |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1650 | err = dw_mci_data_complete(host, data); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1651 | |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1652 | if (!err) { |
| 1653 | if (!data->stop || mrq->sbc) { |
Sachin Kamat | 17c8bc8 | 2014-02-25 15:18:28 +0530 | [diff] [blame] | 1654 | if (mrq->sbc && data->stop) |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1655 | data->stop->error = 0; |
| 1656 | dw_mci_request_end(host, mrq); |
| 1657 | goto unlock; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1658 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1659 | |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 1660 | /* stop command for open-ended transfer*/ |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1661 | if (data->stop) |
| 1662 | send_stop_abort(host, data); |
Doug Anderson | 2aa3546 | 2014-08-13 08:13:43 -0700 | [diff] [blame] | 1663 | } else { |
| 1664 | /* |
| 1665 | * If we don't have a command complete now we'll |
| 1666 | * never get one since we just reset everything; |
| 1667 | * better end the request. |
| 1668 | * |
| 1669 | * If we do have a command complete we'll fall |
| 1670 | * through to the SENDING_STOP command and |
| 1671 | * everything will be peachy keen. |
| 1672 | */ |
| 1673 | if (!test_bit(EVENT_CMD_COMPLETE, |
| 1674 | &host->pending_events)) { |
| 1675 | host->cmd = NULL; |
| 1676 | dw_mci_request_end(host, mrq); |
| 1677 | goto unlock; |
| 1678 | } |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 1679 | } |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1680 | |
| 1681 | /* |
| 1682 | * If err has non-zero, |
| 1683 | * stop-abort command has been already issued. |
| 1684 | */ |
| 1685 | prev_state = state = STATE_SENDING_STOP; |
| 1686 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1687 | /* fall through */ |
| 1688 | |
| 1689 | case STATE_SENDING_STOP: |
| 1690 | if (!test_and_clear_bit(EVENT_CMD_COMPLETE, |
| 1691 | &host->pending_events)) |
| 1692 | break; |
| 1693 | |
Seungwon Jeon | 71abb13 | 2013-08-31 00:13:59 +0900 | [diff] [blame] | 1694 | /* CMD error in data command */ |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 1695 | if (mrq->cmd->error && mrq->data) |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 1696 | dw_mci_reset(host); |
Seungwon Jeon | 71abb13 | 2013-08-31 00:13:59 +0900 | [diff] [blame] | 1697 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1698 | host->cmd = NULL; |
Seungwon Jeon | 71abb13 | 2013-08-31 00:13:59 +0900 | [diff] [blame] | 1699 | host->data = NULL; |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 1700 | |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1701 | if (mrq->stop) |
| 1702 | dw_mci_command_complete(host, mrq->stop); |
Seungwon Jeon | 90c2143 | 2013-08-31 00:14:05 +0900 | [diff] [blame] | 1703 | else |
| 1704 | host->cmd_status = 0; |
| 1705 | |
Seungwon Jeon | e352c81 | 2013-08-31 00:14:17 +0900 | [diff] [blame] | 1706 | dw_mci_request_end(host, mrq); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1707 | goto unlock; |
| 1708 | |
| 1709 | case STATE_DATA_ERROR: |
| 1710 | if (!test_and_clear_bit(EVENT_XFER_COMPLETE, |
| 1711 | &host->pending_events)) |
| 1712 | break; |
| 1713 | |
| 1714 | state = STATE_DATA_BUSY; |
| 1715 | break; |
| 1716 | } |
| 1717 | } while (state != prev_state); |
| 1718 | |
| 1719 | host->state = state; |
| 1720 | unlock: |
| 1721 | spin_unlock(&host->lock); |
| 1722 | |
| 1723 | } |
| 1724 | |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1725 | /* push final bytes to part_buf, only use during push */ |
| 1726 | static void dw_mci_set_part_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1727 | { |
| 1728 | memcpy((void *)&host->part_buf, buf, cnt); |
| 1729 | host->part_buf_count = cnt; |
| 1730 | } |
| 1731 | |
| 1732 | /* append bytes to part_buf, only use during push */ |
| 1733 | static int dw_mci_push_part_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1734 | { |
| 1735 | cnt = min(cnt, (1 << host->data_shift) - host->part_buf_count); |
| 1736 | memcpy((void *)&host->part_buf + host->part_buf_count, buf, cnt); |
| 1737 | host->part_buf_count += cnt; |
| 1738 | return cnt; |
| 1739 | } |
| 1740 | |
| 1741 | /* pull first bytes from part_buf, only use during pull */ |
| 1742 | static int dw_mci_pull_part_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1743 | { |
| 1744 | cnt = min(cnt, (int)host->part_buf_count); |
| 1745 | if (cnt) { |
| 1746 | memcpy(buf, (void *)&host->part_buf + host->part_buf_start, |
| 1747 | cnt); |
| 1748 | host->part_buf_count -= cnt; |
| 1749 | host->part_buf_start += cnt; |
| 1750 | } |
| 1751 | return cnt; |
| 1752 | } |
| 1753 | |
| 1754 | /* pull final bytes from the part_buf, assuming it's just been filled */ |
| 1755 | static void dw_mci_pull_final_bytes(struct dw_mci *host, void *buf, int cnt) |
| 1756 | { |
| 1757 | memcpy(buf, &host->part_buf, cnt); |
| 1758 | host->part_buf_start = cnt; |
| 1759 | host->part_buf_count = (1 << host->data_shift) - cnt; |
| 1760 | } |
| 1761 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1762 | static void dw_mci_push_data16(struct dw_mci *host, void *buf, int cnt) |
| 1763 | { |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1764 | struct mmc_data *data = host->data; |
| 1765 | int init_cnt = cnt; |
| 1766 | |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1767 | /* try and push anything in the part_buf */ |
| 1768 | if (unlikely(host->part_buf_count)) { |
| 1769 | int len = dw_mci_push_part_bytes(host, buf, cnt); |
| 1770 | buf += len; |
| 1771 | cnt -= len; |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1772 | if (host->part_buf_count == 2) { |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1773 | mci_fifo_writew(host->fifo_reg, host->part_buf16); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1774 | host->part_buf_count = 0; |
| 1775 | } |
| 1776 | } |
| 1777 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1778 | if (unlikely((unsigned long)buf & 0x1)) { |
| 1779 | while (cnt >= 2) { |
| 1780 | u16 aligned_buf[64]; |
| 1781 | int len = min(cnt & -2, (int)sizeof(aligned_buf)); |
| 1782 | int items = len >> 1; |
| 1783 | int i; |
| 1784 | /* memcpy from input buffer into aligned buffer */ |
| 1785 | memcpy(aligned_buf, buf, len); |
| 1786 | buf += len; |
| 1787 | cnt -= len; |
| 1788 | /* push data from aligned buffer into fifo */ |
| 1789 | for (i = 0; i < items; ++i) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1790 | mci_fifo_writew(host->fifo_reg, aligned_buf[i]); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1791 | } |
| 1792 | } else |
| 1793 | #endif |
| 1794 | { |
| 1795 | u16 *pdata = buf; |
| 1796 | for (; cnt >= 2; cnt -= 2) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1797 | mci_fifo_writew(host->fifo_reg, *pdata++); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1798 | buf = pdata; |
| 1799 | } |
| 1800 | /* put anything remaining in the part_buf */ |
| 1801 | if (cnt) { |
| 1802 | dw_mci_set_part_bytes(host, buf, cnt); |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1803 | /* Push data if we have reached the expected data length */ |
| 1804 | if ((data->bytes_xfered + init_cnt) == |
| 1805 | (data->blksz * data->blocks)) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1806 | mci_fifo_writew(host->fifo_reg, host->part_buf16); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1807 | } |
| 1808 | } |
| 1809 | |
| 1810 | static void dw_mci_pull_data16(struct dw_mci *host, void *buf, int cnt) |
| 1811 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1812 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1813 | if (unlikely((unsigned long)buf & 0x1)) { |
| 1814 | while (cnt >= 2) { |
| 1815 | /* pull data from fifo into aligned buffer */ |
| 1816 | u16 aligned_buf[64]; |
| 1817 | int len = min(cnt & -2, (int)sizeof(aligned_buf)); |
| 1818 | int items = len >> 1; |
| 1819 | int i; |
| 1820 | for (i = 0; i < items; ++i) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1821 | aligned_buf[i] = mci_fifo_readw(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1822 | /* memcpy from aligned buffer into output buffer */ |
| 1823 | memcpy(buf, aligned_buf, len); |
| 1824 | buf += len; |
| 1825 | cnt -= len; |
| 1826 | } |
| 1827 | } else |
| 1828 | #endif |
| 1829 | { |
| 1830 | u16 *pdata = buf; |
| 1831 | for (; cnt >= 2; cnt -= 2) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1832 | *pdata++ = mci_fifo_readw(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1833 | buf = pdata; |
| 1834 | } |
| 1835 | if (cnt) { |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1836 | host->part_buf16 = mci_fifo_readw(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1837 | dw_mci_pull_final_bytes(host, buf, cnt); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1838 | } |
| 1839 | } |
| 1840 | |
| 1841 | static void dw_mci_push_data32(struct dw_mci *host, void *buf, int cnt) |
| 1842 | { |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1843 | struct mmc_data *data = host->data; |
| 1844 | int init_cnt = cnt; |
| 1845 | |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1846 | /* try and push anything in the part_buf */ |
| 1847 | if (unlikely(host->part_buf_count)) { |
| 1848 | int len = dw_mci_push_part_bytes(host, buf, cnt); |
| 1849 | buf += len; |
| 1850 | cnt -= len; |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1851 | if (host->part_buf_count == 4) { |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1852 | mci_fifo_writel(host->fifo_reg, host->part_buf32); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1853 | host->part_buf_count = 0; |
| 1854 | } |
| 1855 | } |
| 1856 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1857 | if (unlikely((unsigned long)buf & 0x3)) { |
| 1858 | while (cnt >= 4) { |
| 1859 | u32 aligned_buf[32]; |
| 1860 | int len = min(cnt & -4, (int)sizeof(aligned_buf)); |
| 1861 | int items = len >> 2; |
| 1862 | int i; |
| 1863 | /* memcpy from input buffer into aligned buffer */ |
| 1864 | memcpy(aligned_buf, buf, len); |
| 1865 | buf += len; |
| 1866 | cnt -= len; |
| 1867 | /* push data from aligned buffer into fifo */ |
| 1868 | for (i = 0; i < items; ++i) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1869 | mci_fifo_writel(host->fifo_reg, aligned_buf[i]); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1870 | } |
| 1871 | } else |
| 1872 | #endif |
| 1873 | { |
| 1874 | u32 *pdata = buf; |
| 1875 | for (; cnt >= 4; cnt -= 4) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1876 | mci_fifo_writel(host->fifo_reg, *pdata++); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1877 | buf = pdata; |
| 1878 | } |
| 1879 | /* put anything remaining in the part_buf */ |
| 1880 | if (cnt) { |
| 1881 | dw_mci_set_part_bytes(host, buf, cnt); |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1882 | /* Push data if we have reached the expected data length */ |
| 1883 | if ((data->bytes_xfered + init_cnt) == |
| 1884 | (data->blksz * data->blocks)) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1885 | mci_fifo_writel(host->fifo_reg, host->part_buf32); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1886 | } |
| 1887 | } |
| 1888 | |
| 1889 | static void dw_mci_pull_data32(struct dw_mci *host, void *buf, int cnt) |
| 1890 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1891 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1892 | if (unlikely((unsigned long)buf & 0x3)) { |
| 1893 | while (cnt >= 4) { |
| 1894 | /* pull data from fifo into aligned buffer */ |
| 1895 | u32 aligned_buf[32]; |
| 1896 | int len = min(cnt & -4, (int)sizeof(aligned_buf)); |
| 1897 | int items = len >> 2; |
| 1898 | int i; |
| 1899 | for (i = 0; i < items; ++i) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1900 | aligned_buf[i] = mci_fifo_readl(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1901 | /* memcpy from aligned buffer into output buffer */ |
| 1902 | memcpy(buf, aligned_buf, len); |
| 1903 | buf += len; |
| 1904 | cnt -= len; |
| 1905 | } |
| 1906 | } else |
| 1907 | #endif |
| 1908 | { |
| 1909 | u32 *pdata = buf; |
| 1910 | for (; cnt >= 4; cnt -= 4) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1911 | *pdata++ = mci_fifo_readl(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1912 | buf = pdata; |
| 1913 | } |
| 1914 | if (cnt) { |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1915 | host->part_buf32 = mci_fifo_readl(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1916 | dw_mci_pull_final_bytes(host, buf, cnt); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1917 | } |
| 1918 | } |
| 1919 | |
| 1920 | static void dw_mci_push_data64(struct dw_mci *host, void *buf, int cnt) |
| 1921 | { |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1922 | struct mmc_data *data = host->data; |
| 1923 | int init_cnt = cnt; |
| 1924 | |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1925 | /* try and push anything in the part_buf */ |
| 1926 | if (unlikely(host->part_buf_count)) { |
| 1927 | int len = dw_mci_push_part_bytes(host, buf, cnt); |
| 1928 | buf += len; |
| 1929 | cnt -= len; |
Seungwon Jeon | c09fbd7 | 2013-03-25 16:28:22 +0900 | [diff] [blame] | 1930 | |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1931 | if (host->part_buf_count == 8) { |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1932 | mci_fifo_writeq(host->fifo_reg, host->part_buf); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1933 | host->part_buf_count = 0; |
| 1934 | } |
| 1935 | } |
| 1936 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1937 | if (unlikely((unsigned long)buf & 0x7)) { |
| 1938 | while (cnt >= 8) { |
| 1939 | u64 aligned_buf[16]; |
| 1940 | int len = min(cnt & -8, (int)sizeof(aligned_buf)); |
| 1941 | int items = len >> 3; |
| 1942 | int i; |
| 1943 | /* memcpy from input buffer into aligned buffer */ |
| 1944 | memcpy(aligned_buf, buf, len); |
| 1945 | buf += len; |
| 1946 | cnt -= len; |
| 1947 | /* push data from aligned buffer into fifo */ |
| 1948 | for (i = 0; i < items; ++i) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1949 | mci_fifo_writeq(host->fifo_reg, aligned_buf[i]); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1950 | } |
| 1951 | } else |
| 1952 | #endif |
| 1953 | { |
| 1954 | u64 *pdata = buf; |
| 1955 | for (; cnt >= 8; cnt -= 8) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1956 | mci_fifo_writeq(host->fifo_reg, *pdata++); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1957 | buf = pdata; |
| 1958 | } |
| 1959 | /* put anything remaining in the part_buf */ |
| 1960 | if (cnt) { |
| 1961 | dw_mci_set_part_bytes(host, buf, cnt); |
Markos Chandras | cfbeb59c | 2013-03-12 10:53:13 +0000 | [diff] [blame] | 1962 | /* Push data if we have reached the expected data length */ |
| 1963 | if ((data->bytes_xfered + init_cnt) == |
| 1964 | (data->blksz * data->blocks)) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1965 | mci_fifo_writeq(host->fifo_reg, host->part_buf); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1966 | } |
| 1967 | } |
| 1968 | |
| 1969 | static void dw_mci_pull_data64(struct dw_mci *host, void *buf, int cnt) |
| 1970 | { |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1971 | #ifndef CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS |
| 1972 | if (unlikely((unsigned long)buf & 0x7)) { |
| 1973 | while (cnt >= 8) { |
| 1974 | /* pull data from fifo into aligned buffer */ |
| 1975 | u64 aligned_buf[16]; |
| 1976 | int len = min(cnt & -8, (int)sizeof(aligned_buf)); |
| 1977 | int items = len >> 3; |
| 1978 | int i; |
| 1979 | for (i = 0; i < items; ++i) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1980 | aligned_buf[i] = mci_fifo_readq(host->fifo_reg); |
| 1981 | |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1982 | /* memcpy from aligned buffer into output buffer */ |
| 1983 | memcpy(buf, aligned_buf, len); |
| 1984 | buf += len; |
| 1985 | cnt -= len; |
| 1986 | } |
| 1987 | } else |
| 1988 | #endif |
| 1989 | { |
| 1990 | u64 *pdata = buf; |
| 1991 | for (; cnt >= 8; cnt -= 8) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1992 | *pdata++ = mci_fifo_readq(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1993 | buf = pdata; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 1994 | } |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1995 | if (cnt) { |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 1996 | host->part_buf = mci_fifo_readq(host->fifo_reg); |
James Hogan | 34b664a | 2011-06-24 13:57:56 +0100 | [diff] [blame] | 1997 | dw_mci_pull_final_bytes(host, buf, cnt); |
| 1998 | } |
| 1999 | } |
| 2000 | |
| 2001 | static void dw_mci_pull_data(struct dw_mci *host, void *buf, int cnt) |
| 2002 | { |
| 2003 | int len; |
| 2004 | |
| 2005 | /* get remaining partial bytes */ |
| 2006 | len = dw_mci_pull_part_bytes(host, buf, cnt); |
| 2007 | if (unlikely(len == cnt)) |
| 2008 | return; |
| 2009 | buf += len; |
| 2010 | cnt -= len; |
| 2011 | |
| 2012 | /* get the rest of the data */ |
| 2013 | host->pull_data(host, buf, cnt); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2014 | } |
| 2015 | |
Kyoungil Kim | 87a74d3 | 2013-01-22 16:46:30 +0900 | [diff] [blame] | 2016 | 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] | 2017 | { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2018 | struct sg_mapping_iter *sg_miter = &host->sg_miter; |
| 2019 | void *buf; |
| 2020 | unsigned int offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2021 | struct mmc_data *data = host->data; |
| 2022 | int shift = host->data_shift; |
| 2023 | u32 status; |
Markos Chandras | 3e4b0d8 | 2013-03-22 12:50:05 -0400 | [diff] [blame] | 2024 | unsigned int len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2025 | unsigned int remain, fcnt; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2026 | |
| 2027 | do { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2028 | if (!sg_miter_next(sg_miter)) |
| 2029 | goto done; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2030 | |
Imre Deak | 4225fc8 | 2013-02-27 17:02:57 -0800 | [diff] [blame] | 2031 | host->sg = sg_miter->piter.sg; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2032 | buf = sg_miter->addr; |
| 2033 | remain = sg_miter->length; |
| 2034 | offset = 0; |
| 2035 | |
| 2036 | do { |
| 2037 | fcnt = (SDMMC_GET_FCNT(mci_readl(host, STATUS)) |
| 2038 | << shift) + host->part_buf_count; |
| 2039 | len = min(remain, fcnt); |
| 2040 | if (!len) |
| 2041 | break; |
| 2042 | dw_mci_pull_data(host, (void *)(buf + offset), len); |
Markos Chandras | 3e4b0d8 | 2013-03-22 12:50:05 -0400 | [diff] [blame] | 2043 | data->bytes_xfered += len; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2044 | offset += len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2045 | remain -= len; |
| 2046 | } while (remain); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2047 | |
Seungwon Jeon | e74f3a9 | 2012-08-01 09:30:46 +0900 | [diff] [blame] | 2048 | sg_miter->consumed = offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2049 | status = mci_readl(host, MINTSTS); |
| 2050 | mci_writel(host, RINTSTS, SDMMC_INT_RXDR); |
Kyoungil Kim | 87a74d3 | 2013-01-22 16:46:30 +0900 | [diff] [blame] | 2051 | /* if the RXDR is ready read again */ |
| 2052 | } while ((status & SDMMC_INT_RXDR) || |
| 2053 | (dto && SDMMC_GET_FCNT(mci_readl(host, STATUS)))); |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2054 | |
| 2055 | if (!remain) { |
| 2056 | if (!sg_miter_next(sg_miter)) |
| 2057 | goto done; |
| 2058 | sg_miter->consumed = 0; |
| 2059 | } |
| 2060 | sg_miter_stop(sg_miter); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2061 | return; |
| 2062 | |
| 2063 | done: |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2064 | sg_miter_stop(sg_miter); |
| 2065 | host->sg = NULL; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2066 | smp_wmb(); |
| 2067 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 2068 | } |
| 2069 | |
| 2070 | static void dw_mci_write_data_pio(struct dw_mci *host) |
| 2071 | { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2072 | struct sg_mapping_iter *sg_miter = &host->sg_miter; |
| 2073 | void *buf; |
| 2074 | unsigned int offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2075 | struct mmc_data *data = host->data; |
| 2076 | int shift = host->data_shift; |
| 2077 | u32 status; |
Markos Chandras | 3e4b0d8 | 2013-03-22 12:50:05 -0400 | [diff] [blame] | 2078 | unsigned int len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2079 | unsigned int fifo_depth = host->fifo_depth; |
| 2080 | unsigned int remain, fcnt; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2081 | |
| 2082 | do { |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2083 | if (!sg_miter_next(sg_miter)) |
| 2084 | goto done; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2085 | |
Imre Deak | 4225fc8 | 2013-02-27 17:02:57 -0800 | [diff] [blame] | 2086 | host->sg = sg_miter->piter.sg; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2087 | buf = sg_miter->addr; |
| 2088 | remain = sg_miter->length; |
| 2089 | offset = 0; |
| 2090 | |
| 2091 | do { |
| 2092 | fcnt = ((fifo_depth - |
| 2093 | SDMMC_GET_FCNT(mci_readl(host, STATUS))) |
| 2094 | << shift) - host->part_buf_count; |
| 2095 | len = min(remain, fcnt); |
| 2096 | if (!len) |
| 2097 | break; |
| 2098 | host->push_data(host, (void *)(buf + offset), len); |
Markos Chandras | 3e4b0d8 | 2013-03-22 12:50:05 -0400 | [diff] [blame] | 2099 | data->bytes_xfered += len; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2100 | offset += len; |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2101 | remain -= len; |
| 2102 | } while (remain); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2103 | |
Seungwon Jeon | e74f3a9 | 2012-08-01 09:30:46 +0900 | [diff] [blame] | 2104 | sg_miter->consumed = offset; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2105 | status = mci_readl(host, MINTSTS); |
| 2106 | mci_writel(host, RINTSTS, SDMMC_INT_TXDR); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2107 | } while (status & SDMMC_INT_TXDR); /* if TXDR write again */ |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2108 | |
| 2109 | if (!remain) { |
| 2110 | if (!sg_miter_next(sg_miter)) |
| 2111 | goto done; |
| 2112 | sg_miter->consumed = 0; |
| 2113 | } |
| 2114 | sg_miter_stop(sg_miter); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2115 | return; |
| 2116 | |
| 2117 | done: |
Seungwon Jeon | f9c2a0d | 2012-02-09 14:32:43 +0900 | [diff] [blame] | 2118 | sg_miter_stop(sg_miter); |
| 2119 | host->sg = NULL; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2120 | smp_wmb(); |
| 2121 | set_bit(EVENT_XFER_COMPLETE, &host->pending_events); |
| 2122 | } |
| 2123 | |
| 2124 | static void dw_mci_cmd_interrupt(struct dw_mci *host, u32 status) |
| 2125 | { |
| 2126 | if (!host->cmd_status) |
| 2127 | host->cmd_status = status; |
| 2128 | |
| 2129 | smp_wmb(); |
| 2130 | |
| 2131 | set_bit(EVENT_CMD_COMPLETE, &host->pending_events); |
| 2132 | tasklet_schedule(&host->tasklet); |
| 2133 | } |
| 2134 | |
Doug Anderson | 6130e7a | 2014-10-14 09:33:09 -0700 | [diff] [blame] | 2135 | static void dw_mci_handle_cd(struct dw_mci *host) |
| 2136 | { |
| 2137 | int i; |
| 2138 | |
| 2139 | for (i = 0; i < host->num_slots; i++) { |
| 2140 | struct dw_mci_slot *slot = host->slot[i]; |
| 2141 | |
| 2142 | if (!slot) |
| 2143 | continue; |
| 2144 | |
| 2145 | if (slot->mmc->ops->card_event) |
| 2146 | slot->mmc->ops->card_event(slot->mmc); |
| 2147 | mmc_detect_change(slot->mmc, |
| 2148 | msecs_to_jiffies(host->pdata->detect_delay_ms)); |
| 2149 | } |
| 2150 | } |
| 2151 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2152 | static irqreturn_t dw_mci_interrupt(int irq, void *dev_id) |
| 2153 | { |
| 2154 | struct dw_mci *host = dev_id; |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 2155 | u32 pending; |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 2156 | int i; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2157 | |
Markos Chandras | 1fb5f68 | 2013-03-12 10:53:11 +0000 | [diff] [blame] | 2158 | pending = mci_readl(host, MINTSTS); /* read-only mask reg */ |
| 2159 | |
Doug Anderson | 476d79f | 2013-07-09 13:04:40 -0700 | [diff] [blame] | 2160 | /* |
| 2161 | * DTO fix - version 2.10a and below, and only if internal DMA |
| 2162 | * is configured. |
| 2163 | */ |
| 2164 | if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) { |
| 2165 | if (!pending && |
| 2166 | ((mci_readl(host, STATUS) >> 17) & 0x1fff)) |
| 2167 | pending |= SDMMC_INT_DATA_OVER; |
| 2168 | } |
| 2169 | |
Markos Chandras | 1fb5f68 | 2013-03-12 10:53:11 +0000 | [diff] [blame] | 2170 | if (pending) { |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 2171 | /* Check volt switch first, since it can look like an error */ |
| 2172 | if ((host->state == STATE_SENDING_CMD11) && |
| 2173 | (pending & SDMMC_INT_VOLT_SWITCH)) { |
Doug Anderson | 49ba030 | 2015-04-03 11:13:07 -0700 | [diff] [blame] | 2174 | unsigned long irqflags; |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 2175 | |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 2176 | mci_writel(host, RINTSTS, SDMMC_INT_VOLT_SWITCH); |
| 2177 | pending &= ~SDMMC_INT_VOLT_SWITCH; |
Doug Anderson | 49ba030 | 2015-04-03 11:13:07 -0700 | [diff] [blame] | 2178 | |
| 2179 | /* |
| 2180 | * Hold the lock; we know cmd11_timer can't be kicked |
| 2181 | * off after the lock is released, so safe to delete. |
| 2182 | */ |
| 2183 | spin_lock_irqsave(&host->irq_lock, irqflags); |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 2184 | dw_mci_cmd_interrupt(host, pending); |
Doug Anderson | 49ba030 | 2015-04-03 11:13:07 -0700 | [diff] [blame] | 2185 | spin_unlock_irqrestore(&host->irq_lock, irqflags); |
| 2186 | |
| 2187 | del_timer(&host->cmd11_timer); |
Doug Anderson | 0173055 | 2014-08-22 19:17:51 +0530 | [diff] [blame] | 2188 | } |
| 2189 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2190 | if (pending & DW_MCI_CMD_ERROR_FLAGS) { |
| 2191 | mci_writel(host, RINTSTS, DW_MCI_CMD_ERROR_FLAGS); |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 2192 | host->cmd_status = pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2193 | smp_wmb(); |
| 2194 | set_bit(EVENT_CMD_COMPLETE, &host->pending_events); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2195 | } |
| 2196 | |
| 2197 | if (pending & DW_MCI_DATA_ERROR_FLAGS) { |
| 2198 | /* if there is an error report DATA_ERROR */ |
| 2199 | mci_writel(host, RINTSTS, DW_MCI_DATA_ERROR_FLAGS); |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 2200 | host->data_status = pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2201 | smp_wmb(); |
| 2202 | set_bit(EVENT_DATA_ERROR, &host->pending_events); |
Seungwon Jeon | 9b2026a | 2012-08-01 09:30:40 +0900 | [diff] [blame] | 2203 | tasklet_schedule(&host->tasklet); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2204 | } |
| 2205 | |
| 2206 | if (pending & SDMMC_INT_DATA_OVER) { |
| 2207 | mci_writel(host, RINTSTS, SDMMC_INT_DATA_OVER); |
| 2208 | if (!host->data_status) |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 2209 | host->data_status = pending; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2210 | smp_wmb(); |
| 2211 | if (host->dir_status == DW_MCI_RECV_STATUS) { |
| 2212 | if (host->sg != NULL) |
Kyoungil Kim | 87a74d3 | 2013-01-22 16:46:30 +0900 | [diff] [blame] | 2213 | dw_mci_read_data_pio(host, true); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2214 | } |
| 2215 | set_bit(EVENT_DATA_COMPLETE, &host->pending_events); |
| 2216 | tasklet_schedule(&host->tasklet); |
| 2217 | } |
| 2218 | |
| 2219 | if (pending & SDMMC_INT_RXDR) { |
| 2220 | mci_writel(host, RINTSTS, SDMMC_INT_RXDR); |
James Hogan | b40af3a | 2011-06-24 13:54:06 +0100 | [diff] [blame] | 2221 | if (host->dir_status == DW_MCI_RECV_STATUS && host->sg) |
Kyoungil Kim | 87a74d3 | 2013-01-22 16:46:30 +0900 | [diff] [blame] | 2222 | dw_mci_read_data_pio(host, false); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2223 | } |
| 2224 | |
| 2225 | if (pending & SDMMC_INT_TXDR) { |
| 2226 | mci_writel(host, RINTSTS, SDMMC_INT_TXDR); |
James Hogan | b40af3a | 2011-06-24 13:54:06 +0100 | [diff] [blame] | 2227 | if (host->dir_status == DW_MCI_SEND_STATUS && host->sg) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2228 | dw_mci_write_data_pio(host); |
| 2229 | } |
| 2230 | |
| 2231 | if (pending & SDMMC_INT_CMD_DONE) { |
| 2232 | mci_writel(host, RINTSTS, SDMMC_INT_CMD_DONE); |
Seungwon Jeon | 182c908 | 2012-08-01 09:30:30 +0900 | [diff] [blame] | 2233 | dw_mci_cmd_interrupt(host, pending); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2234 | } |
| 2235 | |
| 2236 | if (pending & SDMMC_INT_CD) { |
| 2237 | mci_writel(host, RINTSTS, SDMMC_INT_CD); |
Doug Anderson | 6130e7a | 2014-10-14 09:33:09 -0700 | [diff] [blame] | 2238 | dw_mci_handle_cd(host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2239 | } |
| 2240 | |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 2241 | /* Handle SDIO Interrupts */ |
| 2242 | for (i = 0; i < host->num_slots; i++) { |
| 2243 | struct dw_mci_slot *slot = host->slot[i]; |
Doug Anderson | ed2540e | 2015-02-25 10:11:52 -0800 | [diff] [blame] | 2244 | |
| 2245 | if (!slot) |
| 2246 | continue; |
| 2247 | |
Addy Ke | 7675623 | 2014-11-04 22:03:09 +0800 | [diff] [blame] | 2248 | if (pending & SDMMC_INT_SDIO(slot->sdio_id)) { |
| 2249 | mci_writel(host, RINTSTS, |
| 2250 | SDMMC_INT_SDIO(slot->sdio_id)); |
Shashidhar Hiremath | 1a5c8e1 | 2011-08-29 13:11:46 +0530 | [diff] [blame] | 2251 | mmc_signal_sdio_irq(slot->mmc); |
| 2252 | } |
| 2253 | } |
| 2254 | |
Markos Chandras | 1fb5f68 | 2013-03-12 10:53:11 +0000 | [diff] [blame] | 2255 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2256 | |
| 2257 | #ifdef CONFIG_MMC_DW_IDMAC |
| 2258 | /* Handle DMA interrupts */ |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 2259 | if (host->dma_64bit_address == 1) { |
| 2260 | pending = mci_readl(host, IDSTS64); |
| 2261 | if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) { |
| 2262 | mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_TI | |
| 2263 | SDMMC_IDMAC_INT_RI); |
| 2264 | mci_writel(host, IDSTS64, SDMMC_IDMAC_INT_NI); |
| 2265 | host->dma_ops->complete(host); |
| 2266 | } |
| 2267 | } else { |
| 2268 | pending = mci_readl(host, IDSTS); |
| 2269 | if (pending & (SDMMC_IDMAC_INT_TI | SDMMC_IDMAC_INT_RI)) { |
| 2270 | mci_writel(host, IDSTS, SDMMC_IDMAC_INT_TI | |
| 2271 | SDMMC_IDMAC_INT_RI); |
| 2272 | mci_writel(host, IDSTS, SDMMC_IDMAC_INT_NI); |
| 2273 | host->dma_ops->complete(host); |
| 2274 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2275 | } |
| 2276 | #endif |
| 2277 | |
| 2278 | return IRQ_HANDLED; |
| 2279 | } |
| 2280 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2281 | #ifdef CONFIG_OF |
| 2282 | /* given a slot id, find out the device node representing that slot */ |
| 2283 | static struct device_node *dw_mci_of_find_slot_node(struct device *dev, u8 slot) |
| 2284 | { |
| 2285 | struct device_node *np; |
| 2286 | const __be32 *addr; |
| 2287 | int len; |
| 2288 | |
| 2289 | if (!dev || !dev->of_node) |
| 2290 | return NULL; |
| 2291 | |
| 2292 | for_each_child_of_node(dev->of_node, np) { |
| 2293 | addr = of_get_property(np, "reg", &len); |
| 2294 | if (!addr || (len < sizeof(int))) |
| 2295 | continue; |
| 2296 | if (be32_to_cpup(addr) == slot) |
| 2297 | return np; |
| 2298 | } |
| 2299 | return NULL; |
| 2300 | } |
| 2301 | |
Doug Anderson | a70aaa6 | 2013-01-11 17:03:50 +0000 | [diff] [blame] | 2302 | static struct dw_mci_of_slot_quirks { |
| 2303 | char *quirk; |
| 2304 | int id; |
| 2305 | } of_slot_quirks[] = { |
| 2306 | { |
| 2307 | .quirk = "disable-wp", |
| 2308 | .id = DW_MCI_SLOT_QUIRK_NO_WRITE_PROTECT, |
| 2309 | }, |
| 2310 | }; |
| 2311 | |
| 2312 | static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot) |
| 2313 | { |
| 2314 | struct device_node *np = dw_mci_of_find_slot_node(dev, slot); |
| 2315 | int quirks = 0; |
| 2316 | int idx; |
| 2317 | |
| 2318 | /* get quirks */ |
| 2319 | for (idx = 0; idx < ARRAY_SIZE(of_slot_quirks); idx++) |
Jaehoon Chung | 26375b5 | 2014-08-07 16:37:58 +0900 | [diff] [blame] | 2320 | if (of_get_property(np, of_slot_quirks[idx].quirk, NULL)) { |
| 2321 | dev_warn(dev, "Slot quirk %s is deprecated\n", |
| 2322 | of_slot_quirks[idx].quirk); |
Doug Anderson | a70aaa6 | 2013-01-11 17:03:50 +0000 | [diff] [blame] | 2323 | quirks |= of_slot_quirks[idx].id; |
Jaehoon Chung | 26375b5 | 2014-08-07 16:37:58 +0900 | [diff] [blame] | 2324 | } |
Doug Anderson | a70aaa6 | 2013-01-11 17:03:50 +0000 | [diff] [blame] | 2325 | |
| 2326 | return quirks; |
| 2327 | } |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2328 | #else /* CONFIG_OF */ |
Doug Anderson | a70aaa6 | 2013-01-11 17:03:50 +0000 | [diff] [blame] | 2329 | static int dw_mci_of_get_slot_quirks(struct device *dev, u8 slot) |
| 2330 | { |
| 2331 | return 0; |
| 2332 | } |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2333 | #endif /* CONFIG_OF */ |
| 2334 | |
Jaehoon Chung | 36c179a | 2012-08-23 20:31:48 +0900 | [diff] [blame] | 2335 | 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] | 2336 | { |
| 2337 | struct mmc_host *mmc; |
| 2338 | struct dw_mci_slot *slot; |
Arnd Bergmann | e95baf1 | 2012-11-08 14:26:11 +0000 | [diff] [blame] | 2339 | const struct dw_mci_drv_data *drv_data = host->drv_data; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2340 | int ctrl_id, ret; |
Seungwon Jeon | 1f44a2a | 2013-08-31 00:13:31 +0900 | [diff] [blame] | 2341 | u32 freq[2]; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2342 | |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2343 | mmc = mmc_alloc_host(sizeof(struct dw_mci_slot), host->dev); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2344 | if (!mmc) |
| 2345 | return -ENOMEM; |
| 2346 | |
| 2347 | slot = mmc_priv(mmc); |
| 2348 | slot->id = id; |
Addy Ke | 7675623 | 2014-11-04 22:03:09 +0800 | [diff] [blame] | 2349 | slot->sdio_id = host->sdio_id0 + id; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2350 | slot->mmc = mmc; |
| 2351 | slot->host = host; |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2352 | host->slot[id] = slot; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2353 | |
Doug Anderson | a70aaa6 | 2013-01-11 17:03:50 +0000 | [diff] [blame] | 2354 | slot->quirks = dw_mci_of_get_slot_quirks(host->dev, slot->id); |
| 2355 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2356 | mmc->ops = &dw_mci_ops; |
Seungwon Jeon | 1f44a2a | 2013-08-31 00:13:31 +0900 | [diff] [blame] | 2357 | if (of_property_read_u32_array(host->dev->of_node, |
| 2358 | "clock-freq-min-max", freq, 2)) { |
| 2359 | mmc->f_min = DW_MCI_FREQ_MIN; |
| 2360 | mmc->f_max = DW_MCI_FREQ_MAX; |
| 2361 | } else { |
| 2362 | mmc->f_min = freq[0]; |
| 2363 | mmc->f_max = freq[1]; |
| 2364 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2365 | |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 2366 | /*if there are external regulators, get them*/ |
| 2367 | ret = mmc_regulator_get_supply(mmc); |
| 2368 | if (ret == -EPROBE_DEFER) |
Doug Anderson | 3cf890f | 2014-08-25 11:19:04 -0700 | [diff] [blame] | 2369 | goto err_host_allocated; |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 2370 | |
| 2371 | if (!mmc->ocr_avail) |
| 2372 | mmc->ocr_avail = MMC_VDD_32_33 | MMC_VDD_33_34; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2373 | |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 2374 | if (host->pdata->caps) |
| 2375 | mmc->caps = host->pdata->caps; |
Jaehoon Chung | fc3d772 | 2011-02-25 11:08:15 +0900 | [diff] [blame] | 2376 | |
Abhilash Kesavan | ab26912 | 2012-11-19 10:26:21 +0530 | [diff] [blame] | 2377 | if (host->pdata->pm_caps) |
| 2378 | mmc->pm_caps = host->pdata->pm_caps; |
| 2379 | |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2380 | if (host->dev->of_node) { |
| 2381 | ctrl_id = of_alias_get_id(host->dev->of_node, "mshc"); |
| 2382 | if (ctrl_id < 0) |
| 2383 | ctrl_id = 0; |
| 2384 | } else { |
| 2385 | ctrl_id = to_platform_device(host->dev)->id; |
| 2386 | } |
James Hogan | cb27a84 | 2012-10-16 09:43:08 +0100 | [diff] [blame] | 2387 | if (drv_data && drv_data->caps) |
| 2388 | mmc->caps |= drv_data->caps[ctrl_id]; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2389 | |
Seungwon Jeon | 4f408cc | 2011-12-09 14:55:52 +0900 | [diff] [blame] | 2390 | if (host->pdata->caps2) |
| 2391 | mmc->caps2 = host->pdata->caps2; |
Seungwon Jeon | 4f408cc | 2011-12-09 14:55:52 +0900 | [diff] [blame] | 2392 | |
Doug Anderson | 3cf890f | 2014-08-25 11:19:04 -0700 | [diff] [blame] | 2393 | ret = mmc_of_parse(mmc); |
| 2394 | if (ret) |
| 2395 | goto err_host_allocated; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2396 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2397 | if (host->pdata->blk_settings) { |
| 2398 | mmc->max_segs = host->pdata->blk_settings->max_segs; |
| 2399 | mmc->max_blk_size = host->pdata->blk_settings->max_blk_size; |
| 2400 | mmc->max_blk_count = host->pdata->blk_settings->max_blk_count; |
| 2401 | mmc->max_req_size = host->pdata->blk_settings->max_req_size; |
| 2402 | mmc->max_seg_size = host->pdata->blk_settings->max_seg_size; |
| 2403 | } else { |
| 2404 | /* Useful defaults if platform data is unset. */ |
Jaehoon Chung | a39e574 | 2012-02-04 17:00:27 -0500 | [diff] [blame] | 2405 | #ifdef CONFIG_MMC_DW_IDMAC |
| 2406 | mmc->max_segs = host->ring_size; |
| 2407 | mmc->max_blk_size = 65536; |
Jaehoon Chung | a39e574 | 2012-02-04 17:00:27 -0500 | [diff] [blame] | 2408 | mmc->max_seg_size = 0x1000; |
Seungwon Jeon | 1a25b1b | 2014-12-22 17:42:02 +0530 | [diff] [blame] | 2409 | mmc->max_req_size = mmc->max_seg_size * host->ring_size; |
| 2410 | mmc->max_blk_count = mmc->max_req_size / 512; |
Jaehoon Chung | a39e574 | 2012-02-04 17:00:27 -0500 | [diff] [blame] | 2411 | #else |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2412 | mmc->max_segs = 64; |
| 2413 | mmc->max_blk_size = 65536; /* BLKSIZ is 16 bits */ |
| 2414 | mmc->max_blk_count = 512; |
| 2415 | mmc->max_req_size = mmc->max_blk_size * mmc->max_blk_count; |
| 2416 | mmc->max_seg_size = mmc->max_req_size; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2417 | #endif /* CONFIG_MMC_DW_IDMAC */ |
Jaehoon Chung | a39e574 | 2012-02-04 17:00:27 -0500 | [diff] [blame] | 2418 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2419 | |
Jaehoon Chung | ae0eb34 | 2014-03-03 11:36:48 +0900 | [diff] [blame] | 2420 | if (dw_mci_get_cd(mmc)) |
| 2421 | set_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
| 2422 | else |
| 2423 | clear_bit(DW_MMC_CARD_PRESENT, &slot->flags); |
| 2424 | |
Jaehoon Chung | 0cea529 | 2013-02-15 23:45:45 +0900 | [diff] [blame] | 2425 | ret = mmc_add_host(mmc); |
| 2426 | if (ret) |
Doug Anderson | 3cf890f | 2014-08-25 11:19:04 -0700 | [diff] [blame] | 2427 | goto err_host_allocated; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2428 | |
| 2429 | #if defined(CONFIG_DEBUG_FS) |
| 2430 | dw_mci_init_debugfs(slot); |
| 2431 | #endif |
| 2432 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2433 | return 0; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2434 | |
Doug Anderson | 3cf890f | 2014-08-25 11:19:04 -0700 | [diff] [blame] | 2435 | err_host_allocated: |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2436 | mmc_free_host(mmc); |
Yuvaraj CD | 51da224 | 2014-08-22 19:17:50 +0530 | [diff] [blame] | 2437 | return ret; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2438 | } |
| 2439 | |
| 2440 | static void dw_mci_cleanup_slot(struct dw_mci_slot *slot, unsigned int id) |
| 2441 | { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2442 | /* Debugfs stuff is cleaned up by mmc core */ |
| 2443 | mmc_remove_host(slot->mmc); |
| 2444 | slot->host->slot[id] = NULL; |
| 2445 | mmc_free_host(slot->mmc); |
| 2446 | } |
| 2447 | |
| 2448 | static void dw_mci_init_dma(struct dw_mci *host) |
| 2449 | { |
Prabu Thangamuthu | 69d99fd | 2014-10-20 07:12:33 +0000 | [diff] [blame] | 2450 | int addr_config; |
| 2451 | /* Check ADDR_CONFIG bit in HCON to find IDMAC address bus width */ |
| 2452 | addr_config = (mci_readl(host, HCON) >> 27) & 0x01; |
| 2453 | |
| 2454 | if (addr_config == 1) { |
| 2455 | /* host supports IDMAC in 64-bit address mode */ |
| 2456 | host->dma_64bit_address = 1; |
| 2457 | dev_info(host->dev, "IDMAC supports 64-bit address mode.\n"); |
| 2458 | if (!dma_set_mask(host->dev, DMA_BIT_MASK(64))) |
| 2459 | dma_set_coherent_mask(host->dev, DMA_BIT_MASK(64)); |
| 2460 | } else { |
| 2461 | /* host supports IDMAC in 32-bit address mode */ |
| 2462 | host->dma_64bit_address = 0; |
| 2463 | dev_info(host->dev, "IDMAC supports 32-bit address mode.\n"); |
| 2464 | } |
| 2465 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2466 | /* Alloc memory for sg translation */ |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2467 | host->sg_cpu = dmam_alloc_coherent(host->dev, PAGE_SIZE, |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2468 | &host->sg_dma, GFP_KERNEL); |
| 2469 | if (!host->sg_cpu) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2470 | dev_err(host->dev, "%s: could not alloc DMA memory\n", |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2471 | __func__); |
| 2472 | goto no_dma; |
| 2473 | } |
| 2474 | |
| 2475 | /* Determine which DMA interface to use */ |
| 2476 | #ifdef CONFIG_MMC_DW_IDMAC |
| 2477 | host->dma_ops = &dw_mci_idmac_ops; |
Seungwon Jeon | 00956ea | 2012-09-28 19:13:11 +0900 | [diff] [blame] | 2478 | dev_info(host->dev, "Using internal DMA controller.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2479 | #endif |
| 2480 | |
| 2481 | if (!host->dma_ops) |
| 2482 | goto no_dma; |
| 2483 | |
Jaehoon Chung | e1631f9 | 2012-04-18 15:42:31 +0900 | [diff] [blame] | 2484 | if (host->dma_ops->init && host->dma_ops->start && |
| 2485 | host->dma_ops->stop && host->dma_ops->cleanup) { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2486 | if (host->dma_ops->init(host)) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2487 | dev_err(host->dev, "%s: Unable to initialize " |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2488 | "DMA Controller.\n", __func__); |
| 2489 | goto no_dma; |
| 2490 | } |
| 2491 | } else { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2492 | dev_err(host->dev, "DMA initialization not found.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2493 | goto no_dma; |
| 2494 | } |
| 2495 | |
| 2496 | host->use_dma = 1; |
| 2497 | return; |
| 2498 | |
| 2499 | no_dma: |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2500 | dev_info(host->dev, "Using PIO mode.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2501 | host->use_dma = 0; |
| 2502 | return; |
| 2503 | } |
| 2504 | |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2505 | static bool dw_mci_ctrl_reset(struct dw_mci *host, u32 reset) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2506 | { |
| 2507 | unsigned long timeout = jiffies + msecs_to_jiffies(500); |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2508 | u32 ctrl; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2509 | |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2510 | ctrl = mci_readl(host, CTRL); |
| 2511 | ctrl |= reset; |
| 2512 | mci_writel(host, CTRL, ctrl); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2513 | |
| 2514 | /* wait till resets clear */ |
| 2515 | do { |
| 2516 | ctrl = mci_readl(host, CTRL); |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2517 | if (!(ctrl & reset)) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2518 | return true; |
| 2519 | } while (time_before(jiffies, timeout)); |
| 2520 | |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2521 | dev_err(host->dev, |
| 2522 | "Timeout resetting block (ctrl reset %#x)\n", |
| 2523 | ctrl & reset); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2524 | |
| 2525 | return false; |
| 2526 | } |
| 2527 | |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 2528 | static bool dw_mci_reset(struct dw_mci *host) |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2529 | { |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 2530 | u32 flags = SDMMC_CTRL_RESET | SDMMC_CTRL_FIFO_RESET; |
| 2531 | bool ret = false; |
| 2532 | |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2533 | /* |
| 2534 | * Reseting generates a block interrupt, hence setting |
| 2535 | * the scatter-gather pointer to NULL. |
| 2536 | */ |
| 2537 | if (host->sg) { |
| 2538 | sg_miter_stop(&host->sg_miter); |
| 2539 | host->sg = NULL; |
| 2540 | } |
| 2541 | |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 2542 | if (host->use_dma) |
| 2543 | flags |= SDMMC_CTRL_DMA_RESET; |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2544 | |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 2545 | if (dw_mci_ctrl_reset(host, flags)) { |
| 2546 | /* |
| 2547 | * In all cases we clear the RAWINTS register to clear any |
| 2548 | * interrupts. |
| 2549 | */ |
| 2550 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2551 | |
| 2552 | /* if using dma we wait for dma_req to clear */ |
| 2553 | if (host->use_dma) { |
| 2554 | unsigned long timeout = jiffies + msecs_to_jiffies(500); |
| 2555 | u32 status; |
| 2556 | do { |
| 2557 | status = mci_readl(host, STATUS); |
| 2558 | if (!(status & SDMMC_STATUS_DMA_REQ)) |
| 2559 | break; |
| 2560 | cpu_relax(); |
| 2561 | } while (time_before(jiffies, timeout)); |
| 2562 | |
| 2563 | if (status & SDMMC_STATUS_DMA_REQ) { |
| 2564 | dev_err(host->dev, |
| 2565 | "%s: Timeout waiting for dma_req to " |
| 2566 | "clear during reset\n", __func__); |
| 2567 | goto ciu_out; |
| 2568 | } |
| 2569 | |
| 2570 | /* when using DMA next we reset the fifo again */ |
| 2571 | if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_FIFO_RESET)) |
| 2572 | goto ciu_out; |
| 2573 | } |
| 2574 | } else { |
| 2575 | /* if the controller reset bit did clear, then set clock regs */ |
| 2576 | if (!(mci_readl(host, CTRL) & SDMMC_CTRL_RESET)) { |
| 2577 | dev_err(host->dev, "%s: fifo/dma reset bits didn't " |
| 2578 | "clear but ciu was reset, doing clock update\n", |
| 2579 | __func__); |
| 2580 | goto ciu_out; |
| 2581 | } |
| 2582 | } |
| 2583 | |
| 2584 | #if IS_ENABLED(CONFIG_MMC_DW_IDMAC) |
| 2585 | /* It is also recommended that we reset and reprogram idmac */ |
| 2586 | dw_mci_idmac_reset(host); |
| 2587 | #endif |
| 2588 | |
| 2589 | ret = true; |
| 2590 | |
| 2591 | ciu_out: |
| 2592 | /* After a CTRL reset we need to have CIU set clock registers */ |
| 2593 | mci_send_cmd(host->cur_slot, SDMMC_CMD_UPD_CLK, 0); |
| 2594 | |
| 2595 | return ret; |
Seungwon Jeon | 31bff45 | 2013-08-31 00:14:23 +0900 | [diff] [blame] | 2596 | } |
| 2597 | |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 2598 | static void dw_mci_cmd11_timer(unsigned long arg) |
| 2599 | { |
| 2600 | struct dw_mci *host = (struct dw_mci *)arg; |
| 2601 | |
Doug Anderson | fd67419 | 2015-04-03 11:13:06 -0700 | [diff] [blame] | 2602 | if (host->state != STATE_SENDING_CMD11) { |
| 2603 | dev_warn(host->dev, "Unexpected CMD11 timeout\n"); |
| 2604 | return; |
| 2605 | } |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 2606 | |
| 2607 | host->cmd_status = SDMMC_INT_RTO; |
| 2608 | set_bit(EVENT_CMD_COMPLETE, &host->pending_events); |
| 2609 | tasklet_schedule(&host->tasklet); |
| 2610 | } |
| 2611 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2612 | #ifdef CONFIG_OF |
| 2613 | static struct dw_mci_of_quirks { |
| 2614 | char *quirk; |
| 2615 | int id; |
| 2616 | } of_quirks[] = { |
| 2617 | { |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2618 | .quirk = "broken-cd", |
| 2619 | .id = DW_MCI_QUIRK_BROKEN_CARD_DETECTION, |
Jaehoon Chung | 26375b5 | 2014-08-07 16:37:58 +0900 | [diff] [blame] | 2620 | }, { |
| 2621 | .quirk = "disable-wp", |
| 2622 | .id = DW_MCI_QUIRK_NO_WRITE_PROTECT, |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2623 | }, |
| 2624 | }; |
| 2625 | |
| 2626 | static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host) |
| 2627 | { |
| 2628 | struct dw_mci_board *pdata; |
| 2629 | struct device *dev = host->dev; |
| 2630 | struct device_node *np = dev->of_node; |
Arnd Bergmann | e95baf1 | 2012-11-08 14:26:11 +0000 | [diff] [blame] | 2631 | const struct dw_mci_drv_data *drv_data = host->drv_data; |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2632 | int idx, ret; |
Doug Anderson | 3c6d89e | 2013-06-07 10:28:30 -0700 | [diff] [blame] | 2633 | u32 clock_frequency; |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2634 | |
| 2635 | pdata = devm_kzalloc(dev, sizeof(*pdata), GFP_KERNEL); |
Beomho Seo | bf3707e | 2014-12-23 21:07:33 +0900 | [diff] [blame] | 2636 | if (!pdata) |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2637 | return ERR_PTR(-ENOMEM); |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2638 | |
| 2639 | /* find out number of slots supported */ |
| 2640 | if (of_property_read_u32(dev->of_node, "num-slots", |
| 2641 | &pdata->num_slots)) { |
| 2642 | dev_info(dev, "num-slots property not found, " |
| 2643 | "assuming 1 slot is available\n"); |
| 2644 | pdata->num_slots = 1; |
| 2645 | } |
| 2646 | |
| 2647 | /* get quirks */ |
| 2648 | for (idx = 0; idx < ARRAY_SIZE(of_quirks); idx++) |
| 2649 | if (of_get_property(np, of_quirks[idx].quirk, NULL)) |
| 2650 | pdata->quirks |= of_quirks[idx].id; |
| 2651 | |
| 2652 | if (of_property_read_u32(np, "fifo-depth", &pdata->fifo_depth)) |
| 2653 | dev_info(dev, "fifo-depth property not found, using " |
| 2654 | "value of FIFOTH register as default\n"); |
| 2655 | |
| 2656 | of_property_read_u32(np, "card-detect-delay", &pdata->detect_delay_ms); |
| 2657 | |
Doug Anderson | 3c6d89e | 2013-06-07 10:28:30 -0700 | [diff] [blame] | 2658 | if (!of_property_read_u32(np, "clock-frequency", &clock_frequency)) |
| 2659 | pdata->bus_hz = clock_frequency; |
| 2660 | |
James Hogan | cb27a84 | 2012-10-16 09:43:08 +0100 | [diff] [blame] | 2661 | if (drv_data && drv_data->parse_dt) { |
| 2662 | ret = drv_data->parse_dt(host); |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2663 | if (ret) |
| 2664 | return ERR_PTR(ret); |
| 2665 | } |
| 2666 | |
Seungwon Jeon | 10b4984 | 2013-08-31 00:13:22 +0900 | [diff] [blame] | 2667 | if (of_find_property(np, "supports-highspeed", NULL)) |
| 2668 | pdata->caps |= MMC_CAP_SD_HIGHSPEED | MMC_CAP_MMC_HIGHSPEED; |
| 2669 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2670 | return pdata; |
| 2671 | } |
| 2672 | |
| 2673 | #else /* CONFIG_OF */ |
| 2674 | static struct dw_mci_board *dw_mci_parse_dt(struct dw_mci *host) |
| 2675 | { |
| 2676 | return ERR_PTR(-EINVAL); |
| 2677 | } |
| 2678 | #endif /* CONFIG_OF */ |
| 2679 | |
Doug Anderson | fa0c328 | 2015-02-25 10:11:51 -0800 | [diff] [blame] | 2680 | static void dw_mci_enable_cd(struct dw_mci *host) |
| 2681 | { |
| 2682 | struct dw_mci_board *brd = host->pdata; |
| 2683 | unsigned long irqflags; |
| 2684 | u32 temp; |
| 2685 | int i; |
| 2686 | |
| 2687 | /* No need for CD if broken card detection */ |
| 2688 | if (brd->quirks & DW_MCI_QUIRK_BROKEN_CARD_DETECTION) |
| 2689 | return; |
| 2690 | |
| 2691 | /* No need for CD if all slots have a non-error GPIO */ |
| 2692 | for (i = 0; i < host->num_slots; i++) { |
| 2693 | struct dw_mci_slot *slot = host->slot[i]; |
| 2694 | |
| 2695 | if (IS_ERR_VALUE(mmc_gpio_get_cd(slot->mmc))) |
| 2696 | break; |
| 2697 | } |
| 2698 | if (i == host->num_slots) |
| 2699 | return; |
| 2700 | |
| 2701 | spin_lock_irqsave(&host->irq_lock, irqflags); |
| 2702 | temp = mci_readl(host, INTMASK); |
| 2703 | temp |= SDMMC_INT_CD; |
| 2704 | mci_writel(host, INTMASK, temp); |
| 2705 | spin_unlock_irqrestore(&host->irq_lock, irqflags); |
| 2706 | } |
| 2707 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2708 | int dw_mci_probe(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2709 | { |
Arnd Bergmann | e95baf1 | 2012-11-08 14:26:11 +0000 | [diff] [blame] | 2710 | const struct dw_mci_drv_data *drv_data = host->drv_data; |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2711 | int width, i, ret = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2712 | u32 fifo_size; |
Thomas Abraham | 1c2215b | 2012-09-17 18:16:37 +0000 | [diff] [blame] | 2713 | int init_slots = 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2714 | |
Thomas Abraham | c91eab4 | 2012-09-17 18:16:40 +0000 | [diff] [blame] | 2715 | if (!host->pdata) { |
| 2716 | host->pdata = dw_mci_parse_dt(host); |
| 2717 | if (IS_ERR(host->pdata)) { |
| 2718 | dev_err(host->dev, "platform data not available\n"); |
| 2719 | return -EINVAL; |
| 2720 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2721 | } |
| 2722 | |
Jaehoon Chung | 907abd5 | 2014-03-03 11:36:43 +0900 | [diff] [blame] | 2723 | if (host->pdata->num_slots > 1) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2724 | dev_err(host->dev, |
Jaehoon Chung | 907abd5 | 2014-03-03 11:36:43 +0900 | [diff] [blame] | 2725 | "Platform data must supply num_slots.\n"); |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2726 | return -ENODEV; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2727 | } |
| 2728 | |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2729 | host->biu_clk = devm_clk_get(host->dev, "biu"); |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2730 | if (IS_ERR(host->biu_clk)) { |
| 2731 | dev_dbg(host->dev, "biu clock not available\n"); |
| 2732 | } else { |
| 2733 | ret = clk_prepare_enable(host->biu_clk); |
| 2734 | if (ret) { |
| 2735 | dev_err(host->dev, "failed to enable biu clock\n"); |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2736 | return ret; |
| 2737 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2738 | } |
| 2739 | |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2740 | host->ciu_clk = devm_clk_get(host->dev, "ciu"); |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2741 | if (IS_ERR(host->ciu_clk)) { |
| 2742 | dev_dbg(host->dev, "ciu clock not available\n"); |
Doug Anderson | 3c6d89e | 2013-06-07 10:28:30 -0700 | [diff] [blame] | 2743 | host->bus_hz = host->pdata->bus_hz; |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2744 | } else { |
| 2745 | ret = clk_prepare_enable(host->ciu_clk); |
| 2746 | if (ret) { |
| 2747 | dev_err(host->dev, "failed to enable ciu clock\n"); |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2748 | goto err_clk_biu; |
| 2749 | } |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2750 | |
Doug Anderson | 3c6d89e | 2013-06-07 10:28:30 -0700 | [diff] [blame] | 2751 | if (host->pdata->bus_hz) { |
| 2752 | ret = clk_set_rate(host->ciu_clk, host->pdata->bus_hz); |
| 2753 | if (ret) |
| 2754 | dev_warn(host->dev, |
Jaehoon Chung | 612de4c | 2014-03-03 11:36:42 +0900 | [diff] [blame] | 2755 | "Unable to set bus rate to %uHz\n", |
Doug Anderson | 3c6d89e | 2013-06-07 10:28:30 -0700 | [diff] [blame] | 2756 | host->pdata->bus_hz); |
| 2757 | } |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2758 | host->bus_hz = clk_get_rate(host->ciu_clk); |
Doug Anderson | 3c6d89e | 2013-06-07 10:28:30 -0700 | [diff] [blame] | 2759 | } |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2760 | |
Jaehoon Chung | 612de4c | 2014-03-03 11:36:42 +0900 | [diff] [blame] | 2761 | if (!host->bus_hz) { |
| 2762 | dev_err(host->dev, |
| 2763 | "Platform data must supply bus speed\n"); |
| 2764 | ret = -ENODEV; |
| 2765 | goto err_clk_ciu; |
| 2766 | } |
| 2767 | |
Yuvaraj Kumar C D | 002f0d5 | 2013-08-31 00:12:19 +0900 | [diff] [blame] | 2768 | if (drv_data && drv_data->init) { |
| 2769 | ret = drv_data->init(host); |
| 2770 | if (ret) { |
| 2771 | dev_err(host->dev, |
| 2772 | "implementation specific init failed\n"); |
| 2773 | goto err_clk_ciu; |
| 2774 | } |
| 2775 | } |
| 2776 | |
James Hogan | cb27a84 | 2012-10-16 09:43:08 +0100 | [diff] [blame] | 2777 | if (drv_data && drv_data->setup_clock) { |
| 2778 | ret = drv_data->setup_clock(host); |
Thomas Abraham | 800d78b | 2012-09-17 18:16:42 +0000 | [diff] [blame] | 2779 | if (ret) { |
| 2780 | dev_err(host->dev, |
| 2781 | "implementation specific clock setup failed\n"); |
| 2782 | goto err_clk_ciu; |
| 2783 | } |
| 2784 | } |
| 2785 | |
Doug Anderson | 5c93516 | 2015-03-09 16:18:21 -0700 | [diff] [blame] | 2786 | setup_timer(&host->cmd11_timer, |
| 2787 | dw_mci_cmd11_timer, (unsigned long)host); |
| 2788 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2789 | host->quirks = host->pdata->quirks; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2790 | |
| 2791 | spin_lock_init(&host->lock); |
Doug Anderson | f8c58c1 | 2014-12-02 15:42:47 -0800 | [diff] [blame] | 2792 | spin_lock_init(&host->irq_lock); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2793 | INIT_LIST_HEAD(&host->queue); |
| 2794 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2795 | /* |
| 2796 | * Get the host data width - this assumes that HCON has been set with |
| 2797 | * the correct values. |
| 2798 | */ |
| 2799 | i = (mci_readl(host, HCON) >> 7) & 0x7; |
| 2800 | if (!i) { |
| 2801 | host->push_data = dw_mci_push_data16; |
| 2802 | host->pull_data = dw_mci_pull_data16; |
| 2803 | width = 16; |
| 2804 | host->data_shift = 1; |
| 2805 | } else if (i == 2) { |
| 2806 | host->push_data = dw_mci_push_data64; |
| 2807 | host->pull_data = dw_mci_pull_data64; |
| 2808 | width = 64; |
| 2809 | host->data_shift = 3; |
| 2810 | } else { |
| 2811 | /* Check for a reserved value, and warn if it is */ |
| 2812 | WARN((i != 1), |
| 2813 | "HCON reports a reserved host data width!\n" |
| 2814 | "Defaulting to 32-bit access.\n"); |
| 2815 | host->push_data = dw_mci_push_data32; |
| 2816 | host->pull_data = dw_mci_pull_data32; |
| 2817 | width = 32; |
| 2818 | host->data_shift = 2; |
| 2819 | } |
| 2820 | |
| 2821 | /* Reset all blocks */ |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 2822 | if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS)) |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 2823 | return -ENODEV; |
| 2824 | |
| 2825 | host->dma_ops = host->pdata->dma_ops; |
| 2826 | dw_mci_init_dma(host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2827 | |
| 2828 | /* Clear the interrupts for the host controller */ |
| 2829 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2830 | mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */ |
| 2831 | |
| 2832 | /* Put in max timeout */ |
| 2833 | mci_writel(host, TMOUT, 0xFFFFFFFF); |
| 2834 | |
| 2835 | /* |
| 2836 | * FIFO threshold settings RxMark = fifo_size / 2 - 1, |
| 2837 | * Tx Mark = fifo_size / 2 DMA Size = 8 |
| 2838 | */ |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 2839 | if (!host->pdata->fifo_depth) { |
| 2840 | /* |
| 2841 | * Power-on value of RX_WMark is FIFO_DEPTH-1, but this may |
| 2842 | * have been overwritten by the bootloader, just like we're |
| 2843 | * about to do, so if you know the value for your hardware, you |
| 2844 | * should put it in the platform data. |
| 2845 | */ |
| 2846 | fifo_size = mci_readl(host, FIFOTH); |
Jaehoon Chung | 8234e86 | 2012-01-11 09:28:21 +0000 | [diff] [blame] | 2847 | fifo_size = 1 + ((fifo_size >> 16) & 0xfff); |
James Hogan | b86d825 | 2011-06-24 13:57:18 +0100 | [diff] [blame] | 2848 | } else { |
| 2849 | fifo_size = host->pdata->fifo_depth; |
| 2850 | } |
| 2851 | host->fifo_depth = fifo_size; |
Seungwon Jeon | 5242689 | 2013-08-31 00:13:42 +0900 | [diff] [blame] | 2852 | host->fifoth_val = |
| 2853 | SDMMC_SET_FIFOTH(0x2, fifo_size / 2 - 1, fifo_size / 2); |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2854 | mci_writel(host, FIFOTH, host->fifoth_val); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2855 | |
| 2856 | /* disable clock to CIU */ |
| 2857 | mci_writel(host, CLKENA, 0); |
| 2858 | mci_writel(host, CLKSRC, 0); |
| 2859 | |
James Hogan | 6300876 | 2013-03-12 10:43:54 +0000 | [diff] [blame] | 2860 | /* |
| 2861 | * In 2.40a spec, Data offset is changed. |
| 2862 | * Need to check the version-id and set data-offset for DATA register. |
| 2863 | */ |
| 2864 | host->verid = SDMMC_GET_VERID(mci_readl(host, VERID)); |
| 2865 | dev_info(host->dev, "Version ID is %04x\n", host->verid); |
| 2866 | |
| 2867 | if (host->verid < DW_MMC_240A) |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 2868 | host->fifo_reg = host->regs + DATA_OFFSET; |
James Hogan | 6300876 | 2013-03-12 10:43:54 +0000 | [diff] [blame] | 2869 | else |
Ben Dooks | 76184ac | 2015-03-25 11:27:52 +0000 | [diff] [blame] | 2870 | host->fifo_reg = host->regs + DATA_240A_OFFSET; |
James Hogan | 6300876 | 2013-03-12 10:43:54 +0000 | [diff] [blame] | 2871 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2872 | tasklet_init(&host->tasklet, dw_mci_tasklet_func, (unsigned long)host); |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2873 | ret = devm_request_irq(host->dev, host->irq, dw_mci_interrupt, |
| 2874 | host->irq_flags, "dw-mci", host); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2875 | if (ret) |
Doug Anderson | 6130e7a | 2014-10-14 09:33:09 -0700 | [diff] [blame] | 2876 | goto err_dmaunmap; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2877 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2878 | if (host->pdata->num_slots) |
| 2879 | host->num_slots = host->pdata->num_slots; |
| 2880 | else |
| 2881 | host->num_slots = ((mci_readl(host, HCON) >> 1) & 0x1F) + 1; |
| 2882 | |
Yuvaraj CD | 2da1d7f | 2012-10-08 14:29:51 +0530 | [diff] [blame] | 2883 | /* |
Doug Anderson | fa0c328 | 2015-02-25 10:11:51 -0800 | [diff] [blame] | 2884 | * Enable interrupts for command done, data over, data empty, |
Yuvaraj CD | 2da1d7f | 2012-10-08 14:29:51 +0530 | [diff] [blame] | 2885 | * receive ready and error such as transmit, receive timeout, crc error |
| 2886 | */ |
| 2887 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2888 | mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER | |
| 2889 | SDMMC_INT_TXDR | SDMMC_INT_RXDR | |
Doug Anderson | fa0c328 | 2015-02-25 10:11:51 -0800 | [diff] [blame] | 2890 | DW_MCI_ERROR_FLAGS); |
Yuvaraj CD | 2da1d7f | 2012-10-08 14:29:51 +0530 | [diff] [blame] | 2891 | mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); /* Enable mci interrupt */ |
| 2892 | |
| 2893 | dev_info(host->dev, "DW MMC controller at irq %d, " |
| 2894 | "%d bit host data width, " |
| 2895 | "%u deep fifo\n", |
| 2896 | host->irq, width, fifo_size); |
| 2897 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2898 | /* We need at least one slot to succeed */ |
| 2899 | for (i = 0; i < host->num_slots; i++) { |
| 2900 | ret = dw_mci_init_slot(host, i); |
Thomas Abraham | 1c2215b | 2012-09-17 18:16:37 +0000 | [diff] [blame] | 2901 | if (ret) |
| 2902 | dev_dbg(host->dev, "slot %d init failed\n", i); |
| 2903 | else |
| 2904 | init_slots++; |
| 2905 | } |
| 2906 | |
| 2907 | if (init_slots) { |
| 2908 | dev_info(host->dev, "%d slots initialized\n", init_slots); |
| 2909 | } else { |
| 2910 | dev_dbg(host->dev, "attempted to initialize %d slots, " |
| 2911 | "but failed on all\n", host->num_slots); |
Doug Anderson | 6130e7a | 2014-10-14 09:33:09 -0700 | [diff] [blame] | 2912 | goto err_dmaunmap; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2913 | } |
| 2914 | |
Doug Anderson | b793f65 | 2015-03-11 15:15:14 -0700 | [diff] [blame] | 2915 | /* Now that slots are all setup, we can enable card detect */ |
| 2916 | dw_mci_enable_cd(host); |
| 2917 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2918 | if (host->quirks & DW_MCI_QUIRK_IDMAC_DTO) |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2919 | dev_info(host->dev, "Internal DMAC interrupt fix enabled.\n"); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2920 | |
| 2921 | return 0; |
| 2922 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2923 | err_dmaunmap: |
| 2924 | if (host->use_dma && host->dma_ops->exit) |
| 2925 | host->dma_ops->exit(host); |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2926 | |
| 2927 | err_clk_ciu: |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2928 | if (!IS_ERR(host->ciu_clk)) |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2929 | clk_disable_unprepare(host->ciu_clk); |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2930 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2931 | err_clk_biu: |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2932 | if (!IS_ERR(host->biu_clk)) |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2933 | clk_disable_unprepare(host->biu_clk); |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2934 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2935 | return ret; |
| 2936 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2937 | EXPORT_SYMBOL(dw_mci_probe); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2938 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2939 | void dw_mci_remove(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2940 | { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2941 | int i; |
| 2942 | |
| 2943 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 2944 | mci_writel(host, INTMASK, 0); /* disable all mmc interrupt first */ |
| 2945 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2946 | for (i = 0; i < host->num_slots; i++) { |
Thomas Abraham | 4a90920 | 2012-09-17 18:16:35 +0000 | [diff] [blame] | 2947 | dev_dbg(host->dev, "remove slot %d\n", i); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2948 | if (host->slot[i]) |
| 2949 | dw_mci_cleanup_slot(host->slot[i], i); |
| 2950 | } |
| 2951 | |
| 2952 | /* disable clock to CIU */ |
| 2953 | mci_writel(host, CLKENA, 0); |
| 2954 | mci_writel(host, CLKSRC, 0); |
| 2955 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2956 | if (host->use_dma && host->dma_ops->exit) |
| 2957 | host->dma_ops->exit(host); |
| 2958 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2959 | if (!IS_ERR(host->ciu_clk)) |
| 2960 | clk_disable_unprepare(host->ciu_clk); |
Seungwon Jeon | 780f22a | 2012-11-28 19:26:03 +0900 | [diff] [blame] | 2961 | |
Thomas Abraham | f90a061 | 2012-09-17 18:16:38 +0000 | [diff] [blame] | 2962 | if (!IS_ERR(host->biu_clk)) |
| 2963 | clk_disable_unprepare(host->biu_clk); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2964 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2965 | EXPORT_SYMBOL(dw_mci_remove); |
| 2966 | |
| 2967 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2968 | |
Jaehoon Chung | 6fe8890 | 2011-12-08 19:23:03 +0900 | [diff] [blame] | 2969 | #ifdef CONFIG_PM_SLEEP |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2970 | /* |
| 2971 | * TODO: we should probably disable the clock to the card in the suspend path. |
| 2972 | */ |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2973 | int dw_mci_suspend(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2974 | { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2975 | return 0; |
| 2976 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2977 | EXPORT_SYMBOL(dw_mci_suspend); |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2978 | |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 2979 | int dw_mci_resume(struct dw_mci *host) |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2980 | { |
| 2981 | int i, ret; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 2982 | |
Sonny Rao | 3a33a94 | 2014-08-04 18:19:50 -0700 | [diff] [blame] | 2983 | if (!dw_mci_ctrl_reset(host, SDMMC_CTRL_ALL_RESET_FLAGS)) { |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2984 | ret = -ENODEV; |
| 2985 | return ret; |
| 2986 | } |
| 2987 | |
Jonathan Kliegman | 3bfe619 | 2012-06-14 13:31:55 -0400 | [diff] [blame] | 2988 | if (host->use_dma && host->dma_ops->init) |
Seungwon Jeon | 141a712 | 2012-05-22 13:01:03 +0900 | [diff] [blame] | 2989 | host->dma_ops->init(host); |
| 2990 | |
Seungwon Jeon | 5242689 | 2013-08-31 00:13:42 +0900 | [diff] [blame] | 2991 | /* |
| 2992 | * Restore the initial value at FIFOTH register |
| 2993 | * And Invalidate the prev_blksz with zero |
| 2994 | */ |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2995 | mci_writel(host, FIFOTH, host->fifoth_val); |
Seungwon Jeon | 5242689 | 2013-08-31 00:13:42 +0900 | [diff] [blame] | 2996 | host->prev_blksz = 0; |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 2997 | |
Doug Anderson | 2eb2944 | 2013-08-31 00:11:49 +0900 | [diff] [blame] | 2998 | /* Put in max timeout */ |
| 2999 | mci_writel(host, TMOUT, 0xFFFFFFFF); |
| 3000 | |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 3001 | mci_writel(host, RINTSTS, 0xFFFFFFFF); |
| 3002 | mci_writel(host, INTMASK, SDMMC_INT_CMD_DONE | SDMMC_INT_DATA_OVER | |
| 3003 | SDMMC_INT_TXDR | SDMMC_INT_RXDR | |
Doug Anderson | fa0c328 | 2015-02-25 10:11:51 -0800 | [diff] [blame] | 3004 | DW_MCI_ERROR_FLAGS); |
Jaehoon Chung | e61cf11 | 2011-03-17 20:32:33 +0900 | [diff] [blame] | 3005 | mci_writel(host, CTRL, SDMMC_CTRL_INT_ENABLE); |
| 3006 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 3007 | for (i = 0; i < host->num_slots; i++) { |
| 3008 | struct dw_mci_slot *slot = host->slot[i]; |
| 3009 | if (!slot) |
| 3010 | continue; |
Abhilash Kesavan | ab26912 | 2012-11-19 10:26:21 +0530 | [diff] [blame] | 3011 | if (slot->mmc->pm_flags & MMC_PM_KEEP_POWER) { |
| 3012 | dw_mci_set_ios(slot->mmc, &slot->mmc->ios); |
| 3013 | dw_mci_setup_bus(slot, true); |
| 3014 | } |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 3015 | } |
Doug Anderson | fa0c328 | 2015-02-25 10:11:51 -0800 | [diff] [blame] | 3016 | |
| 3017 | /* Now that slots are all setup, we can enable card detect */ |
| 3018 | dw_mci_enable_cd(host); |
| 3019 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 3020 | return 0; |
| 3021 | } |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 3022 | EXPORT_SYMBOL(dw_mci_resume); |
Jaehoon Chung | 6fe8890 | 2011-12-08 19:23:03 +0900 | [diff] [blame] | 3023 | #endif /* CONFIG_PM_SLEEP */ |
| 3024 | |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 3025 | static int __init dw_mci_init(void) |
| 3026 | { |
Sachin Kamat | 8e1c4e4 | 2013-04-04 11:25:11 +0530 | [diff] [blame] | 3027 | pr_info("Synopsys Designware Multimedia Card Interface Driver\n"); |
Shashidhar Hiremath | 62ca803 | 2012-01-13 16:04:57 +0530 | [diff] [blame] | 3028 | return 0; |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 3029 | } |
| 3030 | |
| 3031 | static void __exit dw_mci_exit(void) |
| 3032 | { |
Will Newton | f95f385 | 2011-01-02 01:11:59 -0500 | [diff] [blame] | 3033 | } |
| 3034 | |
| 3035 | module_init(dw_mci_init); |
| 3036 | module_exit(dw_mci_exit); |
| 3037 | |
| 3038 | MODULE_DESCRIPTION("DW Multimedia Card Interface driver"); |
| 3039 | MODULE_AUTHOR("NXP Semiconductor VietNam"); |
| 3040 | MODULE_AUTHOR("Imagination Technologies Ltd"); |
| 3041 | MODULE_LICENSE("GPL v2"); |