Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2008, Freescale Semiconductor, Inc |
| 3 | * Andy Fleming |
| 4 | * |
| 5 | * Based vaguely on the Linux code |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | #include <config.h> |
| 11 | #include <common.h> |
| 12 | #include <command.h> |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 13 | #include <dm.h> |
| 14 | #include <dm/device-internal.h> |
Stephen Warren | d4622df | 2014-05-23 12:47:06 -0600 | [diff] [blame] | 15 | #include <errno.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 16 | #include <mmc.h> |
| 17 | #include <part.h> |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 18 | #include <power/regulator.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 19 | #include <malloc.h> |
Simon Glass | cf92e05 | 2015-09-02 17:24:58 -0600 | [diff] [blame] | 20 | #include <memalign.h> |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 21 | #include <linux/list.h> |
Rabin Vincent | 9b1f942 | 2009-04-05 13:30:54 +0530 | [diff] [blame] | 22 | #include <div64.h> |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 23 | #include "mmc_private.h" |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 24 | |
Peng Fan | 3697e59 | 2016-09-01 11:13:38 +0800 | [diff] [blame] | 25 | static const unsigned int sd_au_size[] = { |
| 26 | 0, SZ_16K / 512, SZ_32K / 512, |
| 27 | SZ_64K / 512, SZ_128K / 512, SZ_256K / 512, |
| 28 | SZ_512K / 512, SZ_1M / 512, SZ_2M / 512, |
| 29 | SZ_4M / 512, SZ_8M / 512, (SZ_8M + SZ_4M) / 512, |
| 30 | SZ_16M / 512, (SZ_16M + SZ_8M) / 512, SZ_32M / 512, SZ_64M / 512, |
| 31 | }; |
| 32 | |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 33 | static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 34 | static int mmc_power_cycle(struct mmc *mmc); |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 35 | |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 36 | #if CONFIG_IS_ENABLED(MMC_TINY) |
| 37 | static struct mmc mmc_static; |
| 38 | struct mmc *find_mmc_device(int dev_num) |
| 39 | { |
| 40 | return &mmc_static; |
| 41 | } |
| 42 | |
| 43 | void mmc_do_preinit(void) |
| 44 | { |
| 45 | struct mmc *m = &mmc_static; |
| 46 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 47 | mmc_set_preinit(m, 1); |
| 48 | #endif |
| 49 | if (m->preinit) |
| 50 | mmc_start_init(m); |
| 51 | } |
| 52 | |
| 53 | struct blk_desc *mmc_get_blk_desc(struct mmc *mmc) |
| 54 | { |
| 55 | return &mmc->block_dev; |
| 56 | } |
| 57 | #endif |
| 58 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 59 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 60 | __weak int board_mmc_getwp(struct mmc *mmc) |
Nikita Kiryanov | d23d8d7 | 2012-12-03 02:19:46 +0000 | [diff] [blame] | 61 | { |
| 62 | return -1; |
| 63 | } |
| 64 | |
| 65 | int mmc_getwp(struct mmc *mmc) |
| 66 | { |
| 67 | int wp; |
| 68 | |
| 69 | wp = board_mmc_getwp(mmc); |
| 70 | |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 71 | if (wp < 0) { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 72 | if (mmc->cfg->ops->getwp) |
| 73 | wp = mmc->cfg->ops->getwp(mmc); |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 74 | else |
| 75 | wp = 0; |
| 76 | } |
Nikita Kiryanov | d23d8d7 | 2012-12-03 02:19:46 +0000 | [diff] [blame] | 77 | |
| 78 | return wp; |
| 79 | } |
| 80 | |
Jeroen Hofstee | cee9ab7 | 2014-07-10 22:46:28 +0200 | [diff] [blame] | 81 | __weak int board_mmc_getcd(struct mmc *mmc) |
| 82 | { |
Stefano Babic | 11fdade | 2010-02-05 15:04:43 +0100 | [diff] [blame] | 83 | return -1; |
| 84 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 85 | #endif |
Stefano Babic | 11fdade | 2010-02-05 15:04:43 +0100 | [diff] [blame] | 86 | |
Marek Vasut | 8635ff9 | 2012-03-15 18:41:35 +0000 | [diff] [blame] | 87 | #ifdef CONFIG_MMC_TRACE |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 88 | void mmmc_trace_before_send(struct mmc *mmc, struct mmc_cmd *cmd) |
| 89 | { |
| 90 | printf("CMD_SEND:%d\n", cmd->cmdidx); |
| 91 | printf("\t\tARG\t\t\t 0x%08X\n", cmd->cmdarg); |
| 92 | } |
| 93 | |
| 94 | void mmmc_trace_after_send(struct mmc *mmc, struct mmc_cmd *cmd, int ret) |
| 95 | { |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 96 | int i; |
| 97 | u8 *ptr; |
| 98 | |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 99 | if (ret) { |
| 100 | printf("\t\tRET\t\t\t %d\n", ret); |
| 101 | } else { |
| 102 | switch (cmd->resp_type) { |
| 103 | case MMC_RSP_NONE: |
| 104 | printf("\t\tMMC_RSP_NONE\n"); |
| 105 | break; |
| 106 | case MMC_RSP_R1: |
| 107 | printf("\t\tMMC_RSP_R1,5,6,7 \t 0x%08X \n", |
| 108 | cmd->response[0]); |
| 109 | break; |
| 110 | case MMC_RSP_R1b: |
| 111 | printf("\t\tMMC_RSP_R1b\t\t 0x%08X \n", |
| 112 | cmd->response[0]); |
| 113 | break; |
| 114 | case MMC_RSP_R2: |
| 115 | printf("\t\tMMC_RSP_R2\t\t 0x%08X \n", |
| 116 | cmd->response[0]); |
| 117 | printf("\t\t \t\t 0x%08X \n", |
| 118 | cmd->response[1]); |
| 119 | printf("\t\t \t\t 0x%08X \n", |
| 120 | cmd->response[2]); |
| 121 | printf("\t\t \t\t 0x%08X \n", |
| 122 | cmd->response[3]); |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 123 | printf("\n"); |
Bin Meng | 7863ce5 | 2016-03-17 21:53:14 -0700 | [diff] [blame] | 124 | printf("\t\t\t\t\tDUMPING DATA\n"); |
| 125 | for (i = 0; i < 4; i++) { |
| 126 | int j; |
| 127 | printf("\t\t\t\t\t%03d - ", i*4); |
| 128 | ptr = (u8 *)&cmd->response[i]; |
| 129 | ptr += 3; |
| 130 | for (j = 0; j < 4; j++) |
| 131 | printf("%02X ", *ptr--); |
| 132 | printf("\n"); |
| 133 | } |
| 134 | break; |
| 135 | case MMC_RSP_R3: |
| 136 | printf("\t\tMMC_RSP_R3,4\t\t 0x%08X \n", |
| 137 | cmd->response[0]); |
| 138 | break; |
| 139 | default: |
| 140 | printf("\t\tERROR MMC rsp not supported\n"); |
| 141 | break; |
Bin Meng | 53e8e40 | 2016-03-17 21:53:13 -0700 | [diff] [blame] | 142 | } |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 143 | } |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 144 | } |
| 145 | |
| 146 | void mmc_trace_state(struct mmc *mmc, struct mmc_cmd *cmd) |
| 147 | { |
| 148 | int status; |
| 149 | |
| 150 | status = (cmd->response[0] & MMC_STATUS_CURR_STATE) >> 9; |
| 151 | printf("CURR STATE:%d\n", status); |
| 152 | } |
Raffaele Recalcati | 5db2fe3 | 2011-03-11 02:01:14 +0000 | [diff] [blame] | 153 | #endif |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 154 | |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 155 | #if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG) |
| 156 | const char *mmc_mode_name(enum bus_mode mode) |
| 157 | { |
| 158 | static const char *const names[] = { |
| 159 | [MMC_LEGACY] = "MMC legacy", |
| 160 | [SD_LEGACY] = "SD Legacy", |
| 161 | [MMC_HS] = "MMC High Speed (26MHz)", |
| 162 | [SD_HS] = "SD High Speed (50MHz)", |
| 163 | [UHS_SDR12] = "UHS SDR12 (25MHz)", |
| 164 | [UHS_SDR25] = "UHS SDR25 (50MHz)", |
| 165 | [UHS_SDR50] = "UHS SDR50 (100MHz)", |
| 166 | [UHS_SDR104] = "UHS SDR104 (208MHz)", |
| 167 | [UHS_DDR50] = "UHS DDR50 (50MHz)", |
| 168 | [MMC_HS_52] = "MMC High Speed (52MHz)", |
| 169 | [MMC_DDR_52] = "MMC DDR52 (52MHz)", |
| 170 | [MMC_HS_200] = "HS200 (200MHz)", |
| 171 | }; |
| 172 | |
| 173 | if (mode >= MMC_MODES_END) |
| 174 | return "Unknown mode"; |
| 175 | else |
| 176 | return names[mode]; |
| 177 | } |
| 178 | #endif |
| 179 | |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 180 | static uint mmc_mode2freq(struct mmc *mmc, enum bus_mode mode) |
| 181 | { |
| 182 | static const int freqs[] = { |
| 183 | [SD_LEGACY] = 25000000, |
| 184 | [MMC_HS] = 26000000, |
| 185 | [SD_HS] = 50000000, |
| 186 | [UHS_SDR12] = 25000000, |
| 187 | [UHS_SDR25] = 50000000, |
| 188 | [UHS_SDR50] = 100000000, |
| 189 | [UHS_SDR104] = 208000000, |
| 190 | [UHS_DDR50] = 50000000, |
| 191 | [MMC_HS_52] = 52000000, |
| 192 | [MMC_DDR_52] = 52000000, |
| 193 | [MMC_HS_200] = 200000000, |
| 194 | }; |
| 195 | |
| 196 | if (mode == MMC_LEGACY) |
| 197 | return mmc->legacy_speed; |
| 198 | else if (mode >= MMC_MODES_END) |
| 199 | return 0; |
| 200 | else |
| 201 | return freqs[mode]; |
| 202 | } |
| 203 | |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 204 | static int mmc_select_mode(struct mmc *mmc, enum bus_mode mode) |
| 205 | { |
| 206 | mmc->selected_mode = mode; |
Jean-Jacques Hiblot | 0503857 | 2017-09-21 16:29:55 +0200 | [diff] [blame] | 207 | mmc->tran_speed = mmc_mode2freq(mmc, mode); |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 208 | mmc->ddr_mode = mmc_is_mode_ddr(mode); |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 209 | debug("selecting mode %s (freq : %d MHz)\n", mmc_mode_name(mode), |
| 210 | mmc->tran_speed / 1000000); |
| 211 | return 0; |
| 212 | } |
| 213 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 214 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 215 | int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd, struct mmc_data *data) |
| 216 | { |
| 217 | int ret; |
| 218 | |
| 219 | mmmc_trace_before_send(mmc, cmd); |
| 220 | ret = mmc->cfg->ops->send_cmd(mmc, cmd, data); |
| 221 | mmmc_trace_after_send(mmc, cmd, ret); |
| 222 | |
Marek Vasut | 8635ff9 | 2012-03-15 18:41:35 +0000 | [diff] [blame] | 223 | return ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 224 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 225 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 226 | |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 227 | int mmc_send_status(struct mmc *mmc, int timeout) |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 228 | { |
| 229 | struct mmc_cmd cmd; |
Jan Kloetzke | d617c42 | 2012-02-05 22:29:12 +0000 | [diff] [blame] | 230 | int err, retries = 5; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 231 | |
| 232 | cmd.cmdidx = MMC_CMD_SEND_STATUS; |
| 233 | cmd.resp_type = MMC_RSP_R1; |
Marek Vasut | aaf3d41 | 2011-08-10 09:24:48 +0200 | [diff] [blame] | 234 | if (!mmc_host_is_spi(mmc)) |
| 235 | cmd.cmdarg = mmc->rca << 16; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 236 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 237 | while (1) { |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 238 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Jan Kloetzke | d617c42 | 2012-02-05 22:29:12 +0000 | [diff] [blame] | 239 | if (!err) { |
| 240 | if ((cmd.response[0] & MMC_STATUS_RDY_FOR_DATA) && |
| 241 | (cmd.response[0] & MMC_STATUS_CURR_STATE) != |
| 242 | MMC_STATE_PRG) |
| 243 | break; |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 244 | |
| 245 | if (cmd.response[0] & MMC_STATUS_MASK) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 246 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Jan Kloetzke | d617c42 | 2012-02-05 22:29:12 +0000 | [diff] [blame] | 247 | printf("Status Error: 0x%08X\n", |
| 248 | cmd.response[0]); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 249 | #endif |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 250 | return -ECOMM; |
Jan Kloetzke | d617c42 | 2012-02-05 22:29:12 +0000 | [diff] [blame] | 251 | } |
| 252 | } else if (--retries < 0) |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 253 | return err; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 254 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 255 | if (timeout-- <= 0) |
| 256 | break; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 257 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 258 | udelay(1000); |
| 259 | } |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 260 | |
Simon Glass | c0c76eb | 2016-06-12 23:30:20 -0600 | [diff] [blame] | 261 | mmc_trace_state(mmc, &cmd); |
Jongman Heo | 5b0c942 | 2012-06-03 21:32:13 +0000 | [diff] [blame] | 262 | if (timeout <= 0) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 263 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 264 | printf("Timeout waiting card ready\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 265 | #endif |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 266 | return -ETIMEDOUT; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 267 | } |
| 268 | |
| 269 | return 0; |
| 270 | } |
| 271 | |
Paul Burton | da61fa5 | 2013-09-09 15:30:26 +0100 | [diff] [blame] | 272 | int mmc_set_blocklen(struct mmc *mmc, int len) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 273 | { |
| 274 | struct mmc_cmd cmd; |
| 275 | |
Andrew Gabbasov | 786e8f8 | 2014-12-01 06:59:09 -0600 | [diff] [blame] | 276 | if (mmc->ddr_mode) |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 277 | return 0; |
| 278 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 279 | cmd.cmdidx = MMC_CMD_SET_BLOCKLEN; |
| 280 | cmd.resp_type = MMC_RSP_R1; |
| 281 | cmd.cmdarg = len; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 282 | |
| 283 | return mmc_send_cmd(mmc, &cmd, NULL); |
| 284 | } |
| 285 | |
Sascha Silbe | ff8fef5 | 2013-06-14 13:07:25 +0200 | [diff] [blame] | 286 | static int mmc_read_blocks(struct mmc *mmc, void *dst, lbaint_t start, |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 287 | lbaint_t blkcnt) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 288 | { |
| 289 | struct mmc_cmd cmd; |
| 290 | struct mmc_data data; |
| 291 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 292 | if (blkcnt > 1) |
| 293 | cmd.cmdidx = MMC_CMD_READ_MULTIPLE_BLOCK; |
| 294 | else |
| 295 | cmd.cmdidx = MMC_CMD_READ_SINGLE_BLOCK; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 296 | |
| 297 | if (mmc->high_capacity) |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 298 | cmd.cmdarg = start; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 299 | else |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 300 | cmd.cmdarg = start * mmc->read_bl_len; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 301 | |
| 302 | cmd.resp_type = MMC_RSP_R1; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 303 | |
| 304 | data.dest = dst; |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 305 | data.blocks = blkcnt; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 306 | data.blocksize = mmc->read_bl_len; |
| 307 | data.flags = MMC_DATA_READ; |
| 308 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 309 | if (mmc_send_cmd(mmc, &cmd, &data)) |
| 310 | return 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 311 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 312 | if (blkcnt > 1) { |
| 313 | cmd.cmdidx = MMC_CMD_STOP_TRANSMISSION; |
| 314 | cmd.cmdarg = 0; |
| 315 | cmd.resp_type = MMC_RSP_R1b; |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 316 | if (mmc_send_cmd(mmc, &cmd, NULL)) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 317 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 318 | printf("mmc fail to send stop cmd\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 319 | #endif |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 320 | return 0; |
| 321 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 322 | } |
| 323 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 324 | return blkcnt; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 325 | } |
| 326 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 327 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 328 | ulong mmc_bread(struct udevice *dev, lbaint_t start, lbaint_t blkcnt, void *dst) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 329 | #else |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 330 | ulong mmc_bread(struct blk_desc *block_dev, lbaint_t start, lbaint_t blkcnt, |
| 331 | void *dst) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 332 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 333 | { |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 334 | #if CONFIG_IS_ENABLED(BLK) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 335 | struct blk_desc *block_dev = dev_get_uclass_platdata(dev); |
| 336 | #endif |
Simon Glass | bcce53d | 2016-02-29 15:25:51 -0700 | [diff] [blame] | 337 | int dev_num = block_dev->devnum; |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 338 | int err; |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 339 | lbaint_t cur, blocks_todo = blkcnt; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 340 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 341 | if (blkcnt == 0) |
| 342 | return 0; |
| 343 | |
| 344 | struct mmc *mmc = find_mmc_device(dev_num); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 345 | if (!mmc) |
| 346 | return 0; |
| 347 | |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 348 | if (CONFIG_IS_ENABLED(MMC_TINY)) |
| 349 | err = mmc_switch_part(mmc, block_dev->hwpart); |
| 350 | else |
| 351 | err = blk_dselect_hwpart(block_dev, block_dev->hwpart); |
| 352 | |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 353 | if (err < 0) |
| 354 | return 0; |
| 355 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 356 | if ((start + blkcnt) > block_dev->lba) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 357 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Sascha Silbe | ff8fef5 | 2013-06-14 13:07:25 +0200 | [diff] [blame] | 358 | printf("MMC: block number 0x" LBAF " exceeds max(0x" LBAF ")\n", |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 359 | start + blkcnt, block_dev->lba); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 360 | #endif |
Lei Wen | d2bf29e | 2010-09-13 22:07:27 +0800 | [diff] [blame] | 361 | return 0; |
| 362 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 363 | |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 364 | if (mmc_set_blocklen(mmc, mmc->read_bl_len)) { |
| 365 | debug("%s: Failed to set blocklen\n", __func__); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 366 | return 0; |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 367 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 368 | |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 369 | do { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 370 | cur = (blocks_todo > mmc->cfg->b_max) ? |
| 371 | mmc->cfg->b_max : blocks_todo; |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 372 | if (mmc_read_blocks(mmc, dst, start, cur) != cur) { |
| 373 | debug("%s: Failed to read blocks\n", __func__); |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 374 | return 0; |
Simon Glass | 1169299 | 2015-06-23 15:38:50 -0600 | [diff] [blame] | 375 | } |
Alagu Sankar | 4a1a06b | 2010-10-25 07:23:56 -0700 | [diff] [blame] | 376 | blocks_todo -= cur; |
| 377 | start += cur; |
| 378 | dst += cur * mmc->read_bl_len; |
| 379 | } while (blocks_todo > 0); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 380 | |
| 381 | return blkcnt; |
| 382 | } |
| 383 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 384 | static int mmc_go_idle(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 385 | { |
| 386 | struct mmc_cmd cmd; |
| 387 | int err; |
| 388 | |
| 389 | udelay(1000); |
| 390 | |
| 391 | cmd.cmdidx = MMC_CMD_GO_IDLE_STATE; |
| 392 | cmd.cmdarg = 0; |
| 393 | cmd.resp_type = MMC_RSP_NONE; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 394 | |
| 395 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 396 | |
| 397 | if (err) |
| 398 | return err; |
| 399 | |
| 400 | udelay(2000); |
| 401 | |
| 402 | return 0; |
| 403 | } |
| 404 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 405 | static int sd_send_op_cond(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 406 | { |
| 407 | int timeout = 1000; |
| 408 | int err; |
| 409 | struct mmc_cmd cmd; |
| 410 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 411 | while (1) { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 412 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 413 | cmd.resp_type = MMC_RSP_R1; |
| 414 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 415 | |
| 416 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 417 | |
| 418 | if (err) |
| 419 | return err; |
| 420 | |
| 421 | cmd.cmdidx = SD_CMD_APP_SEND_OP_COND; |
| 422 | cmd.resp_type = MMC_RSP_R3; |
Stefano Babic | 250de12 | 2010-01-20 18:20:39 +0100 | [diff] [blame] | 423 | |
| 424 | /* |
| 425 | * Most cards do not answer if some reserved bits |
| 426 | * in the ocr are set. However, Some controller |
| 427 | * can set bit 7 (reserved for low voltages), but |
| 428 | * how to manage low voltages SD card is not yet |
| 429 | * specified. |
| 430 | */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 431 | cmd.cmdarg = mmc_host_is_spi(mmc) ? 0 : |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 432 | (mmc->cfg->voltages & 0xff8000); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 433 | |
| 434 | if (mmc->version == SD_VERSION_2) |
| 435 | cmd.cmdarg |= OCR_HCS; |
| 436 | |
| 437 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 438 | |
| 439 | if (err) |
| 440 | return err; |
| 441 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 442 | if (cmd.response[0] & OCR_BUSY) |
| 443 | break; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 444 | |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 445 | if (timeout-- <= 0) |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 446 | return -EOPNOTSUPP; |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 447 | |
| 448 | udelay(1000); |
| 449 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 450 | |
| 451 | if (mmc->version != SD_VERSION_2) |
| 452 | mmc->version = SD_VERSION_1_0; |
| 453 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 454 | if (mmc_host_is_spi(mmc)) { /* read OCR for spi */ |
| 455 | cmd.cmdidx = MMC_CMD_SPI_READ_OCR; |
| 456 | cmd.resp_type = MMC_RSP_R3; |
| 457 | cmd.cmdarg = 0; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 458 | |
| 459 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 460 | |
| 461 | if (err) |
| 462 | return err; |
| 463 | } |
| 464 | |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 465 | mmc->ocr = cmd.response[0]; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 466 | |
| 467 | mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS); |
| 468 | mmc->rca = 0; |
| 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 473 | static int mmc_send_op_cond_iter(struct mmc *mmc, int use_arg) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 474 | { |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 475 | struct mmc_cmd cmd; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 476 | int err; |
| 477 | |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 478 | cmd.cmdidx = MMC_CMD_SEND_OP_COND; |
| 479 | cmd.resp_type = MMC_RSP_R3; |
| 480 | cmd.cmdarg = 0; |
Rob Herring | 5a20397 | 2015-03-23 17:56:59 -0500 | [diff] [blame] | 481 | if (use_arg && !mmc_host_is_spi(mmc)) |
| 482 | cmd.cmdarg = OCR_HCS | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 483 | (mmc->cfg->voltages & |
Andrew Gabbasov | a626c8d | 2015-03-19 07:44:03 -0500 | [diff] [blame] | 484 | (mmc->ocr & OCR_VOLTAGE_MASK)) | |
| 485 | (mmc->ocr & OCR_ACCESS_MODE); |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 486 | |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 487 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 488 | if (err) |
| 489 | return err; |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 490 | mmc->ocr = cmd.response[0]; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 491 | return 0; |
| 492 | } |
| 493 | |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 494 | static int mmc_send_op_cond(struct mmc *mmc) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 495 | { |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 496 | int err, i; |
| 497 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 498 | /* Some cards seem to need this */ |
| 499 | mmc_go_idle(mmc); |
| 500 | |
Raffaele Recalcati | 31cacba | 2011-03-11 02:01:13 +0000 | [diff] [blame] | 501 | /* Asking to the card its capabilities */ |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 502 | for (i = 0; i < 2; i++) { |
Andrew Gabbasov | 5289b53 | 2015-03-19 07:44:04 -0500 | [diff] [blame] | 503 | err = mmc_send_op_cond_iter(mmc, i != 0); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 504 | if (err) |
| 505 | return err; |
| 506 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 507 | /* exit if not busy (flag seems to be inverted) */ |
Andrew Gabbasov | a626c8d | 2015-03-19 07:44:03 -0500 | [diff] [blame] | 508 | if (mmc->ocr & OCR_BUSY) |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 509 | break; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 510 | } |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 511 | mmc->op_cond_pending = 1; |
| 512 | return 0; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 513 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 514 | |
Jeroen Hofstee | 750121c | 2014-07-12 21:24:08 +0200 | [diff] [blame] | 515 | static int mmc_complete_op_cond(struct mmc *mmc) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 516 | { |
| 517 | struct mmc_cmd cmd; |
| 518 | int timeout = 1000; |
| 519 | uint start; |
| 520 | int err; |
| 521 | |
| 522 | mmc->op_cond_pending = 0; |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 523 | if (!(mmc->ocr & OCR_BUSY)) { |
Yangbo Lu | d188b11 | 2016-08-02 15:33:18 +0800 | [diff] [blame] | 524 | /* Some cards seem to need this */ |
| 525 | mmc_go_idle(mmc); |
| 526 | |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 527 | start = get_timer(0); |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 528 | while (1) { |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 529 | err = mmc_send_op_cond_iter(mmc, 1); |
| 530 | if (err) |
| 531 | return err; |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 532 | if (mmc->ocr & OCR_BUSY) |
| 533 | break; |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 534 | if (get_timer(start) > timeout) |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 535 | return -EOPNOTSUPP; |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 536 | udelay(100); |
Andrew Gabbasov | 1677eef | 2015-03-19 07:44:06 -0500 | [diff] [blame] | 537 | } |
Andrew Gabbasov | cc17c01 | 2015-03-19 07:44:05 -0500 | [diff] [blame] | 538 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 539 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 540 | if (mmc_host_is_spi(mmc)) { /* read OCR for spi */ |
| 541 | cmd.cmdidx = MMC_CMD_SPI_READ_OCR; |
| 542 | cmd.resp_type = MMC_RSP_R3; |
| 543 | cmd.cmdarg = 0; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 544 | |
| 545 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 546 | |
| 547 | if (err) |
| 548 | return err; |
Andrew Gabbasov | a626c8d | 2015-03-19 07:44:03 -0500 | [diff] [blame] | 549 | |
| 550 | mmc->ocr = cmd.response[0]; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 553 | mmc->version = MMC_VERSION_UNKNOWN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 554 | |
| 555 | mmc->high_capacity = ((mmc->ocr & OCR_HCS) == OCR_HCS); |
Stephen Warren | def816a | 2014-01-30 16:11:12 -0700 | [diff] [blame] | 556 | mmc->rca = 1; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 557 | |
| 558 | return 0; |
| 559 | } |
| 560 | |
| 561 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 562 | static int mmc_send_ext_csd(struct mmc *mmc, u8 *ext_csd) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 563 | { |
| 564 | struct mmc_cmd cmd; |
| 565 | struct mmc_data data; |
| 566 | int err; |
| 567 | |
| 568 | /* Get the Card Status Register */ |
| 569 | cmd.cmdidx = MMC_CMD_SEND_EXT_CSD; |
| 570 | cmd.resp_type = MMC_RSP_R1; |
| 571 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 572 | |
Yoshihiro Shimoda | cdfd1ac | 2012-06-07 19:09:11 +0000 | [diff] [blame] | 573 | data.dest = (char *)ext_csd; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 574 | data.blocks = 1; |
Simon Glass | 8bfa195 | 2013-04-03 08:54:30 +0000 | [diff] [blame] | 575 | data.blocksize = MMC_MAX_BLOCK_LEN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 576 | data.flags = MMC_DATA_READ; |
| 577 | |
| 578 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 579 | |
| 580 | return err; |
| 581 | } |
| 582 | |
Simon Glass | c40704f | 2016-06-12 23:30:18 -0600 | [diff] [blame] | 583 | int mmc_switch(struct mmc *mmc, u8 set, u8 index, u8 value) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 584 | { |
| 585 | struct mmc_cmd cmd; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 586 | int timeout = 1000; |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 587 | int retries = 3; |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 588 | int ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 589 | |
| 590 | cmd.cmdidx = MMC_CMD_SWITCH; |
| 591 | cmd.resp_type = MMC_RSP_R1b; |
| 592 | cmd.cmdarg = (MMC_SWITCH_MODE_WRITE_BYTE << 24) | |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 593 | (index << 16) | |
| 594 | (value << 8); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 595 | |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 596 | while (retries > 0) { |
| 597 | ret = mmc_send_cmd(mmc, &cmd, NULL); |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 598 | |
Maxime Ripard | a9003dc | 2016-11-04 16:18:08 +0100 | [diff] [blame] | 599 | /* Waiting for the ready status */ |
| 600 | if (!ret) { |
| 601 | ret = mmc_send_status(mmc, timeout); |
| 602 | return ret; |
| 603 | } |
| 604 | |
| 605 | retries--; |
| 606 | } |
Raffaele Recalcati | 5d4fc8d | 2011-03-11 02:01:12 +0000 | [diff] [blame] | 607 | |
| 608 | return ret; |
| 609 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 610 | } |
| 611 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 612 | static int mmc_set_card_speed(struct mmc *mmc, enum bus_mode mode) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 613 | { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 614 | int err; |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 615 | int speed_bits; |
| 616 | |
| 617 | ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN); |
| 618 | |
| 619 | switch (mode) { |
| 620 | case MMC_HS: |
| 621 | case MMC_HS_52: |
| 622 | case MMC_DDR_52: |
| 623 | speed_bits = EXT_CSD_TIMING_HS; |
| 624 | case MMC_LEGACY: |
| 625 | speed_bits = EXT_CSD_TIMING_LEGACY; |
| 626 | break; |
| 627 | default: |
| 628 | return -EINVAL; |
| 629 | } |
| 630 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_HS_TIMING, |
| 631 | speed_bits); |
| 632 | if (err) |
| 633 | return err; |
| 634 | |
| 635 | if ((mode == MMC_HS) || (mode == MMC_HS_52)) { |
| 636 | /* Now check to see that it worked */ |
| 637 | err = mmc_send_ext_csd(mmc, test_csd); |
| 638 | if (err) |
| 639 | return err; |
| 640 | |
| 641 | /* No high-speed support */ |
| 642 | if (!test_csd[EXT_CSD_HS_TIMING]) |
| 643 | return -ENOTSUPP; |
| 644 | } |
| 645 | |
| 646 | return 0; |
| 647 | } |
| 648 | |
| 649 | static int mmc_get_capabilities(struct mmc *mmc) |
| 650 | { |
| 651 | u8 *ext_csd = mmc->ext_csd; |
| 652 | char cardtype; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 653 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 654 | mmc->card_caps = MMC_MODE_1BIT; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 655 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 656 | if (mmc_host_is_spi(mmc)) |
| 657 | return 0; |
| 658 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 659 | /* Only version 4 supports high-speed */ |
| 660 | if (mmc->version < MMC_VERSION_4) |
| 661 | return 0; |
| 662 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 663 | if (!ext_csd) { |
| 664 | printf("No ext_csd found!\n"); /* this should enver happen */ |
| 665 | return -ENOTSUPP; |
| 666 | } |
| 667 | |
Andrew Gabbasov | fc5b32f | 2014-12-25 10:22:25 -0600 | [diff] [blame] | 668 | mmc->card_caps |= MMC_MODE_4BIT | MMC_MODE_8BIT; |
| 669 | |
Lei Wen | 0560db1 | 2011-10-03 20:35:10 +0000 | [diff] [blame] | 670 | cardtype = ext_csd[EXT_CSD_CARD_TYPE] & 0xf; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 671 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 672 | /* High Speed is set, there are two types: 52MHz and 26MHz */ |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 673 | if (cardtype & EXT_CSD_CARD_TYPE_52) { |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 674 | if (cardtype & EXT_CSD_CARD_TYPE_DDR_52) |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 675 | mmc->card_caps |= MMC_MODE_DDR_52MHz; |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 676 | mmc->card_caps |= MMC_MODE_HS_52MHz; |
Jaehoon Chung | d22e3d4 | 2014-05-16 13:59:54 +0900 | [diff] [blame] | 677 | } |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 678 | if (cardtype & EXT_CSD_CARD_TYPE_26) |
| 679 | mmc->card_caps |= MMC_MODE_HS; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 680 | |
| 681 | return 0; |
| 682 | } |
| 683 | |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 684 | static int mmc_set_capacity(struct mmc *mmc, int part_num) |
| 685 | { |
| 686 | switch (part_num) { |
| 687 | case 0: |
| 688 | mmc->capacity = mmc->capacity_user; |
| 689 | break; |
| 690 | case 1: |
| 691 | case 2: |
| 692 | mmc->capacity = mmc->capacity_boot; |
| 693 | break; |
| 694 | case 3: |
| 695 | mmc->capacity = mmc->capacity_rpmb; |
| 696 | break; |
| 697 | case 4: |
| 698 | case 5: |
| 699 | case 6: |
| 700 | case 7: |
| 701 | mmc->capacity = mmc->capacity_gp[part_num - 4]; |
| 702 | break; |
| 703 | default: |
| 704 | return -1; |
| 705 | } |
| 706 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 707 | mmc_get_blk_desc(mmc)->lba = lldiv(mmc->capacity, mmc->read_bl_len); |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 708 | |
| 709 | return 0; |
| 710 | } |
| 711 | |
Simon Glass | 7dba0b9 | 2016-06-12 23:30:15 -0600 | [diff] [blame] | 712 | int mmc_switch_part(struct mmc *mmc, unsigned int part_num) |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 713 | { |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 714 | int ret; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 715 | |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 716 | ret = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_PART_CONF, |
| 717 | (mmc->part_config & ~PART_ACCESS_MASK) |
| 718 | | (part_num & PART_ACCESS_MASK)); |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 719 | |
Peter Bigot | 6dc93e7 | 2014-09-02 18:31:23 -0500 | [diff] [blame] | 720 | /* |
| 721 | * Set the capacity if the switch succeeded or was intended |
| 722 | * to return to representing the raw device. |
| 723 | */ |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 724 | if ((ret == 0) || ((ret == -ENODEV) && (part_num == 0))) { |
Peter Bigot | 6dc93e7 | 2014-09-02 18:31:23 -0500 | [diff] [blame] | 725 | ret = mmc_set_capacity(mmc, part_num); |
Simon Glass | fdbb139 | 2016-05-01 13:52:37 -0600 | [diff] [blame] | 726 | mmc_get_blk_desc(mmc)->hwpart = part_num; |
Stephen Warren | 873cc1d | 2015-12-07 11:38:49 -0700 | [diff] [blame] | 727 | } |
Peter Bigot | 6dc93e7 | 2014-09-02 18:31:23 -0500 | [diff] [blame] | 728 | |
| 729 | return ret; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 730 | } |
| 731 | |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 732 | int mmc_hwpart_config(struct mmc *mmc, |
| 733 | const struct mmc_hwpart_conf *conf, |
| 734 | enum mmc_hwpart_conf_mode mode) |
| 735 | { |
| 736 | u8 part_attrs = 0; |
| 737 | u32 enh_size_mult; |
| 738 | u32 enh_start_addr; |
| 739 | u32 gp_size_mult[4]; |
| 740 | u32 max_enh_size_mult; |
| 741 | u32 tot_enh_size_mult = 0; |
Diego Santa Cruz | 8dda5b0e | 2014-12-23 10:50:31 +0100 | [diff] [blame] | 742 | u8 wr_rel_set; |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 743 | int i, pidx, err; |
| 744 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
| 745 | |
| 746 | if (mode < MMC_HWPART_CONF_CHECK || mode > MMC_HWPART_CONF_COMPLETE) |
| 747 | return -EINVAL; |
| 748 | |
| 749 | if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4_41)) { |
| 750 | printf("eMMC >= 4.4 required for enhanced user data area\n"); |
| 751 | return -EMEDIUMTYPE; |
| 752 | } |
| 753 | |
| 754 | if (!(mmc->part_support & PART_SUPPORT)) { |
| 755 | printf("Card does not support partitioning\n"); |
| 756 | return -EMEDIUMTYPE; |
| 757 | } |
| 758 | |
| 759 | if (!mmc->hc_wp_grp_size) { |
| 760 | printf("Card does not define HC WP group size\n"); |
| 761 | return -EMEDIUMTYPE; |
| 762 | } |
| 763 | |
| 764 | /* check partition alignment and total enhanced size */ |
| 765 | if (conf->user.enh_size) { |
| 766 | if (conf->user.enh_size % mmc->hc_wp_grp_size || |
| 767 | conf->user.enh_start % mmc->hc_wp_grp_size) { |
| 768 | printf("User data enhanced area not HC WP group " |
| 769 | "size aligned\n"); |
| 770 | return -EINVAL; |
| 771 | } |
| 772 | part_attrs |= EXT_CSD_ENH_USR; |
| 773 | enh_size_mult = conf->user.enh_size / mmc->hc_wp_grp_size; |
| 774 | if (mmc->high_capacity) { |
| 775 | enh_start_addr = conf->user.enh_start; |
| 776 | } else { |
| 777 | enh_start_addr = (conf->user.enh_start << 9); |
| 778 | } |
| 779 | } else { |
| 780 | enh_size_mult = 0; |
| 781 | enh_start_addr = 0; |
| 782 | } |
| 783 | tot_enh_size_mult += enh_size_mult; |
| 784 | |
| 785 | for (pidx = 0; pidx < 4; pidx++) { |
| 786 | if (conf->gp_part[pidx].size % mmc->hc_wp_grp_size) { |
| 787 | printf("GP%i partition not HC WP group size " |
| 788 | "aligned\n", pidx+1); |
| 789 | return -EINVAL; |
| 790 | } |
| 791 | gp_size_mult[pidx] = conf->gp_part[pidx].size / mmc->hc_wp_grp_size; |
| 792 | if (conf->gp_part[pidx].size && conf->gp_part[pidx].enhanced) { |
| 793 | part_attrs |= EXT_CSD_ENH_GP(pidx); |
| 794 | tot_enh_size_mult += gp_size_mult[pidx]; |
| 795 | } |
| 796 | } |
| 797 | |
| 798 | if (part_attrs && ! (mmc->part_support & ENHNCD_SUPPORT)) { |
| 799 | printf("Card does not support enhanced attribute\n"); |
| 800 | return -EMEDIUMTYPE; |
| 801 | } |
| 802 | |
| 803 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 804 | if (err) |
| 805 | return err; |
| 806 | |
| 807 | max_enh_size_mult = |
| 808 | (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+2] << 16) + |
| 809 | (ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT+1] << 8) + |
| 810 | ext_csd[EXT_CSD_MAX_ENH_SIZE_MULT]; |
| 811 | if (tot_enh_size_mult > max_enh_size_mult) { |
| 812 | printf("Total enhanced size exceeds maximum (%u > %u)\n", |
| 813 | tot_enh_size_mult, max_enh_size_mult); |
| 814 | return -EMEDIUMTYPE; |
| 815 | } |
| 816 | |
Diego Santa Cruz | 8dda5b0e | 2014-12-23 10:50:31 +0100 | [diff] [blame] | 817 | /* The default value of EXT_CSD_WR_REL_SET is device |
| 818 | * dependent, the values can only be changed if the |
| 819 | * EXT_CSD_HS_CTRL_REL bit is set. The values can be |
| 820 | * changed only once and before partitioning is completed. */ |
| 821 | wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET]; |
| 822 | if (conf->user.wr_rel_change) { |
| 823 | if (conf->user.wr_rel_set) |
| 824 | wr_rel_set |= EXT_CSD_WR_DATA_REL_USR; |
| 825 | else |
| 826 | wr_rel_set &= ~EXT_CSD_WR_DATA_REL_USR; |
| 827 | } |
| 828 | for (pidx = 0; pidx < 4; pidx++) { |
| 829 | if (conf->gp_part[pidx].wr_rel_change) { |
| 830 | if (conf->gp_part[pidx].wr_rel_set) |
| 831 | wr_rel_set |= EXT_CSD_WR_DATA_REL_GP(pidx); |
| 832 | else |
| 833 | wr_rel_set &= ~EXT_CSD_WR_DATA_REL_GP(pidx); |
| 834 | } |
| 835 | } |
| 836 | |
| 837 | if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET] && |
| 838 | !(ext_csd[EXT_CSD_WR_REL_PARAM] & EXT_CSD_HS_CTRL_REL)) { |
| 839 | puts("Card does not support host controlled partition write " |
| 840 | "reliability settings\n"); |
| 841 | return -EMEDIUMTYPE; |
| 842 | } |
| 843 | |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 844 | if (ext_csd[EXT_CSD_PARTITION_SETTING] & |
| 845 | EXT_CSD_PARTITION_SETTING_COMPLETED) { |
| 846 | printf("Card already partitioned\n"); |
| 847 | return -EPERM; |
| 848 | } |
| 849 | |
| 850 | if (mode == MMC_HWPART_CONF_CHECK) |
| 851 | return 0; |
| 852 | |
| 853 | /* Partitioning requires high-capacity size definitions */ |
| 854 | if (!(ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01)) { |
| 855 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 856 | EXT_CSD_ERASE_GROUP_DEF, 1); |
| 857 | |
| 858 | if (err) |
| 859 | return err; |
| 860 | |
| 861 | ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1; |
| 862 | |
| 863 | /* update erase group size to be high-capacity */ |
| 864 | mmc->erase_grp_size = |
| 865 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024; |
| 866 | |
| 867 | } |
| 868 | |
| 869 | /* all OK, write the configuration */ |
| 870 | for (i = 0; i < 4; i++) { |
| 871 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 872 | EXT_CSD_ENH_START_ADDR+i, |
| 873 | (enh_start_addr >> (i*8)) & 0xFF); |
| 874 | if (err) |
| 875 | return err; |
| 876 | } |
| 877 | for (i = 0; i < 3; i++) { |
| 878 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 879 | EXT_CSD_ENH_SIZE_MULT+i, |
| 880 | (enh_size_mult >> (i*8)) & 0xFF); |
| 881 | if (err) |
| 882 | return err; |
| 883 | } |
| 884 | for (pidx = 0; pidx < 4; pidx++) { |
| 885 | for (i = 0; i < 3; i++) { |
| 886 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 887 | EXT_CSD_GP_SIZE_MULT+pidx*3+i, |
| 888 | (gp_size_mult[pidx] >> (i*8)) & 0xFF); |
| 889 | if (err) |
| 890 | return err; |
| 891 | } |
| 892 | } |
| 893 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 894 | EXT_CSD_PARTITIONS_ATTRIBUTE, part_attrs); |
| 895 | if (err) |
| 896 | return err; |
| 897 | |
| 898 | if (mode == MMC_HWPART_CONF_SET) |
| 899 | return 0; |
| 900 | |
Diego Santa Cruz | 8dda5b0e | 2014-12-23 10:50:31 +0100 | [diff] [blame] | 901 | /* The WR_REL_SET is a write-once register but shall be |
| 902 | * written before setting PART_SETTING_COMPLETED. As it is |
| 903 | * write-once we can only write it when completing the |
| 904 | * partitioning. */ |
| 905 | if (wr_rel_set != ext_csd[EXT_CSD_WR_REL_SET]) { |
| 906 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 907 | EXT_CSD_WR_REL_SET, wr_rel_set); |
| 908 | if (err) |
| 909 | return err; |
| 910 | } |
| 911 | |
Diego Santa Cruz | ac9da0e | 2014-12-23 10:50:29 +0100 | [diff] [blame] | 912 | /* Setting PART_SETTING_COMPLETED confirms the partition |
| 913 | * configuration but it only becomes effective after power |
| 914 | * cycle, so we do not adjust the partition related settings |
| 915 | * in the mmc struct. */ |
| 916 | |
| 917 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 918 | EXT_CSD_PARTITION_SETTING, |
| 919 | EXT_CSD_PARTITION_SETTING_COMPLETED); |
| 920 | if (err) |
| 921 | return err; |
| 922 | |
| 923 | return 0; |
| 924 | } |
| 925 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 926 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 927 | int mmc_getcd(struct mmc *mmc) |
| 928 | { |
| 929 | int cd; |
| 930 | |
| 931 | cd = board_mmc_getcd(mmc); |
| 932 | |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 933 | if (cd < 0) { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 934 | if (mmc->cfg->ops->getcd) |
| 935 | cd = mmc->cfg->ops->getcd(mmc); |
Peter Korsgaard | d4e1da4 | 2013-03-21 04:00:03 +0000 | [diff] [blame] | 936 | else |
| 937 | cd = 1; |
| 938 | } |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 939 | |
| 940 | return cd; |
| 941 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 942 | #endif |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 943 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 944 | static int sd_switch(struct mmc *mmc, int mode, int group, u8 value, u8 *resp) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 945 | { |
| 946 | struct mmc_cmd cmd; |
| 947 | struct mmc_data data; |
| 948 | |
| 949 | /* Switch the frequency */ |
| 950 | cmd.cmdidx = SD_CMD_SWITCH_FUNC; |
| 951 | cmd.resp_type = MMC_RSP_R1; |
| 952 | cmd.cmdarg = (mode << 31) | 0xffffff; |
| 953 | cmd.cmdarg &= ~(0xf << (group * 4)); |
| 954 | cmd.cmdarg |= value << (group * 4); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 955 | |
| 956 | data.dest = (char *)resp; |
| 957 | data.blocksize = 64; |
| 958 | data.blocks = 1; |
| 959 | data.flags = MMC_DATA_READ; |
| 960 | |
| 961 | return mmc_send_cmd(mmc, &cmd, &data); |
| 962 | } |
| 963 | |
| 964 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 965 | static int sd_get_capabilities(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 966 | { |
| 967 | int err; |
| 968 | struct mmc_cmd cmd; |
Suniel Mahesh | 18e7c8f | 2017-10-05 11:32:00 +0530 | [diff] [blame] | 969 | ALLOC_CACHE_ALIGN_BUFFER(__be32, scr, 2); |
| 970 | ALLOC_CACHE_ALIGN_BUFFER(__be32, switch_status, 16); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 971 | struct mmc_data data; |
| 972 | int timeout; |
| 973 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 974 | mmc->card_caps = MMC_MODE_1BIT; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 975 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 976 | if (mmc_host_is_spi(mmc)) |
| 977 | return 0; |
| 978 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 979 | /* Read the SCR to find out if this card supports higher speeds */ |
| 980 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 981 | cmd.resp_type = MMC_RSP_R1; |
| 982 | cmd.cmdarg = mmc->rca << 16; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 983 | |
| 984 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 985 | |
| 986 | if (err) |
| 987 | return err; |
| 988 | |
| 989 | cmd.cmdidx = SD_CMD_APP_SEND_SCR; |
| 990 | cmd.resp_type = MMC_RSP_R1; |
| 991 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 992 | |
| 993 | timeout = 3; |
| 994 | |
| 995 | retry_scr: |
Anton staaf | f781dd3 | 2011-10-03 13:54:59 +0000 | [diff] [blame] | 996 | data.dest = (char *)scr; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 997 | data.blocksize = 8; |
| 998 | data.blocks = 1; |
| 999 | data.flags = MMC_DATA_READ; |
| 1000 | |
| 1001 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 1002 | |
| 1003 | if (err) { |
| 1004 | if (timeout--) |
| 1005 | goto retry_scr; |
| 1006 | |
| 1007 | return err; |
| 1008 | } |
| 1009 | |
Yauhen Kharuzhy | 4e3d89b | 2009-05-07 00:43:30 +0300 | [diff] [blame] | 1010 | mmc->scr[0] = __be32_to_cpu(scr[0]); |
| 1011 | mmc->scr[1] = __be32_to_cpu(scr[1]); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1012 | |
| 1013 | switch ((mmc->scr[0] >> 24) & 0xf) { |
Bin Meng | 53e8e40 | 2016-03-17 21:53:13 -0700 | [diff] [blame] | 1014 | case 0: |
| 1015 | mmc->version = SD_VERSION_1_0; |
| 1016 | break; |
| 1017 | case 1: |
| 1018 | mmc->version = SD_VERSION_1_10; |
| 1019 | break; |
| 1020 | case 2: |
| 1021 | mmc->version = SD_VERSION_2; |
| 1022 | if ((mmc->scr[0] >> 15) & 0x1) |
| 1023 | mmc->version = SD_VERSION_3; |
| 1024 | break; |
| 1025 | default: |
| 1026 | mmc->version = SD_VERSION_1_0; |
| 1027 | break; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1028 | } |
| 1029 | |
Alagu Sankar | b44c708 | 2010-05-12 15:08:24 +0530 | [diff] [blame] | 1030 | if (mmc->scr[0] & SD_DATA_4BIT) |
| 1031 | mmc->card_caps |= MMC_MODE_4BIT; |
| 1032 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1033 | /* Version 1.0 doesn't support switching */ |
| 1034 | if (mmc->version == SD_VERSION_1_0) |
| 1035 | return 0; |
| 1036 | |
| 1037 | timeout = 4; |
| 1038 | while (timeout--) { |
| 1039 | err = sd_switch(mmc, SD_SWITCH_CHECK, 0, 1, |
Anton staaf | f781dd3 | 2011-10-03 13:54:59 +0000 | [diff] [blame] | 1040 | (u8 *)switch_status); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1041 | |
| 1042 | if (err) |
| 1043 | return err; |
| 1044 | |
| 1045 | /* The high-speed function is busy. Try again */ |
Yauhen Kharuzhy | 4e3d89b | 2009-05-07 00:43:30 +0300 | [diff] [blame] | 1046 | if (!(__be32_to_cpu(switch_status[7]) & SD_HIGHSPEED_BUSY)) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1047 | break; |
| 1048 | } |
| 1049 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1050 | /* If high-speed isn't supported, we return */ |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1051 | if (__be32_to_cpu(switch_status[3]) & SD_HIGHSPEED_SUPPORTED) |
| 1052 | mmc->card_caps |= MMC_CAP(SD_HS); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1053 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1054 | return 0; |
| 1055 | } |
| 1056 | |
| 1057 | static int sd_set_card_speed(struct mmc *mmc, enum bus_mode mode) |
| 1058 | { |
| 1059 | int err; |
| 1060 | |
| 1061 | ALLOC_CACHE_ALIGN_BUFFER(uint, switch_status, 16); |
Macpaul Lin | 2c3fbf4 | 2011-11-28 16:31:09 +0000 | [diff] [blame] | 1062 | |
Anton staaf | f781dd3 | 2011-10-03 13:54:59 +0000 | [diff] [blame] | 1063 | err = sd_switch(mmc, SD_SWITCH_SWITCH, 0, 1, (u8 *)switch_status); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1064 | if (err) |
| 1065 | return err; |
| 1066 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1067 | if ((__be32_to_cpu(switch_status[4]) & 0x0f000000) != 0x01000000) |
| 1068 | return -ENOTSUPP; |
| 1069 | |
| 1070 | return 0; |
| 1071 | } |
| 1072 | |
| 1073 | int sd_select_bus_width(struct mmc *mmc, int w) |
| 1074 | { |
| 1075 | int err; |
| 1076 | struct mmc_cmd cmd; |
| 1077 | |
| 1078 | if ((w != 4) && (w != 1)) |
| 1079 | return -EINVAL; |
| 1080 | |
| 1081 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 1082 | cmd.resp_type = MMC_RSP_R1; |
| 1083 | cmd.cmdarg = mmc->rca << 16; |
| 1084 | |
| 1085 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1086 | if (err) |
| 1087 | return err; |
| 1088 | |
| 1089 | cmd.cmdidx = SD_CMD_APP_SET_BUS_WIDTH; |
| 1090 | cmd.resp_type = MMC_RSP_R1; |
| 1091 | if (w == 4) |
| 1092 | cmd.cmdarg = 2; |
| 1093 | else if (w == 1) |
| 1094 | cmd.cmdarg = 0; |
| 1095 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1096 | if (err) |
| 1097 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1098 | |
| 1099 | return 0; |
| 1100 | } |
| 1101 | |
Peng Fan | 3697e59 | 2016-09-01 11:13:38 +0800 | [diff] [blame] | 1102 | static int sd_read_ssr(struct mmc *mmc) |
| 1103 | { |
| 1104 | int err, i; |
| 1105 | struct mmc_cmd cmd; |
| 1106 | ALLOC_CACHE_ALIGN_BUFFER(uint, ssr, 16); |
| 1107 | struct mmc_data data; |
| 1108 | int timeout = 3; |
| 1109 | unsigned int au, eo, et, es; |
| 1110 | |
| 1111 | cmd.cmdidx = MMC_CMD_APP_CMD; |
| 1112 | cmd.resp_type = MMC_RSP_R1; |
| 1113 | cmd.cmdarg = mmc->rca << 16; |
| 1114 | |
| 1115 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1116 | if (err) |
| 1117 | return err; |
| 1118 | |
| 1119 | cmd.cmdidx = SD_CMD_APP_SD_STATUS; |
| 1120 | cmd.resp_type = MMC_RSP_R1; |
| 1121 | cmd.cmdarg = 0; |
| 1122 | |
| 1123 | retry_ssr: |
| 1124 | data.dest = (char *)ssr; |
| 1125 | data.blocksize = 64; |
| 1126 | data.blocks = 1; |
| 1127 | data.flags = MMC_DATA_READ; |
| 1128 | |
| 1129 | err = mmc_send_cmd(mmc, &cmd, &data); |
| 1130 | if (err) { |
| 1131 | if (timeout--) |
| 1132 | goto retry_ssr; |
| 1133 | |
| 1134 | return err; |
| 1135 | } |
| 1136 | |
| 1137 | for (i = 0; i < 16; i++) |
| 1138 | ssr[i] = be32_to_cpu(ssr[i]); |
| 1139 | |
| 1140 | au = (ssr[2] >> 12) & 0xF; |
| 1141 | if ((au <= 9) || (mmc->version == SD_VERSION_3)) { |
| 1142 | mmc->ssr.au = sd_au_size[au]; |
| 1143 | es = (ssr[3] >> 24) & 0xFF; |
| 1144 | es |= (ssr[2] & 0xFF) << 8; |
| 1145 | et = (ssr[3] >> 18) & 0x3F; |
| 1146 | if (es && et) { |
| 1147 | eo = (ssr[3] >> 16) & 0x3; |
| 1148 | mmc->ssr.erase_timeout = (et * 1000) / es; |
| 1149 | mmc->ssr.erase_offset = eo * 1000; |
| 1150 | } |
| 1151 | } else { |
| 1152 | debug("Invalid Allocation Unit Size.\n"); |
| 1153 | } |
| 1154 | |
| 1155 | return 0; |
| 1156 | } |
| 1157 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1158 | /* frequency bases */ |
| 1159 | /* divided by 10 to be nice to platforms without floating point */ |
Mike Frysinger | 5f837c2 | 2010-10-20 01:15:53 +0000 | [diff] [blame] | 1160 | static const int fbase[] = { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1161 | 10000, |
| 1162 | 100000, |
| 1163 | 1000000, |
| 1164 | 10000000, |
| 1165 | }; |
| 1166 | |
| 1167 | /* Multiplier values for TRAN_SPEED. Multiplied by 10 to be nice |
| 1168 | * to platforms without floating point. |
| 1169 | */ |
Simon Glass | 61fe076 | 2016-05-14 14:02:57 -0600 | [diff] [blame] | 1170 | static const u8 multipliers[] = { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1171 | 0, /* reserved */ |
| 1172 | 10, |
| 1173 | 12, |
| 1174 | 13, |
| 1175 | 15, |
| 1176 | 20, |
| 1177 | 25, |
| 1178 | 30, |
| 1179 | 35, |
| 1180 | 40, |
| 1181 | 45, |
| 1182 | 50, |
| 1183 | 55, |
| 1184 | 60, |
| 1185 | 70, |
| 1186 | 80, |
| 1187 | }; |
| 1188 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1189 | static inline int bus_width(uint cap) |
| 1190 | { |
| 1191 | if (cap == MMC_MODE_8BIT) |
| 1192 | return 8; |
| 1193 | if (cap == MMC_MODE_4BIT) |
| 1194 | return 4; |
| 1195 | if (cap == MMC_MODE_1BIT) |
| 1196 | return 1; |
| 1197 | printf("invalid bus witdh capability 0x%x\n", cap); |
| 1198 | return 0; |
| 1199 | } |
| 1200 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 1201 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Kishon Vijay Abraham I | ec84120 | 2017-09-21 16:30:05 +0200 | [diff] [blame^] | 1202 | static int mmc_execute_tuning(struct mmc *mmc, uint opcode) |
| 1203 | { |
| 1204 | return -ENOTSUPP; |
| 1205 | } |
| 1206 | |
Jean-Jacques Hiblot | 318a7a5 | 2017-09-21 16:30:01 +0200 | [diff] [blame] | 1207 | static void mmc_send_init_stream(struct mmc *mmc) |
| 1208 | { |
| 1209 | } |
| 1210 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1211 | static int mmc_set_ios(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1212 | { |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1213 | int ret = 0; |
| 1214 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 1215 | if (mmc->cfg->ops->set_ios) |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1216 | ret = mmc->cfg->ops->set_ios(mmc); |
| 1217 | |
| 1218 | return ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1219 | } |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 1220 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1221 | |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1222 | int mmc_set_clock(struct mmc *mmc, uint clock, bool disable) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1223 | { |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 1224 | if (clock > mmc->cfg->f_max) |
| 1225 | clock = mmc->cfg->f_max; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1226 | |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 1227 | if (clock < mmc->cfg->f_min) |
| 1228 | clock = mmc->cfg->f_min; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1229 | |
| 1230 | mmc->clock = clock; |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1231 | mmc->clk_disable = disable; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1232 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1233 | return mmc_set_ios(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1234 | } |
| 1235 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1236 | static int mmc_set_bus_width(struct mmc *mmc, uint width) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1237 | { |
| 1238 | mmc->bus_width = width; |
| 1239 | |
Kishon Vijay Abraham I | 2a4d212 | 2017-09-21 16:29:59 +0200 | [diff] [blame] | 1240 | return mmc_set_ios(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1241 | } |
| 1242 | |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1243 | #if CONFIG_IS_ENABLED(MMC_VERBOSE) || defined(DEBUG) |
| 1244 | /* |
| 1245 | * helper function to display the capabilities in a human |
| 1246 | * friendly manner. The capabilities include bus width and |
| 1247 | * supported modes. |
| 1248 | */ |
| 1249 | void mmc_dump_capabilities(const char *text, uint caps) |
| 1250 | { |
| 1251 | enum bus_mode mode; |
| 1252 | |
| 1253 | printf("%s: widths [", text); |
| 1254 | if (caps & MMC_MODE_8BIT) |
| 1255 | printf("8, "); |
| 1256 | if (caps & MMC_MODE_4BIT) |
| 1257 | printf("4, "); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1258 | if (caps & MMC_MODE_1BIT) |
| 1259 | printf("1, "); |
| 1260 | printf("\b\b] modes ["); |
Jean-Jacques Hiblot | 4c9d2aa | 2017-09-21 16:29:54 +0200 | [diff] [blame] | 1261 | for (mode = MMC_LEGACY; mode < MMC_MODES_END; mode++) |
| 1262 | if (MMC_CAP(mode) & caps) |
| 1263 | printf("%s, ", mmc_mode_name(mode)); |
| 1264 | printf("\b\b]\n"); |
| 1265 | } |
| 1266 | #endif |
| 1267 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1268 | struct mode_width_tuning { |
| 1269 | enum bus_mode mode; |
| 1270 | uint widths; |
| 1271 | }; |
| 1272 | |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 1273 | static int mmc_set_signal_voltage(struct mmc *mmc, uint signal_voltage) |
| 1274 | { |
| 1275 | mmc->signal_voltage = signal_voltage; |
| 1276 | return mmc_set_ios(mmc); |
| 1277 | } |
| 1278 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1279 | static const struct mode_width_tuning sd_modes_by_pref[] = { |
| 1280 | { |
| 1281 | .mode = SD_HS, |
| 1282 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1283 | }, |
| 1284 | { |
| 1285 | .mode = SD_LEGACY, |
| 1286 | .widths = MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1287 | } |
| 1288 | }; |
| 1289 | |
| 1290 | #define for_each_sd_mode_by_pref(caps, mwt) \ |
| 1291 | for (mwt = sd_modes_by_pref;\ |
| 1292 | mwt < sd_modes_by_pref + ARRAY_SIZE(sd_modes_by_pref);\ |
| 1293 | mwt++) \ |
| 1294 | if (caps & MMC_CAP(mwt->mode)) |
| 1295 | |
| 1296 | static int sd_select_mode_and_width(struct mmc *mmc) |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1297 | { |
| 1298 | int err; |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1299 | uint widths[] = {MMC_MODE_4BIT, MMC_MODE_1BIT}; |
| 1300 | const struct mode_width_tuning *mwt; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1301 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1302 | err = sd_get_capabilities(mmc); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1303 | if (err) |
| 1304 | return err; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1305 | /* Restrict card's capabilities by what the host can do */ |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1306 | mmc->card_caps &= (mmc->cfg->host_caps | MMC_MODE_1BIT); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1307 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1308 | for_each_sd_mode_by_pref(mmc->card_caps, mwt) { |
| 1309 | uint *w; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1310 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1311 | for (w = widths; w < widths + ARRAY_SIZE(widths); w++) { |
| 1312 | if (*w & mmc->card_caps & mwt->widths) { |
| 1313 | debug("trying mode %s width %d (at %d MHz)\n", |
| 1314 | mmc_mode_name(mwt->mode), |
| 1315 | bus_width(*w), |
| 1316 | mmc_mode2freq(mmc, mwt->mode) / 1000000); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1317 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1318 | /* configure the bus width (card + host) */ |
| 1319 | err = sd_select_bus_width(mmc, bus_width(*w)); |
| 1320 | if (err) |
| 1321 | goto error; |
| 1322 | mmc_set_bus_width(mmc, bus_width(*w)); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1323 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1324 | /* configure the bus mode (card) */ |
| 1325 | err = sd_set_card_speed(mmc, mwt->mode); |
| 1326 | if (err) |
| 1327 | goto error; |
| 1328 | |
| 1329 | /* configure the bus mode (host) */ |
| 1330 | mmc_select_mode(mmc, mwt->mode); |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1331 | mmc_set_clock(mmc, mmc->tran_speed, false); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1332 | |
| 1333 | err = sd_read_ssr(mmc); |
| 1334 | if (!err) |
| 1335 | return 0; |
| 1336 | |
| 1337 | printf("bad ssr\n"); |
| 1338 | |
| 1339 | error: |
| 1340 | /* revert to a safer bus speed */ |
| 1341 | mmc_select_mode(mmc, SD_LEGACY); |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1342 | mmc_set_clock(mmc, mmc->tran_speed, false); |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1343 | } |
| 1344 | } |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1345 | } |
| 1346 | |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1347 | printf("unable to select a mode\n"); |
| 1348 | return -ENOTSUPP; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1349 | } |
| 1350 | |
Jean-Jacques Hiblot | 7382e69 | 2017-09-21 16:29:52 +0200 | [diff] [blame] | 1351 | /* |
| 1352 | * read the compare the part of ext csd that is constant. |
| 1353 | * This can be used to check that the transfer is working |
| 1354 | * as expected. |
| 1355 | */ |
| 1356 | static int mmc_read_and_compare_ext_csd(struct mmc *mmc) |
| 1357 | { |
| 1358 | int err; |
| 1359 | const u8 *ext_csd = mmc->ext_csd; |
| 1360 | ALLOC_CACHE_ALIGN_BUFFER(u8, test_csd, MMC_MAX_BLOCK_LEN); |
| 1361 | |
| 1362 | err = mmc_send_ext_csd(mmc, test_csd); |
| 1363 | if (err) |
| 1364 | return err; |
| 1365 | |
| 1366 | /* Only compare read only fields */ |
| 1367 | if (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] |
| 1368 | == test_csd[EXT_CSD_PARTITIONING_SUPPORT] && |
| 1369 | ext_csd[EXT_CSD_HC_WP_GRP_SIZE] |
| 1370 | == test_csd[EXT_CSD_HC_WP_GRP_SIZE] && |
| 1371 | ext_csd[EXT_CSD_REV] |
| 1372 | == test_csd[EXT_CSD_REV] && |
| 1373 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] |
| 1374 | == test_csd[EXT_CSD_HC_ERASE_GRP_SIZE] && |
| 1375 | memcmp(&ext_csd[EXT_CSD_SEC_CNT], |
| 1376 | &test_csd[EXT_CSD_SEC_CNT], 4) == 0) |
| 1377 | return 0; |
| 1378 | |
| 1379 | return -EBADMSG; |
| 1380 | } |
| 1381 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1382 | static const struct mode_width_tuning mmc_modes_by_pref[] = { |
| 1383 | { |
| 1384 | .mode = MMC_HS_200, |
| 1385 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT, |
| 1386 | }, |
| 1387 | { |
| 1388 | .mode = MMC_DDR_52, |
| 1389 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT, |
| 1390 | }, |
| 1391 | { |
| 1392 | .mode = MMC_HS_52, |
| 1393 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1394 | }, |
| 1395 | { |
| 1396 | .mode = MMC_HS, |
| 1397 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1398 | }, |
| 1399 | { |
| 1400 | .mode = MMC_LEGACY, |
| 1401 | .widths = MMC_MODE_8BIT | MMC_MODE_4BIT | MMC_MODE_1BIT, |
| 1402 | } |
| 1403 | }; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1404 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1405 | #define for_each_mmc_mode_by_pref(caps, mwt) \ |
| 1406 | for (mwt = mmc_modes_by_pref;\ |
| 1407 | mwt < mmc_modes_by_pref + ARRAY_SIZE(mmc_modes_by_pref);\ |
| 1408 | mwt++) \ |
| 1409 | if (caps & MMC_CAP(mwt->mode)) |
| 1410 | |
| 1411 | static const struct ext_csd_bus_width { |
| 1412 | uint cap; |
| 1413 | bool is_ddr; |
| 1414 | uint ext_csd_bits; |
| 1415 | } ext_csd_bus_width[] = { |
| 1416 | {MMC_MODE_8BIT, true, EXT_CSD_DDR_BUS_WIDTH_8}, |
| 1417 | {MMC_MODE_4BIT, true, EXT_CSD_DDR_BUS_WIDTH_4}, |
| 1418 | {MMC_MODE_8BIT, false, EXT_CSD_BUS_WIDTH_8}, |
| 1419 | {MMC_MODE_4BIT, false, EXT_CSD_BUS_WIDTH_4}, |
| 1420 | {MMC_MODE_1BIT, false, EXT_CSD_BUS_WIDTH_1}, |
| 1421 | }; |
| 1422 | |
| 1423 | #define for_each_supported_width(caps, ddr, ecbv) \ |
| 1424 | for (ecbv = ext_csd_bus_width;\ |
| 1425 | ecbv < ext_csd_bus_width + ARRAY_SIZE(ext_csd_bus_width);\ |
| 1426 | ecbv++) \ |
| 1427 | if ((ddr == ecbv->is_ddr) && (caps & ecbv->cap)) |
| 1428 | |
| 1429 | static int mmc_select_mode_and_width(struct mmc *mmc) |
| 1430 | { |
| 1431 | int err; |
| 1432 | const struct mode_width_tuning *mwt; |
| 1433 | const struct ext_csd_bus_width *ecbw; |
| 1434 | |
| 1435 | err = mmc_get_capabilities(mmc); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1436 | if (err) |
| 1437 | return err; |
| 1438 | |
| 1439 | /* Restrict card's capabilities by what the host can do */ |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1440 | mmc->card_caps &= (mmc->cfg->host_caps | MMC_MODE_1BIT); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1441 | |
| 1442 | /* Only version 4 of MMC supports wider bus widths */ |
| 1443 | if (mmc->version < MMC_VERSION_4) |
| 1444 | return 0; |
| 1445 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1446 | if (!mmc->ext_csd) { |
| 1447 | debug("No ext_csd found!\n"); /* this should enver happen */ |
| 1448 | return -ENOTSUPP; |
| 1449 | } |
| 1450 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1451 | for_each_mmc_mode_by_pref(mmc->card_caps, mwt) { |
| 1452 | for_each_supported_width(mmc->card_caps & mwt->widths, |
| 1453 | mmc_is_mode_ddr(mwt->mode), ecbw) { |
| 1454 | debug("trying mode %s width %d (at %d MHz)\n", |
| 1455 | mmc_mode_name(mwt->mode), |
| 1456 | bus_width(ecbw->cap), |
| 1457 | mmc_mode2freq(mmc, mwt->mode) / 1000000); |
| 1458 | /* configure the bus width (card + host) */ |
| 1459 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1460 | EXT_CSD_BUS_WIDTH, |
| 1461 | ecbw->ext_csd_bits & ~EXT_CSD_DDR_FLAG); |
| 1462 | if (err) |
| 1463 | goto error; |
| 1464 | mmc_set_bus_width(mmc, bus_width(ecbw->cap)); |
| 1465 | |
| 1466 | /* configure the bus speed (card) */ |
| 1467 | err = mmc_set_card_speed(mmc, mwt->mode); |
| 1468 | if (err) |
| 1469 | goto error; |
| 1470 | |
| 1471 | /* |
| 1472 | * configure the bus width AND the ddr mode (card) |
| 1473 | * The host side will be taken care of in the next step |
| 1474 | */ |
| 1475 | if (ecbw->ext_csd_bits & EXT_CSD_DDR_FLAG) { |
| 1476 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1477 | EXT_CSD_BUS_WIDTH, |
| 1478 | ecbw->ext_csd_bits); |
| 1479 | if (err) |
| 1480 | goto error; |
| 1481 | } |
| 1482 | |
| 1483 | /* configure the bus mode (host) */ |
| 1484 | mmc_select_mode(mmc, mwt->mode); |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1485 | mmc_set_clock(mmc, mmc->tran_speed, false); |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1486 | |
| 1487 | /* do a transfer to check the configuration */ |
| 1488 | err = mmc_read_and_compare_ext_csd(mmc); |
| 1489 | if (!err) |
| 1490 | return 0; |
| 1491 | error: |
| 1492 | /* if an error occured, revert to a safer bus mode */ |
| 1493 | mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1494 | EXT_CSD_BUS_WIDTH, EXT_CSD_BUS_WIDTH_1); |
| 1495 | mmc_select_mode(mmc, MMC_LEGACY); |
| 1496 | mmc_set_bus_width(mmc, 1); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1497 | } |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1498 | } |
| 1499 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1500 | printf("unable to select a mode\n"); |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1501 | |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1502 | return -ENOTSUPP; |
Jean-Jacques Hiblot | 8ac8a26 | 2017-09-21 16:29:49 +0200 | [diff] [blame] | 1503 | } |
| 1504 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1505 | static int mmc_startup_v4(struct mmc *mmc) |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 1506 | { |
| 1507 | int err, i; |
| 1508 | u64 capacity; |
| 1509 | bool has_parts = false; |
| 1510 | bool part_completed; |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1511 | u8 *ext_csd; |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 1512 | |
| 1513 | if (IS_SD(mmc) || (mmc->version < MMC_VERSION_4)) |
| 1514 | return 0; |
| 1515 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1516 | ext_csd = malloc_cache_aligned(MMC_MAX_BLOCK_LEN); |
| 1517 | if (!ext_csd) |
| 1518 | return -ENOMEM; |
| 1519 | |
| 1520 | mmc->ext_csd = ext_csd; |
| 1521 | |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 1522 | /* check ext_csd version and capacity */ |
| 1523 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 1524 | if (err) |
| 1525 | return err; |
| 1526 | if (ext_csd[EXT_CSD_REV] >= 2) { |
| 1527 | /* |
| 1528 | * According to the JEDEC Standard, the value of |
| 1529 | * ext_csd's capacity is valid if the value is more |
| 1530 | * than 2GB |
| 1531 | */ |
| 1532 | capacity = ext_csd[EXT_CSD_SEC_CNT] << 0 |
| 1533 | | ext_csd[EXT_CSD_SEC_CNT + 1] << 8 |
| 1534 | | ext_csd[EXT_CSD_SEC_CNT + 2] << 16 |
| 1535 | | ext_csd[EXT_CSD_SEC_CNT + 3] << 24; |
| 1536 | capacity *= MMC_MAX_BLOCK_LEN; |
| 1537 | if ((capacity >> 20) > 2 * 1024) |
| 1538 | mmc->capacity_user = capacity; |
| 1539 | } |
| 1540 | |
| 1541 | switch (ext_csd[EXT_CSD_REV]) { |
| 1542 | case 1: |
| 1543 | mmc->version = MMC_VERSION_4_1; |
| 1544 | break; |
| 1545 | case 2: |
| 1546 | mmc->version = MMC_VERSION_4_2; |
| 1547 | break; |
| 1548 | case 3: |
| 1549 | mmc->version = MMC_VERSION_4_3; |
| 1550 | break; |
| 1551 | case 5: |
| 1552 | mmc->version = MMC_VERSION_4_41; |
| 1553 | break; |
| 1554 | case 6: |
| 1555 | mmc->version = MMC_VERSION_4_5; |
| 1556 | break; |
| 1557 | case 7: |
| 1558 | mmc->version = MMC_VERSION_5_0; |
| 1559 | break; |
| 1560 | case 8: |
| 1561 | mmc->version = MMC_VERSION_5_1; |
| 1562 | break; |
| 1563 | } |
| 1564 | |
| 1565 | /* The partition data may be non-zero but it is only |
| 1566 | * effective if PARTITION_SETTING_COMPLETED is set in |
| 1567 | * EXT_CSD, so ignore any data if this bit is not set, |
| 1568 | * except for enabling the high-capacity group size |
| 1569 | * definition (see below). |
| 1570 | */ |
| 1571 | part_completed = !!(ext_csd[EXT_CSD_PARTITION_SETTING] & |
| 1572 | EXT_CSD_PARTITION_SETTING_COMPLETED); |
| 1573 | |
| 1574 | /* store the partition info of emmc */ |
| 1575 | mmc->part_support = ext_csd[EXT_CSD_PARTITIONING_SUPPORT]; |
| 1576 | if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) || |
| 1577 | ext_csd[EXT_CSD_BOOT_MULT]) |
| 1578 | mmc->part_config = ext_csd[EXT_CSD_PART_CONF]; |
| 1579 | if (part_completed && |
| 1580 | (ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & ENHNCD_SUPPORT)) |
| 1581 | mmc->part_attr = ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE]; |
| 1582 | |
| 1583 | mmc->capacity_boot = ext_csd[EXT_CSD_BOOT_MULT] << 17; |
| 1584 | |
| 1585 | mmc->capacity_rpmb = ext_csd[EXT_CSD_RPMB_MULT] << 17; |
| 1586 | |
| 1587 | for (i = 0; i < 4; i++) { |
| 1588 | int idx = EXT_CSD_GP_SIZE_MULT + i * 3; |
| 1589 | uint mult = (ext_csd[idx + 2] << 16) + |
| 1590 | (ext_csd[idx + 1] << 8) + ext_csd[idx]; |
| 1591 | if (mult) |
| 1592 | has_parts = true; |
| 1593 | if (!part_completed) |
| 1594 | continue; |
| 1595 | mmc->capacity_gp[i] = mult; |
| 1596 | mmc->capacity_gp[i] *= |
| 1597 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]; |
| 1598 | mmc->capacity_gp[i] *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
| 1599 | mmc->capacity_gp[i] <<= 19; |
| 1600 | } |
| 1601 | |
| 1602 | if (part_completed) { |
| 1603 | mmc->enh_user_size = |
| 1604 | (ext_csd[EXT_CSD_ENH_SIZE_MULT + 2] << 16) + |
| 1605 | (ext_csd[EXT_CSD_ENH_SIZE_MULT + 1] << 8) + |
| 1606 | ext_csd[EXT_CSD_ENH_SIZE_MULT]; |
| 1607 | mmc->enh_user_size *= ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE]; |
| 1608 | mmc->enh_user_size *= ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
| 1609 | mmc->enh_user_size <<= 19; |
| 1610 | mmc->enh_user_start = |
| 1611 | (ext_csd[EXT_CSD_ENH_START_ADDR + 3] << 24) + |
| 1612 | (ext_csd[EXT_CSD_ENH_START_ADDR + 2] << 16) + |
| 1613 | (ext_csd[EXT_CSD_ENH_START_ADDR + 1] << 8) + |
| 1614 | ext_csd[EXT_CSD_ENH_START_ADDR]; |
| 1615 | if (mmc->high_capacity) |
| 1616 | mmc->enh_user_start <<= 9; |
| 1617 | } |
| 1618 | |
| 1619 | /* |
| 1620 | * Host needs to enable ERASE_GRP_DEF bit if device is |
| 1621 | * partitioned. This bit will be lost every time after a reset |
| 1622 | * or power off. This will affect erase size. |
| 1623 | */ |
| 1624 | if (part_completed) |
| 1625 | has_parts = true; |
| 1626 | if ((ext_csd[EXT_CSD_PARTITIONING_SUPPORT] & PART_SUPPORT) && |
| 1627 | (ext_csd[EXT_CSD_PARTITIONS_ATTRIBUTE] & PART_ENH_ATTRIB)) |
| 1628 | has_parts = true; |
| 1629 | if (has_parts) { |
| 1630 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, |
| 1631 | EXT_CSD_ERASE_GROUP_DEF, 1); |
| 1632 | |
| 1633 | if (err) |
| 1634 | return err; |
| 1635 | |
| 1636 | ext_csd[EXT_CSD_ERASE_GROUP_DEF] = 1; |
| 1637 | } |
| 1638 | |
| 1639 | if (ext_csd[EXT_CSD_ERASE_GROUP_DEF] & 0x01) { |
| 1640 | /* Read out group size from ext_csd */ |
| 1641 | mmc->erase_grp_size = |
| 1642 | ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] * 1024; |
| 1643 | /* |
| 1644 | * if high capacity and partition setting completed |
| 1645 | * SEC_COUNT is valid even if it is smaller than 2 GiB |
| 1646 | * JEDEC Standard JESD84-B45, 6.2.4 |
| 1647 | */ |
| 1648 | if (mmc->high_capacity && part_completed) { |
| 1649 | capacity = (ext_csd[EXT_CSD_SEC_CNT]) | |
| 1650 | (ext_csd[EXT_CSD_SEC_CNT + 1] << 8) | |
| 1651 | (ext_csd[EXT_CSD_SEC_CNT + 2] << 16) | |
| 1652 | (ext_csd[EXT_CSD_SEC_CNT + 3] << 24); |
| 1653 | capacity *= MMC_MAX_BLOCK_LEN; |
| 1654 | mmc->capacity_user = capacity; |
| 1655 | } |
| 1656 | } else { |
| 1657 | /* Calculate the group size from the csd value. */ |
| 1658 | int erase_gsz, erase_gmul; |
| 1659 | |
| 1660 | erase_gsz = (mmc->csd[2] & 0x00007c00) >> 10; |
| 1661 | erase_gmul = (mmc->csd[2] & 0x000003e0) >> 5; |
| 1662 | mmc->erase_grp_size = (erase_gsz + 1) |
| 1663 | * (erase_gmul + 1); |
| 1664 | } |
| 1665 | |
| 1666 | mmc->hc_wp_grp_size = 1024 |
| 1667 | * ext_csd[EXT_CSD_HC_ERASE_GRP_SIZE] |
| 1668 | * ext_csd[EXT_CSD_HC_WP_GRP_SIZE]; |
| 1669 | |
| 1670 | mmc->wr_rel_set = ext_csd[EXT_CSD_WR_REL_SET]; |
| 1671 | |
| 1672 | return 0; |
| 1673 | } |
| 1674 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 1675 | static int mmc_startup(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1676 | { |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 1677 | int err, i; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1678 | uint mult, freq; |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 1679 | u64 cmult, csize; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1680 | struct mmc_cmd cmd; |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1681 | struct blk_desc *bdesc; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1682 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1683 | #ifdef CONFIG_MMC_SPI_CRC_ON |
| 1684 | if (mmc_host_is_spi(mmc)) { /* enable CRC check for spi */ |
| 1685 | cmd.cmdidx = MMC_CMD_SPI_CRC_ON_OFF; |
| 1686 | cmd.resp_type = MMC_RSP_R1; |
| 1687 | cmd.cmdarg = 1; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1688 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1689 | |
| 1690 | if (err) |
| 1691 | return err; |
| 1692 | } |
| 1693 | #endif |
| 1694 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1695 | /* Put the Card in Identify Mode */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1696 | cmd.cmdidx = mmc_host_is_spi(mmc) ? MMC_CMD_SEND_CID : |
| 1697 | MMC_CMD_ALL_SEND_CID; /* cmd not supported in spi */ |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1698 | cmd.resp_type = MMC_RSP_R2; |
| 1699 | cmd.cmdarg = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1700 | |
| 1701 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1702 | |
| 1703 | if (err) |
| 1704 | return err; |
| 1705 | |
| 1706 | memcpy(mmc->cid, cmd.response, 16); |
| 1707 | |
| 1708 | /* |
| 1709 | * For MMC cards, set the Relative Address. |
| 1710 | * For SD cards, get the Relatvie Address. |
| 1711 | * This also puts the cards into Standby State |
| 1712 | */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1713 | if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */ |
| 1714 | cmd.cmdidx = SD_CMD_SEND_RELATIVE_ADDR; |
| 1715 | cmd.cmdarg = mmc->rca << 16; |
| 1716 | cmd.resp_type = MMC_RSP_R6; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1717 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1718 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1719 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1720 | if (err) |
| 1721 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1722 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1723 | if (IS_SD(mmc)) |
| 1724 | mmc->rca = (cmd.response[0] >> 16) & 0xffff; |
| 1725 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1726 | |
| 1727 | /* Get the Card-Specific Data */ |
| 1728 | cmd.cmdidx = MMC_CMD_SEND_CSD; |
| 1729 | cmd.resp_type = MMC_RSP_R2; |
| 1730 | cmd.cmdarg = mmc->rca << 16; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1731 | |
| 1732 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1733 | |
| 1734 | if (err) |
| 1735 | return err; |
| 1736 | |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 1737 | mmc->csd[0] = cmd.response[0]; |
| 1738 | mmc->csd[1] = cmd.response[1]; |
| 1739 | mmc->csd[2] = cmd.response[2]; |
| 1740 | mmc->csd[3] = cmd.response[3]; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1741 | |
| 1742 | if (mmc->version == MMC_VERSION_UNKNOWN) { |
Rabin Vincent | 0b453ff | 2009-04-05 13:30:55 +0530 | [diff] [blame] | 1743 | int version = (cmd.response[0] >> 26) & 0xf; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1744 | |
| 1745 | switch (version) { |
Bin Meng | 53e8e40 | 2016-03-17 21:53:13 -0700 | [diff] [blame] | 1746 | case 0: |
| 1747 | mmc->version = MMC_VERSION_1_2; |
| 1748 | break; |
| 1749 | case 1: |
| 1750 | mmc->version = MMC_VERSION_1_4; |
| 1751 | break; |
| 1752 | case 2: |
| 1753 | mmc->version = MMC_VERSION_2_2; |
| 1754 | break; |
| 1755 | case 3: |
| 1756 | mmc->version = MMC_VERSION_3; |
| 1757 | break; |
| 1758 | case 4: |
| 1759 | mmc->version = MMC_VERSION_4; |
| 1760 | break; |
| 1761 | default: |
| 1762 | mmc->version = MMC_VERSION_1_2; |
| 1763 | break; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1764 | } |
| 1765 | } |
| 1766 | |
| 1767 | /* divide frequency by 10, since the mults are 10x bigger */ |
Rabin Vincent | 0b453ff | 2009-04-05 13:30:55 +0530 | [diff] [blame] | 1768 | freq = fbase[(cmd.response[0] & 0x7)]; |
| 1769 | mult = multipliers[((cmd.response[0] >> 3) & 0xf)]; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1770 | |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 1771 | mmc->legacy_speed = freq * mult; |
Jean-Jacques Hiblot | 35f9e19 | 2017-09-21 16:29:53 +0200 | [diff] [blame] | 1772 | mmc_select_mode(mmc, MMC_LEGACY); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1773 | |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 1774 | mmc->dsr_imp = ((cmd.response[1] >> 12) & 0x1); |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 1775 | mmc->read_bl_len = 1 << ((cmd.response[1] >> 16) & 0xf); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1776 | |
| 1777 | if (IS_SD(mmc)) |
| 1778 | mmc->write_bl_len = mmc->read_bl_len; |
| 1779 | else |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 1780 | mmc->write_bl_len = 1 << ((cmd.response[3] >> 22) & 0xf); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1781 | |
| 1782 | if (mmc->high_capacity) { |
| 1783 | csize = (mmc->csd[1] & 0x3f) << 16 |
| 1784 | | (mmc->csd[2] & 0xffff0000) >> 16; |
| 1785 | cmult = 8; |
| 1786 | } else { |
| 1787 | csize = (mmc->csd[1] & 0x3ff) << 2 |
| 1788 | | (mmc->csd[2] & 0xc0000000) >> 30; |
| 1789 | cmult = (mmc->csd[2] & 0x00038000) >> 15; |
| 1790 | } |
| 1791 | |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 1792 | mmc->capacity_user = (csize + 1) << (cmult + 2); |
| 1793 | mmc->capacity_user *= mmc->read_bl_len; |
| 1794 | mmc->capacity_boot = 0; |
| 1795 | mmc->capacity_rpmb = 0; |
| 1796 | for (i = 0; i < 4; i++) |
| 1797 | mmc->capacity_gp[i] = 0; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1798 | |
Simon Glass | 8bfa195 | 2013-04-03 08:54:30 +0000 | [diff] [blame] | 1799 | if (mmc->read_bl_len > MMC_MAX_BLOCK_LEN) |
| 1800 | mmc->read_bl_len = MMC_MAX_BLOCK_LEN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1801 | |
Simon Glass | 8bfa195 | 2013-04-03 08:54:30 +0000 | [diff] [blame] | 1802 | if (mmc->write_bl_len > MMC_MAX_BLOCK_LEN) |
| 1803 | mmc->write_bl_len = MMC_MAX_BLOCK_LEN; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1804 | |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 1805 | if ((mmc->dsr_imp) && (0xffffffff != mmc->dsr)) { |
| 1806 | cmd.cmdidx = MMC_CMD_SET_DSR; |
| 1807 | cmd.cmdarg = (mmc->dsr & 0xffff) << 16; |
| 1808 | cmd.resp_type = MMC_RSP_NONE; |
| 1809 | if (mmc_send_cmd(mmc, &cmd, NULL)) |
| 1810 | printf("MMC: SET_DSR failed\n"); |
| 1811 | } |
| 1812 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1813 | /* Select the card, and put it into Transfer Mode */ |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1814 | if (!mmc_host_is_spi(mmc)) { /* cmd not supported in spi */ |
| 1815 | cmd.cmdidx = MMC_CMD_SELECT_CARD; |
Ajay Bhargav | fe8f706 | 2011-10-05 03:13:23 +0000 | [diff] [blame] | 1816 | cmd.resp_type = MMC_RSP_R1; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1817 | cmd.cmdarg = mmc->rca << 16; |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1818 | err = mmc_send_cmd(mmc, &cmd, NULL); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1819 | |
Thomas Chou | d52ebf1 | 2010-12-24 13:12:21 +0000 | [diff] [blame] | 1820 | if (err) |
| 1821 | return err; |
| 1822 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1823 | |
Lei Wen | e6f99a5 | 2011-06-22 17:03:31 +0000 | [diff] [blame] | 1824 | /* |
| 1825 | * For SD, its erase group is always one sector |
| 1826 | */ |
| 1827 | mmc->erase_grp_size = 1; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 1828 | mmc->part_config = MMCPART_NOAVAILABLE; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 1829 | |
Jean-Jacques Hiblot | dfda9d8 | 2017-09-21 16:29:51 +0200 | [diff] [blame] | 1830 | err = mmc_startup_v4(mmc); |
Jean-Jacques Hiblot | c744b6f | 2017-09-21 16:29:50 +0200 | [diff] [blame] | 1831 | if (err) |
| 1832 | return err; |
Sukumar Ghorai | d23e2c0 | 2010-09-20 18:29:29 +0530 | [diff] [blame] | 1833 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1834 | err = mmc_set_capacity(mmc, mmc_get_blk_desc(mmc)->hwpart); |
Stephen Warren | f866a46 | 2013-06-11 15:14:01 -0600 | [diff] [blame] | 1835 | if (err) |
| 1836 | return err; |
| 1837 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1838 | if (IS_SD(mmc)) |
Jean-Jacques Hiblot | d0c221f | 2017-09-21 16:29:57 +0200 | [diff] [blame] | 1839 | err = sd_select_mode_and_width(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1840 | else |
Jean-Jacques Hiblot | 3862b85 | 2017-09-21 16:29:58 +0200 | [diff] [blame] | 1841 | err = mmc_select_mode_and_width(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1842 | |
| 1843 | if (err) |
| 1844 | return err; |
| 1845 | |
Jaehoon Chung | ad5fd92 | 2012-03-26 21:16:03 +0000 | [diff] [blame] | 1846 | |
Andrew Gabbasov | 5af8f45 | 2014-12-01 06:59:11 -0600 | [diff] [blame] | 1847 | /* Fix the block length for DDR mode */ |
| 1848 | if (mmc->ddr_mode) { |
| 1849 | mmc->read_bl_len = MMC_MAX_BLOCK_LEN; |
| 1850 | mmc->write_bl_len = MMC_MAX_BLOCK_LEN; |
| 1851 | } |
| 1852 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1853 | /* fill in device description */ |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1854 | bdesc = mmc_get_blk_desc(mmc); |
| 1855 | bdesc->lun = 0; |
| 1856 | bdesc->hwpart = 0; |
| 1857 | bdesc->type = 0; |
| 1858 | bdesc->blksz = mmc->read_bl_len; |
| 1859 | bdesc->log2blksz = LOG2(bdesc->blksz); |
| 1860 | bdesc->lba = lldiv(mmc->capacity, mmc->read_bl_len); |
Sjoerd Simons | fc011f6 | 2015-12-04 23:27:40 +0100 | [diff] [blame] | 1861 | #if !defined(CONFIG_SPL_BUILD) || \ |
| 1862 | (defined(CONFIG_SPL_LIBCOMMON_SUPPORT) && \ |
| 1863 | !defined(CONFIG_USE_TINY_PRINTF)) |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1864 | sprintf(bdesc->vendor, "Man %06x Snr %04x%04x", |
Taylor Hutt | babce5f | 2012-10-20 17:15:59 +0000 | [diff] [blame] | 1865 | mmc->cid[0] >> 24, (mmc->cid[2] & 0xffff), |
| 1866 | (mmc->cid[3] >> 16) & 0xffff); |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1867 | sprintf(bdesc->product, "%c%c%c%c%c%c", mmc->cid[0] & 0xff, |
Taylor Hutt | babce5f | 2012-10-20 17:15:59 +0000 | [diff] [blame] | 1868 | (mmc->cid[1] >> 24), (mmc->cid[1] >> 16) & 0xff, |
| 1869 | (mmc->cid[1] >> 8) & 0xff, mmc->cid[1] & 0xff, |
| 1870 | (mmc->cid[2] >> 24) & 0xff); |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1871 | sprintf(bdesc->revision, "%d.%d", (mmc->cid[2] >> 20) & 0xf, |
Taylor Hutt | babce5f | 2012-10-20 17:15:59 +0000 | [diff] [blame] | 1872 | (mmc->cid[2] >> 16) & 0xf); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 1873 | #else |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1874 | bdesc->vendor[0] = 0; |
| 1875 | bdesc->product[0] = 0; |
| 1876 | bdesc->revision[0] = 0; |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 1877 | #endif |
Mikhail Kshevetskiy | 122efd4 | 2012-07-09 08:53:38 +0000 | [diff] [blame] | 1878 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBDISK_SUPPORT) |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 1879 | part_init(bdesc); |
Mikhail Kshevetskiy | 122efd4 | 2012-07-09 08:53:38 +0000 | [diff] [blame] | 1880 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1881 | |
| 1882 | return 0; |
| 1883 | } |
| 1884 | |
Kim Phillips | fdbb873 | 2012-10-29 13:34:43 +0000 | [diff] [blame] | 1885 | static int mmc_send_if_cond(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1886 | { |
| 1887 | struct mmc_cmd cmd; |
| 1888 | int err; |
| 1889 | |
| 1890 | cmd.cmdidx = SD_CMD_SEND_IF_COND; |
| 1891 | /* We set the bit if the host supports voltages between 2.7 and 3.6 V */ |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 1892 | cmd.cmdarg = ((mmc->cfg->voltages & 0xff8000) != 0) << 8 | 0xaa; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1893 | cmd.resp_type = MMC_RSP_R7; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1894 | |
| 1895 | err = mmc_send_cmd(mmc, &cmd, NULL); |
| 1896 | |
| 1897 | if (err) |
| 1898 | return err; |
| 1899 | |
Rabin Vincent | 998be3d | 2009-04-05 13:30:56 +0530 | [diff] [blame] | 1900 | if ((cmd.response[0] & 0xff) != 0xaa) |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 1901 | return -EOPNOTSUPP; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 1902 | else |
| 1903 | mmc->version = SD_VERSION_2; |
| 1904 | |
| 1905 | return 0; |
| 1906 | } |
| 1907 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 1908 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Paul Kocialkowski | 95de9ab | 2014-11-08 20:55:45 +0100 | [diff] [blame] | 1909 | /* board-specific MMC power initializations. */ |
| 1910 | __weak void board_mmc_power_init(void) |
| 1911 | { |
| 1912 | } |
Simon Glass | 05cbeb7 | 2017-04-22 19:10:56 -0600 | [diff] [blame] | 1913 | #endif |
Paul Kocialkowski | 95de9ab | 2014-11-08 20:55:45 +0100 | [diff] [blame] | 1914 | |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 1915 | static int mmc_power_init(struct mmc *mmc) |
| 1916 | { |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 1917 | #if CONFIG_IS_ENABLED(DM_MMC) |
Jean-Jacques Hiblot | 06ec045 | 2017-09-21 16:29:48 +0200 | [diff] [blame] | 1918 | #if CONFIG_IS_ENABLED(DM_REGULATOR) |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 1919 | int ret; |
| 1920 | |
| 1921 | ret = device_get_supply_regulator(mmc->dev, "vmmc-supply", |
Jean-Jacques Hiblot | 06ec045 | 2017-09-21 16:29:48 +0200 | [diff] [blame] | 1922 | &mmc->vmmc_supply); |
| 1923 | if (ret) |
Jaehoon Chung | 288db7c | 2016-10-24 15:22:22 +0900 | [diff] [blame] | 1924 | debug("%s: No vmmc supply\n", mmc->dev->name); |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 1925 | |
Jean-Jacques Hiblot | 06ec045 | 2017-09-21 16:29:48 +0200 | [diff] [blame] | 1926 | ret = device_get_supply_regulator(mmc->dev, "vqmmc-supply", |
| 1927 | &mmc->vqmmc_supply); |
| 1928 | if (ret) |
| 1929 | debug("%s: No vqmmc supply\n", mmc->dev->name); |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 1930 | #endif |
Simon Glass | 05cbeb7 | 2017-04-22 19:10:56 -0600 | [diff] [blame] | 1931 | #else /* !CONFIG_DM_MMC */ |
| 1932 | /* |
| 1933 | * Driver model should use a regulator, as above, rather than calling |
| 1934 | * out to board code. |
| 1935 | */ |
| 1936 | board_mmc_power_init(); |
| 1937 | #endif |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 1938 | return 0; |
| 1939 | } |
| 1940 | |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 1941 | /* |
| 1942 | * put the host in the initial state: |
| 1943 | * - turn on Vdd (card power supply) |
| 1944 | * - configure the bus width and clock to minimal values |
| 1945 | */ |
| 1946 | static void mmc_set_initial_state(struct mmc *mmc) |
| 1947 | { |
| 1948 | int err; |
| 1949 | |
| 1950 | /* First try to set 3.3V. If it fails set to 1.8V */ |
| 1951 | err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_330); |
| 1952 | if (err != 0) |
| 1953 | err = mmc_set_signal_voltage(mmc, MMC_SIGNAL_VOLTAGE_180); |
| 1954 | if (err != 0) |
| 1955 | printf("mmc: failed to set signal voltage\n"); |
| 1956 | |
| 1957 | mmc_select_mode(mmc, MMC_LEGACY); |
| 1958 | mmc_set_bus_width(mmc, 1); |
Kishon Vijay Abraham I | 35f6782 | 2017-09-21 16:30:03 +0200 | [diff] [blame] | 1959 | mmc_set_clock(mmc, 0, false); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 1960 | } |
| 1961 | |
| 1962 | static int mmc_power_on(struct mmc *mmc) |
| 1963 | { |
| 1964 | #if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR) |
| 1965 | if (mmc->vmmc_supply) { |
| 1966 | int ret = regulator_set_enable(mmc->vmmc_supply, true); |
| 1967 | |
| 1968 | if (ret) { |
| 1969 | puts("Error enabling VMMC supply\n"); |
| 1970 | return ret; |
| 1971 | } |
| 1972 | } |
| 1973 | #endif |
| 1974 | return 0; |
| 1975 | } |
| 1976 | |
| 1977 | static int mmc_power_off(struct mmc *mmc) |
| 1978 | { |
Kishon Vijay Abraham I | 2e7410d | 2017-09-21 16:30:04 +0200 | [diff] [blame] | 1979 | mmc_set_clock(mmc, 1, true); |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 1980 | #if CONFIG_IS_ENABLED(DM_MMC) && CONFIG_IS_ENABLED(DM_REGULATOR) |
| 1981 | if (mmc->vmmc_supply) { |
| 1982 | int ret = regulator_set_enable(mmc->vmmc_supply, false); |
| 1983 | |
| 1984 | if (ret) { |
| 1985 | puts("Error disabling VMMC supply\n"); |
| 1986 | return ret; |
| 1987 | } |
| 1988 | } |
| 1989 | #endif |
| 1990 | return 0; |
| 1991 | } |
| 1992 | |
| 1993 | static int mmc_power_cycle(struct mmc *mmc) |
| 1994 | { |
| 1995 | int ret; |
| 1996 | |
| 1997 | ret = mmc_power_off(mmc); |
| 1998 | if (ret) |
| 1999 | return ret; |
| 2000 | /* |
| 2001 | * SD spec recommends at least 1ms of delay. Let's wait for 2ms |
| 2002 | * to be on the safer side. |
| 2003 | */ |
| 2004 | udelay(2000); |
| 2005 | return mmc_power_on(mmc); |
| 2006 | } |
| 2007 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2008 | int mmc_start_init(struct mmc *mmc) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2009 | { |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2010 | bool no_card; |
Macpaul Lin | afd5932 | 2011-11-14 23:35:39 +0000 | [diff] [blame] | 2011 | int err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2012 | |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 2013 | /* we pretend there's no card when init is NULL */ |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2014 | no_card = mmc_getcd(mmc) == 0; |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 2015 | #if !CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2016 | no_card = no_card || (mmc->cfg->ops->init == NULL); |
| 2017 | #endif |
| 2018 | if (no_card) { |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 2019 | mmc->has_init = 0; |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2020 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 2021 | printf("MMC: no card present\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2022 | #endif |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 2023 | return -ENOMEDIUM; |
Thierry Reding | 48972d9 | 2012-01-02 01:15:37 +0000 | [diff] [blame] | 2024 | } |
| 2025 | |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2026 | if (mmc->has_init) |
| 2027 | return 0; |
| 2028 | |
Yangbo Lu | 5a8dbdc | 2015-04-22 13:57:00 +0800 | [diff] [blame] | 2029 | #ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT |
| 2030 | mmc_adapter_card_type_ident(); |
| 2031 | #endif |
Peng Fan | 2051aef | 2016-10-11 15:08:43 +0800 | [diff] [blame] | 2032 | err = mmc_power_init(mmc); |
| 2033 | if (err) |
| 2034 | return err; |
Paul Kocialkowski | 95de9ab | 2014-11-08 20:55:45 +0100 | [diff] [blame] | 2035 | |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2036 | err = mmc_power_on(mmc); |
| 2037 | if (err) |
| 2038 | return err; |
| 2039 | |
Simon Glass | e7881d8 | 2017-07-29 11:35:31 -0600 | [diff] [blame] | 2040 | #if CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2041 | /* The device has already been probed ready for use */ |
| 2042 | #else |
Pantelis Antoniou | ab769f2 | 2014-02-26 19:28:45 +0200 | [diff] [blame] | 2043 | /* made sure it's not NULL earlier */ |
Pantelis Antoniou | 93bfd61 | 2014-03-11 19:34:20 +0200 | [diff] [blame] | 2044 | err = mmc->cfg->ops->init(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2045 | if (err) |
| 2046 | return err; |
Simon Glass | 8ca51e5 | 2016-06-12 23:30:22 -0600 | [diff] [blame] | 2047 | #endif |
Andrew Gabbasov | 786e8f8 | 2014-12-01 06:59:09 -0600 | [diff] [blame] | 2048 | mmc->ddr_mode = 0; |
Kishon Vijay Abraham I | aff5d3c | 2017-09-21 16:30:00 +0200 | [diff] [blame] | 2049 | |
Kishon Vijay Abraham I | fb7c3be | 2017-09-21 16:30:02 +0200 | [diff] [blame] | 2050 | mmc_set_initial_state(mmc); |
Jean-Jacques Hiblot | 318a7a5 | 2017-09-21 16:30:01 +0200 | [diff] [blame] | 2051 | mmc_send_init_stream(mmc); |
| 2052 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2053 | /* Reset the Card */ |
| 2054 | err = mmc_go_idle(mmc); |
| 2055 | |
| 2056 | if (err) |
| 2057 | return err; |
| 2058 | |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2059 | /* The internal partition reset to user partition(0) at every CMD0*/ |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2060 | mmc_get_blk_desc(mmc)->hwpart = 0; |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2061 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2062 | /* Test for SD version 2 */ |
Macpaul Lin | afd5932 | 2011-11-14 23:35:39 +0000 | [diff] [blame] | 2063 | err = mmc_send_if_cond(mmc); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2064 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2065 | /* Now try to get the SD card's operating condition */ |
| 2066 | err = sd_send_op_cond(mmc); |
| 2067 | |
| 2068 | /* If the command timed out, we check for an MMC card */ |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 2069 | if (err == -ETIMEDOUT) { |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2070 | err = mmc_send_op_cond(mmc); |
| 2071 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2072 | if (err) { |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2073 | #if !defined(CONFIG_SPL_BUILD) || defined(CONFIG_SPL_LIBCOMMON_SUPPORT) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2074 | printf("Card did not respond to voltage select!\n"); |
Paul Burton | 5619682 | 2013-09-04 16:12:25 +0100 | [diff] [blame] | 2075 | #endif |
Jaehoon Chung | 915ffa5 | 2016-07-19 16:33:36 +0900 | [diff] [blame] | 2076 | return -EOPNOTSUPP; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2077 | } |
| 2078 | } |
| 2079 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2080 | if (!err) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2081 | mmc->init_in_progress = 1; |
| 2082 | |
| 2083 | return err; |
| 2084 | } |
| 2085 | |
| 2086 | static int mmc_complete_init(struct mmc *mmc) |
| 2087 | { |
| 2088 | int err = 0; |
| 2089 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2090 | mmc->init_in_progress = 0; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2091 | if (mmc->op_cond_pending) |
| 2092 | err = mmc_complete_op_cond(mmc); |
| 2093 | |
| 2094 | if (!err) |
| 2095 | err = mmc_startup(mmc); |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2096 | if (err) |
| 2097 | mmc->has_init = 0; |
| 2098 | else |
| 2099 | mmc->has_init = 1; |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2100 | return err; |
| 2101 | } |
| 2102 | |
| 2103 | int mmc_init(struct mmc *mmc) |
| 2104 | { |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2105 | int err = 0; |
Marek Vasut | ce9eca9 | 2016-12-01 02:06:32 +0100 | [diff] [blame] | 2106 | __maybe_unused unsigned start; |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2107 | #if CONFIG_IS_ENABLED(DM_MMC) |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 2108 | struct mmc_uclass_priv *upriv = dev_get_uclass_priv(mmc->dev); |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2109 | |
Simon Glass | 33fb211 | 2016-05-01 13:52:41 -0600 | [diff] [blame] | 2110 | upriv->mmc = mmc; |
| 2111 | #endif |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2112 | if (mmc->has_init) |
| 2113 | return 0; |
Mateusz Zalega | d803fea | 2014-04-29 20:15:30 +0200 | [diff] [blame] | 2114 | |
| 2115 | start = get_timer(0); |
| 2116 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2117 | if (!mmc->init_in_progress) |
| 2118 | err = mmc_start_init(mmc); |
| 2119 | |
Andrew Gabbasov | bd47c13 | 2015-03-19 07:44:07 -0500 | [diff] [blame] | 2120 | if (!err) |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2121 | err = mmc_complete_init(mmc); |
Jagan Teki | 919b485 | 2017-01-10 11:18:43 +0100 | [diff] [blame] | 2122 | if (err) |
| 2123 | printf("%s: %d, time %lu\n", __func__, err, get_timer(start)); |
| 2124 | |
Lei Wen | bc897b1 | 2011-05-02 16:26:26 +0000 | [diff] [blame] | 2125 | return err; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2126 | } |
| 2127 | |
Markus Niebel | ab71188 | 2013-12-16 13:40:46 +0100 | [diff] [blame] | 2128 | int mmc_set_dsr(struct mmc *mmc, u16 val) |
| 2129 | { |
| 2130 | mmc->dsr = val; |
| 2131 | return 0; |
| 2132 | } |
| 2133 | |
Jeroen Hofstee | cee9ab7 | 2014-07-10 22:46:28 +0200 | [diff] [blame] | 2134 | /* CPU-specific MMC initializations */ |
| 2135 | __weak int cpu_mmc_init(bd_t *bis) |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2136 | { |
| 2137 | return -1; |
| 2138 | } |
| 2139 | |
Jeroen Hofstee | cee9ab7 | 2014-07-10 22:46:28 +0200 | [diff] [blame] | 2140 | /* board-specific MMC initializations. */ |
| 2141 | __weak int board_mmc_init(bd_t *bis) |
| 2142 | { |
| 2143 | return -1; |
| 2144 | } |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2145 | |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2146 | void mmc_set_preinit(struct mmc *mmc, int preinit) |
| 2147 | { |
| 2148 | mmc->preinit = preinit; |
| 2149 | } |
| 2150 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2151 | #if CONFIG_IS_ENABLED(DM_MMC) && defined(CONFIG_SPL_BUILD) |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2152 | static int mmc_probe(bd_t *bis) |
| 2153 | { |
| 2154 | return 0; |
| 2155 | } |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2156 | #elif CONFIG_IS_ENABLED(DM_MMC) |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2157 | static int mmc_probe(bd_t *bis) |
| 2158 | { |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2159 | int ret, i; |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2160 | struct uclass *uc; |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2161 | struct udevice *dev; |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2162 | |
| 2163 | ret = uclass_get(UCLASS_MMC, &uc); |
| 2164 | if (ret) |
| 2165 | return ret; |
| 2166 | |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2167 | /* |
| 2168 | * Try to add them in sequence order. Really with driver model we |
| 2169 | * should allow holes, but the current MMC list does not allow that. |
| 2170 | * So if we request 0, 1, 3 we will get 0, 1, 2. |
| 2171 | */ |
| 2172 | for (i = 0; ; i++) { |
| 2173 | ret = uclass_get_device_by_seq(UCLASS_MMC, i, &dev); |
| 2174 | if (ret == -ENODEV) |
| 2175 | break; |
| 2176 | } |
| 2177 | uclass_foreach_dev(dev, uc) { |
| 2178 | ret = device_probe(dev); |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2179 | if (ret) |
Simon Glass | 4a1db6d | 2015-12-29 05:22:49 -0700 | [diff] [blame] | 2180 | printf("%s - probe failed: %d\n", dev->name, ret); |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2181 | } |
| 2182 | |
| 2183 | return 0; |
| 2184 | } |
| 2185 | #else |
| 2186 | static int mmc_probe(bd_t *bis) |
| 2187 | { |
| 2188 | if (board_mmc_init(bis) < 0) |
| 2189 | cpu_mmc_init(bis); |
| 2190 | |
| 2191 | return 0; |
| 2192 | } |
| 2193 | #endif |
Che-Liang Chiou | e955044 | 2012-11-28 15:21:13 +0000 | [diff] [blame] | 2194 | |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2195 | int mmc_initialize(bd_t *bis) |
| 2196 | { |
Daniel Kochmański | 1b26bab | 2015-05-29 16:55:43 +0200 | [diff] [blame] | 2197 | static int initialized = 0; |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2198 | int ret; |
Daniel Kochmański | 1b26bab | 2015-05-29 16:55:43 +0200 | [diff] [blame] | 2199 | if (initialized) /* Avoid initializing mmc multiple times */ |
| 2200 | return 0; |
| 2201 | initialized = 1; |
| 2202 | |
Simon Glass | c4d660d | 2017-07-04 13:31:19 -0600 | [diff] [blame] | 2203 | #if !CONFIG_IS_ENABLED(BLK) |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 2204 | #if !CONFIG_IS_ENABLED(MMC_TINY) |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2205 | mmc_list_init(); |
| 2206 | #endif |
Marek Vasut | b5b838f | 2016-12-01 02:06:33 +0100 | [diff] [blame] | 2207 | #endif |
Sjoerd Simons | 8e3332e | 2015-08-30 16:55:45 -0600 | [diff] [blame] | 2208 | ret = mmc_probe(bis); |
| 2209 | if (ret) |
| 2210 | return ret; |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2211 | |
Ying Zhang | bb0dc10 | 2013-08-16 15:16:11 +0800 | [diff] [blame] | 2212 | #ifndef CONFIG_SPL_BUILD |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2213 | print_mmc_devices(','); |
Ying Zhang | bb0dc10 | 2013-08-16 15:16:11 +0800 | [diff] [blame] | 2214 | #endif |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2215 | |
Simon Glass | c40fdca | 2016-05-01 13:52:35 -0600 | [diff] [blame] | 2216 | mmc_do_preinit(); |
Andy Fleming | 272cc70 | 2008-10-30 16:41:01 -0500 | [diff] [blame] | 2217 | return 0; |
| 2218 | } |
Tomas Melin | cd3d488 | 2016-11-25 11:01:03 +0200 | [diff] [blame] | 2219 | |
| 2220 | #ifdef CONFIG_CMD_BKOPS_ENABLE |
| 2221 | int mmc_set_bkops_enable(struct mmc *mmc) |
| 2222 | { |
| 2223 | int err; |
| 2224 | ALLOC_CACHE_ALIGN_BUFFER(u8, ext_csd, MMC_MAX_BLOCK_LEN); |
| 2225 | |
| 2226 | err = mmc_send_ext_csd(mmc, ext_csd); |
| 2227 | if (err) { |
| 2228 | puts("Could not get ext_csd register values\n"); |
| 2229 | return err; |
| 2230 | } |
| 2231 | |
| 2232 | if (!(ext_csd[EXT_CSD_BKOPS_SUPPORT] & 0x1)) { |
| 2233 | puts("Background operations not supported on device\n"); |
| 2234 | return -EMEDIUMTYPE; |
| 2235 | } |
| 2236 | |
| 2237 | if (ext_csd[EXT_CSD_BKOPS_EN] & 0x1) { |
| 2238 | puts("Background operations already enabled\n"); |
| 2239 | return 0; |
| 2240 | } |
| 2241 | |
| 2242 | err = mmc_switch(mmc, EXT_CSD_CMD_SET_NORMAL, EXT_CSD_BKOPS_EN, 1); |
| 2243 | if (err) { |
| 2244 | puts("Failed to enable manual background operations\n"); |
| 2245 | return err; |
| 2246 | } |
| 2247 | |
| 2248 | puts("Enabled manual background operations\n"); |
| 2249 | |
| 2250 | return 0; |
| 2251 | } |
| 2252 | #endif |