Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2010 |
| 3 | * Rob Emanuele <rob@emanuele.us> |
| 4 | * Reinhard Meyer, EMK Elektronik <reinhard.meyer@emk-elektronik.de> |
| 5 | * |
| 6 | * Original Driver: |
| 7 | * Copyright (C) 2004-2006 Atmel Corporation |
| 8 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 9 | * SPDX-License-Identifier: GPL-2.0+ |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 10 | */ |
| 11 | |
| 12 | #include <common.h> |
| 13 | #include <mmc.h> |
| 14 | #include <part.h> |
| 15 | #include <malloc.h> |
| 16 | #include <asm/io.h> |
| 17 | #include <asm/errno.h> |
| 18 | #include <asm/byteorder.h> |
| 19 | #include <asm/arch/clk.h> |
Reinhard Meyer | 329f0f5 | 2010-11-03 16:32:56 +0100 | [diff] [blame] | 20 | #include <asm/arch/hardware.h> |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 21 | #include "atmel_mci.h" |
| 22 | |
| 23 | #ifndef CONFIG_SYS_MMC_CLK_OD |
| 24 | # define CONFIG_SYS_MMC_CLK_OD 150000 |
| 25 | #endif |
| 26 | |
| 27 | #define MMC_DEFAULT_BLKLEN 512 |
| 28 | |
| 29 | #if defined(CONFIG_ATMEL_MCI_PORTB) |
| 30 | # define MCI_BUS 1 |
| 31 | #else |
| 32 | # define MCI_BUS 0 |
| 33 | #endif |
| 34 | |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 35 | struct atmel_mci_priv { |
| 36 | struct mmc_config cfg; |
| 37 | struct atmel_mci *mci; |
Marek Vasut | 877807e | 2015-10-23 20:46:31 +0200 | [diff] [blame] | 38 | unsigned int initialized:1; |
Gregory CLEMENT | b4670a0 | 2015-11-05 20:58:30 +0100 | [diff] [blame] | 39 | unsigned int curr_clk; |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 40 | }; |
| 41 | |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 42 | /* Read Atmel MCI IP version */ |
| 43 | static unsigned int atmel_mci_get_version(struct atmel_mci *mci) |
| 44 | { |
| 45 | return readl(&mci->version) & 0x00000fff; |
| 46 | } |
| 47 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 48 | /* |
| 49 | * Print command and status: |
| 50 | * |
| 51 | * - always when DEBUG is defined |
| 52 | * - on command errors |
| 53 | */ |
| 54 | static void dump_cmd(u32 cmdr, u32 arg, u32 status, const char* msg) |
| 55 | { |
Marek Vasut | b84c9c9 | 2015-10-23 20:46:28 +0200 | [diff] [blame] | 56 | debug("gen_atmel_mci: CMDR %08x (%2u) ARGR %08x (SR: %08x) %s\n", |
| 57 | cmdr, cmdr & 0x3F, arg, status, msg); |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 58 | } |
| 59 | |
| 60 | /* Setup for MCI Clock and Block Size */ |
| 61 | static void mci_set_mode(struct mmc *mmc, u32 hz, u32 blklen) |
| 62 | { |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 63 | struct atmel_mci_priv *priv = mmc->priv; |
| 64 | atmel_mci_t *mci = priv->mci; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 65 | u32 bus_hz = get_mci_clk_rate(); |
| 66 | u32 clkdiv = 255; |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 67 | unsigned int version = atmel_mci_get_version(mci); |
| 68 | u32 clkodd = 0; |
| 69 | u32 mr; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 70 | |
| 71 | debug("mci: bus_hz is %u, setting clock %u Hz, block size %u\n", |
| 72 | bus_hz, hz, blklen); |
| 73 | if (hz > 0) { |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 74 | if (version >= 0x500) { |
| 75 | clkdiv = DIV_ROUND_UP(bus_hz, hz) - 2; |
| 76 | if (clkdiv > 511) |
| 77 | clkdiv = 511; |
| 78 | |
| 79 | clkodd = clkdiv & 1; |
| 80 | clkdiv >>= 1; |
| 81 | |
Marek Vasut | b84c9c9 | 2015-10-23 20:46:28 +0200 | [diff] [blame] | 82 | debug("mci: setting clock %u Hz, block size %u\n", |
| 83 | bus_hz / (clkdiv * 2 + clkodd + 2), blklen); |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 84 | } else { |
| 85 | /* find clkdiv yielding a rate <= than requested */ |
| 86 | for (clkdiv = 0; clkdiv < 255; clkdiv++) { |
| 87 | if ((bus_hz / (clkdiv + 1) / 2) <= hz) |
| 88 | break; |
| 89 | } |
Marek Vasut | b84c9c9 | 2015-10-23 20:46:28 +0200 | [diff] [blame] | 90 | debug("mci: setting clock %u Hz, block size %u\n", |
| 91 | (bus_hz / (clkdiv + 1)) / 2, blklen); |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 92 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 93 | } |
| 94 | } |
Gregory CLEMENT | b4670a0 | 2015-11-05 20:58:30 +0100 | [diff] [blame] | 95 | if (version >= 0x500) |
| 96 | priv->curr_clk = bus_hz / (clkdiv * 2 + clkodd + 2); |
| 97 | else |
| 98 | priv->curr_clk = (bus_hz / (clkdiv + 1)) / 2; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 99 | blklen &= 0xfffc; |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 100 | |
| 101 | mr = MMCI_BF(CLKDIV, clkdiv); |
| 102 | |
| 103 | /* MCI IP version >= 0x200 has R/WPROOF */ |
| 104 | if (version >= 0x200) |
| 105 | mr |= MMCI_BIT(RDPROOF) | MMCI_BIT(WRPROOF); |
| 106 | |
Wu, Josh | 1db7377 | 2012-09-13 22:22:04 +0000 | [diff] [blame] | 107 | /* |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 108 | * MCI IP version >= 0x500 use bit 16 as clkodd. |
| 109 | * MCI IP version < 0x500 use upper 16 bits for blklen. |
Wu, Josh | 1db7377 | 2012-09-13 22:22:04 +0000 | [diff] [blame] | 110 | */ |
Bo Shen | cd60ebd4 | 2014-07-31 14:39:30 +0800 | [diff] [blame] | 111 | if (version >= 0x500) |
| 112 | mr |= MMCI_BF(CLKODD, clkodd); |
| 113 | else |
| 114 | mr |= MMCI_BF(BLKLEN, blklen); |
| 115 | |
| 116 | writel(mr, &mci->mr); |
| 117 | |
| 118 | /* MCI IP version >= 0x200 has blkr */ |
| 119 | if (version >= 0x200) |
| 120 | writel(MMCI_BF(BLKLEN, blklen), &mci->blkr); |
| 121 | |
Bo Shen | da55c66 | 2014-07-31 14:39:32 +0800 | [diff] [blame] | 122 | if (mmc->card_caps & mmc->cfg->host_caps & MMC_MODE_HS) |
| 123 | writel(MMCI_BIT(HSMODE), &mci->cfg); |
| 124 | |
Marek Vasut | 877807e | 2015-10-23 20:46:31 +0200 | [diff] [blame] | 125 | priv->initialized = 1; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 126 | } |
| 127 | |
| 128 | /* Return the CMDR with flags for a given command and data packet */ |
| 129 | static u32 mci_encode_cmd( |
| 130 | struct mmc_cmd *cmd, struct mmc_data *data, u32* error_flags) |
| 131 | { |
| 132 | u32 cmdr = 0; |
| 133 | |
| 134 | /* Default Flags for Errors */ |
| 135 | *error_flags |= (MMCI_BIT(DTOE) | MMCI_BIT(RDIRE) | MMCI_BIT(RENDE) | |
| 136 | MMCI_BIT(RINDE) | MMCI_BIT(RTOE)); |
| 137 | |
| 138 | /* Default Flags for the Command */ |
| 139 | cmdr |= MMCI_BIT(MAXLAT); |
| 140 | |
| 141 | if (data) { |
| 142 | cmdr |= MMCI_BF(TRCMD, 1); |
| 143 | if (data->blocks > 1) |
| 144 | cmdr |= MMCI_BF(TRTYP, 1); |
| 145 | if (data->flags & MMC_DATA_READ) |
| 146 | cmdr |= MMCI_BIT(TRDIR); |
| 147 | } |
| 148 | |
| 149 | if (cmd->resp_type & MMC_RSP_CRC) |
| 150 | *error_flags |= MMCI_BIT(RCRCE); |
| 151 | if (cmd->resp_type & MMC_RSP_136) |
| 152 | cmdr |= MMCI_BF(RSPTYP, 2); |
| 153 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 154 | cmdr |= MMCI_BF(RSPTYP, 3); |
| 155 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 156 | cmdr |= MMCI_BF(RSPTYP, 1); |
| 157 | |
| 158 | return cmdr | MMCI_BF(CMDNB, cmd->cmdidx); |
| 159 | } |
| 160 | |
| 161 | /* Entered into function pointer in mci_send_cmd */ |
| 162 | static u32 mci_data_read(atmel_mci_t *mci, u32* data, u32 error_flags) |
| 163 | { |
| 164 | u32 status; |
| 165 | |
| 166 | do { |
| 167 | status = readl(&mci->sr); |
| 168 | if (status & (error_flags | MMCI_BIT(OVRE))) |
| 169 | goto io_fail; |
| 170 | } while (!(status & MMCI_BIT(RXRDY))); |
| 171 | |
| 172 | if (status & MMCI_BIT(RXRDY)) { |
| 173 | *data = readl(&mci->rdr); |
| 174 | status = 0; |
| 175 | } |
| 176 | io_fail: |
| 177 | return status; |
| 178 | } |
| 179 | |
| 180 | /* Entered into function pointer in mci_send_cmd */ |
| 181 | static u32 mci_data_write(atmel_mci_t *mci, u32* data, u32 error_flags) |
| 182 | { |
| 183 | u32 status; |
| 184 | |
| 185 | do { |
| 186 | status = readl(&mci->sr); |
| 187 | if (status & (error_flags | MMCI_BIT(UNRE))) |
| 188 | goto io_fail; |
| 189 | } while (!(status & MMCI_BIT(TXRDY))); |
| 190 | |
| 191 | if (status & MMCI_BIT(TXRDY)) { |
| 192 | writel(*data, &mci->tdr); |
| 193 | status = 0; |
| 194 | } |
| 195 | io_fail: |
| 196 | return status; |
| 197 | } |
| 198 | |
| 199 | /* |
| 200 | * Entered into mmc structure during driver init |
| 201 | * |
| 202 | * Sends a command out on the bus and deals with the block data. |
| 203 | * Takes the mmc pointer, a command pointer, and an optional data pointer. |
| 204 | */ |
| 205 | static int |
| 206 | mci_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 207 | { |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 208 | struct atmel_mci_priv *priv = mmc->priv; |
| 209 | atmel_mci_t *mci = priv->mci; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 210 | u32 cmdr; |
| 211 | u32 error_flags = 0; |
| 212 | u32 status; |
| 213 | |
Marek Vasut | 877807e | 2015-10-23 20:46:31 +0200 | [diff] [blame] | 214 | if (!priv->initialized) { |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 215 | puts ("MCI not initialized!\n"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 216 | return -ECOMM; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 217 | } |
| 218 | |
| 219 | /* Figure out the transfer arguments */ |
| 220 | cmdr = mci_encode_cmd(cmd, data, &error_flags); |
| 221 | |
Wu, Josh | 1db7377 | 2012-09-13 22:22:04 +0000 | [diff] [blame] | 222 | /* For multi blocks read/write, set the block register */ |
| 223 | if ((cmd->cmdidx == MMC_CMD_READ_MULTIPLE_BLOCK) |
| 224 | || (cmd->cmdidx == MMC_CMD_WRITE_MULTIPLE_BLOCK)) |
| 225 | writel(data->blocks | MMCI_BF(BLKLEN, mmc->read_bl_len), |
| 226 | &mci->blkr); |
| 227 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 228 | /* Send the command */ |
| 229 | writel(cmd->cmdarg, &mci->argr); |
| 230 | writel(cmdr, &mci->cmdr); |
| 231 | |
| 232 | #ifdef DEBUG |
| 233 | dump_cmd(cmdr, cmd->cmdarg, 0, "DEBUG"); |
| 234 | #endif |
| 235 | |
| 236 | /* Wait for the command to complete */ |
| 237 | while (!((status = readl(&mci->sr)) & MMCI_BIT(CMDRDY))); |
| 238 | |
Bo Shen | 93e3236 | 2013-04-26 00:27:07 +0000 | [diff] [blame] | 239 | if ((status & error_flags) & MMCI_BIT(RTOE)) { |
| 240 | dump_cmd(cmdr, cmd->cmdarg, status, "Command Time Out"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 241 | return -ETIMEDOUT; |
Bo Shen | 93e3236 | 2013-04-26 00:27:07 +0000 | [diff] [blame] | 242 | } else if (status & error_flags) { |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 243 | dump_cmd(cmdr, cmd->cmdarg, status, "Command Failed"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 244 | return -ECOMM; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 245 | } |
| 246 | |
| 247 | /* Copy the response to the response buffer */ |
| 248 | if (cmd->resp_type & MMC_RSP_136) { |
| 249 | cmd->response[0] = readl(&mci->rspr); |
| 250 | cmd->response[1] = readl(&mci->rspr1); |
| 251 | cmd->response[2] = readl(&mci->rspr2); |
| 252 | cmd->response[3] = readl(&mci->rspr3); |
| 253 | } else |
| 254 | cmd->response[0] = readl(&mci->rspr); |
| 255 | |
| 256 | /* transfer all of the blocks */ |
| 257 | if (data) { |
| 258 | u32 word_count, block_count; |
| 259 | u32* ioptr; |
| 260 | u32 sys_blocksize, dummy, i; |
| 261 | u32 (*mci_data_op) |
| 262 | (atmel_mci_t *mci, u32* data, u32 error_flags); |
| 263 | |
| 264 | if (data->flags & MMC_DATA_READ) { |
| 265 | mci_data_op = mci_data_read; |
| 266 | sys_blocksize = mmc->read_bl_len; |
| 267 | ioptr = (u32*)data->dest; |
| 268 | } else { |
| 269 | mci_data_op = mci_data_write; |
| 270 | sys_blocksize = mmc->write_bl_len; |
| 271 | ioptr = (u32*)data->src; |
| 272 | } |
| 273 | |
| 274 | status = 0; |
| 275 | for (block_count = 0; |
| 276 | block_count < data->blocks && !status; |
| 277 | block_count++) { |
| 278 | word_count = 0; |
| 279 | do { |
| 280 | status = mci_data_op(mci, ioptr, error_flags); |
| 281 | word_count++; |
| 282 | ioptr++; |
| 283 | } while (!status && word_count < (data->blocksize/4)); |
| 284 | #ifdef DEBUG |
| 285 | if (data->flags & MMC_DATA_READ) |
| 286 | { |
Wu, Josh | 9902c7b | 2014-05-07 17:06:08 +0800 | [diff] [blame] | 287 | u32 cnt = word_count * 4; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 288 | printf("Read Data:\n"); |
Wu, Josh | 9902c7b | 2014-05-07 17:06:08 +0800 | [diff] [blame] | 289 | print_buffer(0, data->dest + cnt * block_count, |
| 290 | 1, cnt, 0); |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 291 | } |
| 292 | #endif |
| 293 | #ifdef DEBUG |
| 294 | if (!status && word_count < (sys_blocksize / 4)) |
| 295 | printf("filling rest of block...\n"); |
| 296 | #endif |
| 297 | /* fill the rest of a full block */ |
| 298 | while (!status && word_count < (sys_blocksize / 4)) { |
| 299 | status = mci_data_op(mci, &dummy, |
| 300 | error_flags); |
| 301 | word_count++; |
| 302 | } |
| 303 | if (status) { |
| 304 | dump_cmd(cmdr, cmd->cmdarg, status, |
| 305 | "Data Transfer Failed"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 306 | return -ECOMM; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 307 | } |
| 308 | } |
| 309 | |
| 310 | /* Wait for Transfer End */ |
| 311 | i = 0; |
| 312 | do { |
| 313 | status = readl(&mci->sr); |
| 314 | |
| 315 | if (status & error_flags) { |
| 316 | dump_cmd(cmdr, cmd->cmdarg, status, |
| 317 | "DTIP Wait Failed"); |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 318 | return -ECOMM; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 319 | } |
| 320 | i++; |
| 321 | } while ((status & MMCI_BIT(DTIP)) && i < 10000); |
| 322 | if (status & MMCI_BIT(DTIP)) { |
| 323 | dump_cmd(cmdr, cmd->cmdarg, status, |
| 324 | "XFER DTIP never unset, ignoring"); |
| 325 | } |
| 326 | } |
| 327 | |
Gregory CLEMENT | b4670a0 | 2015-11-05 20:58:30 +0100 | [diff] [blame] | 328 | /* |
| 329 | * After the switch command, wait for 8 clocks before the next |
| 330 | * command |
| 331 | */ |
| 332 | if (cmd->cmdidx == MMC_CMD_SWITCH) |
| 333 | udelay(8*1000000 / priv->curr_clk); /* 8 clk in us */ |
| 334 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 335 | return 0; |
| 336 | } |
| 337 | |
| 338 | /* Entered into mmc structure during driver init */ |
| 339 | static void mci_set_ios(struct mmc *mmc) |
| 340 | { |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 341 | struct atmel_mci_priv *priv = mmc->priv; |
| 342 | atmel_mci_t *mci = priv->mci; |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 343 | int bus_width = mmc->bus_width; |
| 344 | unsigned int version = atmel_mci_get_version(mci); |
| 345 | int busw; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 346 | |
| 347 | /* Set the clock speed */ |
| 348 | mci_set_mode(mmc, mmc->clock, MMC_DEFAULT_BLKLEN); |
| 349 | |
| 350 | /* |
| 351 | * set the bus width and select slot for this interface |
| 352 | * there is no capability for multiple slots on the same interface yet |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 353 | */ |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 354 | if ((version & 0xf00) >= 0x300) { |
| 355 | switch (bus_width) { |
| 356 | case 8: |
| 357 | busw = 3; |
| 358 | break; |
| 359 | case 4: |
| 360 | busw = 2; |
| 361 | break; |
| 362 | default: |
| 363 | busw = 0; |
| 364 | break; |
| 365 | } |
| 366 | |
| 367 | writel(busw << 6 | MMCI_BF(SCDSEL, MCI_BUS), &mci->sdcr); |
| 368 | } else { |
| 369 | busw = (bus_width == 4) ? 1 : 0; |
| 370 | |
| 371 | writel(busw << 7 | MMCI_BF(SCDSEL, MCI_BUS), &mci->sdcr); |
| 372 | } |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 373 | } |
| 374 | |
| 375 | /* Entered into mmc structure during driver init */ |
| 376 | static int mci_init(struct mmc *mmc) |
| 377 | { |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 378 | struct atmel_mci_priv *priv = mmc->priv; |
| 379 | atmel_mci_t *mci = priv->mci; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 380 | |
| 381 | /* Initialize controller */ |
| 382 | writel(MMCI_BIT(SWRST), &mci->cr); /* soft reset */ |
| 383 | writel(MMCI_BIT(PWSDIS), &mci->cr); /* disable power save */ |
| 384 | writel(MMCI_BIT(MCIEN), &mci->cr); /* enable mci */ |
Reinhard Meyer | 2aed9d1 | 2010-11-16 09:24:41 +0100 | [diff] [blame] | 385 | writel(MMCI_BF(SCDSEL, MCI_BUS), &mci->sdcr); /* select port */ |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 386 | |
Wu, Josh | 9924ca6 | 2012-09-13 22:22:06 +0000 | [diff] [blame] | 387 | /* This delay can be optimized, but stick with max value */ |
| 388 | writel(0x7f, &mci->dtor); |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 389 | /* Disable Interrupts */ |
| 390 | writel(~0UL, &mci->idr); |
| 391 | |
| 392 | /* Set default clocks and blocklen */ |
| 393 | mci_set_mode(mmc, CONFIG_SYS_MMC_CLK_OD, MMC_DEFAULT_BLKLEN); |
| 394 | |
| 395 | return 0; |
| 396 | } |
| 397 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 398 | static const struct mmc_ops atmel_mci_ops = { |
| 399 | .send_cmd = mci_send_cmd, |
| 400 | .set_ios = mci_set_ios, |
| 401 | .init = mci_init, |
| 402 | }; |
| 403 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 404 | /* |
| 405 | * This is the only exported function |
| 406 | * |
| 407 | * Call it with the MCI register base address |
| 408 | */ |
| 409 | int atmel_mci_init(void *regs) |
| 410 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 411 | struct mmc *mmc; |
| 412 | struct mmc_config *cfg; |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 413 | struct atmel_mci_priv *priv; |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 414 | unsigned int version; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 415 | |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 416 | priv = calloc(1, sizeof(*priv)); |
| 417 | if (!priv) |
| 418 | return -ENOMEM; |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 419 | |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 420 | cfg = &priv->cfg; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 421 | |
| 422 | cfg->name = "mci"; |
| 423 | cfg->ops = &atmel_mci_ops; |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 424 | |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 425 | priv->mci = (struct atmel_mci *)regs; |
Marek Vasut | 877807e | 2015-10-23 20:46:31 +0200 | [diff] [blame] | 426 | priv->initialized = 0; |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 427 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 428 | /* need to be able to pass these in on a board by board basis */ |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 429 | cfg->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 430 | version = atmel_mci_get_version(priv->mci); |
Bo Shen | da55c66 | 2014-07-31 14:39:32 +0800 | [diff] [blame] | 431 | if ((version & 0xf00) >= 0x300) { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 432 | cfg->host_caps = MMC_MODE_8BIT; |
Bo Shen | da55c66 | 2014-07-31 14:39:32 +0800 | [diff] [blame] | 433 | cfg->host_caps |= MMC_MODE_HS | MMC_MODE_HS_52MHz; |
| 434 | } |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 435 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 436 | cfg->host_caps |= MMC_MODE_4BIT; |
Bo Shen | aac4b69 | 2013-04-26 00:27:06 +0000 | [diff] [blame] | 437 | |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 438 | /* |
| 439 | * min and max frequencies determined by |
| 440 | * max and min of clock divider |
| 441 | */ |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 442 | cfg->f_min = get_mci_clk_rate() / (2*256); |
| 443 | cfg->f_max = get_mci_clk_rate() / (2*1); |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 444 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 445 | cfg->b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
John Rigby | 8feafcc | 2011-04-18 05:50:08 +0000 | [diff] [blame] | 446 | |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 447 | mmc = mmc_create(cfg, priv); |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 448 | |
| 449 | if (mmc == NULL) { |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 450 | free(priv); |
| 451 | return -ENODEV; |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 452 | } |
Marek Vasut | 6b75d35 | 2015-10-23 20:46:30 +0200 | [diff] [blame] | 453 | /* NOTE: possibly leaking the priv structure */ |
Reinhard Meyer | 1592ef8 | 2010-08-13 10:31:06 +0200 | [diff] [blame] | 454 | |
| 455 | return 0; |
| 456 | } |