Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 SAMSUNG Electronics |
| 3 | * Minkyu Kang <mk7.kang@samsung.com> |
| 4 | * Jaehoon Chung <jh80.chung@samsung.com> |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 5 | * Portions Copyright 2011-2015 NVIDIA Corporation |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 6 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Stephen Warren | f227e45 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 10 | #include <bouncebuf.h> |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 11 | #include <common.h> |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 12 | #include <dm/device.h> |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 13 | #include <errno.h> |
Stephen Warren | fba8754 | 2011-10-31 06:51:36 +0000 | [diff] [blame] | 14 | #include <asm/gpio.h> |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 15 | #include <asm/io.h> |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 16 | #ifndef CONFIG_TEGRA186 |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 17 | #include <asm/arch/clock.h> |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 18 | #include <asm/arch-tegra/clk_rst.h> |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 19 | #endif |
Jeroen Hofstee | 93dfae7 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 20 | #include <asm/arch-tegra/mmc.h> |
Tom Warren | ab37196 | 2012-09-19 15:50:56 -0700 | [diff] [blame] | 21 | #include <asm/arch-tegra/tegra_mmc.h> |
| 22 | #include <mmc.h> |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 23 | |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 24 | /* |
| 25 | * FIXME: TODO: This driver contains a number of ifdef CONFIG_TEGRA186 that |
| 26 | * should not be present. These are needed because newer Tegra SoCs support |
| 27 | * only the standard clock/reset APIs, whereas older Tegra SoCs support only |
| 28 | * a custom Tegra-specific API. ASAP the older Tegra SoCs' code should be |
| 29 | * fixed to implement the standard APIs, and all drivers converted to solely |
| 30 | * use the new standard APIs, with no ifdefs. |
| 31 | */ |
| 32 | |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 33 | DECLARE_GLOBAL_DATA_PTR; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 34 | |
Stephen Warren | 2c0ea60 | 2014-04-18 10:56:11 -0600 | [diff] [blame] | 35 | struct mmc_host mmc_host[CONFIG_SYS_MMC_MAX_DEVICE]; |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 36 | |
Masahiro Yamada | 366b24f | 2015-08-12 07:31:55 +0900 | [diff] [blame] | 37 | #if !CONFIG_IS_ENABLED(OF_CONTROL) |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 38 | #error "Please enable device tree support to use this driver" |
| 39 | #endif |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 40 | |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 41 | static void mmc_set_power(struct mmc_host *host, unsigned short power) |
| 42 | { |
| 43 | u8 pwr = 0; |
| 44 | debug("%s: power = %x\n", __func__, power); |
| 45 | |
| 46 | if (power != (unsigned short)-1) { |
| 47 | switch (1 << power) { |
| 48 | case MMC_VDD_165_195: |
| 49 | pwr = TEGRA_MMC_PWRCTL_SD_BUS_VOLTAGE_V1_8; |
| 50 | break; |
| 51 | case MMC_VDD_29_30: |
| 52 | case MMC_VDD_30_31: |
| 53 | pwr = TEGRA_MMC_PWRCTL_SD_BUS_VOLTAGE_V3_0; |
| 54 | break; |
| 55 | case MMC_VDD_32_33: |
| 56 | case MMC_VDD_33_34: |
| 57 | pwr = TEGRA_MMC_PWRCTL_SD_BUS_VOLTAGE_V3_3; |
| 58 | break; |
| 59 | } |
| 60 | } |
| 61 | debug("%s: pwr = %X\n", __func__, pwr); |
| 62 | |
| 63 | /* Set the bus voltage first (if any) */ |
| 64 | writeb(pwr, &host->reg->pwrcon); |
| 65 | if (pwr == 0) |
| 66 | return; |
| 67 | |
| 68 | /* Now enable bus power */ |
| 69 | pwr |= TEGRA_MMC_PWRCTL_SD_BUS_POWER; |
| 70 | writeb(pwr, &host->reg->pwrcon); |
| 71 | } |
| 72 | |
Stephen Warren | f227e45 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 73 | static void mmc_prepare_data(struct mmc_host *host, struct mmc_data *data, |
| 74 | struct bounce_buffer *bbstate) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 75 | { |
| 76 | unsigned char ctrl; |
| 77 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 78 | |
Stephen Warren | f227e45 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 79 | debug("buf: %p (%p), data->blocks: %u, data->blocksize: %u\n", |
| 80 | bbstate->bounce_buffer, bbstate->user_buffer, data->blocks, |
| 81 | data->blocksize); |
| 82 | |
Thierry Reding | 1f5419e | 2015-07-22 15:34:33 -0600 | [diff] [blame] | 83 | writel((u32)(unsigned long)bbstate->bounce_buffer, &host->reg->sysad); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 84 | /* |
| 85 | * DMASEL[4:3] |
| 86 | * 00 = Selects SDMA |
| 87 | * 01 = Reserved |
| 88 | * 10 = Selects 32-bit Address ADMA2 |
| 89 | * 11 = Selects 64-bit Address ADMA2 |
| 90 | */ |
| 91 | ctrl = readb(&host->reg->hostctl); |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 92 | ctrl &= ~TEGRA_MMC_HOSTCTL_DMASEL_MASK; |
| 93 | ctrl |= TEGRA_MMC_HOSTCTL_DMASEL_SDMA; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 94 | writeb(ctrl, &host->reg->hostctl); |
| 95 | |
| 96 | /* We do not handle DMA boundaries, so set it to max (512 KiB) */ |
| 97 | writew((7 << 12) | (data->blocksize & 0xFFF), &host->reg->blksize); |
| 98 | writew(data->blocks, &host->reg->blkcnt); |
| 99 | } |
| 100 | |
| 101 | static void mmc_set_transfer_mode(struct mmc_host *host, struct mmc_data *data) |
| 102 | { |
| 103 | unsigned short mode; |
| 104 | debug(" mmc_set_transfer_mode called\n"); |
| 105 | /* |
| 106 | * TRNMOD |
| 107 | * MUL1SIN0[5] : Multi/Single Block Select |
| 108 | * RD1WT0[4] : Data Transfer Direction Select |
| 109 | * 1 = read |
| 110 | * 0 = write |
| 111 | * ENACMD12[2] : Auto CMD12 Enable |
| 112 | * ENBLKCNT[1] : Block Count Enable |
| 113 | * ENDMA[0] : DMA Enable |
| 114 | */ |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 115 | mode = (TEGRA_MMC_TRNMOD_DMA_ENABLE | |
| 116 | TEGRA_MMC_TRNMOD_BLOCK_COUNT_ENABLE); |
| 117 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 118 | if (data->blocks > 1) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 119 | mode |= TEGRA_MMC_TRNMOD_MULTI_BLOCK_SELECT; |
| 120 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 121 | if (data->flags & MMC_DATA_READ) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 122 | mode |= TEGRA_MMC_TRNMOD_DATA_XFER_DIR_SEL_READ; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 123 | |
| 124 | writew(mode, &host->reg->trnmod); |
| 125 | } |
| 126 | |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 127 | static int mmc_wait_inhibit(struct mmc_host *host, |
| 128 | struct mmc_cmd *cmd, |
| 129 | struct mmc_data *data, |
| 130 | unsigned int timeout) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 131 | { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 132 | /* |
| 133 | * PRNSTS |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 134 | * CMDINHDAT[1] : Command Inhibit (DAT) |
| 135 | * CMDINHCMD[0] : Command Inhibit (CMD) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 136 | */ |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 137 | unsigned int mask = TEGRA_MMC_PRNSTS_CMD_INHIBIT_CMD; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 138 | |
| 139 | /* |
| 140 | * We shouldn't wait for data inhibit for stop commands, even |
| 141 | * though they might use busy signaling |
| 142 | */ |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 143 | if ((data == NULL) && (cmd->resp_type & MMC_RSP_BUSY)) |
| 144 | mask |= TEGRA_MMC_PRNSTS_CMD_INHIBIT_DAT; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 145 | |
| 146 | while (readl(&host->reg->prnsts) & mask) { |
| 147 | if (timeout == 0) { |
| 148 | printf("%s: timeout error\n", __func__); |
| 149 | return -1; |
| 150 | } |
| 151 | timeout--; |
| 152 | udelay(1000); |
| 153 | } |
| 154 | |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 155 | return 0; |
| 156 | } |
| 157 | |
Stephen Warren | f227e45 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 158 | static int mmc_send_cmd_bounced(struct mmc *mmc, struct mmc_cmd *cmd, |
| 159 | struct mmc_data *data, struct bounce_buffer *bbstate) |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 160 | { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 161 | struct mmc_host *host = mmc->priv; |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 162 | int flags, i; |
| 163 | int result; |
Anatolij Gustschin | e1f5341 | 2012-03-28 03:40:00 +0000 | [diff] [blame] | 164 | unsigned int mask = 0; |
Anton staaf | 5ab3fba | 2011-11-10 11:56:52 +0000 | [diff] [blame] | 165 | unsigned int retry = 0x100000; |
| 166 | debug(" mmc_send_cmd called\n"); |
| 167 | |
| 168 | result = mmc_wait_inhibit(host, cmd, data, 10 /* ms */); |
| 169 | |
| 170 | if (result < 0) |
| 171 | return result; |
| 172 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 173 | if (data) |
Stephen Warren | f227e45 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 174 | mmc_prepare_data(host, data, bbstate); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 175 | |
| 176 | debug("cmd->arg: %08x\n", cmd->cmdarg); |
| 177 | writel(cmd->cmdarg, &host->reg->argument); |
| 178 | |
| 179 | if (data) |
| 180 | mmc_set_transfer_mode(host, data); |
| 181 | |
| 182 | if ((cmd->resp_type & MMC_RSP_136) && (cmd->resp_type & MMC_RSP_BUSY)) |
| 183 | return -1; |
| 184 | |
| 185 | /* |
| 186 | * CMDREG |
| 187 | * CMDIDX[13:8] : Command index |
| 188 | * DATAPRNT[5] : Data Present Select |
| 189 | * ENCMDIDX[4] : Command Index Check Enable |
| 190 | * ENCMDCRC[3] : Command CRC Check Enable |
| 191 | * RSPTYP[1:0] |
| 192 | * 00 = No Response |
| 193 | * 01 = Length 136 |
| 194 | * 10 = Length 48 |
| 195 | * 11 = Length 48 Check busy after response |
| 196 | */ |
| 197 | if (!(cmd->resp_type & MMC_RSP_PRESENT)) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 198 | flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_NO_RESPONSE; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 199 | else if (cmd->resp_type & MMC_RSP_136) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 200 | flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_136; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 201 | else if (cmd->resp_type & MMC_RSP_BUSY) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 202 | flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48_BUSY; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 203 | else |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 204 | flags = TEGRA_MMC_CMDREG_RESP_TYPE_SELECT_LENGTH_48; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 205 | |
| 206 | if (cmd->resp_type & MMC_RSP_CRC) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 207 | flags |= TEGRA_MMC_TRNMOD_CMD_CRC_CHECK; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 208 | if (cmd->resp_type & MMC_RSP_OPCODE) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 209 | flags |= TEGRA_MMC_TRNMOD_CMD_INDEX_CHECK; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 210 | if (data) |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 211 | flags |= TEGRA_MMC_TRNMOD_DATA_PRESENT_SELECT_DATA_TRANSFER; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 212 | |
| 213 | debug("cmd: %d\n", cmd->cmdidx); |
| 214 | |
| 215 | writew((cmd->cmdidx << 8) | flags, &host->reg->cmdreg); |
| 216 | |
| 217 | for (i = 0; i < retry; i++) { |
| 218 | mask = readl(&host->reg->norintsts); |
| 219 | /* Command Complete */ |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 220 | if (mask & TEGRA_MMC_NORINTSTS_CMD_COMPLETE) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 221 | if (!data) |
| 222 | writel(mask, &host->reg->norintsts); |
| 223 | break; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | if (i == retry) { |
| 228 | printf("%s: waiting for status update\n", __func__); |
Tom Warren | 5d331d8 | 2012-02-07 06:17:16 +0000 | [diff] [blame] | 229 | writel(mask, &host->reg->norintsts); |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 230 | return -ETIMEDOUT; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 231 | } |
| 232 | |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 233 | if (mask & TEGRA_MMC_NORINTSTS_CMD_TIMEOUT) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 234 | /* Timeout Error */ |
| 235 | debug("timeout: %08x cmd %d\n", mask, cmd->cmdidx); |
Tom Warren | 5d331d8 | 2012-02-07 06:17:16 +0000 | [diff] [blame] | 236 | writel(mask, &host->reg->norintsts); |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 237 | return -ETIMEDOUT; |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 238 | } else if (mask & TEGRA_MMC_NORINTSTS_ERR_INTERRUPT) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 239 | /* Error Interrupt */ |
| 240 | debug("error: %08x cmd %d\n", mask, cmd->cmdidx); |
Tom Warren | 5d331d8 | 2012-02-07 06:17:16 +0000 | [diff] [blame] | 241 | writel(mask, &host->reg->norintsts); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 242 | return -1; |
| 243 | } |
| 244 | |
| 245 | if (cmd->resp_type & MMC_RSP_PRESENT) { |
| 246 | if (cmd->resp_type & MMC_RSP_136) { |
| 247 | /* CRC is stripped so we need to do some shifting. */ |
| 248 | for (i = 0; i < 4; i++) { |
Thierry Reding | 1f5419e | 2015-07-22 15:34:33 -0600 | [diff] [blame] | 249 | unsigned long offset = |
| 250 | (unsigned long)(&host->reg->rspreg3 - i); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 251 | cmd->response[i] = readl(offset) << 8; |
| 252 | |
| 253 | if (i != 3) { |
| 254 | cmd->response[i] |= |
| 255 | readb(offset - 1); |
| 256 | } |
| 257 | debug("cmd->resp[%d]: %08x\n", |
| 258 | i, cmd->response[i]); |
| 259 | } |
| 260 | } else if (cmd->resp_type & MMC_RSP_BUSY) { |
| 261 | for (i = 0; i < retry; i++) { |
| 262 | /* PRNTDATA[23:20] : DAT[3:0] Line Signal */ |
| 263 | if (readl(&host->reg->prnsts) |
| 264 | & (1 << 20)) /* DAT[0] */ |
| 265 | break; |
| 266 | } |
| 267 | |
| 268 | if (i == retry) { |
| 269 | printf("%s: card is still busy\n", __func__); |
Tom Warren | 5d331d8 | 2012-02-07 06:17:16 +0000 | [diff] [blame] | 270 | writel(mask, &host->reg->norintsts); |
Jaehoon Chung | 7825d20 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 271 | return -ETIMEDOUT; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 272 | } |
| 273 | |
| 274 | cmd->response[0] = readl(&host->reg->rspreg0); |
| 275 | debug("cmd->resp[0]: %08x\n", cmd->response[0]); |
| 276 | } else { |
| 277 | cmd->response[0] = readl(&host->reg->rspreg0); |
| 278 | debug("cmd->resp[0]: %08x\n", cmd->response[0]); |
| 279 | } |
| 280 | } |
| 281 | |
| 282 | if (data) { |
Anton staaf | bd34842 | 2011-11-10 11:56:51 +0000 | [diff] [blame] | 283 | unsigned long start = get_timer(0); |
| 284 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 285 | while (1) { |
| 286 | mask = readl(&host->reg->norintsts); |
| 287 | |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 288 | if (mask & TEGRA_MMC_NORINTSTS_ERR_INTERRUPT) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 289 | /* Error Interrupt */ |
| 290 | writel(mask, &host->reg->norintsts); |
| 291 | printf("%s: error during transfer: 0x%08x\n", |
| 292 | __func__, mask); |
| 293 | return -1; |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 294 | } else if (mask & TEGRA_MMC_NORINTSTS_DMA_INTERRUPT) { |
Anton staaf | 3ade210 | 2011-11-10 11:56:50 +0000 | [diff] [blame] | 295 | /* |
| 296 | * DMA Interrupt, restart the transfer where |
| 297 | * it was interrupted. |
| 298 | */ |
| 299 | unsigned int address = readl(&host->reg->sysad); |
| 300 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 301 | debug("DMA end\n"); |
Anton staaf | 3ade210 | 2011-11-10 11:56:50 +0000 | [diff] [blame] | 302 | writel(TEGRA_MMC_NORINTSTS_DMA_INTERRUPT, |
| 303 | &host->reg->norintsts); |
| 304 | writel(address, &host->reg->sysad); |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 305 | } else if (mask & TEGRA_MMC_NORINTSTS_XFER_COMPLETE) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 306 | /* Transfer Complete */ |
| 307 | debug("r/w is done\n"); |
| 308 | break; |
Marcel Ziswiler | e1207e9 | 2014-10-04 01:48:53 +0200 | [diff] [blame] | 309 | } else if (get_timer(start) > 8000UL) { |
Anton staaf | bd34842 | 2011-11-10 11:56:51 +0000 | [diff] [blame] | 310 | writel(mask, &host->reg->norintsts); |
| 311 | printf("%s: MMC Timeout\n" |
| 312 | " Interrupt status 0x%08x\n" |
| 313 | " Interrupt status enable 0x%08x\n" |
| 314 | " Interrupt signal enable 0x%08x\n" |
| 315 | " Present status 0x%08x\n", |
| 316 | __func__, mask, |
| 317 | readl(&host->reg->norintstsen), |
| 318 | readl(&host->reg->norintsigen), |
| 319 | readl(&host->reg->prnsts)); |
| 320 | return -1; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 321 | } |
| 322 | } |
| 323 | writel(mask, &host->reg->norintsts); |
| 324 | } |
| 325 | |
| 326 | udelay(1000); |
| 327 | return 0; |
| 328 | } |
| 329 | |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 330 | static int tegra_mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, |
Stephen Warren | f227e45 | 2012-11-06 11:27:30 +0000 | [diff] [blame] | 331 | struct mmc_data *data) |
| 332 | { |
| 333 | void *buf; |
| 334 | unsigned int bbflags; |
| 335 | size_t len; |
| 336 | struct bounce_buffer bbstate; |
| 337 | int ret; |
| 338 | |
| 339 | if (data) { |
| 340 | if (data->flags & MMC_DATA_READ) { |
| 341 | buf = data->dest; |
| 342 | bbflags = GEN_BB_WRITE; |
| 343 | } else { |
| 344 | buf = (void *)data->src; |
| 345 | bbflags = GEN_BB_READ; |
| 346 | } |
| 347 | len = data->blocks * data->blocksize; |
| 348 | |
| 349 | bounce_buffer_start(&bbstate, buf, len, bbflags); |
| 350 | } |
| 351 | |
| 352 | ret = mmc_send_cmd_bounced(mmc, cmd, data, &bbstate); |
| 353 | |
| 354 | if (data) |
| 355 | bounce_buffer_stop(&bbstate); |
| 356 | |
| 357 | return ret; |
| 358 | } |
| 359 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 360 | static void mmc_change_clock(struct mmc_host *host, uint clock) |
| 361 | { |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 362 | int div; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 363 | unsigned short clk; |
| 364 | unsigned long timeout; |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 365 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 366 | debug(" mmc_change_clock called\n"); |
| 367 | |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 368 | /* |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 369 | * Change Tegra SDMMCx clock divisor here. Source is PLLP_OUT0 |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 370 | */ |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 371 | if (clock == 0) |
| 372 | goto out; |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 373 | #ifdef CONFIG_TEGRA186 |
| 374 | { |
| 375 | ulong rate = clk_set_rate(&host->clk, clock); |
| 376 | div = (rate + clock - 1) / clock; |
| 377 | } |
| 378 | #else |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 379 | clock_adjust_periph_pll_div(host->mmc_id, CLOCK_ID_PERIPH, clock, |
| 380 | &div); |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 381 | #endif |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 382 | debug("div = %d\n", div); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 383 | |
| 384 | writew(0, &host->reg->clkcon); |
| 385 | |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 386 | /* |
| 387 | * CLKCON |
| 388 | * SELFREQ[15:8] : base clock divided by value |
| 389 | * ENSDCLK[2] : SD Clock Enable |
| 390 | * STBLINTCLK[1] : Internal Clock Stable |
| 391 | * ENINTCLK[0] : Internal Clock Enable |
| 392 | */ |
Simon Glass | c2ea5e4 | 2011-09-21 12:40:04 +0000 | [diff] [blame] | 393 | div >>= 1; |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 394 | clk = ((div << TEGRA_MMC_CLKCON_SDCLK_FREQ_SEL_SHIFT) | |
| 395 | TEGRA_MMC_CLKCON_INTERNAL_CLOCK_ENABLE); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 396 | writew(clk, &host->reg->clkcon); |
| 397 | |
| 398 | /* Wait max 10 ms */ |
| 399 | timeout = 10; |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 400 | while (!(readw(&host->reg->clkcon) & |
| 401 | TEGRA_MMC_CLKCON_INTERNAL_CLOCK_STABLE)) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 402 | if (timeout == 0) { |
| 403 | printf("%s: timeout error\n", __func__); |
| 404 | return; |
| 405 | } |
| 406 | timeout--; |
| 407 | udelay(1000); |
| 408 | } |
| 409 | |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 410 | clk |= TEGRA_MMC_CLKCON_SD_CLOCK_ENABLE; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 411 | writew(clk, &host->reg->clkcon); |
| 412 | |
| 413 | debug("mmc_change_clock: clkcon = %08X\n", clk); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 414 | |
| 415 | out: |
| 416 | host->clock = clock; |
| 417 | } |
| 418 | |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 419 | static void tegra_mmc_set_ios(struct mmc *mmc) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 420 | { |
| 421 | struct mmc_host *host = mmc->priv; |
| 422 | unsigned char ctrl; |
| 423 | debug(" mmc_set_ios called\n"); |
| 424 | |
| 425 | debug("bus_width: %x, clock: %d\n", mmc->bus_width, mmc->clock); |
| 426 | |
| 427 | /* Change clock first */ |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 428 | mmc_change_clock(host, mmc->clock); |
| 429 | |
| 430 | ctrl = readb(&host->reg->hostctl); |
| 431 | |
| 432 | /* |
| 433 | * WIDE8[5] |
| 434 | * 0 = Depend on WIDE4 |
| 435 | * 1 = 8-bit mode |
| 436 | * WIDE4[1] |
| 437 | * 1 = 4-bit mode |
| 438 | * 0 = 1-bit mode |
| 439 | */ |
| 440 | if (mmc->bus_width == 8) |
| 441 | ctrl |= (1 << 5); |
| 442 | else if (mmc->bus_width == 4) |
| 443 | ctrl |= (1 << 1); |
| 444 | else |
| 445 | ctrl &= ~(1 << 1); |
| 446 | |
| 447 | writeb(ctrl, &host->reg->hostctl); |
| 448 | debug("mmc_set_ios: hostctl = %08X\n", ctrl); |
| 449 | } |
| 450 | |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 451 | static void mmc_reset(struct mmc_host *host, struct mmc *mmc) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 452 | { |
| 453 | unsigned int timeout; |
| 454 | debug(" mmc_reset called\n"); |
| 455 | |
| 456 | /* |
| 457 | * RSTALL[0] : Software reset for all |
| 458 | * 1 = reset |
| 459 | * 0 = work |
| 460 | */ |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 461 | writeb(TEGRA_MMC_SWRST_SW_RESET_FOR_ALL, &host->reg->swrst); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 462 | |
| 463 | host->clock = 0; |
| 464 | |
| 465 | /* Wait max 100 ms */ |
| 466 | timeout = 100; |
| 467 | |
| 468 | /* hw clears the bit when it's done */ |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 469 | while (readb(&host->reg->swrst) & TEGRA_MMC_SWRST_SW_RESET_FOR_ALL) { |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 470 | if (timeout == 0) { |
| 471 | printf("%s: timeout error\n", __func__); |
| 472 | return; |
| 473 | } |
| 474 | timeout--; |
| 475 | udelay(1000); |
| 476 | } |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 477 | |
| 478 | /* Set SD bus voltage & enable bus power */ |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 479 | mmc_set_power(host, fls(mmc->cfg->voltages) - 1); |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 480 | debug("%s: power control = %02X, host control = %02X\n", __func__, |
| 481 | readb(&host->reg->pwrcon), readb(&host->reg->hostctl)); |
| 482 | |
| 483 | /* Make sure SDIO pads are set up */ |
| 484 | pad_init_mmc(host); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 485 | } |
| 486 | |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 487 | static int tegra_mmc_core_init(struct mmc *mmc) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 488 | { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 489 | struct mmc_host *host = mmc->priv; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 490 | unsigned int mask; |
| 491 | debug(" mmc_core_init called\n"); |
| 492 | |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 493 | mmc_reset(host, mmc); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 494 | |
| 495 | host->version = readw(&host->reg->hcver); |
| 496 | debug("host version = %x\n", host->version); |
| 497 | |
| 498 | /* mask all */ |
| 499 | writel(0xffffffff, &host->reg->norintstsen); |
| 500 | writel(0xffffffff, &host->reg->norintsigen); |
| 501 | |
| 502 | writeb(0xe, &host->reg->timeoutcon); /* TMCLK * 2^27 */ |
| 503 | /* |
| 504 | * NORMAL Interrupt Status Enable Register init |
| 505 | * [5] ENSTABUFRDRDY : Buffer Read Ready Status Enable |
| 506 | * [4] ENSTABUFWTRDY : Buffer write Ready Status Enable |
Anton staaf | 3ade210 | 2011-11-10 11:56:50 +0000 | [diff] [blame] | 507 | * [3] ENSTADMAINT : DMA boundary interrupt |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 508 | * [1] ENSTASTANSCMPLT : Transfre Complete Status Enable |
| 509 | * [0] ENSTACMDCMPLT : Command Complete Status Enable |
| 510 | */ |
| 511 | mask = readl(&host->reg->norintstsen); |
| 512 | mask &= ~(0xffff); |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 513 | mask |= (TEGRA_MMC_NORINTSTSEN_CMD_COMPLETE | |
| 514 | TEGRA_MMC_NORINTSTSEN_XFER_COMPLETE | |
Anton staaf | 3ade210 | 2011-11-10 11:56:50 +0000 | [diff] [blame] | 515 | TEGRA_MMC_NORINTSTSEN_DMA_INTERRUPT | |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 516 | TEGRA_MMC_NORINTSTSEN_BUFFER_WRITE_READY | |
| 517 | TEGRA_MMC_NORINTSTSEN_BUFFER_READ_READY); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 518 | writel(mask, &host->reg->norintstsen); |
| 519 | |
| 520 | /* |
| 521 | * NORMAL Interrupt Signal Enable Register init |
| 522 | * [1] ENSTACMDCMPLT : Transfer Complete Signal Enable |
| 523 | */ |
| 524 | mask = readl(&host->reg->norintsigen); |
| 525 | mask &= ~(0xffff); |
Anton staaf | 0dfb31c | 2011-11-10 11:56:49 +0000 | [diff] [blame] | 526 | mask |= TEGRA_MMC_NORINTSIGEN_XFER_COMPLETE; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 527 | writel(mask, &host->reg->norintsigen); |
| 528 | |
| 529 | return 0; |
| 530 | } |
| 531 | |
Jeroen Hofstee | 93dfae7 | 2014-10-08 22:57:46 +0200 | [diff] [blame] | 532 | static int tegra_mmc_getcd(struct mmc *mmc) |
Thierry Reding | f149411 | 2012-01-02 01:15:39 +0000 | [diff] [blame] | 533 | { |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 534 | struct mmc_host *host = mmc->priv; |
Thierry Reding | f149411 | 2012-01-02 01:15:39 +0000 | [diff] [blame] | 535 | |
Tom Warren | 22562a4 | 2012-09-04 17:00:24 -0700 | [diff] [blame] | 536 | debug("tegra_mmc_getcd called\n"); |
Thierry Reding | f149411 | 2012-01-02 01:15:39 +0000 | [diff] [blame] | 537 | |
Simon Glass | a30d4ba | 2015-01-05 20:05:38 -0700 | [diff] [blame] | 538 | if (dm_gpio_is_valid(&host->cd_gpio)) |
| 539 | return dm_gpio_get_value(&host->cd_gpio); |
Thierry Reding | f149411 | 2012-01-02 01:15:39 +0000 | [diff] [blame] | 540 | |
| 541 | return 1; |
| 542 | } |
| 543 | |
Pantelis Antoniou | c9e7591 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 544 | static const struct mmc_ops tegra_mmc_ops = { |
| 545 | .send_cmd = tegra_mmc_send_cmd, |
| 546 | .set_ios = tegra_mmc_set_ios, |
| 547 | .init = tegra_mmc_core_init, |
| 548 | .getcd = tegra_mmc_getcd, |
| 549 | }; |
| 550 | |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 551 | static int do_mmc_init(int dev_index, bool removable) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 552 | { |
Stephen Warren | 85a6c07 | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 553 | struct mmc_host *host; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 554 | struct mmc *mmc; |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 555 | #ifdef CONFIG_TEGRA186 |
| 556 | int ret; |
| 557 | #endif |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 558 | |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 559 | /* DT should have been read & host config filled in */ |
Stephen Warren | 85a6c07 | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 560 | host = &mmc_host[dev_index]; |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 561 | if (!host->enabled) |
| 562 | return -1; |
Stephen Warren | 85a6c07 | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 563 | |
Simon Glass | a30d4ba | 2015-01-05 20:05:38 -0700 | [diff] [blame] | 564 | debug(" do_mmc_init: index %d, bus width %d pwr_gpio %d cd_gpio %d\n", |
| 565 | dev_index, host->width, gpio_get_number(&host->pwr_gpio), |
| 566 | gpio_get_number(&host->cd_gpio)); |
Stephen Warren | 85a6c07 | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 567 | |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 568 | host->clock = 0; |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 569 | |
| 570 | #ifdef CONFIG_TEGRA186 |
| 571 | ret = reset_assert(&host->reset_ctl); |
| 572 | if (ret) |
| 573 | return ret; |
| 574 | ret = clk_enable(&host->clk); |
| 575 | if (ret) |
| 576 | return ret; |
| 577 | ret = clk_set_rate(&host->clk, 20000000); |
| 578 | if (IS_ERR_VALUE(ret)) |
| 579 | return ret; |
| 580 | ret = reset_deassert(&host->reset_ctl); |
| 581 | if (ret) |
| 582 | return ret; |
| 583 | #else |
Stephen Warren | 85a6c07 | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 584 | clock_start_periph_pll(host->mmc_id, CLOCK_ID_PERIPH, 20000000); |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 585 | #endif |
Stephen Warren | 85a6c07 | 2011-10-31 06:51:34 +0000 | [diff] [blame] | 586 | |
Simon Glass | a30d4ba | 2015-01-05 20:05:38 -0700 | [diff] [blame] | 587 | if (dm_gpio_is_valid(&host->pwr_gpio)) |
| 588 | dm_gpio_set_value(&host->pwr_gpio, 1); |
Stephen Warren | fba8754 | 2011-10-31 06:51:36 +0000 | [diff] [blame] | 589 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 590 | memset(&host->cfg, 0, sizeof(host->cfg)); |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 591 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 592 | host->cfg.name = "Tegra SD/MMC"; |
| 593 | host->cfg.ops = &tegra_mmc_ops; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 594 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 595 | host->cfg.voltages = MMC_VDD_32_33 | MMC_VDD_33_34 | MMC_VDD_165_195; |
| 596 | host->cfg.host_caps = 0; |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 597 | if (host->width == 8) |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 598 | host->cfg.host_caps |= MMC_MODE_8BIT; |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 599 | if (host->width >= 4) |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 600 | host->cfg.host_caps |= MMC_MODE_4BIT; |
Rob Herring | 5fd3edd | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 601 | host->cfg.host_caps |= MMC_MODE_HS_52MHz | MMC_MODE_HS; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 602 | |
| 603 | /* |
| 604 | * min freq is for card identification, and is the highest |
| 605 | * low-speed SDIO card frequency (actually 400KHz) |
| 606 | * max freq is highest HS eMMC clock as per the SD/MMC spec |
| 607 | * (actually 52MHz) |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 608 | */ |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 609 | host->cfg.f_min = 375000; |
| 610 | host->cfg.f_max = 48000000; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 611 | |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 612 | host->cfg.b_max = CONFIG_SYS_MMC_MAX_BLK_COUNT; |
| 613 | |
| 614 | mmc = mmc_create(&host->cfg, host); |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 615 | mmc->block_dev.removable = removable; |
Pantelis Antoniou | 2c85046 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 616 | if (mmc == NULL) |
| 617 | return -1; |
Tom Warren | 85f0ee4 | 2011-05-31 10:30:37 +0000 | [diff] [blame] | 618 | |
| 619 | return 0; |
| 620 | } |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 621 | |
| 622 | /** |
| 623 | * Get the host address and peripheral ID for a node. |
| 624 | * |
| 625 | * @param blob fdt blob |
| 626 | * @param node Device index (0-3) |
| 627 | * @param host Structure to fill in (reg, width, mmc_id) |
| 628 | */ |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 629 | static int mmc_get_config(const void *blob, int node, struct mmc_host *host, |
| 630 | bool *removablep) |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 631 | { |
| 632 | debug("%s: node = %d\n", __func__, node); |
| 633 | |
| 634 | host->enabled = fdtdec_get_is_enabled(blob, node); |
| 635 | |
| 636 | host->reg = (struct tegra_mmc *)fdtdec_get_addr(blob, node, "reg"); |
| 637 | if ((fdt_addr_t)host->reg == FDT_ADDR_T_NONE) { |
| 638 | debug("%s: no sdmmc base reg info found\n", __func__); |
| 639 | return -FDT_ERR_NOTFOUND; |
| 640 | } |
| 641 | |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 642 | #ifdef CONFIG_TEGRA186 |
| 643 | { |
| 644 | /* |
| 645 | * FIXME: This variable should go away when the MMC device |
| 646 | * actually is a udevice. |
| 647 | */ |
| 648 | struct udevice dev; |
| 649 | int ret; |
| 650 | dev.of_offset = node; |
Stephen Warren | 0a81e58 | 2016-08-18 11:08:44 -0600 | [diff] [blame] | 651 | ret = reset_get_by_name(&dev, "sdhci", &host->reset_ctl); |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 652 | if (ret) { |
Stephen Warren | 0a81e58 | 2016-08-18 11:08:44 -0600 | [diff] [blame] | 653 | debug("reset_get_by_name() failed: %d\n", ret); |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 654 | return ret; |
| 655 | } |
Stephen Warren | 0a81e58 | 2016-08-18 11:08:44 -0600 | [diff] [blame] | 656 | ret = clk_get_by_index(&dev, 0, &host->clk); |
Stephen Warren | d26e24d | 2016-08-05 16:10:33 -0600 | [diff] [blame] | 657 | if (ret) { |
| 658 | debug("clk_get_by_index() failed: %d\n", ret); |
| 659 | return ret; |
| 660 | } |
| 661 | } |
| 662 | #else |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 663 | host->mmc_id = clock_decode_periph_id(blob, node); |
| 664 | if (host->mmc_id == PERIPH_ID_NONE) { |
| 665 | debug("%s: could not decode periph id\n", __func__); |
| 666 | return -FDT_ERR_NOTFOUND; |
| 667 | } |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 668 | #endif |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 669 | |
| 670 | /* |
| 671 | * NOTE: mmc->bus_width is determined by mmc.c dynamically. |
| 672 | * TBD: Override it with this value? |
| 673 | */ |
| 674 | host->width = fdtdec_get_int(blob, node, "bus-width", 0); |
| 675 | if (!host->width) |
| 676 | debug("%s: no sdmmc width found\n", __func__); |
| 677 | |
| 678 | /* These GPIOs are optional */ |
Simon Glass | a30d4ba | 2015-01-05 20:05:38 -0700 | [diff] [blame] | 679 | gpio_request_by_name_nodev(blob, node, "cd-gpios", 0, &host->cd_gpio, |
| 680 | GPIOD_IS_IN); |
| 681 | gpio_request_by_name_nodev(blob, node, "wp-gpios", 0, &host->wp_gpio, |
| 682 | GPIOD_IS_IN); |
| 683 | gpio_request_by_name_nodev(blob, node, "power-gpios", 0, |
| 684 | &host->pwr_gpio, GPIOD_IS_OUT); |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 685 | *removablep = !fdtdec_get_bool(blob, node, "non-removable"); |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 686 | |
| 687 | debug("%s: found controller at %p, width = %d, periph_id = %d\n", |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 688 | __func__, host->reg, host->width, |
| 689 | #ifndef CONFIG_TEGRA186 |
| 690 | host->mmc_id |
| 691 | #else |
| 692 | -1 |
| 693 | #endif |
| 694 | ); |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 695 | return 0; |
| 696 | } |
| 697 | |
| 698 | /* |
| 699 | * Process a list of nodes, adding them to our list of SDMMC ports. |
| 700 | * |
| 701 | * @param blob fdt blob |
| 702 | * @param node_list list of nodes to process (any <=0 are ignored) |
| 703 | * @param count number of nodes to process |
| 704 | * @return 0 if ok, -1 on error |
| 705 | */ |
| 706 | static int process_nodes(const void *blob, int node_list[], int count) |
| 707 | { |
| 708 | struct mmc_host *host; |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 709 | bool removable; |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 710 | int i, node; |
| 711 | |
| 712 | debug("%s: count = %d\n", __func__, count); |
| 713 | |
| 714 | /* build mmc_host[] for each controller */ |
| 715 | for (i = 0; i < count; i++) { |
| 716 | node = node_list[i]; |
| 717 | if (node <= 0) |
| 718 | continue; |
| 719 | |
| 720 | host = &mmc_host[i]; |
| 721 | host->id = i; |
| 722 | |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 723 | if (mmc_get_config(blob, node, host, &removable)) { |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 724 | printf("%s: failed to decode dev %d\n", __func__, i); |
| 725 | return -1; |
| 726 | } |
Simon Glass | 7bcaf2a | 2015-05-04 11:31:16 -0600 | [diff] [blame] | 727 | do_mmc_init(i, removable); |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 728 | } |
| 729 | return 0; |
| 730 | } |
| 731 | |
| 732 | void tegra_mmc_init(void) |
| 733 | { |
Stephen Warren | 2c0ea60 | 2014-04-18 10:56:11 -0600 | [diff] [blame] | 734 | int node_list[CONFIG_SYS_MMC_MAX_DEVICE], count; |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 735 | const void *blob = gd->fdt_blob; |
| 736 | debug("%s entry\n", __func__); |
| 737 | |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 738 | /* See if any Tegra186 MMC controllers are present */ |
Stephen Warren | d55aadc | 2016-09-13 10:45:43 -0600 | [diff] [blame^] | 739 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
Stephen Warren | dfbdc12 | 2016-05-12 12:11:23 -0600 | [diff] [blame] | 740 | COMPAT_NVIDIA_TEGRA186_SDMMC, node_list, |
| 741 | CONFIG_SYS_MMC_MAX_DEVICE); |
| 742 | debug("%s: count of Tegra186 sdhci nodes is %d\n", __func__, count); |
| 743 | if (process_nodes(blob, node_list, count)) { |
| 744 | printf("%s: Error processing T186 mmc node(s)!\n", __func__); |
| 745 | return; |
| 746 | } |
| 747 | |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 748 | /* See if any Tegra210 MMC controllers are present */ |
Stephen Warren | d55aadc | 2016-09-13 10:45:43 -0600 | [diff] [blame^] | 749 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 750 | COMPAT_NVIDIA_TEGRA210_SDMMC, node_list, |
| 751 | CONFIG_SYS_MMC_MAX_DEVICE); |
| 752 | debug("%s: count of Tegra210 sdhci nodes is %d\n", __func__, count); |
| 753 | if (process_nodes(blob, node_list, count)) { |
Simon Glass | a40f7a2 | 2016-01-30 16:37:42 -0700 | [diff] [blame] | 754 | printf("%s: Error processing T210 mmc node(s)!\n", __func__); |
Tom Warren | ab0cc6b | 2015-03-04 16:36:00 -0700 | [diff] [blame] | 755 | return; |
| 756 | } |
| 757 | |
Stephen Warren | 65e0eb1 | 2014-01-24 12:46:06 -0700 | [diff] [blame] | 758 | /* See if any Tegra124 MMC controllers are present */ |
Stephen Warren | d55aadc | 2016-09-13 10:45:43 -0600 | [diff] [blame^] | 759 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
Stephen Warren | 2c0ea60 | 2014-04-18 10:56:11 -0600 | [diff] [blame] | 760 | COMPAT_NVIDIA_TEGRA124_SDMMC, node_list, |
| 761 | CONFIG_SYS_MMC_MAX_DEVICE); |
Stephen Warren | 65e0eb1 | 2014-01-24 12:46:06 -0700 | [diff] [blame] | 762 | debug("%s: count of Tegra124 sdhci nodes is %d\n", __func__, count); |
| 763 | if (process_nodes(blob, node_list, count)) { |
Simon Glass | a40f7a2 | 2016-01-30 16:37:42 -0700 | [diff] [blame] | 764 | printf("%s: Error processing T124 mmc node(s)!\n", __func__); |
Stephen Warren | 65e0eb1 | 2014-01-24 12:46:06 -0700 | [diff] [blame] | 765 | return; |
| 766 | } |
| 767 | |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 768 | /* See if any Tegra30 MMC controllers are present */ |
Stephen Warren | d55aadc | 2016-09-13 10:45:43 -0600 | [diff] [blame^] | 769 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
Stephen Warren | 2c0ea60 | 2014-04-18 10:56:11 -0600 | [diff] [blame] | 770 | COMPAT_NVIDIA_TEGRA30_SDMMC, node_list, |
| 771 | CONFIG_SYS_MMC_MAX_DEVICE); |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 772 | debug("%s: count of T30 sdhci nodes is %d\n", __func__, count); |
| 773 | if (process_nodes(blob, node_list, count)) { |
| 774 | printf("%s: Error processing T30 mmc node(s)!\n", __func__); |
| 775 | return; |
| 776 | } |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 777 | |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 778 | /* Now look for any Tegra20 MMC controllers */ |
Stephen Warren | d55aadc | 2016-09-13 10:45:43 -0600 | [diff] [blame^] | 779 | count = fdtdec_find_aliases_for_id(blob, "mmc", |
Stephen Warren | 2c0ea60 | 2014-04-18 10:56:11 -0600 | [diff] [blame] | 780 | COMPAT_NVIDIA_TEGRA20_SDMMC, node_list, |
| 781 | CONFIG_SYS_MMC_MAX_DEVICE); |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 782 | debug("%s: count of T20 sdhci nodes is %d\n", __func__, count); |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 783 | if (process_nodes(blob, node_list, count)) { |
Tom Warren | 35ae07b | 2013-02-26 12:31:26 -0700 | [diff] [blame] | 784 | printf("%s: Error processing T20 mmc node(s)!\n", __func__); |
Tom Warren | 9745cf8 | 2013-02-21 12:31:30 +0000 | [diff] [blame] | 785 | return; |
| 786 | } |
| 787 | } |