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