Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2012 SAMSUNG Electronics |
| 3 | * Jaehoon Chung <jh80.chung@samsung.com> |
| 4 | * Rajeshawari Shinde <rajeshwari.s@samsung.com> |
| 5 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 6 | * SPDX-License-Identifier: GPL-2.0+ |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
Alexey Brodkin | 55bab5e | 2013-12-26 15:29:07 +0400 | [diff] [blame] | 9 | #include <bouncebuf.h> |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 10 | #include <common.h> |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 11 | #include <errno.h> |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 12 | #include <malloc.h> |
Simon Glass | 2dd337a | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 13 | #include <memalign.h> |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 14 | #include <mmc.h> |
| 15 | #include <dwmmc.h> |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 16 | #include <asm-generic/errno.h> |
| 17 | |
| 18 | #define PAGE_SIZE 4096 |
| 19 | |
| 20 | static int dwmci_wait_reset(struct dwmci_host *host, u32 value) |
| 21 | { |
| 22 | unsigned long timeout = 1000; |
| 23 | u32 ctrl; |
| 24 | |
| 25 | dwmci_writel(host, DWMCI_CTRL, value); |
| 26 | |
| 27 | while (timeout--) { |
| 28 | ctrl = dwmci_readl(host, DWMCI_CTRL); |
| 29 | if (!(ctrl & DWMCI_RESET_ALL)) |
| 30 | return 1; |
| 31 | } |
| 32 | return 0; |
| 33 | } |
| 34 | |
| 35 | static void dwmci_set_idma_desc(struct dwmci_idmac *idmac, |
| 36 | u32 desc0, u32 desc1, u32 desc2) |
| 37 | { |
| 38 | struct dwmci_idmac *desc = idmac; |
| 39 | |
| 40 | desc->flags = desc0; |
| 41 | desc->cnt = desc1; |
| 42 | desc->addr = desc2; |
Prabhakar Kushwaha | fdefb90 | 2015-10-25 13:18:25 +0530 | [diff] [blame] | 43 | desc->next_addr = (ulong)desc + sizeof(struct dwmci_idmac); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static void dwmci_prepare_data(struct dwmci_host *host, |
Alexey Brodkin | 55bab5e | 2013-12-26 15:29:07 +0400 | [diff] [blame] | 47 | struct mmc_data *data, |
| 48 | struct dwmci_idmac *cur_idmac, |
| 49 | void *bounce_buffer) |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 50 | { |
| 51 | unsigned long ctrl; |
| 52 | unsigned int i = 0, flags, cnt, blk_cnt; |
Alexey Brodkin | 55bab5e | 2013-12-26 15:29:07 +0400 | [diff] [blame] | 53 | ulong data_start, data_end; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 54 | |
| 55 | |
| 56 | blk_cnt = data->blocks; |
| 57 | |
| 58 | dwmci_wait_reset(host, DWMCI_CTRL_FIFO_RESET); |
| 59 | |
| 60 | data_start = (ulong)cur_idmac; |
Prabhakar Kushwaha | fdefb90 | 2015-10-25 13:18:25 +0530 | [diff] [blame] | 61 | dwmci_writel(host, DWMCI_DBADDR, (ulong)cur_idmac); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 62 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 63 | do { |
| 64 | flags = DWMCI_IDMAC_OWN | DWMCI_IDMAC_CH ; |
| 65 | flags |= (i == 0) ? DWMCI_IDMAC_FS : 0; |
| 66 | if (blk_cnt <= 8) { |
| 67 | flags |= DWMCI_IDMAC_LD; |
| 68 | cnt = data->blocksize * blk_cnt; |
| 69 | } else |
| 70 | cnt = data->blocksize * 8; |
| 71 | |
| 72 | dwmci_set_idma_desc(cur_idmac, flags, cnt, |
Prabhakar Kushwaha | fdefb90 | 2015-10-25 13:18:25 +0530 | [diff] [blame] | 73 | (ulong)bounce_buffer + (i * PAGE_SIZE)); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 74 | |
Mischa Jonker | a7a6091 | 2013-07-26 16:18:40 +0200 | [diff] [blame] | 75 | if (blk_cnt <= 8) |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 76 | break; |
| 77 | blk_cnt -= 8; |
| 78 | cur_idmac++; |
| 79 | i++; |
| 80 | } while(1); |
| 81 | |
| 82 | data_end = (ulong)cur_idmac; |
| 83 | flush_dcache_range(data_start, data_end + ARCH_DMA_MINALIGN); |
| 84 | |
| 85 | ctrl = dwmci_readl(host, DWMCI_CTRL); |
| 86 | ctrl |= DWMCI_IDMAC_EN | DWMCI_DMA_EN; |
| 87 | dwmci_writel(host, DWMCI_CTRL, ctrl); |
| 88 | |
| 89 | ctrl = dwmci_readl(host, DWMCI_BMOD); |
| 90 | ctrl |= DWMCI_BMOD_IDMAC_FB | DWMCI_BMOD_IDMAC_EN; |
| 91 | dwmci_writel(host, DWMCI_BMOD, ctrl); |
| 92 | |
| 93 | dwmci_writel(host, DWMCI_BLKSIZ, data->blocksize); |
| 94 | dwmci_writel(host, DWMCI_BYTCNT, data->blocksize * data->blocks); |
| 95 | } |
| 96 | |
huang lin | f983676 | 2015-11-17 14:20:21 +0800 | [diff] [blame^] | 97 | static int dwmci_data_transfer(struct dwmci_host *host) |
| 98 | { |
| 99 | int ret = 0; |
| 100 | unsigned int timeout = 240000; |
| 101 | u32 mask; |
| 102 | ulong start = get_timer(0); |
| 103 | |
| 104 | for (;;) { |
| 105 | mask = dwmci_readl(host, DWMCI_RINTSTS); |
| 106 | /* Error during data transfer. */ |
| 107 | if (mask & (DWMCI_DATA_ERR | DWMCI_DATA_TOUT)) { |
| 108 | debug("%s: DATA ERROR!\n", __func__); |
| 109 | ret = -EINVAL; |
| 110 | break; |
| 111 | } |
| 112 | |
| 113 | /* Data arrived correctly. */ |
| 114 | if (mask & DWMCI_INTMSK_DTO) { |
| 115 | ret = 0; |
| 116 | break; |
| 117 | } |
| 118 | |
| 119 | /* Check for timeout. */ |
| 120 | if (get_timer(start) > timeout) { |
| 121 | debug("%s: Timeout waiting for data!\n", |
| 122 | __func__); |
| 123 | ret = TIMEOUT; |
| 124 | break; |
| 125 | } |
| 126 | } |
| 127 | |
| 128 | dwmci_writel(host, DWMCI_RINTSTS, mask); |
| 129 | |
| 130 | return ret; |
| 131 | } |
| 132 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 133 | static int dwmci_set_transfer_mode(struct dwmci_host *host, |
| 134 | struct mmc_data *data) |
| 135 | { |
| 136 | unsigned long mode; |
| 137 | |
| 138 | mode = DWMCI_CMD_DATA_EXP; |
| 139 | if (data->flags & MMC_DATA_WRITE) |
| 140 | mode |= DWMCI_CMD_RW; |
| 141 | |
| 142 | return mode; |
| 143 | } |
| 144 | |
| 145 | static int dwmci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, |
| 146 | struct mmc_data *data) |
| 147 | { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 148 | struct dwmci_host *host = mmc->priv; |
Mischa Jonker | 7423bed | 2013-07-26 14:08:14 +0200 | [diff] [blame] | 149 | ALLOC_CACHE_ALIGN_BUFFER(struct dwmci_idmac, cur_idmac, |
Mischa Jonker | a7a6091 | 2013-07-26 16:18:40 +0200 | [diff] [blame] | 150 | data ? DIV_ROUND_UP(data->blocks, 8) : 0); |
Marek Vasut | 81e093f | 2015-07-27 22:39:38 +0200 | [diff] [blame] | 151 | int ret = 0, flags = 0, i; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 152 | unsigned int timeout = 100000; |
| 153 | u32 retry = 10000; |
| 154 | u32 mask, ctrl; |
Amar | 902664c | 2013-04-27 11:42:54 +0530 | [diff] [blame] | 155 | ulong start = get_timer(0); |
Alexey Brodkin | 55bab5e | 2013-12-26 15:29:07 +0400 | [diff] [blame] | 156 | struct bounce_buffer bbstate; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 157 | |
| 158 | while (dwmci_readl(host, DWMCI_STATUS) & DWMCI_BUSY) { |
Amar | 902664c | 2013-04-27 11:42:54 +0530 | [diff] [blame] | 159 | if (get_timer(start) > timeout) { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 160 | debug("%s: Timeout on data busy\n", __func__); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 161 | return TIMEOUT; |
| 162 | } |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | dwmci_writel(host, DWMCI_RINTSTS, DWMCI_INTMSK_ALL); |
| 166 | |
Alexey Brodkin | 55bab5e | 2013-12-26 15:29:07 +0400 | [diff] [blame] | 167 | if (data) { |
| 168 | if (data->flags == MMC_DATA_READ) { |
| 169 | bounce_buffer_start(&bbstate, (void*)data->dest, |
| 170 | data->blocksize * |
| 171 | data->blocks, GEN_BB_WRITE); |
| 172 | } else { |
| 173 | bounce_buffer_start(&bbstate, (void*)data->src, |
| 174 | data->blocksize * |
| 175 | data->blocks, GEN_BB_READ); |
| 176 | } |
| 177 | dwmci_prepare_data(host, data, cur_idmac, |
| 178 | bbstate.bounce_buffer); |
| 179 | } |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 180 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 181 | dwmci_writel(host, DWMCI_CMDARG, cmd->cmdarg); |
| 182 | |
| 183 | if (data) |
| 184 | flags = dwmci_set_transfer_mode(host, data); |
| 185 | |
| 186 | if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY)) |
| 187 | return -1; |
| 188 | |
| 189 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 190 | flags |= DWMCI_CMD_ABORT_STOP; |
| 191 | else |
| 192 | flags |= DWMCI_CMD_PRV_DAT_WAIT; |
| 193 | |
| 194 | if (cmd->resp_type & MMC_RSP_PRESENT) { |
| 195 | flags |= DWMCI_CMD_RESP_EXP; |
| 196 | if (cmd->resp_type & MMC_RSP_136) |
| 197 | flags |= DWMCI_CMD_RESP_LENGTH; |
| 198 | } |
| 199 | |
| 200 | if (cmd->resp_type & MMC_RSP_CRC) |
| 201 | flags |= DWMCI_CMD_CHECK_CRC; |
| 202 | |
| 203 | flags |= (cmd->cmdidx | DWMCI_CMD_START | DWMCI_CMD_USE_HOLD_REG); |
| 204 | |
| 205 | debug("Sending CMD%d\n",cmd->cmdidx); |
| 206 | |
| 207 | dwmci_writel(host, DWMCI_CMD, flags); |
| 208 | |
| 209 | for (i = 0; i < retry; i++) { |
| 210 | mask = dwmci_readl(host, DWMCI_RINTSTS); |
| 211 | if (mask & DWMCI_INTMSK_CDONE) { |
| 212 | if (!data) |
| 213 | dwmci_writel(host, DWMCI_RINTSTS, mask); |
| 214 | break; |
| 215 | } |
| 216 | } |
| 217 | |
Pavel Machek | a425f5d | 2014-09-05 12:49:48 +0200 | [diff] [blame] | 218 | if (i == retry) { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 219 | debug("%s: Timeout.\n", __func__); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 220 | return TIMEOUT; |
Pavel Machek | a425f5d | 2014-09-05 12:49:48 +0200 | [diff] [blame] | 221 | } |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 222 | |
| 223 | if (mask & DWMCI_INTMSK_RTO) { |
Pavel Machek | a425f5d | 2014-09-05 12:49:48 +0200 | [diff] [blame] | 224 | /* |
| 225 | * Timeout here is not necessarily fatal. (e)MMC cards |
| 226 | * will splat here when they receive CMD55 as they do |
| 227 | * not support this command and that is exactly the way |
| 228 | * to tell them apart from SD cards. Thus, this output |
| 229 | * below shall be debug(). eMMC cards also do not favor |
| 230 | * CMD8, please keep that in mind. |
| 231 | */ |
| 232 | debug("%s: Response Timeout.\n", __func__); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 233 | return TIMEOUT; |
| 234 | } else if (mask & DWMCI_INTMSK_RE) { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 235 | debug("%s: Response Error.\n", __func__); |
| 236 | return -EIO; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 237 | } |
| 238 | |
| 239 | |
| 240 | if (cmd->resp_type & MMC_RSP_PRESENT) { |
| 241 | if (cmd->resp_type & MMC_RSP_136) { |
| 242 | cmd->response[0] = dwmci_readl(host, DWMCI_RESP3); |
| 243 | cmd->response[1] = dwmci_readl(host, DWMCI_RESP2); |
| 244 | cmd->response[2] = dwmci_readl(host, DWMCI_RESP1); |
| 245 | cmd->response[3] = dwmci_readl(host, DWMCI_RESP0); |
| 246 | } else { |
| 247 | cmd->response[0] = dwmci_readl(host, DWMCI_RESP0); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | if (data) { |
huang lin | f983676 | 2015-11-17 14:20:21 +0800 | [diff] [blame^] | 252 | ret = dwmci_data_transfer(host); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 253 | |
| 254 | ctrl = dwmci_readl(host, DWMCI_CTRL); |
| 255 | ctrl &= ~(DWMCI_DMA_EN); |
| 256 | dwmci_writel(host, DWMCI_CTRL, ctrl); |
Alexey Brodkin | 55bab5e | 2013-12-26 15:29:07 +0400 | [diff] [blame] | 257 | bounce_buffer_stop(&bbstate); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 258 | } |
| 259 | |
| 260 | udelay(100); |
| 261 | |
Marek Vasut | 81e093f | 2015-07-27 22:39:38 +0200 | [diff] [blame] | 262 | return ret; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 263 | } |
| 264 | |
| 265 | static int dwmci_setup_bus(struct dwmci_host *host, u32 freq) |
| 266 | { |
| 267 | u32 div, status; |
| 268 | int timeout = 10000; |
| 269 | unsigned long sclk; |
| 270 | |
Amar | 902664c | 2013-04-27 11:42:54 +0530 | [diff] [blame] | 271 | if ((freq == host->clock) || (freq == 0)) |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 272 | return 0; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 273 | /* |
Pavel Machek | a425f5d | 2014-09-05 12:49:48 +0200 | [diff] [blame] | 274 | * If host->get_mmc_clk isn't defined, |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 275 | * then assume that host->bus_hz is source clock value. |
Pavel Machek | a425f5d | 2014-09-05 12:49:48 +0200 | [diff] [blame] | 276 | * host->bus_hz should be set by user. |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 277 | */ |
Jaehoon Chung | d94735b | 2013-10-06 18:59:31 +0900 | [diff] [blame] | 278 | if (host->get_mmc_clk) |
Simon Glass | eff7668 | 2015-08-30 16:55:15 -0600 | [diff] [blame] | 279 | sclk = host->get_mmc_clk(host, freq); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 280 | else if (host->bus_hz) |
| 281 | sclk = host->bus_hz; |
| 282 | else { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 283 | debug("%s: Didn't get source clock value.\n", __func__); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 284 | return -EINVAL; |
| 285 | } |
| 286 | |
Chin Liang See | 4cfff95 | 2014-06-10 01:26:52 -0500 | [diff] [blame] | 287 | if (sclk == freq) |
| 288 | div = 0; /* bypass mode */ |
| 289 | else |
| 290 | div = DIV_ROUND_UP(sclk, 2 * freq); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 291 | |
| 292 | dwmci_writel(host, DWMCI_CLKENA, 0); |
| 293 | dwmci_writel(host, DWMCI_CLKSRC, 0); |
| 294 | |
| 295 | dwmci_writel(host, DWMCI_CLKDIV, div); |
| 296 | dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT | |
| 297 | DWMCI_CMD_UPD_CLK | DWMCI_CMD_START); |
| 298 | |
| 299 | do { |
| 300 | status = dwmci_readl(host, DWMCI_CMD); |
| 301 | if (timeout-- < 0) { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 302 | debug("%s: Timeout!\n", __func__); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 303 | return -ETIMEDOUT; |
| 304 | } |
| 305 | } while (status & DWMCI_CMD_START); |
| 306 | |
| 307 | dwmci_writel(host, DWMCI_CLKENA, DWMCI_CLKEN_ENABLE | |
| 308 | DWMCI_CLKEN_LOW_PWR); |
| 309 | |
| 310 | dwmci_writel(host, DWMCI_CMD, DWMCI_CMD_PRV_DAT_WAIT | |
| 311 | DWMCI_CMD_UPD_CLK | DWMCI_CMD_START); |
| 312 | |
| 313 | timeout = 10000; |
| 314 | do { |
| 315 | status = dwmci_readl(host, DWMCI_CMD); |
| 316 | if (timeout-- < 0) { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 317 | debug("%s: Timeout!\n", __func__); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 318 | return -ETIMEDOUT; |
| 319 | } |
| 320 | } while (status & DWMCI_CMD_START); |
| 321 | |
| 322 | host->clock = freq; |
| 323 | |
| 324 | return 0; |
| 325 | } |
| 326 | |
| 327 | static void dwmci_set_ios(struct mmc *mmc) |
| 328 | { |
Jaehoon Chung | e867294 | 2014-05-16 13:59:55 +0900 | [diff] [blame] | 329 | struct dwmci_host *host = (struct dwmci_host *)mmc->priv; |
| 330 | u32 ctype, regs; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 331 | |
Pavel Machek | a425f5d | 2014-09-05 12:49:48 +0200 | [diff] [blame] | 332 | debug("Buswidth = %d, clock: %d\n", mmc->bus_width, mmc->clock); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 333 | |
| 334 | dwmci_setup_bus(host, mmc->clock); |
| 335 | switch (mmc->bus_width) { |
| 336 | case 8: |
| 337 | ctype = DWMCI_CTYPE_8BIT; |
| 338 | break; |
| 339 | case 4: |
| 340 | ctype = DWMCI_CTYPE_4BIT; |
| 341 | break; |
| 342 | default: |
| 343 | ctype = DWMCI_CTYPE_1BIT; |
| 344 | break; |
| 345 | } |
| 346 | |
| 347 | dwmci_writel(host, DWMCI_CTYPE, ctype); |
| 348 | |
Jaehoon Chung | e867294 | 2014-05-16 13:59:55 +0900 | [diff] [blame] | 349 | regs = dwmci_readl(host, DWMCI_UHS_REG); |
Andrew Gabbasov | 54c0e22 | 2014-12-01 06:59:12 -0600 | [diff] [blame] | 350 | if (mmc->ddr_mode) |
Jaehoon Chung | e867294 | 2014-05-16 13:59:55 +0900 | [diff] [blame] | 351 | regs |= DWMCI_DDR_MODE; |
| 352 | else |
Jaehoon Chung | 401fc50 | 2015-01-14 17:37:53 +0900 | [diff] [blame] | 353 | regs &= ~DWMCI_DDR_MODE; |
Jaehoon Chung | e867294 | 2014-05-16 13:59:55 +0900 | [diff] [blame] | 354 | |
| 355 | dwmci_writel(host, DWMCI_UHS_REG, regs); |
| 356 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 357 | if (host->clksel) |
| 358 | host->clksel(host); |
| 359 | } |
| 360 | |
| 361 | static int dwmci_init(struct mmc *mmc) |
| 362 | { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 363 | struct dwmci_host *host = mmc->priv; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 364 | |
Jaehoon Chung | 42f81a8 | 2013-11-29 20:08:57 +0900 | [diff] [blame] | 365 | if (host->board_init) |
| 366 | host->board_init(host); |
Rajeshwari Shinde | 7016309 | 2013-10-29 12:53:13 +0530 | [diff] [blame] | 367 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 368 | dwmci_writel(host, DWMCI_PWREN, 1); |
| 369 | |
| 370 | if (!dwmci_wait_reset(host, DWMCI_RESET_ALL)) { |
Simon Glass | 4c9b948 | 2015-08-06 20:16:27 -0600 | [diff] [blame] | 371 | debug("%s[%d] Fail-reset!!\n", __func__, __LINE__); |
| 372 | return -EIO; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 373 | } |
| 374 | |
Amar | 902664c | 2013-04-27 11:42:54 +0530 | [diff] [blame] | 375 | /* Enumerate at 400KHz */ |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 376 | dwmci_setup_bus(host, mmc->cfg->f_min); |
Amar | 902664c | 2013-04-27 11:42:54 +0530 | [diff] [blame] | 377 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 378 | dwmci_writel(host, DWMCI_RINTSTS, 0xFFFFFFFF); |
| 379 | dwmci_writel(host, DWMCI_INTMASK, 0); |
| 380 | |
| 381 | dwmci_writel(host, DWMCI_TMOUT, 0xFFFFFFFF); |
| 382 | |
| 383 | dwmci_writel(host, DWMCI_IDINTEN, 0); |
| 384 | dwmci_writel(host, DWMCI_BMOD, 1); |
| 385 | |
Simon Glass | 6133efa | 2015-08-06 20:16:29 -0600 | [diff] [blame] | 386 | if (!host->fifoth_val) { |
| 387 | uint32_t fifo_size; |
| 388 | |
| 389 | fifo_size = dwmci_readl(host, DWMCI_FIFOTH); |
| 390 | fifo_size = ((fifo_size & RX_WMARK_MASK) >> RX_WMARK_SHIFT) + 1; |
| 391 | host->fifoth_val = MSIZE(0x2) | RX_WMARK(fifo_size / 2 - 1) | |
| 392 | TX_WMARK(fifo_size / 2); |
Amar | 902664c | 2013-04-27 11:42:54 +0530 | [diff] [blame] | 393 | } |
Simon Glass | 6133efa | 2015-08-06 20:16:29 -0600 | [diff] [blame] | 394 | dwmci_writel(host, DWMCI_FIFOTH, host->fifoth_val); |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 395 | |
| 396 | dwmci_writel(host, DWMCI_CLKENA, 0); |
| 397 | dwmci_writel(host, DWMCI_CLKSRC, 0); |
| 398 | |
| 399 | return 0; |
| 400 | } |
| 401 | |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 402 | static const struct mmc_ops dwmci_ops = { |
| 403 | .send_cmd = dwmci_send_cmd, |
| 404 | .set_ios = dwmci_set_ios, |
| 405 | .init = dwmci_init, |
| 406 | }; |
| 407 | |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 408 | int add_dwmci(struct dwmci_host *host, u32 max_clk, u32 min_clk) |
| 409 | { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 410 | host->cfg.name = host->name; |
| 411 | host->cfg.ops = &dwmci_ops; |
| 412 | host->cfg.f_min = min_clk; |
| 413 | host->cfg.f_max = max_clk; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 414 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 415 | host->cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 416 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 417 | host->cfg.host_caps = host->caps; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 418 | |
| 419 | if (host->buswidth == 8) { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 420 | host->cfg.host_caps |= MMC_MODE_8BIT; |
| 421 | host->cfg.host_caps &= ~MMC_MODE_4BIT; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 422 | } else { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 423 | host->cfg.host_caps |= MMC_MODE_4BIT; |
| 424 | host->cfg.host_caps &= ~MMC_MODE_8BIT; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 425 | } |
Rob Herring | 5fd3edd | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 426 | host->cfg.host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz; |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 427 | |
| 428 | host->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 429 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 430 | host->mmc = mmc_create(&host->cfg, host); |
| 431 | if (host->mmc == NULL) |
| 432 | return -1; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 433 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 434 | return 0; |
Jaehoon Chung | 7cf7307 | 2012-10-15 19:10:29 +0000 | [diff] [blame] | 435 | } |