Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 1 | /* |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 2 | * Copyright 2007, 2010-2011 Freescale Semiconductor, Inc |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 3 | * Andy Fleming |
| 4 | * |
| 5 | * Based vaguely on the pxa mmc code: |
| 6 | * (C) Copyright 2003 |
| 7 | * Kyle Harris, Nexus Technologies, Inc. kharris@nexus-tech.net |
| 8 | * |
| 9 | * See file CREDITS for list of people who contributed to this |
| 10 | * project. |
| 11 | * |
| 12 | * This program is free software; you can redistribute it and/or |
| 13 | * modify it under the terms of the GNU General Public License as |
| 14 | * published by the Free Software Foundation; either version 2 of |
| 15 | * the License, or (at your option) any later version. |
| 16 | * |
| 17 | * This program is distributed in the hope that it will be useful, |
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 20 | * GNU General Public License for more details. |
| 21 | * |
| 22 | * You should have received a copy of the GNU General Public License |
| 23 | * along with this program; if not, write to the Free Software |
| 24 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, |
| 25 | * MA 02111-1307 USA |
| 26 | */ |
| 27 | |
| 28 | #include <config.h> |
| 29 | #include <common.h> |
| 30 | #include <command.h> |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 31 | #include <hwconfig.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 32 | #include <mmc.h> |
| 33 | #include <part.h> |
| 34 | #include <malloc.h> |
| 35 | #include <mmc.h> |
| 36 | #include <fsl_esdhc.h> |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 37 | #include <fdt_support.h> |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 38 | #include <asm/io.h> |
| 39 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 40 | DECLARE_GLOBAL_DATA_PTR; |
| 41 | |
| 42 | struct fsl_esdhc { |
| 43 | uint dsaddr; |
| 44 | uint blkattr; |
| 45 | uint cmdarg; |
| 46 | uint xfertyp; |
| 47 | uint cmdrsp0; |
| 48 | uint cmdrsp1; |
| 49 | uint cmdrsp2; |
| 50 | uint cmdrsp3; |
| 51 | uint datport; |
| 52 | uint prsstat; |
| 53 | uint proctl; |
| 54 | uint sysctl; |
| 55 | uint irqstat; |
| 56 | uint irqstaten; |
| 57 | uint irqsigen; |
| 58 | uint autoc12err; |
| 59 | uint hostcapblt; |
| 60 | uint wml; |
| 61 | char reserved1[8]; |
| 62 | uint fevt; |
| 63 | char reserved2[168]; |
| 64 | uint hostver; |
| 65 | char reserved3[780]; |
| 66 | uint scr; |
| 67 | }; |
| 68 | |
| 69 | /* Return the XFERTYP flags for a given command and data packet */ |
| 70 | uint esdhc_xfertyp(struct mmc_cmd *cmd, struct mmc_data *data) |
| 71 | { |
| 72 | uint xfertyp = 0; |
| 73 | |
| 74 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 75 | xfertyp |= XFERTYP_DPSEL; |
| 76 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 77 | xfertyp |= XFERTYP_DMAEN; |
| 78 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 79 | if (data->blocks > 1) { |
| 80 | xfertyp |= XFERTYP_MSBSEL; |
| 81 | xfertyp |= XFERTYP_BCEN; |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 82 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 83 | xfertyp |= XFERTYP_AC12EN; |
| 84 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 85 | } |
| 86 | |
| 87 | if (data->flags & MMC_DATA_READ) |
| 88 | xfertyp |= XFERTYP_DTDSEL; |
| 89 | } |
| 90 | |
| 91 | if (cmd->resp_type & MMC_RSP_CRC) |
| 92 | xfertyp |= XFERTYP_CCCEN; |
| 93 | if (cmd->resp_type & MMC_RSP_OPCODE) |
| 94 | xfertyp |= XFERTYP_CICEN; |
| 95 | if (cmd->resp_type & MMC_RSP_136) |
| 96 | xfertyp |= XFERTYP_RSPTYP_136; |
| 97 | else if (cmd->resp_type & MMC_RSP_BUSY) |
| 98 | xfertyp |= XFERTYP_RSPTYP_48_BUSY; |
| 99 | else if (cmd->resp_type & MMC_RSP_PRESENT) |
| 100 | xfertyp |= XFERTYP_RSPTYP_48; |
| 101 | |
Jason Liu | 4571de3 | 2011-03-22 01:32:31 +0000 | [diff] [blame] | 102 | #ifdef CONFIG_MX53 |
| 103 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 104 | xfertyp |= XFERTYP_CMDTYP_ABORT; |
| 105 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 106 | return XFERTYP_CMD(cmd->cmdidx) | xfertyp; |
| 107 | } |
| 108 | |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 109 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 110 | /* |
| 111 | * PIO Read/Write Mode reduce the performace as DMA is not used in this mode. |
| 112 | */ |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 113 | static void |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 114 | esdhc_pio_read_write(struct mmc *mmc, struct mmc_data *data) |
| 115 | { |
| 116 | struct fsl_esdhc *regs = mmc->priv; |
| 117 | uint blocks; |
| 118 | char *buffer; |
| 119 | uint databuf; |
| 120 | uint size; |
| 121 | uint irqstat; |
| 122 | uint timeout; |
| 123 | |
| 124 | if (data->flags & MMC_DATA_READ) { |
| 125 | blocks = data->blocks; |
| 126 | buffer = data->dest; |
| 127 | while (blocks) { |
| 128 | timeout = PIO_TIMEOUT; |
| 129 | size = data->blocksize; |
| 130 | irqstat = esdhc_read32(®s->irqstat); |
| 131 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BREN) |
| 132 | && --timeout); |
| 133 | if (timeout <= 0) { |
| 134 | printf("\nData Read Failed in PIO Mode."); |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 135 | return; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 136 | } |
| 137 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 138 | udelay(100); /* Wait before last byte transfer complete */ |
| 139 | irqstat = esdhc_read32(®s->irqstat); |
| 140 | databuf = in_le32(®s->datport); |
| 141 | *((uint *)buffer) = databuf; |
| 142 | buffer += 4; |
| 143 | size -= 4; |
| 144 | } |
| 145 | blocks--; |
| 146 | } |
| 147 | } else { |
| 148 | blocks = data->blocks; |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 149 | buffer = (char *)data->src; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 150 | while (blocks) { |
| 151 | timeout = PIO_TIMEOUT; |
| 152 | size = data->blocksize; |
| 153 | irqstat = esdhc_read32(®s->irqstat); |
| 154 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_BWEN) |
| 155 | && --timeout); |
| 156 | if (timeout <= 0) { |
| 157 | printf("\nData Write Failed in PIO Mode."); |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 158 | return; |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 159 | } |
| 160 | while (size && (!(irqstat & IRQSTAT_TC))) { |
| 161 | udelay(100); /* Wait before last byte transfer complete */ |
| 162 | databuf = *((uint *)buffer); |
| 163 | buffer += 4; |
| 164 | size -= 4; |
| 165 | irqstat = esdhc_read32(®s->irqstat); |
| 166 | out_le32(®s->datport, databuf); |
| 167 | } |
| 168 | blocks--; |
| 169 | } |
| 170 | } |
| 171 | } |
| 172 | #endif |
| 173 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 174 | static int esdhc_setup_data(struct mmc *mmc, struct mmc_data *data) |
| 175 | { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 176 | int timeout; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 177 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 178 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 179 | #ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 180 | uint wml_value; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 181 | |
| 182 | wml_value = data->blocksize/4; |
| 183 | |
| 184 | if (data->flags & MMC_DATA_READ) { |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 185 | if (wml_value > WML_RD_WML_MAX) |
| 186 | wml_value = WML_RD_WML_MAX_VAL; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 187 | |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 188 | esdhc_clrsetbits32(®s->wml, WML_RD_WML_MASK, wml_value); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 189 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 190 | } else { |
Priyanka Jain | 32c8cfb | 2011-02-09 09:24:10 +0530 | [diff] [blame] | 191 | if (wml_value > WML_WR_WML_MAX) |
| 192 | wml_value = WML_WR_WML_MAX_VAL; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 193 | if ((esdhc_read32(®s->prsstat) & PRSSTAT_WPSPL) == 0) { |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 194 | printf("\nThe SD card is locked. Can not write to a locked card.\n\n"); |
| 195 | return TIMEOUT; |
| 196 | } |
Roy Zang | ab467c5 | 2010-02-09 18:23:33 +0800 | [diff] [blame] | 197 | |
| 198 | esdhc_clrsetbits32(®s->wml, WML_WR_WML_MASK, |
| 199 | wml_value << 16); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 200 | esdhc_write32(®s->dsaddr, (u32)data->src); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 201 | } |
Wolfgang Denk | 7b43db9 | 2010-05-09 23:52:59 +0200 | [diff] [blame] | 202 | #else /* CONFIG_SYS_FSL_ESDHC_USE_PIO */ |
| 203 | if (!(data->flags & MMC_DATA_READ)) { |
| 204 | if ((esdhc_read32(®s->prsstat) & PRSSTAT_WPSPL) == 0) { |
| 205 | printf("\nThe SD card is locked. " |
| 206 | "Can not write to a locked card.\n\n"); |
| 207 | return TIMEOUT; |
| 208 | } |
| 209 | esdhc_write32(®s->dsaddr, (u32)data->src); |
| 210 | } else |
| 211 | esdhc_write32(®s->dsaddr, (u32)data->dest); |
| 212 | #endif /* CONFIG_SYS_FSL_ESDHC_USE_PIO */ |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 213 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 214 | esdhc_write32(®s->blkattr, data->blocks << 16 | data->blocksize); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 215 | |
| 216 | /* Calculate the timeout period for data transactions */ |
Priyanka Jain | b71ea33 | 2011-03-03 09:18:56 +0530 | [diff] [blame] | 217 | /* |
| 218 | * 1)Timeout period = (2^(timeout+13)) SD Clock cycles |
| 219 | * 2)Timeout period should be minimum 0.250sec as per SD Card spec |
| 220 | * So, Number of SD Clock cycles for 0.25sec should be minimum |
| 221 | * (SD Clock/sec * 0.25 sec) SD Clock cycles |
| 222 | * = (mmc->tran_speed * 1/4) SD Clock cycles |
| 223 | * As 1) >= 2) |
| 224 | * => (2^(timeout+13)) >= mmc->tran_speed * 1/4 |
| 225 | * Taking log2 both the sides |
| 226 | * => timeout + 13 >= log2(mmc->tran_speed/4) |
| 227 | * Rounding up to next power of 2 |
| 228 | * => timeout + 13 = log2(mmc->tran_speed/4) + 1 |
| 229 | * => timeout + 13 = fls(mmc->tran_speed/4) |
| 230 | */ |
| 231 | timeout = fls(mmc->tran_speed/4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 232 | timeout -= 13; |
| 233 | |
| 234 | if (timeout > 14) |
| 235 | timeout = 14; |
| 236 | |
| 237 | if (timeout < 0) |
| 238 | timeout = 0; |
| 239 | |
Kumar Gala | 5103a03 | 2011-01-29 15:36:10 -0600 | [diff] [blame] | 240 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC_A001 |
| 241 | if ((timeout == 4) || (timeout == 8) || (timeout == 12)) |
| 242 | timeout++; |
| 243 | #endif |
| 244 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 245 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, timeout << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 246 | |
| 247 | return 0; |
| 248 | } |
| 249 | |
| 250 | |
| 251 | /* |
| 252 | * Sends a command out on the bus. Takes the mmc pointer, |
| 253 | * a command pointer, and an optional data pointer. |
| 254 | */ |
| 255 | static int |
| 256 | esdhc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 257 | { |
| 258 | uint xfertyp; |
| 259 | uint irqstat; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 260 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 261 | volatile struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 262 | |
Jerry Huang | d621da0 | 2011-01-06 23:42:19 -0600 | [diff] [blame] | 263 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC111 |
| 264 | if (cmd->cmdidx == MMC_CMD_STOP_TRANSMISSION) |
| 265 | return 0; |
| 266 | #endif |
| 267 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 268 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 269 | |
| 270 | sync(); |
| 271 | |
| 272 | /* Wait for the bus to be idle */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 273 | while ((esdhc_read32(®s->prsstat) & PRSSTAT_CICHB) || |
| 274 | (esdhc_read32(®s->prsstat) & PRSSTAT_CIDHB)) |
| 275 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 276 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 277 | while (esdhc_read32(®s->prsstat) & PRSSTAT_DLA) |
| 278 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 279 | |
| 280 | /* Wait at least 8 SD clock cycles before the next command */ |
| 281 | /* |
| 282 | * Note: This is way more than 8 cycles, but 1ms seems to |
| 283 | * resolve timing issues with some cards |
| 284 | */ |
| 285 | udelay(1000); |
| 286 | |
| 287 | /* Set up for a data transfer if we have one */ |
| 288 | if (data) { |
| 289 | int err; |
| 290 | |
| 291 | err = esdhc_setup_data(mmc, data); |
| 292 | if(err) |
| 293 | return err; |
| 294 | } |
| 295 | |
| 296 | /* Figure out the transfer arguments */ |
| 297 | xfertyp = esdhc_xfertyp(cmd, data); |
| 298 | |
| 299 | /* Send the command */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 300 | esdhc_write32(®s->cmdarg, cmd->cmdarg); |
| 301 | esdhc_write32(®s->xfertyp, xfertyp); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 302 | |
| 303 | /* Wait for the command to complete */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 304 | while (!(esdhc_read32(®s->irqstat) & IRQSTAT_CC)) |
| 305 | ; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 306 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 307 | irqstat = esdhc_read32(®s->irqstat); |
| 308 | esdhc_write32(®s->irqstat, irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 309 | |
| 310 | if (irqstat & CMD_ERR) |
| 311 | return COMM_ERR; |
| 312 | |
| 313 | if (irqstat & IRQSTAT_CTOE) |
| 314 | return TIMEOUT; |
| 315 | |
| 316 | /* Copy the response to the response buffer */ |
| 317 | if (cmd->resp_type & MMC_RSP_136) { |
| 318 | u32 cmdrsp3, cmdrsp2, cmdrsp1, cmdrsp0; |
| 319 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 320 | cmdrsp3 = esdhc_read32(®s->cmdrsp3); |
| 321 | cmdrsp2 = esdhc_read32(®s->cmdrsp2); |
| 322 | cmdrsp1 = esdhc_read32(®s->cmdrsp1); |
| 323 | cmdrsp0 = esdhc_read32(®s->cmdrsp0); |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 324 | cmd->response[0] = (cmdrsp3 << 8) | (cmdrsp2 >> 24); |
| 325 | cmd->response[1] = (cmdrsp2 << 8) | (cmdrsp1 >> 24); |
| 326 | cmd->response[2] = (cmdrsp1 << 8) | (cmdrsp0 >> 24); |
| 327 | cmd->response[3] = (cmdrsp0 << 8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 328 | } else |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 329 | cmd->response[0] = esdhc_read32(®s->cmdrsp0); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 330 | |
| 331 | /* Wait until all of the blocks are transferred */ |
| 332 | if (data) { |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 333 | #ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO |
| 334 | esdhc_pio_read_write(mmc, data); |
| 335 | #else |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 336 | do { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 337 | irqstat = esdhc_read32(®s->irqstat); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 338 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 339 | if (irqstat & IRQSTAT_DTOE) |
| 340 | return TIMEOUT; |
Frans Meulenbroeks | 63fb5a7 | 2010-07-31 04:45:18 +0000 | [diff] [blame] | 341 | |
| 342 | if (irqstat & DATA_ERR) |
| 343 | return COMM_ERR; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 344 | } while (!(irqstat & IRQSTAT_TC) && |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 345 | (esdhc_read32(®s->prsstat) & PRSSTAT_DLA)); |
Dipen Dudhat | 77c1458 | 2009-10-05 15:41:58 +0530 | [diff] [blame] | 346 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 347 | } |
| 348 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 349 | esdhc_write32(®s->irqstat, -1); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 350 | |
| 351 | return 0; |
| 352 | } |
| 353 | |
| 354 | void set_sysctl(struct mmc *mmc, uint clock) |
| 355 | { |
| 356 | int sdhc_clk = gd->sdhc_clk; |
| 357 | int div, pre_div; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 358 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 359 | volatile struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 360 | uint clk; |
| 361 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 362 | if (clock < mmc->f_min) |
| 363 | clock = mmc->f_min; |
| 364 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 365 | if (sdhc_clk / 16 > clock) { |
| 366 | for (pre_div = 2; pre_div < 256; pre_div *= 2) |
| 367 | if ((sdhc_clk / pre_div) <= (clock * 16)) |
| 368 | break; |
| 369 | } else |
| 370 | pre_div = 2; |
| 371 | |
| 372 | for (div = 1; div <= 16; div++) |
| 373 | if ((sdhc_clk / (div * pre_div)) <= clock) |
| 374 | break; |
| 375 | |
| 376 | pre_div >>= 1; |
| 377 | div -= 1; |
| 378 | |
| 379 | clk = (pre_div << 8) | (div << 4); |
| 380 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 381 | esdhc_clrbits32(®s->sysctl, SYSCTL_CKEN); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 382 | |
| 383 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_CLOCK_MASK, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 384 | |
| 385 | udelay(10000); |
| 386 | |
Kumar Gala | cc4d122 | 2010-03-18 15:51:05 -0500 | [diff] [blame] | 387 | clk = SYSCTL_PEREN | SYSCTL_CKEN; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 388 | |
| 389 | esdhc_setbits32(®s->sysctl, clk); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 390 | } |
| 391 | |
| 392 | static void esdhc_set_ios(struct mmc *mmc) |
| 393 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 394 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 395 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 396 | |
| 397 | /* Set the clock speed */ |
| 398 | set_sysctl(mmc, mmc->clock); |
| 399 | |
| 400 | /* Set the bus width */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 401 | esdhc_clrbits32(®s->proctl, PROCTL_DTW_4 | PROCTL_DTW_8); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 402 | |
| 403 | if (mmc->bus_width == 4) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 404 | esdhc_setbits32(®s->proctl, PROCTL_DTW_4); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 405 | else if (mmc->bus_width == 8) |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 406 | esdhc_setbits32(®s->proctl, PROCTL_DTW_8); |
| 407 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 408 | } |
| 409 | |
| 410 | static int esdhc_init(struct mmc *mmc) |
| 411 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 412 | struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; |
| 413 | struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 414 | int timeout = 1000; |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 415 | int ret = 0; |
| 416 | u8 card_absent; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 417 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 418 | /* Reset the entire host controller */ |
| 419 | esdhc_write32(®s->sysctl, SYSCTL_RSTA); |
| 420 | |
| 421 | /* Wait until the controller is available */ |
| 422 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA) && --timeout) |
| 423 | udelay(1000); |
| 424 | |
P.V.Suresh | 2c1764e | 2010-12-04 10:37:23 +0530 | [diff] [blame] | 425 | /* Enable cache snooping */ |
| 426 | if (cfg && !cfg->no_snoop) |
| 427 | esdhc_write32(®s->scr, 0x00000040); |
| 428 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 429 | esdhc_write32(®s->sysctl, SYSCTL_HCKEN | SYSCTL_IPGEN); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 430 | |
| 431 | /* Set the initial clock speed */ |
Jerry Huang | 4a6ee17 | 2010-11-25 17:06:07 +0000 | [diff] [blame] | 432 | mmc_set_clock(mmc, 400000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 433 | |
| 434 | /* Disable the BRR and BWR bits in IRQSTAT */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 435 | esdhc_clrbits32(®s->irqstaten, IRQSTATEN_BRR | IRQSTATEN_BWR); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 436 | |
| 437 | /* Put the PROCTL reg back to the default */ |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 438 | esdhc_write32(®s->proctl, PROCTL_INIT); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 439 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 440 | /* Set timout to the maximum value */ |
| 441 | esdhc_clrsetbits32(®s->sysctl, SYSCTL_TIMEOUT_MASK, 14 << 16); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 442 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 443 | /* Check if there is a callback for detecting the card */ |
| 444 | if (board_mmc_getcd(&card_absent, mmc)) { |
| 445 | timeout = 1000; |
| 446 | while (!(esdhc_read32(®s->prsstat) & PRSSTAT_CINS) && |
| 447 | --timeout) |
| 448 | udelay(1000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 449 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 450 | if (timeout <= 0) |
| 451 | ret = NO_CARD_ERR; |
| 452 | } else { |
| 453 | if (card_absent) |
| 454 | ret = NO_CARD_ERR; |
| 455 | } |
| 456 | |
| 457 | return ret; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 458 | } |
| 459 | |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 460 | static void esdhc_reset(struct fsl_esdhc *regs) |
| 461 | { |
| 462 | unsigned long timeout = 100; /* wait max 100 ms */ |
| 463 | |
| 464 | /* reset the controller */ |
| 465 | esdhc_write32(®s->sysctl, SYSCTL_RSTA); |
| 466 | |
| 467 | /* hardware clears the bit when it is done */ |
| 468 | while ((esdhc_read32(®s->sysctl) & SYSCTL_RSTA) && --timeout) |
| 469 | udelay(1000); |
| 470 | if (!timeout) |
| 471 | printf("MMC/SD: Reset never completed.\n"); |
| 472 | } |
| 473 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 474 | int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg) |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 475 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 476 | struct fsl_esdhc *regs; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 477 | struct mmc *mmc; |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 478 | u32 caps, voltage_caps; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 479 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 480 | if (!cfg) |
| 481 | return -1; |
| 482 | |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 483 | mmc = malloc(sizeof(struct mmc)); |
| 484 | |
| 485 | sprintf(mmc->name, "FSL_ESDHC"); |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 486 | regs = (struct fsl_esdhc *)cfg->esdhc_base; |
| 487 | |
Jerry Huang | 48bb3bb | 2010-03-18 15:57:06 -0500 | [diff] [blame] | 488 | /* First reset the eSDHC controller */ |
| 489 | esdhc_reset(regs); |
| 490 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 491 | mmc->priv = cfg; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 492 | mmc->send_cmd = esdhc_send_cmd; |
| 493 | mmc->set_ios = esdhc_set_ios; |
| 494 | mmc->init = esdhc_init; |
| 495 | |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 496 | voltage_caps = 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 497 | caps = regs->hostcapblt; |
Roy Zang | 3b4456e | 2011-01-07 00:06:47 -0600 | [diff] [blame] | 498 | |
| 499 | #ifdef CONFIG_SYS_FSL_ERRATUM_ESDHC135 |
| 500 | caps = caps & ~(ESDHC_HOSTCAPBLT_SRS | |
| 501 | ESDHC_HOSTCAPBLT_VS18 | ESDHC_HOSTCAPBLT_VS30); |
| 502 | #endif |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 503 | if (caps & ESDHC_HOSTCAPBLT_VS18) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 504 | voltage_caps |= MMC_VDD_165_195; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 505 | if (caps & ESDHC_HOSTCAPBLT_VS30) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 506 | voltage_caps |= MMC_VDD_29_30 | MMC_VDD_30_31; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 507 | if (caps & ESDHC_HOSTCAPBLT_VS33) |
Li Yang | 030955c | 2010-11-25 17:06:09 +0000 | [diff] [blame] | 508 | voltage_caps |= MMC_VDD_32_33 | MMC_VDD_33_34; |
| 509 | |
| 510 | #ifdef CONFIG_SYS_SD_VOLTAGE |
| 511 | mmc->voltages = CONFIG_SYS_SD_VOLTAGE; |
| 512 | #else |
| 513 | mmc->voltages = MMC_VDD_32_33 | MMC_VDD_33_34; |
| 514 | #endif |
| 515 | if ((mmc->voltages & voltage_caps) == 0) { |
| 516 | printf("voltage not supported by controller\n"); |
| 517 | return -1; |
| 518 | } |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 519 | |
| 520 | mmc->host_caps = MMC_MODE_4BIT | MMC_MODE_8BIT; |
| 521 | |
| 522 | if (caps & ESDHC_HOSTCAPBLT_HSS) |
| 523 | mmc->host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
| 524 | |
| 525 | mmc->f_min = 400000; |
Jerry Huang | 63786d2 | 2010-11-25 17:06:10 +0000 | [diff] [blame] | 526 | mmc->f_max = MIN(gd->sdhc_clk, 52000000); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 527 | |
Fabio Estevam | 1ed60d7 | 2011-05-12 09:33:27 +0000 | [diff] [blame] | 528 | mmc->b_max = 0; |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 529 | mmc_register(mmc); |
| 530 | |
| 531 | return 0; |
| 532 | } |
| 533 | |
| 534 | int fsl_esdhc_mmc_init(bd_t *bis) |
| 535 | { |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 536 | struct fsl_esdhc_cfg *cfg; |
| 537 | |
| 538 | cfg = malloc(sizeof(struct fsl_esdhc_cfg)); |
| 539 | memset(cfg, 0, sizeof(struct fsl_esdhc_cfg)); |
| 540 | cfg->esdhc_base = CONFIG_SYS_FSL_ESDHC_ADDR; |
| 541 | return fsl_esdhc_initialize(bis, cfg); |
Andy Fleming | 50586ef | 2008-10-30 16:47:16 -0500 | [diff] [blame] | 542 | } |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 543 | |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 544 | #ifdef CONFIG_OF_LIBFDT |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 545 | void fdt_fixup_esdhc(void *blob, bd_t *bd) |
| 546 | { |
| 547 | const char *compat = "fsl,esdhc"; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 548 | |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 549 | #ifdef CONFIG_FSL_ESDHC_PIN_MUX |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 550 | if (!hwconfig("esdhc")) { |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 551 | do_fixup_by_compat(blob, compat, "status", "disabled", |
| 552 | 8 + 1, 1); |
| 553 | return; |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 554 | } |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 555 | #endif |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 556 | |
| 557 | do_fixup_by_compat_u32(blob, compat, "clock-frequency", |
| 558 | gd->sdhc_clk, 1); |
Chenhui Zhao | a6da8b8 | 2011-01-04 17:23:05 +0800 | [diff] [blame] | 559 | |
| 560 | do_fixup_by_compat(blob, compat, "status", "okay", |
| 561 | 4 + 1, 1); |
Anton Vorontsov | b33433a | 2009-06-10 00:25:29 +0400 | [diff] [blame] | 562 | } |
Stefano Babic | c67bee1 | 2010-02-05 15:11:27 +0100 | [diff] [blame] | 563 | #endif |