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